DJXTR3M3
|
  |
| Joined: 23 Dec 2013 |
| Total Posts: 1453 |
|
|
| 16 Jul 2014 04:33 PM |
I found this script in the Explorer:
INfecTION
And inside it:
Script......Or is it...
I need to know what this is, and how/will it affect anything in my game? Thanks! |
|
|
| Report Abuse |
|
|
DJXTR3M3
|
  |
| Joined: 23 Dec 2013 |
| Total Posts: 1453 |
|
|
| 16 Jul 2014 04:34 PM |
| I also would like to know if anyone has seen this script before. |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 04:35 PM |
| It most likely clones itself and has gotten into your place through free models. You should try to get rid of it or reset your place to an earlier version. |
|
|
| Report Abuse |
|
|
maxomega3
|
  |
| Joined: 11 Jun 2010 |
| Total Posts: 10668 |
|
|
| 16 Jul 2014 04:35 PM |
These are both viruses lol.
Be careful when using free models.
You'll need another free model to get rid of them. |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 04:39 PM |
@max stop with suggesting free models
while workspace:findFirstChild("inFECtion", true) do wait() workspace:findFirstChild("inFECtion", true):Destroy() end |
|
|
| Report Abuse |
|
|
maxomega3
|
  |
| Joined: 11 Jun 2010 |
| Total Posts: 10668 |
|
|
| 16 Jul 2014 04:41 PM |
| What's wrong with a virus cleaning free model? Stop pointlessly fighting me. That solution won't even work since there might be some in every service that has models. |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 04:44 PM |
function Remove(Parent, Name) for _, Child in pairs(Parent:GetChildren()) do Remove(Child) if Child.Name == Name then Child:Destroy() end end end
Remove(workspace, "INfecTION") |
|
|
| Report Abuse |
|
|
DJXTR3M3
|
  |
| Joined: 23 Dec 2013 |
| Total Posts: 1453 |
|
|
| 16 Jul 2014 04:48 PM |
| @first commenter: Thanks, I had a feeling it was, just needed to check! |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 04:52 PM |
| @max, then he'll do it for the other services >.> |
|
|
| Report Abuse |
|
|
DJXTR3M3
|
  |
| Joined: 23 Dec 2013 |
| Total Posts: 1453 |
|
|
| 16 Jul 2014 04:55 PM |
| @both peeps fighting: which one of your ways can delete all the scripts...all at once? Or at least quickly via the command bar? Thanks! |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 04:58 PM |
function clean(obj, name) if #obj:GetChildren() >= 1 then for i,v in pairs(obj:GetChildren()) do if v.Name:lower() == name:lower() then v:Destroy() end clean(v, name) end end end
clean(game, infection)
command bar
|
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
WishNite
|
  |
| Joined: 11 Feb 2009 |
| Total Posts: 15828 |
|
|
| 16 Jul 2014 05:02 PM |
while game:FindFirstChild("NameOfObject",true) do game:FindFirstChild("NameOfObject",true):Destroy() end
Command-bar form of DuelingWarlord's script |
|
|
| Report Abuse |
|
|
DJXTR3M3
|
  |
| Joined: 23 Dec 2013 |
| Total Posts: 1453 |
|
|
| 16 Jul 2014 05:06 PM |
Just to check if this is how I type it in:
(Command Bar): clan(game, "INfecTION")*
I just need to know EXACTLY how to type it in...I'm dead when it comes to commands and scripts...srry.
|
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 05:08 PM |
function clean(obj, name) if #obj:GetChildren() >= 1 then for i,v in pairs(obj:GetChildren()) do if v.Name:lower() == name:lower() then v:Destroy() end clean(v, name) end end end
clean(game, "infection") |
|
|
| Report Abuse |
|
|
DJXTR3M3
|
  |
| Joined: 23 Dec 2013 |
| Total Posts: 1453 |
|
|
| 16 Jul 2014 05:11 PM |
My questions will hurt your brain.
In (object, name) do I put (INfecTION)?
I feel so bad when I do this to people. |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 05:14 PM |
| just copy and paste my last post, it should work -____- |
|
|
| Report Abuse |
|
|
DJXTR3M3
|
  |
| Joined: 23 Dec 2013 |
| Total Posts: 1453 |
|
|
| 16 Jul 2014 05:23 PM |
UMG, thanks!
If I do it multiple times (which I don't think it's needed) will dis work?
(I'm a very happy person right now) \(^.^)/ |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 05:25 PM |
| it does it multiple times for you, no need to re run. |
|
|
| Report Abuse |
|
|