Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Make a Torso Invisible when you enter game?

Asked by 11 years ago

Make a Torso Invisible when you enter game?

Make the transparency 1

1 answer

Log in to vote
2
Answered by 11 years ago
1game.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)
6end)
Ad

Answer this question