Mouse.icon not working

Hi all. I’m currently making a gun but when I try to change the mouse icon when equipped, it doesn’t change at all. I’ve tried different decals but nothing worked, I’ve also tried UserInputService.MouseIcon but that also didn’t work. Any help would be appreciated.

g19.Equipped:Connect(function()
	--game.Players.LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
	equipTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(equipAnim)
	equipTrack.Priority = Enum.AnimationPriority.Action
	equipTrack:Play()
	wait()
	mouse.Icon = "rbxassetid://12451995237"
end)
3 Likes

is this serverside or clientside i think it only works with client

client side script in a tool CharacterLimit

That is not how you get id of images

This is how you get them:

g19.Equipped:Connect(function()
	--game.Players.LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
	equipTrack = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(equipAnim)
	equipTrack.Priority = Enum.AnimationPriority.Action
	equipTrack:Play()
	wait()
	mouse.Icon = "http://www.roblox.com/asset/?id=12451995237"
end)

I’ve tried that before but made no change.

There’s probably an issue with the image itself.
Try loading the image on a decal in a part to see if it shows up.

EDIT - Replied to wrong poster :eyes:

Try getting the link from the image again. Might happen because the image id can change after you create it.

This might be caused by the fact that the ID you supplied is a decal, not an image. If you uploaded it, maybe try uploading it as an Image, and changing the ID in the script, and see if that fixes the problem.

When you create a decal, you also create an image of it.

Oh I was not aware of that. I only suggested this as I have found this has solved the problem for me a few times.

1 Like

I’ve tried everything listed here but nothing changed. In studio it either stays or goes invisible but ingame it just stays

Hello!

The ID seems to be correct but isn’t working. This is because of some Roblox Bug where the ID doesn’t equal to the Image/Decal ID somehow. However to fix your issue I put the ID into a Decal and this is your right ID:

mouse.Icon = "rbxassetid://12451995169"
2 Likes

Mouse.Icon tends to be glitchy in Roblox Studio, make sure you test it in Roblox aswell, if it doesn’t work there either, its most probably an issue with the image.

This worked great thanks but what do you mean by putting the id into a decal? Thanks!

A Decal is a somewhat an other version of an ImageLabel but takes the surface side of a part as its base.
image
image

and so I pasted the ID you had into the texture box of the decal and got another id for it

image

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.