Fire spread virus in the game(EDITED)

image

70 scripts is a lot. Could you send a picture of all the scripts in your explorer?

1 Like

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.

1 Like

image
image
image
image
image
image
image
image

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.

1 Like

Already tried it. Still won’t help.

1 Like

image
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.

1 Like

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.

1 Like

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.

1 Like

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.

1 Like

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.

1 Like

I edited it after I replied to you.