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
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
local char
for v, part in pairs(char:GetDescendants()) do
if part:IsA("BasePart") then
part.Transparency = 1
end
end
you should make decal not visible so the face is not visible
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.