inductor2

Rotate the 3D model, or view the in-game capture

Vehiclemp2023_01

inductor2

Junk Energy Inductor

Class
CYCLE
Type
BICYCLE
Seats
1
Monetary Value
12000
DLC
mp2023_01
Mod kits
0

FiveM snippets

Spawn vehicle (Lua)
local model = GetHashKey("inductor2")
RequestModel(model)
while not HasModelLoaded(model) do Wait(0) end
local ped = PlayerPedId()
local c = GetEntityCoords(ped)
local veh = CreateVehicle(model, c.x, c.y, c.z, GetEntityHeading(ped), true, false)
SetPedIntoVehicle(ped, veh, -1)