Is there a way to change the colors used in AutoButtonColor?
1 Like
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
here is the explorer