How would I use BodyVelocity to shift a player left? I can't figure out how. Any help is appreciated
This requires a tool. Inside the tool insert a localscript. Paste this inside the local script
script.Parent.Equipped:Connect(function() print("Paratus") local plr = game.Players.LocalPlayer local char = plr.Character.Torso speed = -100 --make sure this is a negative number bodyV = Instance.new("BodyVelocity") bodyV.MaxForce = Vector3.new(90000,90000,90000) bodyV.Velocity = script.Parent.Parent.Torso.CFrame.RightVector * speed bodyV.Parent = script.Parent.Parent.Torso end)