# Common Problems

{% hint style="danger" %}
Before opening the ticket, read the entire section carefully.
{% endhint %}

## Error with PlayerData (esx)

* go to bridge/esx/server.lua
* find line 25 and replace

### From:

```lua
function GetIdentifierByPlayerData(Player)
    return Player.PlayerData.citizenid    
end
```

### To:

```lua
function GetIdentifierByPlayerData(Player)
    return Player.identifier 
end
```
