> For the complete documentation index, see [llms.txt](https://corner-scripts.gitbook.io/corner-scripts-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://corner-scripts.gitbook.io/corner-scripts-docs/assets-and-guides/garage-system/configuration.md).

# 🧰Configuration

#### `config.lua`

```lua
Config.Framework = 'auto' -- 'auto', 'esx', 'qbcore', 'qbox'
Config.InteractionType = 'target' -- 'E' or 'target'
Config.ImpoundPrice = 500
Config.FuelSystem = 'ox_fuel' -- 'LegacyFuel', 'ox_fuel', 'cdn-fuel'
```

#### `garages.lua`

Define your garages with ease:

```lua
['rancho'] = {
    Label = 'Rancho Garage',
    Type = 'car',
    Coords = {
        Menu = vector3(224.345, -1872.465, 26.871),
        Spawn = vector4(227.266, -1879.912, 26.128, 229.535),
    },
    Blip = { Sprite = 357, Color = 3, Scale = 0.9, Label = 'Garaż' }
}
```

#### `carsell.lua`

Configure the dealership and sell spots:

```lua
Config.Dealership = {
    NPC = { Model = 'a_m_y_business_01', Coords = vector4(...) },
    Blip = { Enable = true, Sprite = 225, Label = "Dealership" },
    SellSpots = { ... }
}
```
