Hello, im trying to make a blink animation, however its not working. it updates the decals texture id, but its not poping up. Script:
local Face = script.Parent.Head:WaitForChild("face")
while true do
Face.Texture = "https://www.roblox.com/library/6002091802/1"
wait(1.5)
Face.Texture = "https://www.roblox.com/library/6002092719/2"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002092331/3"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002093325/4"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002093760/5"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002094446/6"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002093760/5"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002093325/4"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002092331/3"
wait(0.03)
Face.Texture = "https://www.roblox.com/library/6002092719/2"
wait(0.03)
end