local x, y = guiGetScreenSize()
local rx, ry = (x/800), (y/600)
function lo7h()
dxDrawRectangle(rx*482, ry*206, rx*318, ry*233, tocolor(238, 15, 31, 255), false)
dxDrawRectangle(rx*558, ry*296, rx*150, ry*51, tocolor(36, 218, 216, 255), false)
dxDrawText("hide/show chat", rx*577, ry*314, rx*688, ry*337, tocolor(255, 255, 255, 255), 1.00, "default", "left", "top", false, false, false, false, false)
end
sShowing = false
bindKey("f9","down", function ( )
if ( sShowing == true ) then
removeEventHandler("onClientRender",root,lo7h)
showCursor ( false )
else
addEventHandler("onClientRender",root,lo7h)
showCursor ( true )
end
sShowing = not sShowing
end
)