Im following a tutorial on how to make a combat system on roblox, and im trying to make it so you can launch people with the first hit of a M1 combo. I was able to get the BV working for knockback on the final hit, but i dont know how to edit it so i could make what im trying to on the first one. Thoughts would be appriceated!
Code:
local BV3 = Instance.new("BodyVelocity")
BV3.MaxForce, BV3.Velocity = Vector3.new(5e4, 5e2, 5e4), plr.Character.HumanoidRootPart.CFrame.lookVector * 10
BV3.Parent = plr.Character.HumanoidRootPart
game.Debris:AddItem(BV3, 0.16)
** You are now Level 1! **