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