How do I check if a part is colliding with another part? (Anchored parts)
I'm trying to figure out an accurate way to determine if an Anchored part is touching any other part.
Here is the function I have written so far.
01 | function checkCollisions(part) |
02 | local MIN,MAX,RAN,RAD,FLOOR,ROOF = math.min,math.max,math.random,math.rad,math.floor,math.ceil |
03 | local pos = part.Position |
04 | local size = part.Size |
05 | local startpos = Vector 3. new(pos.x-size.x/ 2 ,pos.y-size.y/ 2 ,pos.z-size.z/ 2 ) |
06 | local endpos = Vector 3. new(pos.x+size.x/ 2 ,pos.y+size.y/ 2 ,pos.z+size.z/ 2 ) |
07 | local REG 3 = Region 3. new(Vector 3. new(MIN(startpos.X,endpos.X),MIN(startpos.Y,endpos.Y),MIN(startpos.Z,endpos.Z)),Vector 3. new(MAX(startpos.X,endpos.X),MAX(startpos.Y,endpos.Y),MAX(startpos.Z,endpos.Z))) |
08 | local partsinREG 3 = game.Workspace:FindPartsInRegion 3 (REG 3 , nil , 1 ) |
09 | if #partsinREG 3 > 0 and partsinREG 3 [ 1 ] .Transparency = = 0 then |
11 | elseif #partsinREG 3 < 1 then |
12 | print (part.Name.. ' is not colliding with any other object.' ) |
It seems fine, but for some reason, it bugs out and sometimes says that their is a part in range when there isn't.