For some reason, PreloadASync just doesn’t load at all. The image shown in the video changes, but right when it changes, it first is invisible, then changes to the image, this shows that the image hasn’t loaded yet, but even with loading the required images, it still does the same thing.
local images = {
"rbxassetid//71652328428214",
"rbxassetid//74015924147140"
}
contentprovider:PreloadAsync(images)
local images = {
"rbxassetid//71652328428214",
"rbxassetid//74015924147140"
}
for _, Link in images do
local Decal = Instance.new(`Decal`)
Decal.Texture = Link
contentprovider:PreloadAsync(Decal)
Decal:Destroy()
end