spinywind
|
  |
| Joined: 26 Jan 2012 |
| Total Posts: 3580 |
|
|
| 25 Jan 2016 03:35 PM |
how would i make the text stroke transparency and text color change colors after 0.1 seconds each time.
textgroup.Size=UDim2.new(1,0,1,0) textgroup.BackgroundTransparency = 1 textgroup.TextColor3 = Color3.new(238/255, 15/255, 225/255) textgroup.TextStrokeTransparency = 0 textgroup.TextTransparency = 0.2 textgroup.FontSize = 'Size14'
|
|
|
| Report Abuse |
|
|
|
| 25 Jan 2016 03:38 PM |
num = 0 repeat textgroup.TextColor3 = Color3.new(num,num,num) num = num+0.001 wait(.0001) until num == 1 num = 0 return repeat |
|
|
| Report Abuse |
|
|
spinywind
|
  |
| Joined: 26 Jan 2012 |
| Total Posts: 3580 |
|
| |
|
|
| 25 Jan 2016 05:10 PM |
num = 0 while wait() do if num == 0 then repeat textgroup.TextColor3 = Color3.new(num,num,num) num = num+0.001 wait(.0001) until num == 1 num = 0 end end
--add the ends if it says expected end, remove end if it says expected eof |
|
|
| Report Abuse |
|
|