of     1   

NinjaGotYou
#36837009Thursday, November 11, 2010 1:15 PM GMT

Err how else could i randomly choose colors? TC = {"Bright red","Deep blue","Earth green"} while true do wait(2) script.Parent.BrickColor = BrickColor.new(math.random(TC[1],TC[3])) end Output -------- Workspace.Sign.Script:4: bad argument #1 to 'random' (number expected, got string)
hyrumcoop
#36837142Thursday, November 11, 2010 1:21 PM GMT

You had the script wrong. TC = {"Bright red","Deep blue","Earth green"} while true do wait(2) script.Parent.BrickColor = BrickColor.new(math.random(1,#TC)) end You can also use BrickColor.Random(). For example: Part.BrickColor = BrickColor.Random()
NinjaGotYou
#36837157Thursday, November 11, 2010 1:22 PM GMT

Ah thank you just learning tables,
xSoulStealerx
#36837958Thursday, November 11, 2010 2:01 PM GMT

TC = {"Bright red","Deep blue","Earth green"} while true do wait(2) CN = math.random(1,3) script.Parent.BrickColor = BrickColor.new(TC[CN]) end
walter232
#36839125Thursday, November 11, 2010 3:07 PM GMT

Or you could use BrickColor.Random() (EX:) part.BrickColor=BrickColor.Random() -- RANDOMNESS XD
walter232
#36839146Thursday, November 11, 2010 3:08 PM GMT

Srry, guy above already posted that..srry for spam..
bloob827
#36839155Thursday, November 11, 2010 3:09 PM GMT

walter, Ninja wants the colors to be the ones in the tables.

    of     1