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
4 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 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

Simple.

1local Frame = script.Parent
2local ImageLabel = Frame.ImageLabel
3 
4while true do
5    if Frame.Visible == true then do
6        ImageLabel.Visible = true
7        wait(1)
8    end)
9end)
Ad

Answer this question