Advertisement
Guest User

ROBLOX Run Script

a guest
May 30th, 2015
12,739
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local Mouse = Player:GetMouse()
  3. local Run = 252176177
  4. local Walk = 180426354
  5.  
  6. Mouse.KeyDown:connect(function(Key)
  7. if Key:byte() == 50 then
  8. Player.Character.Humanoid.WalkSpeed = 0
  9. wait()
  10. Player.Character.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=" ..Run.. ""
  11. Player.Character.Humanoid.WalkSpeed = 32
  12. end
  13. end)
  14.  
  15. Mouse.KeyUp:connect(function(Key)
  16. if Key:byte() == 50 then
  17. Player.Character.Humanoid.WalkSpeed = 0
  18. wait()
  19. Player.Character.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=" ..Walk.. ""
  20. Player.Character.Humanoid.WalkSpeed = 16
  21. end
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement