Ok so I will make a Tv in my game and images will change on it, but I noticed when the images change they take like 0.1 seconds to appear because the image isn't loaded.
1 | wait( 5 ) |
2 | script.Parent.Decal.Texture = "rbxassetid://73737626" |
Then I tried doing this, but still, the image took some time to appear.
And when the images constantly change I don't want 0.1 seconds of a blank white screen before another image appears.
You have to use the ContentProvider
service. The :PreloadAsync
function will preload the image. Note that the image has to be an instance which is inside a table in the script.
1 | local ContentProvider = game:GetService( "ContentProvider" ) |
2 |
3 | local image = { script.Parent.Decal } |
4 |
5 | ContentProvider:PreloadAsync(image) |
6 |
7 | wait( 5 ) |
8 |
9 | script.Parent.Decal.Texture = image [ 1 ] |
I think there is a property called Transparency. You could set multiple image and set it to 1
1 | wait( 5 ) |
2 | script.Parent.Decal.Texture.Transparency = 0 -- The image will be visible but you will need to set other image transparency to 1 |
Way 2 if the first one isn't possible You could make a folder containing many decal then every 5 second you put it on tv
1 | wait( 5 ) |
2 | local Pic = folder.Pic 1 -- Change this |
3 | Pic.Parent = script.Parent |