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 |