Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Real time CSG just doesn't union at all?

Asked by 5 years ago
Edited 5 years ago

f = game.Workspace.Part:UnionAsync({game.Workspace.Part2}) There are no errors.

Im completely confused why this doesnt work?

0
If there are no errors then the script is either working or not running. Try printing something on line 1 to see if it is. gullet 471 — 5y

1 answer

Log in to vote
1
Answered by
RayCurse 1518 Moderation Voter
5 years ago
Edited 5 years ago

You're instantiating the new UnionOperation but you aren't parenting it to the data model or workspace.

f = game.Workspace.Part:UnionAsync({game.Workspace.Part2})
f.Parent = workspace
0
You my friend, are a genius. JohnJohniamm55 21 — 5y
Ad

Answer this question