****So I made a script so I can have custom animation. Here is the script.
1 | game.Players.PlayerAdded:connect( function (player) |
2 | player.CharacterAdded:connect( function (character) |
3 | player.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=5171959206" --fall-- |
4 | player.Character.Animate.idle.Animation 1. AnimationId = "http://www.roblox.com/asset/?id=5171744485" --idle-- |
5 | player.Character.Animate.idle.Animation 2. AnimationId = "http://www.roblox.com/asset/?id=5171744485" --idle2-- |
6 | player.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=5171912027" --jump-- |
7 | player.Character.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=5171886191" --walk/run-- |
8 | end ) |
9 | end ) |
I want to make it server sided, please! Your help is appreciated. Thanks!