How would I go about making TextLabel’s appear if the player is hovering their mouse over an ImageButton which is the parent of the TextLabel’s.
1 Like
ImageButton.MouseEnter:Connect(function()
TextLabel.Visible = true
end)
ImageButton.MouseLeave:Connect(function()
TextLabel.Visible = false
end)
2 Likes
Thank you, I will try it now.
1 Like
Don’t forget to mark a solution if it does indeed works. Thanks
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.