Advertisement
NAME4YOU

asddsa

Feb 12th, 2019
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local LOGINSHIT = Instance.new("ScreenGui")
  5. local LOGINPAGE = Instance.new("Frame")
  6. local username = Instance.new("TextBox")
  7. local password = Instance.new("TextBox")
  8. local PNLG = Instance.new("TextLabel")
  9. local PNLG1 = Instance.new("TextLabel")
  10. local TextButton = Instance.new("TextButton")
  11. --Properties:
  12. LOGINSHIT.Name = "LOGINSHIT"
  13. LOGINSHIT.Parent = game.CoreGui
  14.  
  15. LOGINPAGE.Name = "LOGINPAGE"
  16. LOGINPAGE.Parent = LOGINSHIT
  17. LOGINPAGE.BackgroundColor3 = Color3.new(0.2, 0.505882, 1)
  18. LOGINPAGE.BorderSizePixel = 3
  19. LOGINPAGE.Position = UDim2.new(0.732438803, 0, 0.0872235447, 0)
  20. LOGINPAGE.Size = UDim2.new(0, 270, 0, 332)
  21.  
  22. username.Name = "username"
  23. username.Parent = LOGINPAGE
  24. username.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  25. username.BorderSizePixel = 3
  26. username.Position = UDim2.new(0, 0, 0.153614417, 0)
  27. username.Size = UDim2.new(0, 270, 0, 50)
  28. username.Font = Enum.Font.Highway
  29. username.Text = "Username"
  30. username.TextColor3 = Color3.new(0, 0, 0)
  31. username.TextSize = 25
  32.  
  33. password.Name = "password"
  34. password.Parent = LOGINPAGE
  35. password.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  36. password.BorderSizePixel = 3
  37. password.Position = UDim2.new(0, 0, 0.42469877, 0)
  38. password.Size = UDim2.new(0, 270, 0, 50)
  39. password.Font = Enum.Font.Highway
  40. password.Text = "Password"
  41. password.TextColor3 = Color3.new(0, 0, 0)
  42. password.TextSize = 25
  43.  
  44. PNLG.Name = "PNLG"
  45. PNLG.Parent = LOGINPAGE
  46. PNLG.BackgroundColor3 = Color3.new(0.152941, 0.298039, 0.811765)
  47. PNLG.BorderSizePixel = 3
  48. PNLG.Position = UDim2.new(0, 0, -0.0391244665, 0)
  49. PNLG.Size = UDim2.new(0, 270, 0, 41)
  50. PNLG.Font = Enum.Font.Highway
  51. PNLG.Text = "Bubble Gum Simulator - 150 TIER UNLOCKER"
  52. PNLG.TextColor3 = Color3.new(0, 0, 0)
  53. PNLG.TextSize = 15
  54.  
  55. PNLG1.Name = "PNLG1"
  56. PNLG1.Parent = LOGINPAGE
  57. PNLG1.BackgroundColor3 = Color3.new(0.152941, 0.298039, 0.811765)
  58. PNLG1.BorderSizePixel = 3
  59. PNLG1.Position = UDim2.new(0, 0, 0.948827386, 0)
  60. PNLG1.Size = UDim2.new(0, 270, 0, 41)
  61. PNLG1.Font = Enum.Font.Highway
  62. PNLG1.Text = "Bubble Gum Simulator - 150 TIER UNLOCKER"
  63. PNLG1.TextColor3 = Color3.new(0, 0, 0)
  64. PNLG1.TextSize = 15
  65.  
  66. TextButton.Parent = LOGINPAGE
  67. TextButton.BackgroundColor3 = Color3.new(0.160784, 0.411765, 0.811765)
  68. TextButton.BorderSizePixel = 3
  69. TextButton.Position = UDim2.new(-0.000894546509, 0, 0.717074692, 0)
  70. TextButton.Size = UDim2.new(0, 270, 0, 50)
  71. TextButton.Font = Enum.Font.Highway
  72. TextButton.Text = "Sumbit"
  73. TextButton.TextColor3 = Color3.new(0, 0, 0)
  74. TextButton.TextSize = 25
  75. -- Scripts:
  76. TextButton.MouseButton1Click:Connect(function()
  77. if game.Players.LocalPlayer.UserId == 198756889 and password.Text == "test xd" and username.Text == "bob" then
  78. LOGINPAGE.Visible = false
  79. else
  80. game.Players.LocalPlayer:Kick("You are banned :<3")
  81. end
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement