ما ضبط
ممكن اعرف وش سالفه التايمر+
GUIEditor = {
button = {},
window = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
function()
GUIEditor.window[1] = guiCreateWindow(561, 339, 128, 128, "sss", false)
guiWindowSetSizable(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(1243, 915, 121, 35, "", false)
local font0_2 = guiCreateFont(":guieditor/fonts/2.ttf", 30)
guiSetFont(GUIEditor.label[1], font0_2)
GUIEditor.button[1] = guiCreateButton(19, 44, 81, 54, "ddf", false, GUIEditor.window[1])
guiSetVisible ( GUIEditor.label[1],false)
end
)
addEventHandler("onClientGUIClick", root,
function ()
if source == GUIEditor.button[1] then
guiSetVisible ( GUIEditor.label[1],true)
setTimer ( function ( )
guiSetText (GUIEditor.label[1],"1")
end,5000,1)
end
end
)