Advertisement
Guest User

121

a guest
Jun 1st, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. -- Idiotbox By BlackVoid62
  2.  
  3. -- Objects
  4.  
  5. local Login = Instance.new("Frame")
  6. local BackgroundTitle = Instance.new("Frame")
  7. local Title = Instance.new("TextLabel")
  8. local Username = Instance.new("TextBox")
  9. local Password = Instance.new("TextBox")
  10. local Login_2 = Instance.new("TextButton")
  11. local Warning = Instance.new("TextLabel")
  12.  
  13. -- Properties
  14.  
  15. Login.Name = "Login"
  16. Login.Parent = game.StarterGui.Idiotbox
  17. Login.BackgroundColor3 = Color3.new(0, 0, 0)
  18. Login.Position = UDim2.new(0.277251184, 0, 0.243243247, 0)
  19. Login.Size = UDim2.new(0, 297, 0, 371)
  20.  
  21. BackgroundTitle.Name = "BackgroundTitle"
  22. BackgroundTitle.Parent = Login
  23. BackgroundTitle.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  24. BackgroundTitle.Position = UDim2.new(0, 0, 0.0539083555, 0)
  25. BackgroundTitle.Size = UDim2.new(0, 297, 0, 71)
  26.  
  27. Title.Name = "Title"
  28. Title.Parent = Login
  29. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  30. Title.Position = UDim2.new(0, 0, 0.0835579485, 0)
  31. Title.Size = UDim2.new(0, 297, 0, 50)
  32. Title.Text = "Welcome To Idiotbox V1"
  33. Title.TextColor3 = Color3.new(1, 1, 1)
  34. Title.TextSize = 14
  35.  
  36. Username.Name = "Username"
  37. Username.Parent = Login
  38. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  39. Username.BackgroundTransparency = 0.60000002384186
  40. Username.Position = UDim2.new(0.0707070678, 0, 0.347708881, 0)
  41. Username.Size = UDim2.new(0, 254, 0, 38)
  42. Username.Font = Enum.Font.SciFi
  43. Username.Text = "Username"
  44. Username.TextColor3 = Color3.new(1, 1, 1)
  45. Username.TextSize = 19
  46.  
  47. Password.Name = "Password"
  48. Password.Parent = Login
  49. Password.BackgroundColor3 = Color3.new(1, 1, 1)
  50. Password.BackgroundTransparency = 0.60000002384186
  51. Password.Position = UDim2.new(0.0707070678, 0, 0.584905624, 0)
  52. Password.Size = UDim2.new(0, 254, 0, 38)
  53. Password.Font = Enum.Font.SciFi
  54. Password.Text = "Password"
  55. Password.TextColor3 = Color3.new(1, 1, 1)
  56. Password.TextSize = 19
  57.  
  58. Login_2.Name = "Login"
  59. Login_2.Parent = Login
  60. Login_2.BackgroundColor3 = Color3.new(1, 1, 1)
  61. Login_2.BackgroundTransparency = 0.30000001192093
  62. Login_2.Position = UDim2.new(0.161616161, 0, 0.787061989, 0)
  63. Login_2.Size = UDim2.new(0, 200, 0, 50)
  64. Login_2.Text = "Login"
  65. Login_2.TextColor3 = Color3.new(0, 0, 0)
  66. Login_2.TextSize = 14
  67.  
  68. Warning.Name = "Warning"
  69. Warning.Parent = Login
  70. Warning.BackgroundColor3 = Color3.new(1, 1, 1)
  71. Warning.BackgroundTransparency = 1
  72. Warning.Position = UDim2.new(0.161616161, 0, 0.450134784, 0)
  73. Warning.Size = UDim2.new(0, 200, 0, 50)
  74. Warning.Font = Enum.Font.SourceSans
  75. Warning.Text = "Remember, this is private, so if I find you giving it to people with your login, I will immediatly blacklist you."
  76. Warning.TextColor3 = Color3.new(1, 1, 1)
  77. Warning.TextScaled = true
  78. Warning.TextSize = 14
  79. Warning.TextWrapped = true
  80.  
  81. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement