Do you have any tips on this case?
Is it just as simple as
loop
if distancefromcharacter > 1000 then
parent = nil
else
parent = oldparent
Would that work or are there better ways?
Thanks
but is the general idea correct?
I could implement a buffer like
if distancefromcharacter > 1100 then
parent = nil
elseif distancefromcharacter < 1000 then
parent = oldparent
end