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

Removing Mouse Cursor?

Asked by 9 years ago

I need help removing the cursor of the Roblox mouse to replace it with another... Help?

2 answers

Log in to vote
1
Answered by
DataStore 530 Moderation Voter
9 years ago

The easiest way to do this is by getting the player's mouse (using a LocalScript and GetMouse) and then changing the Icon property.

1local Mouse = game.Players.LocalPlayer:GetMouse()
2Mouse.Icon = ""

http://wiki.roblox.com/index.php?title=Mouse_appearance_tutorial#Set_mouse_icon

0
This link was very helpful thanks! Vedster 5 — 9y
Ad
Log in to vote
0
Answered by 9 years ago
01local Tool = script.Parent;
02 
03enabled = true
04function onButton1Down(mouse)
05    if not enabled then
06        return
07    end
08 
09    enabled = true
11 
12end
13 
14 
15function onButton1Up(mouse)
View all 40 lines...

Answer this question