Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
3

How can I detect a surface a part hit?

Asked by
Dominical 215 Moderation Voter
10 years ago

Hello! I've been wondering on how I could detect which surface a bullet(part) hit. I've searched the wiki without finding an efficient solution. I could use TargetSurface but that can't return the surface the actual bullet hit. I apologize for lacking a bit of info or code if I am.

1local bullet=script.Parent
2bullet.Touched:connect(function(hit)
3if hit:IsA("Part") then
4-- detect surface; how can I achieve this?
5end
6end)

If this is not possible in Roblox, I apologize as well. I appreciate any help!

0
GUI's are able to do this, I dont see why a part cant.. MessorAdmin 598 — 10y
0
I would like to know as well. Perci1 4988 — 10y

1 answer

Log in to vote
4
Answered by 10 years ago

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:

01--(Assuming the script is within the bullet)
02 
03local bullet = script.Parent
04 
05bullet.Touched:connect(function(hit)
06if hit:IsA("Part") then
07 
08local sides = {}
09local sizes = Vector3.new(hit.Size.X,hit.Size.Y,hit.Size.Z)
10local pos = hit.Position
11sides[1] = pos + hit.CFrame:vectorToWorldSpace(Vector3.new(0,0,-hit.Size.Z/2))--front
12sides[2]= pos + hit.CFrame:vectorToWorldSpace(Vector3.new(0,0,hit.Size.Z/2))--back
13sides[3] = pos + hit.CFrame:vectorToWorldSpace(Vector3.new(hit.Size.X/2,0,0))--right
14sides[4] = pos + hit.CFrame:vectorToWorldSpace(Vector3.new(-hit.Size.X/2,0,0))--left
15sides[5] = pos + hit.CFrame:vectorToWorldSpace(Vector3.new(0,hit.Size.Y/2,0))--top
View all 33 lines...

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.

Ad

Answer this question