gamedev-skills/awesome-gamedev-agent-skills

roblox-physics

Implement Roblox physical simulation and queries with assemblies, anchoring, constraints, collision groups, CanCollide/CanTouch/CanQuery, raycasts and overlap queries, mass, impulses, forces, velocity, moving assemblies, cleanup, and network ownership.

查看源码
仓库原始内容

按源仓库内容呈现,保留标题、案例、代码、表格、链接以及原文引用的演示图片。

Roblox physics

Choose deliberately between simulation, character control, hit detection, and visual-only motion; they are different jobs. Targets Roblox's rolling platform APIs. Pair with physics-tuning for engine-neutral stability and feel.

When to use

  • Use for BasePart assemblies, constraints, collision/query policy, ray/overlap queries, forces,

impulses, moving physical objects, network ownership, or physics cleanup.

  • Use when Touched is unreliable/security-sensitive, parts tunnel or jitter, a mechanism breaks

when anchored, or old BodyMover patterns appear.

When not to use: ordinary Humanoid lifecycle/control belongs to roblox-characters; remote validation belongs to roblox-networking; decorative UI/world motion may only need a tween.

Decide the system first

GoalMechanism
sustained physical interactionunanchored assembly + modern constraints/forces
instantaneous physical changeApplyImpulse / ApplyAngularImpulse
kinematic platform/pathcontrolled pivot/transform with an explicit passenger policy
character locomotionHumanoid/custom character controller (roblox-characters)
authoritative hit testserver raycast/overlap with filters and gameplay validation
cosmetic trail/recoillocal visual motion; no gameplay authority

Workflow

  1. Inspect the mechanism. In Studio, visualize assemblies, anchors, constraints, collision

groups, massless parts, and network owners. Identify the assembly root and intended authority.

  1. Define interaction policy. Write the collision-group matrix and separately decide

CanCollide, CanTouch, and CanQuery. These flags are not interchangeable.

  1. Choose simulation or query. Do not use .Touched as a universal hit detector. Use a ray for

a path/line, an overlap query for a volume, and simulation contacts when physical response is actually required.

  1. Apply motion at assembly level. Forces on a part affect its assembly. Use modern

LinearVelocity, AngularVelocity, VectorForce, AlignPosition, and AlignOrientation constraints as appropriate; migrate deprecated BodyMovers when changing that system.

  1. Set ownership deliberately. Server-own gameplay-critical loose assemblies when required;

client ownership can improve responsiveness but never authorizes gameplay results.

  1. Bound cost and lifetime. Reuse query parameters, cap query frequency/result count, remove

temporary constraints/attachments, and disconnect event listeners.

  1. Verify under load and multiplayer. Test anchored/unanchored transitions, mass extremes,

collision matrix, fast motion, multiple clients, ownership changes, streaming, and cleanup.

Pattern: filtered server raycast

lua
local Workspace = game:GetService("Workspace")

local params = RaycastParams.new()
params.FilterType = Enum.RaycastFilterType.Exclude
params.FilterDescendantsInstances = {shooterCharacter}
params.IgnoreWater = true
params.CollisionGroup = "WeaponQuery"

local direction = aimDirection.Unit * MAX_RANGE
local result = Workspace:Raycast(muzzlePosition, direction, params)
if result then
    local model = result.Instance:FindFirstAncestorOfClass("Model")
    local humanoid = model and model:FindFirstChildOfClass("Humanoid")
    if humanoid and serverCanDamage(shooter, model, result.Position) then
        humanoid:TakeDamage(serverWeaponDamage(shooter))
    end
end

The server must validate the origin/direction against server-known character/weapon state; do not accept an arbitrary client origin and treat the raycast itself as validation.

Pattern: overlap volume with explicit policy

lua
local params = OverlapParams.new()
params.FilterType = Enum.RaycastFilterType.Exclude
params.FilterDescendantsInstances = {sourceCharacter}
params.CollisionGroup = "DamageQuery"
params.MaxParts = 64

local seen: {[Model]: boolean} = {}
for _, part in Workspace:GetPartBoundsInBox(hitboxCFrame, hitboxSize, params) do
    local model = part:FindFirstAncestorOfClass("Model")
    if model and not seen[model] then
        seen[model] = true
        validateAndApplyHit(model)
    end
end

Bounds queries use bounding boxes and can include multiple parts from one target; deduplicate and perform exact/gameplay checks as needed. For exact geometry use WorldRoot:GetPartsInPart(part, overlapParams) only when its additional cost is justified. Note OverlapParams.RespectCanCollide decides whether a query honours CanCollide or CanQuery — set it deliberately, or it silently overrides the flag policy below. OverlapParams.Tolerance controls contact slop.

