# Setting up store

{% stepper %}
{% step %}

#### Go to config.lua

Our script also includes an integrated store system, enabling you to set up multiple shops within the cinemas to sell products and snacks. These shops can be configured in the `brnx-cinemasystem/modules/shared/config.lua` file.
{% endstep %}

{% step %}

#### Create store

{% hint style="danger" %}
If you don't have the [Ten Cent](https://brunxmods.com/product/ten-cent-cinema), [Cinema Doppler](https://brunxmods.com/product/cinema-doppler) or [Drive-In](https://brunxmods.com/product/drive-in-cinema) maps, you will need to configure the entire script manually. However, if you do have these maps, there's no need to worry, as both are already pre-configured. You can still edit them if needed. Follow the examples below to create a new cinema.
{% endhint %}

{% code title="brnx-cinemasystem/modules/config/config.lua" fullWidth="true" %}

```lua
config.shops = {
    enabled = true,

    cinema = {
        ['newcinema_food'] = {
            title = 'New Cinema',

            items = {
                {
                    item = 'popcorn',
                    label = 'Popcorn',
                    image = '../images/popcorn.png',
                    price = 5
                },
                {
                    item = 'cola',
                    label = 'Cola',
                    image = '../images/cola.png',
                    price = 10
                }
            }
        }
    },

    locations = {
        { coords = vector3(0.0, 0.0, 0.0), distance = 2.0, config = 'newcinema_food' }
    }
}
```

{% endcode %}
{% endstep %}
{% endstepper %}
