Guest User

Untitled

a guest
Jul 21st, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. function sd()
  2. windows = guiCreateWindow(278, 123, 277, 350, "Login", false)
  3. guiWindowSetSizable(windows, false)
  4. guiSetVisible(windows, true)
  5. editUsername = guiCreateEdit(12, 45, 259, 33, "", false, windows)
  6. Username = guiCreateLabel(102, 25, 69, 15, "Username", false, windows)
  7. guiSetFont(Username, "clear-normal")
  8. editPassword = guiCreateEdit(12, 107, 259, 33, "", false, windows)
  9. Password = guiCreateLabel(102, 88, 69, 15, "Password", false, windows)
  10. guiSetFont(Password, "clear-normal")
  11. loginBttn = guiCreateButton(61, 153, 158, 39, "Login", false, windows)
  12. guiSetProperty(loginBttn, "NormalTextColour", "FFAAAAAA")
  13. registerButton = guiCreateButton(61, 192, 158, 39, "Register", false, windows)
  14. guiSetProperty(registerButton, "NormalTextColour", "FFAAAAAA")
  15. guestButton = guiCreateButton(61, 231, 158, 39, "Guest", false, windows)
  16. guiSetProperty(guestButton, "NormalTextColour", "FFAAAAAA")
  17. CheckMale = guiCreateCheckBox(66, 275, 15, 15, "", false, false, windows)
  18. Male = guiCreateLabel(86, 275, 31, 15, "Male", false, windows)
  19. guiSetFont(Male, "clear-normal")
  20. Female = guiCreateLabel(170, 275, 45, 15, "Female", false, windows)
  21. guiSetFont(Female, "clear-normal")
  22. ChecFemale = guiCreateCheckBox(151, 275, 15, 15, "", false, false, windows)
  23. end
  24. addEventHandler("onClientPlayerJoin", getRootElement(), sd)
Add Comment
Please, Sign In to add comment