Roblox Lua for Beginners - Learn Lua in 20 Minutes

Поділитися
Вставка
  • Опубліковано 28 чер 2024
  • 🔥 FULL ROBLOX LUA COURSE? Go to quizgrid.com to learn more!
    Discord:
    / discord
    Subscribe for more quick content just like this.
    0:00 | MOTIVATION, WHY YOU NEED SCRIPTING
    01:25 | Variables
    02:32 | Instances, Editing Properties
    02:33 | Strings
    03:00 | nil
    03:10 | Booleans
    03:23 | wait()
    03:35 | Numbers Do NOT Have...
    03:46 | task.wait()
    04:02 | Output Window, Practicing Print
    04:16 | Math: Basics
    04:40 | The Next Level... 👀👀👀
    04:48 | Functions
    05:00 | Functions: Parameters
    05:26 | Functions: Returning
    05:40 | Comments
    06:00 | Scope: Global vs. Local
    06:40 | Functions: Calling
    06:46 | if Statements
    07:00 | Equal to, ==
    07:17 | Color3
    07:45 | if Statements: else
    08:04 | if Statements: elseif
    08:30 | Events
    08:40 | FindFirstChild()
    09:16 | Humanoids
    09:50 | Object Browser
    10:09 | Loops
    10:21 | For Loops
    10:31 | While Loops
    10:50 | Loops: break
    11:05 | Debris Service
    11:40 | Tables
    12:00 | Tables: Key, Value Pairs
    12:25 | Let's Practice!
    13:35 | Error Handling: pcall()
    13:50 | Time and Date Functions
    14:00 | Metatables and Metamethods
    14:10 | Debugging Strategies
    14:25 | Script Performance: Optimization Techniques
    14:35 | Understanding Script Context: Server vs. Client
    14:50 | Modules: Importing and Exporting
    15:10 | Advanced Scope: _G and _ENV
    15:35 | Coroutines: Yield and Resume
    15:42 | Objects: Advanced Properties
    15:50 | Using External APIs
    16:15 | Raycasting
    16:35 | Remotes and Remote Functions
    16:55 | Scripting Security: Best Practices
    17:03 | The Future of Scripting...🚀🚀🚀
    17:20 | Concluding Remarks
    17:40 | Credits

