StarterCharacter has no clothing

Hello, I have a problem where my StarterCharacter has no clothing, and I need to know why.

Inside the StarterCharacter:
Screenshot 2024-12-03 205320

What I look like with the StarterCharacter:
image_2024-12-03_205622096

Yes, the rig type is R6, and here’s the script that puts the players accessories and
pants and shirts I found from another post:

local players = game.Players

players.PlayerAdded:Connect(function(player)
	player.CharacterAdded:Connect(function(char)
		local Humanoid = char:FindFirstChildWhichIsA("Humanoid")
		if Humanoid then
			local HumanoidDesc = players:GetHumanoidDescriptionFromUserId(player.UserId)
			HumanoidDesc.Head = 0
			HumanoidDesc.LeftArm = 0
			HumanoidDesc.LeftLeg = 0
			HumanoidDesc.RightArm = 0
			HumanoidDesc.RightLeg = 0
			HumanoidDesc.Torso = 0
			Humanoid:ApplyDescription(HumanoidDesc)
			wait() -- Wait for desc to apply
			local humanoidRootPart = char:WaitForChild("HumanoidRootPart", 5)
			if humanoidRootPart then
				humanoidRootPart.Anchored = false
			else
				warn("HumanoidRootPart not found for character " .. player.Name)
			end
		else
			warn("Humanoid not found for character " .. player.Name)
		end
	end)
end)

I don’t think the script is the problem since when I play the shirt’s and pant’s are inside the character. I also made the rig in blender so maybe that has something to do with it but idk.

Where did you put this script ?

I placed it in ServerScriptService