Help with Making punch script do damage

Hello this is the portion in question.

if RightArm.hit.Parent:FindFirstChild("Humanoid") then 
				if RightArm.Parent.Name ~= Player.Name then
					Humanoid:TakeDamage(5)

It says hit is not a valid member of the part. I’m not sure what to do

1 Like

There’s no part named hit in RightArm. I’m not sure what you mean but I think you’re using a touched event.

In that case, hit is not in RightArm. hit is it’s own separate part unconnected to RightArm. Remove RightArm.hit and replace with hit

1 Like

like @SSSpencer413 said,remove RightArm.hit and put hit.Parent.

1 Like

Make sure to mark this post as a solution if it helped you, or ask further questions if you’re still confused!

1 Like

As a matter of fact i could use more help.

here is the full thing

local Player = game.Players.LocalPlayer
local Character = script.Parent
local Humanoid = Character:WaitForChild("Humanoid")
local Mouse = Player:GetMouse()
local PunchAnim = Humanoid:LoadAnimation(script:WaitForChild("Punch1Anim"))
local PunchAnim2 = Humanoid:LoadAnimation(script:WaitForChild("Punch2Anim"))
local KickAnim = Humanoid:LoadAnimation(script:WaitForChild("Kick1Anim"))
local RightArm = game.Players.LocalPlayer.Character["Right Arm"]
local LeftArm = game.Players.LocalPlayer.Character["Left Arm"]
local Leftleg = game.Players.LocalPlayer.Character["Left Leg"]



local NextAnim = 1 
local Cooldown = false

Mouse.Button1Down:Connect(function()
	if not Cooldown then
		Cooldown = true

		if NextAnim == 1 then
			NextAnim = 2
			PunchAnim:Play()
					wait(0.5)	
				
	
		elseif NextAnim == 2 then
			NextAnim = 3
			PunchAnim2:Play()
					wait(0.5)	
				
			
		elseif NextAnim == 3 then
			NextAnim = 1
			KickAnim:Play()
					wait(0.5)	
				end
		
		
		
		local CurrentNextAnim = NextAnim
		
		Cooldown = false
		wait(0.5)
		if CurrentNextAnim == NextAnim then 
			NextAnim = 1
		end
	end
end)

What should I do to have the person hit by the anims take damage?
is there a way to apply damage when the body parts touches then. or should i create hitboxes? ( I’ve never made hitboxes beforew so idk how that works if we go down that Route).