Back to Browse

How to make a spawner

13 views
May 2, 2026
1:16

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

Download

0 formats

No download links available.

How to make a spawner | NatokHD