nope, the _ defines it as a local variable, whereas if i had only put
plane
it would be looking for a global variable called
plane
by using the underscore, you keep everything within the script (local). this allows for many things, one being you can run as many scripts as you want with that local variable in it, but each will retain its own value