addEventHandler( "onClientRender", root,
function()
dxDrawText( "dxDrawText", 100, 350, 300, 350, tocolor(255,255,0), 1, myFont )
end
)
addCommandHandler( "toggle",
function()
if myFont then
destroyElement( myFont )
end
myFont = dxCreateFont( "segoeui.ttf", 20 )
end
)