of     1   

guitarman56
#36663679Sunday, November 07, 2010 5:38 PM GMT

Into my place, and the update that came with it was HUGE... it's called PlaceFix, every time I delete it, a new one comes... So there's one under workspace, under Players, under Teams, under Starterpack... HALP!!!!!! It makes my place shutdown right when I get there.
dannyboy2k8
#36663754Sunday, November 07, 2010 5:39 PM GMT

Go into edit mode and remove the virus script that way.
guitarman56
#36663829Sunday, November 07, 2010 5:40 PM GMT

Look, I'm not a total idoit. Somehow even when I delete it in edit mode, it replaces it with a new one. That's why I came here. I need a script that deletes it.
hunta11
#36663996Sunday, November 07, 2010 5:43 PM GMT

Just use oysi ro cleaner model.
guitarman56
#36664082Sunday, November 07, 2010 5:44 PM GMT

I deleted the model.... It's still in workspace.
Shobobo99
#36664198Sunday, November 07, 2010 5:46 PM GMT

Use the command bar? But how is it possible that in edit mode, while the game is paused, it wont go away after deleting.
Krammy
#36664355Sunday, November 07, 2010 5:48 PM GMT

virusname = "PlaceFix" function findandremove(model) local p = model:children() for i = 1, #p do if p[i].Name == virusname then p[i]:Remove() end findandremove(model) end end findandremove(workspace) findandremove(game.Lighting) --etc...
gijsbel11
#36665259Sunday, November 07, 2010 6:03 PM GMT

or better,shorter,epicer :P = VIRUSNAME = "HAHA" repeat game.workspace:FindFirstChild("VIRUSNAME"):Remove() until game.workspace:FindFirstChild("VIRUSNAME") == nil
Krammy
#36764159Tuesday, November 09, 2010 9:06 PM GMT

Problems with the above script: 1. No wait. 2. Doesn't look in every model. 3. Only looks in workspace.
bloob827
#36764177Tuesday, November 09, 2010 9:06 PM GMT

Just reset your place to an earlier version.
crazypotato4
#36764257Tuesday, November 09, 2010 9:08 PM GMT

NAME = "the virus name" -- THE ONLY THING TO CHANGE repeat game:findFirstChild(NAME, true):remove() until game:findFirstChild(NAME, true) == nil haha >:D
Krammy
#36764424Tuesday, November 09, 2010 9:12 PM GMT

Still doesn't look in everything. Only game. :P
crazypotato4
#36764463Tuesday, November 09, 2010 9:12 PM GMT

Isn't game everything? there is no parent of game, so I don't know where else, unless there's a way to access nil... And scripts don't run in nil, do they?
bloob827
#36764482Tuesday, November 09, 2010 9:13 PM GMT

If it's a lag virus he probably couldn't get in. WELLFORLIKEAMINUTE! Reseting your place to an earlier version is probably the most efficient way :U
BloxBuilder900
#36766224Tuesday, November 09, 2010 9:46 PM GMT

Here's a good way to get rid of viruses : save your place and quit the place. Open it back up... DONT RUN THE PLACE FOR ANY REASON AT THE WORLD YET. Search everywhere the script that it's giving you problems, and deleted it. Once you are sure there is no more trace of the script anywhere, you're done. You can run the place now. :P Next time don't use free models, ordon't run the place when inserting one so you can check for viruses.
AgentFirefox
Top 100 Poster
#36766382Tuesday, November 09, 2010 9:49 PM GMT

local Loser = "PlaceFix" repeat wait() local Doomed = game:FindFirstChild(Loser, true) and game:FindFirstChild(Loser, true):remove() until not game:FindFirstChild(Loser, true)

    of     1