```
Citizen.CreateThread(function()
while true do
Wait(0)
while started == true do
Wait(1000)
local veh = GetVehiclePedIsIn(GetPlayerPed(PlayerId()) , false)
if(veh ~= 0) then
local PlayerPed = PlayerPedId()
if(GetVehicleNumberPlateText(veh) == Contracts[startedcontractid].plate) then
local PedVehicle = GetVehiclePedIsIn(PlayerPed)
local Driver = GetPedInVehicleSeat(PedVehicle, -1)
if Driver == PlayerPed then
if not(DropblipCreated) then
OnTheDropoffWay = true
DropblipCreated = true
local Class = Contracts[startedcontractid].type
if (Config['Utils']["Contracts"]["DisableTrackingOnDCB"]) and (Class == "D" or Class == "C" or Class == "B") then
CallingCops = false
else
--TriggerEvent("bropixel-boosting:SendNotify" , {plate = Contracts[startedcontractid].plate})
local primary, secondary = GetVehicleColours(veh)
primary = colorNames[tostring(primary)]
secondary = colorNames[tostring(secondary)]
local hash = GetEntityModel(Vehicle)
local modelName = GetLabelText(GetDisplayNameFromVehicleModel(hash))
if not NotifySent then
TriggerServerEvent("bropixel-boosting:CallCopsNotify" , Contracts[startedcontractid].plate , modelName, primary..', '..secondary , getStreetandZone(GetEntityCoords(PlayerPed)))
CallingCops = true
NotifySent = true
end
end
CreateDropPoint()
DeleteCircle()
end
end
end
end
end
end
end)
```
Every time I try to do a Boost for the 2nd time I get this error: