Is there a library for "rbxasset://textures\\" or something?

So, I’m making a toggle icon for mouse but then I came with a problem to revert it back to its original icon id.

Its cool if you have the asset url for the default mouse but is there a library or link for some available icons?

4 Likes

There is indeed a library, and better yet, it’s on your computer!

Press the windows key, then type %localappdata%\Roblox\Versions then select one one of the folders until you see the Roblox player executable, then finally click content then textures and you’re there!

(I can provide pictures if you need.)

2 Likes

I got the folder location of that by doing Open file location of the Roblox App Shortcut on my Desktop, now my problem is how to implement it via proper rbxasset url?

also, I dont know if some of those are gonna work or not.

Everything in that folder works.

"versionFolder~\content\textures\advancedMove.png" -> rbxasset://textures/advancedMove.png
"versionFolder~\content\textures\ui\PlayerList\CharacterImageBackground.png" -> rbxasset://textures/ui/PlayerList/CharacterImageBackground.png

10 Likes

If it makes it easier you can follow the gifs if you on windows.

6 Likes

So, I tried it and it works perfectly well. Thanks for helping me. :smiley:

1 Like

Thank you for the gifs! Luckily he said he found it already, but this will help anyone else trying to find it!

Yep, before I posted this topic I searched first in this forum and I found one and its not solved yet, so I make new ones. I hope someone who had this problem can see this. Thanks for the help! @MrLonely1221 @wallofgarlic

2 Likes

This is pretty helpful, but for some reason I’m unable to find the source image of the spawn point logo.


It should be called SpawnLocation.png I think, but I’m unable to find, I have found images of it but at max it was like 32 x 32.

Read replies, but basically it seems that only the logo to spawn a spawn point is going by this name in the files

Okay, so I’ve just found a file called SpawnLocation.png, but it’s 16 x 16 which is way to small to be correct.
Idk how else to find this tbh
SpawnLocation

Another thing, this seems to be the logo for it in the model section but very small
image
I’ve found bigger version in the files 2 with dark mode and light mode versions
image
image

This means that I haven’t even found the original source for the spawn point logo

there is a decal inside the spawnlocation that has the texture
rbxasset://textures/SpawnLocation.png
is this it?

@Me1tyIce Kinda late, but… IIRC, SpawnLocation.png is no longer stored in the local files.


Now don’t quote me on this, BUT:

I know that some files which were stored locally are no longer stored in such a manner, they were most likely removed to either save space or for some other unknown reason.

Now I know that in the past at least, internally, the engine had a list of those removed files and their paths, if any path from that list was recognized, the engine would fetch the file from an appropriate asset from Roblox’s servers.

So even if a Decal shows rbxasset://textures/SpawnLocation.png in its Texture property, it’s internally resolved as rbxassetid://[spawn location image's asset id] (or in a different format) and fetched from Roblox’s servers.

This doesn’t only apply for image assets, it also goes for any other asset type.