how to show small menu and how to continue playing in the current level ?

Hi
I want a code when I press the escape button during play scene , it pause the game and shows small menu for continue game , new game , and quite game , I am asking of how to show this small menu and what is the code for continue the playing scene , please help:face_with_spiral_eyes:

Do you know about OnGUI-function: Unity - Scripting API: GUI

In that function you can just make a normal if-statement that checks if the game is paused or not, and as long as the game is paused show the GUI. If you need more help with the code post again.

Just short example code

Update()
{
     if (GetKeyDown(Keycode.P)
     {
          bPausedGame = true;
     }
}
OnGUI()
{
     If (bPausedGame == true)
          // SHOW GUI

}

I know the GUI menu but I don’t like it very much , because it still show the rectangle boarders even if you but a texture with it , and if so, how can I use three buttons in the same GUI ?so 1 button for continue , 1 for restart game , and one for quit

^^