The price of a used vehicle depends on various aspects that cause changes in the selling value in the market, such as model, year, transmission, mileage, fuel, tax, mpg, and cc. A common problem in used car transactions is determining prices that are still not fully based on measurable data analysis. The purpose of this study is to design a model to estimate the price of a used car through the multiple linear regression method and implement it in the User Interface. The data used in this study is secondary data obtained from the Kaggle public repository, and collected from several used car buying and selling forums in Pekanbaru and social media platforms such as Facebook that contain vehicle price information. The dataset contains 400 rows of data with a range of car years from 2005 to 2025. The research stages include data preprocessing in the form of categorical variable encoding and data normalization. Data is divided into training data and testing data, followed by the process of model building and model performance assessment. Evaluation is carried out using the Mean Squared Error (MSE), Root Mean Squared Error (RMSE), Mean Absolute Error (MAE), and coefficient of determination (R²) metrics. The model was built using several independent variables, namely model, year, transmission, kilometer, fuel, tax, mpg, and cc, with vehicle price as the dependent variable. Based on the test results, the multiple linear regression method shows the ability to produce used car price estimates and has potential for application in decision support systems. The test results show that the MSE value on the training data is 0.004 and the testing data is 0.010, MAE on the training data is 0.046 and the testing data is 0.071, and RMSE on the training data is 0.062 and 0.100 on the testing data, the coefficient of determination (R²) on the training data is 0.985 and on the testing data is 0.955. The next model is implemented using the Python Gradio library so that users can predict vehicle prices through the User Interface.