What would be the easiest way to make a player invisible?

Does anyone have any idea or an easy method of making a player completley invisible (accessories, the body itself, everything.)

im making a script where when a player jumps, they go invisible and it’s replaced by an object

1 Like
local char
for v, part in pairs(char:GetDescendants()) do
    if part:IsA("BasePart") then
        part.Transparency = 1
    end
end
4 Likes

you should make decal not visible so the face is not visible

2 Likes
local player = games.Players.LocalPlayer
local char = play.Character
local faceDecal

for i, v in pairs(char:GetDescendants()) do
	if v:IsA("Part") then
		v.Transparency = 1
	end
	if v:IsA("Decal") then
		faceDecal = v.Texture --save face texture for later
		v.Texture = ""
	end
end

This script will both remove the face and allow you to make the player visible again & give back the face.

2 Likes