Sooo I made or I am trying to make a Punch script and I am right now at the point where i am making the Hitboxes which should be located where the players hands are but there are not at the lower end of the Arm but in the Middel how would I move them down
the (local) script:
local plr = game.Players.LocalPlayer
local char = plr.Character
local Hum = char:WaitForChild("Humanoid")
local HitboxLeft = Instance.new("Part")
HitboxLeft.Parent = char:WaitForChild("Left Arm")
HitboxLeft.Size = Vector3.new(1,1,1)
local LeftWeld = Instance.new("Weld")
LeftWeld.Parent = HitboxLeft
LeftWeld.Part0 = HitboxLeft
LeftWeld.Part1 = char:WaitForChild("Left Arm")
local HitboxRight = Instance.new("Part")
HitboxRight.Parent = char:WaitForChild("Right Arm")
HitboxRight.Size = Vector3.new(1,1,1)
local RightWeld = Instance.new("Weld")
RightWeld.Parent = HitboxRight
RightWeld.Part0 = HitboxRight
RightWeld.Part1 = char:WaitForChild("Right Arm")