ZIndex < Overlaying Zindex's are clickable?

I wasn’t sure how to word this question in the title. It’s easier to explain with pictures.
How would you make UI with ZIndex < an overlapping UI un-clickable. Is there a property that will do this for me, or would this all have to be scripted?

Example:

I have a black fade surrounding the UI I want to be active, however I can still click the stuff below the dark even though it has a lower ZIndex.

Thanks,
Bylocks

I believe this is the property you’re looking for:
https://www.robloxdev.com/api-reference/property/GuiObject/Active

“… For example, if a Frame with Active set to true covers a TextButton with Active also set to true, clicks over the Frame and TextButton it will not reach the TextButton.”

So in this case you would set the popup’s Active property to true.

1 Like

Ah so that’s what that does! Thanks mate

1 Like