GUI sinks input even when it's covered

For some reason my GUI’s sink input even when they are covered, and I even tested with all GUI elements property Active set to true.


How can I fix this?

3 Likes

This is a similar issue. Perhaps the only GUI piece you want to set Active is the pop-up?

The way I would go about this, is to put a variable in your loop, which goes through all your buttons, and just set the variable to false if the info screen is visible.

variable = true

for _,v in pairs(button:GetChildren()) do
	if variable then
		--Your code	
	end
end

image
image

It is Active, and this issue never happened to me before, Active property does nothing whether is set to true or false.

I already did similar thing and it changed nothing.

This has been happening to me as well!

And has become VERY problematic :rage:

I’ve been having this same issue as well