Skip to content

Script for stealing the Branrot mod #66

Description

@ili934292-oss

--[[
t.me/sorttema | TemaHub Build
AlphaAssistant-0.1 | AS-0.1
]]

local function SafeInstance(class, properties)
local obj = Instance.new(class)
for prop, value in pairs(properties) do
pcall(function()
obj[prop] = value
end)
end
return obj
end

local function CreateTemaWindow()
local Player = game:GetService("Players").LocalPlayer
if not Player then return end

local TweenService = game:GetService("TweenService")

local Parent
pcall(function()
    Parent = game:GetService("CoreGui")
end)
if not Parent then
    Parent = Player:WaitForChild("PlayerGui")
end

local ScreenGui = SafeInstance("ScreenGui", {
    Name = "SortTemaHub",
    Parent = Parent,
    ResetOnSpawn = false
})

local settings = {
    MainColor = Color3.fromRGB(255, 180, 50),
    Version = "1.0"
}

-- ЭКРАН ЗАГРУЗКИ
local LoadingFrame = SafeInstance("Frame", {
    Name = "LoadingScreen",
    Size = UDim2.new(0, 360, 0, 200),
    Position = UDim2.new(0.5, -180, 0.5, -100),
    BackgroundColor3 = Color3.fromRGB(15, 15, 25),
    BorderSizePixel = 0,
    Parent = ScreenGui
})

SafeInstance("UICorner", {
    CornerRadius = UDim.new(0, 10),
    Parent = LoadingFrame
})

SafeInstance("Frame", {
    Size = UDim2.new(1, 0, 0, 3),
    BackgroundColor3 = settings.MainColor,
    BorderSizePixel = 0,
    Parent = LoadingFrame
})

SafeInstance("TextLabel", {
    Text = "TEMA HUB",
    Size = UDim2.new(1, 0, 0, 30),
    Position = UDim2.new(0, 0, 0, 18),
    BackgroundTransparency = 1,
    TextColor3 = Color3.fromRGB(255, 255, 255),
    Font = Enum.Font.GothamBold,
    TextSize = 24,
    Parent = LoadingFrame
})

SafeInstance("TextLabel", {
    Text = "t.me/sorttema",
    Size = UDim2.new(1, 0, 0, 16),
    Position = UDim2.new(0, 0, 0, 46),
    BackgroundTransparency = 1,
    TextColor3 = Color3.fromRGB(180, 180, 200),
    Font = Enum.Font.Code,
    TextSize = 10,
    Parent = LoadingFrame
})

-- СКРИПТ ДЛЯ УКРАДИ БРАЙНРОТ МОД
SafeInstance("TextLabel", {
    Text = "СКРИПТ ДЛЯ УКРАДИ БРАЙНРОТ МОД",
    Size = UDim2.new(1, 0, 0, 16),
    Position = UDim2.new(0, 0, 0, 68),
    BackgroundTransparency = 1,
    TextColor3 = Color3.fromRGB(255, 200, 50),
    Font = Enum.Font.Code,
    TextSize = 11,
    Parent = LoadingFrame
})

SafeInstance("TextLabel", {
    Text = "SCRIPT FOR UKRAINE BRAINROT MODS",
    Size = UDim2.new(1, 0, 0, 14),
    Position = UDim2.new(0, 0, 0, 86),
    BackgroundTransparency = 1,
    TextColor3 = Color3.fromRGB(255, 180, 60),
    Font = Enum.Font.Code,
    TextSize = 9,
    Parent = LoadingFrame
})

-- Полоса загрузки
local BarBg = SafeInstance("Frame", {
    Size = UDim2.new(1, -60, 0, 8),
    Position = UDim2.new(0, 30, 0, 112),
    BackgroundColor3 = Color3.fromRGB(30, 30, 45),
    BorderSizePixel = 0,
    Parent = LoadingFrame
})

SafeInstance("UICorner", {
    CornerRadius = UDim.new(0, 4),
    Parent = BarBg
})

local BarFill = SafeInstance("Frame", {
    Size = UDim2.new(0, 0, 1, 0),
    BackgroundColor3 = settings.MainColor,
    BorderSizePixel = 0,
    Parent = BarBg
})

SafeInstance("UICorner", {
    CornerRadius = UDim.new(0, 4),
    Parent = BarFill
})

