Money Functions Don't Work?

Symptoms:

  • Shop purchases fail

  • Money not deducted after buying

Common causes:

  1. Wrong account type name

    -- QBCore uses:
    player.Functions.GetMoney('cash')
    
    -- Some frameworks use:
    player.Functions.GetMoney('money')
  2. Different function signatures

    -- QBCore:
    player.Functions.RemoveMoney('cash', amount)
    
    -- ESX:
    player.removeMoney(amount)
  3. External economy system not integrated

    If using a custom economy, update the bridge functions.


Last updated