So i am making a Double Sword, and i'm having trouble with making it damage?
My Code for the animation player -
l~~~~~~~~~~~~~~~~~
ocal CanDamage = script.Parent.Parent.Values.CanDamage
local SoundPlayed = script.Parent.Parent.Values.SoundPlayed
function reRoll()
local randomPick = math.random(1, #exTable)
local exValue = exTable[randomPick]
return exValue
end
tool.Activated:Connect(function()
CanDamage.Value = true
if debounceTrue == false then
debounceTrue = true
local exValue = reRoll()
if exValue ~= lastValue then
lastValue = exValue
local Animation = Instance.new("Animation")
Animation.AnimationId = "rbxassetid://"..exValue
local animTrack = humanoid:LoadAnimation(Animation)
animTrack:Play()
wait(debounceTime)
debounceTrue = false
elseif exValue == lastValue then
print("[ERROR] "..exValue.." was already rolled. Rerolling.")
repeat exValue = reRoll() until
exValue ~= lastValue
lastValue = exValue
local Animation = Instance.new("Animation")
Animation.AnimationId = "rbxassetid://"..exValue
SoundPlayed.Value = true
local animTrack = humanoid:LoadAnimation(Animation)
animTrack:Play()
wait(debounceTime)
debounceTrue = false
end
end
end)
01 | The code for the damager - |
04 | ocal CanDamage = script.Parent.Parent:WaitForChild( "Values" ).CanDamage |
06 | local Damage = script.Parent.Parent.Values.Damage |
07 | local Blade 1 = script.Parent.Parent.Union |
08 | local Blade 2 = script.Parent.Parent.Union 2 |
09 | local Blades = Blade 1 or Blade 2 |
11 | Blades.Touched:Connect( function (t) |
12 | local Humanoid = t.Parent:FindFirstChild( "Humanoid" ) |
13 | if Check = = true and Humanoid then |
14 | if CanDamage.Value = = true then |
15 | CanDamage.Value = false |
17 | Humanoid.Health = Humanoid.Health - Damage.Value |