> For the complete documentation index, see [llms.txt](https://docs.biyei.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.biyei.net/scripts/coins-+-reward-system/common-issues.md).

# Common issues

## No appear coins

<figure><img src="/files/eDg08764TvBC8zK2mViw" alt=""><figcaption></figcaption></figure>

For QBCore:

```sql
UPDATE players
SET money = JSON_INSERT(money, '$.coins', 0)
WHERE JSON_CONTAINS_PATH(money, 'one', '$');
```

For ESX

```sql
UPDATE users
SET accounts = JSON_INSERT(accounts, '$.coins', 0)
WHERE JSON_CONTAINS_PATH(accounts, 'one', '$');
```
