Hey, if you’re new and just found this video then use this tip. Every video you watch practice doing the same thing in roblox studio multiple times. Most people don’t do this and end up watching the playlist lots of times over. Practice what you learn and good luck!
I just like how he doesn’t judge even considers that there will be people who are slow ash that don’t know what gravity is and still says “gravity is basically stuff that pushes stuff down 😭” that’s awesome man I can tell your a great teacher
script.Parent.MouseClickButton1:Connect(function() If script.Parent.Parent.Hello.Value = false Then Script.Parent.Text = “hello” else Script.Parent.Text = “I do not know” end end)
I am watching 3 videos a day from 3 different scripting tutorials, reading a chapter of a lua scripting textbook, and scripting something based on what I learn each day. So thank you for making this.
Ikr I started playing in 2016-17 I don’t remember but meepcity had 40k WAY before adopt me hit big! Most visited game! I still have premium in therw from 2018 playing with my cousins
If you guys had any question about this tutorial then make sure to leave a comment letting me know. I've made a discord server so everyone can join and help each other out. Here's the link! discord.gg/rodevs If you watch this entire series and the advanced one you will probably be a become a pretty good scripter. All I ask in return is that when you make a front-page roblox game, you credit me. Best of luck learning everyone. Don't give up!
I need a tip, so lets say im animating a punch right. And i need to script like a right punch will be right click and left punch will be left cliick. Do i like make a different animation for both?
I’ve wanted to learn about scripting for so long and about Roblox Studio and this is without any doubt the bestest tutorials I’ve seen. Gonna watch them. Really easy to understand. Most definitely subscribing to this guy! 👏
Can confirm, The Beginner's and Advanced series really helped me getting the strong base of knowledge just enough to keep learning on my own when you want to code in Roblox Studio.
This was 5 years ago but here I am watching it to learn lua! great video and so far I am able to make a kill brick all on my own. I will be continue watching these videos and practice and learn. Thank you so much DevKing!
I'm starting my Roblox studio journey with this. I already love the content and I am very grateful that I have your tutorials to watch. They are easy to understand and If I ever make it big I will never forget my beginnings. tysm for you help keep up the great work king.
I already rewatched this series 2 times but forgot how to because my passion dwindled out sometimes and forgot to watch more tutorial vids, I am rewatching this series for the 3rd time this time, and I hope i can watch all of them without forgetting
I have been wanting to do this for so long, watched some of ur newer vids and they were very well made. I hope to follow this tutorial and become a proper scripter. Thanks in advance 🙏🏻
my pc: sooooo you only need me for money, why you don't love me, i have served you 10 years, i saved your secret pictures, and now i'm useless for you, ok then take this in your face me: hearing some fire sound in the pc pc: *BOOOOM*
It took me 5 months to get everything down from this playlist to a tea, but this is by far the best scripting guide and gives you a solid base even though its a few years old. If you are really into developing go far in this playlist and you will se big results. Im working on scripting and GFX and this really boosted my scripts to a whole different level.
PolarBearLP it was a joke but he could be a contributor not make or develop but could be a contributer do you think badcc the college student has enough time to make a script for everything? Same with asimo there is so much detailed builds.
For everyone who see this comment, i ended up here by recomendation of other channels, im starting to learn from this today and ill come when i already finished it and tell yall my experience, i dont know how long is this going to take to me but i wont leave this
Hi guys i did this series like in a week and i reached like the 5 chapter of the advanced series but i quitted like in august and now im in highschool again so im not going to have time i learned a lot of things but im sorry i quetted lol 😭 maybe i will come back one day but i lost the interest
I always wanted to learn scripting and thought I could never do it because I don’t learn as much but this tutorial even if it’s basic made me learn more than I did before
Bro thank u so much i watched all this series like 3 times and now i can make decent scripts thank u very much u are my hero i love ur content bro thank u very very very much
Oof well I am late on this, thanks for this. You don't make confusing tutorials which I am excited about, I am taking notes down on this. Keep up the great work and thanks for the help.
Came from someone's channel to watch your scripting series, their name is hazu. Def a dev king. I've been subbed to u for a while but never really watched your scripting series because I was never interested in scripting, now I am so hope I do good in your lessons!
If you are connected to the right sources then yes it's normal, judging from your reaction it isn't. And tbh I would ask the same question :), sorry I'm seeing so much heart-warming comments I'm feeling so happy. Literally want to cry xD
I’m currently making a guilty gear inspired 2d fighting game with a few friends of mine Even tho I made most of the models, none of us can script so I’ll use your vids to teach myself how to!
after like 4 year i tried to learn coding sometimes, im now finaly not suppressed to much by my mental exhaustion anymore and im actually able to learn coding. had my first succeses trying to make an inventory and now im rewatching to soak knowlege. i hope it geos well :)
print("im on my first lesson") wait(3) print("i hope im going to script on my own!") -- i know very very basic stuff, and most of that is modifying basic things of a script.
Hey, Thank you for making a scripting series that goes over absolutely EVERYTHING like- AlvinBlox did it it was good but there was only 6 episodes so yeah thanks.
Tysm! I thinking about trying to make a Roblox game and I started it, but my Pc broke, but I did not know much about making Roblox games this is gonna help me a lot when a get a new pc. Tysm
I just came back here after some time to admit a thing. I started your course with zero Roblox knowledge and just a few weeks afterwards I made a pretty successful game called RBWR. Thanks for the course. Very helpful :)
Hey, if you’re new and just found this video then use this tip. Every video you watch practice doing the same thing in roblox studio multiple times. Most people don’t do this and end up watching the playlist lots of times over. Practice what you learn and good luck!
U commented on a video from 2 years before lol.
@@jean-lucdestrebecq775 yep
@@jean-lucdestrebecq775 so?
Fax man
Thank you for the tip! It was really helpful!
I just like how he doesn’t judge even considers that there will be people who are slow ash that don’t know what gravity is and still says “gravity is basically stuff that pushes stuff down 😭” that’s awesome man I can tell your a great teacher
You're*
print("thank you")
print("hello")
@@mamin3152 while true do
print("sup")
wait()
end
script.Parent.MouseClickButton1:Connect(function()
If script.Parent.Parent.Hello.Value = false
Then
Script.Parent.Text = “hello”
else
Script.Parent.Text = “I do not know”
end
end)
Oof I missed a part
@@Wolfite
--localscript
UIS = game:GetService("UserInputService")
remote = game.ReplicatedStorage:WaitForChild("RemoteEvent")
part = game.Workspace.Part
UIS.InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.P then
remote:FireServer(part)
end
end)
--serverscript
emote = game.ReplicatedStorage:WaitForChild("RemoteEvent")
remote.OnServerEvent:Connect(function(player, parte)
part:Destroy()
newPart = Intance.new("Part", workspace)
newPart.Name = "Well hello there"
end)
I am watching 3 videos a day from 3 different scripting tutorials, reading a chapter of a lua scripting textbook, and scripting something based on what I learn each day. So thank you for making this.
i am stalking u😍😍😍
What different tutorial series are you watching and how has it been going, I might want to do something like that
@@mrtoast3327kinda messed up ngl
How have you progressed?
are u good now at scripting in lua?
okay the way he said "front page" and then "meepcity" at the beginning of the vid gives me serious nostalgia
Ikr I started playing in 2016-17 I don’t remember but meepcity had 40k WAY before adopt me hit big! Most visited game! I still have premium in therw from 2018 playing with my cousins
i bet you have even more by now
true
@@VIPisVIP little bit late😭🙏
I hope meepcity is still alive and healthy rn 😭🙏
"Gravity is basiclly... stuff that push stuff down"
And at that moment, my psychics fascinated mind was triggered.
Place he is the messiah meme here
He is the Messiah
Forget Charles Darwin.
So if it push stuff down, then why can birds fly?
@@a.austin7965 AAAAAARGGGGGHHHHHHHHHH
For anyone watching after 20 years, this man was a legend.
Yes he was, take it from two people.
Yes he was take this from 3 people
Yeah he was take this from 4 people
Yes he was, take it from 5 people.
yes it was, take it from 6 people
If you guys had any question about this tutorial then make sure to leave a comment letting me know. I've made a discord server so everyone can join and help each other out. Here's the link! discord.gg/rodevs
If you watch this entire series and the advanced one you will probably be a become a pretty good scripter. All I ask in return is that when you make a front-page roblox game, you credit me. Best of luck learning everyone. Don't give up!
I need a tip, so lets say im animating a punch right. And i need to script like a right punch will be right click and left punch will be left cliick. Do i like make a different animation for both?
I think you are gonna make a great TH-camr and I'm really grateful someone's out there to help me script!
:):)
have u made a game and if u have witch game is it???
I wanna know how a replicated storage works like say I wanna make a simulator or a jojo game how can I do that
I’ve wanted to learn about scripting for so long and about Roblox Studio and this is without any doubt the bestest tutorials I’ve seen. Gonna watch them. Really easy to understand. Most definitely subscribing to this guy! 👏
Good luck!
those tutorials is too outdated to let you know
@Back on Track roblox does sometimes change the scripts but it isnt too outdated it can still help you learn!
he is but he talk a bit too fast ;w;
@@hydrax1549 you can dlow down teh video
Can confirm, The Beginner's and Advanced series really helped me getting the strong base of knowledge just enough to keep learning on my own when you want to code in Roblox Studio.
Do you know whether the code used is outdated and if so, is this a big problem?
@@davey8529 No, the code isn’t outdated but it can be glitchy sometimes.
Im going to watch all these tutorials from the start. Hope to know how to script fluently after this and ill comment again.👾
Good luck man! If you really stick with it. I promise you WILL learn :)
@@TheDevKing I cant do it
Hey just wondering how's it going? Lol
@Elijah Reid how was it? because I’m trying the same thing
A_ 0503 It gets hard to stay motivated but i learned a lot
Some advanced stuff for scaling: press control while scaling to scale on a specific axis and press shift to upscale the whole thing
Ііә
I've been searching this for the entire internet and I had it in the same youtuber's channel that makes me smile everyday.
This was 5 years ago but here I am watching it to learn lua! great video and so far I am able to make a kill brick all on my own. I will be continue watching these videos and practice and learn. Thank you so much DevKing!
Fr
I’ve watched the whole series, I’ve became a Senior Programer Because of you’re amazing toturials.
My first Script after getting a tiny bit of experience in 2019 when I watched on my very old account: Script.Parent = Say:Spawn = Dummy = Say:”hello”
How long did it take to learn scripting?
@@TheBritishCooki1 year but it was worth it 💀
I like how you take it only a little bit at a time meanwhile other youtubers were trying to do variables, functions, loops, and etc. in one video
putting everything in 1 video is good. more learning at once
@@_quixote Its can be , but most of the time its just rushed and they miss some key components
It's tap!
@@_quixote Not really, if you’re absorbing so much information at one time you probably won’t remember it in like a day or so
Write it down
I'm starting my Roblox studio journey with this. I already love the content and I am very grateful that I have your tutorials to watch. They are easy to understand and If I ever make it big I will never forget my beginnings. tysm for you help keep up the great work king.
Tamim Quadir i agree! i wish you the best on your journey!! :)
@secretshadow lol coming here after so long reminds me of how much time has passed
😀how is you scripting journey going
how is it going so far?
How did ur go
TheDevKing: “Months after I posted it”
Me: * watches it 2 years later instead *
Same lol
Understand what ya mean surprisingly still works
Same
make it 3 for me lol
2 years you say, well... ROOKIE NUMBERS
I already rewatched this series 2 times but forgot how to because my passion dwindled out sometimes and forgot to watch more tutorial vids, I am rewatching this series for the 3rd time this time, and I hope i can watch all of them without forgetting
Did you learn a lot from the tutorials?
Look how his channel has grown during these years! *happy sobbing*
Yes ;)
print("Thank you so much for being straight to the point, unlike those youtubers who have 40 second intros. You make it extremely simple.")
AZ you don’t understand the 40 second intros are support to lead up to plot or connect to plot. You learn this in Language arts class ;-;
@@extradetails4686 Still, it's quite a waste of time.
you're right, his intro was over a minute long LOOL
ayyy I was your 400th sub!
I was the 126th.
This is the first video you have? Almost all popular TH-camrs have their first video suck, but your... Is Amazing!
Ikr
Watching this after 5 years and hope it will finally tell me how😭
Real
Starting this guide at 25/11/2024 at exactly 16:48:58 wish me luck (i will edit this comment when finished)
I finished it at 3/12/2024 at 17;42 lesgoo
W
what how did u start at 25 November 2024 and finished at 3 November 2024 LOL
@dmitriyyp1 idk
@dmitriyyp1 I speedrun so hard no sleep only 2 hours
@@ClavedEdits but fr do u actually mean u started at 3 november and finished at 25? I'd like to know
I have been wanting to do this for so long, watched some of ur newer vids and they were very well made. I hope to follow this tutorial and become a proper scripter. Thanks in advance 🙏🏻
update???
@@main_hartz2567 no update
legends say this man created jailbreak
print(“I have subbed :D, in the future I hope to be a game designer so these are my first steps tysmmm”)
Same i really wanna learn how to script
:)
@@bumblu2973 local Part = game.Workspace.Part
Part.Touched:Connect(function)
print("Yo")
end)
@@bumblu2973 Why does you need to wait for half a second to end the script?
:(
Me: Installs Roblox studios
My computer: 💥
Hahahahhahahaha when you says my computer blow imoge
Does it really happeennif yes the I am sad:(
Bro I’m typing this while I’m waiting for another game to close I’ve been waiting ten minutes I feel you
I can hit 60fps max graphics in most games in and outside roblox
my pc: sooooo you only need me for money, why you don't love me, i have served you 10 years, i saved your secret pictures, and now i'm useless for you, ok then take this in your face
me: hearing some fire sound in the pc
pc:
*BOOOOM*
Same i can barely load in the game without anything
It took me 5 months to get everything down from this playlist to a tea, but this is by far the best scripting guide and gives you a solid base even though its a few years old. If you are really into developing go far in this playlist and you will se big results. Im working on scripting and GFX and this really boosted my scripts to a whole different level.
Have you made any roblox games? If yes please specify :D
lenalunch he made jailbreak
@@CookieMasterRBLX no
PolarBearLP it was a joke but he could be a contributor not make or develop but could be a contributer do you think badcc the college student has enough time to make a script for everything? Same with asimo there is so much detailed builds.
@@paradox5434 i knew it
@@PolarBearLP asimo has a real job in a grocery store
I don't need sleep for online school starting tomorrow. *I need Roblox Studio scripting lessons.*
oof.
WAIT OH MY GOD ITS FEBRUARY
i always have trouble knowing the difference between a normal script, local script, and a Module Script. and i never know where to put them.
i watched 8 mins on the firt vid and learned so much
Wow... just wow.., how did I not find this video before? This is one of the best or if not THE BEST roblox studios scripting tutorial.
when your learning scripting instead of learning the lessons your teacher taught you:
Totally not skipping my 1st hour for this 😬😬😬
@@CaesarElie yeah same
Why do I need to learn french if I'm not going to france
@@possiblyrandom6703 why do i need to learn flower parts if I'm not going to be a gardener or scientist
@@possiblyrandom6703 lol
For everyone who see this comment, i ended up here by recomendation of other channels, im starting to learn from this today and ill come when i already finished it and tell yall my experience, i dont know how long is this going to take to me but i wont leave this
good luck
I’ll be waiting
waiting
@@CarrieRoblesMartínez I have not stopped waiting
Hi guys i did this series like in a week and i reached like the 5 chapter of the advanced series but i quitted like in august and now im in highschool again so im not going to have time i learned a lot of things but im sorry i quetted lol 😭 maybe i will come back one day but i lost the interest
I always wanted to learn scripting and thought I could never do it because I don’t learn as much but this tutorial even if it’s basic made me learn more than I did before
Bro thank u so much i watched all this series like 3 times and now i can make decent scripts thank u very much u are my hero i love ur content bro thank u very very very much
The journey has begun. Noob to pro in coding.
omg, the old baseplate, nostolgia's hittin real hard
print (“Thanks man! I subscribed & hope you be up there”)
*and thus, a legend was born*
I'm gonna watch the whole series, if my game blows up, I will thank you
Bro is the GOAT of coding (u really are the man who helped me script)
This Guy Is A Legend, Uploading From Tutorials To Challenges And More Entertaining Stuff!
He has a second channel its Tapwater
@@4L1V3_ryeah....he also have one more channel called Tappy
early people be like:
while wait (1) do
Print ("first")
end
What i learned from this video:
print("thanks haha lol go brrrrrrr")
strange.
@@jried1051 EEEEEEEEEEE E E E E EEEEE.E.E.E.E
@@binbot5489 no WRYYYYYYYYYYYYYY
im happy that even now in 2022 and its about to be 2023 people are still finding these videos helpfull, you should do an updated series tho
0:00 a legend was created
Not watching it after months , watching it after 4 years 💀
Same
Yo guys if I watch all of this will I learn how to build w game ?
@@Rachid-wz4hfif u can understand and practice with happiness, probably🤷♂️
I watching it after 6 years lol
Oof well I am late on this, thanks for this. You don't make confusing tutorials which I am excited about, I am taking notes down on this. Keep up the great work and thanks for the help.
I'm a little late
I’m a little late
This tutorial was very helpful when I watched it in the past and it’s still useful now
Came from someone's channel to watch your scripting series, their name is hazu. Def a dev king. I've been subbed to u for a while but never really watched your scripting series because I was never interested in scripting, now I am so hope I do good in your lessons!
In my opinion it's the best series to learn scripting.
I want to make a cafe, xd, but is hard.
it's been 1 year now, how's your café? :D
Lol
Lol
If you plan to make a cafe, be aware of the trollers
If You Are Building I Recommend Getting A Plugin Called F3X It Makes It Much Easier But You Must Know How To Use Btools.
Thank you! It's so much easier to understand then other youtube tutorials!
I'm actually shocked that this helps. I never expected there to be such good tutorials-
Is that normal? lol
If you are connected to the right sources then yes it's normal, judging from your reaction it isn't. And tbh I would ask the same question :), sorry I'm seeing so much heart-warming comments I'm feeling so happy. Literally want to cry xD
This guy woke up one day, decided to make this channel and start spitting facts
5 years later and its teaching me everything W
print ("I am a noob at programming hopefully these videos actually work")
same
"Make front page games like jailbreak and Meep city" 0:32
yeah
now it’s mid fruits and adopt me
Me watching this video 5 years later 💀💀
actually real
My friend who’s been scripting for years recommended I come here for help so I’m ready to improve!
Im his 361th subscriber not lying like seriously!
“It’s the DevKing here”
Captions “It’s the deaf king here”
"Deaf Gang"
go check out this part 0:06
6:45 youre welcome
Yes.
wdym
Thanks!
0:00 The Legend was born
I’m currently making a guilty gear inspired 2d fighting game with a few friends of mine
Even tho I made most of the models, none of us can script so I’ll use your vids to teach myself how to!
after like 4 year i tried to learn coding sometimes, im now finaly not suppressed to much by my mental exhaustion anymore and im actually able to learn coding. had my first succeses trying to make an inventory and now im rewatching to soak knowlege. i hope it geos well :)
I hope it doesn’t
@@stickysz whats wrong?
hey is this tutorial still up to date?
From what I know yes
people in 2024 still watching
👇
THIS IS YOUR FIRST VIDEO?! This is the first TheDevKing video I've ever watched!
Dang half a MILLION subs, good job man
btw in 2024 is this tutorial still irrelevant?
I think its still good the interface might be different but the code is the same
2024 gang
Me!
you are TheDevKing,.totally not Asimo
lol
You got your admin back btw
@@TheDevKing WAIT PAUSE YOUR ASIMO????
@@theeprimee He's not asimo, but he is a youtuber with 140k + called tapwater
@@dumbcalamitychild yea are you sure tap is pretty good
Someone recommended this channel to me, and I think I’ll enjoy it!
So i might be a LITTLE late to the video but im tryna make a huge RPG game rn (mostly bc blox fruits is ass) and this is rlly helping so far. thanks!
Yea me too
is this outdated?
Nope! Well it was a long time ago scripting and the script dont really change much so watching these will actually help you!
tdk has grown so much im looking back at this at 2024 and wow he is way older now
0:00 a legend was born
After forgetting everything, this playlist is a must.
I learned a lot from this video. Ty! You just got a new subscriber.
print("im on my first lesson")
wait(3)
print("i hope im going to script on my own!")
-- i know very very basic stuff, and most of that is modifying basic things of a script.
thats one crispy microphone you got there (ik this is old lol)
Thank you so much for making these tutorial's for beginner's. Now I can start making my own game :D
Bro is the g.o.a.t, he is the first person I learned everything about creating games on Roblox
Hey DevKing should i write down the scripts that you do and go over them first?
This man taught me more than school I.T. Classes
"you may be like watching this months after i posted it" then i come watching it after 5 years
This is one of the best channels ever! I cant wait to learn code, and keep up the great work.
Hey, Thank you for making a scripting series that goes over absolutely EVERYTHING like- AlvinBlox did it it was good but there was only 6 episodes so yeah thanks.
Tysm! I thinking about trying to make a Roblox game and I started it, but my Pc broke, but I did not know much about making Roblox games this is gonna help me a lot when a get a new pc. Tysm
Things i Learned Today = "You are amazing" ♥
Yo I never knew you had this channel as well Tap
Starting my Roblox journey today, thank you.
How’s it now?
Yo, this is my first day and i am want to be like you so im gonna watch all series so(also i will like each :D )
I just came back here after some time to admit a thing. I started your course with zero Roblox knowledge and just a few weeks afterwards I made a pretty successful game called RBWR. Thanks for the course. Very helpful :)
whats the full name of the game?
@@JudieDoodie Realistic Boiling Water Reactor.
Man its so good to watch old stuff