|
| 07 Jan 2015 06:32 AM |
| I am getting inFECtion's in all of my parts and I can not delete the inFECtion. Someone help. |
|
|
| Report Abuse |
|
coldkitt
|
  |
| Joined: 05 Jan 2012 |
| Total Posts: 2503 |
|
|
| 07 Jan 2015 07:26 AM |
You are using free models. Thats why.
To fix it simply go to ROBLOX Studio.
Go through each part of the model.
Find the inFECtion & delete it.
All toasters,toast toast. |
|
|
| Report Abuse |
|
|
| 07 Jan 2015 07:59 AM |
| @cold It can't be deleted that easily. Sometimes if you delete that it will just multiply. |
|
|
| Report Abuse |
|
|
| 07 Jan 2015 08:02 AM |
try this: -Enter your place in edit mode -Show your command bar (if it isn't shown) -Enter this script:
print("VFWasHere, Antivirus Loaded") Print_Scan_Results=true Quarantine_Instead_of_Delete=false q=Instance.new("Model") q.Name="Quarantine" classes={"AutoJoint", "Fire", "Spread", "BackpackItem", "Feature", "Glue", "HtmlWindow", "JointInstance", "LocalBackpack", "LocalBackpackItem", "MotorFeature", "Mouse", "Rotate", "RotateP", "RotateV", "Snap", "StockSound", "VelocityMotor", "Weld", "Geometry", "Timer","ChangeHistoryService"} names={"Infected","inFECtion","ROFL", "Snap Reducer", "SnapReducer", "Snap-Reducer", "Anti-Lag", "Anti Lag", "AntiLag", "Wildfire", "AntiVirus", "Anti-Virus", "Anti Virus", "4D Being", "No samurai plzzz", "OHAI", "VIRUS", "Guest_Talking_Script","GuestTalking","Noob","dåååååååååååååång.........you got owned...","script.....or..is.it","Fire","fire","Spread","Anti-Lag"} hidden=Instance.new("StringValue") file={} function Start() workspace=game.Workspace:GetChildren() qu=q:GetChildren() index={} virus=0 function Scan(object) for i=1,#object do inside=object[i]:GetChildren() if Malicious(object[i]) then virus=virus+1 Name(object[i]) Quarantine(object[i]) else if #inside > 0 then Scan(inside) end end end end function Malicious(class) for x=1, #classes do if class.className == classes[x] and #(class:GetChildren()) > 0 then return true end end for x=1, #names do if string.lower(class.Name) == string.lower(names[x]) then return true end end return false end function Hidden(class) for x=1, #classes do if class.className == classes[x] then return true end end return false end function Name(malware) cur=malware file[1]="."..cur.Name while cur.Parent.Name ~= "Workspace" do cur=cur.Parent file[#file+1]="."..cur.Name end inde="game.Workspace" for j=1, #file do inde=inde..file[#file+1-j] end file={} inde=inde.." ("..malware.className.." Class)" index[#index+1]=inde malware.Parent=q end function Quarantine(malware) if malware ~= nil then contain=malware:GetChildren() if Hidden(malware) then h=hidden:clone() h.Name=malware.Name h.Value="Original Class: "..malware.className h.Parent=malware.Parent for j=1, #contain do contain[j].Parent=h end malware:remove() malware=h end contain=malware:GetChildren() for j=1, #contain do Quarantine(contain[j]) end end end Scan(workspace) if virus > 0 and Quarantine_Instead_of_Delete then q.Parent=game.Lighting end if virus > 0 and Print_Scan_Results then print("--------------------") print("Scan Results:") print("Potentially malicious objects were found in the following locations:") for i=1, #index do print(" -- "..index[i]) end if Quarantine_Instead_of_Delete then print("These objects have been quarantined to the Lighting Directory.") else print("These objects have been removed.") end print("--------------------") Start() wait() Start() end end Start() game.Workspace.ChildAdded:connect(Start) |
|
|
| Report Abuse |
|
|
| 07 Jan 2015 09:17 AM |
Orr... if you like using free models that much that you got infection than find a script that deletes infection rather than doing one your self..
[A little something: http://www.roblox.com/Cobra-racing-seat-item?id=198348878] |
|
|
| Report Abuse |
|
|
| 08 Jan 2015 09:27 AM |
| I don't use Free stuff. The place i'm building is 100% Legit. I placed down a part and it had inFECtion in it. All I want to know is how to get rid of it. |
|
|
| Report Abuse |
|
|
| 08 Jan 2015 10:05 AM |
I`m sorry to say that can`t even gappen unless you get the part from free models ....
[A little something: http://www.roblox.com/Cobra-racing-seat-item?id=198348878] |
|
|
| Report Abuse |
|
|
| 08 Jan 2015 10:53 AM |
You can only get infections from freemodels, so your game is not "100% legit".
Don't use free models kids. |
|
|
| Report Abuse |
|
|
| 08 Jan 2015 11:28 AM |
| I will show you... I don't use Free Models... |
|
|
| Report Abuse |
|
|
| 08 Jan 2015 11:36 AM |
| Find the ROBLOX Defender Anti-Virus Plugin in the Plugin Category and use it. |
|
|
| Report Abuse |
|
Goulstem
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 7177 |
|
|
| 08 Jan 2015 11:39 AM |
local virusKey = "inFECtion"
function clean(model) for i,v in pairs(model) do if v.Name == virusKey then v:Destroy() end clean(v) end
function cleanGame() clean(workspace);clean(game.Lighting);clean(game.StarterGui);clean(game.ServerStorage);clean(game.ReplicatedStorage);clean(game.StarterPack); end
while wait(1) do pcall(function() cleanGame() end) end |
|
|
| Report Abuse |
|