Advertisement
BobMe

Run.

Jan 15th, 2018
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. local Mouse = game.Players.LocalPlayer:GetMouse()
  2. local Plr = game.Players.LocalPlayer
  3.  
  4. Mouse.KeyDown:connect(function(KeyDown)
  5. if KeyDown == "0" then
  6. Plr.Character.Humanoid.WalkSpeed = 135
  7. end
  8. end)
  9.  
  10. Mouse.KeyUp:connect(function(KeyUp)
  11. if KeyUp == "0" then
  12. Plr.Character.Humanoid.WalkSpeed = 16
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement