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

Hit shows nil when using a target filter with ray?

Asked by
hellmatic 1523 Moderation Voter
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.

1Mouse.TargetFilter = workspace.glass
2 
3local 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))
4 
5 
6local Ray = Ray.new(MainPart.Position, (CFrame.new(MainPart.Position, Mouse.Hit.p) * Spread).lookVector.unit * ShootSettings.Range)
7Hit, Pos = workspace:FindPartOnRayWithIgnoreList(Ray, Ray_Ignore)
8print(Hit.Name)

I replaced Ray with this:

1local Ray = Ray.new(Mouse.Target.Position, (CFrame.new(MainPart.Position, Mouse.Hit.p) * Spread).lookVector.unit * ShootSettings.Range)
2Hit, Pos = workspace:FindPartOnRayWithIgnoreList(Ray, Ray_Ignore)
3 
4print(Hit.Name) -- error saying hit is nil

The trail was able to go through the glass, but it says hit is nil

Create bullet trail:

01if 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
10            Trail.Anchored = true
11            Trail.Locked = true
12            Trail.CanCollide = false
13            Trail.Size = Vector3.new(0.1, 0.1, distance)
14 
15            t = Trail
View all 21 lines...
1
). hellmatic 1523 — 7y
1
zooming in is much more accurate, because the cursor has to be in the CENTER awesomeipod 607 — 7y

1 answer

Log in to vote
1
Answered by
hellmatic 1523 Moderation Voter
7 years ago

Zoomi

Ad

Answer this question