I know you can change the player's mouse with this:
1 | game.Players.LocalPlayer:GetMouse().Icon = "rbxassetid://123456" --etc. |
but if there is an occasion such as when hovering over a ClickDetector or a TextButton, I want to change it to go with a new enabled mouse cursor. How would I be able to do that?
I don't even need a script, if you could just point me to some resources, that'd be great!
You could have a LocalScript that detects when the ClickDetector's MouseHoverEnter and MouseHoverLeave events trigger, and change the player's mouse through that.
As an example (untested):
01 | local mouse = game.Players.LocalPlayer:GetMouse() --get the player's mouse |
02 | local defaultIcon = mouse.Icon --store the default icon into a variable |
03 |
04 | workspace.YourClickDetector.MouseHoverEnter:connect( function () |
05 | mouse.Icon = "hover icon" --when YourClickDetector in workspace is entered, set the cursor to "hover icon" |
06 | end ) |
07 |
08 | workspace.YourClickDetector.MouseHoverLeave:connect( function () |
09 | mouse.Icon = defaultIcon --when YourClickDetector in workspace is left, set the cursor back to the default |
10 | end ) |