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

# Seatbelt

### Seatbelt Settings

* **Enabled:** `true`\
  \&#xNAN;*Determines whether the seatbelt feature is active.*
* **Key:** `'L'`\
  \&#xNAN;*Specifies the key binding used to toggle the seatbelt.*
* **Desc:** `'Toogle seatbelt'`\
  \&#xNAN;*A short description for the seatbelt toggle functionality.*
* **MaxVehicleSpeedToRagdoll:** `70`\
  \&#xNAN;*Defines the maximum vehicle speed at which a ragdoll effect may be triggered if the seatbelt is not fastened.*

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

```lua
KOJA.Seatbelt = {
    Enabled = true,
    Key = 'L',
    Desc = 'Toogle seatbelt',
    MaxVehicleSpeedToRagdoll = 70
}
```

{% endcode %}
