Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make if Frame Visible then ImageLabel Visible = false ?

Asked by
PPJASK 19
3 years ago

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

0
If the Frame isn't visible, the ImageLabel wouldn't be. Ziffixture 6913 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

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)
Ad

Answer this question