Why does a player get points even though the cannon ball won't touch anything?
Asked by
3 years ago Edited 3 years ago
So following my pervious question, after an answer, i got a code, but for some reason when ever the cannon fires, and even though it doesnt hit a player, it still gives me pointss. Why does that happen? code
04 | function onTouched(hit) |
07 | local humanoid = hit.Parent:findFirstChild( "Humanoid" ) |
10 | humanoid.Health = humanoid.Health - damage |
13 | if humanoid.Health = = 0 or humanoid.Health < 0 then |
14 | local z = game.Players:FindFirstChild(game.ReplicatedStorage.asd.Value) |
15 | z.leaderstats.Kills.Value + = 1 |
21 | untagHumanoid(humanoid) |
23 | connection:disconnect() |
27 | connection:disconnect() |
EDIT: I've learned how to fix that problem, but is there any way I can add a debounce, because my cannon fires multiple cannon balls, so i want it that the player shouldn't get two points even if more than two cannon balls hit it.