so i want the players face to go transparent once it has found the decal. The code finds the decal fine but my problem is destroying the decal itself.
local FindHead = character.Head:FindFirstChildWhichIsA("Decal")
if FindHead then
print("decal found")
FindHead:Destroy()
print("face should have been destroyed")
else
print("no decal found")
end
i also tried to just replace it with a transparent image but that didnt work either.
my output always prints that it should have been destroyed but when i check the decal is still there