local WindUI = loadstring(game:HttpGet("https://[Log in to view URL]"))()

WindUI:AddTheme({
    Name = "Theme", -- theme name
    
    Accent = Color3.fromHex("#18181b"),
    Dialog = Color3.fromHex("#161616"),
    Outline = Color3.fromHex("#FFFFFF"),
    Text = Color3.fromHex("#FFFFFF"),
    Placeholder = Color3.fromHex("#7a7a7a"),
    Background = Color3.fromHex("#101010"),
    Button = Color3.fromHex("#52525b"),
    Icon = Color3.fromHex("#a1a1aa")
})

WindUI:SetTheme("My Theme")

local Window = WindUI:CreateWindow({
    Title = "NEAURALS HUB",
    Icon = "door-open", -- lucide icon. optional
    Author = "by neaurals", -- optional
})

Window:Tag({
    Title = "V1.112",
    Color = Color3.fromHex("#30ff6a"),
    Radius = 5, -- from 0 to 13
})

local Tab = Window:Tab({
    Title = "Info",
    Icon = "info", -- optional
    Locked = false,
})

Section = Tab:Section({ 
    Title = "Discord Server",
    Box = false,
    FontWeight = Enum.FontWeight.SemiBold,
    TextTransparency = 0,
    TextXAlignment = Enum.TextXAlignment.Left,
    TextSize = 17,
    Opened = true,
})

Tab:Button({
    Title = "Copy Discord Server Link",
    Desc = "Copies Discord link to clipboard",
    Locked = false,
    Callback = function()
        setclipboard("https://[Log in to view URL]")
        print("Discord invite copied to clipboard!")
    end
})

local Tab = Window:Tab({
    Title = "main",
    Icon = "crosshair", -- optional
    Locked = false,
})

local Button = Tab:Button({
    Title = "Delete Doors",
    Desc = "Deletes Most Doors",
    Locked = false,
    Callback = function()
        game.Workspace.Doors:Destroy()
    end
})

local Slider = Tab:Slider({
    Title = "Walk Speed",
    Step = 1,    
    Value = {Min = 16, Max = 125, Default = 16},
    Callback = function(value)
        game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
    end
})

local Slider = Tab:Slider({
    Title = "Jump Height",
    Step = 1,    
    Value = {Min = 16, Max = 125, Default = 16},
    Callback = function(value)
        game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
    end
})

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: