I got an error tyring to change text object HUD text value ?
if “score” in playerObject :
scoreObject.text = playerObject[“score”]
I got an error tyring to change text object HUD text value ?
if “score” in playerObject :
scoreObject.text = playerObject[“score”]
You should try:
if “score” in playerObject :
scoreObject["Text"] = str(playerObject[“score”])