Need help making other movements besides walk

I have some different movements I want my character to do and I am not sure entirely how to code them into the game script. I am new to unity. I know to “add new script” but not sure how to fully code the movements. I am making the main character be a wolf the player is… I need him to do these movements:: sit, sleep, howl, and sniff if anyone can help me code that…

That’s art and animation land stuff, not coding. If you really want to try it, pick up an animation package like Blender

From the code side of things, you want to use a Finite State Machine (FSM).
https://www.google.com/search?q=finite+state+machine

The most used FSM package for Unity is PlayMaker.

jRocket is right, the actual sitting down is an animation made by an animator, but your FSM will be in charge of making sure the right animation is playing at the right time.

Check the asset store. There are probably some animal animations for sale.

I have the animations that I need… I just do not know what the script is to make the character do them.

Do the stealth tutorial. It has all you need.