\documentclass[border=2pt]{standalone}
% Drawing
\usepackage{tikz}
% Notation
\usepackage{physics}
% Tikz Library
\usetikzlibrary{calc}
% Newcommand
%% Point
\newcommand{\point}[1]{\draw[fill=black] (#1) circle (1.5pt);}
%node [shift={(#3)}] {#2};
% Style
\tikzset{mass/.style={inner sep = 2.2pt, circle}}
\begin{document}
\begin{tikzpicture}
%Grid
% \draw[thin, dotted] (0,0) grid (8,8);
% \foreach \i in {1,...,8}
% {
% \node at (\i,-2ex) {\i};
% }
% \foreach \i in {1,...,8}
% {
% \node at (-2ex,\i) {\i};
% }
% \node at (-2ex,-2ex) {0};
% Coordiantes
\node[mass] (O) at (0,0) {};
\node[mass] (A) at (4,3.5) {};
\node[mass] (B1) at (2,4) {};
\node[mass] (B2) at (5,2) {};
\node[mass] (B3) at (7,1.5) {};
\node[mass] (B4) at (6.5,3) {};