# Engine

### Engine Settings

* **Enabled:** `true`\
  *Determines whether the engine feature is enabled or disabled.*
* **Key:** `'B'`\
  *Specifies the key binding used to toggle the engine on or off.*
* **Desc:** `'Toogle engine'`\
  *Provides a short description for the engine toggle feature.*
* **StartEngineOnEntering:** `false`\
  *Indicates whether the engine should automatically start when entering a vehicle.*

```lua title="shared/config.lua"
KOJA.Engine = {
    Enabled = true,
    Key = 'B',
    Desc = 'Toogle engine',
    StartEngineOnEntering = false
}
```

## Related pages

- [Changing Language](/new/hud/configuration/changing-language) — Explanation of the locale configuration in the script
- [Debug Prints](/new/hud/configuration/debug-prints) — Explanation of the debug configuration in the script
- [Settings Command](/new/hud/configuration/settings-command) — Explanation of the commands configuration in the script
- [Hide Minimap](/new/hud/configuration/hide-minimap) — Explanation of the minimap configurations in the script
- [Notifications](/new/hud/configuration/notifications) — Explanation of the notify configuration in the script
- [Nitro](/new/hud/configuration/nitro) — Explanation of the nitro configuration in the script
- [Configuration](/new/hud/configuration) — back to the section overview
