Hit shows nil when using a target filter with ray?
Asked by
7 years ago Edited 7 years ago
I am trying to make a Trail that when you shoot through a certain part, it ignores the certain part and hits the model behind it.
1 | Mouse.TargetFilter = workspace.glass |
3 | local Spread = CFrame.Angles(math.rad(math.random(-SpreadSettings.CurrentSpread, SpreadSettings.CurrentSpread)/ 10 ), math.rad(math.random(-SpreadSettings.CurrentSpread, SpreadSettings.CurrentSpread)/ 10 ), math.rad(math.random(-SpreadSettings.CurrentSpread, SpreadSettings.CurrentSpread)/ 10 )) |
6 | local Ray = Ray.new(MainPart.Position, (CFrame.new(MainPart.Position, Mouse.Hit.p) * Spread).lookVector.unit * ShootSettings.Range) |
7 | Hit, Pos = workspace:FindPartOnRayWithIgnoreList(Ray, Ray_Ignore) |
I replaced Ray with this:
1 | local Ray = Ray.new(Mouse.Target.Position, (CFrame.new(MainPart.Position, Mouse.Hit.p) * Spread).lookVector.unit * ShootSettings.Range) |
2 | Hit, Pos = workspace:FindPartOnRayWithIgnoreList(Ray, Ray_Ignore) |
The trail was able to go through the glass, but it says hit is nil
Create bullet trail:
01 | if TrailSettings.Enabled then |
02 | for _ = 1 , ShootSettings.bulletAmount do |
03 | local distance = (MainPart.CFrame.p - Pos).magnitude |
04 | local Trail = Instance.new( "Part" ) |
05 | Trail.Parent = workspace |
06 | Trail.BrickColor = BrickColor.new(TrailSettings.Color) |
07 | Trail.Material = TrailSettings.Material |
08 | Trail.Name = "bullet trail" |
09 | Trail.Transparency = TrailSettings.Transparency |
12 | Trail.CanCollide = false |
13 | Trail.Size = Vector 3. new( 0.1 , 0.1 , distance) |
17 | for i = 0 ,distance, 6 do |
18 | Trail.CFrame = CFrame.new(MainPart.CFrame.p, Pos) * CFrame.new( 0 , 0 ,-distance / 2 ) |