So I was reccomended to watch Peaspod on YouTube I did and I've got to the part about instances() and I saw a comment saying you should get a notepad and note down what he says So I went back to variables and I'm not sure if me going back made me believe I forgot Lua
What's like a good schedule I have high school and I walk to a relatives everyday and I have either 2 or 3 hours I have tried to watch peaspod on those days but I did have to miss out a few What's the easiest way to learn Lua and what's a good schedual?
Most of the time when you are learning Lua(or anything you want to learn), you need to apply your knowledge. For example you might learned how to do variables, try making variables yourself.
local variablelocal = nil variableglobal = nil
Then say you learned operations such as adding and subtracting, combine those two knowledge together by something like this:
local num1 = 1 local num2 = 2 local num3 = 3 print(num1 + num2 + num3)
This learning style makes sure that you master the lesson with full understanding
Challenge yourself for every chapter by combining previous things you learned to the one that you just learned.
Brainstorm or think about the usage for the thing in question.
Try to find an existing game that uses that (for advanced topics).
By the time you do this, you probably wouldn't forget about how to do each thing. Searching up for the solution is fine but always try to challenge yourself first and have a growth mindset.
Goodluck
First off I wan't to say that this is NOT the place to ask this question. The most updated tutorials and information is all on Roblox's developer wiki. Since you are a beginner go to Getting Started on the wiki there you can learn to use Studio from a beginners view. Videos can teach you how to do something but may use deprecated terms such as connect()
instead of Connect()
.
Closed as Not Constructive by Goulstem
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?