|
| 31 Jul 2015 09:04 AM |
after new update when i press play my antivirus goes crazy!! here are some of the errors or warnings
http://prntscr.com/7z8k43
http://prntscr.com/7z8l0l |
|
|
| Report Abuse |
|
|
|
| 31 Jul 2015 09:09 AM |
| seriously, NOBODY cares?!?!? |
|
|
| Report Abuse |
|
|
|
| 31 Jul 2015 09:10 AM |
| This is the wrong forum. Try the 'Help' forum. |
|
|
| Report Abuse |
|
|
|
| 31 Jul 2015 09:10 AM |
Go to technical support.
Women are like fine wine, I can't get their tops off |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 09:47 PM |
Acually this can be in this forum. There is scripts of virus removal here take this:
--This is created by USMCM16. --It removes ALL viruses! --If you find another virus thats not in the "names", add it! --Please give credit, or at least leave my name in the script. --Thank you! --Also, if you have any problems PM me, USMCM16.
------------------------------------------------ Print_Scan_Results = true --Prints the results of each scan in the output window. ------------------------------------------------ Quarantine_Instead_of_Delete = false --Quarantines all malicious objects into the Lighting Directory for you to view, after making all hidden objects visable. ------------------------------------------------ --Script Created by Vitos q = Instance.new("Model") q.Name = "Quarantine" classes = {"Fire", "BoolValue", "BrickColorValue", "Color3Value", "NumberValue", "ObjectValue", "CFrameValue", "AutoJoint", "BackpackItem", "Feature", "Glue", "HtmlWindow", "JointInstance", "LocalBackpack", "LocalBackpackItem", "MotorFeature", "Mouse", "Rotate", "RotateP", "RotateV", "Snap", "StockSound", "VelocityMotor", "Weld", "Geometry", "Timer","ChangeHistoryService", "StringValue"} names = {"it's not my fault", "Fire", "fire", "Spread", "annoying virus", "Infected", "ROFL", "Snap Reducer", "SnapReducer", "Vaccine", "Snap-Reducer", "Anti-Lag", "Anti Lag", "AntiLag", "Wildfire", "AntiVirus", "Anti-Virus", "Anti Virus", "4D Being", "No samurai plzzz", "OHAI", "VIRUS", "Guest_Talking_Script", "Guest Free Chat Script", "lol", "LOL", "bob", "BOB", "Snap Remover", "nrhbord", "SnapRemover", "QuarantinedVirus", "dåååååååååååååång.........you got owned...", "OHAI", "No samurai plzzz", "Components.dat", "lireon"} 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 |
|
|
|
| 03 Aug 2015 09:48 PM |
| Made by one of my friends friend :) it works trust me! |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 09:50 PM |
if that doesn't work use this:
ScanAt = game.Workspace
Objects = {}
local m = Instance.new("Hint") m.Parent = script m.Text = "Getting All Children Of "..ScanAt.Name.." Please wait ." wait(0) m.Text = "Getting All Children Of "..ScanAt.Name.." Please wait .." wait(0) m.Text = "Getting All Children Of "..ScanAt.Name.." Please wait ..." wait(0.00001)
function geth(ob) for _,v in pairs (ob:GetChildren()) do table.insert(Objects,v) geth(v) end end geth(ScanAt) m.Text = "Number of Objects in "..ScanAt.Name..": "..#Objects wait(.0) m.Text = "Loading virus remover [l ]" wait(0.0) m.Text = "Loading virus remover [ll ]" wait(0.0) m.Text = "Loading virus remover [lll]" wait(2)
Virus = 0 Viruses = {} --[here"theknown"]-- theKnown = {"dåååååååååååååång.........you got owned...", "Rofl","**virusmaster***",} --[[Have you been infected with any other different viruses? well add more. Just do this ,"virusname",--]]
function scan(objection) for _,v in pairs (theKnown) do if string.lower(v) == string.lower(objection.Name) then Virus = Virus + 1 table.insert(Viruses,objection) end end end for nou = 1,#Objects do scan(Objects[nou]) m.Text = "Scanning Object: "..Objects[nou].Name .. " Number "..nou.." of "..#Objects .. " | Viruses Detected: "..Virus wait(1) end
wait(3) for _,v in pairs (Viruses) do v:Remove() end m.Text = "Scan Complete! Any viruses detected were removed." wait(.5) m:Remove()
-- this will delete ANY virus that are named in "theknown".Have a Virus free game =D -- |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 09:51 PM |
| Oh sorry didn't realize it was for ROBLOX player XDDD but use those just for your games so no virus goes to your game! |
|
|
| Report Abuse |
|
|
iiEssence
|
  |
| Joined: 18 Jun 2014 |
| Total Posts: 3467 |
|
| |
|
iiEssence
|
  |
| Joined: 18 Jun 2014 |
| Total Posts: 3467 |
|
|
| 03 Aug 2015 09:59 PM |
@OP
Just add to the exlusion list
I don't need a siggy |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 10:00 PM |
@swagboy1727 The cringe is real.
|
|
|
| Report Abuse |
|
|
xlaser23
|
  |
| Joined: 10 Dec 2011 |
| Total Posts: 20341 |
|
|
| 03 Aug 2015 10:02 PM |
Delete Advast
Great Glob and Apple Sauce |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 10:03 PM |
@iiEss
it will work so sush ok? lol |
|
|
| Report Abuse |
|
|
iiEssence
|
  |
| Joined: 18 Jun 2014 |
| Total Posts: 3467 |
|
|
| 03 Aug 2015 10:04 PM |
Skid loool
I don't need a siggy |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 10:06 PM |
>using a sh itty antivirus >needing one at all kek |
|
|
| Report Abuse |
|
|
Aceylos
|
  |
| Joined: 26 Feb 2010 |
| Total Posts: 8266 |
|
|
| 03 Aug 2015 10:40 PM |
LOL AVAST
bro avast can't even detect half the low level stuff you can get from hf lmao.
- Ace |
|
|
| Report Abuse |
|
|
vacha
|
  |
| Joined: 06 Jan 2011 |
| Total Posts: 1993 |
|
|
| 03 Aug 2015 10:43 PM |
antivirus is for the weak
while true do the do |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 10:46 PM |
| Yea, my antivirus script I made a long time ago stopped functioning about 2 years ago, roblox made an update so it isn't needed, all freemodels are "supposedly" free of "viruses". |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 10:48 PM |
The same thing happened to me with ROBLOX studio. Avast stole the launcher and put it in the sandbox lel
Hello, I'm Chandler. I make jokes when I'm uncomfortable. |
|
|
| Report Abuse |
|
|
|
| 03 Aug 2015 11:05 PM |
I use webroot
you should buy that
ʏᴏᴜ ᴛʜᴏᴜɢʜᴛ ʏᴏᴜ ᴄᴏᴜʟᴅ ᴅʀᴀɢ ᴍᴇ ᴛᴏ ᴛʜᴇ ʙᴏᴛᴛᴏᴍ ᴏғ ᴛʜᴇ ʟᴀᴋᴇ sᴏ ʏᴏᴜ ᴄᴏᴜʟᴅ ᴇᴀᴛ ᴍᴇ ʟᴀᴛᴇʀ... ᴡᴇʟʟ ɢᴜᴇss ᴡʜᴀᴛ ᴘᴜɴᴋ... ɪᴍ ᴀ ғɪsʜ... ᴡɪᴛʜ ʟᴇɢs |
|
|
| Report Abuse |
|
|