Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is there a way to set Mouse Icon without needing a hopperbin or tool then changing the icon: ?

Asked by 9 years ago

Is there a way to set Mouse Icon without needing a hopperbin or tool then changing the icon: ?

1 answer

Log in to vote
1
Answered by 9 years ago

The way I'm reading this is that you want to set a new "default" cursor for your game, so if that's what you mean, this is what you could do:

In a local script

local Player=game.Players.LocalPlayer

local Mouse=Player:GetMouse()
Mouse.Icon="http://www.roblox.com/asset?id="..CursorID -- To be replaced with your cursor's image ID

That'll change the default cursor to whatever your cursor image is.

Ad

Answer this question