Created by liammuwu
Features:
- FREEZE ZOMBIES
- TELEPORT ZOMBIES
GAME LINK:
APOCALYPSE RISING 2
SCRIPTS: [2]
_G.anti_zombie = true
while _G.anti_zombie do
for _, obj in next, workspace.Zombies.Mobs:GetChildren() do
if isnetworkowner(obj.HumanoidRootPart) then
obj.HumanoidRootPart.Anchored = true
end
end
task.wait()
end
FREEZE ZOMBIE
_G.anti_zombie = true
while _G.anti_zombie do
for _, obj in next, workspace.Zombies.Mobs:GetChildren() do
if isnetworkowner(obj.HumanoidRootPart) then
obj.HumanoidRootPart.CFrame = CFrame.new(0,0,0)
end
end
task.wait()
end
TELEPORT ZOMBIE