I am trying to make something where when the player clicks a key they go forward in the direction they are facing very fast but for some reason it doesn't go in the correct direction most of the time and the speed varies on how u rotate, here is my script :
local BodyVelocity = Instance.new("BodyVelocity") BodyVelocity.Parent = Character.HumanoidRootPart BodyVelocity.Velocity = Character.HumanoidRootPart.CFrame.LookVector * 50 Debris:AddItem(BodyVelocity, 2.09)
Any help would be greatly appreciated.