# Config File

{% code title="Config File" overflow="wrap" lineNumbers="true" fullWidth="false" %}

```lua
Config = {}

Config.MinRange = 115 -- Minimum range to spawn vehicles for the nearest Showroom location
Config.MaxRange = 120 -- Maximum range to spawn vehicles for the nearest Showroom location
Config.PlateText = 'EXPO' -- Vehicle Plate Text

Config.Showrooms = { -- Showroom Zone to spawn cars only in this Zone, so if you have cars in other Showroom they won't spawn (Save Performance)
    vector3(0.0, 0.0, 0.0),
}

Config.VehicleList = { -- List of vehicles to spawn on diferent Showrooms | Vehicle Model is the model of the vehicle to spawn Example: 'adder'
    { pos = vector3(0.0, 0.0, 0.0), h = 0.0, model = 'VEHICLE MODEL'},
}
```

{% endcode %}


---

# 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://bruno-scripts.gitbook.io/docs.bruno-scripts/free-scripts/showroom/config-file.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.
