How do I make dummy turn into a player character

I want to make a dummy turn into a player’s character fully
ApplyDescription() doesn’t work, it only applies the hair, shirts and pants and not the face
Also, how do I turn that model into a dummy again?

3 Likes

Use “LoadCharacter” Plugin for adding Character’s model fully. You can search at Toolbox for plugin

1 Like

I want to make dummy loads to a player’s character by scripting

1 Like

Then, use this.

local Player = "" -- player to clone
local UserId = game.Players:GetUserIdFromNameAsync(Player)
local PlayerModel = game.Players:CreateHumanoidModelFromUserId(UserId)

PlayerModel.Parent = workspace

This code won’t load dummy into player’s character but it’s creating Character model, so you don’t need to use dummy model.

1 Like

I think ApplyDescriptionReset() is the method you’re looking for. It should fix the face not loading correctly, assuming this is because you’ve made modifications to the face outside of using ApplyDescription().

2 Likes

Then how do I make a dummy model by scripting?

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