I know this question has been answered multiple times, but I am not too sure how to make a script where when the mouse Hovers to a GUI the GUIs transparency will equal to 0, and when the mouse leaves the GUIs transparency will then equal to 0.5. I am sorry if this question isn't acceptable, doesn't explain allot, is off-topic, or is not constructive.
TextButton = script.Parent TextButton.MouseEnter:connect(function() TextButton.Transparency = 0 end) TextButton.MouseLeave:connect(function() TextButton.Transparency = 0.5 end)
Also here are some links to understand this from wiki.