What is the BEST way and Easiest way to make a color changing block

The title speaks for itself

How can I make a really easy Rainbow colored block with a script

4 Likes

Just

brick.Color = Color3.new(math.random(1,255),math.random(1,255),math.random(1,255))

And loop it

1 Like

instead of just setting them, use tween so it would be smooth and then loop them.

1 Like

You have a big brain, tweenservice is goood, but however would increase lines of code

1 Like

So this + maybe a while loop?


Yes, (30 ch arssssssssssssssssssss)

1 Like

part.BrickColor = BrickColor.new("White")

Is a similar way of achieving this and is fairly intuitive as you simply type the color you want instead of an RGB value.