Make a Torso Invisible when you enter game?
Make the transparency 1
1 | game.Players.PlayerAdded:connect( function (plr) |
2 | plr.CharacterAdded:connect( function (char) |
3 | repeat wait() until char:FindFirstChild( "Torso" ) |
4 | char.Torso.Transparency = 1 |
5 | end ) |
6 | end ) |