Advertisement
Guest User

Walk

a guest
Nov 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(player)
  2. player.CharacterAdded:connect(function(character)
  3. player.Character.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=571511293" -- Insert ID here or leave this one--
  4. end)
  5. end)
  6.  
  7. game.Players.PlayerAdded:connect(function(player)
  8. player.CharacterAdded:connect(function(character)
  9. player.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=529820378" -- Insert ID here or leave this one--
  10. end)
  11. end)
  12. game.Players.PlayerAdded:connect(function(player)
  13. player.CharacterAdded:connect(function(character)
  14. player.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=438340048" -- Insert ID here or leave this one--
  15. end)
  16. end)
  17.  
  18. speed = 10
  19. game.Players.PlayerAdded:connect(function(plr)
  20. plr.CharacterAdded:connect(function(char)
  21. char.Humanoid.WalkSpeed = speed
  22. end)
  23. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement