I'm creating a FPS, making guns, having no problems except for one thing. When I shoot it, how do I make it so that a bullet mark appears on the surface of the part shot at? I know you have to create a part, and insert a decal with the bullet mark, but how do I get to know which surface my bullet has hit? Just to let you know, I'm using Ray Casting, not some body velocity thing.
Please either tell me how to get the surface of the object, or write a simple example script which makes a bullet mark on a surface when the ray has collided with a Part.
Thank you very much if you could help. I'm not really asking for scripts, more like help.
You may be familiar with the first two return values of FindPartOnRay: the part it hit and the point of intersection. There is a third value that you're ignoring, which is the surface normal. The surface normal is a one-stud long vector which is perpendicular to the face of the object.
Here's a picture I drew to illustrate what I'm talking about.
As you can see, no matter the angle of the ray, as long as they hit the same surface, their surface normals will be parallel. This is useful because this determines which direction the bullet hole will be facing.
Now assuming that you've already casted the ray, this is one way of making bullet holes:
01 | --Creating the bullet hole which will be cloned every time a hole needs to be made |
02 | local bulletholepart = Instance.new( "Part" ) |
03 | bulletholepart.FormFactor = "Custom" |
04 | bulletholepart.Size = Vector 3. new( 1 , 1 , 0.2 ) |
05 | bulletholepart.Anchored = true |
06 | bulletholepart.CanCollide = false |
07 | bulletholepart.Transparency = 1 |
08 |
09 | local bulletholedecal = Instance.new( "Decal" , bulletholepart) |
10 | bulletholedecal.Face = "Front" -- you want it to be in front of the part for later |
11 | bulletholedecal.Texture = "http://www.roblox.com/asset/?id=2078626" -- a bullet hole decal I found |
12 |
13 | function shoot() |
14 | -- TO-DO: cast the ray |
15 | local hit, pos, normal = game.Workspace:FindPartOnRay(ray) |
Take note that you will have to add the bullet holes to the ignore list or else the bullet holes will stack with each other -- I'll leave that up to you.