Hey, I'm having a small issue.
This (Snippet from larger script):
color = math.random(1,64) p.Color = BrickColor.new(color)
This is the error I get, how can i get this to work?
21:26:50.081 - Workspace.Script:7: bad argument #3 to 'Color' (Color3 expected, got userdata)
Part's have BrickColor not Color so it should be:
p.BrickColor = BrickColor.new(color)