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