Roblox Clickdetector icons not working

Hey everyone. I really need help I dont understand why this is happing in studio my custom mouse cursor for click detectors work but In game the icon doesn’t change. Im not using any scripts just the built in system. Thank you!

You saved your game ?
If yes can you show me a screenshot please

1 Like

Yes the game is published. The first image is in studios and the second one is in the the the classic mouse icon shows up in game it just wouldnt let me take a snip of it
Screenshot 2024-11-27 104515
Screenshot 2024-11-27 104722

Can you give me the cursor ID please ?

can you send the script so I know what the ID is like xelas said and how do you set it

Here is the id rbxassetid://100910505438225

There is no script I am just using CusorIcon property on the click detector. rbxassetid://100910505438225

I would try using a local path to the mouse click icon (as you seem to be using the default roblox one), that will make it so users don’t have to download the texture for it, and could fix your issue at the same time (if the asset is not owned by you, or something, the clients might just not be able to download it)

I think the “id” is “rbxasset://texture/[path]”. I’ve done it in the past with click detectors, so when I can, I’ll send it

Alright thank you for sending the script when you have time I have been stuck on this for a while and it ruins how the game looks!

rbxasset://textures/Cursors/KeyboardMouse/ArrowCursor.png

So now how would I change this to my cursor id 100910505438225

You don’t, you set CursorIcon to rbxasset://textures/Cursors/KeyboardMouse/ArrowCursor.png and it’ll look like the icon in the first picture you sent. That icon is the default roblox icon for clickable stuff right?

When you use local files for assets (images, or anything that takes an assetid), you are limited to assets that are in roblox’s files. You can see these files if you go to %LOCALAPPDATA%\Roblox\Versions\[what ever version has the following folder]\content\textures


There are quite a lot of files in here, and it can be useful if you don’t want to create your own images for some stuff, and as bonus, since players already have these files installed with roblox, the images are available to the clients right as they join, no need to download them

1 Like