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:
game.Players.PlayerAdded:connect(function(player) while not player.Character do wait()end local character=player.Character local animateScript = character.Animate animateScript.walk.WalkAnim.AnimationId = 'http://www.roblox.com/asset/?id=269107678' animateScript.Run.RunAnim.AnimationId = 'http://www.roblox.com/asset/?id=269107678' 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