Hello. Currently working on a stretcher system ,but when i want to check if the vehicle is an ambulance vehicle in EntityCreated i dont get back any print after the first attempt
RegisterNetEvent('entityCreating')
AddEventHandler('entityCreating', function(entity)
while not DoesEntityExist(entity) do Wait(100) end
local model = GetEntityModel(entity)
if mainConfig.stretcherVehicles[model] then
print('asd')
end
end)
RegisterNetEvent('entityCreating')
AddEventHandler('entityCreating', function(entity)
while not DoesEntityExist(entity) do Wait(100) end
local model = GetEntityModel(entity)
if mainConfig.stretcherVehicles[model] then
print('asd')
end
end)
When i get out the vehicle (garage) or spawn 1 in serverSide i got back the asd print. after that i can spawn 3623888+ doesent give me any print.
