How To Make Your First Roblox Games - 5 Minute CRASH Course!

How To Make Your First Roblox Games - 5 Minute CRASH Course!

Roblox Eclipse

4 года назад

99 Просмотров

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


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

@SniperSam
@SniperSam - 16.03.2025 00:16

2023 but it says 6 years ago??

Ответить
@SkovyDovy
@SkovyDovy - 09.02.2025 20:26

4 years ago

Ответить
@maverickgunter-x7p
@maverickgunter-x7p - 09.02.2025 03:52

bro how do we get to the app to do this

Ответить
@kickmasteryt
@kickmasteryt - 18.01.2025 14:47

anyone in 2025?😂

Ответить
@roblox.tutorial_man
@roblox.tutorial_man - 17.01.2025 04:53

3

Ответить
@mayronmontoya
@mayronmontoya - 05.01.2025 20:07

POV: you clicked on this video, hoping it to work. but it didn't work...

didn't work edit: checks the code for issues bro i checked everything but it still no work :(((((:(

Ответить
@Victor_the_pro
@Victor_the_pro - 30.12.2024 19:26

Cuz of these tutorials I've learned how to script. Thank you.

Ответить
@randomvr737
@randomvr737 - 21.12.2024 15:00

can some 1 help pls
ServerScriptService.MainScript:54: attempt to index nil with 'FindFirstChild' - Server - MainScript
what is dist

Ответить
@bmike7310
@bmike7310 - 15.12.2024 22:16

Bro slow down this is way to fast Idk what goin on I just wanted to script for some robux

Ответить
@ZhegamerPlayzRoblox
@ZhegamerPlayzRoblox - 04.12.2024 12:39

Me: Looks away for 1 second

Alvin: And that's how you measure the size of the sun

Ответить
@GlazzVex
@GlazzVex - 01.12.2024 00:24

imagine if ninja got a looow taper fade !!!!!

Ответить
@Demon_Dino4
@Demon_Dino4 - 15.10.2024 13:11

why does everyone say this guy is too fast, he's actually got a good pace

Ответить
@SuleimanSiddique
@SuleimanSiddique - 31.08.2024 08:39

how to spawn in the lobby and after sometime make us spawn at the arena?

Ответить
@untitled_stocks
@untitled_stocks - 07.08.2024 08:29

this guys a legend in roblox

Ответить
@EGGFRI3DRËUS
@EGGFRI3DRËUS - 31.07.2024 19:43

The stats script when i play it it says value is not a valid member of IntValue “bucks” what do i do ??

Ответить
@loxioznik
@loxioznik - 29.07.2024 16:32

2023 tutorial!!!
5 years ago

Ответить
@melissamckernan1299
@melissamckernan1299 - 10.07.2024 12:12

the leaderstats didn't work

Ответить
@CATDOG-Mike
@CATDOG-Mike - 04.07.2024 05:14

it says players is not a valid member of data model in the coding so pls help me fix this?

Ответить
@mhiagarcia9685
@mhiagarcia9685 - 06.06.2024 04:36

Alvin how to get sword

Ответить
@119Chika
@119Chika - 25.05.2024 13:47

how u select all the spawns

Ответить
@moseskimutai4474
@moseskimutai4474 - 08.04.2024 16:14

My name is Alvin😂

Ответить
@alapieronkiewicz7715
@alapieronkiewicz7715 - 31.03.2024 20:22

How do I take the sword tho

Ответить
@DogyBurga
@DogyBurga - 05.03.2024 21:40

"2023"

Ответить
@Adrianoxd-h5g
@Adrianoxd-h5g - 26.02.2024 08:35

men is the voice of tps

Ответить
@Fredshredstikbots
@Fredshredstikbots - 25.02.2024 23:24

NICE! I will try to build this in Roblox studio!

Ответить
@McSquidOfficial
@McSquidOfficial - 25.02.2024 22:09

HOW DO YOU SELECT ALL THE SPAWN POINTS IDK HOW

Ответить
@jameswillard-l6d
@jameswillard-l6d - 04.02.2024 09:30

yoo

Ответить
@WrGamingYTBEST1
@WrGamingYTBEST1 - 12.01.2024 23:28

If i could make a roblox game all my ideas are wild and amazing and prob will get 100k players




The thing is though i cant get studio 😂😂😂💀💀💀

Ответить
@metnoofficial
@metnoofficial - 12.01.2024 13:55

It says 2023 but this was made in 2018

Ответить
@AutonomousGatorade
@AutonomousGatorade - 05.01.2024 12:38

How is this a 2023 Guide if it was posted 5 years ago. . .

Ответить
@williamlyons1624
@williamlyons1624 - 01.01.2024 18:06

Btw this is fake

Ответить
@jumpstart_productions
@jumpstart_productions - 24.12.2023 11:58

To save your stats when you leave the game and to keep the amount f money you have every time you leave, inside your leader stats create a script and copy in this code,

local Players = game:GetService("Players")
local DataStoreService = game:GetService("DataStoreService")
local Saver = DataStoreService:GetDataStore("SaveLeaderstats")

Players.PlayerAdded:Connect(function(player)
local Data = nil
local success, errormessage = pcall(function()
Data = Saver:GetAsync(tostring(player.UserId))
end)

if success then
if Data then
for i, v in pairs(Data) do
if not player:FindFirstChild(i) then
player:WaitForChild("leaderstats"):WaitForChild(i).Value = v
else
player:FindFirstChild(i).Value = v
end
end
end
else
error(errormessage)
end
end)

local function Save(player)
local SavedData = {}
for _, v in pairs(player.leaderstats:GetChildren()) do
SavedData[v.Name] = v.Value
end

local success, errormessage = pcall(function()
Saver:SetAsync(tostring(player.UserId), SavedData)
end)
if not success then
error(errormessage)
end
end

Players.PlayerRemoving:Connect(Save)

game:BindToClose(function()
for _, v in pairs(Players:GetPlayers()) do
Save(v)
end
end)

Ответить
@Spik2013
@Spik2013 - 22.12.2023 02:21

How come it says 2023 but it was FIVE years ago

Ответить
@Fuzzycraft.f
@Fuzzycraft.f - 02.12.2023 17:59

Wth its 2023 was not 4 years ago

Ответить
@DescplineGamer1
@DescplineGamer1 - 30.11.2023 18:04

2023?

Ответить
@Geographyking9
@Geographyking9 - 25.11.2023 17:22

This was perfect

Ответить
@gahle-22
@gahle-22 - 24.11.2023 18:00

thanks

Ответить
@flash24ster
@flash24ster - 18.11.2023 13:57

I cant make :( it all the same but it no worky :(

Ответить
@hdsjgfjskv
@hdsjgfjskv - 08.11.2023 00:23

haha i remember watching this

Ответить
@user-zx2xi3hz1u
@user-zx2xi3hz1u - 27.10.2023 19:05

Hi I’m having an issue with the code containing ‘Status’, I keep getting the same error saying “ infinite yield possible” but no matter what I do I cant seem to fix it. Can anyone help?

Ответить
@Nonagonpro
@Nonagonpro - 21.10.2023 17:16

how can you get roblox studio

Ответить
@Ripshadow001
@Ripshadow001 - 17.10.2023 06:39

why does it say 2023 in 2019 💀💀💀💀

Ответить
@JesperIThink
@JesperIThink - 13.10.2023 17:21

Me pausing the video so I can see how I should code. Becuase If I sholdn't pause. I will never see what he codes! Really good video! You are creating my roblox games! You made one of my games to get 200 views!

Ответить