GUI.Button Hover = Sound

I just implemented a Main Menu… I was wondering if there is a way to Play a sound when the mouse hovers over a button? I have searched through the forums etc but haven’t found a definitive answer so hopefully someone could point me in the right direction.

You can use if(buttonRect.Contains(Input.mousePosition)) to check whether the mouse position is inside buttonRect, assuming buttonRect is the Rect your button uses.