I Asked This Question Yesterday, But Only Two People Replied And Din’t Even Help.
Anyways I Want To Change The Default Run And Walk Animation With My Animations But I Have No Idea How.
Many People Use This Set Of Code But It Gives Me The Error Of Animation Failed To Load.
Make sure the animation is made by you. As far as I know, you can’t use animations made by other people or groups.
The script you mentioned worked just fine for me. But as a local script in the StarterPlayerScript, and instead of using PlayerAdded to get the player, I used the local player:
--Local script in StarterPlayerScripts
local plr = game.Players.LocalPlayer
plr.CharacterAdded:Connect(function(char)
local anim = char:WaitForChild("Animate")
anim.walk.WalkAnim.AnimationId = "rbxassetid://5597746104"
anim.run.RunAnim.AnimationId = "rbxassetid://5597746104"
end)