I'm assuming you're new to scripting, and the first thing to know if you're new to scripting is it takes time. Just like everything else. So don't give up, complain, get impatient, etc, because scripting is a learning process. (Not saying you were being any of these, this is just for future usage.)
Parents
In Roblox's Simplified Lua, a parent means the thing above the current script/part/etc.
In the Explorer, there's a system that uses Parents and Children, which is an easier way of explaining a part and it's owner. It's important to note, if you didn't know already, when looking for a part in Roblox using a script, you'll need to use game.Workspace
as this looks in the Workspace
for what you're wanting to look at. There's other things such as ReplicatedStorage, StarterGui, and etc, and it would be the same for these. game.ReplicatedStorage
would look for a part in ReplicatedStorage. game.StarterGui
would look for something in the StarterGui, and etc.
For instance, say you were looking at a script located in a part, that was located in a model.
You could use script.Parent
and that would get the Part, you could also use script.Parent.Parent
and get the model.
You could get a child by using the simple code, script.Parent.Script
. This would look for the script we're typing in, assuming that you haven't renamed it.
When looking for children, you need to specify their exact name. Say I had a part named Part1
in the Workspace. I could not use game.Workspace.part1
because the part is named Part1
, not part1
, however using game.Workspace.Part1
would work, because Part1
= Part1
.
Functions
Functions are extremely useful to every scripter. The easiest way to explain it, is a line of code that you can run on command.
Say I was trying to print a paragraph. Rather than typing out print("paragraphgoeshere")
over and over again, I'm going to use a function so that I can just use the function over and over again.
2 | print ( "As a describer of life and manners, he must be allowed to stand perhaps the first of the first rank. His humour, which, as Steele observes, is peculiar to himself, is so happily diffused as to give the grace of novelty to domestic scenes and daily occurrences. He never o'ersteps the modesty of nature, nor raises merriment or wonder by the violation of truth. His figures neither divert by distortion nor amaze by aggravation. He copies life with so much fidelity that he can be hardly said to invent; yet his exhibitions have an air so much original, that it is difficult to suppose them not merely the product of imagination." ) |
It's better to use functions whenever you can, just so that it's less work on you, and scripting becomes more enjoyable.
There are different types of functions that will be called to action whenever something happens.
For instance, say whenever someone died, you wanted to give them +10 WalkSpeed.
1 | local player = game.Players.LocalPlayer |
2 | repeat wait() until player.Character |
3 | local character = player.Character |
4 | local humanoid = character:WaitForChild( 'Humanoid' ) |
6 | humanoid.Died:connect( function () |
7 | humanoid.WalkSpeed = humanoid.WalkSpeed + 10 |
This chunk of code would run every time the person died.
Locals
Locals are extremely important when it comes to Lua. In Lua, there are multiple types of Locals, but for today, I'm only going to explain variables.
When scripting, it's easier to go ahead and tell the script, I'm going to use this over and over again, so here's a simplified way of reading it so I don't have to type it over and over again. This is basically what variables are. Variables can be anything, strings, parents, children, parts, people, you name it, it'll be variable'd. Variables can have any name to them, so long as they aren't named important words like wait, end, etc.
1 | local var = script.Parent |
Variables are probably one of the most important things for scripters, as variables help out a lot. They save time for both your fingers and yourself, prevent scripts from running over and over again, and could save the lives of dozens of players. All with one little variable.
Helpful Links
There is an amazing blogpost from a scripter known as Perci1. This will teach you the basics of scripting.
There are dozens of tutorials made by an amazing scripter known as ScriptGuider, which can help you out with the more advanced things.
The wiki is probably the best place to learn things about Roblox Scripting.
This is probably one of the best problem-solving websites you could find. If you ever need help there's a live chat going on with other scripters that can either become your friends, or help you learn dozens of new things.
This one blog post alone, could save you hours of time, hairpulling, and screaming, all thanks to M39a9am3R.
This is an extremely important post made by evaera, which again, could save you from wasted time, hairpulling, and screaming.
A vital blogpost that will help you in the longrun, posted by evaera.
Few more things
Local scripts cannot work in Workspace.
ScreenGuis do not work in Workspace.
Scripting takes time, practice, and patience.
LocalPlayer is only usable in LocalScripts.
ExampleScript
All of the elements we just talked about, are being used in this script.
02 | local player = game.Players |
03 | repeat wait() until player.Character |
04 | local char = player.Character |
05 | local humanoid = character:WaitForChild( 'Humanoid' ) |
07 | humanoid.Died:connect( function () |
09 | humanoid.MaxHealth = humanoid.MaxHealth + 10 |
10 | humanoid.Health = humanoid.Health + 10 |
11 | print (player.Name.. ' now has ' ..humanoid.MaxHealth.. ' health.' ) |