Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

PAID RD Vehicle Rental System - Advanced Rental System

nyrox01

Silver Elite
Joined
Dec 14, 2025
Messages
27
Reaction score
87
Points
126
Location
Morocco
Website
roxdev.tebex.io
Screenshot (82).png


Now I understand the release rules. Let me create a proper forum post following the Cfx.re guidelines:


GR3 Vehicle Rental System​


A clean and efficient vehicle rental system for FiveM servers. Features a modern side-panel UI, VIP integration via Discord, and multi-framework support.




Preview​

Screenshot (74).png



Features​


Modern Interface


  • Left-side panel design with smooth animations
  • Real-time vehicle image previews from FiveM docs
  • Search and category filtering (All/Regular/VIP)
  • Interactive color selection (8 colors per vehicle)

Vehicle Management


  • Configurable regular and VIP vehicle lists
  • Auto-delete timer when player exits vehicle
  • One active rental per player
  • Custom spawn locations with heading control

Discord VIP Integration


  • Automatic Discord role verification via bot token
  • VIP-only vehicles with locked indicators
  • Secure authentication system

Framework Support


  • QBCore (with qb-target support)
  • ESX (with ox_target support)
  • Standalone (no framework required)

Interaction Options


  • Target system (qb-target/ox_target)
  • 3D text with E key press



Configuration​

Config = {}

-- Framework: 'qbcore', 'esx', 'standalone'
Config.Framework = 'standalone'

-- Interaction Type: 'target', '3dtext'
Config.Interaction = {
Type = '3dtext',
Text = '[~g~E~w~] Vehicle Rental',
Distance = 2.5
}

-- Rental Ped
Config.RentalPed = {
model = 'a_m_y_business_01',
coords = vector4(-312.90, -961.10, 31.08, 68.80),
scenario = 'WORLD_HUMAN_CLIPBOARD'
}

-- Vehicle Spawn Point
Config.SpawnPoint = {
coords = vector4(-308.65, -975.63, 31.08, 90.0),
heading = 250.0
}

-- Regular Vehicles (Available to all players)
Config.RegularVehicles = {
{ model = 'jugular', name = 'Jugular', category = 'regular' },
{ model = 'deity', name = 'Deity', category = 'regular' },
{ model = 'issi2', name = 'Issi', category = 'regular' },
{ model = 'bf400', name = 'BF400', category = 'regular' }
}

-- VIP Vehicles (Requires Discord VIP role)
Config.VIPVehicles = {
{ model = 'tampa2', name = 'Drift Tampa', category = 'vip' },
{ model = 'shotaro', name = 'Shotaro', category = 'vip' },
{ model = 'deathbike2', name = 'Future', category = 'vip' }
}

-- General Settings
Config.DeleteTimer = 5 -- Seconds before vehicle deletion after exit
Config.MaxRentedVehicles = 1 -- Maximum vehicles per player

-- Discord VIP Verification
Config.Discord = {
Enabled = true,
BotToken = 'YOUR_BOT_TOKEN_HERE',
GuildId = 'YOUR_GUILD_ID_HERE',
VIPRoleId = 'YOUR_VIP_ROLE_ID_HERE'
}





 
Top