My Game Issue (Clips inside of Buttons) (SOLVED)

What Wick Editor Version are you using?
Candlestick V1.0.1

Describe the Problem
I need help with this issue I have while making this pause menu. I was trying to make it so when you pressed I the pause menu appear but the button inside the pause menu can make you click it even if its invisible. What I need is a pause menu that makes the buttons not able to interact if it’s invisible. But when It’s visible the button interact. This is needed for the game I’m making.

What have you tried so far?
I tried using MenuOpen as an variable in a attempt to make the button not interact but It failed.

Do you have a Wick Editor File that we can see? Optional*
menuBox1-12-2026_22-42-41.wick (2.8 KB)

Hi @UnkLos_Us

Buttons will still be clickable even if the Clip has opacity=0 (completely invisible). You had the right idea to move the menu Clip below the screen, that’s smart!

But, there were a few issues with your code that moves the menu:

There were two variables, menuBox.active and menuOpen. menuOpen never changes, so the menu was stuck at opacity=0 and was never being moved below the screen.

menuOpen was never changing because this line:
if (isKeyJustPressed("I")) {

only works if you use a lowercase “i”, like so:
if (isKeyJustPressed("i")) {

Here’s a cleaned up version of your project! Feel free to ask for any other help. menuBox1-13-2026_0-48-09.wick (2.7 KB)

1 Like

thank you very much! : D

1 Like