From cbbf123dd6d55e71972a77ee4ea61a7471c5aec1 Mon Sep 17 00:00:00 2001 From: Xytrix Date: Sat, 15 Nov 2025 15:29:26 +0100 Subject: [PATCH 1/3] update added checks that prevents opening the script many times. --- source.lua | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/source.lua b/source.lua index 647b4fe..1a5da30 100644 --- a/source.lua +++ b/source.lua @@ -1,3 +1,9 @@ +-- stop if already running, prevents lag ofc. +if _G.eternal_esp_loaded then + return +end +_G.eternal_esp_loaded = true + -- custom version of ui lib local ui = loadstring(game:HttpGet("https://raw.githubusercontent.com/kitodoescode/Bracket/main/BracketV34.lua"))() @@ -69,7 +75,11 @@ local all_bones_r15 = { "LeftHand" } -local window = ui:Window({Name = "eternal | @kitodoescode"}) +-- check if window already exists +if not _G.eternal_window then + _G.eternal_window = ui:Window({Name = "eternal | @kitodoescode"}) +end +local window = _G.eternal_window do local watermark = window:Watermark( From c6e23f118456bc9d297b31013bd2000f71603bd2 Mon Sep 17 00:00:00 2001 From: Xytrix Date: Sat, 15 Nov 2025 15:40:07 +0100 Subject: [PATCH 2/3] small update just added print --- source.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/source.lua b/source.lua index 1a5da30..4051ff8 100644 --- a/source.lua +++ b/source.lua @@ -1,5 +1,6 @@ -- stop if already running, prevents lag ofc. if _G.eternal_esp_loaded then + print("eternal is already open!") return end _G.eternal_esp_loaded = true From c1da75d1a854142f4ee5db403e9734d056c97d73 Mon Sep 17 00:00:00 2001 From: Xytrix Date: Sat, 15 Nov 2025 16:17:48 +0100 Subject: [PATCH 3/3] small update again :)) added date to the window title --- source.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source.lua b/source.lua index 4051ff8..4254237 100644 --- a/source.lua +++ b/source.lua @@ -78,7 +78,7 @@ local all_bones_r15 = { -- check if window already exists if not _G.eternal_window then - _G.eternal_window = ui:Window({Name = "eternal | @kitodoescode"}) + _G.eternal_window = ui:Window({Name = "eternal | @kitodoescode | " .. date}) end local window = _G.eternal_window do @@ -99,6 +99,7 @@ do if curr - last >= 1 then date = os.date("%d-%m-%y") watermark.Title = "eternal | @kitodoescode | " .. date + window.Name = "eternal | @kitodoescode | " .. date end end )