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

# Config

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

```lua
Config = {}

Config.Settings = {
    DiscordWebhook = "YOUR_WEBHOOK_URL_HERE",
    Framework = "esx",                            -- esx | qb | qbx
    Locale = 'en',                                -- it | en | es
    Target = "ox_target",                         -- ox_target | qb-target
    Inventory = "ox_inventory",                   -- ox_inventory | qb-inventory
    Notification = "ox_lib",                      -- ox_lib | esx | qb
    Loot = {
        LootTime = 1500                           -- Duration (ms) to loot the item after clicking
    },
    AdminGroups = {
        command = "lootsettings",                 -- Command dashboard staff
        groups = {
            ["admin"] = true,
            ["superadmin"] = true,
            ["owner"] = true
        }
    },
    Animations = {
        { label = "Search on Land", dict = "amb@medic@standing@tendtodead@idle_a", anim = "idle_a" },
        { label = "Examine", dict = "rcmextreme3", anim = "idle" },
        { label = "Examine Object", dict = "amb@medic@standing@kneel@idle_a", anim = "idle_a" },
        { label = "Mechanic", dict = "mini@repair", anim = "fixing_a_ped" },
        { label = "Mechanic 2", dict = "anim@amb@clubhouse@tutorial@bkr_tut_ig3@", anim = "machinic_loop_mechandplayer" }
    }
}
```

{% endcode %}
