-- this will make three button 1000,10000, 1000000
['money'] = {
label = 'Money',
buttons = {
{
label = "Place 1000 on Ground",
action = function(slot)
exports.ox_inventory:closeInventory();
TriggerEvent("fs_placeables:placeitemhook", "money", 1000);
end
},
{
label = "Place 10000 on Ground",
action = function(slot)
exports.ox_inventory:closeInventory();
TriggerEvent("fs_placeables:placeitemhook", "money", 10000);
end
},
{
label = "Place 1000000 on Ground",
action = function(slot)
exports.ox_inventory:closeInventory();
TriggerEvent("fs_placeables:placeitemhook", "money", 1000000);
end
},
}
},
['money'] = {
[1000] = `prop_cash_pile_01`,
[10000] = `prop_money_bag_01`,
[1000000] = `prop_cash_case_01`,
},