Vehicle Vortex

Installation Guide

This is a basic guide, a better one will be written shortly!


Installation Guide for Vehicle Menu Script

Step 1: Download and Extract

  1. Download the Vehicle Menu script files.

  2. Extract the downloaded files to a location on your computer.

Step 2: Install the Script

  1. Locate your FiveM server's resources directory (usually in the server's main folder).

  2. Copy the extracted script folder (containing your script files) into the resources directory.

Step 3: Configure the Script

  1. Open the config.lua file inside the vehicle_menu folder using a text editor.

  2. Customize the configuration settings according to your preferences:

    • Modify the server name, menu color, size, keybind, emojis, Discord link, and permissions.

Step 4: Define Categories and Vehicles

  1. In the config.lua file, find the Config.categories section.

  2. To add a new category, follow this format:

    ['New Category'] = {
        ['New Subcategory'] = {
            emoji = "🚗",
            vehicles = {
                -- Add vehicles here using the provided structure
            }
        }
    }
  3. To add vehicles within a category, use this format:

    vehicles = {
        {
            icon = "🚗",
            label = "New Vehicle",
            value = "vehicle_code", -- Replace with the vehicle spawn code
            description = "Spawncode: vehicle_code",
            ace = "custom.permission" -- Replace with the desired ACE permission
        }
    }

Step 5: Optionally Add ACE Permissions

  1. If using ACE permissions, ensure ACE is installed on your server.

  2. In your server's ACE permission configuration, define permissions used in the config.lua (e.g., custom.permission).

Step 6: Start the Script

  1. Open your server.cfg file located in your FiveM server directory.

  2. Add a new line with the text: start vehicle_menu

Step 7: Test the Script

  1. Start your FiveM server.

  2. Join the server and press the keybind you specified (default: F1) to open the Vehicle Menu.

  3. Explore the menu, select vehicle categories, and spawn vehicles based on your configurations.

Step 8: Troubleshooting

  1. If issues arise, check the FiveM server console for error messages.

  2. Ensure your config.lua file is formatted correctly and that necessary permissions are configured.


Feel free to copy and paste this detailed guide into your GitBook or any other documentation platform you are using. This guide should provide clearer instructions on how to add new categories, vehicles, and permissions in your Vehicle Menu script.

Last updated