What is this box on my character?

It pops up whenever I set my character’s parts to invisible and back again.

Is this the right way to set a character’s parts to visible again?:

for _, w in pairs(game.Players:FindFirstChild(v).Character:GetDescendants()) do
    if w:IsA("BasePart") or w:IsA("Decal") then
        w.Transparency = 0;
	end
end

That I believe is the HumanoidRootPart and normally It’s invisible but the script set it’s transparency to 0.

Ah. So how would one avoid the HRP?

You could inside your script not turn it invisible if the BasePart’s Name is HumanoidRootPart:

for _, w in pairs(game.Players:FindFirstChild(v).Character:GetDescendants()) do
    if w:IsA("BasePart") or w:IsA("Decal") and w.Name ~= "HumanoidRootPart" then
        w.Transparency = 0;
	end
end
2 Likes