Advertisement
Guest User

Sprint Script

a guest
Apr 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. ---SCRIPTED BY UNKNOWN LORD---
  2. mouse.KeyDown:Connect(function(key)
  3. if key:lower() == string.char(48) then
  4. local Humanoid = game.Players.LocalPlayer.Character.Humanoid
  5. if Humanoid then
  6. Humanoid.WalkSpeed = 40
  7. end
  8. end
  9. end)
  10.  
  11. mouse.KeyUp:Connect(function(key)
  12. if key:lower() == string.char(48) then
  13. local Humanoid = game.Players.LocalPlayer.Character.Humanoid
  14. if Humanoid then
  15. Humanoid.WalkSpeed = 16
  16. end
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement