Hi everyone,
in my global.gd I am trying to call a node which is a direct child of my root-scene with the following code:
# Calculate the level based on the levels of the scene instances
level = 0
for i in range(1, 11):
# Get the current scene instance
var instance = get_node("scMain/player_" + str(i))
# Add the level of the scene instance to the total level
level += instance.level
Unfortunately it returns the following Error:
get_node: (Node not found: "scMain/player_1" (relative to "/root/global").)
Here my Scene-Structure

Where did I go wrong?
I am fairly new to Coding, so I please excuse if this is obvious.
Thanks already for evereyone helping!