How to make menu?

Hey, I want to make an attractive menu for my game. But, is it possible to make whole menu without making different scenes for each menu load??? Let me explain my menu style in detail…

MENU>RESTART MENU>SETTINGS MENU>QUIT GAME

Restart will restart the game.

In settings again a menu will appear

SETTINGS> SOUND SETTINGS> VIBRATE

SOUND> ON/OFF VIBRATE>ON/OFF

QUIT WILL EXIT THE GAME.

I have made different scenes for each menu options, which may take more time while running on a mobile device.

SO, my question is, is it possible to make this menu without creating different scenes???
Also making this menu using Switch case. Any help would be great. Thanks in advance.

first, it’s wrong to have different scene for each menu option. some may say it even wrong to have different scene to game play and main menu screen…
scenes are taking time to load especially on mobile so you should consider have one scene for main menu screen and scene as needed for game play.
the main menu scene should have all the option you need, including start play, game settings, high score display etc. keep in mind that game settings are just settings that probably reflect a variable condition (like a bool for VIBRATE on-off for example) if you are not using a gui solution like NGUI or DF-gui you should be able to create menus with the unity gui system.