-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local invite = "https://discord.gg/S7MJP4AMT" -- Copy to clipboard (executor-safe) local function copyToClipboard(text) pcall(function() if setclipboard then setclipboard(text) elseif toclipboard then toclipboard(text) elseif syn and syn.set_clipboard then syn.set_clipboard(text) end end) end -- GUI local screenGui = Instance.new("ScreenGui") screenGui.Name = "DiscordInvite" screenGui.ResetOnSpawn = false screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Global screenGui.Parent = game:GetService("CoreGui") or game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 280, 0, 100) frame.Position = UDim2.new(0.5, -140, 0.5, -50) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 40) frame.BorderSizePixel = 0 frame.Parent = screenGui Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 8) local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundColor3 = Color3.fromRGB(40, 40, 55) title.Text = "JOIN DISCORD FOR SCRIPT" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 14 title.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(1, -20, 0, 40) button.Position = UDim2.new(0, 10, 0, 50) button.BackgroundColor3 = Color3.fromRGB(60, 60, 90) button.Text = "COPY DISCORD LINK" button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.GothamBold button.TextSize = 12 button.Parent = frame Instance.new("UICorner", button).CornerRadius = UDim.new(0, 6) button.MouseButton1Click:Connect(function() copyToClipboard(invite) button.Text = "COPIED!" wait(2) button.Text = "COPY DISCORD LINK" end) -- Console message print("Discord invite copied to clipboard: " .. invite) print("Join for the full script.")