loadstring([[ -- JERTECH ESP V1 local Players = game:GetService("Players") local UIS = game:GetService("UserInputService") local Player = Players.LocalPlayer -- STATES local espOn = false local espObjects = {} -- GUI local gui = Instance.new("ScreenGui", game.CoreGui) gui.Name = "JERTECH_ESP" local frame = Instance.new("Frame", gui) frame.Size = UDim2.fromOffset(260, 240) frame.Position = UDim2.fromScale(0.05, 0.25) frame.BackgroundColor3 = Color3.fromRGB(20,20,20) -- Black theme frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1,0,0,40) title.Text = "JERTECH ESP V1" title.TextColor3 = Color3.fromRGB(255,255,255) title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBold title.TextSize = 22 local function button(text, y, callback) local b = Instance.new("TextButton", frame) b.Size = UDim2.new(1,-20,0,30) b.Position = UDim2.new(0,10,0,y) b.Text = text b.Font = Enum.Font.Gotham b.TextSize = 14 b.BackgroundColor3 = Color3.fromRGB(35,35,35) b.TextColor3 = Color3.new(1,1,1) b.MouseButton1Click:Connect(callback) end -- ESP FUNCTIONS local function clearESP() for _, v in pairs(espObjects) do if v then v:Destroy() end end espObjects = {} end local function addESP(plr) if plr == Player or not plr.Character then return end local h = Instance.new("Highlight") h.FillColor = Color3.fromRGB(0,255,0) -- Green highlight h.FillTransparency = 0.5 h.Parent = plr.Character table.insert(espObjects, h) end -- BUTTONS button("ESP Toggle", 50, function() espOn = not espOn clearESP() if espOn then for _, p in pairs(Players:GetPlayers()) do addESP(p) p.CharacterAdded:Connect(function() if espOn then task.wait(1) addESP(p) end end) end end end) button("Close Menu (+ to reopen)", 90, function() frame.Visible = false end) -- KILL MENU BUTTON button("Kill Menu", 130, function() clearESP() -- Remove all ESP objects gui:Destroy() -- Completely remove the GUI espOn = false end) -- TOGGLE MENU WITH '+' local toggleEnabled = true UIS.InputBegan:Connect(function(input, gpe) if gpe then return end if input.KeyCode == Enum.KeyCode.Equals and toggleEnabled then frame.Visible = not frame.Visible end end) print("JERTECH ESP V1 LOADED") ]])()