local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") local frame = Instance.new("Frame") local textLabel = Instance.new("TextLabel") local textBox = Instance.new("TextBox") local submitButton = Instance.new("TextButton") local getKeyButton = Instance.new("TextButton") local closeButton = Instance.new("TextButton") screenGui.Parent = 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 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 textBox.Parent = frame textBox.BackgroundColor3 = Color3.fromRGB(56, 56, 56) textBox.BackgroundTransparency = 0.55 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 submitButton.Name = "Submit" submitButton.Parent = frame submitButton.BackgroundColor3 = Color3.fromRGB(35, 35, 35) submitButton.BackgroundTransparency = 0.55 submitButton.Position = UDim2.new(0.548, 0, 0.745, 0) submitButton.Size = UDim2.new(0, 200, 0, 50) submitButton.Font = Enum.Font.Oswald submitButton.Text = "Submit" submitButton.TextColor3 = Color3.fromRGB(255, 255, 255) submitButton.TextSize = 27 getKeyButton.Name = "GetKey" getKeyButton.Parent = frame getKeyButton.BackgroundColor3 = Color3.fromRGB(35, 35, 35) getKeyButton.BackgroundTransparency = 0.55 getKeyButton.Position = UDim2.new(0.096, 0, 0.745, 0) getKeyButton.Size = UDim2.new(0, 200, 0, 50) getKeyButton.Font = Enum.Font.Oswald getKeyButton.Text = "Get Key" getKeyButton.TextColor3 = Color3.fromRGB(255, 255, 255) getKeyButton.TextSize = 27 closeButton.Parent = frame closeButton.BackgroundColor3 = Color3.fromRGB(35, 35, 35) closeButton.BackgroundTransparency = 1 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 submitButton.MouseButton1Click:Connect(function() local enteredKey = textBox.Text if enteredKey == "correctKeyHere" then submitButton.Text = "Key Validated!" wait(1) frame:Destroy() else submitButton.Text = "Invalid key" submitButton.AutoButtonColor = false submitButton.Active = false wait(1.2) submitButton.Text = "Submit" submitButton.AutoButtonColor = true submitButton.Active = true end end) getKeyButton.MouseButton1Click:Connect(function() setclipboard("https://link-hub.net/462109/FGkkj6RKGljV") --- Thats an sus ZIP File getKeyButton.Text = "Link Copied" getKeyButton.AutoButtonColor = false getKeyButton.Active = false wait(1.2) getKeyButton.Text = "Get Key" getKeyButton.AutoButtonColor = true getKeyButton.Active = true end) closeButton.MouseButton1Click:Connect(function() frame:Destroy() end)