Hi, so for some reason I am getting this particular error which reads: “Unable to cast value to Objects” when the code runs a UnionAsync() operation between a wall part and a negative part that are both anchored. Here is the code for references. Hopefully there is a simple and easy fix to this, and thanks for the responses in advance.
local negativePart = workspace.NegativePart
for i = 10, 1, -1 do
print("Countdown to union: " .. i)
wait(1)
end
print("Wait finished! Doing now.")
wait(1)
wall:UnionAsync(negativePart)