local Decimals = 4
local Clock = os.clock()
local ValueText = "Projectware.exe starting:"

local library = loadstring(game:HttpGet("https://[Log in to view URL]"))({
    cheatname = "Projectware.exe",
    gamename = "Project delta",
})

library:init()

local Window1  = library.NewWindow({
    title = "ProjectWare.exe | Projectware", -- Mainwindow Text
    size = UDim2.new(0, 510, 0.6, 6
)})

local Tab1 = Window1:AddTab("  Combat  ")
local Tab2 = Window1:AddTab("  Visual  ")
local Tab3 = Window1:AddTab("  Misc  ")
local SettingsTab = library:CreateSettingsTab(Window1)

--Tab1:SetText("Text")
local Section1 = Tab1:AddSection("Legit", 1)
local Section2 = Tab1:AddSection("Rage", 2)
local Section3 = Tab1:AddSection("NPC's", 3)
local Section4 = Tab1:AddSection("Triggerbot", 4)
local Section1A = Tab2:AddSection("Visuals", 1)
local Section2A = Tab2:AddSection("Self Visuals", 2)
local Section3A = Tab2:AddSection("Remote Spectates", 2)
local Section4A = Tab2:AddSection("RAHHHHHH", 4)
--Section1:SetText("Text")

function destroy()
    object:SetVisible(false)
end

Section1:AddToggle({
    text = "No Recoil",
    state = false,
    risky = false,
    tooltip = "tooltip1",
    flag = "Toggle_1",
    callback = function(v)
        print("Value:", v)
        if v then
            local ammo = game.ReplicatedStorage.AmmoTypes
            for i,v in pairs(ammo:GetChildren()) do
                v:SetAttribute("RecoilStrength", "0")
            end
            print("ESP script executed!")
        else
            print("ESP script turned off.")
            destroy()
        end
    end
})
Section1:AddBind({
    enabled = true,
    text = "Keybind1",
    tooltip = "tooltip1",
    mode = "toggle",
    bind = "None",
    flag = "ToggleKey_1",
    state = false,
    nomouse = false,
    risky = false,
    noindicator = false,
    callback = function(v)
        print(ValueText, v)
    end,
    keycallback = function(v)
        print(ValueText, v)
    end
})

Section1:AddBox({
    enabled = true,
    name = "TextBox1",
    flag = "TextBox_1",
    input = "PlaceHolder1",
    focused = false,
    risky = false,
    callback = function(v)
        print(ValueText, v)
    end
})

Section1:AddToggle({
    text = "Toggle1",
    flag = "Toggle_1",
    callback = function(v)
        print(ValueText, v)
    end
})Section1:AddColor({
    text = "Color1",
    color = Color3.fromRGB(255, 255, 255),
    flag = "Color_1",
    callback = function(v)
        print(ValueText, v)
    end
})

Section1:AddBind({
    enabled = true,
    text = "Keybind1",
    tooltip = "tooltip1",
    mode = "toggle",
    bind = "None",
    flag = "ToggleKey_1",
    state = false,
    nomouse = false,
    risky = false,
    noindicator = false,
    callback = function(v)
        print(ValueText, v)
    end,
    keycallback = function(v)
        print(ValueText, v)
    end
})

Section1:AddSeparator({
    enabled = true,
    text = "Separator1"
})

Section1:AddButton({
    enabled = true,
    text = "Button1",
    tooltip = "tooltip1",
    confirm = true,
    risky = false,
    callback = function()
        print("Pressed!")
    end
})

-- Button1:SetText("Text")

Section1:AddSlider({
    enabled = true,
    text = "Slider1",
    tooltip = "tooltip1",
    flag = "Slider_1",
    suffix = "",
    dragging = true,
    focused = false,
    min = 0,
    max = 100,
    increment = 0.1,
    risky = false,
    callback = function(v)
        print(ValueText, v)
    end
})

--Slider_1:SetValue(100)

Section1:AddList({
    enabled = true,
    text = "Selection", 
    tooltip = "tooltip1",
    selected = "",
    multi = false,
    open = false,
    max = 4,
    values = {"1", "2", "3"},
    risky = false,
    callback = function(v)
        print(ValueText, v)
    end
})

Section1:AddColor({
    enabled = true,
    text = "Color1",
    tooltip = "tooltip1",
    color = Color3.fromRGB(255, 255, 255),
    flag = "Color_1",
    trans = 0,
    open = false,
    risky = false,
    callback = function(v)
        print(ValueText, v)
    end
})

local Time = (string.format("%."..tostring(Decimals).."f", os.clock() - Clock))
library:SendNotification(("Loaded In "..tostring(Time)), 6)

--[[
    --Window1:SetOpen(false)
    makefolder("Title Here")
    library:SetTheme(Default)
    library:GetConfig(Default)
    library:LoadConfig(Default)
    library:SaveConfig(Default)
]]

Embed on website

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