RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a zombie spawner"
-- server script for spawning zombies local zombie = game.Workspace.Zombie local spawnArea = game.Workspace.SpawnArea while true do local newZombie = zombie:Clone() newZombie.Parent = game.Workspace newZombie.HumanoidRootPart.CFrame = spawnArea.CFrame * CFrame.new(math.random(-50,50),0,math.random(-50,50)) wait(5) end