Asperkid
|
  |
| Joined: 23 May 2015 |
| Total Posts: 7 |
|
|
| 28 May 2015 07:48 PM |
How would I change the color of a spotlight with a script?
|
|
|
| Report Abuse |
|
|
ehern11
|
  |
| Joined: 23 Apr 2011 |
| Total Posts: 1541 |
|
| |
|
|
| 28 May 2015 07:50 PM |
local spotlight = script.Parent.SpotLight
spotlight.Color = Color3.new(BrickColor.new("Red")) |
|
|
| Report Abuse |
|
|
Asperkid
|
  |
| Joined: 23 May 2015 |
| Total Posts: 7 |
|
| |
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 28 May 2015 07:52 PM |
the 3 args range from 0-1, so if you want to do rgb do
Color3.new(r/255, g/255, b/255) |
|
|
| Report Abuse |
|
|
Asperkid
|
  |
| Joined: 23 May 2015 |
| Total Posts: 7 |
|
| |
|