I Made A Roblox Game in 10 Minutes..

I Made A Roblox Game in 10 Minutes..

TheDevKing

3 года назад

1,894,981 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

yourbrowserhistory
yourbrowserhistory - 11.09.2023 18:38

Its sped up right? The game made in 7 minutes

Ответить
MrY7zz
MrY7zz - 10.09.2023 12:01

Local Figure = game:GetService(“Players”).LocalPlayer.Character
Local Part = Instance.new(“Part”)
Part.Size = vector3.new(1, 10, 1)
Part.Parent = Figure
Part.Position = Figure:WaitForChild(“HumanoidRootPart”).Position

Ответить
ok
ok - 05.09.2023 02:11

Tap water?

Ответить
Kezia Haynes
Kezia Haynes - 04.09.2023 04:01

Me when I see people script:oh so easy .when I try it:👁️👄👁️

Ответить
sarkis maatouk
sarkis maatouk - 29.08.2023 19:34

Bro sounds like tapwater

Ответить
Kiki&Miki OFFICIAL
Kiki&Miki OFFICIAL - 27.08.2023 20:36

Y’all I’ve tried to make a game on Roblox so many times but I find it so hard! I have adhd and i can’t find any short tutorials. Anyone have any tips that’ll help me?

Ответить
good video l updated name
good video l updated name - 17.08.2023 04:30

Pls make a game in 60 minutes

Ответить
SupremeGamer1
SupremeGamer1 - 17.08.2023 00:39

BRO I DONT HERE THE DIFRENT ABOUT TAP WATER/TAP OR THIS DUDE

Ответить
TBC_DOG
TBC_DOG - 29.07.2023 15:29

Bro sounds like tap water

Ответить
Raisedpython
Raisedpython - 29.07.2023 07:29

Is it just me or is this tap water

Ответить
Akcildrh
Akcildrh - 27.07.2023 06:50

