I have this simple part of a script
1 | wait( 5 ) |
2 | if FRAME.Visible = = true then |
3 | repeat |
4 | wait( 3 )check_Have() print ( "checking..." ) |
5 | until |
6 | FRAME.Visible = = false |
7 | end |
Which does what I want it to, it runs the check_Have() function if the frame is visible after the 5 second wait, but I want it to be able to recognize when the FRAME goes from not visible to visible. Basically this works for when the frame is already visible but not for when it becomes visible after the 5 seconds. How would I notify the script that the frame has become visible?
1 | FRAME.Changed:connect( function (prop) |
2 | if prop = = 'Visible' and frame.Visible = = true then |
3 | repeat |
4 | wait( 3 ) |
5 | check_Have() |
6 | print ( 'Checking...' ) |
7 | until FRAME.Visible = = false |
8 | end |
9 | end ) |
I assume this is what you meant. The Changed event fires when a property of the frame changes and gives you a string containing the name of the property, in this case prop. It then checks that the visibility changed to true and if it did it then does your repeat loop.