> For the complete documentation index, see [llms.txt](https://scythecode-studios.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://scythecode-studios.gitbook.io/docs/fivem-scripts/store-robbery/installation.md).

# Installation

<figure><img src="https://2019895826-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FL0j9g22qUvIxSf5O0gzy%2Fuploads%2FUERcAeDTJfZM7keyo8Ym%2Fscs_robberies.png?alt=media&amp;token=75e2b266-abc5-424f-abfc-df28f398bff8" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
Step by Step instructions to ensure a smooth installation experience
{% endhint %}

***

{% hint style="info" %}
First download the asset from [cfx portal](https://portal.cfx.re/assets/granted-assets)
{% endhint %}

* Extract scs\_robberies into your resources folder or subfolder \[scs]
* Head to your server.cfg and ensure scs\_robberies **after** your core, ox\_lib, inventory etc
* Head to **\[install]** folder in scs\_robberies and copy the images into your inventories **web** folder i.e **ox\_inventory/web/images**

{% tabs %}
{% tab title="ox\_inventory" %}

```lua
//     ["register_keys"] = {
        label = "Register Keys",
        weight = 100,
        stack = false,
        close = true,
        description = "Keys to a cash register.",
        consume = 0,
        client = {
            image = "register_keys.png",
        }
    },

    ["cowboy_hat"] = {
        label = "Cowboy Hat",
        weight = 500,
        stack = false,
        close = true,
        description = "A stylish cowboy hat to complete your western look.",
        consume = 0,
        client = {
            image = "cowboy_hat.png",
        }
    },

    ["expensive_sneakers"] = {
        label = "Expensive Sneakers",
        weight = 800,
        stack = false,
        close = true,
        description = "A pair of high-end sneakers known for their comfort and style.",
        consume = 0,
        client = {
            image = "expensive_sneakers.png",
        }
    },

    ["gucci_shirt"] = {
        label = "Gucci Shirt",
        weight = 600,
        stack = false,
        close = true,
        description = "A fashionable Gucci shirt that showcases luxury and elegance.",
        consume = 0,
        client = {
            image = "gucci_shirt.png",
        }
    },

    ["louis_vuitton_tshirt"] = {
        label = "Louis Vuitton T-Shirt",
        weight = 600,
        stack = false,
        close = true,
        description = "A trendy Louis Vuitton t-shirt that combines comfort with high fashion.",
        consume = 0,
        client = {
            image = "louis_vuitton_tshirt.png",
        }
    },

    ["panties"] = {
        label = "Panties",
        weight = 200,
        stack = false,
        close = true,
        description = "A pair of stylish panties made from soft, breathable fabric for all-day comfort.",
        consume = 0,
        client = {
            image = "panties.png",
        }
    },

    ["prada_shoes"] = {
        label = "Prada Shoes",
        weight = 800,
        stack = false,
        close = true,
        description = "A pair of luxurious Prada shoes that blend sophistication with comfort.",
        consume = 0,
        client = {
            image = "prada_shoes.png",
        }
    },

    ["shirts"] = {
        label = "TShirt",
        weight = 600,
        stack = false,
        close = true,
        description = "A TShirt that exudes style and elegance, perfect for any occasion.",
        consume = 0,
        client = {
            image = "shirts.png",
        }
    },

    ["shoes_blue"] = {
        label = "Blue Shoes",
        weight = 800,
        stack = false,
        close = true,
        description = "A pair of trendy blue shoes that add a pop of color to your outfit.",
        consume = 0,
        client = {
            image = "shoes_blue.png",
        }
    },

    ["shoes_green"] = {
        label = "Green Shoes",
        weight = 800,
        stack = false,
        close = true,
        description = "A pair of vibrant green shoes that make a bold fashion statement.",
        consume = 0,
        client = {
            image = "shoes_green.png",
        }
    },

    ["shoes_red"] = {
        label = "Red Shoes",
        weight = 800,
        stack = false,
        close = true,
        description = "A pair of striking red shoes that exude confidence and style.",
        consume = 0,
        client = {
            image = "shoes_red.png",
        }
    },

    ["shoes_pink"] = {
        label = "Pink Shoes",
        weight = 800,
        stack = false,
        close = true,
        description = "A pair of chic pink shoes that add a touch of femininity to your look.",
        consume = 0,
        client = {
            image = "shoes_pink.png",
        }
    },

    ["shoes_yellow"] = {
        label = "Yellow Shoes",
        weight = 800,
        stack = false,
        close = true,
        description = "A pair of bright yellow shoes that bring sunshine to your outfit.",
        consume = 0,
        client = {
            image = "shoes_yellow.png",
        }
    },

    ["valentino_pants"] = {
        label = "Valentino Pants",
        weight = 700,
        stack = false,
        close = true,
        description = "A pair of elegant Valentino pants that combine comfort with high fashion.",
        consume = 0,
        client = {
            image = "valentino_pants.png",
        }
    },
    
    ["store_card"] = {
        label = 'Store Card',
        weight = 1,
        stack = false,
        close = true,
        width = 1,
        height = 1,
        allowArmed = true,
        rarity = 'epic',
        description = 'A card for the store',
        client = {
            image = "store_card.png",
        },
    },
```

{% endtab %}

{% tab title="qb\_inventory" %}

```lua
register_keys = { name = "register_keys", label = "Register Keys", weight = 100, type = "item", unique = true, shouldClose = true, description = "Keys to a cash register." },
cowboy_hat = { name = "cowboy_hat", label = "Cowboy Hat", weight = 500, type = "item", unique = true, shouldClose = true, description = "A stylish cowboy hat to complete your western look." },
expensive_sneakers = { name = "expensive_sneakers", label = "Expensive Sneakers", weight = 800, type = "item", unique = true, shouldClose = true, description = "A pair of high-end sneakers known for their comfort and style." },
gucci_shirt = { name = "gucci_shirt", label = "Gucci Shirt", weight = 600, type = "item", unique = true, shouldClose = true, description = "A fashionable Gucci shirt that showcases luxury and elegance." },
louis_vuitton_tshirt = { name = "louis_vuitton_tshirt", label = "Louis Vuitton T-Shirt", weight = 600, type = "item", unique = true, shouldClose = true, description = "A trendy Louis Vuitton t-shirt that combines comfort with high fashion." },
panties = { name = "panties", label = "Panties", weight = 200, type = "item", unique = true, shouldClose = true, description = "A pair of stylish panties made from soft" },
prada_shoes = { name = "prada_shoes", label = "Prada Shoes", weight = 800, type = "item", unique = true, shouldClose = true, description = "A pair of luxurious Prada shoes that blend sophistication with comfort." },
shirts = { name = "shirts", label = "TShirt", weight = 600, type = "item", unique = true, shouldClose = true, description = "A TShirt that exudes style and elegance" },
shoes_blue = { name = "shoes_blue", label = "Blue Shoes", weight = 800, type = "item", unique = true, shouldClose = true, description = "A pair of trendy blue shoes that add a pop of color to your outfit." },
shoes_green = { name = "shoes_green", label = "Green Shoes", weight = 800, type = "item", unique = true, shouldClose = true, description = "A pair of vibrant green shoes that make a bold fashion statement." },
shoes_red = { name = "shoes_red", label = "Red Shoes", weight = 800, type = "item", unique = true, shouldClose = true, description = "A pair of striking red shoes that exude confidence and style." },
shoes_pink = { name = "shoes_pink", label = "Pink Shoes", weight = 800, type = "item", unique = true, shouldClose = true, description = "A pair of chic pink shoes that add a touch of femininity to your look." },
shoes_yellow = { name = "shoes_yellow", label = "Yellow Shoes", weight = 800, type = "item", unique = true, shouldClose = true, description = "A pair of bright yellow shoes that bring sunshine to your outfit." },
valentino_pants = { name = "valentino_pants", label = "Valentino Pants", weight = 700, type = "item", unique = true, shouldClose = true, description = "A pair of elegant Valentino pants that combine comfort with high fashion." },
store_card = { name = "store_card", label = "Store Card", weight = 100, type = "item", unique = true, shouldClose = false, description = "A card for a store?"},
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
You <mark style="color:$success;">DON'T</mark> need to run the sql, Script will auto insert into your database. But <mark style="color:red;">DO NOT</mark> delete the install folder.
{% endhint %}

***

* By default the script uses custom lockpick props which you can grab here for free [bzzz\_lockpick](https://forum.cfx.re/t/props-lockpicks/5089306)

***

> The script is set up for [gabz](https://www.gabzv.com/) locations by default


---

# 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://scythecode-studios.gitbook.io/docs/fivem-scripts/store-robbery/installation.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.
