> 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/cruisemode.md).

# Cruisemode

### Cruise Mode Settings

* **Enabled:** `true`\
  \&#xNAN;*Determines whether the cruise mode feature is active.*
* **Key:** `'T'`\
  \&#xNAN;*Specifies the key binding used to toggle cruise mode.*
* **Desc:** `'Active Cruise Mode'`\
  \&#xNAN;*A brief description for the cruise mode functionality.*
* **MinSpeed:** `20.0`\
  \&#xNAN;*Defines the minimum speed required for cruise mode to be activated.*

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

```lua
KOJA.CruiseMode = {
    Enabled = true,
    Key = 'T',
    Desc = 'Active Cruise Mode',
    MinSpeed = 20.0
}
```

{% endcode %}
