Hi! I don’t know if this involves scripting or not, but I was wondering how to make my characters invisible so they can become a surprise to players when they get killed from stumbling upon them.
Acess the players character and change their transparency to 0
1 | repeat wait() until game.Players.LocalPlayer.Character |
2 |
3 | character = game.Players.LocalPlayer.Character |
4 |
5 | for i, v in pairs (character:GetDescendants()) do |
6 | if (v:IsA:( "BasePart" ) or v:IsA( "Decal" ) then |
7 | v.Transparency = 1 |
8 | end |
9 | end |