How do i clone a player character in game with their animation? (idle animation)

So i am making a some sort of menu system and i wanted to clone their player charater and place them at the camera, i successfully cloned the character but i also need their idle animation to be there. How can i achieve that? (btw everything is done on the client side)

If you are just cloning the character then you will not animate because the “Animate” local script will not run unless it is a descendant of one of these:

To fix this you can simply load the animation manually with Animator:LoadAnimation()

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.