Delete bill
Last updated
exports["billing_ui"]:deleteBillId(billId)billId
integer
The bill ID you can find in the database table billing
-- Example command /deleteBillId 51
RegisterCommand("deleteBillId", function(playerId, args)
local billId = tonumber(args[1])
exports["billing_ui"]:deleteBillId(billId)
end)Last updated