local spawner = script.Parent
local zombie = game.ReplicatedStorage:WaitForChild("Zombie")
-- STARTING DELAY: This happens only ONCE.
print("Game started! Waiting 60 seconds for the first spawn...")
task.wait(60)
while true do
-- Spawning the zombie
local clone = zombie:Clone()
clone.Parent = game.Workspace
clone:PivotTo(spawner.CFrame * CFrame.new(0, 5, 0))
print("Zombie spawned!")
-- REPEAT DELAY: This happens every time after the first one.
task.wait(10)
end