# Skip Main Menu

You may want the game to start immediately without showing the main menu.

## Configuration

To skip the main menu, change the `ShowMainScreen` setting in your `options.js`:

```javascript
monogatari.settings({
    'ShowMainScreen': false
});
```

### Default Behavior

By default, `ShowMainScreen` is set to `true`, which displays the main menu:

```javascript
monogatari.settings({
    'ShowMainScreen': true
});
```

## Use Cases

### Instant Start Games

For games that should begin immediately:

```javascript
monogatari.settings({
    'ShowMainScreen': false,
    'Label': 'Intro'  // Start at a specific label
});
```

### Demo/Preview Mode

Skip the menu for demo versions:

```javascript
monogatari.settings({
    'ShowMainScreen': false,
    'Label': 'DemoStart'
});
```

## Important Notes

> \[!NOTE] When `ShowMainScreen` is `false`:
>
> * The game starts at the label specified by the `Label` setting (default: `'Start'`)
> * Players can still access the main menu by ending the game or through the quick menu
> * Save/Load functionality remains available through the quick menu

## Splash Screen Alternative

If you want something to show before the game but not the full main menu, consider using a splash screen label:

```javascript
monogatari.settings({
    'ShowMainScreen': false,
    'SplashScreenLabel': '_SplashScreen'
});

monogatari.script({
    '_SplashScreen': [
        'show scene company_logo with fadeIn',
        'wait 3000',
        'show scene black with fadeOut',
        'jump Start'
    ],
    'Start': [
        // Your game begins here
    ]
});
```

## Related

* [Game Configuration](/documentation/configuration-options/game-configuration.md) - All game settings
* [Saving](/documentation/configuration-options/game-configuration/saving.md) - Save and load configuration


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.monogatari.io/documentation/configuration-options/game-configuration/skip-menu.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
