Brutal Scripts
YouTubeDiscordStore
  • 🙉About Us
  • ↗️Translate
  • Informations
    • 🔒Escrow System
    • 🔥Common Problems
  • Scripts
    • 📄Notify
      • Accessible files
      • Installation guide
    • 🔠Text-UI
      • Installation guide
      • Exports & How to use
      • Integrations
    • 🤟Gangs
      • Accessible files
      • Installation guide
      • exports / triggers
      • Create a new gang
    • 🏡Housing
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🔑Keys
      • Accessible files
      • Installation guide
      • exports / triggers
    • 💥Gang Actions
      • Accessible files
      • Installation guide
      • exports / triggers
      • Controlling the menu
    • ⭕Radial
      • Accessible files
      • Installation guide
      • Adding new buttons
    • 🎯Executions
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🐶Pets + K9 V2
      • Accessible files
      • Installation guide
    • 👮Police Job
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🚑Ambulance Job
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🔧Mechanic Job
      • Accessible files
      • Installation guide
      • exports / triggers
    • 💪GYM with Skills V2
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🔫Paintball
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🥊Boxing
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🔨Crafting
      • Accessible files
      • Installation guide
      • Creating a new crafting table
    • 🏦Banking
      • Accessible files
      • Installation guide
      • Paycheck transactions
      • Registering transactions
    • 🎳Bowling
      • Accessible files
      • Installation guide
      • exports / triggers
    • 🦌Hunting
      • Accessible files
      • Installation guide
    • 🏁Racing Script
      • Accessible files
      • Installation guide
    • 🐛Reports
      • Accessible files
      • Installation guide
    • 🛒Shop Robbery
      • Accessible files
      • Installation guide
    • 🛥️Yacht Heist
      • Accessible files
      • Installation guide
    • 🧾Billing
      • Accessible files
      • Installation guide
      • Triggers
    • 💰Truck Robbery
      • Accessible files
      • Installation guide
    • 🏧Atm Robbery
      • Accessible files
      • Installation guide
    • 👶Baby script
      • Installation guide
      • How to add more babys
  • Others
    • Register Key Mapping
    • Drill Minigame
    • Discord Webhook
Powered by GitBook
On this page
  • Create a singe button
  • Create a button container

Was this helpful?

  1. Scripts
  2. Radial

Adding new buttons

Welcome to the Brutal Radial guide, here you can learn how to expand the basic radial menu to your needs.

If you try to use a bruta_gangs event but the brutal_gangs script doesn't run on your server you won't see the button which is created with that event.

Create a singe button

Open the config.lua file and add this table inside of the 'Menu' table.

{
    label = 'Example',
    allowedjobs = false,  -- Set to 'false' to allow it for everyone. | This can only be used if 'blacklistedjobs' is also set to 'false'.
    blacklistedjobs = false, -- Set to 'false' to allow it for everyone.
    icon = '<img src="assets/bill.png"></img>',
    description = 'Example description',
    event = 'example:event',
},

Edit the texts and the event for your needs

Create a button container

You can create a container which can contain multiple other buttons.

Open the config.lua file and add this table inside of the 'Menu' table.

 {
    label = 'Example container',
    allowedjobs = false,  -- Set to 'false' to allow it for everyone. | This can only be used if 'blacklistedjobs' is also set to 'false'.
    blacklistedjobs = false, -- Set to 'false' to allow it for everyone.
    icon = '<img src="assets/siren.png"></img>',
    description = 'Example description',
    table = {
        {label = 'Example button', icon = '<img src="assets/police.png"></img>', description = 'Example Description...', event = 'example:event'},
        {label = 'Example button', icon = '<img src="assets/ambulance.png"></img>', description = 'Example Description...', event = 'example:event'},
        {label = 'Example button', icon = '<img src="assets/mechanic1.png"></img>', description = 'Example Description...', event = 'example:event'},
        {label = 'Example button', icon = '<img src="assets/mechanic2.png"></img>', description = 'Example Description...', event = 'example:event'},
    }
},
PreviousInstallation guideNextExecutions

Last updated 3 months ago

Was this helpful?

⭕
Page cover image