local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("KEY SYSTEM BY EXECUTORX", "Ocean") local KeyTab = Window:NewTab("Key System") local KeySection = KeyTab:NewSection("Enter Your Key") local CorrectKey = "ExecutorX123" -- Change this to your actual key local KeyLink = "https://yourkeylink.com" -- Replace with your actual key link local ScriptURL = "https://pastebin.com/raw/AZ2TF1PJ" -- Replace with your script URL local UserInput = "" KeySection:NewTextBox("Put Key Here", "Enter your key to proceed", function(txt) UserInput = txt end) KeySection:NewButton("Submit Key", "Verify your key", function() if UserInput == CorrectKey then Library:ToggleUI() -- Hides UI if key is correct print("Access Granted") game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Access Granted", Text = "Welcome! The key is correct.", Duration = 3 }) local success, err = pcall(function() loadstring(game:HttpGet(ScriptURL))() end) if success then print("Script executed successfully!") else print("Error executing script: "..err) end else print("Incorrect Key! Try again.") game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Incorrect Key", Text = "The key you entered is incorrect. Try again!", Duration = 3 }) end end) KeySection:NewButton("Copy Key Link", "Copies the key link to your clipboard", function() setclipboard(KeyLink) print("Key link copied to clipboard: " .. KeyLink) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Key Link Copied", Text = "The key link has been copied to your clipboard.", Duration = 3 }) end)