TextButton AutoButtonColor

When you click and hold down on a textbutton with AutoButtonColor enabled, then hover over another and unclick it freezes the first textbutton in the hovered mode.

Reproduction:

  1. Add a ScreenGui to the StarterGui
  2. Add two TextButtons with AutoButtonColor on and in different positions
  3. Start server with player
  4. Click and hold down on one of the TextButtons then hover over the second one and unclick

4 years this was posted. Now I have encountered same issue. AutoButtonColor is off… So, is the bug still there; I and PiggyJingles did something wrong?

I can’t reproduce this in Studio. You’ll have to add more details on what you mean.

local SB = script.Parent

SB.MouseEnter:Connect(function()
   SB.BackgroundColor3 = Color3.new(255, 200, 200)
end)

SB.MouseLeave:Connect(function()
   SB.BackgroundColor3 = Color3.new(130, 255, 150)
  print("I am here...")
end)

print indicates that the function has fired, but Background for some reason stays same.