F-VehicleShop
This is a fully optimized Vehicle Shop script for your FiveM server.
(Resmon: 0.00ms on vehicle try - 0.03ms on vehicle rent - 0.4ms on vehicle buy)
- Modern and Animated UI
- Customizable UI
- Create fully customizable shops
- Create car shops, boat shops, helicopter shops, plane shops with customizable name and blip
- Easy to use
- Allows Add-On vehicles
- Create public shops
- Create job restricted shops
- Create showrooms
- Buy vehicles and insert them in player's garage
- Rent vehicles
- Try vehicles
- Choose vehicle's colour
- Choose plate format
- 3D Texts
- [DEV] Client events are fired on vehicle buy, rent or try, so you can add what you want to the script (examples below) by calling these events in any other script
[DEV]:
RegisterNetEvent('F_VehicleShopUI:onVehicleTry')
AddEventHandler('F_VehicleShopUI:onVehicleTry', function(vehicle)
print('Veh id: ' .. vehicle)
end)
RegisterNetEvent('F_VehicleShopUI:onVehicleRent')
AddEventHandler('F_VehicleShopUI:onVehicleTry', function(vehicle)
print('Veh id: ' .. vehicle)
end)
RegisterNetEvent('F_VehicleShopUI:onVehicleBuy')
AddEventHandler('F_VehicleShopUI:onVehicleTry', function(vehicle)
print('Veh id: ' .. vehicle)
end)