mopy16
|
  |
| Joined: 05 Jun 2013 |
| Total Posts: 83 |
|
|
| 27 Feb 2016 02:01 AM |
I am new to scripting, and I probably did something wrong. I am trying to make the TextStrokeColor3 change slowly.
This is my script:
while true do script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,4/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,110/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,230/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(200/255,0/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(149/255,0/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(29/255,0/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,145/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,255/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,255/255,136/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,255/255,21/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(110/255,255/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(234/255,255/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,140/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,140/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(234/255,255/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(110/255,255/255,0/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,255/255,21/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,255/255,136/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,255/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(0/255,145/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(29/255,0/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(149/255,0/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(200/255,0/255,255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,230/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,110/255/255) wait(.1) script.Parent.Face.Contents.TextStrokeColor3 = Color3.new(255/255,0/255,4/255) wait(.1) end
|
|
|
| Report Abuse |
|
Dodeca
|
  |
| Joined: 11 Sep 2011 |
| Total Posts: 13649 |
|
|
| 27 Feb 2016 02:15 AM |
| Are you sure textstroke is even visible? |
|
|
| Report Abuse |
|
mopy16
|
  |
| Joined: 05 Jun 2013 |
| Total Posts: 83 |
|
| |
mopy16
|
  |
| Joined: 05 Jun 2013 |
| Total Posts: 83 |
|
| |
|
| 27 Feb 2016 02:52 AM |
Make sure TextStrokeTransparency = 0. It is the stroke you're wanting to change right? and not the text itself? |
|
|
| Report Abuse |
|