Skip to content

Instantly share code, notes, and snippets.

@flowers3176
flowers3176 / ComboContainer.lua
Last active December 16, 2023 00:59
Luau Combo Container Module
-- Compiled with roblox-ts v2.2.0
local ComboContainer
do
ComboContainer = setmetatable({}, {
__tostring = function()
return "ComboContainer"
end,
})
ComboContainer.__index = ComboContainer
function ComboContainer.new(name:string, maxCount:number|nil, defaultCombo:number|nil)