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
--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)