local MainTab = Window:CreateTab("Main", 4483362458)
local welcomeSection = MainTab:CreateSection("Welcome!")

MainTab:CreateParagraph({Title = "Welcome!", Content = "Thank you for using X-Dk."})

local userInfoSection = MainTab:CreateSection("User Information")
local player = game.Players.LocalPlayer
MainTab:CreateLabel("Player: " .. player.Name)
MainTab:CreateLabel("User Id: " .. player.UserId)

local gameSection = MainTab:CreateSection("Game and Executor")
local gameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name
MainTab:CreateLabel("Game: " .. gameName)

local executorName = "Unknown Executor"
if syn and syn.version then
    executorName = "Synapse X"
elseif isfolder and isfile then
    executorName = "ScriptWare"
elseif isexecutorenv and isexecutorenv() then
    executorName = "KRNL"
elseif getexecutorname and getexecutorname() == "Fluxus" then
    executorName = "Fluxus"
elseif gethui then
    executorName = "WeAreDevs (JJSploit)"
elseif ishydrogenexecutor then
    executorName = "Hydrogen"
elseif pcall(function() return is_sentinel() end) then
    executorName = "Sentinel"
elseif is_protosmasher then
    executorName = "Protosmasher"
elseif getexecutorname and getexecutorname() == "VegaX" then
    executorName = "VegaX"
elseif _G.DeltaExecutor then
    executorName = "Delta"
end
MainTab:CreateLabel("Executor: " .. executorName)

local hardwareSection = MainTab:CreateSection("Hardware")
local function getHWID()
    if syn and syn.get_hwid then
        return syn.get_hwid()
    elseif gethwid then
        return gethwid()
    elseif get_hwid then
        return get_hwid()
    elseif fluxus and fluxus.get_hwid then
        return fluxus.get_hwid()
    else
        return "Unknown HWID"
    end
end
MainTab:CreateLabel("HWID: " .. getHWID())

local dateTimeSection = MainTab:CreateSection("Date + Time")
MainTab:CreateLabel("Date: " .. os.date("%Y-%m-%d"))
MainTab:CreateLabel("Time: " .. os.date("%H:%M:%S"))

local creditsSection = MainTab:CreateSection("Credits")
MainTab:CreateLabel("By Dk")
MainTab:CreateButton({
    Name = "Join Discord!", 
    Callback = function()
        if setclipboard then
            setclipboard("https://[Log in to view URL]")
            print("Copied to clipboard!")
        else
            print("Your executor does not support clipboard.")
        end

        Rayfield:Notify({
            Title = "Link Copied!",
            Content = "The Discord link has been copied to your clipboard.",
            Duration = 8.5
        })
    end
})

local AutofarmTab = Window:CreateTab("Autofarm", "clock-4")
local AutofarmSection = AutofarmTab:CreateSection("Box Autofarm")

Embed on website

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