Hey everyone. I made a game in Godot4 and it works fine in Godot4. However, when I uploaded the game to itch, some labels appear as <null> when they update. I update those labels by having text = 'You\n' + str(globals.score). what's more weird is that I have an almost identical label that works fine: text = 'Coins\n' + str(globals.coins). Both globals.coins and globals.score are integers.
Any clue of on how to fix this will be greatly appreciated.