driftcheburek

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

Vehiclemp2024_02

driftcheburek

Cheburek

Manufacturer
RUNE
Class
SPORT_CLASSIC
Type
CAR
Seats
4
Monetary Value
80000
DLC
mp2024_02
Mod kits
1

FiveM snippets

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