slayer9365 Administrator


Posts: 233 Join date: 2010-07-31 Age: 17
 | Subject: Parenting August 3rd 2010, 4:31 pm | |
| This is the most basic thing you must understand in order to script. If you have ever looked at a script, you may have seen something like this | Code: | script.Parent.Parent
|
You may be wondering what this means. Well this is referring to the object that is
This will be finished soon, changing my attention to RMD _________________ Shut up Troll
|
|
VoidHack Expert Scripter


Posts: 42 Join date: 2010-08-02 Age: 19 Location: Rhode Island, United States of America
 | Subject: Re: Parenting August 9th 2010, 5:36 pm | |
| | slayer9365 wrote: | This will be finished soon, changing my attention to RMD | To finish that tutorial off xD...
The parent is the object that the script is inside of. If you look in the Explorer (Tools>View>Explorer), you will see lists of objects, each nested in one-another. These are the parents adn children. So, let's say you game a script in a model. The model is named Model and the script needs to change a part in the model. Instead of doing | Code: | game.Workspace.Model.Part... | You can do this| Code: | script.Parent.Part.... | See how simple it is? Also, when you set the parent, you need an extra .Parent. So, let us say you want to move the Model to game.Lighting, instead of just| Code: | script.Parent = game.Lighting | You need to use| Code: | script.Parent.Parent = game.Lighting | This is due to the fact that, in the first example, you set the parent of the script. You were telling the script to do 'Change parent of script to Lighting', instead of 'Change the parent of the ancestor of the script to Lighting' which you did in the second example. (Does that make sence?) |
|
slayer9365 Administrator


Posts: 233 Join date: 2010-07-31 Age: 17
 | Subject: Re: Parenting August 13th 2010, 7:23 am | |
| Yeah, I never got around to finishing it XD |
|
VoidHack Expert Scripter


Posts: 42 Join date: 2010-08-02 Age: 19 Location: Rhode Island, United States of America
 | Subject: Re: Parenting August 13th 2010, 3:15 pm | |
| I didn't even finish it, really. There is still more to add. I am just too lazy. |
|
slayer9365 Administrator


Posts: 233 Join date: 2010-07-31 Age: 17
 | Subject: Re: Parenting August 15th 2010, 6:40 pm | |
| |
|
blueymaddog Administrator


Posts: 1108 Join date: 2010-12-09 Age: 13
 | Subject: Re: Parenting January 18th 2011, 4:01 am | |
| lol. _________________ blueymaddog Administrator • Moderator • Expert Scripter PM: blueymaddog<+1 post. ujelly?> |
|