local ReplicatedStorage = game:GetService("ReplicatedStorage")
local monsterTemplate = ReplicatedStorage:WaitForChild("Monster")
local spawnLocation = Vector3.new(0, 0, 0)
local function spawnMonster()
local monster = monsterTemplate:Clone()
monster.Position = spawnLocation
monster.Parent = workspace
end
while true do
local waitTime = math.random(5, 15)
wait(waitTime)
spawnMonster()
end