RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that clones the "Zombie" npc on the "Zombie spawner" every 5 seconds"
-- server script (ServerScriptService) local zombie = game.Workspace.Zombie local spawner = game.Workspace.ZombieSpawner while true do local clone = zombie:Clone() clone.Parent = game.Workspace clone.HumanoidRootPart.CFrame = spawner.CFrame wait(5) end