local state = false
function Panel ( )
dxDrawImage(1240.0,163.0,126.0,96.0,"Imagenes/Stats.png",0.0,0.0,0.0,tocolor(255,255,255,255),false)
dxDrawImage(1239.0,1.0,126.0,102.0,"Imagenes/Maps.png",0.0,0.0,0.0,tocolor(255,0,0,255),false)
dxDrawRectangle(1238.0,0.0,128.0,767.0,tocolor(0,0,0,160),false)
end
bindKey ( "F7", "down",
function ( )
state = ( not state )
removeEventHandler ( "onClientRender", root, Panel )
if ( state ) then
addEventHandler ( "onClientRender", root, Panel )
end
end
)