I need help removing the cursor of the Roblox mouse to replace it with another... Help?
The easiest way to do this is by getting the player's mouse (using a LocalScript and GetMouse) and then changing the Icon property.
1 | local Mouse = game.Players.LocalPlayer:GetMouse() |
2 | Mouse.Icon = "" |
http://wiki.roblox.com/index.php?title=Mouse_appearance_tutorial#Set_mouse_icon
01 | local Tool = script.Parent; |
02 |
03 | enabled = true |
04 | function onButton 1 Down(mouse) |
05 | if not enabled then |
06 | return |
07 | end |
08 |
09 | enabled = true |
10 | mouse.Icon = "http://www.roblox.com/asset/?id=2966012" |
11 |
12 | end |
13 |
14 |
15 | function onButton 1 Up(mouse) |