en
Feedback
Delta Scripts

Delta Scripts

Open in Telegram

тут будут скрипты на различные плейсы а так же обновы дельты 👑Owner- @Avtor1zaTion 💸По рекламе- @AvtorManager ⛱️Курс рекламы- https://t.me/SalesAvtor1zaTion/43

Show more

📈 Analytical overview of Telegram channel Delta Scripts

Channel Delta Scripts (@deltascripts) in the Russian language segment is an active participant. Currently, the community unites 42 157 subscribers, ranking 1 970 in the Games category and 15 178 in the Russia region.

📊 Audience metrics and dynamics

Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 42 157 subscribers.

According to the latest data from 02 July, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 7 890 over the last 30 days and by 237 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 14.59%. Within the first 24 hours after publication, content typically collects 3.58% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 6 111 views. Within the first day, a publication typically gains 1 499 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 15.
  • Thematic interests: Content is focused on key topics such as скрипт, r15, aimbot, script, брэйнрота.

📝 Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
тут будут скрипты на различные плейсы а так же обновы дельты 👑Owner- @Avtor1zaTion 💸По рекламе- @AvtorManager ⛱️Курс рекламы- https://t.me/SalesAvtor1zaTion/43

Thanks to the high frequency of updates (latest data received on 03 July, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Games category.

42 157
Subscribers
+23724 hours
+1 7797 days
+7 89030 days
Posts Archive
2. Blade league
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/BladeLeague"))()

1. Eat the world
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/TheHuntEattheWorld"))()

Выкладывать скрипты на новое событие "The Hunt: Mega Edition"?

❗️Новая информация от создателя дельты❗️ ☄️Перевод:
В настоящий момент дельта не работает, пожалуйста ждите следующие обновление.
А как у вас ситуация?

🎮 • GAME:
Universal
🕹️ • FUNC:
Удобный скрипт на настройку прицела
⚙️ • script:
settings = {
    color = Color3.fromRGB(255, 255/2, 255),    -- The color of the crosshair, takes any Color3.
    thickness = 2,                              -- The thickness of the crosshair in pixel, takes any full number.
    length = 8,                                 -- The length of each side in pixel, takes any full number.
    opacity = 1,                                -- The opacity of the crosshair, takes any number, 1 is fully visible and 0 is invisible.
 x_offset = 0,                               -- The x offset of the crosshair, takes any positive or negative number.
 y_offset = 0,                               -- The y offset of the crosshair, takes any positive or negative number.
 
    recenter = true                             -- Automatically recenter the crosshair if your window was resized, this is an option in case it causes lag for anyone which I highly doubt, if it does for you, then please stop using your Microwave for Roblox.
}

local cam = workspace.CurrentCamera or workspace:FindFirstChildOfClass("Camera")

getgenv().crosshair_x = getgenv().crosshair_x or {}
getgenv().crosshair_y = getgenv().crosshair_y or {}

local function draw(a1, a2)
    local obj = Drawing.new(a1)
    for i, v in pairs(a2) do 
        obj[i] = v
    end
    return obj
end

if getgenv().crosshair_x ~= nil or getgenv().crosshair_x ~= {} then
    if getgenv().crosshair_x["Line"] then
        getgenv().crosshair_x["Line"]:Remove()
    end
    
    if getgenv().crosshair_x["Connection"] then
        getgenv().crosshair_x["Connection"]:Disconnect()
    end
    getgenv().crosshair_x = {}
end

if getgenv().crosshair_y ~= nil or getgenv().crosshair_y ~= {} then
    if getgenv().crosshair_y["Line"] then
        getgenv().crosshair_y["Line"]:Remove()
    end

    if getgenv().crosshair_y["Connection"] then
        getgenv().crosshair_y["Connection"]:Disconnect()
    end
    
    getgenv().crosshair_y = {}
end

getgenv().crosshair_x["Line"] = draw("Line", {
    To = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) - settings.length, (cam.ViewportSize.y / 2) - settings.y_offset),
    From = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) + settings.length, (cam.ViewportSize.y / 2) - settings.y_offset),
    Thickness = settings.thickness,
    Color = settings.color,
    Transparency = settings.opacity,
    Visible = true
})

getgenv().crosshair_y["Line"] = draw("Line", {
    To = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) - settings.length),
    From = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) + settings.length),
    Thickness = settings.thickness,
    Color = settings.color,
    Transparency = settings.opacity,
    Visible = true
})

