so im saying if the scripts parent is visible then it will do the following, wait 1 second, make “Flash” appear, then wait .1 seconds, then it makes the “part” invisible then “Flash” invisible then the “letter” visible, then make the “letter” unanchored.
What the issue is
the script is perfectly fine and I don’t under stand the issue. I hope you guys can help me resolve this(the output didn’t confirm an error)
Location
Script
if script.Parent.Transparency == 0 then
wait(1)
script.Parent.Parent.Flash.Transparency = 0
wait(5)
script.Parent.Transparency = 1
script.Parent.Parent.Flash.Transparency = 1
script.Parent.Parent.letter.Transparency = 0
script.Parent.Parent.letter.Anchored = false
end
Thank you! This worked. Im not quite a good scripter. Can you explain to me what script.Parent:GetPropertyChangedSignal(“Transparency”):Connect(function() means?