Advertisement
Guest User

Submission for Scripter role.

a guest
Nov 14th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.51 KB | None | 0 0
  1. -- The Brain!
  2.  
  3. local login = script.Parent.Parent:WaitForChild("login")
  4. local password = script.Parent.Parent:WaitForChild("password")
  5. local username = script.Parent.Parent:WaitForChild("username")
  6.  
  7. -- the actual script lol
  8. script.Parent.MouseButton1Click:Connect(function()
  9. if username.Text == "Metronome" and password.Text == "anthrox" or username.Text == "Anthrox" and password.Text == "colorado" or username.Text == "LaceYear" and password.Text == "trash" or username.Text == "Goulstem" and password.Text == "Apex" or username.Text == "Mouseygrub" and password.Text == "thiccboi" or username.Text == "Username" and password.Text == "anthrox" or username.Text == "bobby" and password.Text == "smartguy" or username.Text == "Venom" and password.Text == "poo123" then  
  10. script.Parent.Parent:TweenPosition(UDim2.new(-2, 0,0.28, 0), "Out", "Quart", 3.5, true)
  11. script.Parent.Parent.Parent.TextButton.before.Disabled = true
  12. script.Parent.Parent.Parent.TextButton.after.Disabled = false
  13. script.Parent.Parent.Parent.TextButton.Text = "Admin"
  14. game:GetService("ReplicatedStorage"):WaitForChild("Value").Value = game.Players.LocalPlayer.Name
  15. print(game.Players.LocalPlayer.Name.." has started Lace. ")
  16. wait()
  17. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  18.     Text = "Password accepted, loading.";
  19.     Font = Enum.Font.Cartoon
  20.    
  21.    
  22.    
  23. })
  24. wait()
  25. script.Parent.Parent:Destroy()
  26. else
  27.     game.StarterGui:SetCore("ChatMakeSystemMessage", {
  28.     Text = "Incorrect username or password.";
  29.     Font = Enum.Font.Cartoon
  30.    
  31.    
  32.    
  33.     })
  34. end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement