I'm making it where characters all look the same when in a lobby.
Would this be in a Local, or regular script?
if char:FindFIrstChild("Shirt") then char.Shirt:Destroy() end if char:FindFIrstChild("Pants") then char.Pants:Destroy() end
In a script, use PlayerAdded and CharacterAdded.
If you need help on where to place those two things, just comment! :)
[Edit]
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(char) if char:FindFirstChild("Shirt") then char.Shirt:Destroy() end if char:FindFirstChild("Pants") then char.Pants:Destroy() end end) end)