Hey! Actually I was copying the Push Tool Script form AlvinBlox but it’sjust 50 50 working. It’s just flings the user in one direction. No matters form which side im trying to pushing the character.
Heres the script:
local PushForce = Instance.new("BodyVelocity")
PushForce.Name = "PushFoce"
PushForce.MaxForce = Vector3.new(10000000,10000000,10000000)
PushForce.Velocity = (-victim.HumanoidRootPart.CFrame.lookVector) * 100
PushForce.Parent = victim.HumanoidRootPart
wait(0.25)
PushForce:Destroy()
Can anyone help me to fix it?