Collect-and-score is a strong first loop because every step is visible: find an item, collect it, see the score, reach the target and reset.

These prompts and test stages are original Build Creator editorial guidance, not a Roblox requirement or a guarantee of a particular generated result. Stop expanding the first version until its core loop and restart pass the checklist.

Why this format is Build-friendly

Creator Hub explicitly names collect-and-score games. The format has clear events and small dependencies, so incorrect behavior can be reproduced. The first map should be compact enough that a tester sees several items and the goal without getting lost.

Keep one item type, one point value and one target. Add rewards only after the score reaches the target reliably. The game-types overview explains why a vertical slice is more useful than a broad genre prompt.

Prompt 1: items and score

Prompt 1 · Collection loop

Create an original garden collect-and-score game in one small readable area. Place 12 glowing seed items with enough space between them. When the player touches a seed, remove it immediately and add exactly 1 to a visible Seeds counter. Add a start state and a reset that restores all 12 seeds and sets the counter to zero. Do not add rewards or multiple item types.

Collect items from different angles and pass through the same location again. Each seed must count once and remain gone until reset.

Prompt 2: a clear goal and reward

Prompt 2 · Goal and completion

Preserve item placement, collection and reset behavior. Set the round goal to 10 seeds. Show progress as 0/10 through 10/10. At 10, stop additional scoring, show Garden complete, open a visible exit gate and award one completion badge inside the game. Keep the two extra seeds decorative after completion and do not create a second currency.

Test reaching nine, ten and all twelve items. Completion should trigger once at ten and not duplicate when touching remaining items.

Prompt 3: feedback and progression

Prompt 3 · Readability and next goal

Keep all working rules. Add a brief collection sparkle, a directional hint only after 15 seconds without a collection, and a Next round button after completion that restores the map with a goal of 12. Make the current goal obvious and do not add shops, timers or another collectible.

Hints should help without revealing every item. The second round changes only the target, which makes progression easy to verify.

Placement and feedback checks

Items should not spawn inside walls, outside the reachable area or on top of each other. The score must update in the same action that removes the item. If the visual disappears but the number does not change, or the number changes twice, report that exact mismatch through the bad-generation guide.

Playtest checklist
  • All 12 items are reachable from the start
  • Every item scores once and disappears immediately
  • The progress display matches the real count
  • Completion triggers once at the target
  • Reset restores items, score, gate and round state
  • The second-round target is visibly different

Common failures and controlled extensions

  • Unreachable items: reduce the map and request visible spacing.
  • Duplicate scoring: tie removal and score to one collection event.
  • Goal triggers early: state the exact threshold and test the value before it.
  • Reset leaves old state: list every object and value that reset must restore.
  • Reward replaces the loop: remove the shop or currency until collection works again.

A safe next extension is a small second area with the same rules or a timed version of the stable round. Avoid introducing inventory, trading and several item rarities together. Compare the simpler numerical progression in the clicker recipe, and use better prompts to keep each extension bounded.

Plan item placement as part of the loop

Draw a simple route through the map and mark where the player first sees an item, learns the collection feedback and notices the goal. Keep required items away from ambiguous edges and make optional items visibly optional. A good layout alternates discovery and confirmation rather than hiding the last item in an unrelated corner.

For a second round, change one dimension: target count, map path or time pressure. Preserve the collection event and score contract. If a new area introduces unreachable items or duplicate counting, remove that area, repair the base rule and retest the original map before expanding again.