Is there a way to set Mouse Icon without needing a hopperbin or tool then changing the icon: ?
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
1 | local Player = game.Players.LocalPlayer |
2 |
3 | local Mouse = Player:GetMouse() |
4 | 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.