System Logs keeps showing strange wraning

Hi, does anyone know what this warning is about?

2023-02-05 16:51:12.553 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 16:55:42.604 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 16:56:12.612 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 17:01:42.753 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 17:02:42.728 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 17:15:42.328 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 17:15:55.399 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 17:16:05.243 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

2023-02-05 17:18:42.969 WARNING (MainThread) [homeassistant.helpers.state] Integration script does not support reproduce state

I have not been able to find similar errors with some quick googling.

Thanks, Mel

Literally googling that error message sent me to this thread that might help:-

Sounds like you have a reference to a script in one or more of your scenes. You can’t do that because scripts don’t support reproducing state (a requirement to use an entity in a scene).

What you can do is add an automation like this:

trigger:
  - platform: state
    entity_id: scene.some_scene
action:
  - service: script.some_script

Since the state of a scene is the last timestamp of when the scene was turned on you can trigger scripts and service calls on its state change that will execute alongside the scene.