Create script to run different script, add delay, run a scene?

I’m still pretty new to Home Assistant and I want to create a script (or automation) that would run a different script, add a delay of a few seconds, and then run a scene.

It would be something like this

- script_name:
    - script.sky_q_power_on
    - delay: 00.05
    - scene.morning_wakeup

But I’m not sure how to implement it/format it.

If I could get it to work I’d added to an existing scene, maybe also activate it as a switch.

It can be something like:

script_name:
  alias: "Your description for the script"
  sequence:
    - service: script.turn_on
      entity_id: script.sky_q_power_on
    - delay: 00:00:05
    - service: scene.turn_on
      entity_id: scene.morning_wakeup

1 Like

Perfect, thanks a lot!