How do I disable the hover mouse?

How do I disable the hover mouse?

I’ve changed the Mouse.Icon but it doesn’t replicate to the hover mouse and I’d like to change it :confused:

Gif showing what I mean:

What I did for a custom mouse cursor was I actually ended up disabling the mouse cursor completely, then, every time the player’s mouse moves, I move an ImageLabel to the mouse’s position then offset it so it’s precise, I assume that bypasses this behavior, as I’ve never had this happen to me using these events.

Hope this helps :slight_smile:

3 Likes
local UserInputService = game:GetService("UserInputService")

UserInputService.MouseIconEnabled = false
3 Likes