local v = require 'vkeys'
local font = renderCreateFont('arial', 25, 5)
function main()
repeat wait(0) until isSampAvailable()
while true do wait(0)
if isKeyJustPressed(v.VK_K) and isKeyJustPressed(v.VK_CONTROL) then bool = not bool end
if bool then
local pX,pY = getScreenResolution()
renderFontDrawText(font, 'TEXT', pX / 2, pY / 2, -1)
end
end
end