How do i remove the idle look around default animation from my game?
7 Likes
Hi!
Follow these steps:
- Join play test mode in studio.
- Unfold you character components in explorer, find Animate and copy it.
- Paste Animate in StarterCharacterScripts.
- 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 ![]()
3 Likes
This worked, thank you very much.
1 Like