My arm has a mix of grey and black when I turn invisible?
Asked by
3 years ago Edited 3 years ago
Hello, I was making an invisibility tool to test it out with Armor. Turns out, all of the Armors sort of
created an extra layer of grey when I become visible. If someone can help, I would be very much grateful.
EDIT: I think it's because a part welded in the arm, but not sure
https://gyazo.com/aef98101f8e177644cdebe6e6b3ae33a
01 | local Tool = script.Parent |
03 | Tool.Equipped:Connect( function () |
05 | for _,part in pairs (workspace.SurfyStefanos:GetDescendants()) do |
06 | if part:IsA 'BasePart' and part.Name ~ = "HumanoidRootPart" then |
09 | if Equipped = = false then |
15 | elseif part:IsA( "Decal" ) and part.Parent.Name = = "Head" then |
17 | if Equipped = = false then |
25 | Tool.Unequipped:Connect( function () |
27 | for _,part in pairs (Tool.Parent.Parent.Character:GetDescendants()) do |
28 | if part:IsA 'BasePart' and part.Name ~ = "HumanoidRootPart" then |
31 | if Equipped = = true then |
39 | elseif part:IsA( "Decal" ) and part.Parent.Name = = "Head" then |
42 | if Equipped = = true then |