local PercentText = SafeInstance("TextLabel", {
    Text = "Загрузка... 0%",
    Size = UDim2.new(1, 0, 0, 16),
    Position = UDim2.new(0, 0, 0, 128),
    BackgroundTransparency = 1,
    TextColor3 = Color3.fromRGB(160, 180, 200),
    Font = Enum.Font.Code,
    TextSize = 10,
    Parent = LoadingFrame
})

SafeInstance("TextLabel", {
    Text = "ДЛЯ УКРАДИ БРАЙНРОТ | UKRAINE BRAINROT",
    Size = UDim2.new(1, 0, 0, 14),
    Position = UDim2.new(0, 0, 0, 150),
    BackgroundTransparency = 1,
    TextColor3 = Color3.fromRGB(255, 160, 50),
    Font = Enum.Font.Code,
    TextSize = 9,
    Parent = LoadingFrame
})

SafeInstance("TextLabel", {
    Text = "Version " .. settings.Version .. " | t.me/sorttema",
    Size = UDim2.new(1, 0, 0, 14),
    Position = UDim2.new(0, 0, 0, 168),
    BackgroundTransparency = 1,
    TextColor3 = Color3.fromRGB(100, 120, 150),
    Font = Enum.Font.Code,
    TextSize = 9,
    Parent = LoadingFrame
})

