Problem with Mainmenu

Hello,
my problem is the following: I created a level and made the mainmenu with this help:
https://docs.unrealengine.com/en-us/Engine/UMG/QuickStart/4
I click on play in the mainmenu and then i am in my first level. Then i go to another level and back to the first level.
If i go in the first level again the mainmenu pop up again and i need to click play again. How can i play the level without getting the mainmenu again and again?

You have screen shots of your setup?

I generally don’t like trying to figure out what is wrong with someone else’s tutorial although I briefly skimmed the link you provided and from what it seems you will always get the main menu when you play because it is created in the level BP. So each time you open the level “Event Begin Play” is executed thus creating the main menu widget. What you would need to do to fix this is create a separate level that all it has is the main menu. Then when you click “play” it should open Level 1. This way when you return to level 1 from level 2 for example, it will not re-create a main menu HUD.

If that doesn’t work, I can help you script logic to do what you want but I won’t base it off the linked tutorial.

Cool! That was a simple fix! haha

Ty. I made an empty level and now it works fine for me.