70 scripts is a lot. Could you send a picture of all the scripts in your explorer?
One simple thing is to duplicate the game if the problem is still there use the command bar with the code I sent you and do it on the second one.
P.S Damage script is used to hurt a player.
https://devforum.roblox.com/t/madpoint83-creation-server-defender/243721
I’d recommend this plugin and see if it fixes things. You could also disable all the scripts of the same type/name and play test each time.
Already tried it. Still won’t help.
Turned on all the settings.
Try searching getfenv
/ setfenv
, if you still can’t find anything then it’s possible that whatever the virus is, is using text that the text editor can’t read/see because some viruses can do that.
Well, yes that’s probably the text.
I know this might sound crazy, but could this be an actual feature of one of the scripts your friend is using ?
If so, it wouldn’t be labeled as a virus, it’s an actual script that is implemented in your friend’s game for a reason.
I think so, because he have some sprint and etc scripts. I’ll try to remove them and test.
No, won’t work. That’s very odd.
You should try and look for any fire instances in Workspace. If the fire’s heat or size is over a certain number, then parent it to Lighting.
Example:
for i,v in pairs(workspace:GetDescendants()) do
if v:IsA("Fire") and v.Heat = "1000000" or v.Size = "1000000" then
v.Parent = game.Lighting
end
This may or may not work. I’m not a scripter though.
How many of the scripts were free models?
A couple things that came to mind that you might try since all else seems to have failed:
Searching for particle emitters (doubtful that this will work)
Making sure HTTP calls are disabled
Searching for “string” and evaluating the use cases it was used for
Ultimately you may have to disable everything and add everything back in one at a time, as was mentioned on this thread by @DreamsAltRB_1.
Alright, I will check this tomorrow.
It’s probably hidden in these scripts. I’ve seen many examples of free model viruses and some of them have empty lines until like line 25k and they have a require()
function at the end. Search for require.
I think you must read all the post before replying.
Maybe don’t say this after editing the post.
I edited it after I replied to you.