MsgBoxWindow = {}
MsgBoxText = {}
MsgBoxWindow = guiCreateWindow(0.38, 0.81, 0.21, 0.19, "INFORMACJA", true)
guiSetAlpha(MsgBoxWindow,0.8)
MsgBoxText = guiCreateLabel(0.1991,0.2808,0.5498,0.4726,"",true,MsgBoxWindow)
guiSetVisible(MsgBoxWindow, false)
showCursor(false)
function newmsgbox(co)
guiSetVisible(MsgBoxWindow, true)
guiSetText(MsgBoxText, tostring(co))
showCursor(false)
setTimer(function() guiSetVisible(MsgBoxWindow, false) end, 6000, 1)
end
addEvent("msgBoxInfo", true)
addEventHandler("msgBoxInfo", getRootElement(), newmsgbox)