Godot Version
4.3.stable
Question
extends Node
var score = 0
@onready var score_lable: Label = $ScoreLable
func add_point():
score += 1
score_lable.text = “You collected " + str(score) " coins!”
this is the code it says the error is right after score inside the parentheses in line 9. Im following a tutorial and am brand new so i dont even now what the error means can somebody both explain what the error means and how i can fix it?