How would I transfer a npc appearance into a player

as the title says pretty straight forwards any help will be appreciated

You’ll need to create a clone of the NPC and attach it to the player, like so:

local function DressPlayers(player)
	local character
local npc = [CALL IT] -- find the npc like script.Parent or game...
character = npc
	character.Name = player.Name
	player.Character = character
	character.Parent = workspace
end
2 Likes

Thanks that worked don’t know why I didn’t think of that
appreciated dude!

1 Like