# Installation

1. Install all [dependencies](https://docs.bkscripts.com/scripts/bk_garages/dependencies) and make sure to ensure them in the `server.cfg`.
2. Place the bk\_garages folder somewhere in your resources directory.
3. Ensure the resource in your `server.cfg` as follows, **AFTER** all dependencies and core/framework resources:

```
ensure bk_garages
```

4. Modify the configuration files in the `/config` folder to your liking.
5. If you want to use the carjacker item (recommended), register the item in your inventory items file. Below are some examples:

<details>

<summary>If you use ox_inventory</summary>

* ox\_inventory/data/shared/items.lua:

```
['carjacker'] = {
    label = 'Car Jacker',
    weight = 2000,
    stack = false,
    consume = 0,
    description = 'Hmm, what could that do to parked cars...',
    server = {
        export = 'bk_garages.carJackerUsed'
    }
},
```

</details>

<details>

<summary>if you use qb_inventory</summary>

* qb-core/shared/items.lua

```
carjacker = { name = 'carjacker', label = 'Car Jacker', weight = 2000, type = 'item', image = 'carjacker.png', unique = true, useable = true, shouldClose = true, description = 'Hmm, what could that do to parked cars...' },
```

</details>

6. Add the item image to your inventory icons folder.
7. Enjoy!

{% hint style="info" %}
For support,  join our [discord](https://discord.gg/wZryDXaCAU)
{% endhint %}
