josh6798 To reiterate, I want an invisible container next to the button. If the button is focused on, I want a texture to become visible next to the button.
Add the thing you want to the tree (a simple node like a label or a complete instantiated scene), disable visibility by default (the little eye icon).
In your code, handle the proper events, focus/mouse_entered and *exited most likely. In handler functions, use show/hide function of the node according to what you want (focus_entered_ handler => node.show(), focus_exited handler => node.hide() )
Be careful to have an empty space, and/or set sizing/anchors, in place of hidden stuff or if you use container, it will extend when thing is visible and shrink back when hidden again.