RegisterCommand("createcar",function(source,args)
local coords = GetEntityCoords(GetPlayerPed(-1))
print(coords.x)
print(coords.y)
print(coords.z)
print(args[1])
print(type(args[1]))
local testVehicle = CreateVehicle("baller",coords.x,coords.y,coords.z,args[1],false,true)
Citizen.CreateThread(function()
local time = 30
while (time ~= 0) do
Wait( 1000 )
time = time - 1
end
DeleteVehicle(testVehicle)
TerminateThisThread()
end)
end)