z24d = 0
GUIEditor = {
label = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
function()
local screenW, screenH = guiGetScreenSize()
GUIEditor.label[1] = guiCreateLabel((screenW - 130) / 2, (screenH - 24) / 2, 130, 24, "0", false)
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 1, 0, 0)
setTimer( function ( )
z24d = z24d + 5
guiSetText(GUIEditor.label[1],tonumber(z24d))
end,5000,0)
end
)