This Script makes my character fly while i just want it to rotate it

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

  1. **I want it just to get rotated

  2. **my char flies!

  3. **I have found nothing

RS.Heartbeat:Connect(function()
	if equiped == true then
		local ToolHandle = Tool:WaitForChild("BodyAttach")
		local MouseLookVector = Mouse.Hit
		ToolHandle.CFrame = CFrame.new(ToolHandle.Position, MouseLookVector)
	end
end)