audio-system
Installation
SKILL.md
Roblox Audio Systems
When implementing audio, follow these patterns for immersive and performant sound design.
Sound Management
Sound Pooling
local SoundPool = {}
SoundPool.pools = {}
function SoundPool.create(soundId, poolSize)
poolSize = poolSize or 5
local pool = {
sounds = {},
currentIndex = 1
}