Mouse Icon when it is pointing

Hi,
How can I change the icon of the mouse when it is pointing?
It’s possible to change the mouse icon with Mouse.Icon
But it doesn’t change the mouse icon when it is pointing for example a ButtonText.

textButton.MouseEnter:Connect(function()
	mouse.Icon = "pointy"mouseImage
end)
textButton.MouseLeave:Connect(function()
	mouse.Icon = defaultMouseImage
end)

for every element you want said behaviour.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.