diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md
deleted file mode 100644
index 77f41833..00000000
--- a/.github/ISSUE_TEMPLATE/bug-report.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-name: Bug Report
-about: Create a bug report to help us keep track of all bugs that have to be fixed
-title: "[BUG] Bug name"
-labels: bug
-
----
-
-**I have checked...**
-- [ ] ...if there are any similar bug reports
-- [ ] ...if a bug fix is already planned
-
-**Complete description**
-Write your bug description as good as you can.
-
-**Possible solution**
-If you have any possible solutions, write them here, if not, leave it blank or put "N/A".
-
-**Error/Server log**
-If you have any errors put them in here (from paste.gg or sentry)
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
new file mode 100644
index 00000000..54172d88
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -0,0 +1,53 @@
+name: Bug Report
+description: Create a bug report to help us keep track of all bugs that have to be fixed
+title: "[BUG]
"
+labels: [bug]
+
+body:
+ - type: checkboxes
+ id: i-have-checked
+ attributes:
+ label: I have checked...
+ options:
+ - label: "I am using the latest version of HMCCosmetics"
+ required: true
+ - label: "I am using the latest version of any dependencies"
+ required: true
+ - label: "I have checked if any similar bug reports exist"
+ required: true
+ - type: textarea
+ id: description
+ attributes:
+ label: Description
+ description: A full description of the bug
+ validations:
+ required: true
+ - type: textarea
+ id: reproduce
+ attributes:
+ label: Steps to reproduce
+ description: Explain how to reproduce this issue step-by-step, in as much detail as possible.
+ validations:
+ required: true
+ - type: textarea
+ id: hmcc-version
+ attributes:
+ label: Plugin Version
+ description: Run `version HMCCosmetics` in your console and paste the output
+ validations:
+ required: true
+ - type: textarea
+ id: meg-version
+ attributes:
+ label: ModelEngine Version
+ description: "Run `version ModelEngine` in your console and paste the output. Optional if not using balloons."
+ validations:
+ required: false
+ - type: textarea
+ id: server-version
+ attributes:
+ label: Server Version
+ description: "Run `version` in your console and paste the output."
+ validations:
+ required: true
+diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md