scene wont change

so im making a prototype of my clicker game and I’m new to Gdevelop so I dont know everything.
so what im trying to do is take the player back from the shop scene to the workspace, it goes to the shop but doesnt go back. this is the code for the shop scene http://imgur.com/a/6Hp9E and this is the workspace http://imgur.com/CC4wuRs

The event to return to the workspace is a sub-event, so the parent conditions have to be fulfilled too. I mean, to return to the workspace scene, the “w” key has to be pressed but the cursor X position must be = NewObject.X() and variable Money >= 25 too.
But if you already know that, I think the problem is the condition “Mouse X position is = NewObject.X()”, the cursor X position has to be exactly the same as the object, neither one pixel right nor one pixel left. Besides the cursor position is an integer, so if the position X of NewObject is, for example, 100.5 (a float), forget that important thing you want to do in the workspace and become a merchant :laughing:
Now, if this is the problem, you could add a range:

Conditions: Mouse X position is > NewObject.X() - 5 Mouse X position is < NewObject.X() + 5 Global variable Money is >= 25 Actions: ...

It looks like an accident there, I don’t think he meant to make a sub event but an event on its own so pushing W regardless of anything else would change scene, simple error. Just re do that event as a new one and not a sub event and you’ll be good to go

oh, I’m sorry I didn’t know it was a sub event :laughing: