-- [[ 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 Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") -- Create GUI local gui = Instance.new("ScreenGui") gui.Name = "DiscordLoader" gui.ResetOnSpawn = false gui.Parent = playerGui -- Main frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 400, 0, 180) frame.Position = UDim2.new(0.5, -200, 0.5, -90) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 0 frame.Parent = gui -- Rounded corners local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 12) corner.Parent = frame -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.BackgroundTransparency = 1 title.Text = "Script Showcase" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 24 title.Font = Enum.Font.GothamBold title.Parent = frame -- Discord button local button = Instance.new("TextButton") button.Size = UDim2.new(0, 340, 0, 55) button.Position = UDim2.new(0.5, -170, 0, 75) button.BackgroundColor3 = Color3.fromRGB(88, 101, 242) button.Text = "Join Discord to Buy the Script" button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextSize = 17 button.Font = Enum.Font.GothamBold button.AutoButtonColor = true button.Parent = frame local buttonCorner = Instance.new("UICorner") buttonCorner.CornerRadius = UDim.new(0, 8) buttonCorner.Parent = button -- Discord link local discordLink = "https://discord.gg/u7TKcFJagw" button.Activated:Connect(function() button.Text = "discord.gg/u7TKcFJagw" task.wait(3) button.Text = "Join Discord to Buy the Script" end)