enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. 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 ...

  3. Decals and Textures are rendering as extremely low resolution ......

    devforum.roblox.com/t/decals-and-textures-are-rendering-as-extremely-low...

    A lot of textures and decals in RoVille (🏘️ RoVille - Roblox) sometimes load as very low quality. I’ve noticed it in some other games. (Maybe the only the games make extensive use of custom textures?) Here’s a few examples: Happens with clothing too it seems: Expected behavior Textures should not be compressed to oblivion

  4. Imiji - convert decal IDs to image IDs - Roblox

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

  5. How long does it take for a decal to be approved/rejected ... -...

    devforum.roblox.com/t/how-long-does-it-take-for-a-decal-to-be-approvedrejected/...

    Hi @C_Sharper, from my knowledge a decal approximately takes 5 minutes to be approved. Some days decals take forever. I hypothesize that Roblox staff are offline therefore unable to approve the decals. This information is gathered from my experience of uploading decals in the past.

  6. What are the rules for what's allowed on images? - Roblox

    devforum.roblox.com/t/what-are-the-rules-for-whats-allowed-on-images/1127960

    krrtek (fajtik) March 24, 2021, 11:57am #3. Using appropriate content. Inappropriate content is not allowed within any Roblox experiences. Do not create or upload any images, videos, audio files or other content (including animations or scripting), discuss topics or use language that falls in the bulleted list above.

  7. Get ImageId From DecalId - Scripting Support - Roblox

    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. 1 Like. omq_nicolas124 (Ukyo) September 25, 2024, 12:04am #3.

  8. Low Resolution Decals are Upscaled - Studio Bugs - Roblox

    devforum.roblox.com/t/low-resolution-decals-are-upscaled/2996079

    When uploading a decal to Roblox, images that are low resolution are upscaled, making the image blurry. To reproduce this issue, get any image under 1024x1024 and upload it as a decal. It will appear blurry as it’s upscaled. This not only increases the file size of the image, but also decreases the quality. Images I used: (16x16 image) (256x256 image) Expected behavior I expect the image to ...

  9. Script that changes decal every few seconds - Roblox

    devforum.roblox.com/t/script-that-changes-decal-every-few-seconds/1539345

    Hello, I am trying to make a TV screen change decals every few seconds. This is what I have my Decal and Script nested under: This is the current properties for the Decal: And this is the script I currently have: image = script.Parent while true do wait(2) image.Decal.Texture = "6778205819" wait(2) image.Decal.Texture = "7062598370" wait(2) end Currently when I test, I only see the part ...

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

  11. OverlayModule- Wrap decals around surfaces - Roblox

    devforum.roblox.com/t/overlaymodule-wrap-decals-around-surfaces/2053691

    I was looking for a solution to my post, and I came across a plugin that does exactly what I wanted. So, I turned it into a module for in-game usage! Here’s what it looks like in action: This is a bad example, but you might be starting to see what you can do with this! You could use it for bullet holes, blood, and more. The code used to make this example: <details><summary>Summary</summary ...