Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Script made by Youtube: MrGabbe. Discord: Mr_G_Curry #6982
- local gmt = getrawmetatable(game)
- setreadonly(gmt , false)
- local oldindex = gmt.__index
- gmt.__index = newcclosure(function(self,k)
- if k == "WalkSpeed" then
- return 20
- end
- return oldindex(self,k)
- end)
- print("meta")
- while true do
- wait()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- end
Advertisement
Add Comment
Please, Sign In to add comment