I'm a self taught scripter of 4 years, and I used to make games with freemodels completely and try to recreate those games but code all of it myself. I would intentionally clone every freemodel into the new game but delete random things in scripts and try to fix them myself. It took me about a year to learn scripting (don't expect a time any less than this if you *REALLY* want to learn scripting), but eventually I mastered it.
Here's a simple development tip, when creating large scripts with many components it's important to test that each individual part of the script works. You can do this simply by adding a print statement to output something to check if the script was successfully able to reach that part of the script or not.
This is a really nice inspiration to learn scripting, i used to place around the map 143243215312 free models and i thought that was a game but now, i can actually learn scripting
It's been almost three weeks since I started learning the concepts of Lua in Roblox. In the first week I saw all the videos I needed to know what are the basics, but when the second week started and I wanted to create more large scripts I wasn't capable because I really didn't understood those "basic concepts" and I didn't know how to implement them in the next line of code. Now I'm focusing on learning step by step the basics and also trying to figure out what logic follows the code to understand my more my decision making in every line. Thank you for the informative video, this will get a lot of people. Edit: It's been two months since I posted this and I'm still learning a lot. Of course I currently can do comissions but I will not for the moment. To the people who is learning and it's having a bad time learning. Just keep working until you understand it.
You know there’s a free plugin that gives you a script book and I have it it’s very helpful I use it I would definitely use it its amazing it has every script and even you can do your own if it’s hard use the script book plugin
I do like your tips, but the last part where you said something about using a singular remote event instead of multiple can potentially be bad practice if not done correctly, in some cases using multiple remote events can actually be better. If you use any of the networking libraries they do this for you so that you're not sending unnecessary data through to the server and / or client, causing you to miss out on potential networking. If you are not careful with your remote events and how you manage them it is very easy to accidentally create a mass of excessive requests, which then causes ping raises because the network is trying to catch up with the excess requests. I personally have done a ton of optimization on my networking and found that using multiple remote events made it easier to manage my network requests, and also minimized my remote event usage by having full client detection for visual effects on the server, this causes less remote usage and allows more room for actual data you need to send through for combat or npc and what not.
Im a beginner with only a little little experiences but taking scripts from others to read it and try to do something else with the same functions helped me learn
tip for learning scripting: don't just follow tutorials. find a video to see how they do it, then use the roblox documentation to find out what each part of the script is doing, then try to write it yourself. You don't have to just go straight unto scripting, you can write "plans" or like psuedo-code to kind of outline what you want to happen and understand sort of what needs to go where for the script to work.
As a guy who made sorting algoritms visualisation in Roblox, I can say that just copying code wont do any good for you, you need to understand it, and know what it does on each line of code. It really made a difference when i tried to copy someone else's sorting algorithm without knowing where it does anything and not knowing where should i visualize, apply states (so the color of an element would change) or where should i add a delay.
As a python developer i understand the basics of coding/scripting of lua so its pretty easy for me to learn the basics i know the variables with the local and i dont understand what the function do or i think i do i dont understand the for but all of the basics i understand
start with an idea and look up the parts you need to make a piece of that idea even if you don't or can't finish it you'll always come back with something learnt
I gave up because i cant make a connection between things Like i know What a if Statement is but What do i best use it for and when i do something What do i use Like for Shift to Sprint do i just Check if Shift is held and change the Speed or What?
I cant ingleand languange too much ( sorry i typo :( ) if i look otger country tutorial maybe my brain will explode cause think inglish languange. And there almost nobody tutorial basic about script. So i hope i luck to build a project
i will not need youtube practice! my mom might let me join some group or something to learn scripting games! that includes roblox games and minecraft mods and normal games!
I'm a self taught scripter of 4 years, and I used to make games with freemodels completely and try to recreate those games but code all of it myself. I would intentionally clone every freemodel into the new game but delete random things in scripts and try to fix them myself.
It took me about a year to learn scripting (don't expect a time any less than this if you *REALLY* want to learn scripting), but eventually I mastered it.
Do u have any games?
I started making Roblox games a couple years ago and I knew almost nothing about scripting, but your channel helped me so much!
woah hello
@@TheOfficialMadwax Hi
When I started coding, I used your tutorials! And I still do! Thanks!
Here's a simple development tip, when creating large scripts with many components it's important to test that each individual part of the script works. You can do this simply by adding a print statement to output something to check if the script was successfully able to reach that part of the script or not.
1:11 You put print("Hello") instead of print(Hello) without the speech marks. If you had put hello with the speak marks the variable would be useless.
This is a really nice inspiration to learn scripting, i used to place around the map 143243215312 free models and i thought that was a game but now, i can actually learn scripting
dont just blindly follow tutorials or you wont he able to make stuff yourself rather do project based learning
Exactly, that's what I tried to say in Tip #1 😄
What does that mean? And how can I do it? I tried doing it but I didn’t do anything :(
@@GamerM8thx
@@madgamersam1293learn scripting and then use it to your scripting knowledge
Well how do I learn?
Extra tip : Before learning to code in Roblox, you should learn the original Lua first to understand the format
Output is sometimes helping,
Sometimes confusing.
It's been almost three weeks since I started learning the concepts of Lua in Roblox. In the first week I saw all the videos I needed to know what are the basics, but when the second week started and I wanted to create more large scripts I wasn't capable because I really didn't understood those "basic concepts" and I didn't know how to implement them in the next line of code. Now I'm focusing on learning step by step the basics and also trying to figure out what logic follows the code to understand my more my decision making in every line. Thank you for the informative video, this will get a lot of people.
Edit: It's been two months since I posted this and I'm still learning a lot. Of course I currently can do comissions but I will not for the moment. To the people who is learning and it's having a bad time learning. Just keep working until you understand it.
bros doing commissions within only 2 months of coding
@@idealedits500 I already made some comissions but i'm not focused on that.
You know there’s a free plugin that gives you a script book and I have it it’s very helpful I use it I would definitely use it its amazing it has every script and even you can do your own if it’s hard use the script book plugin
how about now?
@@Radiance_alpha i'm doing great. I recently got more focused doing back-end since its funnier than front-end
I do like your tips, but the last part where you said something about using a singular remote event instead of multiple can potentially be bad practice if not done correctly, in some cases using multiple remote events can actually be better. If you use any of the networking libraries they do this for you so that you're not sending unnecessary data through to the server and / or client, causing you to miss out on potential networking. If you are not careful with your remote events and how you manage them it is very easy to accidentally create a mass of excessive requests, which then causes ping raises because the network is trying to catch up with the excess requests. I personally have done a ton of optimization on my networking and found that using multiple remote events made it easier to manage my network requests, and also minimized my remote event usage by having full client detection for visual effects on the server, this causes less remote usage and allows more room for actual data you need to send through for combat or npc and what not.
Im a beginner with only a little little experiences but taking scripts from others to read it and try to do something else with the same functions helped me learn
tip for learning scripting: don't just follow tutorials. find a video to see how they do it, then use the roblox documentation to find out what each part of the script is doing, then try to write it yourself. You don't have to just go straight unto scripting, you can write "plans" or like psuedo-code to kind of outline what you want to happen and understand sort of what needs to go where for the script to work.
thanks this really helped me a lot I'm now working on a game with my friend and scripting is just getting to easy now.
As a guy who made sorting algoritms visualisation in Roblox, I can say that just copying code wont do any good for you, you need to understand it, and know what it does on each line of code. It really made a difference when i tried to copy someone else's sorting algorithm without knowing where it does anything and not knowing where should i visualize, apply states (so the color of an element would change) or where should i add a delay.
I'm still commiting #1, but it has eventually worked out for me, and at least, I can understand some of the specific tutorial scripts.
Remember to return to game tutorials aswell as they *gain* the most views and *give* the most help
Thanks for helping that’s really helpful I’m kinda a noob at scripting and this helped me so much thank you so much
I'm glad I could help!
thanks for making videos they are very well explained keep up the good work
To not forget things just write down what they do either in a dicument or on a notebook or anything that can store information.
writing down into notebooks is useless and time wasting, you forget a thing? just open the roblox docs
@@CouldBeAnyone you can add your own specific use cases or anything you found out
Awesome video ❤❤ very helpful :)
i got hearted from my favourite dev :)))
As a python developer i understand the basics of coding/scripting of lua so its pretty easy for me to learn the basics i know the variables with the local and i dont understand what the function do or i think i do i dont understand the for but all of the basics i understand
I do all of the mistakes. Keep up the good work, GamerM8!
byteblox is one of the best if not the best roblox studio tutorial channel (the one that has the roblox studio logo as pfp)
he makes the best tutorials ua-cam.com/video/z09V14x48NI/v-deo.html
fr@@GamerM8
Thanks for the vid! Recently I stopped scripting and forgot everything! Can you make a vid to refresh my memory please? Thank you ❤
gamerm8 wont reply.
ye
yea
Correct
Awesome Video GamerM8, can you please resume the tycoon series though and make it save?
These are so useful!!!!!!!!!!!!!!!!!!!😂😂😂
I FOUND YOU I DORGOR YIHR CHANNEL
you are like a development because you know about roblox so much love,rion
I would like to see more videos on scripting lol I mean like coding, like making simple games, using collection service etc...
i was learning scripting in 1 month now i am a developer
Keep up the good work!
Thank you!
yo pls shout out to me
Amazing Content!
Thank you, I'm glad you like it!
Tip 3: The part i get stumpted and fix it in 10 minutes.
i still remember playing that game with gamer m8
Please let us know if he touches Part, a camera appears for a while and then disappears, please, please, I need to learn about this
Good job! Your videos really helpful. Even im not beginner, its very interesting to watch)
Thanks for watching, I'm glad you find my videos helpful!
@@GamerM8 WoW, I got answer from legend!!))
that is the thing, i don't know where to learn
start with an idea and look up the parts you need to make a piece of that idea
even if you don't or can't finish it you'll always come back with something learnt
Nice video bro! Can you PLEASE make a series on how to make a game like doors?! Thanks bro!
I gave up because i cant make a connection between things Like i know What a if Statement is but What do i best use it for and when i do something What do i use Like for Shift to Sprint do i just Check if Shift is held and change the Speed or What?
hello can you make a game like "write a letter" that you can see the comments or notes of a players on your game
btw im your subscriber since 2020
I got an is not a basepart error on a normal part 😂
easiest script i made
local part = script.parent-- a variable
task.wait(2) -- waits for 2 seconds
part.anchored = false -- makes the part unanchored
OBJECTION!
"anchored" doesn't have the first letter capitalized, so it'd throw an error!
Quickest fix to this is changing it to "Anchored".
0:15 that's what happened to me
How to make a starting game item for deveplop?
Now I can code almost everything
pls help me my play script is noot working and i copy it
How do you make your script have those colors? I'd love to make mine have your colors.
In the preferences, Studio, go down and colours
@@itsray5257 Thanks!
I really don't mind scripting, problem is I only know python language
They're extremely similiar :D
Am’I the only one who has to fix every error? Like even the code works I still have to fix it for no apparent reason
i learned it all my self
Step 1: Learn by yourself and if you do mistakes you learn from them making you script better
Thank u :)
1:25 every thing is red
Ty❤❤
I hope you found the tips helpful!
Can you do more scripting tutorials? Thanks! 🙏
ChatGPT is also very useful for debugging
Chat GPT can make incorrect answers, still best to ask for help on dev forums
Chatgpt needs to stop helping people to script honestly he's bad but i can't talk because i can't even script💀😭😬
@@EGGS181 its an ai.. Why you using "he". Go back to school kid
@@ErenPotter You too because you said "Why you using he"
@@ErenPotter It's "Why are you using he"
The Funny Part Is Idk How To Use Free Script Models Lol
I cant ingleand languange too much ( sorry i typo :( ) if i look otger country tutorial maybe my brain will explode cause think inglish languange. And there almost nobody tutorial basic about script. So i hope i luck to build a project
0:03 aka me all day
I lost more hope that i alredy lost idk why im wasting my time anymore guess scriting was not meant for me
I was a beginner 1.5 years ago
it took me 8 years to learn scripting
“local Help” 💀
i will not need youtube practice! my mom might let me join some group or something to learn scripting games! that includes roblox games and minecraft mods and normal games!
I would not comment on the dev, I have tutorials and google
nice
Thanks!
@@GamerM8 you’re welcome :)
How cooked am i? My first language is C++
One question, *why?*
Pro tip:learc C
w!
POP FILTER
Sigma
ello
Hey
What
I don't know how to script and I'm not planning to know how to script
Then leave
@@itsray5257 no kid
Why don't YOU make a beginner's guide to Roblox coding, I don't think you have made yet right?
Chill, there many tutorial in this platform.
@@Astrolightation oh no I'm not mad 🤣
First
first
Jesus loves you all
THAK