КОМЕНТАРІ • 448

  • @TheRobloxCoach
    @TheRobloxCoach  11 місяців тому +80

    Thanks for watching, hope this helped you all!
    🔥 FULL ROBLOX LUA COURSE? Go to quizgrid.com to learn more!

  • @insanities120
    @insanities120 7 місяців тому +198

    That first minute and 23 seconds had me motivated as hell.
    You're an absolute legend.

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому +27

      Thank you those words mean a lot to me.

    • @StrackIsBack
      @StrackIsBack 3 місяці тому +3

      thanks ill skip that part

    • @redcyc0
      @redcyc0 2 місяці тому

      @@StrackIsBack bro couldnt resist being a dick

    • @z3r0g598__
      @z3r0g598__ 2 місяці тому

      top tier glazing💀💀

    • @Gitago
      @Gitago 27 днів тому

      facts

  • @coolkid7377
    @coolkid7377 11 місяців тому +253

    I loved this. It was straight to the point and I sorta needed this. Watched a bunch of beginner script series and don't feel like spending hours watching them for the 50th time. So, this worked as a refreshener for me, not too long, but not too short. Thanks to those beginner script series this refreshener made a lot of sense to me for certain codes.

    • @quintezewright629
      @quintezewright629 10 місяців тому +3

      I agree that it is good cuz it’s short but I wish I did understand at least some of it

    • @coolkid7377
      @coolkid7377 10 місяців тому

      @@quintezewright629 gotta watch other videos too bro. That’s what I did

    • @Masterhong546
      @Masterhong546 10 місяців тому +1

      Fr

    • @simplywastakenfr
      @simplywastakenfr 10 місяців тому +2

      @@Masterhong546 Fr Fr

    • @ztun.
      @ztun. 5 місяців тому

      This is just a refresher a brand new scripter wouldn’t understand a thing

  • @lilballer
    @lilballer 8 місяців тому +59

    You know, I honestly think the underrated part of this was the Motivation, its easy to get demotivated and dissapointed with yourself while doing things like this, I think motivation like that is just what someone needs.

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому +3

      I'm glad I could motivate you a bit :) Keep learning and I wish you the best ❤

  • @KenzoColvy
    @KenzoColvy 7 місяців тому +22

    Bros barber did him dirty 💀

    • @BAKON581
      @BAKON581 6 місяців тому +10

      Bro needs to teach his barber how to script haircuts 💀

    • @S_auce
      @S_auce Місяць тому +5

      ​@@BAKON581 bro needs to code a refund lmfao 😂

    • @BAKON581
      @BAKON581 Місяць тому

      @@S_auce 😆😆😆

  • @grintwigplays
    @grintwigplays Місяць тому

    This is very helpful! I really liked how you explained each item in a concise, clear way!!

  • @paulygon9030
    @paulygon9030 7 місяців тому +17

    I've done a bit of Roblox Lua before, years ago when I was still young, it was what made me choose my course in Information Technology, this is such a great refresher coming back trying to learn this, wonderful video man!

    • @Skillz1023
      @Skillz1023 6 місяців тому

      i assume you use coding in it?

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      Glad I could help you out bro!!!

  • @Paget283
    @Paget283 9 місяців тому +11

    Notes i took up to 6:31:
    Roblox Scripting Basics
    Variables: Stored To Replace Keywords To Different Keywords In Script
    Local: Defines The Scope
    Properties: The Elements Of an Object
    How To Change Properties In Script: local block = workspace:FindFirstChild("MyBlock") *Second Line* block.Brick(Property) = Brick(Property).new("New Propety")
    Strings: Sequences Of Characters
    Strings Examples: local myString = "Hello World!" ** Local Greeting = "Hello, " ** local name = "John"
    Combining Strings: print(String Name 1..String Name 2) Outcome: String Name 1 String Name 2 Example: print(greeting..name) Outcome:"hello John"
    Strings Effectiveness: Can Store Lines, Words, And Setences
    nil: Nothing/no Value
    Nil Example: local myVar = Nil
    Nil Example Outcome: game.Workspace.MyVar = nil
    Nil Effectiveness: Removing Variables Example: If you Put an Object in Nil, It Cant Be Effected In The Script And The Object Cant Effect The Script
    Raining: isRaining
    Variable: Var/myVar
    Block: block/myBlock
    wait command: Stops a Object/Variable For a Specified Time Example: wait(10)
    wait used in Command: print("1") Wait(10) Print("2")
    NO COMMAS IN NUMBERS: Example, 1000 *Correct* 1,000 *Incorrect*
    Second Hand Printing: local Line = FRR *Second Line* print(Line): When You Define A Scope To An Object/Variable You Can Use A Method To Print That Scope Out
    task.wait > wait
    Multiplication: *
    Division: /
    Subraction: -
    Addition: +
    Equal: =
    Paranthesis: ()
    Functions: blocks of code that you can execute multiple times on command
    Function Example: local function sayHello() *Line 2* print("hello World!") *line 3* End
    what is "End": this marks the end of a block of code
    Functions And Combining Strings: local function sayHello() *Line 2* print("Hello "..name) *line 3* End *line 4* sayHello("John"), Outcome: Hello John
    Functions Can Also Return Values
    local localvar = "i am local"
    globalvar = "i am global"
    Example of math:
    local function addnumbers(num1, num2)
    print(num1 + num2)
    end
    addnumbers(4,6)
    Or
    local function Multiplynumbers(num1, num2)
    return num1 + num2
    end
    addnumbers(4,6)
    If Anyone Can Correct Me Or Help Me I will be Appreciative

  • @user-ls4gs6pr3b
    @user-ls4gs6pr3b 5 днів тому

    This video is always saved in one of my tabs. Every single beginner guide I watch, they spend half the time talking about their new games they are making, asking you to like and subscribe, and just don’t really focus on their main topic. They also make everything look so easy. I love this video because it gets straight to the video. Also, more than half the video is focused on the main topic :). Underrated UA-camr honestly

  • @corviknightor
    @corviknightor 11 місяців тому +41

    i just started watching, but this look VERY friendly and worth it! I've always wanted to make my own roblox game but always struggled since most tutorials didn't show too much of the basics, or were WAY too long.

    • @Agrxssive
      @Agrxssive 6 місяців тому

      how is it going

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому +1

      I'm glad I helped you out :) thanks for these words it means a lot to this community.

  • @_beyi
    @_beyi 7 місяців тому +2

    This completely helped me use raycasting besides other stuff.
    This is amazing, I would recommend this for beginners.

  • @ElfilinSupporter
    @ElfilinSupporter 7 місяців тому +1

    the motivation part gave me some comfort :D thank you!

  • @Graphish
    @Graphish 8 місяців тому +6

    Thanks for making us this video. Makes it a whole lot easier to understand just by watching this video!

  • @Draltedwashere
    @Draltedwashere Місяць тому

    Thank you!!!
    I first thought that Lua was super different than Roblox Lua but it is a little similar! Thank you!

  • @decaf117
    @decaf117 5 місяців тому +1

    Love this and love you! That energy is on point! Keep up the good work my man! Happy coding!

  • @JamoFamo
    @JamoFamo 9 місяців тому +67

    This video is more straight to the point than straight to the point itself
    its a quick tutorial about the basics of coding and teaches WAYYY faster than other coding tutorials
    i would reccommend
    and to the creator; you can do num += 1 instead of num = num + 1

    • @tinnyreviews
      @tinnyreviews 9 місяців тому +5

      still does the same thing in the end doesnt it? i see it more as a preference

    • @Akathysia
      @Akathysia 9 місяців тому +6

      @@tinnyreviews you write less in the former so

    • @Zudexa
      @Zudexa 8 місяців тому +6

      @@tinnyreviewsit’s less about preference and more about optimizing your code. Think of it this way if you’re using that string in a script lets say for example because you didn’t shorten your code 100 lines would be 20kb (not actually true, just an example for the sake of my point) but if you shorten the small things and optimize your code that 100 lines could get shortened to lets say 70 lines and the file size of the script would be only 11kb. The more you optimize your code the better things run as well since the computer is reading less to accomplish the same task. Now on roblox it’s not *necessarily* needed unless your making some huge game with multiple devs

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      I'm glad I could help. Any other questions you got make sure to reach out :)

  • @hawkstripe.
    @hawkstripe. 11 місяців тому +12

    having a motivational speech at the start of the video is insane levels of dedication

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      I'm glad I could help motivate developers like you ❤ stay positive brother

  • @user-ll1oc1wj5m
    @user-ll1oc1wj5m 6 місяців тому

    this was the best roblox tutorial i have seen, i have looked for a while

  • @JumpyMan204
    @JumpyMan204 Місяць тому

    Wow! I might try this tomorrow! Thanks! ❤

  • @Waru339
    @Waru339 11 місяців тому +52

    This is the first time i actually understands the way he is explaining Lua. As a French person, learning English Lua is different, but i still can understands how lua works.

    • @likesmoi
      @likesmoi 11 місяців тому +3

      I'm also a french person trying to learn english lua

    • @Ohell-nl9dy
      @Ohell-nl9dy 10 місяців тому +1

      I’m also French and I’m trying to learn how to make Roblox games aswell

    • @7MinutozRapsLetras
      @7MinutozRapsLetras 10 місяців тому

      @@xlasherraiser7497 yeah, its a mix between c# and lua to make it easier for kids that want to script

  • @legaj9112
    @legaj9112 8 місяців тому +3

    Amazing video, keep up the great work👍

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      Thank you so much! You keep up the great work scripting and I'll see you when you become a successful developer! :) ❤

  • @ddxpty343
    @ddxpty343 11 місяців тому +2

    Thank you I’ve been looking for this

  • @Steelxfaze
    @Steelxfaze 11 місяців тому +3

    congrats on 6k!

  • @Gree4e4ka456
    @Gree4e4ka456 9 місяців тому +3

    Thanks you. Video was interesting and this will really help me in Lua learning. I'm Beginner and finally I can understand more.

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      ❤ Thank you so much I'm so glad I could help you out

  • @ColtOgz
    @ColtOgz 4 місяці тому

    Single handedly the BEST beginner course to intro to lua.

  • @nathanrobles9326
    @nathanrobles9326 8 днів тому

    ONE DAY OR DAY ONE? I’ve wanted to be a game designer my entire life. I’m currently entering my junior year of college as a game design major and I’ve been 3D modeling since I was 15 and programming since I was 11. I’m done waiting for the right moment. The moment is now. Thanks for the motivating beginning, man

  • @BetterDeadthenRed1991
    @BetterDeadthenRed1991 8 місяців тому +1

    holy shit i actaully know how to do basic lua now in 20 mins. like long frfr no cap I have learned more from this video then from any other videos in the past 4 years. THANK YOU MAN!

  • @Azipyx
    @Azipyx 11 місяців тому

    TYSM!! You're a lifesaver!

  • @MidPastel
    @MidPastel 9 місяців тому +5

    The motivation part is much needed, keep it up!

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      Thank you, i definitely will keep it up! ❤

  • @red-shroom1004
    @red-shroom1004 3 місяці тому

    i'm a person who really wants to learn code and this really motivates me thank you dude!

  • @lyiscolz6905
    @lyiscolz6905 6 днів тому

    Awesome video man, right now im taking notes and im in 4:33 minutes in and ive been writing for 1 and a half hours your are very informative

    • @Terrie69
      @Terrie69 6 днів тому

      hey bro, my english isnt that good. Can you tell me what we learned from this? ty man

  • @AbsolutelyAri1
    @AbsolutelyAri1 6 місяців тому +5

    Nice
    no extra fluff just straight to the point

    • @TheRobloxCoach
      @TheRobloxCoach  6 місяців тому +3

      Glad I helped

    • @radiantaction7325
      @radiantaction7325 6 місяців тому +4

      bro i thought this is beginner friendly. I understood none😂@@TheRobloxCoach

    • @guillermoaqv7461
      @guillermoaqv7461 4 місяці тому

      @@radiantaction7325 Thats because you dont even bother to learn the basics and dont even put effort to your projects you are just going to end up in a dumpster in life

  • @Sir_wood_I
    @Sir_wood_I 6 місяців тому

    Thank you, this was very helpful. Now I can start the roblox game dev journey

  • @nenudiable-7649
    @nenudiable-7649 9 місяців тому +26

    What I love about this is that it just tells you all the important pieces without splitting them up into making 20 different microgames based around each mechanic.

    • @tomwestling1133
      @tomwestling1133 5 місяців тому +3

      youre not gonna learn unless you "split the up into microgames" do you honestly think scripting is easy? i came back to watch this as recap but i would never watch this as my very first scripting video, its so poorly detailed and youd learn absolutely nothing in the long run

    • @plipy101
      @plipy101 5 місяців тому +1

      @@tomwestling1133 exactly, if you can't piece together the motivation to learn the basics of scripting then you will struggle to apply it even if you already knew it.

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      I'm glad I could help!

  • @noic7991
    @noic7991 11 місяців тому +23

    Honestly one of, if not the best Roblox Developer UA-camrs. He actually has a successful game so you at least know what he's talking about and that he's a trustful source. Keep doing you man and keep up the great work👍♥

    • @TheRobloxCoach
      @TheRobloxCoach  11 місяців тому +6

      Thank you:)

    • @Smurfis
      @Smurfis 11 місяців тому +4

      So does TheDevKing, AlvinBlox and Suphi Kaner, but this is the first extremely useful resource I’ve seen posted by this guy no more short form content this is what you should do g

    • @1aboveall
      @1aboveall 11 місяців тому +2

      @@Smurfis Don't forget CovertCode his series is just really good, but outdated since we don't know what happened to him.

    • @TheRobloxCoach
      @TheRobloxCoach  11 місяців тому

      @@Smurfis thanks! :)

    • @tyridge7714
      @tyridge7714 11 місяців тому +1

      He has a game? What one?

  • @austinculp8049
    @austinculp8049 22 дні тому +8

    Im confused you went a litte fast

    • @user-ls4gs6pr3b
      @user-ls4gs6pr3b 5 днів тому

      Pause the video. Slow it down. Multiple things you could have done. I understood perfectly because I used these methods. You can use them too.

  • @dynamiclyte2633
    @dynamiclyte2633 10 місяців тому +6

    thank you for not farming views over a 30 multiple video guide. I'm definitely subscribing for any more tutorials or showcases

    • @domtu7129
      @domtu7129 10 місяців тому +4

      The problem with these short videos is that he rushes and doesn't explain everything about a certain thing... While the Multi video series videos actually explain the things fully.

    • @user-bo2pb4ws7q
      @user-bo2pb4ws7q Місяць тому

      @@domtu7129 u can see this video and if u misunderstood thing, then go to the full explained video of this thing

  • @FrLacking
    @FrLacking 6 місяців тому

    BRO HAD ME HYPED UP AF

  • @amazonboxes
    @amazonboxes Місяць тому

    okay soo after some practicing and stuff i now got the basics ty

  • @Vvvnvasd
    @Vvvnvasd 11 місяців тому +1

    Thank you Bro!

  • @De_opp
    @De_opp 10 місяців тому +1

    This Tutorial helped me alot thanks!

  • @DriplordVR
    @DriplordVR 7 місяців тому

    The tutorial we all needed

  • @chiimp
    @chiimp 11 місяців тому +13

    I come from Java and this is a great video that just helps me translate what I know from Java to Lua!!! Thanks!

  • @multigameswithryan9215
    @multigameswithryan9215 3 місяці тому +1

    I already knew how to code in python and java, so this just gave me nostalgia to my old coding classes...

  • @catmaninayhat
    @catmaninayhat 5 місяців тому

    im on minute three I can tell ill be learning a lot thank you. :edit: wow minute 6 helped so much

  • @jdfkfdududi1072
    @jdfkfdududi1072 11 місяців тому +1

    Thx dude, helped me to understand that all code languages is similar to themselves like lua c# java and c++

  • @kamilzenaty5753
    @kamilzenaty5753 10 місяців тому

    This the best roblox studio tutorial in my opinion, ty

  • @abloodvessel2750
    @abloodvessel2750 6 місяців тому +2

    this is the most complicated video i have ever seen in my entire life

  • @Battleeditclipz
    @Battleeditclipz 3 місяці тому

    He just taught me how to use if else or elseif statements im definitely gonna keep watching this video.

  • @Sapharious_X
    @Sapharious_X 5 місяців тому +2

    I didn't even get to the scripting part and I could tell I was gonna love this guy. Subscription earned

  • @thalarankthorn-w-
    @thalarankthorn-w- 7 місяців тому +2

    We gon' create a SPFS Clone with this one

  • @kawi3013
    @kawi3013 6 місяців тому

    😊im very new to coding, new year new me!
    Watching this was sooo confusing but its helping. I hope i can learn enough to develop my own Roblox game, thank you for your video💗!

    • @voiddestroyer6471
      @voiddestroyer6471 5 місяців тому

      How good are you?

    • @kawi3013
      @kawi3013 5 місяців тому

      @@voiddestroyer6471 im still pretty much a newbie but I take notes everyday and do simple project's/experiments on Roblox p

  • @BigGonzilla
    @BigGonzilla 11 місяців тому +1

    Thanks for this video, I learned so many things in one night! lol

  • @SwxrmIsHot
    @SwxrmIsHot 7 місяців тому

    This was a very helpful tutorial, and I appreciate it very much, although it was really fast its understand able for a 20 minute tutorial.

  • @bilyez
    @bilyez 9 місяців тому +3

    I love that coach's looking at our souls xD

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      xD anyways thanks for commenting bro keep learning more i believe in you!

  • @AgonKamberi-zg2hu
    @AgonKamberi-zg2hu 6 місяців тому

    I am making a game with cars and so need it to learn lua for coding but this tutorial seems that it will learn me all the things I need

  • @CMO-jo4zv
    @CMO-jo4zv 8 місяців тому +5

    I love how I've heard 30 different versions of coding's useful speeches to the extent I just expect them at the beginning of any "lesson" or learn to code video

    • @CMO-jo4zv
      @CMO-jo4zv 8 місяців тому +2

      Also, thank you for being straight to the point and actually covering multiple codes. Not sitting there for 30 minutes explaining how one line of code says hello

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      no problem, and thank you for spreading positivity in the roblox coach community ❤

  • @fffff_yt9223
    @fffff_yt9223 11 місяців тому +1

    I doing great bro keep up the great work

  • @user-tm8tw1kl9o
    @user-tm8tw1kl9o 7 місяців тому

    only thing i would recommend for the future is moving your facecam to a spot that wont block something you are actively typing/doing. other than that, great video!

  • @tamamshud5879
    @tamamshud5879 4 місяці тому +1

    Bro was SELLING SCRIPTING like his life depended on if and i loved it . LET'S GOOOO

  • @mozeki
    @mozeki 10 місяців тому +5

    Your intro made me believe in myself. I'm hoping to utilize this tutorial for script creations for Transport Fever 2.

  • @shandilnajeeb3812
    @shandilnajeeb3812 10 місяців тому +3

    The intro made me forget this was about Roblox 💀

  • @_xQw7
    @_xQw7 4 місяці тому +11

    Bro lives in "the lvl you cheated" from backrooms

  • @Antylics
    @Antylics 7 місяців тому

    you room looks like it would be perfect for playing VR games, nothing to hit nothing to knock over, clean room 👍👍

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      Honestly yea I moved out a couple months ago haha

  • @Dandoski482
    @Dandoski482 9 місяців тому

    That intro tho >>>>

  • @ColtOgz
    @ColtOgz 4 місяці тому +1

    Yo man I’m thinking about buying your course, can you tell me a little bit about what it covers, also is it premade courses or is it live action?

  • @coleholmes4533
    @coleholmes4533 10 місяців тому

    dude that speech in the beginning gives me that 3AM motivation

  • @jessicabasha7640
    @jessicabasha7640 10 місяців тому

    best tut ever

  • @yeetteey9248
    @yeetteey9248 11 місяців тому +2

    the lua deity has given us more divine knowledge

  • @nahby
    @nahby 10 місяців тому +2

    Took a 2 hour lua youtube course, should know some of the things to start. It didn't include roblox parts and such, but that's fine.

  • @f5tornado831
    @f5tornado831 6 місяців тому +1

    When you're the on making a tutorial you think it's very easy to learn from it but for the people who don't already know it it's just confusing lol. Though these tutorials are a bit easier to understand now that I know a bit of Javascript.

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      True. I'll try to improve that in my next videos!

  • @cervvix
    @cervvix 10 місяців тому

    9:53 i need this :) ❤

  • @oOFoof-wo1vd
    @oOFoof-wo1vd Місяць тому

    For the people who are struggling, I’d recommend learning another language, such as python or JavaScript, build a couple projects, then come back, this will make LUa 10 times easier to understand

    • @egirl5806
      @egirl5806 Місяць тому

      isn't lua is small and easier compared to python?

  • @RoofJordan
    @RoofJordan 11 місяців тому +1

    Hey RobloxCoach, I was wondering if you could make a tutorial how to make like a roblox boxing game? I mainly need punching, gloves, and dodges. I would appreciate if you did

  • @itsdelta5563
    @itsdelta5563 6 місяців тому

    Yes, maybe for the English community it is easy to understand, but for people who are Spanish or speak some Latin language it is very difficult, you see, it has nothing to do with the language, but with the people who are in the language,
    lua works in English, and many Mexican or Latin-speaking people did not have or do not even have the opportunity to study English, so that is where the first complication comes,
    The second is that if there is someone who knows Lua in Spanish, it is very difficult for it to expand, because in most cases, either they sell you a non-existent course, or they simply make videos with "copy the script from the description"
    and it doesn't help at all
    There is no one who teaches us, much less who wants to teach us,
    I know it's shit, but that's life haha
    good video damn

  • @DevEctoplasm
    @DevEctoplasm 6 місяців тому

    ty

  • @randomshiba779
    @randomshiba779 10 місяців тому +3

    i could have chosen unity but i've been passionate about roblox for years man. so many tutorials out there were made by or for kids, finally i found this hidden gem.

    • @Giuyo
      @Giuyo 8 місяців тому

      And I could have chosen Love2D so i could make very cool 2D games (even cooler than Unity!!!!!1+1112)

  • @stellarxdev
    @stellarxdev 11 місяців тому +9

    hey, do you think you could code a keycard door , but the keycard hides when its clicked and checks a boolvalue in the player, and when you click the keycard reader it checks for the true bool and if its true opens? This would help a lot for my horror game.

  • @tee69586
    @tee69586 11 місяців тому

    Ty

  • @HappensInTheGame
    @HappensInTheGame 6 місяців тому

    What’s crazy is I’m doing Fivem GTA and I learned from this

  • @Roxy_pis_dans_sa_tache
    @Roxy_pis_dans_sa_tache 3 місяці тому

    OMG THX ... no a serie of 6H ...

  • @CRiTDMG_
    @CRiTDMG_ 7 місяців тому

    He had me sold in the first minute. lol. i'm locking in.

    • @TheRobloxCoach
      @TheRobloxCoach  5 місяців тому

      Thanks brother. Keep up the good work.

    • @femi_omoluabi
      @femi_omoluabi Місяць тому

      @@TheRobloxCoach your video really helped the development of my game thank you

  • @glue-eater300
    @glue-eater300 11 місяців тому

    dont listen to that ronnie mcnutt pfp, this video was great and im so thankful for your guidance

  • @Vevorics
    @Vevorics 11 місяців тому +1

    Motovation💗💗

  • @TheDevelopmentHive
    @TheDevelopmentHive 11 місяців тому +313

    its not about games its about DRIVE ITS ABOUT POW-

    • @medyassinchaal4784
      @medyassinchaal4784 10 місяців тому +11

      This comment deserves more than 6 likes

    • @TheDevelopmentHive
      @TheDevelopmentHive 10 місяців тому

      @@medyassinchaal4784 y e s

    • @TMCT.22
      @TMCT.22 10 місяців тому +7

      16 likes and only 1 reply? Lemme fix that

    • @TheDevelopmentHive
      @TheDevelopmentHive 10 місяців тому +5

      @@TMCT.22 WOOOOOO

    • @TMCT.22
      @TMCT.22 10 місяців тому +3

      @@TheDevelopmentHive WOOOOOOOO YEAH BABY THATS WHAT IVE BEEN WAITIN FOR, wooooooo

  • @chifrudo5114
    @chifrudo5114 3 місяці тому

    Ty now i made rells seas

  • @ImperialLordVader
    @ImperialLordVader 6 днів тому +2

    Yo bro thanks but, can you give the mic some space 😭

  • @treatzat
    @treatzat 10 місяців тому +17

    Just remember that learning to script takes a while and you won't master it in two weeks, just keep on going and don't get discouraged.

    • @shalekthewise
      @shalekthewise 6 місяців тому

      Any helpful tips to learn better? Like watching videos, looking at open source games and trying to understand them, or looking at pre-made objects made by people?

  • @tillydill
    @tillydill 8 місяців тому

    i need this

  • @houghjanis
    @houghjanis 10 днів тому +1

    This video is great for listening to but i dont think i would be able to follow along if i were trying to type all this

  • @azqatclabdullah9024
    @azqatclabdullah9024 9 місяців тому +1

    3:33 u can right thousand as a thousand, not as a thousand.
    --TheRobloxCoach 2023 💀💀

  • @user-vi5he2il4s
    @user-vi5he2il4s 5 днів тому +1

    just time stamping my progress ignore this comment 7:41

  • @salmonarepros
    @salmonarepros 5 місяців тому +1

    i didn't learn anything. i really do feel like it is impossible for me to learn coding

  • @Imonlyalienafterall
    @Imonlyalienafterall 23 дні тому

    good intro and stuff but like i wouldnt have clicked on the video if i didnt think i could or didnt want to

  • @16GTAG
    @16GTAG 3 місяці тому

    Bro just taught me lua in 20 mins W

  • @Lomen3824
    @Lomen3824 7 днів тому +1

    That haircut😭🙏🧌🧌🧌

  • @silv3rrrrrr
    @silv3rrrrrr 29 днів тому

    Your video is helpful but it would be nice if you had put your facecam on the right side instead of the left so its easier to see what you're writing

  • @itsbadvibes6504
    @itsbadvibes6504 3 місяці тому

    Hey bro how often do you recommend I pause this video to refresh my mind?

  • @wolfsyncc
    @wolfsyncc 7 місяців тому +1

    6:09 love how much trouble it is to say lol

  • @natalywaly
    @natalywaly 5 місяців тому

    I’m trying to learn for a school project I’m gonna make a Roblox game for it LMAOO but I realized I actually don’t know as much lua as I need to and I have one week for this