SetMultiplayerWalletCash
DocsSetMultiplayerWalletCash()Description
Preview image:

To change money value use <code>STAT_SET_INT</code> with "MP0\_WALLET_BALANCE" to whatever value you need to.
Returns
voidThis native does not return a value.
Examples
Official
// Code to show both Money and Bank HUD
N_0x170f541e1cadd1de(true);
SetMultiplayerWalletCash();
SetMultiplayerBankCash();
N_0x170f541e1cadd1de(false);
// Add a delay to let the player read his money
await Delay(5000);
// Hide both Bank and Money HUD
RemoveMultiplayerWalletCash();
RemoveMultiplayerBankCash();