Skip to content
Roblox Suite

16 skills, one install

Browse Roblox guidance backed by 59 citations from Roblox's own documentation, plus 5 from Rojo's. Every one carries the date it was checked, 2026-06-17 through 2026-07-20.

npx skills add nonlooped/roblox-suite
Star on GitHub

Three steps, then forget it exists

There is no config file, no prompt to maintain, and nothing to set up per project.

You run one command

Drops all 16 skills into your agent. Takes a few seconds.

npx skills add nonlooped/roblox-suite

It picks what it needs

Ask for a save system and it loads the datastore skill, not all 16.

"make saving not lose progress"
  • roblox-datastoresloaded
  • roblox-networking
  • roblox-physics
  • roblox-animation

You get current API guidance

A current animation pattern, with the Roblox documentation that supports the migration. Read the source.

-- Humanoid:LoadAnimation is deprecated. Use Animator:LoadAnimation.
local animator = humanoid:FindFirstChildOfClass("Animator")
local track = animator:LoadAnimation(anim)
track:Play()