How do i change the walk animations with a local script?

There are already resources online to do this.

To make it work with a LocalScript instead of Server Script, I would make a local script inside of StarterCharacterScripts and go like:

wait(3)
script.Parent.Animate.walk.WalkAnim.AnimationId = "rbxassetid://YOURANIMATIONID"
script.Parent.Animate.run.RunAnim.AnimationId = "rbxassetid://YOURANIMATIONID"
2 Likes