-- Deobfuscated version (kept original var-style names) -- Filename: out (5).lua local args = {...} -- The original script used loadstring; here we inline and keep the varX naming style local function var1() -- Services local var4 = game:GetService("Players") local var5 = var4.LocalPlayer local var6 = game:GetService("StarterGui") local var7 = game:GetService("ReplicatedStorage") local var9 = game:GetService("CoreGui") -- ScreenGui local var8 = Instance.new("ScreenGui") var8.Name = "ScreenBackdoor" var8.Parent = var9 var8.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- Main frame local var12 = Instance.new("Frame") var12.Name = "fucking frame" var12.Parent = var8 var12.BackgroundColor3 = Color3.fromRGB(0,0,0) var12.BorderColor3 = Color3.fromRGB(255,255,255) var12.BorderSizePixel = 3 var12.Position = UDim2.new(0.231, 0, 0.245, 0) var12.Size = UDim2.new(0, 600, 0, 329) var12.Active = true var12.Draggable = true -- Title label local var21 = Instance.new("TextLabel") var21.Name = "Text" var21.Parent = var12 var21.BackgroundTransparency = 1 var21.Size = UDim2.new(0, 600, 0, 50) var21.Font = Enum.Font.Cartoon var21.Text = "k00pkid6660 SS executer" var21.TextColor3 = Color3.fromRGB(255,255,255) var21.TextScaled = true var21.TextWrapped = true var21.ZIndex = 90 -- Command textbox local var28 = Instance.new("TextBox") var28.Name = "testbox" var28.Parent = var12 var28.BackgroundColor3 = Color3.fromRGB(0,0,0) var28.BorderColor3 = Color3.fromRGB(255,255,255) var28.BackgroundTransparency = 0 var28.BorderSizePixel = 2 var28.Position = UDim2.new(0,20,0,50) var28.Size = UDim2.new(0,560,0,215) var28.ClearTextOnFocus = false var28.Font = Enum.Font.Code var28.MultiLine = true var28.PlaceholderText = "Enterereeer" var28.Text = "" var28.TextSize = 15 var28.TextColor3 = Color3.fromRGB(255,255,255) var28.TextXAlignment = Enum.TextXAlignment.Left var28.TextYAlignment = Enum.TextYAlignment.Top var28.TextWrapped = true var28.TextScaled = false -- Execute button local var45 = Instance.new("TextButton") var45.Name = "epokxkxkxkkxkk" var45.Parent = var12 var45.BackgroundColor3 = Color3.fromRGB(0,0,0) var45.BorderColor3 = Color3.fromRGB(255,255,255) var45.BorderSizePixel = 2 var45.Size = UDim2.new(0,180,0,50) var45.Position = UDim2.new(0,20,0,275) var45.Font = Enum.Font.Cartoon var45.Text = "Execute" var45.TextColor3 = Color3.fromRGB(255,255,255) var45.TextScaled = true var45.TextWrapped = true var45.MouseButton1Click:Connect(function() -- Fires the textbox text to all RemoteEvents / RemoteFunctions in common services local services = {workspace, var7, game.ReplicatedFirst} for _, service in pairs(services) do for _, rem in pairs(service:GetDescendants()) do -- Protect calls with pcall to avoid errors if rem:IsA("RemoteEvent") then pcall(function() rem:FireServer(var28.Text) end) elseif rem:IsA("RemoteFunction") then pcall(function() rem:InvokeServer(var28.Text) end) end end end end) -- Clear button local var59 = Instance.new("TextButton") var59.Name = "Test5" var59.Parent = var12 var59.BackgroundColor3 = Color3.fromRGB(0, 0, 0) var59.BorderColor3 = Color3.fromRGB(255, 255, 255) var59.BorderSizePixel = 2 var59.Size = UDim2.new(0, 180, 0, 50) var59.Position = UDim2.new(0, 210, 0, 275) var59.Font = Enum.Font.Cartoon var59.Text = "Clear" var59.TextColor3 = Color3.fromRGB(255, 255, 255) var59.TextScaled = true var59.TextWrapped = true var59.MouseButton1Click:Connect(function() var28.Text = "" end) -- Scan button + scanning logic local var73 = Instance.new("TextButton") var73.Name = "4c7f1h7k64n4px" var73.Parent = var12 var73.BackgroundColor3 = Color3.fromRGB(0, 0, 0) var73.BorderColor3 = Color3.fromRGB(255, 255, 255) var73.BorderSizePixel = 2 var73.Position = UDim2.new(0, 400, 0, 275) var73.Size = UDim2.new(0, 180, 0, 50) var73.Font = Enum.Font.Cartoon var73.Text = "Scan" var73.TextColor3 = Color3.fromRGB(255, 255, 255) var73.TextScaled = true var73.TextWrapped = true local scanning = false local found = false local function scanBackdoor(button) if scanning then return end scanning = true found = false button.Text = "Scanning" local Services = {var7, workspace, game.ReplicatedFirst} for _, service in pairs(Services) do for _, rem in pairs(service:GetDescendants()) do if rem:IsA("RemoteEvent") then pcall(function() rem:FireServer("Instance.new('LocalScript', workspace)") end) wait(0.5) if workspace:FindFirstChildWhichIsA("LocalScript") then found = true var6:SetCore("SendNotification", { Title = "backdoor found", Text = "Found a backdoor: " .. rem:GetFullName(), Duration = 3 }) break end elseif rem:IsA("RemoteFunction") then pcall(function() rem:InvokeServer("Instance.new('LocalScript', workspace)") end) wait(0.5) if workspace:FindFirstChildWhichIsA("LocalScript") then found = true var6:SetCore("SendNotification", { Title = "backdoor found", Text = "Found a backdoor: " .. rem:GetFullName(), Duration = 3 }) break end end end if found then break end end if found then button.Text = "Scanned" else var6:SetCore("SendNotification", { Title = "backdoor not found", Text = "No backdoor detected", Duration = 3 }) button.Text = "No backdoor" end scanning = false end var73.MouseButton1Click:Connect(function() scanBackdoor(var73) end) end -- Execute the inlined function (keeps original flow) local var3 = var1() -- Return statement kept for compatibility (original script structure preserved) return nil