# Features

## Seatbelt

```lua
Config.Seatbelt = {
    Enable = true,
    Key = "L",
    BlackListClasses = {},
    PreventActions = true,
    Warning = {
        Enable = true,
        MinimumSpeed = 15,
        Cooldown = 20000
    },
    ToggleNotification = false,
    Sounds = {
        Warning = "tesla.ogg",
        Buckle = "buckle.ogg",
        Unbuckle = "unbuckle.ogg"
    }
}
```

Fully built in seatbelt which is fully customizable.

## Speedlimiter

```lua
Config.Speedlimit = {
    Enable = true,
    Command = "speedlimit",
    Key = "c" -- set nil to disable
}
```

Speedlimiter for vehicles.

## CarControl

```lua
Config.CarControl = {
    Enable = true,
    Command = "carcontrol",
    Key = "O"
}
```

CarControl menu, for controlling vehicle seats, windows and doors.

## StressSystem

```lua
Config.Stress = {
    Enable = true,
    GainOnShooting = true,
    RelieveTimeout = 1000, -- How much it should pass from last stress gained to start relieve ? (in ms)
    Effects = {
        Blur = { -- Screne blur
            Enable = true,
            Min = 20, -- Minimum stress for effect
            Max = 100, -- Maximum stress for effect
            Duration = 5000, --ms
            Timeout = 10000, --ms
        },
        Shake = { -- Screen shake
            Enable = true,
            Min = 20, -- Minimum stress for effect
            Max = 100, -- Maximum stress for effect
            Timeout = 10000, --ms
        },
        Fall = { -- Fell down
            Enable = true,
            Min = 40, -- Minimum stress for effect
            Max = 100, -- Maximum stress for effect
            Timeout = 10000, --ms
        },
    }
}
```

Highly customizable builtin stress system.

## Elements

Fully customizable HUD elements read more [on this page](/scripts/justhud/elements.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.justscripts.net/scripts/justhud/features.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
