I'll explain, This is the workspace:
1 | workspace |
2 | workspace.Camera |
3 | workspace.Terrain |
4 | workspace.Script |
5 | workspace.ObjectValue |
6 | --Value = workspace.Part |
7 | workspace.Baseplate |
8 | workspace.Part |
And this is script:
1 | --Making the clone, setting its name to "ClonedPart", and parent to workspace.Part |
2 | Clone = workspace.Part:Clone() |
3 | Clone.Name = "ClonedPart" |
4 | Clone.Parent = workspace.Part |
5 |
6 | --Trying to set the transparency to one, but breaks |
7 | workspace.ObjectValue.Value:FindFirstChild( "ClonedPart" ).Transparency = 1 |
8 | -- ^ turns Nil ^ Error |
After the script
01 | workspace |
02 | workspace.Camera |
03 | workspace.Terrain |
04 | workspace.Script |
05 | workspace.ObjectValue |
06 | --Value = workspace.Part |
07 | workspace.Baseplate |
08 | workspace.Part |
09 | workspace.Part.ClonedPart |
10 |
11 | --Output: |
12 |
13 | Workspace.Script: 5 : attempt to index a nil value |
How would I do this, I have throughly tested it but always ends up being nil.
Really small logic error.
1 | Clone = workspace.Part:Clone() |
2 | Clone.Name = "ClonedPart" |
3 | Clone.Parent = workspace.Part |
4 |
5 | workspace.ObjectValue.Value:FindFirstChild( "ClonedPart" ).Transparency = 1 |
6 | -- ^ ObjectValue doesn't exist. That's why it's returning nil. |
Although the class is an ObjectValue, it goes by its name, so instead, you should use the following:
1 | workspace.Value.Value:FindFirstChild( "ClonedPart" ).Transparency = 1 |
2 | -- ^ The name of the ObjectValue |
Or alternatively, you could simply rename the ObjectValue item to "ObjectValue". Either one should work.
Likewise, you could do the following if you only have one ObjectValue, or only want to find the first ObjectValue inside of Workspace. I personally don't recommend it but you do you.
1 | workspace:FindFirstChildOfClass( "ObjectValue" ).Transparency = 1 --Finds the first child in workspace with the ObjectValue class. |
Actually I took a different approach than using ObjectValues(findfirstchild doesent work with these), I just wanted an easy way to change the values from the workspace, but I had to seperate the values.
01 | Workspace: |
02 | workspace |
03 | workspace.Camera |
04 | workspace.Terrain |
05 | workspace.Script |
06 | workspace.Folder |
07 | workspace.Folder.Layer 1 |
08 | --Value: Workspace |
09 | workspace.Folder.Layer 2 |
10 | --Value: Part |
11 | --StringValues |
12 | workspace.Baseplate |
13 | workspace.Part |
Code:
01 | --Then I put them back together, using I-pairs, and starting with Object = game |
02 | Object = game |
03 | for i,v in pairs (workspace.Folder:GetChildren()) do |
04 |
05 | Object = Object:FindFirstChild(v.Value) |
06 |
07 |
08 | end |
09 |
10 | PlayerObject = Object |
11 |
12 | --This is what it is doing: |
13 | -- the + is like using :FindFirstChild() |
14 | --1: game + Layer1.Value |
15 | --2: Layer1.Value + Layer2.Value |
This is great because it is interchangeable, and you can still use FindFirstChild