local vkeys = require "vkeys"
function main()
while not isSampAvailable() do
wait(100)
end
while true do
wait(0)
if isKeyJustPressed(VK_P) and not sampIsChatInputActive() and not sampIsDialogActive() then --открываешь телефон на P.
while true do wait(0) --цикл, чтобы функция шла по кругу
displayRadar(true) --намеренно включает радар.
if isKeyJustPressed(VK_ESCAPE) or isKeyJustPressed(VK_P) or isKeyJustPressed(VK_Y) then --ждёт пока будут нажат esc, p, y
break --убирает цикл.
end
end
end
end
end