# Installation

## 1. Download Resource

Download the purchased resource from [**CFX Portal**](https://portal.cfx.re/assets/granted-assets) - the official site of FiveM with purchased resources.

***

## 2. Environment Requirements

{% stepper %}
{% step %}

### Remove conflict scripts

Remove your previous identity system, e.g. esx\_identity.
{% endstep %}

{% step %}

### Make changes to external resources

{% tabs %}
{% tab title="ESX" %}
{% hint style="warning" %}
If you are using an older ESX like 1.8.X, 1.9.X the configuration file path is **es\_extended/config.lua**
{% endhint %}

1. Go to your **es\_extended/shared/config/main.lua** file.
2. Find options `Config.Identity`
3. Set parameter to `true`:

```lua
Config.Identity = true
```

{% endtab %}
{% endtabs %}
{% endstep %}
{% endstepper %}

***

## 3. Start Resource

To start a resource in your `server.cfg`, ensure that it begins after your framework has been initiated. For instance, if you are using a framework like `es_extended`, you should start resource after it, like so:

```python
start [core] # For example, here is your framework (esx/qb-core)

# VMS Resources
start vms_multichars
start vms_identity
```

Ensure there are no syntax errors or incorrect paths in your `server.cfg`.
