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

Why does this kill people I use "IF" with to ignore?

Asked by 9 years ago

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.

01function blow(hit)
02    Hit = hit
03    plr = game.Players:GetPlayerFromCharacter(hit.Parent)
04    local explosion = Instance.new("Explosion")
05    explosion.DestroyJointRadiusPercent = 0 -- neck welds won't be destroyed
06    explosion.BlastRadius = 20
07    explosion.BlastPressure = 1000
08 
09        local maxDamage = 100      
10 
11        local explosion = Instance.new("Explosion")
12        explosion.DestroyJointRadiusPercent = 0 -- neck welds won't be destroyed
13        explosion.BlastRadius = 20
14        explosion.BlastPressure = 1000
15 
View all 34 lines...
0
This code has a syntax error. Have you read the output? / Bold doesn't work in code blocks. Just say the line numbers. BlueTaslem 18071 — 9y

Answer this question