Operators - Roblox Beginners Scripting Tutorial #10 (2025)
YouTube transcript, YouTube translate
A quick preview of the first subtitles so you know what the video covers.
welcome back to my Roblox beginner scripting tutorial series my name is balev and in this episode we'll be discussing about operators so just like at the start of every single tutorial we've been doing up until this point we're going to uh click on our script that we created in the previous episode we're going to disable it and then we're going to insert a script inside of the workspace by searching up script like this inserting it and then we're going to right click and rename this to the name of the episode which is going to be operators like this and then we're going to hit enter and then we're also going to delete our code here so now I can introduce to you what operators are so in the last episode we were introduced to if statements which basically allowed us to check for a specific condition that needed to be met before we executed specific parts of our script so an example of this is if we were to write if let's say true then we're going to hit enter and then we're going to write a print statement here saying this statement is true just like this and if we were to run this inside of Studio obviously it's going to print so if we go to the game and hit play then it's going to say this statement is true because what we did was for this condition we literally gave a Boolean condition of true so this automatically makes it a true statement so that's the basics of using uh if statement s but now but now for the purpose of this episode I'm going to be introducing to you a bunch of operators that can add more complexity to our conditionals so that we can have very precise and effective uh comparisons that doesn't just restrict to one condition here we can have multiple conditions and we can even compare different things