# Installation

## What do I need?

Use a supported framework or make it work with yours via the bridge folder.

[Ox Lib](https://github.com/overextended/ox_lib/releases/) (Required, Works with any server).

## Installation

:warning:ensure ox\_lib before pickle\_slapboxing in the config.:warning:

Navigate to the "\_INSTALL" folder.

Import the images in the \_INSTALL/images folder to your inventory image folder. (Varies on framework)

Add the items to your SQL if using ESX, or into the shared/items.lua for QB-Core.

{% tabs %}
{% tab title="ESX Items" %}
Execute the SQL provided inside the \_\_INSTALL folder.
{% endtab %}

{% tab title="qb-inventory" %}

```lua
["slaptable"] 							= {["name"] = "slaptable",  	     		    ["label"] = "Slap Table",	 		    ["weight"] = 1, 		["type"] = "item", 		["image"] = "slaptable.png", 				["unique"] = true, 	    ["useable"] = true, 	["shouldClose"] = true,   	["combinable"] = nil,   ["description"] = ""},
```

{% endtab %}

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

```lua
["slaptable"] = {
    label = 'Slap Table',
    weight = 1,
    stack = true,
    description = ""
}
```

{% endtab %}
{% endtabs %}
