A: Clones that "Drooling Zombie" FM in workspace.
---
while true do
a = script.Parent.Zombie:Clone()
a.Parent = game.Workspace
a:MoveTo(Vector3.new(math.random(0,250),math.random(0,250),math.random(0,250)))
wait()
end
---
B: Clones the roblox LinkedSword into StarterPack.
---
while true do
a = script.Parent.ClassicSword:Clone()
a.Parent = game.StarterPack
wait()
end
--- |