Advertisement
Guest User

Shift/Sprint Script Source Code!

a guest
Nov 19th, 2017
619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. --SHIFT/SPRINT SCRIPT
  2. --CREATED BY AIRTRANPILOT22 2017
  3.  
  4. wait(2)
  5.  
  6. local mouse = game.Players.LocalPlayer:GetMouse()
  7.  
  8. mouse.KeyDown:connect(function(key)
  9. if key == "0" then
  10. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 45
  11. end
  12. end)
  13.  
  14. mouse.KeyUp:connect(function(key)
  15. if key == "0" then
  16. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement