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.
1 | local Frame = script.Parent |
2 | local ImageLabel = Frame.ImageLabel |
3 |
4 | while true do |
5 | if Frame.Visible = = true then do |
6 | ImageLabel.Visible = true |
7 | wait( 1 ) |
8 | end ) |
9 | end ) |