How to make if Frame = Visible then ImageLabel.Visible = false (with loop ) Frame = script.Parent ImageLabel = game.StarterGui.Frame.ImageLabel -Thank u and best regards ! -PPJASK
Simple.
local Frame = script.Parent local ImageLabel = Frame.ImageLabel while true do if Frame.Visible == true then do ImageLabel.Visible = true wait(1) end) end)