Whats wrong with this code, it wont output anything onto the log?
brickcol = game.Workspace.Brick.BrickColor
print("the brick color is " .. brickcol)
While running your script, I got a console error.
-- Workspace.Script:3: attempt to concatenate string with BrickColor
We can fix this by turning it into a string:
brickcol = game.Workspace.Brick.BrickColor print("the brick color is " .. tostring(brickcol))