local targetPos = CFrame.new(-27.875, -11.5, -342.25) local container = workspace:WaitForChild('Parts') while task.wait() do for _, part in ipairs(container:GetDescendants()) do if part:IsA('BasePart') and not part.Anchored then part.CFrame = targetPos end end end