Reset Mouse Icon

How would I change from a custom MouseIcon to the default one?

I tried

mouse.Icon = " "

and that errored: Image " " failed to load in "Mouse Cursor": Unexpected URL

There is no image url, you need a Url

The default Icon is rbxasset://SystemCursors/Arrow.

I get the same error when I try that
Image "rbxasset://SystemCursors/Arrow" failed to load in "Mouse Cursor": File not found

Try it without any spaces:

mouse.Icon = ""
1 Like