# Installation

### Step 1

Execute the SQL:&#x20;

```sql
ALTER TABLE `player_vehicles`
    ADD `drift` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `state`;
```

***

### Step 2

Add those items to your QBCore items shared. [`resources\[qb]\qb-core\shared\items.lua`](#user-content-fn-1)[^1]

***

<pre class="language-lua" data-title="items.lua" data-line-numbers><code class="lang-lua"><strong>	["kit-drift"] = {
</strong>		["name"] = "kit-drift",
		["label"] = "Kit de drift",
		["weight"] = 1000,
		["type"] = "item",
		["image"] = "kit-drift.png",
		["unique"] = true,
		["useable"] = true,
		["shouldClose"] = true,
		["combinable"] = nil,
		["description"] = "Drift System Instalation Kit"
	},
</code></pre>

### Step 3

***

Download the following imagen and copy in to your inventory items folder&#x20;

{% tabs %}
{% tab title="URL" %}
<https://i.imgur.com/QJiYWOA.png>
{% endtab %}

{% tab title="Preview" %}

<figure><img src="https://i.imgur.com/QJiYWOA.png" alt=""><figcaption></figcaption></figure>

{% endtab %}
{% endtabs %}

***

### Step 4

Drag And Drop, Put `lvs_drift` in resources folder

***

### Step 5

Start The Script Start in `server.cfg` , `ensure lvs_drift.`

***

{% hint style="info" %}
You can use ox\_lib for menu, download at <https://github.com/overextended/ox_lib/releases>.\
make sure to modify the `fxmanifest.lua` file, uncomment the line 19 and 38
{% endhint %}

[^1]:
