Why does this kill people I use "IF" with to ignore?
I edited the default linkedrocket, and it works perfectly, it doesn't kill soldiers, and kill enemies and ignores players. But here's when it gets complicated. When I hit an enemy and kill/damage it, the explosion damages/kills any other soldier or player in the vicinity! It's a really annoying bug! I'll leave a bold message in the script to tell you where I THINK the error is. Btw, this is part of the rocket script.
03 | plr = game.Players:GetPlayerFromCharacter(hit.Parent) |
04 | local explosion = Instance.new( "Explosion" ) |
05 | explosion.DestroyJointRadiusPercent = 0 |
06 | explosion.BlastRadius = 20 |
07 | explosion.BlastPressure = 1000 |
11 | local explosion = Instance.new( "Explosion" ) |
12 | explosion.DestroyJointRadiusPercent = 0 |
13 | explosion.BlastRadius = 20 |
14 | explosion.BlastPressure = 1000 |
16 | explosion.Hit:connect( function (hitPart, partDistance) |
17 | local humanoid = hitPart.Parent and hitPart.Parent:FindFirstChild( "Humanoid" ) |
18 | local plr = game.Players:GetPlayerFromCharacter(hitPart.Parent) |
19 | if hit.Parent.ClassName ~ = ( "Tool" ) and hit.Parent.Name ~ = ( "Workspace" ) and humanoid and hit.Parent.Name ~ = ( "Soldier" ) not plr then |
21 | local distance_factor = partDistance / explosion.BlastRadius |
22 | distance_factor = 1 - distance_factor |
23 | if hit.Parent.ClassName ~ = ( "Tool" ) and hit.Parent.Name ~ = ( "Workspace" ) and hit.Parent.Name ~ = ( "Soldier" ) |
24 | humanoid:TakeDamage(maxDamage*distance_factor) **HERE** |
26 | explosion = Instance.new( "Explosion" ) HERE |
27 | explosion.DestroyJointRadiusPercent = 0 **HERE** |
29 | elseif hit.Parent.ClassName ~ = ( "Tool" ) and hit.Parent.Name ~ = ( "Workspace" ) and plr and plr.TeamColor ~ = game.Teams.Enemies.TeamColor then |
31 | explosion = Instance.new( "Explosion" ) |
32 | explosion.DestroyJointRadiusPercent = 0 |