MADE BY Wanwood1
FEATURE:
- VIRUS BLOCK
--// Services
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
--// Variables
local localPlayer = Players.LocalPlayer
local mainHandler = nil
-->> security key
for _, instance in pairs(localPlayer.Backpack:GetChildren()) do
if instance:IsA("LocalScript") and instance.Name ~= "ClickDetectorScript" then
repeat
mainHandler = getsenv(instance)
RunService.Heartbeat:Wait()
until mainHandler.afflictstatus ~= nil
local upvalue = getupvalues(mainHandler.afflictstatus)
_G.serverKey = upvalue[16]
_G.playerKey = upvalue[17]
end
end
-->> (Avast) anti virus
for index, status in pairs(getupvalue(mainHandler.afflictstatus, 1)) do
if string.match(index, "Virus") ~= nil then
status.effects.currentduration = math.huge
end
end