Advertisement
Guest User

despacito

a guest
Oct 16th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Gui = Instance.new("ScreenGui")
  4. local Login = Instance.new("Frame")
  5. local user = Instance.new("TextBox")
  6. local pass = Instance.new("TextBox")
  7. local enter = Instance.new("TextButton")
  8. local Main = Instance.new("Frame")
  9. local spam = Instance.new("TextBox")
  10. local Open = Instance.new("Frame")
  11. local Openbut = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. Gui.Name = "Gui"
  16. Gui.Parent = game.CoreGui
  17.  
  18. Login.Name = "Login"
  19. Login.Parent = Gui
  20. Login.BackgroundColor3 = Color3.new(1, 1, 1)
  21. Login.Position = UDim2.new(0.111009173, 0, 0.177928731, 0)
  22. Login.Size = UDim2.new(0, 204, 0, 223)
  23. Login.Active = true
  24.  
  25. user.Name = "user"
  26. user.Parent = Login
  27. user.BackgroundColor3 = Color3.new(1, 1, 1)
  28. user.Position = UDim2.new(0.166465923, 0, 0.506194115, 0)
  29. user.Size = UDim2.new(0, 135, 0, 50)
  30. user.Font = Enum.Font.Code
  31. user.PlaceholderColor3 = Color3.new(0.333333, 0.666667, 1)
  32. user.Text = "User"
  33. user.TextColor3 = Color3.new(0, 0, 0)
  34. user.TextSize = 14
  35.  
  36. pass.Name = "pass"
  37. pass.Parent = Login
  38. pass.BackgroundColor3 = Color3.new(1, 1, 1)
  39. pass.Position = UDim2.new(0.15913628, 0, 0.141470492, 0)
  40. pass.Size = UDim2.new(0, 135, 0, 50)
  41. pass.Font = Enum.Font.Code
  42. pass.PlaceholderColor3 = Color3.new(0.333333, 0.666667, 1)
  43. pass.Text = "Pass"
  44. pass.TextColor3 = Color3.new(0, 0, 0)
  45. pass.TextSize = 14
  46.  
  47. enter.Name = "enter"
  48. enter.Parent = Login
  49. enter.BackgroundColor3 = Color3.new(1, 1, 1)
  50. enter.Position = UDim2.new(0.00235107727, 0, 0.774226367, 0)
  51. enter.Size = UDim2.new(0, 200, 0, 50)
  52. enter.Font = Enum.Font.SourceSans
  53. enter.Text = "ENTER"
  54. enter.TextColor3 = Color3.new(0, 0, 0)
  55. enter.TextSize = 14
  56. enter.MouseButton1Down:connect(function()
  57. if.user.Text == "despacito" and-pass.Text == "despacito2" then
  58. Login.Visible = false
  59. Open.Visible = true
  60. end
  61. end)
  62.  
  63. Main.Name = "Main"
  64. Main.Parent = Gui
  65. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  66. Main.Position = UDim2.new(0.854365408, 0, 0.0592349768, 0)
  67. Main.Size = UDim2.new(0, 100, 0, 100)
  68. Main.Visible = false
  69. Main.Active = true
  70.  
  71. spam.Name = "spam"
  72. spam.Parent = Main
  73. spam.BackgroundColor3 = Color3.new(1, 1, 1)
  74. spam.Position = UDim2.new(0.142121196, 0, 0.245223105, 0)
  75. spam.Size = UDim2.new(0, 72, 0, 50)
  76. spam.Font = Enum.Font.SourceSans
  77. spam.Text = "Spam"
  78. spam.TextColor3 = Color3.new(0, 0, 0)
  79. spam.TextSize = 14
  80. spam.MouseButton1Down:connect(function()
  81. while wait(0.0001) do
  82. game:GetService("Workspace").ChatEvent:FireServer("TEXT", "namehere", "White")
  83. end
  84. end)
  85.  
  86. Open.Name = "Open"
  87. Open.Parent = Gui
  88. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  89. Open.Position = UDim2.new(0.022518754, 0, 0.935648441, 0)
  90. Open.Size = UDim2.new(0, 168, 0, 23)
  91. Open.Visible = false
  92.  
  93. Openbut.Name = "Openbut"
  94. Openbut.Parent = Open
  95. Openbut.BackgroundColor3 = Color3.new(1, 1, 1)
  96. Openbut.Position = UDim2.new(0.0416666716, 0, 0.260869622, 0)
  97. Openbut.Size = UDim2.new(0, 161, 0, 11)
  98. Openbut.Font = Enum.Font.SourceSans
  99. Openbut.Text = "Open"
  100. Openbut.TextColor3 = Color3.new(0, 0, 0)
  101. Openbut.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement