Is there a Way were Someone can Change a(n) Cursor Without using a Gear, Like for example The Default Cursor could we Remove it? Please I need help!
Use the :GetMouse() method of player. If you put a localscript in starterGui with the following, it would change the mouse
local plr = game.Players.LocalPlayer local mouse = plr:GetMouse() mouse.Icon = "" -- Put in some image here.