I have been using the BrickColor.Random() command but what can go inside of the brackets? I tried putting BrickColor.Random("Red", "Blue", "Green") but it didn't work
I'm pretty sure nothing goes inside the parentheses. If you want to pick a random color between red, blue, and green, I would recommend a table.
local Colors = {"Bright red","Bright blue","Dark green"} --Make sure it's a real brick color! local randomColor = Colors[math.random(1,#Colors)] workspace.Part.BrickColor = BrickColor.new(randomColor)