I'm making it where characters all look the same when in a lobby.
Would this be in a Local, or regular script?
1 | if char:FindFIrstChild( "Shirt" ) then |
2 | char.Shirt:Destroy() |
3 | end |
4 | if char:FindFIrstChild( "Pants" ) then |
5 | char.Pants:Destroy() |
6 | end |
In a script, use PlayerAdded and CharacterAdded.
If you need help on where to place those two things, just comment! :)
[Edit]
01 | game.Players.PlayerAdded:connect( function (player) |
02 | player.CharacterAdded:connect( function (char) |
03 | if char:FindFirstChild( "Shirt" ) then |
04 | char.Shirt:Destroy() |
05 | end |
06 | if char:FindFirstChild( "Pants" ) then |
07 | char.Pants:Destroy() |
08 | end |
09 | end ) |
10 | end ) |