local Library = loadstring(Game:HttpGet("https://[Log in to view URL]"))()
local PhantomForcesWindow = Library:NewWindow("Combat")
local KillingCheats = PhantomForcesWindow:NewSection("Kill Options")
KillingCheats:CreateButton("Button", function()
print("HI")
end)
KillingCheats:CreateTextbox("TextBox", function(text)
print(text)
end)
KillingCheats:CreateToggle("Auto Ez", function(value)
print(value)
end)
KillingCheats:CreateDropdown("DropDown", {"Hello", "World", "Hello World"}, 2, function(text)
print(text)
end)
KillingCheats:CreateSlider("Slider", 0, 100, 15, false, function(value)
print(value)
end)
KillingCheats:CreateColorPicker("Picker", Color3.new(255, 255, 255), function(value)
print(value)
end)
To embed this project on your website, copy the following code and paste it into your website's HTML: