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

How to make a script that destroys any object in ServerScriptService with a certain name?

Asked by 3 years ago

This odd script called ClientReplicator keeps popping up in ServerScriptService whenever somebody joins. I have tried all methods i could find to remove it. Is there any way to make a script that will destroy ClientReplicator whenever it is added? I have tried a local script containing:

local virus = game.ServerScriptService:WaitForChild("ClientReplicator")

while true do
    virus:Destroy()
    wait(.5)
end
0
Try looking through whatever you didn't make to find scripts that are suspicious. AntiWorldliness 868 — 3y

Answer this question