You could do something like check which side of the part is in closest proximity to the bullet. For this, you'd have to write this thingy here:
03 | local bullet = script.Parent |
05 | bullet.Touched:connect( function (hit) |
06 | if hit:IsA( "Part" ) then |
09 | local sizes = Vector 3. new(hit.Size.X,hit.Size.Y,hit.Size.Z) |
10 | local pos = hit.Position |
11 | sides [ 1 ] = pos + hit.CFrame:vectorToWorldSpace(Vector 3. new( 0 , 0 ,-hit.Size.Z/ 2 )) |
12 | sides [ 2 ] = pos + hit.CFrame:vectorToWorldSpace(Vector 3. new( 0 , 0 ,hit.Size.Z/ 2 )) |
13 | sides [ 3 ] = pos + hit.CFrame:vectorToWorldSpace(Vector 3. new(hit.Size.X/ 2 , 0 , 0 )) |
14 | sides [ 4 ] = pos + hit.CFrame:vectorToWorldSpace(Vector 3. new(-hit.Size.X/ 2 , 0 , 0 )) |
15 | sides [ 5 ] = pos + hit.CFrame:vectorToWorldSpace(Vector 3. new( 0 ,hit.Size.Y/ 2 , 0 )) |
16 | sides [ 6 ] = pos + hit.CFrame:vectorToWorldSpace(Vector 3. new( 0 ,-hit.Size.Y/ 2 , 0 )) |
19 | for i,v in ipairs (sides) do |
20 | if (bullet.Position - v).Magnitude < (bullet.Position - sides [ ClosestSide ] ).Magnitude then |
25 | if ClosestSide = = 1 then print ( "front" ) |
26 | elseif ClosestSide = = 2 then print ( "back" ) |
27 | elseif ClosestSide = = 3 then print ( "right" ) |
28 | elseif ClosestSide = = 4 then print ( "left" ) |
29 | elseif ClosestSide = = 5 then print ( "top" ) |
30 | elseif ClosestSide = = 6 then print ( "bottom" ) |
front = negative z
back = positive z
right = positive x
left = negative x
top = positive y
bottom = negative y
Now unfortunately, this is only accurate when used on on cubes, or other objects with symmetrical sizes. Don't worry though, hopefully I'll be able to edit this answer later and provide a better solution.
I'll also adjust the script later so you can actually reference the side.