how do i set lable text in godot visual script

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By ARSHAVIR_GM

how do i set a text for a child node of type “lable” ?

:bust_in_silhouette: Reply From: spaceyjase

You set its text property: docs.

e.g. $Label.text = "hello, world!"

This may also help: Control the game’s UI with code