I'm trying to change a mouses cursor, and i'm not sure why this isn't working, and i get the error cursor isnt a member of PlayerMouse. any clues?
1 | local plr = game:GetService( "Players" ).LocalPlayer |
2 | local mouse = plr:GetMouse() |
3 | mouse.Cursor = "http://www.roblox.com/asset/?id=278931719" |
Cursor
is not correct member of PlayerMouse
. Use mouse.Icon
to correctly change your mouse cursor.
1 | local plr = game:GetService( "Players" ).LocalPlayer |
2 | local mouse = plr:GetMouse() |
3 | mouse.Icon = "http://www.roblox.com/asset/?id=278931719" |