Navigating to stage2 if sprites are visible = false

I am trying to Navigate to #stage 2 after checking if sprites are visible or not, but for whatever reason any time i add these set of blocks,
I get a pop-up that says thunkable is auto saving your work,
and I can wait like twenty mins or so and try to navigate to design tab again,
but end up getting the same pop up again.
What is going on?
https://x.thunkable.com/copy/2116727f5f753d4d207f8bb729e68f0b

1 Like

The blocks you are using in your IF condition is not logical.

You need to reformat your blocks to be logically correct.

1 Like

I am sorry but why is it not logical?

1 Like

In logic you say:

IF (A = False) AND (B = False) then do something

Your code says:

IF (A AND B) = False then do something.

Now, if both A and B are logical operators then your code will be acceptable but your code refers to test conditions (is visible?) and testing lists instead of individual items.

Hope this is clear.

This part is clear
This part below i am having trouble understanding but thats ok Thank you

1 Like

The is visible? block expects a single sprite. You are supplying all sprites in.... which is a list of sprites. Will this work?
image