How can I disable t-shirts in a game

How can I disable T-shirts in a game, so basically I want to make that if a player joins a game and they have a t-shirt it will not show up

4 Likes
game.Players.PlayerAdded:Connect(function(player)
	player.CharacterAdded:Connect(function(character)
		local tshirt = character:WaitForChild("Shirt Graphic", 5) --Wait for tshirt to load
		if tshirt then
			tshirt:Destroy() --Destroy it
		end
	end)
end)
5 Likes

Ok thank you I will try it :grinning:

3 Likes