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 10 years ago

Make a Torso Invisible when you enter game?

Make the transparency 1

1 answer

Log in to vote
2
Answered by 10 years ago
game.Players.PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function(char)
        repeat wait() until char:FindFirstChild("Torso")
        char.Torso.Transparency = 1
    end)
end)
Ad

Answer this question