Advertisement
xtrey10x

Clicker Speed

Aug 18th, 2022
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. script: _G.Speed = 1000000
  2.  
  3. local mt = getrawmetatable(game)
  4. local old = mt.__namecall
  5. setreadonly(mt, false)
  6. mt.__namecall = function(self, ...)
  7. if getnamecallmethod() == 'Kick' then
  8. return wait(9e9)
  9. end
  10. return old(self, ...)
  11. end
  12. local oldd = mt.__index
  13. mt.__index = function(self, property)
  14. if property == 'WalkSpeed' then
  15. return 16
  16. end
  17. return oldd(self, property)
  18. end
  19. setreadonly(mt, true)
  20. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = _G.Speed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement