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

local window = Library.new("[ Private Mode ] [ Tester ]") -- Args(<string> Name, <boolean?> ConstrainToScreen)

window:LockScreenBoundaries(true) -- Args(<boolean> ConstrainToScreen)

local tab = window:Tab("Main") -- Args(<string> Name, <string?> TabImage)

local section = tab:Section("Section") -- Args(<string> Name)

local title = section:Title("Title") -- Args(<string> Name)
title:ChangeText("Title") -- Args(<String> NewText)

local label = section:Label("Label") -- Args(<String> LabelText, <Number?> TextSize, <Color3?> TextColor)
label:ChangeText("Label") -- Args(<String> NewText, <Boolean?> PlayAnimation)
--[ toogles]

local toggle = section:Toggle("Auto parry 2", function(bool)
loadstring(game:HttpGet('https://[Log in to view URL]'))()
end) -- Args(<String> Name, <Function> Callback)
toggle:Set(false) -- Args(<Boolean> ToggleState, <Function?> Callback)
--[]
section:Button("Button", function()
   print("Pressed button!")
end) -- Args(<String> Name, <Function> Callback)

local dropdown = section:Dropdown("Dropdown") -- Args(<String> Name)
dropdown:ChangeText("Dropdown") -- Args(<String> NewText)
dropdown:Toggle("Toggle") -- Dropdowns and searchbars can go inside dropdowns

section:Slider("Slider", function(val)
   print("Slider Value is: "..val)
end) -- Args(<String> Name, <Function> Callback, <Number?> MaximumValue, <Number?> MinimumValue)

section:Keybind("K", function()
   print("Keybind pressed!")
end) -- Args(<String> Name, <Function> Callback, <String> DefaultKey)

end) -- Args(<String> Name, <Function> Callback)

Embed on website

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