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?
local plr = game:GetService("Players").LocalPlayer local mouse = plr:GetMouse() 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.
local plr = game:GetService("Players").LocalPlayer local mouse = plr:GetMouse() mouse.Icon = "http://www.roblox.com/asset/?id=278931719"