Roblox Makers: Build & Script Your World
Roblox course · Ages 10–13
Roblox Makers: Build & Script Your World
Build every block from primitives. Write every script in Lua. Same 10-stage obby as Launch Your Own Obby Game — but you wrote every line of it.
You built the rocks. You wrote the TweenService.What you ship
A complete obby where every brick and every line is yours
Launch Your Own Obby Game taught the shape of an obby by dragging in Toolbox assets. Roblox Makers teaches it by building every part from primitive properties and writing every behavior in Lua. By Stage 10 you have written a Touched handler, a function with parameters, a while loop, an if branch, a TweenService animation, a Heartbeat-driven spin, a numeric for loop, and a real state machine.
A 10-stage Roblox obby — same shape as the Toolbox-based course, every part built by hand
Every hazard scripted from scratch — no Toolbox imports for parts or mechanics
Studio + Script editor + Output muscle memory — the round trip every Roblox dev uses
Gameplay moments
These are scripted obstacles, not asset placements
Each moment below is something you build from primitives and animate with a script you wrote. Same finished look as the Toolbox-based obby — but every line of behavior lives in a Lua file you can read.

TweenService rolling rocks
Boulders you build from a sphere and animate with TweenInfo + TweenService:Create — the smooth-motion service that replaces the brute-force while loop.

Heartbeat-driven spinner
A sweep arm rotating on RunService.Heartbeat with CFrame.Angles — the 60-frames-per-second loop that powers every smooth Roblox animation.

Your first checkpoint pair
A SpawnLocation and a Team wired by hand. By Stage 4 the color-matching pattern is in your fingers; by Stage 10 you have wired ten of them.

Puzzle room state machine
The Stage 10 capstone: a ClickDetector + table + Sound state machine you write from scratch. Launch Your Own Obby Game imports this; here you build it.
Course path
Each stage adds one modeling skill and one scripting skill
Same obby mechanics as Launch Your Own Obby Game, ramped for ages 10–13. The build is harder because you make the parts yourself; the scripting is the actual lesson.
Ascending Walls
Build three parts and wire a SpawnLocation-Team checkpoint pair from scratch.
First script — a moving blockStage 2Sphere Staircase
Insert Sphere parts, group-select, and tune spacing for difficulty.
Touched event → print to OutputStage 3Plank Walkway
Thin planks plus a wider rest stop. Tune CanCollide.
Loop that toggles CanCollide every few secondsStage 4KillBrick Path
A wide path with three cube hazards. Color as signal.
Write the KillBrick script — Touched → Humanoid.Health = 0Stage 5Fireball Cannon
A two-part cannon you model from primitives.
Full fireball spawner — function, BodyVelocity, DebrisStage 6Hidden Hazard Field
A wide field plus flat hazard tiles. Transparency as a fairness dial.
If branch — hazard reveals itself the first time it kills youStage 7Rolling Rocks
Wedge ramp plus a cover block. Rotation via Orientation.
TweenService — smooth motion as a serviceStage 8Spinning KillBricks
Narrow path plus a sweep-arm bar.
RunService.Heartbeat + CFrame.AnglesStage 9Kinetic KillWall
A full hallway — floor, walls, doorways. Parameterized geometry.
Numeric for loop sliding the wall end to endStage 10Puzzle Room
A 3-walled room, three buttons, a PuzzleWall, a celebration room.
A real state machine — table, ClickDetector, Sound, DestroyFor coaches and parents
Don't paste — type.
The whole pedagogy depends on the learner typing each script themselves, pressing Play, and reading the Output. Copy-paste kills the learning. If a camper is stuck, walk them through *their* Output window — not yours.