DEVHUB DOCUMENTATION
Tebex StoreDevhub LIbDiscord Support
  • 🏠Home page
  • 🐌Download purchased assets
  • â‰ī¸Error: "You lack the required entitlement to use"
  • â‰ī¸Error: syntax error near '<\1>'
  • 💾Partnered FiveM Hosting
  • 💾SCRIPTS
    • 📗devhub_lib (NEEDED FOR EACH SCRIPT!)
      • đŸ’ģInstallation
      • 2ī¸âƒŖMigration from v1 to v2
      • âš™ī¸Framework
      • đŸ–ī¸Target
      • 🧭Ui
      • 🔑Vehicle Keys
      • â›ŊVehicle fuel
      • 🔊Sound System
      • 👕Clothing
      • â„šī¸Logs
      • 📡SQL
      • 🎨UI Color Customization
      • 🆘Compatibility test
  • 🔧Car Tune
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
    • 💾Saving Cartune Settings
  • 🚙Car Dancing
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
      • Beat generating
  • đŸ’ĒSkill Tree
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
    • đŸŽĢDevelopment
      • Listeners
      • Exports
      • Example skill
      • Pre-made skills
    • âš™ī¸Skill Generator
    • 🎨UI Color Customization
    • ❔FAQ
  • â›ī¸Miner Job
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
      • client.lua
      • shared.lua
      • server.lua
      • skillTree.lua
      • config.js
    • 🎨UI Color Customization
  • đŸĒĩDrywood Cutter Job
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
      • client.lua
      • shared.lua
      • server.lua
      • skillTree.lua
      • config.js
      • zones.lua
    • 🎨UI Color Customization
  • 🌊Pool Cleaner Job
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
      • client.lua
      • shared.lua
      • server.lua
      • skillTree.lua
      • config.js
      • zones.lua
    • 🎨UI Color Customization
  • đŸŒŋ[FREE] Herbal Alchemist Job
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
      • client.lua
      • shared.lua
      • server.lua
      • skillTree.lua
      • config.js
    • 🎨UI Color Customization
  • 📱Who Am I?
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
      • shared.lua
      • server.lua
    • 🎨UI Color Customization
  • 🎆Skill Selection
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
    • đŸ’ĒSkill Tree connection
    • 🎨UI Color Customization
  • 🍲3D CRAFTING TABLE
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
    • ❓How to create table
    • 🌹Custom props
  • đŸ‹ī¸Gym
    • đŸ’ģInstallation
    • đŸ› ī¸Configuration
  • â™Ÿī¸Props
    • đŸ–ŧī¸Paintings Pack
    • đŸ”ĒKitchen Furniture Pack
Powered by GitBook
On this page
  • server.lua
  • shared.lua
  • client.lua
  1. Car Tune

Configuration

server.lua

-- Config.OpenMenuOption can be either "command" or "item".
-- If set to "item", the menu will open upon using an item.
-- If set to "command", the menu will open through a command.
Config.OpenMenuOption = "command" -- Example assignment, change as needed.

-- Config.MenuCommand is the command used to open the menu.
-- This is only used if Config.OpenMenuOption is set to "command".
Config.MenuCommand = "battle" -- Example assignment, change as needed.

-- Config.MenuItem is the item used to open the menu.
-- This is only used if Config.OpenMenuOption is set to "item".
Config.MenuItem = "battle_creator" -- Example assignment, change as needed.

shared.lua

shared.lua
-- Language Configuration
-- Change the value (right side) as needed
-- Do not change the key (left side)
-- Maintain the ${value} format
Shared.Lang = {
    ["neons"] = "Neons",
    ["neon2"] = "Neon color: ${neon}",
    ['Neons'] = "Neons",
    ['Headlights'] = "Headlights",
    ['ChipTuning'] = "Chip tuning",
    ['Stancer'] = "Stancer",
    ['Program'] = "Program",
    ['Off'] = "Off",
    ['PopsAndBangs'] = "Pops and bangs",
    ['ALS'] = "ALS",
    ['Semi'] = "Semi",
    ['On'] = "On",
    ['VehicleTrail'] = "Vehicle Trail",
    ['NoPresetsFound'] = "No presets found",
    ['NewPreset'] = "New Preset",
    ['Presets'] = "Presets",
    ['Cancel'] = "Cancel",
    ['Save'] = "Save",
    ['PresetName'] = "Give a name to your preset",
    ['Time'] = "Time",
    ['Color'] = "Color",
    ['Active'] = "Active",
    ['HeadlightsStatus'] = "Headlights Status: ",
    ['ActivePreset'] = "Active Preset: ",
    ['Disable'] = "Disable",
    ['Apply'] = "Apply",
    ['Presets'] = "Presets",
    ['Success'] = "Success",
    ['PresetDeleted'] = "Preset Deleted",
    ['PresetUpdated'] = "Preset Updated",
    ['PresetSaved'] = "Preset Saved",
    ['NeonsStatus'] = "Neons Status: ",
    ['StancerStatus'] = "Stancer status: ",
    ['ClearAll'] = "Clear all",
    ['SettingsCleared'] = "Settings cleared",
}

client.lua

client.lua
-- Stancer Optimization Configuration
Config.StancerOptimalization = false
PreviousInstallationNextSaving Cartune Settings

Last updated 4 months ago

🔧
đŸ› ī¸