How would i make the players mouse invisible?

How would i do this?
Ive never accessed the default player guis before especially the mouse so how would i do this?

1 Like

game:GetService("UserInputService").MouseIconEnabled =false make sure its in a local script

1 Like

Ok thanks ill have to try that!

just make mouse.icon a invisible image lol

1 Like

Its not as simple as doing that you know i dont know what guis are for the mouse

–reference to mouse pointer control api reference

as @TheCreatorBenn said

local UserInputService = game:GetService("UserInputService")

UserInputService.MouseIconEnabled = false
UserInputService.MouseIconEnabled = true

these are the syntax to change the mouse’s icon to invisible

3 Likes