How can I make a GUI text button "Highlight" on click?

Help Needed
I don’t really know what to call this but i’ll send a preview of the thing that I am trying to make.
https://gyazo.com/bb586ffdebadf9851d8c02a59703bc96
I want to add an effect like this to my text buttons, where when the mouse hovers over a button, the gui will “Highlight”

That’s actually a HoverButton, not a TextButton. A HoverButton lets you put a hover image, a still image and a on-clicked image

What I mean

image

1 Like

Use the GuiObject.MouseEnter function.

For example:

script.Parent.MouseEnter:Connect(function()
    script.Parent.Parent.ImageLabel.Visible = true
end)
script.Parent.MouseLeave:Connect(function()
    script.Parent.Parent.ImageLabel.Visible = false
end)