It is a simple variable that I need to convert to a string.
Code is (Sorry for wrong formatting.):
onready var label = $Label
var amount = 0;
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
#amount + 1
label.text = amount + "/7"
var inpVec = get_local_mouse_position()
move_and_slide(inpVec * delta * 200)