[Repost because nobody really noticed this /:]
I already know that a ton of youtubers have done tutorials on this but they’re all either Outdated, Vauge or just Fake. I know how to make an Animation with Moon Suite or Roblox Animation Editor but I don’t know how I can make it into a legitamate walking animation. Even a simple explanation on how to script it into my game will do.
PS. This might seem un-descriptive but I legit have 0 Brain Cells that know how to do this correctly.
If you want to override the walk animation this is how I did it in my Tool. It pretty much changes the AnimationId for the default walking animation that is inside the built in Animate LocalScript in Character.
AnimateScript = game.Workspace[player.Name].Animate -- so I can bring it back to its original id when I'm done with the Tool originalWalkId = AnimateScript.walk:FindFirstChild("WalkAnim").AnimationId -- find the walkAnim, change the ID AnimateScript.walk:FindFirstChild("WalkAnim").AnimationId = "rbxassetid://<your animation ID>"