đŽPolice alert
RegisterNetEvent("Var:NotifPoliceATM")
AddEventHandler("Var:NotifPoliceATM", function(Coords)
print(Coords)
end)
And replace like that if you want to use vdk_call
RegisterNetEvent("Var:NotifPoliceATM")
AddEventHandler("Var:NotifPoliceATM", function(Coords)
TriggerServerEvent("call:makeCall", "police", Coords)
end)
Last updated