Your loops are inside `Update()`. That function is called every frame, so your loops run every frame. If you don't want this, move the code into `Start()`.
↧