Player accessories on other characters

I’ve had a question for a very long time like… if I make a custom StarterCharacter how would I be able to add the players hat, hair clothing (Basically accessories) onto the already existing StarterCharacter… I know this may sound dumb but I’m genuinely asking :sob::pray:

local player = me

if player then
   player.sigma = true
end

Starter Character Script:

--Get the player:
local player = game.Players:GetPlayerFromCharacter(script.Parent)
--Get the humanoid
local humanoid = script.Parent:FindFirstChildOfClass("Humanoid")

--Save the previous bodycolors
local previousColors = script.Parent:FindFirstChildOfClass("BodyColors"):Clone()

--Get Player's humanoid Discription
local description = game.Players:GetHumanoidDescriptionFromUserId(player.UserId)

--Reaply previous bodycolors
script.Parent:FindFirstChildOfClass("BodyColors"):Destroy()
previousColors.Parent = script.Parent

--Apply new humanoid description
humanoid:ApplyDescription(discription)

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