Mr_G_Curry

Untitled

Nov 13th, 2021
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. --Script made by Youtube: MrGabbe.    Discord: Mr_G_Curry #6982
  2. local gmt = getrawmetatable(game)
  3. setreadonly(gmt , false)
  4.  
  5. local oldindex = gmt.__index
  6.  
  7.  
  8. gmt.__index = newcclosure(function(self,k)
  9.     if k == "WalkSpeed" then
  10.         return 20
  11.     end
  12.     return oldindex(self,k)
  13. end)
  14.  
  15.  
  16. print("meta")
  17.  
  18. while true do
  19.     wait()
  20.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  21. end
  22.  
Advertisement
Add Comment
Please, Sign In to add comment