# Cruisemode

### Cruise Mode Settings

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

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

## 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
