I have this code
local bridgeClass = {}
bridgeClass.__index = bridgeClass
bridgeClass.bridgeColors = {
{Color3.fromRGB(0,200,0),Color3.fromRGB(200,150,0),Color3.fromRGB(200,0,0)},
}
function bridgeClass.new(model, bridgeType)
local newObject = setmetatable({}, bridgeClass)
newObject.model = model
newObject.bridgeType = bridgeType
newObject.playersOnBridge = {}
newObject.playerAmount = 0
return newObject
end
return bridgeClass
And I was wondering if bridgeClass.bridgeColors could be considered a static attribute. If not, then how would I make one?