And also, make sure that the actions don't repeat themselves unnecessarily because it's not useful to repeat 500,000 times an action if it's already done, you understand?
Example: The mouse is on the button, do this.
As long as the mouse doesn't leave the button, don't bother to repeat: do this, since it's already done, I use the condition "trigger once while it's true"
I always try to optimize events so that they do not repeat themselves unnecessarily for nothing.