Hey, i have this part of my serializing script AKA DS2
["PartPosition"] = {obj.CFrame.X, obj.CFrame.Y, obj.CFrame.Z, obj.Orientation.X, obj.Orientation.Y, obj.Orientation.Z};
["PartSize"] = {obj.Size.X, obj.Size.Y, obj.Size.Z};
["PartColor"] = {obj.Color.R, obj.Color.G, obj.Color.B};
["PartName"] = obj.Name;
["PartTransparency"] = obj.Transparency;
["ModelName"] = objs.Name;
["PartMaterial"] = string.sub(tostring(obj.Material), 15, string.len(tostring(obj.Material)));
["isPrimaryPart"] = objs.PrimaryPart == obj;
["isModel"] = objs:GetDescendants()[1] == obj;
["isMesh"] = obj:IsA("MeshPart");
I’m trying to get the MeshId of that last IsA: mesh checker by using if and then but i think we can’t is there any other way of using statements inside tables cause we techincally can with IsA: ?