Sorry for the delay on this video. The next one is coming soon. What do you want to learn in future episodes? (Beginner stuff, not too advanced yet). If you see no comments, it's because they're held for review first.
Who else notices how the farther you get into the scripting series, the less views each video gets? It feels like a competition to see who drops out and who goes on because they understand.
I went to look at that when i clicked on this video out of curiosity before i even saw this comment lmao. I would say its because each video is progressively newer in the series but you can see that it goes from 220,000 views on the first episode to 80,000
@@AlvinBlox what do i do if it says "Argument 1 Missing or Nil" in the output? I watched this vid to see what an Argument is but i still have no idea what to do.
I am so grateful for these tutorials. Thank you, Alvin! You take time to explain concepts clearly, which almost no one does! I've felt completely stumped by parameters up until now. I feel inspired by these lessons, and you've earned a new subscriber!!!
I really like how you keep on building on top of your previous lessons. This is really helpful. Thank you so so much for using your time to make videos for all of us
Reviewing after watching episode 9, this video, episode 9, and the functions video are truly essential to continue development of a game I am making with friends that should bring my dev status to high popularity. Episode 10 seems important too! Just GREAT quality videos and teaching. Keep up the good work!
I've always wanted to make a game with my own scripts. My friends used to say I am awful at scripting. I'll show them that I am good at scripting now! Thanks so much
i start learning how to script i just made a click able door lololol also some vid ideas: 1. camera tutorial 2. Values 3. Events ty so much alvin keep up ur series!
@@strange4107 it's basically vector position changing, using if and then statements SIMPLIFIED local workspace.door.maindoor = Instance.New("Maindoor") if Maindoor = clicked then Maindoor.Vector3=(insert, insert, insert)
I'm just beginning on learning how to code and these videos are really helped me i tried to learn a few months ago but all the tutorials i watched were very confusing so i quit trying. I recently wanted to try it again and then i found this series and i just want to say that i love it. This is one of the most helpful series ever and your so good at explaining.
I got it when he said: all we are doing, is passing some data to the function, and the function is applying it to the properties of this part. (in order) what he actually means is that the () of the parameter and the function are linked. I give example if you don't understand( go to 14:00 if you didn't got there). the arrow means linked: name --> part.Name --> Hamburger IsAnchored --> part.Anchored --> False reflectance --> part.Reflectance --> 1 I hope this makes things more clear to you who took the time to reed this. also Alvin keep up the good work!
Hey do you know how to fix 19:42:36.299 - ServerScriptService.Script:4: bad argument #3 to 'Name' (string expected, got nil) I have generatePart(Well) so when i put part.Name = Well nothing happened
This is honestly the best videos (or series) for scripting. Want to know why? First Alvinblox doesn't say how to do one thing in particular and just give you the code for it and teaches you want to do, for example like a video about how to create rain they give you the script and you copy and paste it down. What happens here is that you learn the basics for scripting then you get to know how to do what you want and pretty much everything else. Secondly everything here is very obvious and clear of what to do, Alvin Blox describes what everything is and gives more information about it in notes on the screen. Not to mention it's 1080p so you can actually see what is on the screen and not trying to look what it says, like " huh does that say part.Parent" lol. Lastly it's interesting, I don't want to just stop the video and not care about it because it not interesting because it is interesting! That's all I had to say but just thanks a lot for helping me learn how to script better ( not phenomenal because we're only on the 7th episode yet but better)
quick overview: An argument is the Value you are going to send to the function, while a parameter is the sent value that you are going to use in the function. The reason why you want to use a function and send values through it, is because functions are dynamic (dynamic means changeable), while just writing the code out normally is fixed (you cant change the values after its defined).
For anyone struggling with the parameter and argument (name) and ("partnumberone") etc.. Just think of (name) in the same way you would X in an equation. X will be told to equal "partnumberone" or whatever the Argument is the parameter will be the variable equal to the Argument
For people who don't know equations they need to read this: The parameter is a set of variables which are yet to have a value. Then you make an argument (arguments are the values that will be sent later on as in like, kind of used to send data) containing the values you want for your parameters. For instance like when you reference game.Workspace.Part.Anchored = false that is a boolean as in it had a false value (as in booleans have true or false values). So you just gave it a value. So just like arguments you can add a value and tell the argument to contain the values. Then the argument will make an for to pick up the values. Like the first value of the argument will be sent to the first parameter, the second argument value will be send to the second value, and... that's all I can say! Thank you so much if you like this comment =)
I can't remember when last year but I tryed to learn though the old tutorials and I really struggled and ended up giving up but these new tutorials are much better and are the best and easiest I ever found and I spent a while looking into how to learn to program in roblox studio so thank you for making these excellent and informative videos :)
@@AlexYazanGames no that's a comment from 2 years ago. the new one is the 2021 scripting tutorials. i think that one's unfinished so this is better because it covers more stuff.
Hello friend! I was just wondering if you wanted to team possibly team up making games/ I'm trying to make a game that looks like a game that wouldnt be made on roblox/ What's your user?
The way i find it easy to remember the stuff in this video is to not only write it down in like windows notepad, but also practicing in studio using ur knowledge. For example, after watching episode 6 i wrote 3 functions that go together. One makes a brick with my friend's name on it, one sets the velocity of that brick, and one unanchores the brick for 2.5 seconds and then sets the position again as anchored. if you run the creation, then the velocity, then the anchoring, it makes a falling loop :D
and after watching part of this, i made a function that makes a part named apple, with the parameter of "value" which corresponds to the anchored status. one apple is anchored, while the other isnt.
when i saw a lot of ur old videos a long time ago i never understood how it knew what the value should be but now when you're explaining it much clearer i understand. Thanks Alvin!
Im not hating but. Hes talking like he knows what his viewers are talking about. thats the first rule of making a video, story etc, YOU SHOULD NEVER expect to know what your viewers are talking about.
@@comkiskin8181 I learned some Python a while back so I sorta had an idea what he's talking about in the first place, so idk if I can judge him for that lol
Thank you, this has been the ONLY video I found which has properly described what arguments and parameters are. All other ones personally were too complicated to be noted down.
Thank you so much for making these videos. When I used roblox education I didn't really understand this, but now I do after watching your video because your video helped clarify things for me😁 and that goes with a couple of other videos too!
Incredibly similar. Once you get the syntax down the concepts are very similar from language to language. Although I must say, coming from Java and C++/C# it feels weird not putting a “;” at the end of a statement, using curly brackets to define a functions contents or needing to list the variable type when creating a new variable. Just stuff you get used to from language to language.
Alvin covered some stuff in the past that i didnt understand a single bit, watching his scripting tutorials and these, I have came to know what a lot of things do, like Vector3 which i wasnt sure what it did. Thanks Alvin.
Aye, your Lua scripting tutorials are seriously helping out! Although I may have been confused at the beginning since I didn't understand anything the way you phrased it, the way you explained it later cleared everything up. I have no idea how, but it's like you can tell what questions I have, and you answer them inside the video. Thanks Alvin, you're helping me learn lots!
At first I've not understood anything at all in this video explaining parameters, but I've watch it multiple times and toke notes and understood it finally and I feel so nice just giving my back some break. W AlvinBlox for his understanding tutorials 🔥 🔥!
@@timetravellingblockhead2122 The wiki is basically useless because it doesn't teach you shit except telling you what it does, such as "Instance.new() creates new entity" , unless he is a good learner
Wow I first thought functions ain't important and am not gonna use them but as soon as I begun to understood them I saw how useful they're. Thanks AlvinBlox you're the best in explaining coding in roblox!
i FINALLY understand now. I used CK Studio+ To learn scripting and i got stuck on learning parameters and now i FINALLY understand after a month of searching :D
Just wanted to come here and say that your videos are awesome, and back when I used to learn scripting I used to always watch your videos for help. Now that I can script very well, I've made some very cool creations that have impressed many people. Just wanted to say you're the best, and keep up the awesome content. :)
Alvin do you recommend me to take notes of it thank you so much I learned how to changed the brickColor and transparent and anchored in a script thanks man!! keep up that pro work!!!! THANKS!
AlvinBlox, you and TheDevKing are both absolute legends, I watch both of you because making a Roblox game is part of my bucket list and here you are teaching us how to script. But anyways if you make more ModuleScripting tutorials, then I will appreciate it, Thank you!!!
8 months ago, damn. quit a while back but came back to try again. this was the roadblock that stopped me back then, and stopped me again here. luckily i overcame it this time and i could understand it.
if you are still confused by this. its fine i was confused at first. What Alvin is trying to say is that in | function generatePart(name) inside the () it could be named anything if you wanna name it burger. pizza, mouse you could. After that you have to figure what you want it to be as. for example if i want name (which is inside unction generatePart(name) ) to be the anchored ill put it as the anchor by doing | game.Workspace.Part.Anchored = name | What i did is set name to be the anchor of my part which is "Part" then you do name(false or true) true so it stays anchored or false so it can fall. you can also set its Transparency | game.Workspace.Part.Transparency = name name(0.5) (what i did is set its Transparency to the amount i put which was 0.5) you can also do this with material and other of its property like its color to you can do this alot aslong as you put a coma at the end of the sentence. a coma is , if you have questions about funtions. feel free to comment also alvin keep doing what you are doing man.
yes lua is a very simple lang. if you have experience in python then it will be very simple. i am learning javascript at the moment and then decided to learn a little lua and it is very similar since they are both scripting langs, its just that the syntax is more similar to python
the first thing I do with this GREAT function thing... I hook two together in a infinite loop creating infinite blocks crashing my game!!! I LOVED IT!!!
The last time I looked at a script. I was so confused by words that were made up and I thought to myself "there isnt any way that these words used are part of any program language. But now i looked again and they were placed in a function before being used and it all makes sense now lmao
A tip off everyone who wants to learn scripting. If you dont understand Alvin Watch Peaspod, if you don’t understand peaspod watch alvis as the both correlate and they helped me Greatly.
Sorry for the delay on this video. The next one is coming soon. What do you want to learn in future episodes? (Beginner stuff, not too advanced yet). If you see no comments, it's because they're held for review first.
I subbed, hit the bell and liked!
My brother says he wants me to make a ragdoll engine XD
Making an rpg game
I dont know what scripting is involved for that
But beginner stuff would be how to use vector 3
Who else notices how the farther you get into the scripting series, the less views each video gets? It feels like a competition to see who drops out and who goes on because they understand.
Aren Zion ye
I went to look at that when i clicked on this video out of curiosity before i even saw this comment lmao. I would say its because each video is progressively newer in the series but you can see that it goes from 220,000 views on the first episode to 80,000
oh my god
the newest in this series has like 31k views
ye bro, im really intrested in scripting so im prob gettin to the advanced part
ur the best alvin! its so easy to understand ur tutorials! :)
EDIT: Im gonna watch it now :)
Thanks Meera
ikr???
AlvinBlox Please make a morph GUI like five nights at freddy’s
@@AlvinBlox what do i do if it says "Argument 1 Missing or Nil" in the output? I watched this vid to see what an Argument is but i still have no idea what to do.
@Zethmee he prob fixed it
I am so grateful for these tutorials. Thank you, Alvin!
You take time to explain concepts clearly, which almost no one does! I've felt completely stumped by parameters up until now. I feel inspired by these lessons, and you've earned a new subscriber!!!
I really like how you keep on building on top of your previous lessons. This is really helpful. Thank you so so much for using your time to make videos for all of us
You're very welcome!
Remember when Alvin used to sound like British Theodore
LOL yes
He's growing up too fast ;C
Funny, his name's Alvin...this is like an episode of Theodore and Alvin switching souls for a day
Kermit Trump AND his name is alvin
now he sounds like harry potter
damn, i've been learning SO MUCH i take notes like im at school lol
ItzSwagalicious me too taking notes
BoxBlox same
Im not if i forget i watch it all again
same
I suggest having studio open when learning :D
After a day of learning lua, I've already created some cool yet simple stuff and this series has helped me come along ALOT!
Keep at it you must
what did u create?
Alvin: You can call it burger.
Me: This man is a legend.
This man is a god* (first response in a year)
@@ClipFamousYT first response in a week
Reviewing after watching episode 9, this video, episode 9, and the functions video are truly essential to continue development of a game I am making with friends that should bring my dev status to high popularity. Episode 10 seems important too! Just GREAT quality videos and teaching. Keep up the good work!
hope its a cool game, could you let me test it ?
Shoutout to y'all who still watch
I always thought functions were complicated but wow! It’s so simple, thank you Alvin.
I've always wanted to make a game with my own scripts. My friends used to say I am awful at scripting. I'll show them that I am good at scripting now!
Thanks so much
I dont always watch ads, but when I do I watch them for Alvin
Nice
i start learning how to script i just made a click able door lololol also some vid ideas:
1. camera tutorial
2. Values
3. Events
ty so much alvin keep up ur series!
Hey, could you tell me how you made the clickable door??
@Extreme gnomes real men use the touchpad of a laptop
@@Beanpolr you mean girls
@@Beanpolr Ayy this guy gets it!
@@strange4107 it's basically vector position changing, using if and then statements
SIMPLIFIED
local workspace.door.maindoor = Instance.New("Maindoor")
if Maindoor = clicked
then
Maindoor.Vector3=(insert, insert, insert)
this guy is the best teacher ever i understand him completely other people be racing through it but he takes his time :)
wow what the heck I havn't watched alvin in years and now his voice has changed so much xd
DiamondsIsGold yea xd
Why are you going back to coding lessons. When you already learnt it
@@bloodywingrich8844 people forget you mad lad.
Diamond SAME
Same its so weird
I'm just beginning on learning how to code and these videos are really helped me i tried to learn a few months ago but all the tutorials i watched were very confusing so i quit trying. I recently wanted to try it again and then i found this series and i just want to say that i love it. This is one of the most helpful series ever and your so good at explaining.
I got it when he said: all we are doing, is passing some data to the function, and the function is applying it to the properties of this part. (in order)
what he actually means is that the () of the parameter and the function are linked. I give example if you don't understand( go to 14:00 if you didn't got there). the arrow means linked:
name --> part.Name --> Hamburger
IsAnchored --> part.Anchored --> False
reflectance --> part.Reflectance --> 1
I hope this makes things more clear to you who took the time to reed this.
also Alvin keep up the good work!
Ealy E thx I think I understand it a bit more now
Hey do you know how to fix 19:42:36.299 - ServerScriptService.Script:4: bad argument #3 to 'Name' (string expected, got nil)
I have generatePart(Well) so when i put part.Name = Well nothing happened
This is honestly the best videos (or series) for scripting. Want to know why? First Alvinblox doesn't say how to do one thing in particular and just give you the code for it and teaches you want to do, for example like a video about how to create rain they give you the script and you copy and paste it down. What happens here is that you learn the basics for scripting then you get to know how to do what you want and pretty much everything else. Secondly everything here is very obvious and clear of what to do, Alvin Blox describes what everything is and gives more information about it in notes on the screen. Not to mention it's 1080p so you can actually see what is on the screen and not trying to look what it says, like " huh does that say part.Parent" lol. Lastly it's interesting, I don't want to just stop the video and not care about it because it not interesting because it is interesting! That's all I had to say but just thanks a lot for helping me learn how to script better ( not phenomenal because we're only on the 7th episode yet but better)
Awesome, good thing I have this guy when I need him 🙂
Oh yes :D
It's called maturity. This phenomenon has changed Alvin's voice.
My default name : part
Alvins default name every time : hamburger
Funny how people like me are still watching these to learn even 2 years later, really helpful and so interesting too.
quick overview:
An argument is the Value you are going to send to the function, while a parameter is the sent value that you are going to use in the function.
The reason why you want to use a function and send values through it, is because functions are dynamic (dynamic means changeable), while just writing the code out normally is fixed (you cant change the values after its defined).
Noted thanks :)
yoo domtu i saw ur base raider vids lolll
Alvin you're an actual legend you helped me learn scripting and understand it a lot.
For anyone struggling with the parameter and argument (name) and ("partnumberone") etc..
Just think of (name) in the same way you would X in an equation. X will be told to equal "partnumberone" or whatever the Argument is
the parameter will be the variable equal to the Argument
So name is a specific keyword set by roblox?
Oh nvm I figured it out
you made it more complicated XD
For people who don't know equations they need to read this: The parameter is a set of variables which are yet to have a value. Then you make an argument (arguments are the values that will be sent later on as in like, kind of used to send data) containing the values you want for your parameters. For instance like when you reference game.Workspace.Part.Anchored = false that is a boolean as in it had a false value (as in booleans have true or false values). So you just gave it a value. So just like arguments you can add a value and tell the argument to contain the values. Then the argument will make an for to pick up the values. Like the first value of the argument will be sent to the first parameter, the second argument value will be send to the second value, and... that's all I can say! Thank you so much if you like this comment =)
its basically like running for president of the states, one gets knocked down, the other rises then rinse and repeat
Alvin you are the only person doing up to date tutorials on roblox scripting please keep up the good work!
Thanks cc cc!!
I can't remember when last year but I tryed to learn though the old tutorials and I really struggled and ended up giving up but these new tutorials are much better and are the best and easiest I ever found and I spent a while looking into how to learn to program in roblox studio so thank you for making these excellent and informative videos :)
You spoke out of my soul, same man. We got it this time :)
Hold up this is the new one?
@@AlexYazanGames no that's a comment from 2 years ago. the new one is the 2021 scripting tutorials. i think that one's unfinished so this is better because it covers more stuff.
Ive never seen somebody describe lua so well, and helped me this far. Thanks alvin!
You mate that helps much!
Edit: I’m making a pixel game called “Pixel Quest”
Hello friend! I was just wondering if you wanted to team possibly team up making games/ I'm trying to make a game that looks like a game that wouldnt be made on roblox/ What's your user?
thanks for the idea
Nihimatou Derman did u make it?
@@Carl-ib2hl I hope so
give us updates maaaan
also your game sounds like an rpg game or something and im interested
Thanks to your video I was able to skim through most of roblox scripting, great tutorials!.
The way i find it easy to remember the stuff in this video is to not only write it down in like windows notepad, but also practicing in studio using ur knowledge. For example, after watching episode 6 i wrote 3 functions that go together. One makes a brick with my friend's name on it, one sets the velocity of that brick, and one unanchores the brick for 2.5 seconds and then sets the position again as anchored. if you run the creation, then the velocity, then the anchoring, it makes a falling loop :D
and after watching part of this, i made a function that makes a part named apple, with the parameter of "value" which corresponds to the anchored status. one apple is anchored, while the other isnt.
@@descrenti492 you did EXACTLY what i did.
I love the way you teach I'm getting better at scripting each ep
you can tell Alvin was hungry when he made this.
"Hamburger" "Burger"
he said you can call it hamburger 3 times in different vids
when i saw a lot of ur old videos a long time ago i never understood how it knew what the value should be but now when you're explaining it much clearer i understand. Thanks Alvin!
Did anyone notice how more and more people were lost as the series got deeper by an episode
RIP for the people who are lost
Im not hating but. Hes talking like he knows what his viewers are talking about. thats the first rule of making a video, story etc, YOU SHOULD NEVER expect to know what your viewers are talking about.
@@comkiskin8181 I learned some Python a while back so I sorta had an idea what he's talking about in the first place, so idk if I can judge him for that lol
Thank you, this has been the ONLY video I found which has properly described what arguments and parameters are. All other ones personally were too complicated to be noted down.
Anyone remember Alvin while he was young :( his voicee
Yeah it was cute!
I like his recent voice more.
Thank you so much for making these videos. When I used roblox education I didn't really understand this, but now I do after watching your video because your video helped clarify things for me😁 and that goes with a couple of other videos too!
I just realized how similar different programming languages are
Incredibly similar. Once you get the syntax down the concepts are very similar from language to language. Although I must say, coming from Java and C++/C# it feels weird not putting a “;” at the end of a statement, using curly brackets to define a functions contents or needing to list the variable type when creating a new variable.
Just stuff you get used to from language to language.
@@Koubles E
@@MarioMario-yb3iz F
@@solo_2003 G
@@untoxic198 h
Alvin covered some stuff in the past that i didnt understand a single bit, watching his scripting tutorials and these, I have came to know what a lot of things do, like Vector3 which i wasnt sure what it did. Thanks Alvin.
Even in 2020 he only has 13 dislikes on his video, another level of respecc
Aye, your Lua scripting tutorials are seriously helping out!
Although I may have been confused at the beginning since I didn't understand anything the way you phrased it,
the way you explained it later cleared everything up. I have no idea how, but it's like you can tell what questions I have, and you answer them inside the video. Thanks Alvin, you're helping me learn lots!
i really like your videos!! they help me a lot!! im learning to script and i think youre doing a lot for us!! thanks!!!!1
At first I've not understood anything at all in this video explaining parameters, but I've watch it multiple times and toke notes and understood it finally and I feel so nice just giving my back some break. W AlvinBlox for his understanding tutorials 🔥 🔥!
Dislikes are from people who don't pay attention
Thank you for making these type of videos day by day I am getting better and learning something knew in my scripting journey.
AlvinBlox: Makes a function that prints text
print: Am I a joke to you?
Alvin these tutorials are so much better than your old ones! Good growth.
i wonder how he learned scripting without tutorials like his
The Wiikii perhaps? And practiice.
@@timetravellingblockhead2122 The wiki is basically useless because it doesn't teach you shit except telling you what it does, such as "Instance.new() creates new entity" , unless he is a good learner
he probably watched peasfactory
watch his 1st podcast! you'll know the story behind him
@Katanetic The guy yo the comment isn't even a joke
you used woooosh the wrong way bro
ive litterally been taking notes on every video, you are amazing
Thank you Alvin, when the next video will be published?
I need a new video too :O
Soon MrFudge, soon
@@AlvinBlox ok, Thanks!
Wow I first thought functions ain't important and am not gonna use them but as soon as I begun to understood them I saw how useful they're. Thanks AlvinBlox you're the best in explaining coding in roblox!
5:51 - - Hi
local food = life.MyHouse.Kitchen.Sandwich
food.Position = Vector3.new ("In,My,Stomach")
end
i feel proud of myself because i understand this lmao
i FINALLY understand now. I used CK Studio+ To learn scripting and i got stuck on learning parameters and now i FINALLY understand after a month of searching :D
Good
THX to AlvinBlox for his videos . I am learning so much things :)
i understood all the previous tutorials but my brain can't understand this one :(
Try looking at it again. that helped me.
Same bro haha
Yeah this one makes no sense 😐
Same I get it a little but
I think it’s supposed to be a shortcut
im so thankful ive dreamed about scripting for 2 years now i notice that these videos helps a LOT ive learned so much thank you so much!
Can you make a video: How to make a Bowling System, please? I really need!
Just wanted to come here and say that your videos are awesome, and back when I used to learn scripting I used to always watch your videos for help. Now that I can script very well, I've made some very cool creations that have impressed many people. Just wanted to say you're the best, and keep up the awesome content. :)
Alvin do you recommend me to take notes of it thank you so much I learned how to changed the brickColor and transparent and anchored in a script thanks man!! keep up that pro work!!!! THANKS!
Writing it down will help you remember it
So I recommend taking notes :)
Alivin Blox you have taught more than a million people how to script Keep up the good work
Most confusing video by far
Every video I watch to learn to script Im always exited to watch a new video
I really want you to show us how to make a editor e.g like bloxburg creator.
that will be very hard
The Typing and clicking is like ASMR
cuz they are
Thank you for the tutorials, they actually helped me learn lua, when will the next part to the sword fight series come out
Thanks
Thanks, this series is really helpful, please keep making tutorials!
Show us how to make a 2d game like Mario or flappy bird
Yes
T11 Goxiz make it yourself lul
Man alvin is better at teaching coding then my college coding lecture class
A really helpful video.Thanks, Alvin. I really appreciate your hard work in making these videos!
AlvinBlox, you and TheDevKing are both absolute legends, I watch both of you because making a Roblox game is part of my bucket list and here you are teaching us how to script. But anyways if you make more ModuleScripting tutorials, then I will appreciate it, Thank you!!!
This is my second time rewatching, im almost done with the vid and I understand it now :o ty
Alvin is still awesome with his tutorials tho :) I love his tutorials, I am learning more and more each day!
I'M CAILOU!
my brain is melting but very helpful, thank you
I was actually so confused about this, thanks for the VERY detailed guide
Ive been watching thedevkings tutorials because they are much shorter but alvin explains it so much better jeesus
This Scripting tutorials helped me so much! I actually made my first script that makes an gui appear when you touch it!
this is the best lua script channel i ever saw i made a game and is a small game thanks for the tutorials (:
I love Alvin's British accent.
Sofar, this is the hardest lesson for me, but everything else has been easy to learn. Good job on the teaching, it helps all of us :)
8 months ago, damn. quit a while back but came back to try again. this was the roadblock that stopped me back then, and stopped me again here. luckily i overcame it this time and i could understand it.
Part 7... All in one day, so far learned ALOT
Thanks this series is really helping me so far and I look forward to doing more.
This is definitely a step up, I might have to rewatch the previous 3 videos: Instance, Function, and this one to fully understand it
Also when is the new quiz website gonna be finished, I would like to take it to see if I understand what I’m doing
if you are still confused by this. its fine i was confused at first. What Alvin is trying to say is that in | function generatePart(name) inside the () it could be named anything if you wanna name it burger. pizza, mouse you could. After that you have to figure what you want it to be as. for example if i want name (which is inside unction generatePart(name) ) to be the anchored ill put it as the anchor by doing | game.Workspace.Part.Anchored = name | What i did is set name to be the anchor of my part which is "Part" then you do name(false or true) true so it stays anchored or false so it can fall.
you can also set its Transparency | game.Workspace.Part.Transparency = name
name(0.5) (what i did is set its Transparency to the amount i put which was 0.5)
you can also do this with material and other of its property like its color to
you can do this alot aslong as you put a coma at the end of the sentence. a coma is ,
if you have questions about funtions. feel free to comment
also alvin keep doing what you are doing man.
I got a game idea when I reached this video after watching all the previous one.
100% would not be on front page lol
thanks alvin
Try your hardest! Who knows? Maybe your game will be on the front page :D
Damn this episode is the thoughtest one yet
I am a advanced roblox scripter but this video still helped a lot!
Good to hear!
I was kinda confuse at first bc I wasn't really focused. But as I replayed some parts of the vid I got the hang of it. Ty
With previous experience in python this makes a lot of sense. Thank you.
yes lua is a very simple lang. if you have experience in python then it will be very simple. i am learning javascript at the moment and then decided to learn a little lua and it is very similar since they are both scripting langs, its just that the syntax is more similar to python
the first thing I do with this GREAT function thing... I hook two together in a infinite loop creating infinite blocks crashing my game!!! I LOVED IT!!!
The last time I looked at a script. I was so confused by words that were made up and I thought to myself "there isnt any way that these words used are part of any program language. But now i looked again and they were placed in a function before being used and it all makes sense now lmao
A tip off everyone who wants to learn scripting.
If you dont understand Alvin Watch Peaspod, if you don’t understand peaspod watch alvis as the both correlate and they helped me Greatly.
Everything is starting to make good sense now.
❤thanks alvinblox you the better teacher who makes me understand the functions with there parameter
Pretty useful, thanks for those Tutorials, i'm doing all of them and learning with it
lol this dude is great he is teaching us for free, and also i find it funny how he keeps trying to explain whats happening but i already caught on
everyone: we need help with scripting so we can make games and have fun!
Alvin: *say less*