How to make games in C++ from 0 experience!

Download

Join my Discord 🎮:

Join this channel if you want to support me 😻:

WHERE TO GO NOW: 🤩🤩❗‼️❗❗‼️❗

ABSOLUTE BEGINNER: C++ tutorials:

YOU KNOW C++:

YOU ARE READY TO START YOUR FIRST GAME 😎:

Check out my Steam Game Midnight Arrow ♨️:

Music:

MDK – Jelly Castle

Evan King – Let’s Go!

How To Make A Jump Drive – Unreal Engine 5 Space Game Devlog #28

Download

This week we have our second attempt at a level load sequence and jump drive in the game. It’s pretty cool laying the foundation for how the game exploration will work.

Join our discord

Watch the rest of the Devlogs here!

Game Collaborators:
Checkout Mr. Meteor
Checkout Uraih’s YouTube
Checkout John Logostini
Checkout Panzerv1
Checkout Ailantd
Checkout Milkmans ArtStation
Checkout Booper
Checkout Uraih’s YouTube
Scralar on Discord
Checkout Jonas Hagenvald

Timestamps:
00:00 – Jump Drive System
02:30 – How Its Built In Blueprint
07:51 – New Reverse Ship Engines
08:51 – What’s Next

#unrealengine #unrealengine5 #unreal

How to make your FIRST Roblox Game in 2024 (Make Robux)

Download

Do YOU want to make a Roblox Game? Well you’re in the perfect place, because in this video, I’ll be showing you EVERYTHING you need to know about Making your FIRST Roblox Game in 2024! We’ll go over everything from building, to scripting, to actually making Robux!
👇(Expand Description for Scripts!)

By the end of this video, you should have a completely functioning game where you can make Robux and play with your friends!
Make sure to subscribe if this video helps you, and enjoy!

✨Discord Server:
😍Patreon:
👕MERCH:

📋 Scripts -[
1️⃣ Checkpoint Script:
script.Parent.Touched:Connect(function(hit)
if game.Players:FindFirstChild(hit.Parent.Name) then
local plr = game.Players:FindFirstChild(hit.Parent.Name)
if plr:FindFirstChild(“leaderstats”) and plr.leaderstats:FindFirstChild(“Stage”) then
plr.leaderstats.Stage.Value = script.Parent.Stage.Value

end
end
end)

2️⃣ Leaderstats Script:
game.Players.PlayerAdded:Connect(function(plr)
local l = Instance.new(“Folder”,plr)
l.Name = “leaderstats”

local s = Instance.new(“IntValue”,l)
s.Name = “Stage”
s.Value = 1
end)

3️⃣ Respawn Script:
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local stage = plr.leaderstats.Stage.Value
for i,v in pairs(workspace:WaitForChild(“Spawns”):GetChildren()) do
if v.Stage.Value == stage then
task.wait(.5)
local hrp = char:WaitForChild(“HumanoidRootPart”)
char:SetPrimaryPartCFrame(CFrame.new(v.Position + Vector3.new(0,3,0)))
end
end
end)
end)

4️⃣ Dev Product Script Local:
local mps = game:GetService(“MarketplaceService”)
local devProductId = 00000000 –your id here
script.Parent.MouseButton1Up:Connect(function()
mps:PromptProductPurchase(game.Players.LocalPlayer,devProductId)
end)

5️⃣ Developer Product Server Script:
local mps = game:GetService(“MarketplaceService”)

local id = 1711128944

mps.PromptProductPurchaseFinished:Connect(function(userId,Product,isPurchased)
local plr = game.Players:GetPlayerByUserId(userId)
if isPurchased then
if Product == id then
for i,v in pairs(workspace.Spawns:GetChildren()) do
if v.Stage.Value == plr.leaderstats.Stage.Value + 1 then
plr.leaderstats.Stage.Value += 1
if plr.Character then
plr.Character:SetPrimaryPartCFrame(CFrame.new(v.Position + Vector3.new(0,3,0)))
end

return Enum.ProductPurchaseDecision.PurchaseGranted
end
end
end
end
end)

END OF SCRIPTS]-

💬Comment ideas for future videos below! VVV

Roblox username: fiveironfan2006

My group:

How to Make a Roblox Game (2024)

Chapters: [
0:00 – Downloading Roblox Studio
0:50 – Learning Roblox Studio Basics
6:14 – Building your Game
20:05 – Earning Robux
28:16 – Publishing your Game
]

#roblox #coding #lua

Geometry Dash – “How to make a Scratch Game”

Download

Learn how to “Make a Scratch Game” by following this step-by-step tutorial recreating RobTop’s Geometry Dash in Scratch. #painteditor #music #jumping #scrolling #clones #collisions #gameover

This tutorial is designed to be simple enough coding for beginners, but if you know Scratch, you’ll also know that the “sky’s the limit” for how far you can take this!

Scratch On guys!

🚀 *Boost Your Creativity with Griffpatch*
The Griffpatch Academy will take you from “Gamer to Game Creator”
Learn more at 👉 👈

😺 Scratch was developed by the Lifelong Kindergarten Group at the MIT Media Lab. See

🐱 Scratch Studio –
👀 Playlist for this series –
👀 Episode #2 –

————–Video Chapters————–
0:00 Intro
0:50 Drawing The Player’s Character
2:27 Add Some Music
4:48 Code Jumping
5:56 Drawing The Level
8:58 Scrolling Level
10:00 How to move a Scratch Sprite off-screen
12:03 Clones make Scrolling Easy
14:42 Spikes to Jump Over
15:33 Spike collisions
17:28 A Smooth Ending / Deceleration
19:59 Collison Sound “Bonk”
20:31 Much Bigger Levels with costume switching
21:45 Next Time

How To Make Car Racing Game from Cardboard | วิธีทำเกมแข่งรถจากลังกระดาษ

Download

How To Make An RPG For FREE – Unity Tutorial #001 – LEARNING THE BASICS

Download

Do you want to know how to make a game in Unity? Want to create an RPG game like Zelda, Skyrim or Final Fantasy? Well now you can in these Unity Tutorials. Welcome to the RPG unity tutorial series for beginners where we will be building our very own RPG. We’ll take elements from many different RPG games out there, as well as create a few of our own ideas.
If you are NEW to Unity, this is for you, if you want to learn how to use Unity, this is also for you.
✦ Subscribe:
✦ Patreon:
✦ FREE Assets:
✦ Facebook:
✦ Twitter:

———————————–

✦ Start your game development career today and learn how to make a game through the power of Unity. Every Unity Tutorial at JV Unity costs NOTHING from you, and any support received through YouTube, Patreon or Facebook is greatly appreciated.

———————————–

Whether you want to make a game like Skyrim, Mario, Minecraft or pretty much anything, we work with Unity 3D to do the basics of a game. We show you how to make a game using the software provided and writing our own code scripts in Java or C#. We use Terrain to build our land and levels. ultimately, your game can be published on several platforms including xbox, xbox one, ps3 and ps4. We also show you how to make games for Android and iOS. Our Tutorials are easy for beginners to pick up and learn. Some assets are from blender or 3d studio Max too. Enjoy the Beginners Guide to Game Making in Unity.
—————–
Who Is Jimmy Vegas?
—————–
Jimmy Vegas is one of the top YouTube tutorial developers. In depth Unity Tutorials teaching you how to make a game in unity 3d! My unity tutorials include development, programming in C#, coding logic and more. For beginners, it’s easy how to learn unity with tips and tricks you can make a game for FREE. I provide FREE assets for you to use and learn.

Start your game development career today, for free. #JIMMYVEGAS #UnityRPG #UnityTutorial