MVS
DiscordTebexYoutube
  • MAIN
    • License System
    • How To Dowload
    • Basic Aces & Principals overview/guide
  • Tebex
    • 🔥 Ultimate Hotkeys Script
      • 📌 Overview
      • 🔧 Configuration File (config.lua)
      • 📌 CommandList: Key Categories
      • 🎮 KeyList: Supported Keys
      • 🚀 How to Use the Script?
      • ❓ FAQ (Frequently Asked Questions)
Powered by GitBook
On this page
  1. Tebex
  2. 🔥 Ultimate Hotkeys Script

📌 CommandList: Key Categories

The CommandList allows you to create categories for different keybinds.

Each category contains:

  • label: The name of the category

  • description: A short description of what the category includes

  • keysList: The list of keybinds inside that category

Example Category Structure:

["example_category"] = {  
    label = "Example Category",
    description = "All keybinds for Example actions",
    keysList = {
        ["example_action"] = {
            label = "Example Action",
            type = "client",  -- Runs a client-side event
            trigger = "example_event",
            defaultKey = "E"
        }
    }
}

Supported type Values:

Type
Description

client

Triggers a client-side event

server

Triggers a server-side event

command

Executes a command

Previous🔧 Configuration File (config.lua)Next🎮 KeyList: Supported Keys

Last updated 2 months ago