require "lib.moonloader"
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if not isPauseMenuActive() and not sampIsChatInputActive() then
if isKeyJustPressed(VK_P) then
sampSetGamestate(5)
end
end
end
end