i spent more then 10 minutes trying to figure out wtf a parameter is (i still don't know)

Ответить
ImanPlayzAndTravels
ImanPlayzAndTravels - 05.07.2023 21:49

Few years laters zombie attack was made

Ответить
Jonota Jian
Jonota Jian - 03.07.2023 17:32

All ive learned from scripting :
Parent.hitfirstchild

Ответить
Hinghee
Hinghee - 01.07.2023 16:10

hey yay i used your codes and it worked!!!!

Ответить
X4X5_Games
X4X5_Games - 13.06.2023 05:49

I know it’s been 2 years but can somebody bring me a link to this?

Ответить
Doom2768
Doom2768 - 11.06.2023 05:33

11 views per hour, nice

Ответить
patrick6969
patrick6969 - 05.06.2023 18:29

exu

Ответить
Super Nova
Super Nova - 25.05.2023 18:57

I had an ad with an app called Siemens. 💀💀💀

Ответить
Aurbigine man🍆
Aurbigine man🍆 - 20.05.2023 02:52

In the 15 min timer I saw that's what my teacher uses when we have an activity

Ответить
Ahmad Dhiak Abdul Hashim
Ahmad Dhiak Abdul Hashim - 19.05.2023 07:20

are tapwater?

Ответить
Mrs.Scull90
Mrs.Scull90 - 03.05.2023 08:24

hhat

Ответить
titamcameraman🗞️
titamcameraman🗞️ - 29.04.2023 20:07

These king is a tappy but dose studio

Ответить
ammonia coolguy
ammonia coolguy - 29.04.2023 17:24

hi

Ответить
Attikasu
Attikasu - 29.04.2023 05:47

Watching him mis spell velocity to velcoity is painful.

Ответить
kraliycs
kraliycs - 29.04.2023 00:52

I made a game please play it will be called blood and carnage !

Ответить
M Deakin
M Deakin - 24.04.2023 22:18

Why there a use cod tap in zombie script😅😅😅

Ответить
Robox noob
Robox noob - 21.04.2023 02:39

i made a game like this too and it like took me 5 mins it was easy its probably harder now to make

Ответить
Max Nydahl
Max Nydahl - 16.04.2023 15:03

u sound like tapwater

Ответить
popcorn
popcorn - 15.04.2023 03:42

imma do 5

Ответить
kagan bowman
kagan bowman - 14.04.2023 03:50

dev ur pro

Ответить
clappedbypiizar
clappedbypiizar - 11.04.2023 14:59

You sound like tapwater

Ответить
daballoonguy
daballoonguy - 10.04.2023 21:26

That will take me like 5 days 😭😂

Ответить
Boy Nga-nga mix vlog
Boy Nga-nga mix vlog - 08.04.2023 17:26

Bro u sound like tapwater

Ответить
Oatmeal Cereal
Oatmeal Cereal - 06.04.2023 17:32

this is all I learned: ``` local humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid local speed = 16 -- The walking speed you want to set humanoid.WalkSpeed = speed -- Set the walking speed -- This function is called when a key is pressed down local function onKeyDown(input, gameProcessedEvent) if not gameProcessedEvent then if input.KeyCode == Enum.KeyCode.W then humanoid.MoveDirection = Vector3.new(0, 0, 1) elseif input.KeyCode == Enum.KeyCode.S then humanoid.MoveDirection = Vector3.new(0, 0, 1) elseif input.KeyCode == Enum.KeyCode.A then humanoid.MoveDirection = Vector3.new(-1, 0, 0) elseif input.KeyCode == Enum.KeyCode.D then humanoid.MoveDirection = Vector3.new(1, 0, 0) end end end - This function is called when a key is released local function onKeyUp(input, gameProcessedEvent) if not gameProcessedEvent then if input.KeyCode == Enum.KeyCode.W then humanoid.MoveDirection = Vector3.new(0, 0, 0) elseif input.KeyCode == Enum.KeyCode.S then humanoid.MoveDirection = Vector3.new(0, 0, 0) elseif input.KeyCode == Enum.KeyCode.A then humanoid.MoveDirection = Vector3.new(0, 0, 0) elseif input.KeyCode == Enum.KeyCode.D then humanoid.MoveDirection = Vector3.new(0, 0, 0) end end end -- Connect the functions to the input events game:GetService("UserInputService").InputBegan:Connect(onKeyDown) game:GetService("UserInputService").InputEnded:Connect(onKeyUp)

Ответить
Homehairbraiding and dreadlocks by Rose
Homehairbraiding and dreadlocks by Rose - 31.03.2023 04:05

HI!

Ответить
Silxnt
Silxnt - 30.03.2023 00:49

Dev king this is very nice scripting work, but I feel like I can make this game in 30 seconds with free models

Ответить
GTA 6will never come out
GTA 6will never come out - 28.03.2023 00:36

Tbh I stole the script bc I got bored scripting all night so thanks😊

Ответить
silentman27yt
silentman27yt - 23.03.2023 01:13

ALSO YOU NEED TO PUBLISH THIS

Ответить
silentman27yt
silentman27yt - 23.03.2023 01:13

I KNOW HOW TO SCRIPT





























the only parts i know is,

print()

wait()

and stuff you can change in the properties menu
such as transparency...thats it






























depressing

Ответить
NoahGamez64
NoahGamez64 - 19.03.2023 18:14

a new challenger has approached…

Ответить
Report Cult News
Report Cult News - 19.03.2023 00:21

i like how he explains everything during the challenge

Ответить
Chickboiiiiiii
Chickboiiiiiii - 18.03.2023 19:47

bro i was going to say this guy sounds like tap and it is XD

Ответить
Jelena Glisic
Jelena Glisic - 16.03.2023 23:17

i challenge you to make a roblox game in 5 minutes

Ответить
The Rad Bros
The Rad Bros - 12.03.2023 06:01

he made the Velocity Velcoity xD

Ответить
Just Complexify
Just Complexify - 05.03.2023 02:03

I DID NOT KNOW THAT WAS TAP

Ответить