I want to make the transparency change when the players mouse is on the button not clicking it just hovering it kind of thing here is the script
function MouseEnter() script.Parent.BackgroundTransparency = 0 end function MouseLeft() script.Parent.BackgroundTransparency = 1 end script.Parent:MouseEnter(MouseEnter) script.Parent:MouseLeave(MouseLeft)
Your connection lines aren't good. Try this.
script.Parent.MouseEnter:connect(function() script.Parent.BackgroundTransparency = 0 end) script.Parent.MouseLeave:connect(function() script.Parent.BackgroundTransparency = 1 end)