How to assign _score value to some other field using script_fields

I would like to inject _score in my _source on runtime.
I used this script but it is not working

"script_fields": {
    "_score": {
      "script": {
        "lang": "painless",
        "source": "_score.value"
      }
    }
  }

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.