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:
01 | local Animation = script.Animation |
02 | local Replicated = game:GetService( "ReplicatedStorage" ) |
03 | local RemoteEvent = Replicated.Remotes.Punch |
04 |
05 | local Debounce = false |
06 |
07 | wait( 2 ) |
08 |
09 | local Humanoid = game.Players.LocalPlayer.Character.Humanoid |
10 |
11 | script.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 |
20 | end ) |
Server Script:
01 | local Tools = game:GetService( "ReplicatedStorage" ):WaitForChild( "Tools" ) |
02 | local RemoteEvent = game:GetService( "ReplicatedStorage" ).Remotes.Punch |
03 | local Animation = Tools.SuperPunch.PunchConnecter.Animation |
04 |
05 | wait( 1 ) |
06 |
07 | RemoteEvent.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) |
I personally prefer handling it all on a single script inside the tool
01 | --Script |
02 | local tool = script.Parent; |
03 | local Animation = game.ReplicatedStorage:WaitForChild( "Tools" ):WaitForChild( "SuperPunch" ):WaitForChild( "PunchConnecter" ):WaitForChild( "Animation" ) |
04 |
05 | local char |
06 | local humanoid = char:WaitForChild( "Humanoid" ) |
07 | local RArm |
08 |
09 | local canAttack = true |
10 | local attacking = false |
11 | local equipped = false |
12 |
13 | tool.Equipped:Connect( function () |
14 | equipped = true |
15 | RArm = = char:WaitForChild( "RightHand" ) |
You have to ignore the player on server
01 | local Tools = game:GetService( "ReplicatedStorage" ):WaitForChild( "Tools" ) |
02 | local RemoteEvent = game:GetService( "ReplicatedStorage" ).Remotes.Punch |
03 | local Animation = Tools.SuperPunch.PunchConnecter.Animation |
04 |
05 | wait( 1 ) |
06 |
07 | RemoteEvent.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) |