Hey Guys so i need help on here, idk what its called but basically, this script will do spawn zombies on reserved data on table. i can do it with “for i, v” but idk what next
local wave1 = { Normal = 2, Heavy = 1}
local wave2 = { Normal = 10, Heavy = 5, Fast = 3}
-- I Need Help In Here !
local Waves = {
[1] = {
Count = 2,
Heavy = 3
},
[2] = {
Count = 25,
Heavy = 1
},
}
for Wave, Data in pairs(Waves) do
for i = 1, Data.Count do
-- spawn zombie.
end
wait(wave length)
end
You can create a dictionary and loop through the table.
oh wow, so that was the max value. the heavy value is where the zombie will spawn
like every loop the script will spawn x value of heave until it reach max spawn limit ?
What do you mean? To answer one of your previous questions if your trying to start another wave if an zombie is damaged you can use functions for that.
local Waves = {
[1] = {
Count = 2,
Heavy = 3
},
[2] = {
Count = 25,
Heavy = 1
},
}
local CurrentWave = 0
local function StartWave()
if CurrentWave == 2 then
-- Start down to 1 again.
CurrentWave = 1
else
CurrentWave += 1
end
local Data = Waves[CurrentWave]
for i = 1, Data.Count do
-- Spawn Zombie
zombie.Humanoid.HealthChanged:Connect(function()
StartWave()
end)
wait(cooldown between each zombie spawning...)
end
-- rest of your script
end
StartWave()
You can let the zombies spawn at a dedicated location using SetPrimaryPartCFrame.
local Waves = {
[1] = {
Count = 2,
Heavy = 3,
},
[2] = {
Count = 25,
Heavy = 1
},
}
local CurrentWave = 0
local Spawns = workspace.Spawn:GetChildren()
local function StartWave()
if CurrentWave == 2 then
-- Start down to 1 again.
CurrentWave = 1
else
CurrentWave += 1
end
local Data = Waves[CurrentWave]
for i = 1, Data.Count do
-- Spawn Zombie
zombie.Parent = workspace
local pad = Spawns[math.random(1, #Spawns)]
zombie:SetPrimaryPartCFrame(pad.CFrame)
zombie.Humanoid.HealthChanged:Connect(function()
StartWave()
end)
wait(cooldown between each zombie spawning...)
end
-- rest of your script
end
StartWave()
If this helped you solve this you can mark this a solution.