local meteoryt = game:GetService("ServerStorage").Meteoryt while true do wait(0.1) local newMeteoryt = meteoryt:clone() local randomX = math.random(-1000, 1000) local randomZ = math.random(-1000, 1000) newMeteoryt.Position = Vector3.new(randomX, 500, randomZ) newMeteoryt.Parent = workspace end