-- SERVICES local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local player = Players.LocalPlayer -- COPY FUNCTION local function copyText(text) if setclipboard then setclipboard(text) end end -- NOTIFICATION local function notify(title, text) StarterGui:SetCore("SendNotification", { Title = title, Text = text, Duration = 3 }) end -- GUI local gui = Instance.new("ScreenGui") gui.Name = "KeyUI" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") -- MAIN FRAME local main = Instance.new("Frame", gui) main.Size = UDim2.new(0, 420, 0, 260) main.Position = UDim2.new(0.5, -210, 0.5, -130) main.BackgroundColor3 = Color3.fromRGB(0, 0, 0) main.BorderSizePixel = 0 -- CORNER Instance.new("UICorner", main).CornerRadius = UDim.new(0, 12) -- CLOSE BAR local closeBar = Instance.new("TextButton", main) closeBar.Size = UDim2.new(1, 0, 0, 35) closeBar.Text = "Close" closeBar.TextColor3 = Color3.fromRGB(255,255,255) closeBar.Font = Enum.Font.GothamBold closeBar.TextSize = 16 closeBar.BackgroundColor3 = Color3.fromRGB(70,70,70) closeBar.BorderSizePixel = 0 closeBar.MouseButton1Click:Connect(function() gui:Destroy() end) -- TITLE local title = Instance.new("TextLabel", main) title.Text = "Select your key" title.Font = Enum.Font.GothamBold title.TextSize = 28 title.TextColor3 = Color3.fromRGB(255,255,255) title.BackgroundTransparency = 1 title.Size = UDim2.new(1, 0, 0, 40) title.Position = UDim2.new(0, 0, 0, 50) -- DISCORD BUTTON local discord = Instance.new("TextButton", main) discord.Size = UDim2.new(0, 180, 0, 45) discord.Position = UDim2.new(0.5, -90, 0, 100) discord.Text = "DISCORD" discord.Font = Enum.Font.GothamBold discord.TextSize = 18 discord.TextColor3 = Color3.fromRGB(255,255,255) discord.BackgroundColor3 = Color3.fromRGB(120, 60, 255) discord.BorderSizePixel = 0 Instance.new("UICorner", discord).CornerRadius = UDim.new(0, 8) discord.MouseButton1Click:Connect(function() copyText("https://discord.gg/yourlink") -- put your discord link notify("Discord", "Link copied to clipboard") end) -- MADE BY local madeby = Instance.new("TextLabel", main) madeby.Text = "Made By Zhypers" madeby.Font = Enum.Font.Gotham madeby.TextSize = 14 madeby.TextColor3 = Color3.fromRGB(255,255,255) madeby.BackgroundTransparency = 1 madeby.Size = UDim2.new(1, 0, 0, 25) madeby.Position = UDim2.new(0, 0, 0, 150) -- JUNKIE BUTTON local junkie = Instance.new("TextButton", main) junkie.Size = UDim2.new(0, 160, 0, 40) junkie.Position = UDim2.new(0, 30, 0, 190) junkie.Text = "Junkie\nDevelopment" junkie.Font = Enum.Font.GothamBold junkie.TextSize = 14 junkie.TextColor3 = Color3.fromRGB(255,255,255) junkie.BackgroundColor3 = Color3.fromRGB(150, 50, 255) junkie.BorderSizePixel = 0 Instance.new("UICorner", junkie).CornerRadius = UDim.new(0, 8) junkie.MouseButton1Click:Connect(function() notify("Junkie Development", "Button clicked") gui:Destroy() -- put loadstring script here end) -- PLATOOBOST BUTTON local platoo = Instance.new("TextButton", main) platoo.Size = UDim2.new(0, 160, 0, 40) platoo.Position = UDim2.new(1, -190, 0, 190) platoo.Text = "Platooboost" platoo.Font = Enum.Font.GothamBold platoo.TextSize = 16 platoo.TextColor3 = Color3.fromRGB(255,255,255) platoo.BackgroundColor3 = Color3.fromRGB(70, 180, 255) platoo.BorderSizePixel = 0 Instance.new("UICorner", platoo).CornerRadius = UDim.new(0, 8) platoo.MouseButton1Click:Connect(function() notify("Junkie Development", "Button clicked") gui:Destroy() -- put Loadstring script here end)