Make sure to take time and configure this properly, this can get confusing but we promise the script works! If you need any support please reach out to us via discord!

Add Packages

  1. Open the config file and locate config.packages.
  2. Create a new package by following this format:
config.lua
['Package Name On Tebex'] = {
    rewards = {
        ['item_name'] = amount_to_give,
        ['item_name'] = amount_to_give,
        ['item_name'] = amount_to_give,
    }
}

The “Package Name On Tebex” needs to be EXACTLY the same as it is displayed on the tebex, even a misplaced space can throw it off. (its best to just copy/paste the name)

Example

For this example I will be using the “Money” packages on Bandit RP.

  1. We will copy the Name directly from tebex.
  2. We will paste it directly into the ['Package Name On Tebex']
  3. Then after that we will configure the rewards, we use ESX so we will add money.
config.lua
['Money Tier #1'] = {
    rewards = {
        ['money'] = 50000,
    }
}