I don’t think that execution order is guaranteed with scripts. For instance, if you turn off a group of lights, then trigger something else, the zwave stuff will happen asynchronously and may finish after the “something else”.
But scripts support delays, which is handy. And can be turned off/stopped. Also, scripts can be called directly as a service, ie:
- service: script.scriptname
instead of
- service: scene.turn_on
entity_id: scene.scenename
You may not need this yet, but you can use service_template (choose by template) in place of service in an action or script which sometimes makes it easier to implement if/else logic.
TL;DR, I used scenes when I first started with HA because it matched up with ideas I was used to from Vera. But once I figured out the value of scripts, I rarely use scenes.