So i made a animation Script and it sets the animation of the walking animation to something else But in the game the output is: 08:28:33.844 - Animation failed to load : Workspace.Player.Animate.walk.WalkAnim
The Script Im Using Is:
1 | game.Players.PlayerAdded:connect( function (player) |
2 | while not player.Character do wait() end |
3 | local character = player.Character |
4 | local animateScript = character.Animate |
5 | animateScript.walk.WalkAnim.AnimationId = 'http://www.roblox.com/asset/?id=269107678' |
6 | animateScript.Run.RunAnim.AnimationId = 'http://www.roblox.com/asset/?id=269107678' |
7 | end ) |
You need to make sure that: A: the animation is yours, or roblox's B: the script is a local script
What if u instead of game.Players.(...) just do game:GetService("Players").[maybe localplayer im not sure].PlayerAdded(...) that could help
were you have the ' around the animations just change those to " and make sure you are using a regular script and not a local script