How to copy a character's apperance to an NPC?

First of all, I’m not talking about how to copy a player to a rig in Roblox Studio.

What is the easiest way to copy a player’s exact appearance to an NPC even though the player you want the NPC to copy is not in the server? For example, I have a textbox where you can enter a player’s name. If you hit enter, it will copy the player’s exact appearance to the NPC. I can make it work if the player is in the same server as you. But how can I make it work even if the player is not with you? Sorry, I don’t know how to start this script. I can’t find any tutorials concerning this. Thank you!

1 Like

You might need to use Humanoid:ApplyDescription for that Humanoid | Documentation - Roblox Creator Hub

1 Like
local humdescription = game.Players:GetHumanoidDescriptionFromId(playerid)
workspace.Rig.Humanoid:ApplyDescription(humdescription)
5 Likes