local Players = game:GetService("Players") local player = Players.LocalPlayer -- GUI local gui = Instance.new("ScreenGui") gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Parent = gui frame.Size = UDim2.new(0, 400, 0, 200) frame.Position = UDim2.new(0.5, -200, 0.5, -100) frame.BackgroundColor3 = Color3.fromRGB(40,40,40) frame.Active = true frame.Draggable = true local textBox = Instance.new("TextBox") textBox.Parent = frame textBox.Size = UDim2.new(0, 300, 0, 40) textBox.Position = UDim2.new(0.5, -150, 0.3, 0) textBox.PlaceholderText = "Enter key here" textBox.Text = "" local button = Instance.new("TextButton") button.Parent = frame button.Size = UDim2.new(0, 150, 0, 40) button.Position = UDim2.new(0.5, -75, 0.65, 0) button.Text = "Copy Key" local link = "https://link-center.net/1417470/R4AaMgrReyHC" button.MouseButton1Click:Connect(function() if setclipboard then setclipboard(link) button.Text = "Copied!" task.wait(1.5) button.Text = "Copy Key" else button.Text = "Executor Required" end end)