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
Download the Vehicle Menu script files.
Extract the downloaded files to a location on your computer.
Step 2: Install the Script
Locate your FiveM server's resources directory (usually in the server's main folder).
Copy the extracted script folder (containing your script files) into the resources directory.
Step 3: Configure the Script
Open the
config.lua
file inside thevehicle_menu
folder using a text editor.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
In the
config.lua
file, find theConfig.categories
section.To add a new category, follow this format:
['New Category'] = { ['New Subcategory'] = { emoji = "🚗", vehicles = { -- Add vehicles here using the provided structure } } }
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
If using ACE permissions, ensure ACE is installed on your server.
In your server's ACE permission configuration, define permissions used in the
config.lua
(e.g.,custom.permission
).
Step 6: Start the Script
Open your
server.cfg
file located in your FiveM server directory.Add a new line with the text:
start vehicle_menu
Step 7: Test the Script
Start your FiveM server.
Join the server and press the keybind you specified (default: F1) to open the Vehicle Menu.
Explore the menu, select vehicle categories, and spawn vehicles based on your configurations.
Step 8: Troubleshooting
If issues arise, check the FiveM server console for error messages.
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