How Can I Create a Level Select Screen?

Hi everyone,

I’m looking for some help with creating a level select screen for my game. It should pause the gameplay and bring up a list of the game’s levels that the player can scroll through and select, which will load up the corresponding map when selected. If anyone has any advice or can point me toward some information on this, I’d greatly appreciate it.

Just create buttons in UMG + connect them with a “onclicked” event and a “open level” node () Now you just have to spawn/depspawn it with a button + with a pause/unpause node + enable the mouse cursor in your player controller :slight_smile:

This is just what I needed. Thanks!