Raycasting that ignores Hats?
I am working on a gun, and everything is working as it should, but I have one problem: Hats keep getting in the way of headshots etc.
Any way to have a ray ignore hats? Here is the raycast section of my main script...
01 | local ray = Ray.new(tool.Barrel.CFrame.p, (mouse.Hit.p - tool.Barrel.CFrame.p).unit* 300 ) |
02 | local hit, position = game.Workspace:FindPartOnRay(ray, user) |
03 | script.Parent.Handle.Fire:Play() |
04 | local humanoid = hit and hit.Parent and hit.Parent:FindFirstChild( "Humanoid" ) |
06 | if not hit.Parent:FindFirstChild( "ForceField" ) then |
07 | if hit.Name = = "Torso" then |
08 | humanoid:TakeDamage( 70 ) |
09 | elseif hit.Name = = "Head" then |
10 | humanoid:TakeDamage( 87 ) |
11 | humanoid.WalkSpeed = 14 |
13 | humanoid:TakeDamage( 45 ) |
16 | humanoid.Died:connect( function () |
17 | if enabled = = true then |