Net Deals Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Imiji - convert decal IDs to image IDs - Community Resources ...

    devforum.roblox.com/t/imiji-convert-decal-ids-to-image-ids/460978

    Imiji is a plugin that makes finding image IDs and URIs for decals simple and efficient, ready for use in scripts, plugins and more. When you open Imiji, you’re given a large box to paste any decal asset ID or link into. Any string will work, as long as it contains the ID of the decal you wish to convert. Some examples of valid things to ...

  3. World Flags Library (Decal IDs) - Community Resources - Roblox

    devforum.roblox.com/t/world-flags-library-decal-ids/775429

    Hey everyone! As I was looking for world flag decals that someone could’ve uploaded beforehand, I realized that nobody previously created a list of these flags, hence why I made one today. World Flags Library Link: World Flags Library - Roblox Decal IDs all listed in a module script for easy script access Contains pre-inserted decals Has flags of all current members of the United Nations in ...

  4. How do you get the Studio ID of an image - Roblox

    devforum.roblox.com/t/how-do-you-get-the-studio-id-of-an-image/617891

    If you find the image in there… right-click it and select Copy ID to Clipboard. -It will automatically copy the id with the right path like this: rbxassetid://<ID NUMBER>. (If you are not the one then…) -On the toolbox>Images. -Just right-click the decal/image, an option will appear and select the Copy Asset ID or Copy Asset URI.

  5. Open source Roblox ImageID to DecalID converter API

    devforum.roblox.com/t/open-source-roblox-imageid-to-decalid-converter-api/450451

    Decal ID is the ID that is present when going to the Decals section in the library, and is normally the ID that players will insert, whereas the image ID is the actual ID the game needs to load the image. The post, as well as the website appears to have it backwards in most places, and in others it is correct.

  6. How do I get the id link from an image id? - Scripting Support...

    devforum.roblox.com/t/how-do-i-get-the-id-link-from-an-image-id/2661291

    Roblox never added a way to do this conversion ingame and people tend to just use a proxy for this. You can use rbxthumb instead but you are limited to a max resolution of 420x420

  7. 21 assorted realistic seamless tiling textures + 8 decals

    devforum.roblox.com/t/21-assorted-realistic-seamless-tiling-textures-8-decals/...

    I felt motivated to make a bunch of random decals and seamless tiling textures since I need to find grunge textures for a project and wanted practice extracting them. I didn’t make these with any use in mind so I’m just going to make them free for you to use however you like. These are all either 1024 px square, 1024 px on their largest dimension, or smaller. They have not been pixel-fixed ...

  8. Custom Cursor - Change your Cursor (OPEN SOURCE)

    devforum.roblox.com/t/custom-cursor-change-your-cursor-open-source/706621

    Custom Cursor is a plugin thats lets you change your Cursor. <details><summary>See it in Action</summary></details> How to use Custom Cursor: Go to the plugin tab, then open the Custom Cursor GUI. An Widget will open. Then copy/paste an Image/Decal ID for the cursor. Click Apply Custom Cursor and ta-da! Install Custom Cursor Here: Known Issuses: Make sure that your image is not to large, or ...

  9. How do I download Image/Decal Assets using Roblox API?

    devforum.roblox.com/t/how-do-i-download-imagedecal-assets-using-roblox-api/2790105

    I am trying to download Images and Decals through Roblox’s API using methods in this DevForum topic. It appears that none of the methods are working for downloading an asset with an Image ID by using a web browser and entering these URLs with the specified ID. Are there any new methods for downloading Decals and/or Image IDs using Roblox API? I have tried the following URLs for downloading ...

  10. Getting the image ID of a model in code? - Roblox

    devforum.roblox.com/t/getting-the-image-id-of-a-model-in-code/265974

    For the model ID, re-use the ID after insertion or if you have specific models, use an array of them. A sample of a line below here: @Operatik Same thing (s) that XAXA posted, which seems not to be the answer to the issue. You can only get the image ID of a model uploaded to the site.

  11. Converting Decal IDs to Image IDs - Community Tutorials - Roblox

    devforum.roblox.com/t/converting-decal-ids-to-image-ids/2640232

    There are actually 2 ways to do this via code. The first method uses InsertService:LoadAsset. A script for that can look like this: local insertService = game:GetService("InsertService") local decalModel = insertService:LoadAsset(DECAL_ID) local imageUrl = decalModel:FindFirstChildWhichIsA("Decal").Texture.