01 | local Bruh = script.Parent |
02 |
03 | while true do |
04 | wait( 1 ) |
05 | Bruh.Color 3 = ( '0,255,0' ) |
06 | wait( 1 ) |
07 | Bruh.Color 3 = ( '0,0,255' ) |
08 | wait( 1 ) |
09 | Bruh.Color 3 = ( '255,0,0' ) |
10 | wait( 1 ) |
11 | end |
You cannot change an RGB value (Color3 value) like that.
You use fromRGB()
01 | local Bruh = script.parent |
02 |
03 | while true do |
04 | wait( 1 ) |
05 | Bruh.Color = Color 3. fromRGB( 0 , 255 , 0 ) |
06 | wait( 1 ) |
07 | Bruh.Color = Color 3. fromRGB( 0 , 0 , 255 ) |
08 | wait( 1 ) |
09 | Bruh.Color = Color 3. fromRGB( 255 , 0 , 0 ) |
10 | wait( 1 ) |
11 | end |
Here:
1 | local Bruh = script.Parent |
2 | while true do |
3 | wait( 1 ) |
4 | Bruh.BrickColor = BrickColor.new( 0 , 255 , 0 ) |
5 | wait( 1 ) |
6 | Bruh.BrickColor = BrickColor.new( 0 , 0 , 255 ) |
7 | wait( 1 ) |
8 | Bruh.BrickColor = BrickColor.new( 255 , 0 , 0 ) |
9 | end |
HSV has hue as its first value. You could simply tween that value:
1 | local TweenService = game:GetService( "TweenService" ) |
2 | local Part = workspace.Part |
3 |
4 | local Info = TweenInfo.new( 1 , "Quad" , "Out" ,- 1 ) --Except for repeat count, all default values |
5 | TweenService:Create(Part,Info, { Color = Color 3. fromHSV( 1 , 1 , 1 ) } ):Play() |
Note: changing TweenInfo
's repeat count to a negative value will indefinitely loop the tween.
I'm not to good at color stuff but this might work. Also when posting code put it in a lua code block.
01 | local Bruh = script.Parent |
02 |
03 | while true do |
04 | wait( 1 ) |
05 | Bruh.Color 3 = Color 3. fromRGB ( '0,255,0' ) |
06 | wait( 1 ) |
07 | Bruh.Color 3 = Color 3. fromRGB( '0,0,255' ) |
08 | wait( 1 ) |
09 | Bruh.Color 3 = Color 3. fromRGB( '255,0,0' ) |
10 | wait( 1 ) |
11 | end |