Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to change back to the normal mouse icon?

Asked by 8 years ago
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.

1 answer

Log in to vote
1
Answered by
Legojoker 345 Moderation Voter
8 years ago

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.

Ad

Answer this question