Mouse icon invisible

Trying to change the icon on the mouse, still invisible… what do I do! I’ve even chucked it in a loop, still invisible!

I’ve tried these methods and I’ve changed the image id.

game:GetService("UserInputService").MouseIcon = "http://www.roblox.com/asset/?id=15694319414"
game:GetService("UserInputService").MouseIcon = "rbxassetid://15694319414"
local player = game:GetService("Players").LocalPlayer
local mouse = player:GetMouse()
mouse.Icon = "rbxassetid://15694319414"

make sure the image is actually uploaded and not invisible itself. Also you should restart studio.
You can get the asset id from the Asset manager:

The studio i have open isn’t a published place, just a local one to test things while on the forum.

Your asset is not loading, something is wrong with it. Please add this as a local script to folder StarterPlayerScripts, should work with default tutorial asset.

local UserInputService = game:GetService("UserInputService")

UserInputService.MouseIcon = "rbxassetid://3400146391"

Perfect thank you! I really should of tried reuploading the image, hopefully my stupidity assists someone else. :smile:

1 Like

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