of     1   

KAAK82
#140976247Sunday, July 20, 2014 8:03 PM GMT

Just a small one, I already got the Tables and stuff, but for some reason it doesn't make a New TextLabel to show all those Items :/ for _, Object in Pairs (Items) do showingbox = Instance.new('TextLabel', dot.Parent) showingbox.Position = UDim2.new(0, Object.Position.x, 0, Object.Position.z) showingbox.Size = UDim2.new(0, Object.Size.x, 0, Object.Size.z) showingbox.BackgroundColor3 = Object.BrickColor showingbox.BorderSizePixel = UDim2.new(0) showingbox.Name = Object.Name
bibo5o
#140978019Sunday, July 20, 2014 8:23 PM GMT

for _, Object in Pairs (Items) do showingbox = Instance.new('TextLabel', dot.Parent) showingbox.Position = UDim2.new(0, Object.Position.x, 0, Object.Position.z) showingbox.Size = UDim2.new(0, Object.Size.x, 0, Object.Size.z) showingbox.BackgroundColor3 = Object.BrickColor showingbox.BorderSizePixel = UDim2.new(0) showingbox.Name = Object.Name showingbox.Parent = --You forgot to parent it.
KAAK82
#140978362Sunday, July 20, 2014 8:28 PM GMT

for _, Object in Pairs (Items) do showingbox = Instance.new('TextLabel', dot.Parent) --I don't think so, 'Item', Parent. If ya didn't know :/ showingbox.Position = UDim2.new(0, Object.Position.x, 0, Object.Position.z) showingbox.Size = UDim2.new(0, Object.Size.x, 0, Object.Size.z) showingbox.BackgroundColor3 = Object.BrickColor showingbox.BorderSizePixel = UDim2.new(0) showingbox.Name = Object.Name
bibo5o
#140979965Sunday, July 20, 2014 8:46 PM GMT

Oh yah, idk, I derped.
KAAK82
#140981443Sunday, July 20, 2014 9:03 PM GMT

lol

    of     1