Common Issues
No appear coins
For QBCore, backfill existing accounts with a coins field:
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', '$');