infernus2

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

Vehiclempspecialraces

infernus2

Infernus Classic

Manufacturer
Pegassi
Class
SPORT_CLASSIC
Type
CAR
Seats
2
Monetary Value
100000
DLC
mpspecialraces
Mod kits
1

FiveM snippets

Spawn vehicle (Lua)
local model = GetHashKey("infernus2")
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)