I'm trying to change the ImageTransparency on ImageLabels with the same ImageColor3

and remind me what needs adding, thanks.

Oh, sorry. Your script of toggling the transparency of the ImageLabels needs adding.

task.spawn(function
	for i = 1, 10 do
		task.wait(0.1)
		image.Transparency = i % 2
	end
end)
button.MouseButton1Click:Connect(function()
	for _, image in ipairs(updatedImages) do
		if button.BackgroundColor3 == image.ImageColor3 then
			task.spawn(function()
				for i = 1, 10 do
					task.wait(0.1)
					image.Transparency = i % 2
				end
			end)
		end
	end
end)
1 Like

I added your revised task script, but it didn’t work.