> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Replace default billing

> Replace the default billing behavior triggered from the actions menu.

Triggered when using the billing option in the F6 actions menu.

<CodeGroup>
  ```lua Event theme={null}
  RegisterNetEvent("jobs_creator:actions:createBilling", function()
  end)
  ```

  ```lua Example theme={null}
  -- To place in jobs_creator/integrations/cl_integrations.lua
  RegisterNetEvent("jobs_creator:framework:ready", function()
      -- Disables the default script billing (otherwise there would be 2 billings)
      exports["jobs_creator"]:disableScriptEvent("jobs_creator:actions:createBilling")
  end)
  RegisterNetEvent("jobs_creator:actions:createBilling", function()
      -- Uses Billing UI event
      TriggerEvent("billing_ui:activateBillingMode")
  end)
  ```
</CodeGroup>

### Where to insert the code?

You can place it in the file `integrations/cl_integrations.lua` of the script, **at the bottom of the file on new lines**.


## Related topics

- [Client](/jobs-creator/client/index.md)
- [Replace default notifications](/billing-ui/client/replace-default-notifications.md)
