diff --git a/.github/ISSUE_TEMPLATE/troubleshooting-help.md b/.github/ISSUE_TEMPLATE/troubleshooting-help.md
deleted file mode 100644
index b8c876b..0000000
--- a/.github/ISSUE_TEMPLATE/troubleshooting-help.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-name: Troubleshooting help
-about: Ask for help to solve problems with user.js
-title: 'follow instructions or this will be closed as invalid'
-labels: ''
-assignees: ''
-
----
-
-<!--
-
-Issues will be closed as invalid if you do not troubleshoot first, or if you ignore the required info in the template.
-
-We do not support forks or no-longer supported releases.
-
--->
-
-
-🟥 https://github.com/arkenfox/user.js/wiki/5.2-Troubleshooting
-- [ ] I have read the troubleshooting guide, done the checks and confirmed this is caused by arkenfox
-   - _unchecked issues ~~may~~ will be closed as invalid_
-
-🟪 REQUIRED INFO
-  - Browser version & OS:
-  - Steps to Reproduce (STR):
-  - Expected result:
-  - Actual result:
-  - Console errors and warnings:
-  - Anything else you deem worth mentioning:
-
----
diff --git a/.github/ISSUE_TEMPLATE/troubleshooting-help.yml b/.github/ISSUE_TEMPLATE/troubleshooting-help.yml
new file mode 100644
index 0000000..e5b3271
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/troubleshooting-help.yml
@@ -0,0 +1,60 @@
+name: Troubleshooting help
+description: Ask for help to solve problems with user.js
+body:
+  - type: markdown
+    attributes:
+      value: |
+        Issues will be closed as invalid if you do not troubleshoot first, or if you ignore the required info in the template.
+  - type: checkboxes
+    attributes:
+      label: Checklist
+      options:
+        - label: I have read the [troubleshooting guide](https://github.com/arkenfox/user.js/wiki/5.2-Troubleshooting), done the checks and confirmed this is caused by arkenfox.
+          required: true
+        - label: I do not use a fork or a no-longer supported releases.
+          required: true
+
+  - type: input
+    attributes:
+      label: Browser version & OS
+    validations:
+      required: true
+
+  - type: textarea
+    attributes:
+      label: Description
+      description: Description of the bug
+    validations:
+      required: true
+
+  - type: textarea
+    attributes:
+      label: Steps to Reproduce
+      placeholder: |
+        1. [First Step]
+        2. [Second Step]
+        3. [and so on...]
+    validations:
+      required: true
+
+  - type: textarea
+    attributes:
+      label: Expected behavior
+      description: What you expected to happen
+    validations:
+      required: true
+
+  - type: textarea
+    attributes:
+      label: Actual behavior
+      description: What actually happened
+    validations:
+      required: true
+
+  - type: textarea
+    attributes:
+      label: Console errors and warnings
+
+  - type: textarea
+    attributes:
+      label: Anything else you deem worth mentioning