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

My Punch-script is not making any damage and it's damaging myself?[STILL ACTIVE AFTER I UNEQUIP IT]

Asked by 5 years ago
Edited 5 years ago

To Expand, i created a punch tool. When you activate the tool, it fires an animation and does some damage.

Either it's not damaging the dummies, instead it damages me, it's still active, even after i unequip it.

I've been constantly working on this 24/7 and then i found out i could get some help on this site. not only for a good feel, but for future reference.

Local Script:

01local Animation = script.Animation
02local Replicated = game:GetService("ReplicatedStorage")
03local RemoteEvent = Replicated.Remotes.Punch
04 
05local Debounce = false
06 
07wait(2)
08 
09local Humanoid = game.Players.LocalPlayer.Character.Humanoid
10 
11script.Parent.Activated:Connect(function()
12    if not Debounce then
13        Debounce = true
14 
15    local AnimationTrack = Humanoid:LoadAnimation(Animation)
16    RemoteEvent:FireServer()
17    wait(2)
18    Debounce = false
19    end
20end)

Server Script:

01local Tools = game:GetService("ReplicatedStorage"):WaitForChild("Tools")
02local RemoteEvent = game:GetService("ReplicatedStorage").Remotes.Punch
03local Animation = Tools.SuperPunch.PunchConnecter.Animation
04 
05wait(1)
06 
07RemoteEvent.OnServerEvent:Connect(function(player)
08    local Hum = player.Character.Humanoid
09    local AnimationTrack = Hum:LoadAnimation(Animation)
10    AnimationTrack:Play()
11 
12    if AnimationTrack.IsPlaying then
13        local LeftArm = player.Character["RightHand"]
14 
15        LeftArm.Touched:Connect(function(hit)
View all 23 lines...

2 answers

Log in to vote
0
Answered by 5 years ago

I personally prefer handling it all on a single script inside the tool

01--Script
02local tool = script.Parent;
03local Animation = game.ReplicatedStorage:WaitForChild("Tools"):WaitForChild("SuperPunch"):WaitForChild("PunchConnecter"):WaitForChild("Animation")
04 
05local char
06local humanoid = char:WaitForChild("Humanoid")
07local RArm
08 
09local canAttack = true
10local attacking = false
11local equipped = false
12 
13tool.Equipped:Connect(function()
14    equipped = true
15    RArm =  = char:WaitForChild("RightHand")
View all 41 lines...
0
Local? maxpax2009 340 — 5y
0
no Utter_Incompetence 856 — 5y
Ad
Log in to vote
0
Answered by
iuclds 720 Moderation Voter
5 years ago

You have to ignore the player on server

01local Tools = game:GetService("ReplicatedStorage"):WaitForChild("Tools")
02local RemoteEvent = game:GetService("ReplicatedStorage").Remotes.Punch
03local Animation = Tools.SuperPunch.PunchConnecter.Animation
04 
05wait(1)
06 
07RemoteEvent.OnServerEvent:Connect(function(player)
08    local Hum = player.Character.Humanoid
09    local AnimationTrack = Hum:LoadAnimation(Animation)
10    AnimationTrack:Play()
11 
12    if AnimationTrack.IsPlaying then
13        local LeftArm = player.Character["RightHand"]
14 
15        LeftArm.Touched:Connect(function(hit)
View all 24 lines...
0
It's still taking damage to myself maxpax2009 340 — 5y
0
but i appreciate the answer :) maxpax2009 340 — 5y

Answer this question