Starter clothing error

I made a script for starter clothing and I know it is correct. Any suggestions on where to put it? I tried starter player scripts and it isn’t working.

Just use a CharacterAdded event.

local players = game:GetService("Players")

players.PlayerAdded:Connect(function(player)
	player.CharacterAppearanceLoaded:Connect(function(character)
		local shirt = character:WaitForChild("Shirt")
		local pants = character:WaitForChild("Pants")
		local tshirt = character:WaitForChild("ShirtGraphic")
		
		shirt.ShirtTemplate = "" --template here
		pants.PantsTemplate = "" --template here
		tshirt.Graphic = "" --template here
	end)
end)

Local script, place it inside the StarterPlayerScripts or StarterCharacterScripts folder.

1 Like