|
| 20 Jul 2014 08:00 AM |
| I am seeing in almost all of my games and I can't delete it. Is it bad? Please tell me! |
|
|
| Report Abuse |
|
|
RoCkEr285
|
  |
| Joined: 18 Apr 2012 |
| Total Posts: 1898 |
|
| |
|
| |
|
Zech9005
|
  |
| Joined: 03 Jul 2011 |
| Total Posts: 3417 |
|
|
| 20 Jul 2014 08:48 AM |
| Basically you put a free model in your place with a script that will make your place lag pretty bad, not sure why people add these scripts but it's whatever. Simply restore your place to a version that didn't have the script in it. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2014 09:23 AM |
Get rid of the script that causes this, it is usually called 'Spread'
This command might work , open your game in studio and paste this in command bar and hit enter. You can change the 2 words inFECtion to any virus name you might have.
while Game:FindFirstChild("inFECtion", true) or Game:FindFirstChild("Spread", true) do (Game:FindFirstChild("inFECtion", true) or Game:FindFirstChild("Spread", true)):Remove() end |
|
|
| Report Abuse |
|
|
|
| 22 Jul 2014 01:47 PM |
| I had one today, It made it so everybody that joined spawned on another side of the map. |
|
|
| Report Abuse |
|
|
Scriptos
|
  |
| Joined: 17 Jun 2008 |
| Total Posts: 2900 |
|
|
| 22 Jul 2014 03:39 PM |
@scac; Wouldn't help much, inFECtion wouldn't really be found in "game." It'd be spread throughout the workspace.
Try this;
function clearInfection(obj) for i,v in pairs(obj:GetChildren()) do if (v.Name:lower()=="infection") or (v.Name:lower()=="spread") then v:Destroy(); end clearInfection(v); end end;
clearInfection(workspace);
This is a recursive function. It will "scan" every object inside of workspace for something named "infection" or "spread." |
|
|
| Report Abuse |
|
|
|
| 22 Jul 2014 05:06 PM |
| thanks for the help!!! now i know what i need to look for in a game i'm building!!! |
|
|
| Report Abuse |
|
|
|
| 22 Jul 2014 06:21 PM |
| It's pretty much saying, you free model too much. Lol. |
|
|
| Report Abuse |
|
|