I have a script that makes TextButtons appear after a certain duration, however, even when those TextButtons are not visible, you can still hover your mouse over their position and click them. I need to figure out a workaround so that the player cannot click them until they are visible on screen. Thank you.
1 Like
I assume you’re changing the visibility property, if that doesn’t behave as you want you could just disable the ancestorial ScreenGui’s (or whatever you’re using) enabled property to false, or if it has multiple children you could add another ScreenGui to be it’s parent.
If you’re changing transparency, I’d suggest just changing the property ‘Visible’, that should make it so you can’t click TextButton.
1 Like