So, as you can tell by the code it's trying to change the mouse curser. However, studio says it's unable to change the curser.
The code is running on a local script in a Gui.
Code:
01 | mhid = false |
02 | mouse = game.Players.LocalPlayer:GetMouse() |
03 | mouse.KeyDown:connect( function (key) |
04 | key = string.lower(key) |
05 | if string.byte(key) = = 113 then |
06 | if not mhid then |
07 | mhid = true |
08 | mouse.Icon = "http://www.roblox.com/asset/?id=20686724" |
09 | elseif mhid then |
10 | mhid = false |
11 | mouse.Icon = "" |
12 | end |
13 | end |
14 | end ) |
Output: Cannot set Icon of a PlayerMouse
Sadly you cannot use PlayerMouse to change the icon. What you have to do is make a hopperbin/Tool and force equip it then change the icon with that mouse. You can force equip it by using the :EquipTool
and then game.StarterGui:SetCoreGuiEnabled(2, false)
The SetCoreGuiEnabled makes it so the player cannot unequip the tool.