--- aejou215 ahh script --- local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local TextBox = Instance.new("TextBox") local Submit = Instance.new("TextButton") local GetKey = Instance.new("TextButton") local CloseButton = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(22, 22, 22) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.305, 0, 0.251, 0) Frame.Size = UDim2.new(0, 553, 0, 318) TextLabel.Parent = Frame TextLabel.BackgroundTransparency = 1.000 TextLabel.Position = UDim2.new(0.282, 0, 0.208, 0) TextLabel.Size = UDim2.new(0, 240, 0, 74) TextLabel.Font = Enum.Font.Oswald TextLabel.Text = "Otxl's KeySystem" TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextSize = 33.000 TextBox.Parent = Frame TextBox.BackgroundColor3 = Color3.fromRGB(56, 56, 56) TextBox.BackgroundTransparency = 0.550 TextBox.Position = UDim2.new(0.212, 0, 0.503, 0) TextBox.Size = UDim2.new(0, 307, 0, 45) TextBox.Font = Enum.Font.SourceSans TextBox.PlaceholderText = "Input key here." TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.TextSize = 14.000 Submit.Name = "Submit" Submit.Parent = Frame Submit.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Submit.BackgroundTransparency = 0.550 Submit.Position = UDim2.new(0.548, 0, 0.745, 0) Submit.Size = UDim2.new(0, 200, 0, 50) Submit.Font = Enum.Font.Oswald Submit.Text = "Submit" Submit.TextColor3 = Color3.fromRGB(255, 255, 255) Submit.TextSize = 27.000 GetKey.Name = "GetKey" GetKey.Parent = Frame GetKey.BackgroundColor3 = Color3.fromRGB(35, 35, 35) GetKey.BackgroundTransparency = 0.550 GetKey.Position = UDim2.new(0.096, 0, 0.745, 0) GetKey.Size = UDim2.new(0, 200, 0, 50) GetKey.Font = Enum.Font.Oswald GetKey.Text = "Get Key" GetKey.TextColor3 = Color3.fromRGB(255, 255, 255) GetKey.TextSize = 27.000 CloseButton.Parent = Frame CloseButton.BackgroundColor3 = Color3.fromRGB(35, 35, 35) CloseButton.BackgroundTransparency = 1.000 CloseButton.Position = UDim2.new(0.946, 0, 0, 0) CloseButton.Size = UDim2.new(0, 30, 0, 24) CloseButton.Font = Enum.Font.Oswald CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 27.000 Submit.MouseButton1Click:Connect(function() local enteredKey = TextBox.Text -- Replace "correctKeyHere" with your actual key if enteredKey == "correctKeyHere" then Submit.Text = "Key Validated!" wait(1) Frame:Destroy() else Submit.Text = "Invalid key" Submit.AutoButtonColor = false Submit.Active = false wait(1.2) Submit.Text = "Submit" Submit.AutoButtonColor = true Submit.Active = true end end) GetKey.MouseButton1Click:Connect(function() setclipboard("https://link-hub.net/462109/FGkjX6RKGljV") --- Thats an Setup ZIP idk download this from my discord I posted it into it GetKey.Text = "Link Copied" GetKey.AutoButtonColor = false GetKey.Active = false wait(1.2) GetKey.Text = "Get Key" GetKey.AutoButtonColor = true GetKey.Active = true end) CloseButton.MouseButton1Click:Connect(function() Frame:Destroy() end) --- bruh this took me 2 minutes to decode --- --- join my discord https://discord.gg/KuYH85BJZX ---