Part of my code: local rayParams = RaycastParams.new()
rayParams.FilterType = Enum.RaycastFilterType.Include
rayParams.FilterDescendantsInstances = {}
for _, Plot in pairs(plotsFolder) do
local plotPart = Plot:FindFirstChild("PlotPart")
if plotPart then
table.insert(rayParams.FilterDescendantsInstances, plotPart)
print(rayParams.FilterDescendantsInstances)
end
end