Do you know a free model with some viruses?

Hey there! I often use some free models for my games and I use the Ro-Defender plugin. But it never detected any viruses so I’d like to put a virus in my game and use Ro-Defender to see if it really work.

Do you know a free model that contains viruses?

The results:

Most simple crash script I could make. Here

1 Like

Ok. Thanks! Have a good day! I’ll try to see if Ro-Defender detect it.

1 Like

did it detect the virus? (minimum)

1 Like

Well sorry I didn’t tried for the moment, I’m very busy. But I’ll be sure to tell you the results!

1 Like

Here are the results!!

Well Ro-Defender didn’t detect it…

The script of @Spa_rkk:

game.Players.PlayerAdded:Connect(function()
	warn(3)
	wait(1)
	warn(2)
	wait(1)
	warn(1)
	wait(1)
	while true do
		
	end
end)

The script worked fine, when I played the game I successfully crashed. That’s just Ro-Defender that didn’t detect it.

2 Likes

Try a different script maybe? (minimum)

1 Like

Yes, if someone give a script I’ll try it.

I don’t know what model it is, but when I join my game it prints a sell pop-up, so that’s a free model virus. Let’s see if Ro-Defender detects it.

Results:


No. Ro-Defender is really bad…

I found a script that I find sus, it this the virus script @Spa_rkk, @Aeplexi?

local door = script.Parent


local mps = game:GetService("MarketplaceService")


local isOpen = false


door.Touched:Connect(function(touch)

	local char = touch.Parent

	local plr = game.Players:GetPlayerFromCharacter(char)


	if not plr then return end


	if plr.MembershipType == Enum.MembershipType.Premium then


		if isOpen then return end

		isOpen = true


		door.Transparency = 1
		door.CanCollide = false


		wait(2)


		door.Transparency = 0
		door.CanCollide = true


		isOpen = false

	else

		mps:PromptPremiumPurchase(plr)

	end

end)

I deleted the script that I found sus but now something else appear:

So I know in what model the scam is.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.