--[[ How To Use: 1. Execute script below vvvv 2. Clear 3. Run the script that they give you. (Most likely a loadstring, but whatever this will still work) 4. Check your console, it will print any link that is HttpGet(ed). ]]-- MetaMethods, Backup = getrawmetatable(game), {} for i,v in next, MetaMethods do Backup[i] = v end setreadonly(MetaMethods, false) -- You may need to modify this to work with your exploit. (Synapse/Elysain already) MetaMethods.__namecall = function(...) local Tabl = {...} if Tabl[#Tabl] == "HttpGet" then print(Tabl[2]) -- You can make this copy to your clipboard local downloadedData = Backup.__namecall(...) copystring(downloadedData) -- You may need to modify this to work with your exploit. (Synapse already) return "" else return Backup.__namecall(...) end end