is there any way that we could try to add the fade out portion to the original script?
sure ill make it public hold on
To anyone curious the issue has to deal with the FindPartsInReigon3 cap, to fix simply change
local parts=workspace:FindPartsInRegion3(region);
to
local parts=workspace:FindPartsInRegion3(region, nil, 1000); – or a larger number if you have over 1000 parts in a reigon [which you probably shouldn’t]