It’s how you’re defining “score_text” in a code block.
The best solution in my opinion would be to make an actual text component in the builder for score_text and either update it’s content (score_text.text = 'Score: ${score}'
) or its visibility (score_text.autoDraw(false)
at the beginning of the routine and score_text.autoDraw(true)
when you want it to appear).
The basic issue is that you define it this way:
score_text = new visual.TextStim(psychoJS.window,
{"text": `Score: ${score}`,
"pos": [0, 0.4],
"height": 0.05,
"color": "black"});
but if you really want to define it in a code block, it needs to look like this:
score_text = new visual.TextStim(
{"win":psychoJS.window, //this is the important change
"text": `Score: ${score}`,
"pos": [0, 0.4],
"height": 0.05,
"color": "black"});
But again, I think it’d be easier to just make it a normal text component in the builder and control its content or appearance with the code component.