ak4y Development
TEBEXYOUTUBEDISCORD
  • 📖Welcome
  • INFORMATION
    • 🙋Discord Customer Role
    • ❓Tebex Script Integration
    • 🔐Setting Steam Api Key
    • 🔑CFX Auth System
    • 📭Lost Transaction ID
    • 🔓Escrow/Open Source
    • 😟You lack the required entitlement
  • SCRIPTS
    • ak4y-vipSystemv2
      • Manage Categories
      • Config
        • Translate
        • General Settings
        • Special Offer Category
        • Hot Deals Category
        • Buy Coin Category
        • Bundle Category
        • Customize Category
        • House Category
        • Job Category
        • Vehicle Category
        • Item Category
        • Money Category
        • Weapon Category
      • Triggers
      • Admin Commands
    • ak4y-hudv1
      • Build For Open Source
      • Setup Script
      • Config
      • Exports
    • ak4y-football
      • Known Errors
      • Setting Up
      • Config
    • ak4y-caseOpening
      • Config
    • ak4y-battlepass
      • Config
    • ak4y-vipSystem
      • Config
    • ak4y-playtimeshop
      • Config
    • ak4y-blackmarket
      • Config
    • ak4y-dailymissions
      • Config
    • ak4y-advancedFishing
      • Config
    • ak4y-pauseMenu
      • Config
    • ak4y-dailyRewards
      • Config
    • ak4y-jobSelector
      • Config
    • ak4y-advancedHunting
      • Config
    • ak4y-dice
      • Config
    • ak4y-dailyWheel
      • Config
    • ak4y-multicharacter
      • Config
    • ak4y-spawnSelector
      • Config
    • ak4y-kit
      • Config
    • ak4y-treasureHunting
      • Config
    • ak4y-garbageJob
      • Config
    • ak4y-pauseMenuV2
      • Copy of Config
Powered by GitBook
On this page

Was this helpful?

  1. SCRIPTS
  2. ak4y-vipSystemv2
  3. Config

Bundle Category

local preCategory = {
    label = "Bundle",
    pageValue = "bundle-menu",
    categoryType = "bundle",
    items = {
        {
            id = 1, -- Should be unique 
            label = "Player Starter Pack", -- Display name
            itemType = "bundle", -- Type of item (JUST BUNDLE)
            giveItems = { -- item types: "vehicle", "item", "money", "weapon"
                { label = "Zentorno", itemName = "zentorno", itemCount = 1, itemType = "vehicle", garage = "pillboxgarage", itemImg = "./itemImages/zentorno.png" },
                { label = "Zentorno", itemName = "zentorno", itemCount = 1, itemType = "vehicle", garage = "pillboxgarage", itemImg = "./itemImages/zentorno.png" },
                { label = "Zentorno", itemName = "zentorno", itemCount = 1, itemType = "vehicle", garage = "pillboxgarage", itemImg = "./itemImages/zentorno.png" },
                            
                { label = "Pistol", itemName = "weapon_pistol", itemCount = 1, itemType = "weapon", itemImg = "./itemImages/weapon_pistol.png" },
                { label = "Pistol", itemName = "weapon_pistol", itemCount = 1, itemType = "weapon", itemImg = "./itemImages/weapon_pistol.png" },
                { label = "Pistol", itemName = "weapon_pistol", itemCount = 1, itemType = "weapon", itemImg = "./itemImages/weapon_pistol.png" },
            
                { label = "Bandage", itemName = "bandage", itemCount = 1, itemType = "item", itemImg = "./itemImages/bandage.png" },
                { label = "Bandage", itemName = "bandage", itemCount = 1, itemType = "item", itemImg = "./itemImages/bandage.png" },
                { label = "Bandage", itemName = "bandage", itemCount = 1, itemType = "item", itemImg = "./itemImages/bandage.png" },

                { label = "Money ($10.000)", itemName = "money", itemCount = 10000, itemType = "money", itemImg = "./itemImages/dirtymoney.png"},
                { label = "Money ($10.000)", itemName = "money", itemCount = 10000, itemType = "money", itemImg = "./itemImages/dirtymoney.png"},
            },
            price = 1000, -- Price (Without discount)
            description = "This is a starter pack for new players, it includes weapons, vehicles, and more!",
            discount = { -- Discount settings...
                state = true, -- If you want to discount, set it to true
                newPrice = 950, -- New price (if discount is active)
            },
        },
    },
},
PreviousBuy Coin CategoryNextCustomize Category

Last updated 1 year ago

Was this helpful?