How to make an animation script?

So I am new to making animation script and I have little to no knowledge about Humanoid’s hidden properties.

My Problems,

  • I can’t make a script that notices the player is moving when the player is moving. (no while loop)
  • I want to animate Idle when he is at 0 and anything bigger then that will be walking.

These two are my main prority for now. I’ve reserched on this before postiong this out of desperation. The character I am animating is a dog so no build in Roblox Automated Script will work here.

Would recommend yall to share the knowledge than giving me a replica of some sort which will help me a lot to learn animations and stuff.

When animating, you can use the :GetPropertyChangedSignal on the Humanoid’s MoveDirection. So once the property is changed (detect it using the above function), you can check to see if it is >= 1. If it is, then play your walking/running animation. If it isn’t, (do else), then play the idle animation.

1 Like