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