Picture doesn't change

I have i problem with TV, picture doesn’t change

while true do --Loop
	script.Parent.Decal.Texture = "https://www.roblox.com/library/9084644912/rentv1"
	wait(2)
	script.Parent.Decal.Texture = "https://www.roblox.com/library/9084644378/rentv2" 
	wait(2)
	end

image
image
image

Does it stay at the first image? or is the image disappearing completely when it’s supposed to switch?

Add the textures in the decal, and you will see that the link is actually rbxassetid://something. So instead of doing

script.Parent.Decal.Texture = “rentv1 - Roblox

you should do

script.Parent.Decal.Texture = “rbxassetid://something” copy and paste the link that was changed in decal

2 Likes

Image diasppears when i run it in studio

while true do --Loop
	script.Parent.Decal.Texture = "rbxassetid://9084644912"
	wait(2)
	script.Parent.Decal.Texture = "rbxassetid://9084644378" 
	wait(2)
	end

image
Not working for me

If you’ve just recently uploaded the image to Roblox you’ll have to give it some time to appear. If you need it right away, upload it to the asset manager and use that version instead.

i uploaded that image 5 days ago

Ah no, the thing is that you have a texture under decal. Remove the texture instance from decal and it should work.


image doesn’t appear, i removed texture instance

Those are the decal IDs, not their asset IDs, use the following instead:

9084644895
9084644373

1 Like

Thank you!!! it works!!!

Damn i said that lol dont matter anyways well explained

1 Like

thank you so much too, now i have a working tv in my game