one example(just example):
local Vtimers = {}
addEventHandler("onVehicleExit",root,
function()
if not Vtimers[source] then
Vtimers[source] = setTimer(destroyElement,30000,1,source)
end
end)
addEventHandler("onVehicleEnter",root,
function()
if Vtimers[source] and isTimer(Vtimers[source]) then
killTimer(Vtimers[source])
end
end)