Do you guys know how to block the Blue part that when you make a character go invisible it does not seem to want the RootPart be invisible. Does anyone know how to make its transparency = 1? (Every RootPart constantly)
When you are writing your for loop that sets the transparency of parts inside the character, check if the part's name is HumanoidRootPart before changing the Transparency.
For example:
for i,v in pairs(character:GetChildren()) do if v:IsA("Part") and v.Name ~= "HumanoidRootPart" then v.Transparency = 0 end end