|
| 23 Feb 2015 11:18 PM |
function flash() for i = script.Parent.ImageTransparency,0,-0.1 do script.Parent.ImageTransparency= i wait(0.02) -- Seems like an appropriate wait time end script.Parent.ImageTransparency = 1 end
for i = 1,3,1 do -- lel runs flash() 3 times flash() wait() -- Put in how long you want to wait between each flash.. end |
|
|
| Report Abuse |
|
|
| |
|
|
| 23 Feb 2015 11:23 PM |
function Flash() for i = 1,10 do script.Parent.ImageTransparency = script.Parent.ImageTransparency - 0.1 Wait(0.02) end script.Parent.ImageTransparency = 1 end
for i = 1,3 do -- "1" is not required. Flash() wait() end
People will yet at me for doing it this way probably, but it always works. |
|
|
| Report Abuse |
|
|
| |
|
|
| 23 Feb 2015 11:33 PM |
Ok tell me this:
What is script.Parent ImageLabel or Frame or TextLabel or something else |
|
|
| Report Abuse |
|
|
| |
|