Advertisement
Guest User

Untitled

a guest
Aug 4th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Whitelist = Instance.new("ScreenGui")
  4. local WhitelistFrame = Instance.new("Frame")
  5. local WhitelistTitle = Instance.new("TextLabel")
  6. local Password = Instance.new("TextBox")
  7. local Login = Instance.new("TextButton")
  8. local Username = Instance.new("TextBox")
  9.  
  10. -- Properties
  11.  
  12. Whitelist.Name = "Whitelist"
  13. Whitelist.Parent = game.StarterGui
  14.  
  15. WhitelistFrame.Name = "WhitelistFrame"
  16. WhitelistFrame.Parent = Whitelist
  17. WhitelistFrame.Active = true
  18. WhitelistFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  19. WhitelistFrame.BackgroundTransparency = 0.5
  20. WhitelistFrame.BorderSizePixel = 0
  21. WhitelistFrame.Draggable = true
  22. WhitelistFrame.Position = UDim2.new(0.556327164, -208, 0.315403432, 65)
  23. WhitelistFrame.Size = UDim2.new(0, 270, 0, 230)
  24.  
  25. WhitelistTitle.Name = "WhitelistTitle"
  26. WhitelistTitle.Parent = WhitelistFrame
  27. WhitelistTitle.BackgroundColor3 = Color3.new(0, 0, 0)
  28. WhitelistTitle.BorderSizePixel = 0
  29. WhitelistTitle.Size = UDim2.new(0, 270, 0, 33)
  30. WhitelistTitle.Font = Enum.Font.SourceSansBold
  31. WhitelistTitle.Text = "Login"
  32. WhitelistTitle.TextColor3 = Color3.new(1, 1, 1)
  33. WhitelistTitle.TextSize = 24
  34.  
  35. Password.Name = "Password"
  36. Password.Parent = WhitelistFrame
  37. Password.BackgroundColor3 = Color3.new(0, 0, 0)
  38. Password.BackgroundTransparency = 0.5
  39. Password.Position = UDim2.new(0.0333333351, 0, 0.411388218, 0)
  40. Password.Size = UDim2.new(0, 252, 0, 39)
  41. Password.Font = Enum.Font.SourceSans
  42. Password.Text = "Password"
  43. Password.TextColor3 = Color3.new(0, 0, 0)
  44. Password.TextSize = 28
  45.  
  46. Login.Name = "Login"
  47. Login.Parent = WhitelistFrame
  48. Login.BackgroundColor3 = Color3.new(0, 0, 0)
  49. Login.BackgroundTransparency = 0.5
  50. Login.Position = UDim2.new(0.0333333351, 0, 0.804886043, 0)
  51. Login.Size = UDim2.new(0, 252, 0, 34)
  52. Login.Font = Enum.Font.SourceSans
  53. Login.Text = "Login"
  54. Login.TextColor3 = Color3.new(0, 0, 0)
  55. Login.TextSize = 28
  56.  
  57. Username.Name = "Username"
  58. Username.Parent = WhitelistFrame
  59. Username.BackgroundColor3 = Color3.new(0, 0, 0)
  60. Username.BackgroundTransparency = 0.5
  61. Username.Position = UDim2.new(0.0333333351, 0, 0.18964909, 0)
  62. Username.Size = UDim2.new(0, 252, 0, 39)
  63. Username.Font = Enum.Font.SourceSans
  64. Username.Text = "Username"
  65. Username.TextColor3 = Color3.new(0, 0, 0)
  66. Username.TextSize = 28
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement