script.Parent.Equipped:connect(function(mouse) mouse.Icon = "http://www.roblox.com/asset/?id=54019936" end) script.Parent.Unequipped:connect(function() print("Change mouse") -- I want to change the mouse Icon back to the normal mouse Icon -- end)
I was wondering how I could change the players mouse back to normal when the tool is unequipped.
This may seem like I'm trolling you, but it is really as easy as saying:
game.Players.LocalPlayer:GetMouse().Icon = ""
It's funny, I had a similar inquiry awhile ago too and just tried making it equal nothing. It actually worked XD.