'Pushing' a player when hit by projectile relative to the projectile's direction?
I'm looking for a way in which a player, when hit by a projectile, is flung backwards and in the direction of the projectile that hit them.
Currently - when hit by the projectile - the player's torso's velocity is simply set to the lookVector property of the projectile and multiplied, like so:
1 | projectile.Touched:connect( function (part) |
2 | local hum = projectile.Parent:FindFirstChild( "Humanoid" ) |
4 | hum.Parent.Torso.Velocity = (projectile.CFrame.lookVector) * 100 |
However, what I'm trying to do is to apply some sort of upwards force on the player, so they are properly flung backwards rather than at the ground. This Gyazo image better demonstrates what I'm trying to achive.
If anyone could give me a point in the right direction here, I'd be very grateful.