Unions and negations can be made through a plugin by using plugin:Union(table of BaseParts)
and plugin:Negate(table of BaseParts)
. UnionOperations can be separated using plugin:Separate(table of PartOperations)
These cannot be used outside of a plugin or outside of studio. Unions cannot be created ingame. If you simply want to join things that are unanchored, you can weld them together:
2 | local w = Instance.new( "Weld" ,a) |
4 | w.C 0 ,w.C 1 = a.CFrame:inverse(),b.CFrame:inverse() |
and they will be stuck together unless something like an explosion breaks them apart.