So, I created a world and needed a model, so I got a noob from a free model. I found a back foot script and deleted it. That was a mistake. It has copied to all of my new AND old worlds. What should I do?
It is probably a plugin you might have installed, if you get a model from the toolbox and you open a new place unless you go into recent models or something and open that model inside of the new place thats the only way it could get there again or like I said probably a plugin
Okay. Thank you so much! Will I have to delete them all out? Or will they all disappear?
For starters, disable all the plugins you have.
If the scripts have been cloned in each one of your models before you actually run the game, you can run this code to clear all the backdoor scripts in the command bar:
for i, d in pairs(workspace:GetDescendants()) do
if d:IsA("Script") then
d:Destroy()
end
end
Using that would destroy every script, so unless the backdoor scripts are named something different you canāt really filter what gets destroyed.
Hm you should probably start by just disabling plugins and seeing which one is causing the problem
Iām guessing itās a btools one or a home store one. They look fishy.
LMFAO, yeah if they look fishy then its probably them and they are usually disguised as different things so be aware of that and dont grab sketchy plugins
Mhm. It was one of the ones with question marks and blue squares. I looked in the script and it was like: LOoOoOooOp
H AA. AX
I would look for your plugins that have low sales or how not to many dislikes and disable them.
Theyāre like Thiswill help your placeā¬ļø And a black question box. Thanks for your help.
Alright mark a solution for the post so that the next person with a problem can know what to do quickly and not waste time!
Yeah, Iām new to plug-ins so I thought I would test some out. Deleting it out of my files right now.
Does anyone have a suggested backdoor scanner and/or remover? If so please put it down here.
I think the best solution is to make everything yourself, itās harder but more fun and way safer. It you need help just ask around, itās what t the forums are for.
Can you please link me the plugins? I could check them for malicious script.
Sure! Here they are.
Right off the bat, I know the Btools one is fake. Here is the real one. For the home store ones, the first one only has 6 sales and 0 favorites/likes/dislikes. The second one only has 28 sales and 0 favorites/likes/dislikes. I would recommend uninstalling all three of those as soon as possible.
Now that I am looking at the creators of the plugin, the second pluginās creator seems to be terminated.
Yeah, I already did yesterday. It corrupted all of my places, Iām hoping it didnāt corrupt my camping game.
Thank you! After I analyzed every script, the āFree Homestoreā is a virus, it required this plugin which is deleted. However, if your game got affected youāll take a lot of time as the plugin inserted 100+ virus message scripts in every part. Lucky I didnāt test it on my main game because I have a lot of parts there
Also, it duplicates everytime which makes it impossible to debug. If you want to remove them all then try this script:
for i, d in pairs(workspace:GetDescendants()) do
if d:IsA("RotateP") then -- It duplicated in RotateP with a child which is a script.
d:Destroy()
end
end
If your still having some trouble, Iād recommend going through this guide:
Itās lengthy, but it works!