> For the complete documentation index, see [llms.txt](https://mstudio-1.gitbook.io/mstudio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mstudio-1.gitbook.io/mstudio/kz-resources/editor-11/config.md).

# Config

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

```lua
Config = {}

-- Language: 'it' | 'en'
Config.Locale = 'en' 

-- Distance to interact (meters)
Config.InteractDistance = 4.0

Config.PositionNotification = "center-right"

Config.Buttons = {
    interact = 38, -- Button to interact (E)
    releaseHostage = 47, -- Button to release the hostage (G)
    releaseCarryHostage = 47, -- Button to release the carry (G)
}

-- Hostage Animation
Config.SurrenderAnim = {
    dict = "random@arrests",
    anim = "kneeling_arrest_idle",
    flag = 49,
    duration = -1
}

-- Follow Settings
Config.Follow = {
    offset = vector3(0.0, -1.2, 0.0),
    walkSpeed = 2.0,
    persist = true
}

Config.PedMarker = {
    Enabled = true,
    type = 20, -- marker type
    size = 0.2, -- marker dimensions
    color = { r = 0, g = 88, b = 255, a = 0.8 } -- RGBA color
}
```

{% endcode %}
