diff --git a/docs/en/manuals/debugging-game-logic.md b/docs/en/manuals/debugging-game-logic.md
index bd017b48..f51ed7a3 100644
--- a/docs/en/manuals/debugging-game-logic.md
+++ b/docs/en/manuals/debugging-game-logic.md
@@ -87,6 +87,11 @@ Setting and clearing breakpoints
To set or clear a breakpoint, click in the column just right of the line numbers in the code editor. You can also select Edit ▸ Toggle Breakpoint from the menu.
+Disabling and enabling breakpoints
+: Breakpoints can be temporarily disabled without removing them. When disabled, they are ignored during execution but can be re-enabled at any time. Right-click it in the code editor gutter, then toggle the Enabled checkbox. Disabled breakpoints appear hollowed out to indicate they are inactive.
+
+ 
+
Setting conditional breakpoints
: You can configure your breakpoint to contain a condition that needs to evaluate to true for the breakpoint to trigger. The condition can access local variables available at the line during code execution.
@@ -104,6 +109,26 @@ Evaluating Lua expressions
Detaching the debugger
: Select Debug ▸ Detach Debugger to detach the debugger from the game. It will continue running immediately.
+## Breakpoints Tab
+
+ 
+
+ When working with multiple breakpoints across different scripts, the Breakpoints tab provides a centralized view for managing all your breakpoints in one place.
+
+##### Individual Breakpoint Controls
+
+ For working with individual breakpoints:
+ - Click the red trash icon to remove a breakpoint
+ - Double-click the row (outside the condition area) to navigate to that line in the Code View
+ - Double-click the condition cell or click the pen icon to edit conditional breakpoints
+ - Click the X clear button when hovering over a condition cell to clear the condition
+
+##### Batch Operations
+
+ Select multiple breakpoints using Ctrl/Cmd+click or Shift+click, then right-click to perform bulk actions. You can edit conditions across several breakpoints simultaneously, toggle their active state, or remove them entirely.
+
+ The toolbar buttons allow you to enable, disable, or toggle all breakpoints at once, useful when you want to run your game without stopping but don't want to lose their positions. You can also remove all when you're done with your debugging session.
+
## Lua debug library
Lua comes with a debug library that is useful in some situations, particularly if you need to inspect the innards of your Lua environment. You can find more information about it in [the chapter about the Debug Library in the Lua manual](http://www.lua.org/pil/contents.html#23).
diff --git a/docs/en/manuals/images/debugging/breakpoints_tab.png b/docs/en/manuals/images/debugging/breakpoints_tab.png
new file mode 100644
index 00000000..99e57619
Binary files /dev/null and b/docs/en/manuals/images/debugging/breakpoints_tab.png differ
diff --git a/docs/en/manuals/images/debugging/disable_breakpoint.png b/docs/en/manuals/images/debugging/disable_breakpoint.png
new file mode 100644
index 00000000..ffa8aeaa
Binary files /dev/null and b/docs/en/manuals/images/debugging/disable_breakpoint.png differ
diff --git a/docs/en/manuals/images/debugging/disable_breakpoint@2x.png b/docs/en/manuals/images/debugging/disable_breakpoint@2x.png
new file mode 100644
index 00000000..07da2d58
Binary files /dev/null and b/docs/en/manuals/images/debugging/disable_breakpoint@2x.png differ
diff --git a/docs/en/manuals/images/debugging/edit_breakpoint.png b/docs/en/manuals/images/debugging/edit_breakpoint.png
index 855cac68..16818928 100644
Binary files a/docs/en/manuals/images/debugging/edit_breakpoint.png and b/docs/en/manuals/images/debugging/edit_breakpoint.png differ
diff --git a/docs/en/manuals/images/debugging/edit_breakpoint@2x.png b/docs/en/manuals/images/debugging/edit_breakpoint@2x.png
index 515aff61..2b15f2a1 100644
Binary files a/docs/en/manuals/images/debugging/edit_breakpoint@2x.png and b/docs/en/manuals/images/debugging/edit_breakpoint@2x.png differ