Image lable asset id not changing

Hi all

  1. What do you want to achieve? I am making a horror game in which when a player dies there is a static effect on the players screen.

  2. What is the issue? When a player dies the image lable is not changing like how its supposed to.

Here’s the script

local image = script.Parent.ImageLabel

while true do
	task.wait(0.1)
	image.Image = "rbxassetid://asset_id=10624008183"
	task.wait(0.1)
	image.Image = "rbxassetid://asset_id=10624013425"
	task.wait(0.1)
	image.Image = "rbxassetid://asset_id=10624017649"
end

I was hoping that some one here can help me identify the problem.

Thank you

Try to use rbxassetid://10624008183 [and so on with others]

As stated here the correct format is rbxassetid://0. You also need to use the image’s asset IDs not their catalog IDs.

10624008171
10624013410
10624017629