of     1   

Dodeca
#184550099Monday, February 29, 2016 9:42 PM GMT

I know I can use brickcolor.random but I want to choose a random color from really red, bright red, and neon orange.
cheesecake123456
#184550279Monday, February 29, 2016 9:45 PM GMT

colours = {'Bright red', 'Really red', 'Neon orange'} -- ensure these have the right caps local chosenColour = colours[math.random(1, #colours)] local brickVal = BrickColor.new(chosenColour)

    of     1