What do you want to achieve?
I want the visible button to be on false.
What is the issue? Include screenshots / videos if possible!
I don’t know why when I want to make the visible button “false” with the script and when I play it doesn’t work.
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Nothing.
while true do
script.Parent.ImageLabel1.Visible = false
script.Parent.ImageLabel.Visible = true
wait(1)
script.Parent.ImageLabel1.Visible = true
script.Parent.ImageLabel.Visible = false
wait(2)
end
Oh ok, well I tested your script and it works fine. The reason why you see the ImageLabel1.Visible Property as set to true is because you are looking at StarterGui, but when you press play the content’s of StarterGui get cloned into Player.PlayerGui as describe by the image below.