Don't Fall!
Obby Obstacle Course
Build a fun obstacle course in Roblox Studio with moving platforms, a lava floor, jump pads and a finish checkpoint then publish it so your friends can play!
Build a fun obstacle course in Roblox Studio with moving platforms, a lava floor, jump pads and a finish checkpoint then publish it so your friends can play!
Get Roblox Studio open with a blank world ready to build in.
Create a starting platform where players appear when the game begins.
20, 1, 20 to make a flat wide platform.0, 0, 0. This is your starting floor.Build 6 stepping-stone platforms leading away from the start. Leave gaps between them!
6, 1, 6 and move it about 8 studs away from your start platform. Leave a gap!Add a lava floor below the platforms touching it kills the player and sends them back to spawn.
200, 1, 200 a massive flat slab.-10 so it sits below all your platforms.Create 2 platforms that slide side-to-side on their own using TweenService.
8, 1, 8. Place it somewhere in the middle of your obby path. Colour it Bright yellow.20 is how far it moves sideways. The 2 is how many seconds it takes. Change these numbers to make it faster, slower, or move further!Vector3.new(20, 0, 0) to Vector3.new(0, 0, 20) so it moves forward/back instead.tween:Play() stops the animation.Create a launch pad that blasts players upward when they touch it.
6, 1, 6. Set Material to Neon and BrickColor to Cyan.80 is the launch power. Try 50 for a gentle bounce or 150 to fly really high!Vector3.new(0, 80, 0), which axis controls the upward launch?Add a glowing finish platform that shows a victory message when players reach it.
12, 1, 12. BrickColor: Bright green. Material: Neon.Complete a full playthrough, save your game and publish it so others can play!