script_name('FastExit')
script_author('Bredd Lane')
function main()
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if wasKeyPressed(0x58) and isCharInAnyCar(playerPed) and not isPauseMenuActive() and not sampIsChatInputActive() and not isSampfuncsConsoleActive() and not sampIsDialogActive() then
local posX, posY, posZ = getCarCoordinates(storeCarCharIsInNoSave(playerPed))
warpCharFromCarToCoord(playerPed, posX, posY, posZ)
end
end
end