Stopping mouse icon from changing when hovered over a GUI button?

Hey! I’m making my own backpack GUI and I noticed that when I hover my cursor over one of the buttons, it changes the icon of the mouse. I have found no API references on the Roblox wiki on how to stop this from happening. Any help?
image
image

1 Like

One way would be to make a completely custom mouse.
Just make a ImageLabel, give it a high ZIndex so it can show above everything else, set the Image and write a script that always moves the ImageLabel to the mouse. Then you just have to hide the actual mouse. I don’t know if it is inefficient, but it works.

9 Likes

Here’s an example from a previous post: Button/Image Button Mouse Hover

3 Likes