Quick question, what's the default cursor size?

I have a copy of the normal cursor and a shiftlock cursor inside an image label, but when I make them visible via a script, they’re way too big.

1 Like

The default mouse image is 64x64 pixels, with the mouse taking up 17x24 pixels of space.

Mouse.Icon.

what is that converted to udim2?

UDim2.new(0, 17, 0, 24)
1 Like

It’s too small when you do that.

  • The dimensions of the image used determines the size of the cursor.
  • The center of the image is where mouse inputs are issued.
UDim2.new(0, 17*2, 0, 24*2)
1 Like