> For the complete documentation index, see [llms.txt](https://gtadocs.gta-explore.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gtadocs.gta-explore.com/bank-robbery/install.md).

# Install

## Requirements

### SD\_Lib

1. Download the latest release of [SD\_Lib](https://github.com/Samuels-Development/sd_lib/releases).
2. Follow the [Installation & Integration](https://docs.samueldev.shop/overview/library/installation-and-integration) guide from SD\_Lib.

### Target System

1. Download the latest release of the target system of your choice.
2. Follow the installation guide of your target system

<table><thead><tr><th>Target System</th><th data-type="content-ref">Releases</th><th data-type="content-ref">Installation Guide</th></tr></thead><tbody><tr><td>Ox Target</td><td><a href="https://github.com/overextended/ox_target/releases">https://github.com/overextended/ox_target/releases</a></td><td><a href="https://overextended.dev/ox_target">https://overextended.dev/ox_target</a></td></tr><tr><td>QB Target</td><td><a href="https://github.com/qbcore-framework/qb-target">https://github.com/qbcore-framework/qb-target</a></td><td></td></tr></tbody></table>

### EXP\_Hack

Follow the installation guide of [exp\_hack](https://gtadocs.gta-explore.com/hack/install).

## Adding Items

### Images

Here are some images you can use from [bitc0de's items gallery](https://github.com/bitc0de/fivem-items-gallery).

<table data-view="cards"><thead><tr><th data-card-cover data-type="files"></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><a href="/files/8BrnkLkGo8hDE8LSFSdD">/files/8BrnkLkGo8hDE8LSFSdD</a></td><td><a href="https://raw.githubusercontent.com/bitc0de/fivem-items-gallery/main/images/tech/laptop.png">https://raw.githubusercontent.com/bitc0de/fivem-items-gallery/main/images/tech/laptop.png</a></td></tr><tr><td><a href="/files/VBvsQ1OUgFIXliJKuPCq">/files/VBvsQ1OUgFIXliJKuPCq</a></td><td><a href="https://raw.githubusercontent.com/bitc0de/fivem-items-gallery/main/images/tech/laptop2.png">https://raw.githubusercontent.com/bitc0de/fivem-items-gallery/main/images/tech/laptop2.png</a></td></tr><tr><td><a href="/files/rpaoZo3t88rFiOxpKi6T">/files/rpaoZo3t88rFiOxpKi6T</a></td><td><a href="https://raw.githubusercontent.com/bitc0de/fivem-items-gallery/main/images/tech/laptop3.png">https://raw.githubusercontent.com/bitc0de/fivem-items-gallery/main/images/tech/laptop3.png</a></td></tr></tbody></table>

### Inventories

#### ox\_inventory

1. Add the following lines to your `ox_inventory/data/items.lua`.

<pre class="language-lua"><code class="lang-lua">```lua
laptop = {
<strong>    label = "Laptop",
</strong>    weight = 1000,
},
```
</code></pre>

2. Choose one of the [images](#images) and save it. You can also get a custom one yourself.
3. Rename the file to `laptop`.
4. Add the file to `ox_inventory/web/images`.

#### esx\_inventory

1. Execute the following lines on your database.

```sql
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('laptop', 'Laptop', 1, 0, 1);
```

2. Choose one of the [images](#images) and save it. You can also get a custom one yourself.
3. Rename the file to `laptop`.
4. Add the file to `esx_inventory/html/img/items`.

#### qb-inventory

1. Add the following lines to your `qb-core/shared/items.lua`.

````lua
```lua
laptop = { name = 'laptop', label = 'Laptop', weight = 1000, type = 'item', image = 'laptop.png', unique = true },
```
````

2. Choose one of the [images](#images) and save it. You can also get a custom one yourself.
3. Rename the file to `laptop`.
4. Add the file to `qb-inventory/html/images`.

## Starting the resource

1. Add the following line to your `server.cfg`.

```
ensure exp_bank_robbery
```

2. Restart your server.
3. Enjoy! :rocket:
