HenriqueWilbert
its working now
https://www.dropbox.com/s/6fkdo3litobktpw/MenuOptions.capx?dl=0
The problem was that once you enter in the options section,
1-The option button it stayed permanently Variable "selected" to true
2-So when you overlap the BackBTI button to go back the BackBTI also fires the variable "selected" to true, so you end up with both buttons selected to true,
3-Both groups (Options Click) and (Options) have the same actions "on any click" >> Action : activate the other group so that's why you stayed in the same place as both groups had the "on any click" Actions true like ping pong
4-You could fix it by adding to both of the groups on the events "on any click" at the end of those actions make the button that was select=true to false
Example: on the group (options click) you have the event:
On any click
second condition: is the options button selected
Actions
at the end of those actions: add set options button selected to false
And the same for the other group
5-I changed, now it uses Families to have it more organized