Hello guys,
I am trying to do a " dxEdit ", I try that but it doesn't work.
local text = {}
addEventHandler("onClientCharacter", root,
function (c)
table.insert(text,c)
end )
addEventHandler("onClientRender", root,
function ()
dxDrawText(#text, 654, 354, 778, 377, tocolor(255, 255, 255, 255), 1, f2, "left", "top", true, true, true, true, true)
end )
when I press anything I got a " numbers " in the dxText,
example, when I type hello, I got a number 5.
so How to fix it ?