Hello, I have found problem. When I tried this code;
get_node("Label").set_text(str(number))
It was not working But after I have changed code, like this;
get_node("Label").set_text("aa")
It's work fine. So my problem probably arise from str()
function.