I never tried this, i just wanna make sure if im correct or not
table.insert(because, { ["ParentName"] = ob.Name; ["Transparency"] = ob.Transparency; ["Color"] = ob.BrickColor.Name; ["Material"] = ob.Material.Name; })
This isn't the full script, just showing what i need.
Yes, that should be right. Although i dont think the Material has a Name property, everything should work.
This is how i would do it: local Part = Instance.new("Part"); Part.Parent = workspace; Part.Transparency = 0.5; Part.Size = Vector3.new(10, 10, 3);
local PartInfo = { Parent = Part.Parent.Name; Transparency = Part.Transparency; Size = Part.Size; }