MouseIcon change for child instances inside a ScrollingFrame

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?

That’s weird. Can you share what mouseIconOnEnter is?

mouseIconOnEnter = "http://www.roblox.com/asset?id=163023520"