enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Get ImageId From DecalId - Scripting Support - Developer Forum -...

    devforum.roblox.com/t/get-imageid-from-decalid/3171371

    There’s a Texture property for decals that you can access that will give you the image id. Example: local Decal; --Set the decal to this local ImageID = Decal.Texture --Full id string so like rbxassetid://0 local ImageID2 = Decal.Texture:Split("\\")[2] --Number only part of the ID

  3. Imiji - convert decal IDs to image IDs - Community Resources ...

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

    Part of the Elttob Classic Suite Reclass classic • Imiji • Atmos • Pick • InCommand 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 ...

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

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

    Why Conversion is Necessary If you’ve ever had a script set a texture or image property to a decal asset URI, you’d notice that it fails to load. That’s because decals and images are actually separate asset types, and properties that would expect an image asset will fail to load a decal asset. Decal assets refer to decal instances (similar to how model assets refer to model instances ...

  5. 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.

  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

    You should be able to extract the image id from the body. 1 Like. system (system) ...

  7. 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 ...

  8. How to get ImageId of a decal? - Scripting Support - Roblox

    devforum.roblox.com/t/how-to-get-imageid-of-a-decal/1258628

    let me explain further if you dont mind, the content id stores a decal, along with all of it’s properties, one of them being the image id, when you type the content id manually into the image property, the studio already knows to create the decal, parent it to nothing so it doesn’t show up, get the id property, and replace the content id for that one.

  9. How to get image id from decal id? - Scripting Support - Roblox

    devforum.roblox.com/t/how-to-get-image-id-from-decal-id/1518001

    To do this the player enters a decal asset id into a textbox which updates the wallpapers “Image”… I’m making a surfaceGui phone on studio and one of the features in the settings app is that you can change your wallpaper.

  10. How do I convert a decal id to an image id - Scripting Support...

    devforum.roblox.com/t/how-do-i-convert-a-decal-id-to-an-image-id/2426155

    If you absolutely need the full-resolution upload, the only way you can get the raw Image ID is to make an HTTP request to assetdelivery.roblox.com and parse the results yourself; however, this cannot be done directly via HttpService because ROBLOX blocks requests to its own domain, meaning you’d need to send it through a proxy to make the ...

  11. Trying to set an image via script - Scripting Support - Roblox

    devforum.roblox.com/t/trying-to-set-an-image-via-script/913810

    I just tested out with that Id and seems to be working fine, so the problem is likely with it not loading (Should print in output), or you have referenced the ImageLabel variable to something else or you’re trying to reference the image label in StarterGui and not PlayerGui, common mistakes most people do.