Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- GUIEditor = {
- checkbox = {},
- window = {},
- button = {}
- }
- addEventHandler("onClientResourceStart", resourceRoot,
- function()
- local sW, sH = guiGetScreenSize()
- GUIEditor.window[1] = guiCreateWindow(sW*0.5-481/2, sH*0.5-412/2, 481, 412, "", false)
- guiWindowSetMovable(GUIEditor.window[1], true)
- GUIEditor.button[1] = guiCreateButton(64, 61, 102, 46, "", false, GUIEditor.window[1])
- guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")
- GUIEditor.checkbox[1] = guiCreateCheckBox(86, 162, 15, 15, "", false, false, GUIEditor.window[1])
- --guiSetProperty( GUIEditor.window[1], "VerticalAlignment", "Centre" )
- --guiSetProperty( GUIEditor.window[1], "HorizontalAlignment", "Centre" )
- end
- )
Advertisement
Add Comment
Please, Sign In to add comment