Can I change the default mouse icons transparency?
as far as I know, you cannot change the mouse icon transparency
instead you can change whether the mouse icon is visible or not via the UserInputService MouseIconEnabled
boolean
this code snippet hide's the mouse's icon
local UserInputService = game:GetService('UserInputService') UserInputService.MouseIconEnabled = false