Is there a way to change the colors used in AutoButtonColor?

Is there a way to change the colors used in AutoButtonColor?

1 Like

Something like this?

If not, look here:

you could have a frame with a

  • TextButton, zindex 2, text set to no text (just delete the button’s text), and make the button 100% transparent

  • TextLabel, however you want to make that

  • Frame, name it “overlay”, make it half transparent, any color you want, set the visible property to false

  • insert this local script into the frame

script.Parent.TextButton.MouseEnter:Connect(function()
	script.Parent.overlay.Visible = true
end)

script.Parent.TextButton.MouseLeave:Connect(function()
	script.Parent.overlay.Visible = false
end)

it should look something like this
Screen Shot 2022-08-31 at 8.45.48 PM
Screen Shot 2022-08-31 at 8.45.56 PM
here is the explorer
Screen Shot 2022-08-31 at 8.52.46 PM