GUIEditor = {
button = {},
label = {},
window = {},
}
GUIEditor.window[1] = guiCreateWindow(182, 149, 494, 401, "تجربه", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetVisible(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(175, 195, 132, 47, "برمجة هيبه", false, GUIEditor.window[1])
guiSetFont(GUIEditor.label[1], "default-bold-small")
guiLabelSetColor(GUIEditor.label[1], 255, 0, 0)
GUIEditor.button[1] = guiCreateButton(379, 340, 106, 52, "آغلآلآق", false, GUIEditor.window[1])
guiSetFont(GUIEditor.button[1], "default-bold-small")
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFFF0000")
bindKey( 'F2', 'down',
function( )
if guiGetVisible( GUIEditor.window[1] ) then
guiSetVisible( GUIEditor.window[1], false )
showCursor( false )
else
guiSetVisible( GUIEditor.window[1], true )
showCursor( true )
end
end
)
-- اكواد الميتا
<meta>
<script src="Client.lua" type="client" />
<script src="Server.lua" type="server" />
</meta>