Absolute beginner's guide to scripting: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Mindraker
rev vandal
>Ozzypig
No edit summary
Line 3: Line 3:


==Introduction==
==Introduction==
This tutorial shows how to do some basic scripting.  It explains how to script in the simplest terms possible, and is designed for people with little or no experience with scripting.
This tutorial shows how to do some basic scripting.  It explains how to script in the simplest terms possible, and is designed for people with very little or absolutely no experience with scripting.


==What is scripting?==
==What is scripting?==
Scripting is a way to tell the computer what to do.  However, computers can only understand commands if you tell them '''exactly''' what to do, in a specific code. ROBLOX  [[RBX.lua.Script (Object)|Scripts]] are commands in a coding language called [[Lua_Help|Lua]]. Lua is not-so-hard to understand, depending on the way you want to use it.
Scripting is a way to tell the computer what to do.  However, computers can only understand commands to do things if you tell them '''exactly''' what to do, in a specific code or language. ROBLOX  [[RBX.lua.Script (Object)|Scripts]] are commands in a coding language called [[Lua_Help|Lua]]. Lua is not-so-hard to understand, depending on the way you want to use it. Lua was made to be simple to read and easy to understand what it does.
 
'''''It's "Lua", not "LUA". It's not an acronym, so don't capitalize it.'''''
 
==What is scripting, in ROBLOX?==
ROBLOX Lua is exactly the same as normal Lua, only with changed functionality. Different features have been '''taken out''' of ROBLOX Lua for various reasons (security, glitches). A key addition to ROBLOX Lua is the ability to navigate a tree of objects in your game using a '''parent-child relationship''' between objects (sometimes called Instances in ROBLOX Lua). This tutorial will teach you a basic way to use this '''family tree''' to do refer to objects in your game.
 
This tutorial teaches how to get simple things to happen in ROBLOX. This guide does not teach basic Lua syntax except for a few details. It skips over many things and you are encouraged to read more about how Lua code is read by the computer.


