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

# Config

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

```lua
Config = {}

Config.Settings = {
    Framework = "ESX",                      -- ESX | QB | QBX
    Target = "ox_target",                   -- ox_target | qb-target

    Physics = {
        Enable = true,                      -- Enable or disable the tape physics
        SagDistanceThreshold = 6.0          -- Maximum distance (in meters) beyond which the tape stops curving
    },

    Tapes = {
        {
            item = "police_tape",           -- Name item for spawn prop
            model = "kz_police_tape_prop",  -- Prop name (do not change this)
            jobs = false,                   -- Choose whether a required job is needed to remove the tape. Use jobs = false to allow everyone to remove the tape, or jobs = { "JOB_NAME" } to require specific job(s).
            maxDistance = 15.0              -- Maximum distance (in meters) where the tape reaches
        },
        {
            item = "police_tape2",
            model = "kz_police_tape_prop2",
            jobs = false,
            maxDistance = 15.0
        },
        {
            item = "sheriff_tape",
            model = "kz_sheriff_tape_prop",
            jobs = false,
            maxDistance = 15.0
        },
        {
            item = "crimescene_tape",
            model = "kz_crimescene_tape_prop",
            jobs = false,
            maxDistance = 30.0
        },
        {
            item = "fire_tape",
            model = "kz_fire_tape_prop",
            jobs = { "police", "sheriff" },
            maxDistance = 15.0
        }
    },

    Locales = {
        ['placing_title'] = "~y~TAPE PLACEMENT~s~",
        ['placing_help'] = "~INPUT_CONTEXT~ Confirm Position\n~INPUT_CELLPHONE_CANCEL~ Cancel",
        ['target_remove'] = "Remove Tape",
        ['target_break'] = "Break Tape",
    }
}
```

{% endcode %}
