NeoLeaf Roblox Mod Menu

download a roblox exploit executer to use the NeoLeaf GUI script, first download a Roblox executor from wearedevs.net. I personally use Plutora or whatever it's called.

Then, copy and paste the following script into the executor and execute it:

-- NeoLeaf GUI v1.1
-- Author: Julian B
-- Creation Date: 2025-06-07

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("NeoLeaf GUI v1.1 - Julian B", "DarkTheme")

-- Matcha green: #97cba9
local bgColor = Color3.fromHex("97cba9")
local textColor = Color3.new(0,0,0)

-- Style application function (run after UI built)
local function applyStyles()
    Window.MainFrame.BackgroundColor3 = bgColor
    Window.TabsContainer.BackgroundColor3 = bgColor

    for _, tab in pairs(Window.Tabs) do
        tab.Container.BackgroundColor3 = bgColor
        tab.TabButton.TextColor3 = textColor
        for _, section in pairs(tab.Sections) do
            section.SectionFrame.BackgroundColor3 = bgColor
            section.SectionLabel.TextColor3 = textColor
            for _, button in pairs(section.Buttons or {}) do
                button.Button.BackgroundColor3 = bgColor
                button.Button.TextColor3 = textColor
            end
            for _, toggle in pairs(section.Toggles or {}) do
                toggle.ToggleButton.BackgroundColor3 = bgColor
                toggle.ToggleButton.TextColor3 = textColor
            end
            for _, slider in pairs(section.Sliders or {}) do
                slider.SliderFrame.BackgroundColor3 = bgColor
                slider.Label.TextColor3 = textColor
            end
            for _, keybind in pairs(section.Keybinds or {}) do
                keybind.KeybindButton.BackgroundColor3 = bgColor
                keybind.KeybindButton.TextColor3 = textColor
            end
        end
    end
end

task.defer(applyStyles)

-- === Tabs & Sections ===
local MainTab = Window:NewTab("Main")
local MainSection = MainTab:NewSection("Scripts & Teleports")

local PlayerTab = Window:NewTab("Player")
local PlayerSection = PlayerTab:NewSection("Player Settings")

local EmotesTab = Window:NewTab("Emotes")
local EmoteSection = EmotesTab:NewSection("Dance / Emotes")

local GamesTab = Window:NewTab("Games")
local MM2Section = GamesTab:NewSection("Murder Mystery 2")
local TOHSection = GamesTab:NewSection("Tower of Hell")
local DaHoodSection = GamesTab:NewSection("Da Hood")
local ArsenalSection = GamesTab:NewSection("Arsenal")
local NaturalDisasterSection = GamesTab:NewSection("Natural Disaster Survival")
local StealBrainrotSection = GamesTab:NewSection("Steal a Brainrot")

local OtherTab = Window:NewTab("Other")
local OtherSection = OtherTab:NewSection("Misc & Utilities")

-- (rest of the script continues...)