ImpulseYT

BYPASSED SPEED SCRIPT (PROTOTYPE)

Jan 2nd, 2022 (edited)
38,113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. -- if you play any games with good antiexploit that stops speed scripts you might wanna use this. (THIS DOSENT BYPASS EVERY GAME)
  2.  
  3. -- change the speed on where it says local walkspeed and feel free to add globals to it
  4.  
  5. local walkSpeed = 32
  6.  
  7.  
  8.  
  9. local gmt = getrawmetatable(game)
  10.  
  11. setreadonly(gmt, false)
  12.  
  13. local oldindex = gmt.__index
  14.  
  15. gmt.__index = newcclosure(function(self,b)
  16.  
  17. if b == "WalkSpeed" then
  18.  
  19. return 16
  20.  
  21. end
  22.  
  23. return oldindex(self,b)
  24.  
  25. end)
  26.  
  27.  
  28.  
  29. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = walkSpeed
Add Comment
Please, Sign In to add comment