I’m trying to change the mouse icon when hovering over child instances inside a scrolling frame. I am using the following code:
frame.MouseEnter:Connect(function()
UserInputService.MouseIcon = mouseIconOnEnter
print("Changed icon on MouseEnter")
end)
frame.MouseLeave:Connect(function()
UserInputService.MouseIcon = ""
print("Changed icon on MouseLeave")
end)
It unfortunately does not work. Does anyone have a good alternative or solution?