local CoreGui = game:GetService("StarterGui") local setclipboard = setclipboard or toclipboard CoreGui:SetCore("SendNotification", { Title = "VexonHub", Text = "This is old loadstring! Join discord server to get new loadstring.", Duration = 20, Button1 = "Copy Discord Link" }) local UserInputService = game:GetService("UserInputService") UserInputService.InputBegan:Connect(function(input, gameProcessed) if input.UserInputType == Enum.UserInputType.MouseButton1 then setclipboard("https://discord.gg/Xm5sThnfsP") CoreGui:SetCore("SendNotification", { Title = "VexonHub", Text = "Discord link copied to clipboard!", Duration = 5 }) end end)