local WindUI = loadstring(game:HttpGet("https://[Log in to view URL]"))()
WindUI:SetNotificationLower(true)
WindUI:AddTheme({
    
    Name = "My Theme", -- theme name
    
    -- More Soon!
    
    Accent = Color3.fromHex("#18181b"),
    Background = Color3.fromHex("#101010"), -- Accent
    BackgroundTransparency = 0,
    Outline = Color3.fromHex("#FFFFFF"),
    Text = Color3.fromHex("#FFFFFF"),
    Placeholder = Color3.fromHex("#7a7a7a"),
    Button = Color3.fromHex("#52525b"),
    Icon = Color3.fromHex("#a1a1aa"),
    
    Hover = Color3.fromHex("#FFFFFF"), -- Text
    BackgroundTransparency = 0,
    
    WindowBackground = Color3.fromHex("101010"), -- Background
    WindowShadow = Color3.fromHex("000000"),
    
    DialogBackground = Color3.fromHex("#101010"), -- Background
    DialogBackgroundTransparency = 0, -- BackgroundTransparency
    DialogTitle = Color3.fromHex("#FFFFFF"), -- Text
    DialogContent = Color3.fromHex("#FFFFFF"), -- Text
    DialogIcon = Color3.fromHex("#a1a1aa"), -- Icon
    
    WindowTopbarButtonIcon = Color3.fromHex("a1a1aa"), -- Icon
    WindowTopbarTitle = Color3.fromHex("FFFFFF"), -- Text
    WindowTopbarAuthor = Color3.fromHex("FFFFFF"), -- Text
    WindowTopbarIcon = Color3.fromHex("FFFFFF"), -- Text
    
    TabBackground = Color3.fromHex("#FFFFFF"), -- Text
    TabTitle = Color3.fromHex("#FFFFFF"), -- Text
    TabIcon = Color3.fromHex("a1a1aa"), -- Icon
    
    ElementBackground = Color3.fromHex("#FFFFFF"), -- Text
    ElementTitle = Color3.fromHex("#FFFFFF"), -- Text
    ElementDesc = Color3.fromHex("#FFFFFF"), -- Text
    ElementIcon = Color3.fromHex("#a1a1aa"), -- Icon
    
    PopupBackground = Color3.fromHex("#101010"), -- Background
    PopupBackgroundTransparency = 0, -- BackgroundTransparency
    PopupTitle = Color3.fromHex("#FFFFFF"), -- Text
    PopupContent = Color3.fromHex("#FFFFFF"), -- Text
    PopupIcon = Color3.fromHex("#a1a1aa"), -- Icon
    
    DialogBackground = Color3.fromHex("#101010"), -- Background
    DialogBackgroundTransparency = 0, -- Transparency
    DialogTitle = Color3.fromHex("#FFFFFF"), -- Text
    DialogContent = Color3.fromHex("#FFFFFF"), -- Text
    DialogIcon = Color3.fromHex("#a1a1aa"), -- Icon
    
    Toggle = Color3.fromHex("#52525b"), -- Button
    ToggleBar = Color3.fromHex("#FFFFFF"), -- White
    
    Checkbox = Color3.fromHex("#52525b"), -- Button
    CheckboxIcon = Color3.fromHex("#FFFFFF"), -- White
    
    Slider = Color3.fromHex("#52525b"), -- Button
    SliderThumb = Color3.fromHex("#FFFFFF"), -- White
    
})

local Window = WindUI:CreateWindow({
    Title = "sand",
    Icon = "door-open", -- lucide icon
    Author = "testftgs",
    Folder = "Sand",
    
    KeySystem = { 
        -- ↓ Optional. You can remove it.
        Key = { "ilovedogs", "tysmsand" },
        
        Note = "key is tysmsand",

        
        -- ↓ Optional. You can remove it.
        -- API = {} ← Services. Read about it below ↓
    },
})

Window:EditOpenButton({
    Title = "hi. open me",
    Icon = "monitor",
    CornerRadius = UDim.new(0,16),
    StrokeThickness = 2,
    Color = ColorSequence.new( -- gradient
        Color3.fromHex("FF0F7B"), 
        Color3.fromHex("F89B29")
    ),
    OnlyMobile = false,
    Enabled = true,
    Draggable = true,
})

Window:Toggle()
Window:OnClose(function()
    print("Window Closed")
end)


Window:OnOpen(function()
    print("Window Opened")
end)

local Window = WindUI:CreateWindow({
    
    KeySystem = {                                                   
        Note = "this is pandadevelopment.",        
        API = {                                                     
            { -- pandadevelopment
                Type = "pandadevelopment", -- type
                ServiceId = "myServiceId", -- service id
            },                                                      
        },                                                          
    },                                                              
})

Tab:Select() 

local MainTab = Window:Tab({
    Title = "Main",
    Icon = "bird", -- optional
    Locked = false,
})

local PlayerTab = Window:Tab({
    Title = "Player",
    Icon = "player", -- optional
    Locked = false,
})

local MiscTab = Window:Tab({
    Title = "Misc/Information",
    Icon = "bird", -- optional
    Locked = false,
})

local MainSection = Window:Section({
    Title = "D2EC",
    Icon = "bird",
    Opened = true,
})

local PlayerSection = Window:Section({
    Title = "D3EC",
    Icon = "bird",
    Opened = true,
})

local MiscSection = Window:Section({
    Title = "D4EC",
    Icon = "bird",
    Opened = true,
})

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

Tab:Divider()
Window:Divider()

Window:Space()
Tab:Space()

local Button = MainTab:Button({
    Title = "Equip Pets(cilent sided)",
    Desc = "Equips an pet which doesnt work",
    Locked = false,
    Callback = function()
        -- ...
    end
})

Embed on website

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