combat-system

Installation
SKILL.md

Roblox Combat System Implementation

When implementing combat systems, follow these Roblox-specific patterns.

Hitbox Systems

Battlegrounds-Style Hitbox (GetPartBoundsInBox)

-- Most common method for melee games like The Strongest Battlegrounds
local function createHitbox(cframe, size, ignoreList, callback)
    local params = OverlapParams.new()
    params.FilterDescendantsInstances = ignoreList
    params.FilterType = Enum.RaycastFilterType.Exclude

    local parts = workspace:GetPartBoundsInBox(cframe, size, params)
Installs
2
First Seen
Jan 25, 2026
combat-system — taozhuo/game-dev-skills