I put my image in tabe and use for in ipairs to get my image to imagelabel but my image keep change same image
local vhs = script.Parent.ImageLabel
local rs = game:GetService("RunService")
local StaticImages = {
'rbxassetid://7472792778';
'rbxassetid://10757636219';
'rbxassetid://520992855';
'rbxassetid://10195656966';
'rbxassetid://4689700119';
'rbxassetid://9470950';
'rbxassetid://3203623798';
'rbxassetid://2510585515';
}
while true do
for i,v in ipairs(StaticImages) do
rs.Heartbeat:Connect(function(step)
vhs.Image = StaticImages[i]
end)
end
end```