Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local LoginFrame = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local Bar = Instance.new("Frame")
- local Bar2 = Instance.new("Frame")
- local Username = Instance.new("TextLabel")
- local Password = Instance.new("TextLabel")
- local user = Instance.new("TextBox")
- local Submit = Instance.new("TextButton")
- local pass = Instance.new("TextBox")
- local TextButton = Instance.new("TextButton")
- local Scripts = Instance.new("Frame")
- local bar3 = Instance.new("Frame")
- local bar4 = Instance.new("Frame")
- local Script1 = Instance.new("TextButton")
- local Script2 = Instance.new("TextButton")
- local Script3 = Instance.new("TextButton")
- local Script4 = Instance.new("TextButton")
- local Script5 = Instance.new("TextButton")
- local Script6 = Instance.new("TextButton")
- local Script7 = Instance.new("TextButton")
- local Script8 = Instance.new("TextButton")
- local Script9 = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextButton2 = Instance.new("TextButton")
- -- Properties
- ScreenGui.Parent = game.CoreGui
- LoginFrame.Name = "LoginFrame"
- LoginFrame.Parent = ScreenGui
- LoginFrame.Active = true
- LoginFrame.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- LoginFrame.Draggable = true
- LoginFrame.Position = UDim2.new(0.297445267, 0, 0.184557438, 0)
- LoginFrame.Size = UDim2.new(0, 444, 0, 335)
- LoginFrame.Visible = true
- Title.Name = "Title"
- Title.Parent = LoginFrame
- Title.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- Title.BorderColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- Title.Position = UDim2.new(0.27477476, 0, 0.0597014911, 0)
- Title.Size = UDim2.new(0, 200, 0, 50)
- Title.Font = Enum.Font.Arcade
- Title.Text = "The OK KO Legacy"
- Title.TextSize = 30
- Bar.Name = "Bar"
- Bar.Parent = LoginFrame
- Bar.BackgroundColor3 = Color3.new(0.333333, 1, 0)
- Bar.Size = UDim2.new(0, 444, 0, 20)
- Bar2.Name = "Bar 2"
- Bar2.Parent = LoginFrame
- Bar2.BackgroundColor3 = Color3.new(0, 0.690196, 0)
- Bar2.Position = UDim2.new(0, 0, 0.0597014911, 0)
- Bar2.Size = UDim2.new(0, 444, 0, 7)
- Username.Name = "Username"
- Username.Parent = LoginFrame
- Username.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- Username.BorderColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- Username.Position = UDim2.new(0.0135135138, 0, 0.310447782, 0)
- Username.Size = UDim2.new(0, 150, 0, 50)
- Username.Font = Enum.Font.SciFi
- Username.Text = "Username."
- Username.TextColor3 = Color3.new(1, 1, 1)
- Username.TextSize = 30
- Password.Name = "Password"
- Password.Parent = LoginFrame
- Password.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- Password.BorderColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- Password.Position = UDim2.new(0.0135135138, 0, 0.594029903, 0)
- Password.Size = UDim2.new(0, 150, 0, 50)
- Password.Font = Enum.Font.SciFi
- Password.Text = "Password."
- Password.TextColor3 = Color3.new(1, 1, 1)
- Password.TextSize = 30
- user.Name = "user"
- user.Parent = LoginFrame
- user.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
- user.BorderColor3 = Color3.new(0.415686, 0.415686, 0.415686)
- user.Position = UDim2.new(0.364864886, 0, 0.310447752, 0)
- user.Size = UDim2.new(0, 260, 0, 50)
- user.Font = Enum.Font.SciFi
- user.Text = ""
- user.TextSize = 30
- user.TextXAlignment = Enum.TextXAlignment.Left
- Submit.Name = "Submit"
- Submit.Parent = LoginFrame
- Submit.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118)
- Submit.Position = UDim2.new(0.27477476, 0, 0.801492512, 0)
- Submit.Size = UDim2.new(0, 200, 0, 50)
- Submit.Font = Enum.Font.SciFi
- Submit.Text = "Log In"
- Submit.TextColor3 = Color3.new(1, 1, 1)
- Submit.TextSize = 30
- Submit.MouseButton1Down:connect(function()
- if user.Text == "TheEdy" and pass.Text == "MemesAreLife" then
- LoginFrame.Visible = false
- TextButton.Visible = true
- end
- end)
- pass.Name = "pass"
- pass.Parent = LoginFrame
- pass.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
- pass.BorderColor3 = Color3.new(0.415686, 0.415686, 0.415686)
- pass.Position = UDim2.new(0.364864886, 0, 0.594029844, 0)
- pass.Size = UDim2.new(0, 260, 0, 50)
- pass.Font = Enum.Font.SciFi
- pass.Text = ""
- pass.TextSize = 30
- pass.TextXAlignment = Enum.TextXAlignment.Left
- TextButton.Parent = ScreenGui
- TextButton.BackgroundColor3 = Color3.new(0.74902, 0, 0)
- TextButton.BorderColor3 = Color3.new(1, 0, 0)
- TextButton.BorderSizePixel = 3
- TextButton.Position = UDim2.new(0.817865431, 0, 0.849340856, 0)
- TextButton.Size = UDim2.new(0, 157, 0, 46)
- TextButton.Visible = false
- TextButton.Font = Enum.Font.SciFi
- TextButton.Text = "Open"
- TextButton.TextColor3 = Color3.new(1, 1, 1)
- TextButton.TextSize = 30
- TextButton.MouseButton1Down:connect(function()
- TextButton.Visible = false
- Scripts.Visible = true
- TextButton2.Visible = true
- end)
- Scripts.Name = "Scripts"
- Scripts.Parent = ScreenGui
- Scripts.Active = true
- Scripts.BackgroundColor3 = Color3.new(0, 0, 0)
- Scripts.Draggable = true
- Scripts.Position = UDim2.new(0.259860784, 0, 0.276836157, 0)
- Scripts.Size = UDim2.new(0, 446, 0, 272)
- Scripts.Visible = false
- bar3.Name = "bar3"
- bar3.Parent = Scripts
- bar3.BackgroundColor3 = Color3.new(1, 0, 0)
- bar3.Size = UDim2.new(0, 446, 0, 19)
- bar4.Name = "bar 4"
- bar4.Parent = Scripts
- bar4.BackgroundColor3 = Color3.new(0.760784, 0, 0)
- bar4.Position = UDim2.new(0, 0, 0.0698529407, 0)
- bar4.Size = UDim2.new(0, 446, 0, 9)
- Script1.Name = "Script1"
- Script1.Parent = Scripts
- Script1.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script1.Position = UDim2.new(0.0350295678, 0, 0.18728283, 0)
- Script1.Size = UDim2.new(0, 128, 0, 46)
- Script1.Font = Enum.Font.SciFi
- Script1.Text = "Grab Knife"
- Script1.TextSize = 20
- Script1.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://1258889876")[1].Source)()
- end)
- Script2.Name = "Script2"
- Script2.Parent = Scripts
- Script2.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script2.Position = UDim2.new(0.363504916, 0, 0.18728283, 0)
- Script2.Size = UDim2.new(0, 128, 0, 46)
- Script2.Font = Enum.Font.SciFi
- Script2.Text = "Ravenger Hands"
- Script2.TextScaled = true
- Script2.TextSize = 15
- Script2.TextWrapped = true
- Script2.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://1258862005")[1].Source)()
- end)
- Script3.Name = "Script3"
- Script3.Parent = Scripts
- Script3.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script3.Position = UDim2.new(0.687495947, 0, 0.18728283, 0)
- Script3.Size = UDim2.new(0, 128, 0, 46)
- Script3.Font = Enum.Font.SciFi
- Script3.Text = "Rocky2u's admin"
- Script3.TextScaled = true
- Script3.TextSize = 20
- Script3.TextWrapped = true
- Script3.MouseButton1Down:connect(function()
- loadstring(game:GetObjects('rbxassetid://295850902')[1].Source)()
- end)
- Script4.Name = "Script4"
- Script4.Parent = Scripts
- Script4.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script4.Position = UDim2.new(0.0361506641, 0, 0.415224016, 0)
- Script4.Size = UDim2.new(0, 128, 0, 46)
- Script4.Font = Enum.Font.SciFi
- Script4.Text = "C00L kid GUI"
- Script4.TextScaled = true
- Script4.TextSize = 15
- Script4.TextWrapped = true
- Script4.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://166327202")[1].Source)()
- end)
- Script5.Name = "Script5"
- Script5.Parent = Scripts
- Script5.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script5.Position = UDim2.new(0.363504916, 0, 0.415224016, 0)
- Script5.Size = UDim2.new(0, 128, 0, 46)
- Script5.Font = Enum.Font.SciFi
- Script5.Text = "Golden Gun"
- Script5.TextScaled = true
- Script5.TextSize = 15
- Script5.TextWrapped = true
- Script5.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://01260216172")[1].Source)()
- end)
- Script6.Name = "Script6"
- Script6.Parent = Scripts
- Script6.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script6.Position = UDim2.new(0.688616991, 0, 0.415224016, 0)
- Script6.Size = UDim2.new(0, 128, 0, 46)
- Script6.Font = Enum.Font.SciFi
- Script6.Text = "Nuke"
- Script6.TextScaled = true
- Script6.TextSize = 15
- Script6.TextWrapped = true
- Script6.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://01260218178")[1].Source)()
- end)
- Script7.Name = "Script7"
- Script7.Parent = Scripts
- Script7.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script7.Position = UDim2.new(0.0361506343, 0, 0.635812283, 0)
- Script7.Size = UDim2.new(0, 128, 0, 46)
- Script7.Font = Enum.Font.SciFi
- Script7.Text = "Ro - Exploit"
- Script7.TextScaled = true
- Script7.TextSize = 15
- Script7.TextWrapped = true
- Script7.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://364364477")[1].Source)()
- end)
- Script8.Name = "Script8"
- Script8.Parent = Scripts
- Script8.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script8.Position = UDim2.new(0.363504887, 0, 0.635812283, 0)
- Script8.Size = UDim2.new(0, 128, 0, 46)
- Script8.Font = Enum.Font.SciFi
- Script8.Text = "Allahu Akbar"
- Script8.TextScaled = true
- Script8.TextSize = 15
- Script8.TextWrapped = true
- Script8.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://01260221867")[1].Source)()
- end)
- Script9.Name = "Script9"
- Script9.Parent = Scripts
- Script9.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- Script9.Position = UDim2.new(0.688616991, 0, 0.635812283, 0)
- Script9.Size = UDim2.new(0, 128, 0, 46)
- Script9.Font = Enum.Font.SciFi
- Script9.Text = "Death Note"
- Script9.TextScaled = true
- Script9.TextSize = 15
- Script9.TextWrapped = true
- Script9.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://01260231721")[1].Source)()
- end)
- TextLabel.Parent = Scripts
- TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel.BorderColor3 = Color3.new(0, 0, 0)
- TextLabel.Position = UDim2.new(0.0538116582, 0, 0.933823526, 0)
- TextLabel.Size = UDim2.new(0, 144, 0, 18)
- TextLabel.Font = Enum.Font.Highway
- TextLabel.Text = "Created by TheEdyGamerTroll23"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 14
- TextButton2.Name = "TextButton2"
- TextButton2.Parent = ScreenGui
- TextButton2.BackgroundColor3 = Color3.new(0.74902, 0, 0)
- TextButton2.BorderColor3 = Color3.new(1, 0, 0)
- TextButton2.BorderSizePixel = 3
- TextButton2.Position = UDim2.new(0.817865431, 0, 0.849340856, 0)
- TextButton2.Size = UDim2.new(0, 157, 0, 46)
- TextButton2.Visible = false
- TextButton2.Font = Enum.Font.SciFi
- TextButton2.Text = "Close"
- TextButton2.TextColor3 = Color3.new(1, 1, 1)
- TextButton2.TextSize = 30
- TextButton2.MouseButton1Down:connect(function()
- Scripts.Visible = false
- TextButton2.Visible = false
- TextButton.Visible = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement