> For the complete documentation index, see [llms.txt](https://docs.kojascripts.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kojascripts.eu/new/hud/configuration/engine.md).

# Engine

### Engine Settings

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

{% code title="shared/config.lua" %}

```lua
KOJA.Engine = {
    Enabled = true,
    Key = 'B',
    Desc = 'Toogle engine',
    StartEngineOnEntering = false
}
```

{% endcode %}
