How can I drop a bomb and have to move away the way I'm facing

I wish to use ApplyImpulse here.

bomb.Parent = game.Workspace
I’m good up to here just dropped the bomb.
I also have a link to the char, so can get to rootpart if needed.

bomb:ApplyImpulse(Vector3.new(100,0,0))
The 100 makes it move horizontally, just not away the way I’m facing.

		Bomb.Parent = workspace
		Bomb.CFrame = Player.Character.HumanoidRootPart.CFrame + Player.Character.HumanoidRootPart.CFrame.LookVector * Vector3.new(5, 0, 5)
		Bomb:ApplyImpulse(Player.Character.HumanoidRootPart.CFrame.LookVector * Vector3.new(500, 0, 500))

Tried that a few ways. I knew it was something like that. Thank you!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.