So I am trying to get the HTML Car Selector to recongnize my colours, but so far no luck has been had. Main - Info.json file HTML: { "Name":"Ultra Rally Covet", "Brand":"Slayer", "Transmission":"Manual", "Drivetrain":"AWD", "Type":"Car", "default_pc":"rally", "default_color":"Deep Gray", "colors":{ "White": "1 1 1 1.1", "Deep Gray": "0.25 0.25 0.25 1.1", "Black": "0 0 0 1.1", "Spicy Red": "1 0 0 1.1", "Racing Green": "0.1 0.4 0.2 1.1", "Blue": "0.2 0.3 0.6 1.1", "Rally Blue": "0.1 0.2 0.55 1.1", } } Edit: Spend hours on it, only realizing now that the last thing in the code shouldn't contain a comma, now it is all fixed. (FACEPALM) HTML: { "Name":"Ultra Rally Covet", "Brand":"Slayer", "Transmission":"Manual", "Drivetrain":"AWD", "Type":"Car", "default_pc":"rally", "default_color":"Deep Gray", "colors":{ "White": "1 1 1 1.1", "Deep Gray": "0.25 0.25 0.25 1.1", "Black": "0 0 0 1.1", "Spicy Red": "1 0 0 1.1", "Racing Green": "0.1 0.4 0.2 1.1", "Blue": "0.2 0.3 0.6 1.1", "Rally Blue": "0.1 0.2 0.55 1.1" } }