Image does not show up

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    this
    Q white - Roblox
    on
    this

  2. What is the issue? Include screenshots / videos if possible!
    it does not show up
    but this Q green - Roblox this Q blue - Roblox and the group emblem of qin2007sgroup do show up

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    i dont know

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

local Images = {
	hello = 'rbxassetid://7654115324',
	dance1 = 'http://www.roblox.com/asset/?id=7334789600',
	dance2 = 'rbxassetid://7640167493',
	dance3 = 'rbxassetid://7640208412'
}

while true do
	for i,v in pairs(Images) do
		script.Parent.Image = v
		repeat
			wait()
		until script.Parent.IsLoaded
		wait(1)
	end
end

hope fully if some one solves this problem it works also in the emote bar

You are looping through all the images. I suggest you do:

while wait(1) do
	for i, v in pairs(Images) do
		if v.Name = "dance2" then -- Replace dance 2 with whatever item gets the image.
			script.Parent.Image = v
		end
	end
end

OR

If you want each one to appear a different time, you could use:

while wait(1) do
	for i, v in pairs(Images) do
		script.Parent.Image = v
	end
end

EIDT: If it just doesn’t load, it also might be because roblox moderated the asset.

i want to cycle throg all the images in the table and see them all
but even if you or i remove
this

the Q part

1 Like

If possible can you send a video of it? It would be helpful.
Also, instead of while true do maybe you can do while wait(1) do

robloxapp-20211008-1549202.wmv (263.2 KB)

did not know how to do it otherwise

local Images = {
	hello = 'rbxassetid://7654115324',
	dance1 = 'http://www.roblox.com/asset/?id=7334789600',
	dance2 = 'rbxassetid://7640167493',
	dance3 = 'rbxassetid://7640208412'
}
while true do
	for i,v in pairs(Images) do
		script.Parent.Image = v
		
		wait(1)
	end
end

no

Can you upload it in streamable or some other video uploading platform.

www.streamable.com click upload video.