Hi, I’m @RuizuKun_Dev
Wanna keep your Game safe?
Sure I’ll tell you how!
First of all What are “Viruses”?
Well, they are any Script that negatively impacts your Game, even tho sometimes they don’t even work and very poorly Scripted, or basically “Unwanted trash”
—
The first and foremost step you can take is use this particular Plugin
Since the beginning of my Roblox journey I’ve installed this, it’s been working very well so far and even tho it is not maintained nor updated it still works quite well.
—
The second step is very Simple and arguably more effective than the first when done right;
You use the Search bar and type Script then look for anything suspicious, most of the time I just use the Command Bar to delete ALL BaseScripts that are not mine,
Here is the Script
for _, v in ipairs(workspace:GetDescendants()) do
if v:IsA(“BaseScript”) then
v:Destroy()
end
end
(sorry for the bad format, I’m on Mobile)
Make sure to use this code with caution and commonsense as it will delete ALL BaseScript inside of workspace,
Make sure to put your Scripts somewhere else if you want to keep them during the usage of the Script provided.
Now this should clear 100% of Unwanted Scripts (Viruses) when done correctly.
Seems like there is no proper tutorial on how to deal with the wildly spread so called “Virus” from the Toolbox so I have decided to provide one.