agentagony124

Roblox Run Script

Apr 7th, 2022 (edited)
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1.             pcall(function()
  2.  
  3. local walkSpeed = 20
  4.  
  5.  
  6.  
  7. local gmt = getrawmetatable(game)
  8.  
  9. setreadonly(gmt, false)
  10.  
  11. local oldindex = gmt.__index
  12.  
  13. gmt.__index = newcclosure(function(self,b)
  14.  
  15. if b == "WalkSpeed" then
  16.  
  17. return 16
  18.  
  19. end
  20.  
  21. return oldindex(self,b)
  22.  
  23. end)
  24.  
  25.  
  26.  
  27. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = walkSpeed
  28.                 end)
Add Comment
Please, Sign In to add comment