-- Загрузка и запуск
spawn(function()
    for i = 0, 100 do
        BarFill.Size = UDim2.new(i / 100, 0, 1, 0)
        PercentText.Text = "Загрузка... " .. i .. "%"
        task.wait(0.01)
    end
    
    task.wait(0.3)
    LoadingFrame:Destroy()
    
    -- ОСНОВНОЙ ИНТЕРФЕЙС
    local MainFrame = SafeInstance("Frame", {
        Name = "MainFrame",
        Size = UDim2.new(0, 350, 0, 300),
        Position = UDim2.new(0.5, -175, 0.5, -150),
        BackgroundColor3 = Color3.fromRGB(22, 22, 35),
        BorderSizePixel = 0,
        Active = true,
        Draggable = true,
        Parent = ScreenGui
    })
    
    SafeInstance("UICorner", {
        CornerRadius = UDim.new(0, 8),
        Parent = MainFrame
    })
    
    -- Заголовок
    local TitleBar = SafeInstance("Frame", {
        Size = UDim2.new(1, 0, 0, 40),
        BackgroundColor3 = Color3.fromRGB(15, 15, 25),
        BorderSizePixel = 0,
        Parent = MainFrame
    })
    
    SafeInstance("UICorner", {
        CornerRadius = UDim.new(0, 8),
        Parent = TitleBar
    })
    
    SafeInstance("TextLabel", {
        Text = "TEMA HUB | t.me/sorttema",
        Size = UDim2.new(1, -40, 1, 0),
        Position = UDim2.new(0, 12, 0, 0),
        BackgroundTransparency = 1,
        TextColor3 = Color3.fromRGB(255, 255, 255),
        Font = Enum.Font.GothamBold,
        TextSize = 14,
        TextXAlignment = Enum.TextXAlignment.Left,
        Parent = TitleBar
    })
    
    local CloseBtn = SafeInstance("TextButton", {
        Size = UDim2.new(0, 32, 0, 32),
        Position = UDim2.new(1, -36, 0, 4),
        BackgroundColor3 = Color3.fromRGB(255, 50, 50),
        BorderSizePixel = 0,
        Text = "X",
        TextColor3 = Color3.fromRGB(255, 255, 255),
        Font = Enum.Font.GothamBold,
        TextSize = 14,
        Parent = TitleBar
    })
    
    SafeInstance("UICorner", {
        CornerRadius = UDim.new(0, 6),
        Parent = CloseBtn
    })
    
    CloseBtn.MouseButton1Click:Connect(function()
        ScreenGui:Destroy()
    end)
    
    -- Контент
    local ContentArea = SafeInstance("Frame", {
        Size = UDim2.new(1, -20, 1, -55),
        Position = UDim2.new(0, 10, 0, 48),
        BackgroundTransparency = 1,
        Parent = MainFrame
    })
    
    local function MakeButton(yPos, name, color, callback)
        local Btn = SafeInstance("TextButton", {
            Size = UDim2.new(1, 0, 0, 42),
            Position = UDim2.new(0, 0, 0, yPos),
            BackgroundColor3 = color,
            BorderSizePixel = 0,
            Text = name,
            TextColor3 = Color3.fromRGB(255, 255, 255),
            Font = Enum.Font.GothamBold,
            TextSize = 13,
            Parent = ContentArea
        })
        
        SafeInstance("UICorner", {
            CornerRadius = UDim.new(0, 6),
            Parent = Btn
        })
        
        Btn.MouseButton1Click:Connect(function()
            pcall(callback)
        end)
    end
    
    MakeButton(0, "FLY", Color3.fromRGB(60, 130, 220), function()
        loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
    end)
    
    MakeButton(50, "GHOST WALK", Color3.fromRGB(140, 80, 210), function()
        loadstring(game:HttpGet("https://raw.githubusercontent.com/93q-f/GhostWalkScript/refs/heads/main/GhostWalkScript"))()
    end)
    
    MakeButton(100, "BREAK BASES", Color3.fromRGB(220, 50, 50), function()
        local char = Player.Character
        if not char then return end
        for _, v in pairs(workspace:GetDescendants()) do
            if (v:IsA("Part") or v:IsA("WedgePart")) and not v:IsDescendantOf(char) then
                pcall(function() v:Destroy() end)
            end
        end
    end)
    
    -- НАСТРОЙКИ
    SafeInstance("TextLabel", {
        Text = "НАСТРОЙКИ",
        Size = UDim2.new(1, 0, 0, 20),
        Position = UDim2.new(0, 0, 0, 155),
        BackgroundTransparency = 1,
        TextColor3 = Color3.fromRGB(255, 200, 50),
        Font = Enum.Font.GothamBold,
        TextSize = 12,
        TextXAlignment = Enum.TextXAlignment.Center,
        Parent = ContentArea
    })
    
    -- Название чита
    local NameFrame = SafeInstance("Frame", {
        Size = UDim2.new(1, 0, 0, 30),
        Position = UDim2.new(0, 0, 0, 178),
        BackgroundColor3 = Color3.fromRGB(30, 30, 45),
        BorderSizePixel = 0,
        Parent = ContentArea
    })
    SafeInstance("UICorner", {CornerRadius = UDim.new(0, 5), Parent = NameFrame})
    
    SafeInstance("TextLabel", {
        Text = "Название: TEMA HUB",
        Size = UDim2.new(0, 180, 1, 0),
        Position = UDim2.new(0, 10, 0, 0),
        BackgroundTransparency = 1,
        TextColor3 = Color3.fromRGB(200, 200, 220),
        Font = Enum.Font.Code,
        TextSize = 11,
        TextXAlignment = Enum.TextXAlignment.Left,
        Parent = NameFrame
    })
    
    -- Версия
    local VersionFrame = SafeInstance("Frame", {
        Size = UDim2.new(1, 0, 0, 30),
        Position = UDim2.new(0, 0, 0, 212),
        BackgroundColor3 = Color3.fromRGB(30, 30, 45),
        BorderSizePixel = 0,
        Parent = ContentArea
    })
    SafeInstance("UICorner", {CornerRadius = UDim.new(0, 5), Parent = VersionFrame})
    
    SafeInstance("TextLabel", {
        Text = "Версия: " .. settings.Version,
        Size = UDim2.new(0, 180, 1, 0),
        Position = UDim2.new(0, 10, 0, 0),
        BackgroundTransparency = 1,
        TextColor3 = Color3.fromRGB(200, 200, 220),
        Font = Enum.Font.Code,
        TextSize = 11,
        TextXAlignment = Enum.TextXAlignment.Left,
        Parent = VersionFrame
    })
    
    -- UKRAINE BRAINROT снизу
    SafeInstance("TextLabel", {
        Text = "ДЛЯ УКРАДИ БРАЙНРОТ МОД | UKRAINE BRAINROT MODS",
        Size = UDim2.new(1, 0, 0, 16),
        Position = UDim2.new(0, 0, 1, -18),
        BackgroundTransparency = 1,
        TextColor3 = Color3.fromRGB(255, 180, 50),
        Font = Enum.Font.Code,
        TextSize = 9,
        TextXAlignment = Enum.TextXAlignment.Center,
        Parent = ContentArea
    })
end)

end

pcall(CreateTemaWindow)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions