How would I fling a roblox player forwards, just a bit

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I want to move/fling the character forwards a little
  2. What is the issue? Include screenshots / videos if possible!
    My code doesn’t work
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    devforum didn’t help & I was also experimenting around

my code:

		local Velocity = player.Character.HumanoidRootPart.CFrame.LookVector*100
		player.Character.HumanoidRootPart:ApplyImpulse(Velocity)

solved this myself: local plrhum = player.Character.HumanoidRootPart local BodyVelocity = Instance.new("BodyVelocity") BodyVelocity.MaxForce = Vector3.new(10000000, 10000000, 10000000) BodyVelocity.Velocity = plrhum.CFrame.LookVector * 20 BodyVelocity.Parent = plrhum debrisservice:AddItem(BodyVelocity,0.15)

1 Like

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