Sounds like issues with network ownership, you probably ran that script on the server. So try applying body velocity on the humanoid root part for knockback and set the part’s network owner to nil so that the server’s changes actually apply. After a small delay, do hrp:SetNetworkOwnershipAuto() to set it back to the player
old knockback, maybe you can pick out what you need.
--SeverScript inside a part.
local bv, char
local db = true
script.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") ~= nil then
if db then db = false char = hit.Parent
bv = Instance.new("BodyVelocity")
bv.Parent = (char.Head)
bv.MaxForce = Vector3.new(100000,100000,100000)
bv.Velocity = (char.Head.CFrame.LookVector * -80)
+ (char.Head.CFrame.UpVector * 80)
wait(0.01) bv:Destroy()
db = true
end
end
end)
local db = true
script.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
if db then db = false
local char = hit.Parent
local head = char:FindFirstChild("Head")
local hrp = char:FindFirstChild("HumanoidRootPart")
if head and hrp then
local lookDirection = head.CFrame.LookVector
local force = Instance.new("VectorForce")
force.Parent = hrp
force.Attachment0 = hrp:FindFirstChild("RootAttachment") or Instance.new("Attachment", hrp)
force.ApplyAtCenterOfMass = true
force.RelativeTo = Enum.ActuatorRelativeTo.World
force.Force = (lookDirection * -10000) + Vector3.new(0, 8000, 0)
task.wait(0.1) force:Destroy()
end db = true
end
end
end)
You need to try the Search button up top. This question has been solved so many times in other posts.
I did a quick search using the words knockback pushback and found a lot of previous posts.
I tried a similar way like this but Ill try the alternative, i haven’t tested it on players yet but it worked for dummys ill let you if it works or not thanks
other thing, I notice you directly put animations on the humanoid which is bad practice. I would recommend going humanoid.Animator:LoadAnimation(animation id)