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

Sword Does Damage Without Being Clicked?

Asked by 5 years ago

The sword does damage without being clicked? It does damage when it's touched not when it's clicked, I can't seem to find a way to fix this.

The Damage Script For My Weapon

01Av = 15 --Attack Value
02 
03tool = script.Parent
04 
05function tagHumanoid(humanoid,killer)
06 
07    if humanoid and killer then
08 
09        local tag = Instance.new("ObjectValue")
10        tag.Name = "creator"
11        tag.Value = killer
12        tag.Parent = humanoid
13    end
14 
15end
View all 39 lines...

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

I tried this

01Av = 15 --Attack Value
02 
03tool = script.Parent
04 
05function tagHumanoid(humanoid,killer)
06 
07    if humanoid and killer then
08 
09        local tag = Instance.new("ObjectValue")
10        tag.Name = "creator"
11        tag.Value = killer
12        tag.Parent = humanoid
13    end
14 
15end
View all 40 lines...

But now my weapon doesn't do damage?

0
Activated is an RBXScriptSignal, not a boolean value. Use Connect() on it to connect it to a function. DeceptiveCaster 3761 — 5y
0
script.Parent.Activated:Connect(function() --CODE GOES HERE end) royaltoe 5144 — 5y
Ad
Log in to vote
0
Answered by
haba_nero 386 Moderation Voter
5 years ago

Try using tool.Activated in your script. Activated means that it has been clicked. Hope this helps!

Answer this question