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

local lib = ProxyLib.new()

local window = lib:CreateWindow({
local window = lib:CreateWindow({
    Title    = "hi",
    Subtitle = "v1.0",
    Icon     = "rbxassetid://108361574838685",
    Size     = Vector2.new(520, 380),
    
    DefaultLanguage = "English", 
    DefaultFps      = true,         
    DefaultPing     = true,        
    DefaultProfile  = false,  

    ConfigPanel = {
        Enabled  = true,
        Theme    = true,
        Fps      = true, 
        Ping     = true,  
        Profile  = true,  
    },
})

window:CreateSeparator({ Text = "Main" })
    local maintab = window:CreateTab({
    Title    = "Main",
})

window:CreateSidebarLine()
window:CreateSeparator({ Text = "Other" })

local settingsTab = window:CreateTab({
    Title = "Settings",
    Icon  = "rbxassetid://",
})
mainTab:CreateSection({ Text = "Info" })

mainTab:CreateParagraph({
    Title       = "Status",
    Description = "This script is Premium and Safe.",
    ColoredWords = {
        { Text = "Premium", Color = Color3.fromRGB(255, 215, 0) },
        { Text = "Safe",    Color = Color3.fromRGB(80, 255, 120) },
    },
})

mainTab:CreateSection({ Text = "Auto-Farm", Icon = "rbxassetid://" })
        mainTab:CreateToggle({
    Title    = "infinite cash",
    Default  = false,
    SaveId   = "infinite_cash",
    Callback = function(state) end,
})

window:CreateSeparatorLime()

mainTab:CreateSlider({
    Title    = "Walk Speed",
    Min      = 16,
    Max      = 500,
    Default  = 16,
    SaveId   = "walkspeed",
    Callback = function(value) end,
})
    local playerDrop = mainTab:CreateDropdown({
    Title = "Online Players",
    AutoReload = function()
        local list = {}
        for _, p in ipairs(game.Players:GetPlayers()) do
            table.insert(list, { Value = p.Name })
        end
        
    return list
    end,
    mainTab:CreateTextBox({
    Title       = "just s testing",
    Placeholder = "Cool right?",
    Default     = "",
    Callback    = function(text) end,
})
        

    Tab:CreateSection({ Text = "Social" })
    window:Notify({
    Title       = "Sand's Hub",
    Description = "adios mi amigo.",
    Duration    = 4,
    ColoredWords = {
        { Text = "My Hub",  Colors = { Color3.fromRGB(55, 110, 200), Color3.fromRGB(140, 85, 215) }, Gradient = true },
        { Text = "sucesso", Color  = Color3.fromRGB(80, 255, 120) },
    },
})

Embed on website

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