attempting to search for the file path by feeding it a string but it errors out into
Invalid get index ‘show’ (on base: ‘null instance’).
it works when i directly give it the sprite to show so its an issue with this line, not sure how to fix since im new to godot
One is that if you want to call the method in your node, you need to add the () to invoke it. Eg: .show().
The other is related to why it not finding your node in the scene tree.
Invalid get index ‘show’ (on base: ‘null instance’).
This means that your node basically doesn’t exists. Try to run your game, go to the Remote scene tab and check if the path to your node is really like you are trying. Maybe it can be inside another node and you will need to pass the whole path of it.
Also, if your AlwaysLoads.P1Character variable is already a string, you don’t need to use the String constructor on it.
Here is one example that worked for me with the same structure you are trying: