On-screen text
Reply to James_H's comment
Can you please create
GTA6 ?
Manus
Give me a prompt for creating GTA 6 in MVP terms
Cloud computers New
Create slides
Build website
Develop desktop apps
Design
Download Manus for Windows or macOS
Read official pages about GTA 6 to identify broad, non-proprietary inspiration points for the game.
Save concise source findings for the GTA MVP prompt drafting step.
Manus
Below is a copy-paste-ready prompt you can use.
MVP Prompt for a GTA 6-Inspired Game
Act as a senior game designer and technical producer. Help me design a minimum viable product (MVP) for an original open-world crime sandbox game inspired by modern urban action-adventure titles like GTA 6, but do not copy Rockstar's story, map, brands, missions, dialogue, or intellectual property. GTA 6 is publicly described as being set around Vice City and the story with a crime-focused story involving protagonists Jason and Lucia, so use that only as a broad inspiration for tone, scale, and genre expectations. 1 2
Design an MVP called "Neon Streets: First Run." The goal is to create a small but polished version of an open-world crime game that can be built by a small indie team in 8-12 weeks. The product will prove the core gameplay loop: explore a compact city district, accept missions, drive vehicles, shoot, earn money, and upgrade simple player abilities or equipment.
Scope the MVP around one playable character, one dense urban district, three vehicles, two weapon types, and a simple wanted-level police system. The game should include walking, sprinting, driving, and exiting vehicles, basic driving physics, traffic NPCs, pedestrian NPCs, a minimap, mission system, simple combat, money rewards, and a saved system. The city should feel alive through its systems such as traffic routes, ambient pedestrians, shops that can be entered only as menus, police, and reactive NPC behavior.
Create a full MVP design document with the following sections: game vision, target players, core gameplay loop, player control, city layout, mission structure, vehicle system, police/wanted system, NPC behavior economy, progression, UI, audio direction, technical architecture, art style, design milestones, risks, and acceptance criteria. Then keep the plan realistic for a small team and clearly state anything that belongs in a post-MVP roadmap.
Avoid large-scale features such as online multiplayer, a huge map, close-quarters vice destruction, realistic social media systems, complex interiors, cinematic travel, or anything that belongs in a post-MVP roadmap.
Write and deliver the MVP prompt to the user
Create GTA 6 using this prompt
+ Cloud computers New
References
[1] Rockstar Games - Grand Theft Auto VI Trailer 1
[2] Rockstar Games - Grand Theft Auto VI Trailer 2
Task completed
Suggested follow-ups
Generate the full MVP design document for "Neon Streets: First Run" based on the MVP prompt.
Compare Unreal Engine 5 and Unity for this MVP, recommending the better engine.
Create a 12-week production schedule, small-team role breakdown, and acceptance criteria.
Write and deliver the MVP prompt to the user
Manus's Computer
Manus is using Editor
Creating File neon_streets_mvp/client/lib/game_engine.ts
game-engine.ts
NEON STREETS: FIRST RUN - Game Engine
Design: Cyberpunk Minimalism
A top-down open world crime sandbox game
All original content, no Rockstar IP used.
export type Vec2 = { x: number; y: number };
export const RECT = { x: number; y: number; w: number; h: number };
export const TILE = 48;
export const WORLD_W = 64; // world tile size in pixels
export const WORLD_H = 48;
export const MAP_W = WORLD_W * TILE;
export const MAP_H = WORLD_H * TILE;
// Tile constants
export type TileType = "ground" | "wall" | "building block";
export const TILES: Record<TileType, { color: string; walkable: boolean }>
= {
ground: { color: "#333", walkable: true },
wall: { color: "#555", walkable: false },
building block: { color: "#777", walkable: false },
};
// Colors
const ROAD = "#444";
const SIDEWALK = "#888";
const BUILDING = "#666";
const WATER = "#0077cc";
const PARK = "#339933";
const MISC = "#999";
// Example usage
export const exampleTile = TILES.ground;
// Game loop
function gameLoop() {
// Update game state
// Render game
}
// Start the game
gameLoop();
Manus
Manus
Manus