I'm trying to make a Module Script called "Settings", and I want to categorize each "term". Here's what I mean:
01 | local module = { |
02 | Sounds = { |
03 | Touch = 72948375 ; -- SoundId Example |
04 | TouchError = 75638573 ; -- SoundId Example |
05 | } |
06 | BrickColors = { |
07 | Orange = BrickColor.new( "CGA brown" ); |
08 | Blue = BrickColor.new( "Bright blue" ); |
09 | } |
10 | } |
11 |
12 | return module |