All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Infect + Cure all script

The Infect + Cure all script code is below. Copy & inject it into the game. Enjoy!

--Infect all script:
local plrs = game:GetService("Players")
local getPlrs = plrs:GetPlayers()

for i,v in pairs(getPlrs) do
   name = v.Name
game:GetService("ReplicatedStorage").generalRemotes.infectEvent:FireServer(workspace:FindFirstChild(name))
end

----------------------------------------------------------------------

--Cure all script too (SPAMS NOTIFICATION LOGS EVERYONE CAN SEE LMAO):

--Script: 
local plrs = game:GetService("Players")
local getPlrs = plrs:GetPlayers()

for i,v in pairs(getPlrs) do
  name = v.Name
game:GetService("ReplicatedStorage").generalRemotes.cureEvent:FireServer(workspace:FindFirstChild(name))
end