Assemblies, force, and ownership

  • Welded parts form one rigid assembly; force, impulse, velocity, mass, and ownership operate on

that assembly. Anchoring a part changes simulation/ownership and can make an assembly effectively infinite mass.

  • Apply an impulse for a one-time change; use a force or velocity constraint for sustained control.

Setting AssemblyLinearVelocity is an immediate state change, not a continuous force model.

  • Prefer attachments plus modern constraints over BodyPosition, BodyVelocity, BodyGyro, and

other deprecated BodyMovers when authoring or revising a mechanism.

  • Automatic ownership may move nearby unanchored assemblies to clients. Use

SetNetworkOwner(nil) conservatively for critical objects, then measure responsiveness/server cost. Visualize network owners in Studio.

  • A client owner can manipulate physical results and .Touched observations. The server validates

consequential hits, positions, timing, and permissions independently.

Common failures

SymptomLikely causeRemedy
welded mechanism will not moveone part anchoredinspect full assembly; anchor only intentional world roots
force behaves too strongly/weaklyassembly mass ignoredinspect AssemblyMass; tune force/impulse by intended acceleration
hit misses fast projectilediscrete touch sampling/tunnelingswept query — WorldRoot:Blockcast(), Spherecast(), or Shapecast() — plus physics-tuning; do not rely only on .Touched
ray hits shooter/effectsfilters/collision group absentreuse explicit params and query group
same target damaged many timesoverlap returned multiple body partsdeduplicate by target model and enforce attack ID/cooldown
exploit fires impossible touchclient owns relevant physicsserver query/context validation; deliberate ownership
invisible trigger blocks or cannot querythree flags conflatedset CanCollide, CanTouch, CanQuery independently
mechanism leaks attachmentstemporary constraint lifecycle missingown and destroy constraints, attachments, and connections together

Resources

  • Read references/queries-and-ownership.md for collision/query matrices, assembly debugging,

ownership security, migration choices, and the physics verification matrix.

Related skills

  • physics-tuning — timestep, jitter, tunneling, mass ratios, and stability methodology.
  • roblox-characters — Humanoid/custom movement and respawn lifecycle.
  • roblox-networking — authoritative validation of client-requested physical actions.
  • roblox-studio-workflow — visualization, Output, and multi-client verification.

Primary references

  • https://create.roblox.com/docs/physics/assemblies
  • https://create.roblox.com/docs/physics/network-ownership
  • https://create.roblox.com/docs/workspace/raycasting
来自同一仓库

更多 Skills

全部 Skills
gamedev-skills
社区

game-feel

Add "juice" and game feel that makes actions satisfying — screen shake, hit-stop/freeze frames, tweened/eased motion, squash & stretch, knockback, and layered audio-visual feedback — as engine-neutral techniques that pair with the detected engine's tween, particle, and camera APIs. Use when the user mentions game feel, juice, "make it feel good/punchy", screen shake, hit stop, screen freeze, easing, squash and stretch, impact frames, or feedback/polish on hits, jumps, pickups, and deaths.

安装量
5
GitHub Stars
1113
最近更新
9月10日
gamedev-skills
社区

game-ui-ux

Design and build game UI/UX — HUDs, menus, and overlays — that survive every screen: anchor- based responsive layout, resolution/aspect scaling and safe areas, keyboard/gamepad focus navigation, a screen/menu state stack, and event-driven (not polled) HUD updates. Engine- neutral patterns that pair with the detected engine's UI skill. Use when the user mentions HUD, health bar, main menu, pause menu, settings screen, UI layout, anchors, UI scaling, aspect ratio, safe area, controller/keyboard menu navigation, or wiring UI to game state.

安装量
5
GitHub Stars
1113
最近更新
9月10日
gamedev-skills
社区

godot-3d-essentials

Set up a Godot 4.7 3D scene: Node3D transforms, Camera3D, lighting (DirectionalLight3D/OmniLight3D), WorldEnvironment for sky/ambient/tonemap/post, MeshInstance3D materials, and GridMap for tile-based 3D levels. Use when building a 3D scene in a Godot project, placing cameras/lights, configuring environment and post-processing, or working with Node3D/.tscn 3D content and GridMap.

安装量
2
GitHub Stars
1103
最近更新
9月10日
gamedev-skills
社区

godot-animation

Animate in Godot 4.7 three ways: AnimationPlayer for keyframed clips (incl. call and signal tracks), AnimationTree with state machines and blend spaces for character animation, and Tween for short procedural/UI tweens via createtween(). Use when working with AnimationPlayer/AnimationTree nodes in a .tscn, blending character states, sprite-sheet animation, or code-driven Tweens.

安装量
2
GitHub Stars
1103
最近更新
9月10日