What I learned
I learned the difference between Update and FixedUpdate. Update is called upon every frame, some will take longer, so the time between updates will vary. While FixedUpdate is called on a timeline, meaning the time between each update will be the same. As in my video you see FixedUpdate has .2 everytime, while Update varies.