Hello im doing a label on bind to see it on map but it don't show me that label will you help me with that please?
function init()
loadstring(exports.dgs:dgsImportFunction())()
label = dgsCreateLabel(...)
dgsSetVisible(label, false)
dgsCreateLabel(0.02,0.04,0.94,0.2,"Library",true,init)
end
addEventHandler("onClientResourceStart", resourceRoot, init)
function toggleGUI()
dgsSetVisible(label, not dgsGetVisible(label))
end
bindKey("F11", "down", toggleGUI)