Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

[REPOST] How can I make a custom walk animation?

Asked by 5 years ago

[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.

1 answer

Log in to vote
0
Answered by
Kami_Yo 72
5 years ago
Edited 5 years ago

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>"
Ad

Answer this question