How to load a copy of Player's character?

Hi guys.
I have decided to re-do my tutorial into cinematic mode.
But the problem is that I also want to make “copy” of player’s character for it. Locally. How I can do that though? I don’t need to remove old character, only create new one.
Due to the fact that tutorial can begin into some special scenarios where player’s current character has been died and removed, I can’t just :Clone() it

So basically, make sure to have a rig prepared that you can clone anytime then

learn this HumanoidDescription

local PlayerService = game:GetService("Players")

local HumanoidDescription = PlayerService:GetHumanoidDescriptionFromUserId(1) -- Get the player's character description

script.Humanoid:ApplyDescriptionReset(HumanoidDescription) -- Apply the player character description to the rig.

So, to make that I just need to pre-made grey dummy rig?

Yes. A grey character only for cloning.

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