Hello, I am working on a tool script to make my avatar become transparent but I’m having trouble getting the face to disappear.
The Head disappears but the face remains? Any idea what I need to do to hide the face too?
local enabled = false
local plr = game.Players.LocalPlayer
script.Parent.Activated:Connect(function()
if enabled == false then
enabled = true
for i,v in pairs(plr.Character:GetChildren()) do
if v:IsA("Part") or v:IsA("MeshPart") or v:IsA("UnionOperation") then
if v.Name ~= "HumanoidRootPart" then
v.Transparency = 0.9
end
end
if v:IsA("Accessory") then
v.Handle.Transparency = 0.9
end
end
end
end)
And is there any other gotacha’s I need to be aware of? (like are UGC items also in special category?)
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.