Sprite2D only moving in it's scene, Help pls

Godot Version

Replace this line with your Godot version

Question

I have a Water Orb scene for my speedrun-platformer, they just give a movement boost. But when I try to move my Water Orbs in my levels, everything moves except for the Sprite2D. and I can’t move the Sprite2d, It just moves everything else. The only way I can move it is in the Water Orb scene, and even then I have to move it separately from everything else. I have a node2d that has the children of an Animation Player, and an Area2D. They have a Sprite2D and CollisionShape2D respectively. I don’t know what is happening and I need help.

AnimationPlayer doesn’t have a transform so it’s children cannot inherit it’s position, reparent any children of the AnimationPlayer to another Node2D type.

omg, thank you so much. I feel so silly now