How do i remove the idle look around animation?

How do i remove the idle look around default animation from my game?

7 Likes

Hi!

Follow these steps:

  1. Join play test mode in studio.
  2. Unfold you character components in explorer, find Animate and copy it.
  3. Paste Animate in StarterCharacterScripts.
  4. Modify this part:
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 }
			},

You can change the weight, switch the IDs, insert your custom ones, or remove the entire sub-array. As long as the script you copied into StarterCharacterScripts is named the same as it was originally, it will repace the origial with your version.

16 Likes

its work, thank you very much :smiley:

3 Likes

This worked, thank you very much.

1 Like