There is something wrong with this function, i deleted it and then xgui opened... but not fully i can see just windows with no menus.
if not SinglePlayer() and not ULib.ucl.authed[LocalPlayer():UniqueID()] then
local unauthedWarning = xlib.makeframe{ label="XGUI Error!", w=250, h=90, showclose=true, skin=xgui.settings.skin }
xlib.makelabel{ label="Your ULX player has not been Authed!", x=10, y=30, parent=unauthedWarning }
xlib.makelabel{ label="Please wait a couple seconds and try again.", x=10, y=45, parent=unauthedWarning }
xlib.makebutton{ x=50, y=63, w=60, label="Try Again", parent=unauthedWarning }.DoClick = function()
unauthedWarning:Remove()
xgui.show( tabname )
end
xlib.makebutton{ x=140, y=63, w=60, label="Close", parent=unauthedWarning }.DoClick = function()
unauthedWarning:Remove()
end
return
end