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
    }
Installs
4
First Seen
Jan 25, 2026
audio-system — taozhuo/game-dev-skills