trying to make a game like Animal Crossing,
I wanted to change the idle animation, to suit the walking/running animation,
but I have no clue what to do
thanks in advance
trying to make a game like Animal Crossing,
I wanted to change the idle animation, to suit the walking/running animation,
but I have no clue what to do
thanks in advance
Just make an animation, and change the values inside of animate script inside the character
To the change animations of a player you would need to go into the animate folder and manually (With a script) change the animation you want.
Idle has two animations since the second one is where the player is standing still for a bit more than usual:
I know, just don’t know what i’m meant to put in the script
local character = script.Parent
local animid = 0 --- Animation Id
character.Animate.idle.Animation1.AnimationId = "rbxassetid://".. animid
okay, just done that now, added it into the walk and run changer
Go into your game and look inside your character. Find the Animation local script and copy that. Then, stop playing and open up the StarterPlayer folder. Paste the Animation script into the StarterCharacterScripts folder. Once you finished your idle animation, copy the ID and open the Animation local script. On line 19 and 20, paste your animation into that long strip of numbers. Once you have dont that, open the script up and find the Value with the name idle. Open that up and paste the numbers into Animation1 abnd Animation2. Do the same thing for every other animation you want to do.