> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_clothing/rcore_clothes/adding-a-new-clothes-shop.md).

# Adding a new clothes shop

```lua
Config.Stores = {
    {
        position = vector3(-1164.99,-1586.59,4.38), --Position of blip
        label = 'Vespuci - Masky', --Mask at vespuci beach
        sprite = 362, --Blip sprite
        color = 60,--Blip color
        society = 'society_goverment', --Sociaty that will gain money from this shop, or remove it if you dont want to use it
        sections = {
            glasses = {--Section is one 3D openable text
                pos = vector3(-1164.99,-1586.59,4.38), --Position of it
                label = '🙈', --Display label
                help = 'Press ~INPUT_CONTEXT~ to open clothes shop with mask', --Help text
                components = { --Every section has components
                    {
                        label = 'Mask', --Component label
                        name = 'mask_1', --Component name are using from skinchanger names mask_1, mask_2 etc
                        from = -1, --From
                        to = 160, --To (automaticly setup so value doesnt matter)
                        current = -1, --Start position (setup by current player clothes)
                        reset = {
                            'mask_2' --If player will change mask_1 - reset mask_2 value
                        },
                        price = 50, --Price for mask:_1
                        blacklist = {
                            26,27, --Blacklist for only this shop, you can also use global blacklist, whitelist
                        }
                    },
                    {
                        label = 'Color of the mask', --Mask 2 label
                        name = 'mask_2', --mask_2
                        from = 0,
                        to = 20,
                        current = 0,
                        price = 10, --Price for this element
                    },
                },
                cam = {
                    offset = { --Camera offset
                        x = 0.0,
                        y = 1.0,
                        z = 0.7
                    },
                    pointOffset = { --Offset of point
                        x = 0,
                        y = 0,
                        z = 0.8
                    },
                    taskHeading = 100.66 --Heading, where the player will look
                }
            },
        }
    },
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://documentation.rcore.cz/paid-resources/rcore_clothing/rcore_clothes/adding-a-new-clothes-shop.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
