So im trying to make my spotlight beam change color (in a rainbow form) and ive placed the script in the part where the beam is located in.
why is it not changing the beam color? Note: im trying to make my stage spotlight change colors Script: while true do script.Parent.light = Color3.new(math.random(), math.random(), math.random()) wait(1) end
You forgot to put .Color when defining the light, so you script would look like this
1 | while true do |
2 | script.Parent.light.Color = Color 3. new(math.random(), math.random(), math.random()) |
3 | wait( 1 ) |
4 | end |
EDIT: I'm still quite confused on what you are asking, but If I'm understanding right this should work
1 | while true do |
2 | script.Parent.Color = ColorSequence.new(Color 3. fromRGB(math.random( 0 , 255 ),math.random( 0 , 255 ),math.random( 0 , 255 )),Color 3. fromRGB(math.random( 0 , 255 ),math.random( 0 , 255 ),math.random( 0 , 255 ))) |
3 | wait( 1 ) |
4 | end |
I made this script for the parts if you were interested in making rainbow parts, this script should also work for smoke. Sadly, this script does not work for Beams, here is the script I made:
01 | local text = script.Parent |
02 | local add = 10 |
03 | wait( 1 ) |
04 | local k = 1 |
05 | while k < = 255 do |
06 | text.Color = Color 3. new(k/ 255 , 0 / 255 , 0 / 255 ) |
07 | k = k + add |
08 | wait() |
09 | end |
10 | while true do |
11 | k = 1 |
12 | while k < = 255 do |
13 | text.Color = Color 3. new( 255 / 255 ,k/ 255 , 0 / 255 ) |
14 | k = k + add |
15 | wait() |