if settings.recenter then
    getgenv().crosshair_x["Connection"] = cam:GetPropertyChangedSignal("ViewportSize"):Connect(function()
        getgenv().crosshair_x["Line"]["To"] = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) - settings.length, (cam.ViewportSize.y / 2) - settings.y_offset)
        getgenv().crosshair_x["Line"]["From"] = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) + settings.length, (cam.ViewportSize.y / 2) - settings.y_offset)
    end)

    getgenv().crosshair_y["Connection"] = cam:GetPropertyChangedSignal("ViewportSize"):Connect(function()
        getgenv().crosshair_y["Line"]["To"] = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) - settings.length)
        getgenv().crosshair_y["Line"]["From"] = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) + settings.length)
    end)
end
📋 • info - @Quest_tag ⭐ Request script: @LI_Script_rp_bot

🎮 • GAME:
Trident survival
🕹️ • FUNC:
esp and legit head
⚙️ • script:
loadstring(game:HttpGet("https://rawscripts.net/raw/Trident-Survival-V3-esp-and-hitbox-op-***-legit-head-and-good-esp-12304"))("t.me/LI_Script")
📋 • info - @Quest_tag ⭐ Request script: @LI_Script_rp_bot

🎮 • GAME:
ability wars
🕹️ • FUNC:
NO KNOCKBACK, INFINITE REACH, KILLAURA, CLICKAURA/LEGITAURA, ESP, SHACKLE KILL, NO GLUE, NO SHACKLE, VELOCITY CLAMP, RESPAWN, AUTORESPAWN, ANTIVOID, ETC...
⚙️ • script:
loadstring(game:HttpGet("https://paste.ee/r/Wo5Kj"))("t.me/LI_Script")
📋 • info - @Quest_tag ⭐ Request script: @LI_Script_rp_bot

🎮 • GAME:
work in a pizza place
🕹️ • FUNC:
autofram and more
⚙️ • script:
loadstring(game:HttpGet("https://rawscripts.net/raw/Work-at-a-Pizza-Place-Pizz-Plce-utoFrm-Script-3972"))("t.me/LI_Script")
📋 • info - @Quest_tag ⭐ Request script: @LI_Script_rp_bot

🎮 • GAME:
dead rails
🕹️ • FUNC:
Features Lobby: Create lobby (1-10) Exit party Reset avatar Fov Changer Features In-Game: Gun mods Always text size on (Move the x and y size around to fix it not appearing!) Serverhop No Proximityprompt hold delay Auto heal (at specific health) No heal delay Full Bright Ambient changer 3rd person and fov changer
⚙️ • script:
loadstring(game:HttpGet("https://raw.githubusercontent.com/kylosilly/astolfoware/refs/heads/main/astolfo%20ware%20loader.lua"))("t.me/LI_Script")
📋 • info - @Quest_tag ⭐ Request script: @LI_Script_rp_bot

🖥 Скрипт на SUFFER 👍by @killerpalitr 🔒 Ключ: ❌ 🔗 Функции: Телепорт, Флинг, Таргеттинг ❓ Статус: ✔️ Пк ✔️ Телефон 🖥 Скрип
🖥 Скрипт на SUFFER 👍by @killerpalitr 🔒 Ключ: ❌ 🔗 Функции: Телепорт, Флинг, Таргеттинг ❓ Статус: ✔️ Пк ✔️ Телефон 🖥 Скрипт: loadstring(game:HttpGet("https://rawscripts.net/raw/SUFFER-script-31807"))()

🔥 Новый Quest X на андроид

QuestX 2.663.660.apk170.01 MB

Че с реакциями, я просто выложил новую версию дельты

🔥 Опять новая дельта на андроид

Delta-663.659-01.apk224.46 MB

🔥 Опять новая дельта ↑↑

🎮 • GAME:
Script/Murder Mystery 2
🕹️ • FUNC:
God Mode, Kill Aura, Silent Aim at script-rbx
⚙️ • script:
loadstring(game:HttpGet("https://raw.githubusercontent.com/KidichiHB/Kidachi/main/Scripts/MM2_V2"))("t.me/LI_Script")
📋 • info - @Quest_tag ⭐ Request script: @LI_Script_rp_bot

🎮 • GAME:
Ultimate
🕹️ • FUNC:
когда ты запускаешь этот скрипт и при движении персонажа допустим прыжок или ходьба. при зажатии буквы С на клавиатуре скрипт возвращает эти действия допустим спрыгнул ты случайно в бездну зажал кнопку С и он тебя вернул на то место от которого ты упал.
⚙️ • script:
loadstring(game:HttpGet("https://raw.githubusercontent.com/SCRIPTHUNTERS/ReverseTime/refs/heads/main/REVERSE"))("t.me/LI_Script")
📋 • info - @Quest_tag ⭐ Request script: @LI_Script_rp_bot

🔥 Новая дельта на андроид↑↑

Delta-662.537-01.apk224.47 MB