Hello everybody, i have made a counter that displays the money but i notices another counter that appears at the top left of my screen
The label script
extends Label
func _process(_delta):
text = String(Global.coins)
the coins is a global variable and i have made a script for it
script for the global variable coins
extends Node
var coins = 0
when i play the game another label is created in the spatial
i haven't got a code that creates another node in the spatial

so, what could go wrong with it?
I am sure the problem comes with that self created label but i don't know from where it's made