Home assistant voice, react on sentence in hass assistant with input selects

Hi,

I have the latest HASS, on docker on a rpi 4b and have an trial account on nabu casa.
I like to change from domoticz/controlicz to nabu casa, but i first have to get all my old voice functionality working.
link
I can enable / disble devices with my google home, so nabu casa etc is working.
Last part is to get input selects working.
I made a simple automatio to test my input select, but al it does is the anser Done after ticking the sentence in the assistant
What am i doing wrong, do i have to configure more ?

alias: voice regels
description: ""
trigger:
  - platform: conversation
    command:
      - Zet usb op Wit
condition: []
action:
  - service: input_select.select_option
    data:
      option: Uit
    target:
      entity_id: input_select.usblamp
  - service: input_select.select_option
    data:
      option: "{{ trigger.slots.kleur }}"
    target:
      entity_id: input_select.usblamp
    enabled: false
mode: single

I am a litter bit further, i did get the above script working. Problem was that capital and lower. The intents converts to lowercase, so thats why my script did not work…

Next step is to combine the voice script with anaother script with the usblamp by using trigger id’s
So i only merged the two scripts and used trigger id’s.
Strange thing is that the input select does change but not activate, is this because of the handling script after the input select changes is the same as the executing script ?

alias: usblamp
description: ""
trigger:
  - platform: state
    entity_id:
      - input_select.usblamp
    id: usb_knop
  - platform: conversation
    command:
      - Zet usblampxx op {color}
    id: usb_spraak
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - usb_knop
          - condition: state
            entity_id: switch.ac_0e672c2_13
            state: "off"
        sequence:
          - service: input_boolean.turn_on
            data: {}
            target:
              entity_id: input_boolean.ir_receiver
          - delay:
              hours: 0
              minutes: 0
              seconds: 50
              milliseconds: 0
            enabled: true
          - service: homeassistant.reload_config_entry
            data:
              entry_id: 6e385ed7335c6a8d050336b57684d290
            enabled: true
          - delay:
              hours: 0
              minutes: 0
              seconds: 30
              milliseconds: 0
            enabled: true
          - service: script.turn_on
            data:
              variables:
                keuze: "{{ keuze }}"
            target:
              entity_id: script.1697882284549
      - conditions:
          - condition: trigger
            id:
              - usb_knop
          - condition: state
            entity_id: switch.ac_0e672c2_13
            state: "on"
        sequence:
          - service: script.turn_on
            data:
              variables:
                keuze: "{{ keuze }}"
            target:
              entity_id: script.1697882284549
      - conditions:
          - condition: trigger
            id:
              - usb_spraak
        sequence:
          - service: input_select.select_option
            data:
              option: "{{ trigger.slots.color }}"
            target:
              entity_id: input_select.usblamp
            enabled: true
          - service: tts.google_translate_say
            data:
              entity_id: media_player.chromecast_huiskamer_nest
              message: De usblampxx  krijgt de waarde {{ trigger.slots.color }}
              cache: true
              language: nl
            enabled: true
variables:
  keuze: "{{ states('input_select.usblamp') }}"
mode: single

I did get the above combined script with triggerid’s working by adding:
mode: parallel
max: 10