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:
local part = game.Workspace.Part1 local otherParts = {game.Workspace.Part2, game.Workspace.Part3, game.Workspace.Part4} 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.