Changing image makes image invisible

So Im making a blinking script but the script after he blinks all the decals become invisible? this is my script:

local Time = math.random(4,6)

local Face = script.Parent

while true do

task.wait(Time)

Face.Texture = "https://www.roblox.com/library/7443309304/Blink1"

task.wait(0.3)

Face.Texture = "https://www.roblox.com/library/7443310312/Blink2"

end

You’re putting in the URL incorrectly. It is supposed to be “rbxassetid://ID”. Make sure it is an image id, not a decal id.

There is also a longer way, but I forgot it.

One note, it doesn’t make the image invisible, it just fails to load it due to the fact you’re putting in the URL incorrectly.