Advertisement
MajorLeagueGamingHax

LameBoy

Dec 9th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. -- XD
  2.  
  3. -- Instances
  4.  
  5. local LameBoy = Instance.new("ScreenGui")
  6. local LoginFrame = Instance.new("Frame")
  7. local Name = Instance.new("TextBox")
  8. local Pass = Instance.new("TextBox")
  9. local Enter = Instance.new("TextButton")
  10. local Title = Instance.new("TextLabel")
  11. local PlayerName = game.Players.LocalPlayer.Name
  12.  
  13. --Properties
  14.  
  15. LameBoy.Name = "LameBoy"
  16. LameBoy.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. LoginFrame.Name = "LoginFrame"
  19. LoginFrame.Parent = LameBoy
  20. LoginFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  21. LoginFrame.Position = UDim2.new(0.0629575402, 0, 0.126302078, 0)
  22. LoginFrame.Size = UDim2.new(0, 300, 0, 500)
  23.  
  24. Name.Name = "Name"
  25. Name.Parent = LoginFrame
  26. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Name.Position = UDim2.new(0.165973648, 0, 0.249572903, 0)
  28. Name.Size = UDim2.new(0, 200, 0, 50)
  29. Name.Font = Enum.Font.SourceSans
  30. Name.Text = "Name"
  31. Name.TextColor3 = Color3.new(0, 0, 0)
  32. Name.TextSize = 14
  33.  
  34. Pass.Name = "Pass"
  35. Pass.Parent = LoginFrame
  36. Pass.BackgroundColor3 = Color3.new(1, 1, 1)
  37. Pass.Position = UDim2.new(0.165973634, 0, 0.4494479, 0)
  38. Pass.Size = UDim2.new(0, 200, 0, 50)
  39. Pass.Font = Enum.Font.SourceSans
  40. Pass.Text = "Password"
  41. Pass.TextColor3 = Color3.new(0, 0, 0)
  42. Pass.TextSize = 14
  43.  
  44. Enter.Name = "Enter"
  45. Enter.Parent = LoginFrame
  46. Enter.BackgroundColor3 = Color3.new(1, 1, 1)
  47. Enter.Position = UDim2.new(0.332098544, 0, 0.746166646, 0)
  48. Enter.Size = UDim2.new(0, 100, 0, 60)
  49. Enter.Font = Enum.Font.SourceSans
  50. Enter.Text = "Enter"
  51. Enter.TextColor3 = Color3.new(0, 0, 0)
  52. Enter.TextSize = 14
  53.  
  54. Title.Name = "Title"
  55. Title.Parent = LoginFrame
  56. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Title.Position = UDim2.new(-0.000629588962, 0, -0.00188544393, 0)
  58. Title.Size = UDim2.new(0, 300, 0, 50)
  59. Title.Font = Enum.Font.SourceSans
  60. Title.Text = "LameBoy"
  61. Title.TextColor3 = Color3.new(0, 0, 0)
  62. Title.TextScaled = true
  63. Title.TextSize = 14
  64. Title.TextWrapped = true
  65.  
  66. -- Scripts
  67.  
  68. Enter.MouseButton1Down:connect(function()
  69. if Name.Text == PlayerName and Pass.Text == "XD" then
  70. LoginFrame.Visible = false
  71. end
  72. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement