What is the best way to fling a player, similar to how the impulse grenade in Fortnite knocks back a player?
I’ve tried adding a BodyForce to the HumanoidRootPart that lasts for 0.2 seconds and this works well except that nothing happens every one out of five times.
but the reason it isnt worked for you all the time is because it may not apply enough vertical velocity and so you are fighting the friction of the floor
also you want to use hrp instead of head/torso bc no reason not to (??) and its more consistent (??) (< someone pls say if this is wrong)
also it works with both r15 and r6
Can’t say it’s wrong, but HumanoidRootPart definitely seems more consistent to me. Not everything has a head, but every character (whether controlled by a player or script) should have a root part.
You need to apply the velocity change on the client that is being pushed back, otherwise that client may override the velocity change the server is trying to do, as the client owns their character’s physics.
For me personally, for the hockey checks in my game, I create a bodyforce object on the client that is being checked (parented to the hrp), and have it apply a force for .3 seconds or so before removing it. This method works even with FE, as the client controls their own character’s physics.