I don't know if there's an easier way to do it but.. my way is to get the player's accessories then insert them into a table and put them in the NPC. Get the NPC to be the same color as the player. Get the player's clothes and face.
I'm assuming you know how to get the clothes, skin color, etc But I don't know if you can do the accessories... Here
2 | local accessory 1 = game.Player.LocalPlayer.Character:FindFirstChild( "Humanoid" ):GetAccessories() |
3 | for i, v in pairs (accessory 1 ) do |
4 | table.insert(acccessory, v:clone()) |
6 | for i, v in pairs (acccessory) do |
7 | dummy.Humanoid:AddAccessory(v) |
I'm sorry if this isn't the easiest way but I only found this solution ¯_(?)_/¯