What is the method to detect if user mouse hover at TextButton

how can I check if user mouse hover at Textbutton
Events

1 Like

for starting the hover effect:

TextButton.MouseEnter:Connect(function()

end)

and for leaving the hover effect:

TextButton.MouseLeave:Connect(function()

end)
2 Likes

Thank you very much that will help me alot