- 0
Why my script isn't working?
-
Similar Content
-
- 43 replies
- 118,150 views
-
- 0 answers
- 1,720 views
-
- 0 replies
- 1,423 views
-
- 0 replies
- 857 views
-
- 0 comments
- 6,832 views
-
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Question
zexxadev
guys please help me with my lua script, why is this not working. i made for subway surfers game, this is the script code
function HackFunction(ToF)
if Hack == "A" then -- Free Shopping
  if ToF == true then
    HackersHouse.hijackParameters({
   { ['libName'] = "libil2cpp",
    ['offset'] = 0x1CE468C,
    ['parameters'] ={ { "bool", false}},Â
    ['libIndex'] = 'auto'
   }
  })
    Toast("Free Shopping Activated")
  else
    HackersHouse.hijackParametersOff({
   { ['libName'] = "libil2cpp",
    ['offset'] = 0x1CE468C,
   }
  })
    Toast("Free Shopping De-Activated")
  end
elseif Hack == "B" then -- Unlimited Jump
  if ToF == true then
    Toast("Unlimited Jump Activated")
  else
    Toast("Unlimited Jump De-Activated")
  end
elseif Hack == "C" then -- God Mode
  if ToF == true then
    Toast("God Mode Activated")
  else
    Toast("God Mode De-Activated")
  end
elseÂ
  Toast("Error You Broke It")
end
end
Â
BTW I use patching lib from HackerHouse
0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now