Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- XD
- -- Instances
- local LameBoy = Instance.new("ScreenGui")
- local LoginFrame = Instance.new("Frame")
- local Name = Instance.new("TextBox")
- local Pass = Instance.new("TextBox")
- local Enter = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local PlayerName = game.Players.LocalPlayer.Name
- --Properties
- LameBoy.Name = "LameBoy"
- LameBoy.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- LoginFrame.Name = "LoginFrame"
- LoginFrame.Parent = LameBoy
- LoginFrame.BackgroundColor3 = Color3.new(1, 1, 1)
- LoginFrame.Position = UDim2.new(0.0629575402, 0, 0.126302078, 0)
- LoginFrame.Size = UDim2.new(0, 300, 0, 500)
- Name.Name = "Name"
- Name.Parent = LoginFrame
- Name.BackgroundColor3 = Color3.new(1, 1, 1)
- Name.Position = UDim2.new(0.165973648, 0, 0.249572903, 0)
- Name.Size = UDim2.new(0, 200, 0, 50)
- Name.Font = Enum.Font.SourceSans
- Name.Text = "Name"
- Name.TextColor3 = Color3.new(0, 0, 0)
- Name.TextSize = 14
- Pass.Name = "Pass"
- Pass.Parent = LoginFrame
- Pass.BackgroundColor3 = Color3.new(1, 1, 1)
- Pass.Position = UDim2.new(0.165973634, 0, 0.4494479, 0)
- Pass.Size = UDim2.new(0, 200, 0, 50)
- Pass.Font = Enum.Font.SourceSans
- Pass.Text = "Password"
- Pass.TextColor3 = Color3.new(0, 0, 0)
- Pass.TextSize = 14
- Enter.Name = "Enter"
- Enter.Parent = LoginFrame
- Enter.BackgroundColor3 = Color3.new(1, 1, 1)
- Enter.Position = UDim2.new(0.332098544, 0, 0.746166646, 0)
- Enter.Size = UDim2.new(0, 100, 0, 60)
- Enter.Font = Enum.Font.SourceSans
- Enter.Text = "Enter"
- Enter.TextColor3 = Color3.new(0, 0, 0)
- Enter.TextSize = 14
- Title.Name = "Title"
- Title.Parent = LoginFrame
- Title.BackgroundColor3 = Color3.new(1, 1, 1)
- Title.Position = UDim2.new(-0.000629588962, 0, -0.00188544393, 0)
- Title.Size = UDim2.new(0, 300, 0, 50)
- Title.Font = Enum.Font.SourceSans
- Title.Text = "LameBoy"
- Title.TextColor3 = Color3.new(0, 0, 0)
- Title.TextScaled = true
- Title.TextSize = 14
- Title.TextWrapped = true
- -- Scripts
- Enter.MouseButton1Down:connect(function()
- if Name.Text == PlayerName and Pass.Text == "XD" then
- LoginFrame.Visible = false
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement