-- Made by B4S1C on Scriptblox local scriptURL = "link here" local success, content = pcall(function() return game:HttpGet(scriptURL) end) if success then if setclipboard then setclipboard(content) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Source Copied!", Text = "The script source has been copied to your clipboard.", Duration = 5 }) else warn("Your executor does not support setclipboard.") end else warn("Failed to fetch script: " .. tostring(content)) end