function main()
local cursor_state = false
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if isKeyJustPressed(0x4) then
if cursor_state then showCursor(false) return false end
showCursor(true)
cursor_state = true
end
end
end