There is only ever one tree. While you can group scenes together (with their own trees) while the game is running it is a single tree. There are many ways to access other nodes, but this may be the easiest.
var player = get_tree().get_root().find_node("Player", true, false)
You probably want to save the player on _ready() because searching the tree every frame can be slow.