اسف على الازعاج لكن ما فهمت اي شيء من الصفحة ممكن تجهز لي الكود
GUIEditor = {
checkbox = {},
label = {},
button = {},
window = {},
memo = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
function()
GUIEditor.window[1] = guiCreateWindow(483, 138, 377, 405, "شراء الرتب", false)
guiWindowSetSizable(GUIEditor.window[1], false)
GUIEditor.label[1] = guiCreateLabel(255, 72, 97, 28, "إسم الحساب", false, GUIEditor.window[1])
GUIEditor.label[2] = guiCreateLabel(255, 110, 97, 28, "الإسم داخل اللعبة", false, GUIEditor.window[1])
GUIEditor.memo[1] = guiCreateMemo(85, 67, 144, 33, "", false, GUIEditor.window[1])
GUIEditor.memo[2] = guiCreateMemo(85, 105, 144, 33, "", false, GUIEditor.window[1])
GUIEditor.label[3] = guiCreateLabel(68, 162, 212, 27, "مساعد صاحب السيرفر # السعر : 50 ريال", false, GUIEditor.window[1])
GUIEditor.label[4] = guiCreateLabel(68, 189, 212, 27, "الإدارة # السعر : 30 ريال", false, GUIEditor.window[1])
GUIEditor.label[5] = guiCreateLabel(68, 216, 212, 27, "كبار الشخصيات # السعر : 20 ريال", false, GUIEditor.window[1])
GUIEditor.memo[3] = guiCreateMemo(53, 249, 233, 33, "", false, GUIEditor.window[1])
GUIEditor.memo[4] = guiCreateMemo(53, 288, 233, 33, "", false, GUIEditor.window[1])
GUIEditor.label[6] = guiCreateLabel(297, 250, 74, 32, "بطاقة سوا 1", false, GUIEditor.window[1])
GUIEditor.label[7] = guiCreateLabel(297, 289, 74, 32, "بطاقة سوا 2", false, GUIEditor.window[1])
GUIEditor.button[1] = guiCreateButton(111, 337, 129, 49, "طلب الرتبة", false, GUIEditor.window[1])
GUIEditor.checkbox[1] = guiCreateCheckBox(295, 164, 15, 15, "", true, false, GUIEditor.window[1])
GUIEditor.checkbox[2] = guiCreateCheckBox(295, 195, 15, 15, "", false, false, GUIEditor.window[1])
GUIEditor.checkbox[3] = guiCreateCheckBox(295, 224, 15, 15, "", true, false, GUIEditor.window[1])
end
)