Is it possible to make a Union consisting of 2 Parts with a script? If yes please answer! ;D
(thanks to theking48989987 on the Dev Forum)
Example:
1 | local part = game.Workspace.Part 1 |
2 | local otherParts = { game.Workspace.Part 2 , game.Workspace.Part 3 , game.Workspace.Part 4 } |
3 |
4 | local newUnion = part:UnionAsync(otherParts) |
You can use UnionAsync and SubtractAsync to create a unions at runtime between the initial part and a table of other parts.