wait(1) is often used at the end of a while loop which is to be executed once per frame cycle.
As the manual states, a wait is generally used at the end of a while loop. If all my loops have a wait(1) at the beginning of them, could that really effect my code in a negative way?
Could It make things behave in such a way that they "wait before they do", rather than "do then wait".. kinda resulting in bad performance? NOt sure if this example is clear enough :?