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

Why does a player get points even though the cannon ball won't touch anything?

Asked by
Xyternal 247 Moderation Voter
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

01ball = script.Parent
02damage = 50
03local debounce = true
04function onTouched(hit)
05 
06 
07    local humanoid = hit.Parent:findFirstChild("Humanoid")
08    if humanoid~=nil then
09        tagHumanoid(humanoid)
10        humanoid.Health = humanoid.Health - damage
11    if debounce then
12debounce = false
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
View all 31 lines...

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.

0
I've tried doing the traditional debounce, but it doesn't work Xyternal 247 — 3y

Answer this question