Advertisement
Guest User

Phantom Forces Speed

a guest
Oct 18th, 2019
2,699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. local mt = getrawmetatable(game)
  2. setreadonly(mt,false)
  3. local old = mt.__index
  4. mt.__index = newcclosure(function(self,a)
  5. if a=="WalkSpeed" then
  6. return 16
  7. elseif a=="JumpPower" then
  8. return 50
  9. end
  10. return old(self,a)
  11. end)
  12.  
  13. spawn(function()
  14. while true do
  15. wait()
  16. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  17. end
  18. end)
  19.  
  20. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 250
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement