Episode 9 – Jake & Daniel Start a YouTube Channel & The Mobile Game Development Journey
🎬 Creating the YouTube Channel
Jake and Daniel decided to expand their brand by starting a YouTube channel dedicated to game development, Roblox updates, and behind-the-scenes content.
📌 Channel Details:
Channel Name: DevDuo Studios
Profile Picture: A logo with a blue and red gaming controller, symbolizing Jake & Daniel.
Banner: A futuristic city with the text "Game Development & Roblox Updates!"
Description:
"Welcome to DevDuo Studios! We create epic games on Roblox & beyond. Follow us for game dev tips, updates, and fun content!"
Email: devduostudios@gmail.com
Phone Number: +1 555-908-3210 (Fake)
📹 First Video:
🎥 Title: "How We Made City Story on Roblox!"
📝 Description: "Jake & Daniel break down the journey of creating City Story, from coding to updates. Stay tuned for more dev tips!"
🔗 Tags: #Roblox #GameDev #CityStory
📱 Jake Checks His Game Earnings
Jake grabs his phone, opens the Roblox Developer Console, and checks his Robux earnings from City Story.
📊 Game Stats:
Total Visits: 350,000+
Active Players: 8,200+
Robux Earned: 175,000 Robux (~$600 USD)
Top Spenders: Players buying VIP access & exclusive items
Most Popular Feature: The Presidency Update
Jake was shocked at the huge success. He smiled, realizing his hard work was paying off.
📱 Starting Mobile Game Development
Jake, feeling inspired, decided to create a mobile game using his phone. He opened the Game Creator Mode on an app like Unity or Godot and started working.
📌 Game Concept:
💡 Game Name: Cyber Run 2077
🏃 Genre: Endless Runner
🌆 Setting: A futuristic cyberpunk city
🎮 Gameplay:
Players run across neon-lit streets, dodging obstacles.
Can collect upgrades like jetpacks, speed boosts, and time-freeze powers.
Enemies like cyborg police and hackers try to stop the player.
📜 Mobile Game Development Process
🖌️ Step 1: Designing the Characters & World
Jake used Pixel Art Creator to design a cyber ninja character with a glowing blue suit. He also created a city background with hover cars and neon billboards.
💻 Step 2: Coding the Endless Runner Mechanics
Jake wrote a simple script for the character movement in C# (Unity Engine):
using UnityEngine; public class PlayerMovement : MonoBehaviour { public float speed = 10f; public float jumpForce = 15f; private Rigidbody2D rb; void Start() { rb = GetComponent(); } void Update() { transform.Translate(Vector2.right speed Time.deltaTime); if (Input.GetKeyDown(KeyCode.Space)) { rb.velocity = new Vector2(rb.velocity.x, jumpForce); } } }📌 What This Code Does:
✔ Moves the character forward automatically
✔ Allows the player to jump when pressing Space
🛑 Step 3: Adding Obstacles & Enemies
Jake coded a spawning system that randomly generates obstacles and enemies.
using UnityEngine; public class ObstacleSpawner : MonoBehaviour { public GameObject[] obstacles; public float spawnRate = 2f; void Start() { InvokeRepeating("SpawnObstacle", 1f, spawnRate); } void SpawnObstacle() { int index = Random.Range(0, obstacles.Length); Instantiate(obstacles[index], transform.position, Quaternion.identity); } }✔ Randomly spawns obstacles every 2 seconds.
✔ Keeps the game challenging and fun.
🎵 Step 4: Adding Music & Sound Effects
Jake downloaded sci-fi beats and electronic jump sounds to match the cyberpunk theme.
⏳ Development Timeline:
📅 Day 1-3: Planning & Character Design
📅 Day 4-7: Coding Movement & Game Physics
📅 Day 8-12: Adding Enemies, Obstacles & Power-ups
📅 Day 13-16: Sound Effects & UI Design
📅 Day 17-20: Debugging & Playtesting
📅 Day 21: Publishing the Game! 🚀
📝 Final Step: Publishing & Testing the Game
Jake uploaded Cyber Run 2077 to the Google Play Store & Apple App Store.
📢 Game Description:
"Run, dodge, and survive in a cyberpunk city filled with danger! Can you escape the cyborg police and hackers? Play now!"
He downloaded the game and tested it. Everything was smooth, and he was proud of his first mobile game!
📢 What’s Next?
Jake plans to update Cyber Run 2077 and continue making games on Roblox and mobile! But will he balance both worlds?
📌 Stay tuned for Episode 10 – The First Cyber Run Update! 🚀
***Download NovelToon to enjoy a better reading experience!***
Updated 9 Episodes
Comments