Roblox Brick Colors List

Posted on

Same as painting and drawing, if you want to make a game, you will need color to make every element in it is alive and real. So, it is important for you to know the Roblox Brick Colors list so that you are able to use the color for your games well.

A BrickColor is a data type which is able to define a pre-set color. It is limited to a set of 64 colours permitted by Roblox unlike Color3s which are able to be any color.

Well, there is more than 1000 BrickColors that Roblox has saved, but they only make use of the 64 default colors. Here is the list.

Index                                    Color Name                                        RGB Index

1                                              White                                                    242 243 243

5                                              Brick Yellow                                        215 197 154

9                                              Light Reddish Violet                        232 186 200

11                                           Pastel Blue                                          128 187 219

18                                           Nougat                                                 204 142 105

21                                           Bright Red                                           196 40 28

23                                           Bright Blue                                          13 105 172

24                                           Bright Yellow                                      245 208 48

26                                           Black                                                      27 42 53

28                                           Dark Green                                         40 127 71

29                                           Medium Green                                 161 196 140

37                                           Bright Green                                      75 151 75

38                                           Dark Orange                                       160 95 53

45                                           Light Blue                                            180 210 228

101                                         Medium Red                                      218 134 122

102                                         Medium Blue                                     110 153 202

104                                         Bright Violet                                       107 50 124

105                                         Br. Yellowish Orange                      226 155 64

106                                         Bright Orange                                    218 133 65

107                                         Bright Bluish Green                         0 143 156

119                                         Br. Yellowish Green                        164 189 71

125                                         Light Orange                                      234 184 146

135                                         Sand Blue                                            116 134 157

141                                         Earth Green                                       39 70 45

151                                         Sand Green                                        120 144 130

153                                         Sand Red                                             149 121 119

192                                         Reddish Brown                                 105 64 40

194                                         Medium Stone Grey                       163 162 165

199                                         Dark Stone Grey                               99 95 98

208                                         Light Stone Grey                              229 228 223

217                                         Brown                                                   124 92 70

226                                         Cool Yellow                                         253 234 141

1001                                       Institutional White                          248 248 248

1002                                       Mid Grey                                             205 205 205

1003                                       Really Black                                         17 17 17

1004                                       Really Red                                           255 0 0

1005                                       Neon Orange                                     213 115 61

1006                                       Alder                                                     180 128 255

1007                                       Dusty Rose                                         163 75 75

In the list above, it is just some of the BrickColors that we show you. If you want to know more other colors of BrickColors that you are able to use in Roblox Studio for your games, you are able to access Roblox Wiki or you are also able to access Roblox Developer that you can visit at developer.roblox.com.

It is also important for you to know that the BrickColor list can be used with the BrickColor.new() constructor as follows:

  1. — By numerical index
  2. workspace.Part.BrickColor = BrickColor.new (11)
  3. — By RGB values
  4. workspace.Part.BrickColor = BrickColor.new (128, 187, 219)
  5. — By color name
  6. workspace.Part.BrickColor = BrickColor.new (“Pastel Blue”)

Color is the basic thing that you have to know when you want to make games in Roblox Studio so that we explain you about this BrickColors List. So, now if you have understood about this, then you can learn about other things that are needed to create a game.

Leave a Reply

Your email address will not be published. Required fields are marked *