Idle looking animation STILL playing after trying to remove (R15)

I copied the players Animate localscript when I played in studio, pasted it into StarterCharacterScripts, and deleted the idle {} entry, and the idle animation where the character looks left and right STILL plays. What am I doing wrong?

My idle thing looks like this:

local animNames = { 
	idle = 	{	
				
			},

as opposed to this:

local animNames = { 
	idle = 	{	
				{ id = "http://www.roblox.com/asset/?id=507766666", weight = 1 },
				{ id = "http://www.roblox.com/asset/?id=507766951", weight = 1 },
				{ id = "http://www.roblox.com/asset/?id=507766388", weight = 9 }
			},

and I am still getting default looking animations…

1 Like

Hi Mate it might be easier to make an animation in studio of you standing still ( which would basically be load the amination maker then save it ) and replace the original id numbers to your own of you still ( or to what you want )

:+1:

I just tried this and still was having idle animations. I don’t know where its coming from anymore

ok cool, i tried this and it appears to work. If you are using a r15 humanoid as your play go to the toolbox in studio and download the animation for an r15 this one i downloaded in the photo removes the idle animation and you can chage it to what you like :+1:

Thanks, I’ll try it out. Could you send the link to this?

The Idle animations in the Animate script have a value named Weight. Try setting both to 0. If this doesn’t work, then use a blank animation with no keyframes for one of them (or both).

Tried both and still getting idle animation

Change the Values inside of this script. Changing the ids in the script won’t change the animation, which is weird. Instead, inside of this script go into idle, then open it. Then you should see a object named “Animation” and then change the id there.

This kind of worked. Animation 1 was the main idle anim, and Animation 2 was the looking left and right animation. I replaced Animation 2 with my empty anim with no keyframes, and the player straightened up like a pencil instead of looking left and right (no slightly bent joins), which looked weird.

Just remove both of them if you want to remove the idle animation

Won’t let you
image

I meant put both of the animations to the “empty animation” you made.

Actually, simple solution. Just make the Animation1 ID also the Animation2 ID

2 Likes

It finally works! Thank you so much

1 Like