Attempt to index nil with GUI


My script is giving out this error.

What I’m trying to do, is to go through list of parts and change the GUI on them according to their position. Each part has SurfaceGUI in it with 3 text labels inside.
image

This is the script:

local nodes = {workspace.Nodes:GetChildren()}

script.Parent.MouseClick:Connect(function()
	for i, part in pairs(nodes) do
		part.SurfaceGui.IndicatorX.Text = part.Position.X / 8
		part.SurfaceGui.IndicatorZ.Text = part.Position.Z / 8
	end
end)

What could be the problem and how would I fix it?

So far I checked if I input the names of labels properly. There is no mistake with them.

the issue is because of this

local nodes = {workspace.Nodes:GetChildren()}

:GetChildren() already returns and array and you wrap it in another table.
Simply get rid of the {} like this

local nodes = workspace.Nodes:GetChildren()
1 Like

This worked, thank you!!! :heart::heart::heart::heart::heart:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.