How do I locate the source of a game virus?
I'm trying to build a game and every time I go into studio, EVERY instance, whether it be part, seat, or script, has a child who's classname is RotateP. And every RotateP is named a random name (I'll get to that in a second). Every RotateP in every instance in my game also has a script named "ProperGråmmerNeededInPhilosiphalLocations;insertNoobHere".
To solve this, I run a recursion that is as follows:
01 | Containers = { "Folder" , "Model" } |
03 | DangerousInstances = { "Script" , "RotateP" , "LocalScript" , "Fire" , "Smoke" } |
05 | function CheckDangerousInstances(instance) |
06 | for i, v in pairs (DangerousInstances) do |
07 | if instance:IsA(v) then |
14 | function CheckContainers(instance) |
15 | for i, v in pairs (Containers) do |
16 | if instance:IsA(v) then |
23 | function Recursion(Model) |
24 | for i, v in pairs (Model:GetChildren()) do |
25 | if CheckContainers(v) then |
27 | elseif v:IsA( "BasePart" ) then |
29 | elseif CheckDangerousInstances(v) then |
Basically it deletes all scripts, rotatep's, fires, and smokes. However, the virus is back once I save and exit and then reopen studio. I can't find the source of it in my game.
Extra info: The only free models I'm using are Scripth's Admin and the f3x tool, both of which are well known and don't contain a virus. Also, here is the virus script
01 | names = { "bombvatus" , "justineagle" , "spitfire591" , "chillydoom" , "god0i0trust" , "bakingsoda" , "gotohell123" , "robloxsniper5" , "micchukelz" , "å9001" , "IStårtHere" } |
02 | local NameCheck = false |
03 | script.Parent.Name = names [ math.random( 1 , #names) ] |
04 | script.Name = [[ProperGråmmerNeededInPhilosiphalLocations;insertNoobHere]] |
05 | local c = script.Parent:Clone() |
11 | if ch:IsA( "RotateP" ) or ch:findFirstChild(names [ ss ] ) ~ = nil then |
15 | if NameCheck = = false then |
16 | local cloak = c:Clone() |
18 | cloak:GetChildren() [ 1 ] .Name = "" |
20 | cloak.Name = names [ math.random( 1 , 5 ) ] |
24 | workspace.ChildAdded:connect(addEvent) |
26 | game.Players.PlayerAdded:connect( function (pl) |
27 | pl.Chatted:connect( function (m) |
28 | if m:sub( 1 , 5 ) = = "/sc t" then |
29 | local m = Instance.new( "Message" ) |
31 | m.Text = "THEY CALL ME CRAZY" |
45 | m.Text = "GOTTA GOTTA BE CRAZY" |
59 | m.Text = "GOTTA GET A LIFE (YOU)" |
63 | if m:sub( 1 , 5 ) = = "HAAXX" then |
64 | local m = Instance.new( "Message" ) |
74 | local s = workspace:GetChildren() |
78 | if s [ i ] :IsA( "RotateP" ) or s [ i ] :findFirstChild(names [ ss ] ) ~ = nil then |
82 | if NameCheck = = false then |
83 | local cloak = c:Clone() |
85 | cloak:GetChildren() [ 1 ] .Name = "" |