TrickSkot
|
  |
| Joined: 14 Mar 2013 |
| Total Posts: 1987 |
|
|
| 23 Aug 2015 05:57 AM |
local textbox = script.Parent local frame = script.Parent.Parent local textcolor = textbox.TextColor3
while true do wait(1) textbox.TextColor3 = textbox.textcolor.new(255,0,0) wait(1) textbox.TextColor3 = textbox.textcolor.new(0,0,255) end
|
|
|
| Report Abuse |
|
|
|
| 23 Aug 2015 07:13 AM |
while true do wait(1) textbox.TextColor3 = Color3.new(255/255,0,0) wait(1) textbox.TextColor3 = Color3.new(0,0,255/255) end
Besides your strangely erroneous syntax, Color3 uses a value between 0 and 1. You can get away with dividing the actual RGB values by 255. |
|
|
| Report Abuse |
|
|
TrickSkot
|
  |
| Joined: 14 Mar 2013 |
| Total Posts: 1987 |
|
| |
|