Hello, how can I use one GameObject for multiple buttons? right now if I hover over one both show text.
Of course they do, because you are setting both active on any OnMouseOver() event. You should only be enabling the text on the button that the event happened for. The same for OnMouseExit().
I would assume that gameObject is set to the button the event has happened for.