==Your first script==
==Your first script==
Already you're about to make your very first script. We'll be executing the script from a place in ROBLOX Studio called the [[Scripting#Fundamentals|Command Bar]], which allows you to execute a single line of script instantly.
You are about to make your very first script - a script to kill yourself. There is multiple ways to execute code in ROBLOX, but you will be executing the script from a place in ROBLOX Studio called the [[Scripting#Fundamentals|Command Bar]]. It allows you to execute a single line of script instantly (and without many restrictions). The command bar is only for one line of code, but this is not a problem because the script is only one line.


===Being specific===
===Being specific===
Let's make the most basic script:  a suicide script.  When it executes, it kills you.  Scripting is just giving commands to the computer.
When you first create a script, you have to '''know what it is meant''' to do at '''exactly what time''' and '''under what conditions'''. For a script to kill yourself, it's pretty obvious: it kills you.  Scripting is just giving commands to the computer, so you just need a line of code to do something to kill your character.
 
'''''Remember that scripts can break with just one letter or symbol being wrong.'''''


How ''do'' you kill a playerThere are two ways to kill a character:  disconnect their Head from their Torso, or have their [[RBX.lua.Humanoid (Object)|Humanoid's]] health dropped to zero. Don't worry what a [[RBX.lua.Humanoid (Object)|Humanoid]] is, we'll use the first method for right now.
How ''do'' you kill your characterYou need to set the [[RBX.lua.Humanoid (Object)|Humanoid's]] health set to zero. A [[RBX.lua.Humanoid (Object)|Humanoid]] is one of the types of objects in ROBLOX Lua that controls player's health. There's many ways to set the health to zero, such as removing the character's head or specifically setting the health to zero. For now, we'll just remove their head.


The game doesn't know whom to kill, until you specify the username of the person whom you want to killThink of the structure of a ROBLOX game as a tree.  The trunk is called "game"Then there is a branch, called "Workspace".  Think of all the bricks as branches on that "Workspace" branch([[RBX.lua.Part (Object)|Bricks]], by the way, are not stored by their position in the game.  They are organized like leaves on the branches of this tree.) You are going to be a branch, called by your username, on the "Workspace" branch, on the "game" trunk.
ROBLOX won't remove anything until told, so we need to navigate the tree structure of ROBLOX games to find the character's head and remove itThe structure of a ROBLOX game is like a tree, and the trunk is a [[DataModel]] object called '''game'''There is a "branch" (known as a '''child''') called [[Workspace]].  Think of all the bricks in your game '''children''' on the Workspace children.  [[RBX.lua.Part (Object)|Bricks]] are organized as more children of the workspaceYour character is a child of the Workspace, and the Workspace is a child of '''game'''.


[[Image:tree.png|A visual description of the ROBLOX game tree]]
[[Image:tree.png|A visual description of the ROBLOX game "family tree"]]


Note that both the Players and the Workspace branch has a branch named after a specific user "jediknightkrazy". That's because there are two branches named after you, your player, and your character.
Note that children of '''game''' are known as '''game services''', which provide functionality for your game automatically. When you enter any place, you have a [[Player]] object named after you inside the [[Players]] game service and a model named after you in the Workspace (called a character). Your character holds your head, torso, limbs and other visual stuff. The player object does other things that won't be covered right now.


===Translating to Lua===
ROBLOX Studio has a nice tool that lets you view the family tree visually. It is called the [[Explorer#The_Explorer_and_Properties_Bar,Explorer window]]. To open it, click View > Explorer. It is very self explanatory.
A script needs to be in a special coding language called [[Lua_Help|Lua]].
This section will walk you through translating a basic English sentence to Lua code. Note: This is only to show you how to make a code from your english sentence. A Lua code does not change english into code, you must put Lua code for the computer to read.


===Writing Lua code===


Here's our starting command:
The ultimate trick to being a scripter is to mastering how to make code that does what you want, when you want it. Since you are a beginner, you will be walked through the steps to making your code do what you want starting from English to Lua code. Do not think of scripting as translating to a language; think of scripting as giving orders on what to do.
<pre>I want to delete jediknightkrazy's head.</pre>


Naturally, ROBLOX won't like that very much because it is in english. Remember the tree from the last section? First we have to tell ROBLOX where to find "jediknightkrazy", and then his head.
Here's our starting command. It's what we want to happen, and it has been written in plain English.


<pre>In game, find Workspace, find jediknightkrazy, then find his Head.</pre>
<pre>Remove jediknightkrazy's head.</pre>


In Lua, you go down the tree like this by using a dot: (.) This is required in every script that you wish to use a command line to find children or parents of objects.
Naturally, ROBLOX will not like that very much because it's in English! You have to figure out how to express what you want to happen in Lua code.


<pre>delete game.Workspace.jediknightkrazy.Head</pre>
<pre>In game, find Workspace, find jediknightkrazy, find his Head, and remove it.</pre>


This is almost a working Lua statement. Now, to actually delete the head, a ''function'' must be used. To use this function, just type a colon (:) after the statement (in this case, after Head), and then the function you want to use, which in this case, is "Remove". Then, put a pair of parentheses after the function name to tell the statement that you want this to be a function.
'''game''' is the root of all things in your game. We need to "go down" the family tree and find the right brick to remove. To get an object that is a child of another object this, you use a period ('''.''') after the parent object, then the child object's name. Going through the family tree, we get this:


<pre>game.Workspace.jediknightkrazy.Head:Remove()</pre>
<pre>Delete game.Workspace.jediknightkrazy.Head</pre>


If your name isn't jediknightkrazy, substitute your name for jediknightkrazy:
This is almost a working ROBLOX Lua statement! Now, to actually remove the head, a '''method''' must be used. Methods are functions that do specific things in ROBLOX for you by '''calling''' them. Methods are functions of objects in ROBLOX Lua. To call a method on an object in Lua, you use a colon (''':''') after the object. You then state the name of the method, then two parenthesis with nothing in them. Methods and functions take '''arguments''', which are values given to the function to change how it works. The "remove" method takes no arguments, so we place the parenthesis there to show that there's nothing else we have to give to the remove method.


<pre>game.Workspace.YourName.Head:Remove()</pre>
<pre>game.Workspace.jediknightkrazy.Head:remove()</pre>


To experiment a bit, try deleting the Torso instead.
The above statement is '''syntactically correct''' Lua code. However, your name probably isn't jediknightkrazy, so substitute your name in. If your name was "AwesomeSocks", then you would use the following:
 
<pre>game.Workspace.AwesomeSocks.Head:remove()</pre>
 
To compare this to English, it would be like saying "The sky has trees". It is ''grammatically correct'' English, but an ''untrue'' statement. If you state the name of things that do not exist, your script won't work and an error will occur.


===Testing the script===
===Testing the script===
Open ROBLOX Studio and click File > New. Add a baseplate and a spawn.


To add a baseplate: Click Insert in the game window, NOT in the menu. Select "Free Models" in the drop down list at the right of the screen. Type "baseplate" and click Search. Add one that looks good.  
To test your fine script, enter any normal ROBLOX place in Solo mode so that you can walk around with your character. Open up [[ROBLOX Studio]] and open the [[Scripting#Fundamentals|Command Bar]]. Type your one-lined wonder in, and hit enter to run it.


To add a spawn: Select "Game Objects" in the drop-down list and click on a grey (neutral) spawn. + 
If your head just disappeared and you heard an "Oughh!" sound because your character just died, then you have succeeded. Your script works.
Now, in the menu, click Tools > Test > Visit Solo. This is where you can test your places without uploading them!
Once it loads, right click in the Toolbar and check Command if it isn't checked already. A small textbox bar labelled "Command" should appear at bottom of the screen. In there, type:
<pre>game.Workspace.Player.Head:Remove()</pre>
 
Don't replace Player with your username in Test mode, because your name is always "Player" in Test mode.
Type it, don't just copy and paste! 
Hit enter. If your head vanishes and you die, you've done it! You've made your first script
Now, try your Torso. Try removing the Baseplate; it's called "Base".


==Setting values and making objects==
If your script does not work and nothing happens, expect this to happen a lot. Scripters (and programmers alike) run into the problem of their scripts not doing something right because their code has bugs in it. Not to worry, though - there is [[Output,a key tool]] that can help you debug your scripts and get them working.
What about actually changing the value of an object, as opposed to removing an object?  Earlier it was mentioned that there were two ways to kill someone. The more complicated way is setting one's Health to 0.  The Health is contained in a [[RBX.lua.Humanoid (Object)|Humanoid]] object (Humanoid.Health), which is contained within the character (game.Workspace.Player).  


Example:
==Setting Values in ROBLOX Lua==
<pre>game.Workspace.Player.Humanoid.Health</pre>
What about changing values of objects in ROBLOX Lua? There is a way to do that, and it's more of the same. To set your health to zero (rather than going "''Off with your head!''") you need to set the Health property of your humanoid to zero. To set properties of objects, you use a period ('''.'''), the property name, an equals sign and the value.
However, what about setting a value?  In Lua, you set a value with the = sign.  Put what you want to change; on the left. Then what you want to change it to; on the right:
<pre>game.Workspace.Player.Humanoid.Health = 0</pre>
Type it in the command bar like before, and you should be able to kill yourself without beheading yourself.


Note:in play solo from edit mode, your name is player not your username. Also, Workspace is a special object. Roblox was nice enough to let use use the phrase <pre>workspace</pre> rather than <pre>game.Workspace</pre> Workspace is the only special object that Roblox allows us to do this with.
<pre>game.Workspace.jediknightkrazy.Humanoid.Health = 0</pre>


Example:
You will learn specifics about what is what in ROBLOX Lua later (such as "''What does the equals sign really do?''"). For now, you can consider yourself a really basic scripter that can call methods and change property values.
<pre>workspace.Player.Humanoid.Health = 0</pre>


==Getting a script in your place==
Protip: The Workspace is a special game service. Since it is used a lot in scripting, ROBLOX Lua has a built-in constant (just like <pre>game</pre>) called <pre>workspace</pre> rather than <pre>game.Workspace</pre>. You'll learn about constants and variables later, but know that the Workspace is the only object in ROBLOX Lua that has it's own built in constant.
To make a script in [[Roblox_Studio|ROBLOX Studio]], just click Insert-->Object-->Script, then you have a script you can edit in your own place.  To learn how to make useful scripts, I recommend trying to read an existing script, like a Reset Tool or a deadly block. To open your new script, double click on it from the explorer bar. If your explorer bar is not already open, click View-->Explorer.
 
<pre>workspace.jediknightkrazy.Humanoid.Health = 0</pre>
 
==Inserting a Script object==
To add a new script in [[Roblox_Studio|ROBLOX Studio]], just click ''Insert'' > ''Object...'' > ''Script''. You'll find a blank script has been added to the Workspace.
[[Image:Explorerwindow.JPG|none]]
[[Image:Explorerwindow.JPG|none]]
Try modifying it to do different things it is exactly like the command bar we have been using, but now you can have multiple lines of code.[[Image:Insertscript.JPG]]
Try modifying it to do different things it is exactly like the command bar we have been using, but now you can have multiple lines of code.[[Image:Insertscript.JPG]]


===Adding a script===
===Editing a script in ROBLOX Studio===
Remember to use [[Roblox_Studio|ROBLOX Studio]], '''NOT''' "build", or [[Solo_mode|"solo"]] to edit your scripts, because those modes will run your place when you enter, including running all of your scripts.
To open a script object's '''source''' (the code in the script object) for editing in ROBLOX Studio, you can double-click it in the Explorer window and a text editor will open where you can change your script's source. Whatever you add, remove or change in this text editor is ''permanent'', and besides the "undo" button, these changes cannot be undone once the editor is closed.
<br>
The script will execute as soon as your place loads, so none of the killing scripts from last tutorial are going to work in your place unless you are there.


'''IMPORTANT:''' When a script encounters an error, it stops running, or ''breaks''. If your scripts ran into any errors the errors will display in the output bar. To access this bar, click View-->OutPut.
===Starting and Stopping your script===
 
Script objects run their code under the following conditions:
===Editing a script in ROBLOX Studio===
* The script is added to the game (Select the script in the Explorer window and cut it (CTRL+X), then paste it back into the game (CTRL+V, or right click Workspace and hit "Paste-into").
Now, your new script should open up a text editor that says
* The script's disabled property is changed to false (Select the script in the Explorer window and toggle it's Disabled property in the Properties window).
<pre>print("Hello World!")</pre>
"What does 'print()' do?".  Print() simply prints the contents, in the parenthesis, into the Output Window. Click the [http://wiki.roblox.com/index.php?title=Image:Play.JPG Play] button in toolbar and look in the Output Window. Remember that the parenthesis means that it is a function. print(), is trying to function the content in the parenthesis. Some functions we can not call using the method operation. The method operation is (:). We can not print a value of something using the method operation, but we can print using the function operation. print()


===Testing your script===
<!-- ozzypig stopped editing here... -->
To test, open the Test solo mode as described before. This time, don't type anything in the Command bar. They should run automatically. Scripts run automatically and run very fast. They run so fast that they would have already have run in your place before you can even look in the output.


== Script Creation ==
== Script Creation ==

Revision as of 05:51, 23 December 2010

Introduction

This tutorial shows how to do some basic scripting. It explains how to script in the simplest terms possible, and is designed for people with very little or absolutely no experience with scripting.

What is scripting?

Scripting is a way to tell the computer what to do. However, computers can only understand commands to do things if you tell them exactly what to do, in a specific code or language. ROBLOX Scripts are commands in a coding language called Lua. Lua is not-so-hard to understand, depending on the way you want to use it. Lua was made to be simple to read and easy to understand what it does.

It's "Lua", not "LUA". It's not an acronym, so don't capitalize it.

What is scripting, in ROBLOX?

ROBLOX Lua is exactly the same as normal Lua, only with changed functionality. Different features have been taken out of ROBLOX Lua for various reasons (security, glitches). A key addition to ROBLOX Lua is the ability to navigate a tree of objects in your game using a parent-child relationship between objects (sometimes called Instances in ROBLOX Lua). This tutorial will teach you a basic way to use this family tree to do refer to objects in your game.

This tutorial teaches how to get simple things to happen in ROBLOX. This guide does not teach basic Lua syntax except for a few details. It skips over many things and you are encouraged to read more about how Lua code is read by the computer.

Your first script

You are about to make your very first script - a script to kill yourself. There is multiple ways to execute code in ROBLOX, but you will be executing the script from a place in ROBLOX Studio called the Command Bar. It allows you to execute a single line of script instantly (and without many restrictions). The command bar is only for one line of code, but this is not a problem because the script is only one line.

Being specific

When you first create a script, you have to know what it is meant to do at exactly what time and under what conditions. For a script to kill yourself, it's pretty obvious: it kills you. Scripting is just giving commands to the computer, so you just need a line of code to do something to kill your character.

Remember that scripts can break with just one letter or symbol being wrong.

How do you kill your character? You need to set the Humanoid's health set to zero. A Humanoid is one of the types of objects in ROBLOX Lua that controls player's health. There's many ways to set the health to zero, such as removing the character's head or specifically setting the health to zero. For now, we'll just remove their head.

ROBLOX won't remove anything until told, so we need to navigate the tree structure of ROBLOX games to find the character's head and remove it. The structure of a ROBLOX game is like a tree, and the trunk is a DataModel object called game. There is a "branch" (known as a child) called Workspace. Think of all the bricks in your game children on the Workspace children. Bricks are organized as more children of the workspace. Your character is a child of the Workspace, and the Workspace is a child of game.

A visual description of the ROBLOX game "family tree"

Note that children of game are known as game services, which provide functionality for your game automatically. When you enter any place, you have a Player object named after you inside the Players game service and a model named after you in the Workspace (called a character). Your character holds your head, torso, limbs and other visual stuff. The player object does other things that won't be covered right now.

ROBLOX Studio has a nice tool that lets you view the family tree visually. It is called the Explorer#The_Explorer_and_Properties_Bar,Explorer window. To open it, click View > Explorer. It is very self explanatory.

Writing Lua code

The ultimate trick to being a scripter is to mastering how to make code that does what you want, when you want it. Since you are a beginner, you will be walked through the steps to making your code do what you want starting from English to Lua code. Do not think of scripting as translating to a language; think of scripting as giving orders on what to do.

Here's our starting command. It's what we want to happen, and it has been written in plain English.

Remove jediknightkrazy's head.

Naturally, ROBLOX will not like that very much because it's in English! You have to figure out how to express what you want to happen in Lua code.

In game, find Workspace, find jediknightkrazy, find his Head, and remove it.

game is the root of all things in your game. We need to "go down" the family tree and find the right brick to remove. To get an object that is a child of another object this, you use a period (.) after the parent object, then the child object's name. Going through the family tree, we get this:

Delete game.Workspace.jediknightkrazy.Head

This is almost a working ROBLOX Lua statement! Now, to actually remove the head, a method must be used. Methods are functions that do specific things in ROBLOX for you by calling them. Methods are functions of objects in ROBLOX Lua. To call a method on an object in Lua, you use a colon (:) after the object. You then state the name of the method, then two parenthesis with nothing in them. Methods and functions take arguments, which are values given to the function to change how it works. The "remove" method takes no arguments, so we place the parenthesis there to show that there's nothing else we have to give to the remove method.

game.Workspace.jediknightkrazy.Head:remove()

The above statement is syntactically correct Lua code. However, your name probably isn't jediknightkrazy, so substitute your name in. If your name was "AwesomeSocks", then you would use the following:

game.Workspace.AwesomeSocks.Head:remove()

To compare this to English, it would be like saying "The sky has trees". It is grammatically correct English, but an untrue statement. If you state the name of things that do not exist, your script won't work and an error will occur.

Testing the script

To test your fine script, enter any normal ROBLOX place in Solo mode so that you can walk around with your character. Open up ROBLOX Studio and open the Command Bar. Type your one-lined wonder in, and hit enter to run it.

If your head just disappeared and you heard an "Oughh!" sound because your character just died, then you have succeeded. Your script works.

If your script does not work and nothing happens, expect this to happen a lot. Scripters (and programmers alike) run into the problem of their scripts not doing something right because their code has bugs in it. Not to worry, though - there is Output,a key tool that can help you debug your scripts and get them working.

Setting Values in ROBLOX Lua

What about changing values of objects in ROBLOX Lua? There is a way to do that, and it's more of the same. To set your health to zero (rather than going "Off with your head!") you need to set the Health property of your humanoid to zero. To set properties of objects, you use a period (.), the property name, an equals sign and the value.

game.Workspace.jediknightkrazy.Humanoid.Health = 0

You will learn specifics about what is what in ROBLOX Lua later (such as "What does the equals sign really do?"). For now, you can consider yourself a really basic scripter that can call methods and change property values.

Protip: The Workspace is a special game service. Since it is used a lot in scripting, ROBLOX Lua has a built-in constant (just like

game

) called

workspace

rather than

game.Workspace

. You'll learn about constants and variables later, but know that the Workspace is the only object in ROBLOX Lua that has it's own built in constant.

workspace.jediknightkrazy.Humanoid.Health = 0

Inserting a Script object

To add a new script in ROBLOX Studio, just click Insert > Object... > Script. You'll find a blank script has been added to the Workspace.

Try modifying it to do different things it is exactly like the command bar we have been using, but now you can have multiple lines of code.

Editing a script in ROBLOX Studio

To open a script object's source (the code in the script object) for editing in ROBLOX Studio, you can double-click it in the Explorer window and a text editor will open where you can change your script's source. Whatever you add, remove or change in this text editor is permanent, and besides the "undo" button, these changes cannot be undone once the editor is closed.

Starting and Stopping your script

Script objects run their code under the following conditions:

  • The script is added to the game (Select the script in the Explorer window and cut it (CTRL+X), then paste it back into the game (CTRL+V, or right click Workspace and hit "Paste-into").
  • The script's disabled property is changed to false (Select the script in the Explorer window and toggle it's Disabled property in the Properties window).


Script Creation

There are 5 topics that will be answered here:

  • Creating the Script
  • Tagging Objects
  • The Listening Event
  • The Function
  • Modifying Objects/Tags

NOTE: All work, building and scripting, should be done in Edit Mode. All these lessons will be shown as if you are in Edit Mode. To open Edit Mode, on your desktop screen, hit Start>Programs>ROBLOX>ROBLOX Studio. Then go to your profile, then click "Edit".

Creating the Script

To get a script go in Roblox Studio or Solo Mode then simply select Insert>Object. Now a window will appear. In the newly appeared window, click on "Script" and OK. You should find the script inside "Workspace" in the explorer tab. If you don't see any explorer window up, go to View >Explorer.

Now to open the script, just double-click it. If you did it right, a window will cover the whole ingame screen, and the browser should look a bit more like Microsoft Word. And you will find the line "print("Hello World!")" Before you start, just go ahead and delete that line.

Tagging Objects

Assuming the script is still under Workspace, that is where your script will run. Let's say you want a brick turning invisible/visible, back and forth when touched. The script needs to know where that brick is before modifying it.

Now, tagging objects are not necessary, but it can make scripting a lot less work. Here's an example of tagging objects:

brick = game.Workspace.Brick

That will tag the brick under the name you assigned. You can set the name to absolutely anything. You can have as many tags as you want.

If you didn't tag it, every time you try making the script modify the object, you would have to put the line "game.Workspace.Brick" every single time. Tags are much simpler, since you would only have to put the name you assigned. Name the brick desired to "Brick", and tag it in the script by typing the example above. Note that tagging is the same as assigning a variable.

The Listening Event

Now we're getting into the meat of scripting. Sure, the script knows where the brick is, but that's all. It can't do anything else. Now we're jumping into a listening event.

A listening event is the trigger of the script. This is going to tell the script to do something if the listener finds the trigger fired. This is one important part of the script, otherwise you couldn't really make scripts wait for anything.

You still should have the script with the tag in it. We're going to make the script listen for being touched. Here's an example:

brick.Touched:connect(onTouch)

If the brick is Touched, it will connect the (function). Keep in mind that the name inside the parentheses is the name of the function.

This is not the only listener type. There are many more to use, some of which require some familiarity with scripting. Here is a very well-done reference page set up by MrDoomBringer.

This is where you can find more help in the future, when you begin to understand scripting more. Not only does it show Events, but also shows other scripting references need for other aspects of scripting.

Put the line "brick.Touched:connect(onTouch)" a line or two below the tag "brick = game.Workspace.Brick"

The Function

Your script is getting better and better, but where is the function? Your script will break if it doesn't have one of those for the listener to refer the script to.

What is a function? It is where all your modifying work will be done. It is also an important part to your scripting. Without it, you could not make the script modify objects from listeners. Another example:

function onTouch(part)

end 

There is the function. As you can see, the function has "onTouch". The listener from last lesson is trying to refer to the function. The listener is going to tell the script to run through this function and do whatever is found inside. Notice after "onTouch". This is the tag of the object that the listener found that touched the brick. This is not always needed, especially for different listeners. Most times, with other listening types unlike touching listeners, you would just place this:

function onTouch() 

end 

But back to what we're looking at. The tag is the object that touched the brick. You can play with this object for fun later. Now notice also two lines below the function: "end". You will need one of these for every function and other aspect of scripting, such as "if" statements. Always remember this when scripting.

Now, make the lines from first example, except put it two lines under the tag, and one line above the listener.

Modifying Objects/Tags

The script knows the brick, will wait until it's touched, and has the function to use. But it doesn't know what to do to the brick.

This is where tagging objects saves you time. We wanted it to flicker invisible/visible, so here's an example:

brick.Transparency = 1 
wait(1) 
brick.Transparency = 0 

These lines will alter the brick as we wanted. The brick's transparency is changed to "1", which is completely invisible. The "wait(1)" line will make the script wait for one second before continuing, then the brick's transparency will be put back at 0, which is completely visible. You can alter "wait(1)" to any number inside the parentheses. Whatever number you put inside the parentheses will be the amount of time it will wait in seconds.

Put those 3 lines right under the line "function onTouch(part)" and above the line "end".

Complete script

brick = game.Workspace.Brick --tagging the brick

function onTouch(part) --the function

	brick.Transparency = 1 --what the function is to do with the brick
	wait(1) 
	brick.Transparency = 0 
end 

brick.Touched:connect(onTouch) --listening event


Advanced scripting techniques

Make your own functions

While scripting, you may want to make your own function to call later. This is easy enough, here is the syntax (grammar) for doing so: (NOTE: These functions are called without a colon [:])

function <functionname>(<parameter>)
<statements>
end

<functionname>(<parameters>)

A parameter is a way to give data to a function. An example of a parameter: a Humanoid has a takeDamage() function. You have to tell it how much damage to take. You would type Humanoid:takeDamage(100) to take 100 damage. (NOTE: the takeDamage function will not take damage if the humanoid has a ForceField. Use this function for weapons instead of directly setting the health, to prevent spawnkillers)

Functions can also return a value, which means they can be used instead of a constant (like a number) or a variable (covered below):

function <functionname>(<parameters>)
<statements>
return <valueobtainedfromstatements>
end

<somevariable> = <functionname>(<args>)

Copy and paste these codes into a script for a better example:

Example 1

function sayHello(name)
print("Hello, " .. name .. "!")
end

sayHello("Bob")

Example 2

function addNumbers(a,b)
ans = a + b
return ans
end

answer = addNumbers(1,2)
print(answer) --> Prints in the output 3


Functions that return values Note the return statement in Example 2. The return statement automatically ends the function at that line, and then gives the value to the variable on the LEFT SIDE of the equals sign. Let's look at that again, this time with detailed comments:

--Define a function called addNumbers with the arguments "a" and "b"
function addNumbers(a,b)
--make a variable called "ans", and set it to the sum of a and b.
ans = a + b
--Return the variable called ans. This ends the function.
return ans
end

--Set a variable called "answer" to the return value (ans) of addNumbers, with the arguments 1 and 2.
answer = addNumbers(1,2)
print(answer) -- Prints in the output 3

Flow control

Flow control, or Control statments basically means doing different things depending on the situation. They can also control the way the code is executed in the end. There are two main ways to do it in Lua, both involve conditions.

Conditions

A condition is a situation. A simple condition is this:

1 == 2

(Note the "==". Always use that, and not "=".) Of course 1 isn't 2! So that would be false.

1 < 2

That would be true, because 1 is less than 2.

These are all of the conditions that you can use:


== Is equal to
< Less than
> Greater than
<= Less than, or equal to
>= Greater than or equal to
~= Not equal to

A reminder about these conditions is you put the symbol first, and then the "=", although this doesn't apply to the less than, or greater than conditions.

If statements

The if statement does something only if a condition is true. Syntax:

if (<condition>) then
<statements>
end

Example:

if (2 + 2 == 4) then
print("All is right in the world")
end

That would always print "All is right in the world", because 2 + 2 is always equal to 4.

There is also an else statement, which executes if the condition is false:

 
if (<condition>) then
<statements>
else
<statements>
end

Example:

 
if (2 + 2 == 4) then
print("All is right in the world")
else
print("Warning! Warning! Computer Self-Destruction!")
end

While

while <condition> do
<statements>
end

This does something over and over until the condition is false, or the break command is executed. People typically don't use this unless they want a never-ending loop, in which case their condition is true, and the loop will not terminate. Here is something very important: If this is an infinite loop, you MUST put a wait() function in your loop! Otherwise your computer/server will take every ounce of it's processing power to execute the code, because right when it's done, it wants to execute again. This WILL crash the server. This will make it wait so it has time to execute other things, and not crash.

Example:

while true do
print("Lagging up your computer...")
wait(0.5)
end

See also


Scripting
The Class Reference
Edit
Roblox Studio
Script
Workspace
Scripting
In-Depth Scripting Guide
Tutorials