local NothingLibrary = loadstring(game:HttpGetAsync('https://[Log in to view URL]'))();
local Windows = NothingLibrary.new({
	Title = "NOTHING",
	Description = "Nothing UI Library",
	Keybind = Enum.KeyCode.LeftControl,
	Logo = 'http://[Log in to view URL]'
})
local Notification = NothingLibrary.Notification();

Notification.new({
	Title = "Notification",
	Description = "Example",
	Duration = 5,
	Icon = "rbxassetid://8997385628"
})
local TabFrame = Windows:NewTab({
	Title = "Example",
	Description = "example tab",
	Icon = "rbxassetid://7733960981"
})
local Section = TabFrame:NewSection({
	Title = "Section",
	Icon = "rbxassetid://7743869054",
	Position = "Left"
})
Section:NewToggle({
	Title = "Toggle",
	Default = false,
	Callback = function()
        -- Your Script Here
	end,
})
Section:NewButton({
	Title = "Button",
	Callback = function()
        -- Your Script Here
	end,
})
Section:NewSlider({
	Title = "Slider",
	Min = 10,
	Max = 50,
	Default = 25,
	Callback = function(a)
		print(a)
	end,
})
Section:NewKeybind({
	Title = "Keybind",
	Default = Enum.KeyCode.RightAlt,
	Callback = function(a)
		print(a)
	end,
})
Section:NewDropdown({
	Title = "Dropdown",
	Data = {1,2,3,4,5},
	Default = 1,
	Callback = function(a)
		print(a)
	end,
})
Section:NewDropdown({
	Title = "Dropdown",
	Data = {'Option 1','Option 2','Option 3'},
	Default = 'Auto',
	Callback = function(a)
		print(a)
	end,
})
InfoSection:NewTitle('UI by CATSUS')
InfoSection:NewButton({	
	Title = "Discord",
	Callback = function()
		print('hi')
	end,
})
NothingLibrary.NewAuth({
	Title = "Neuron X",
	GetKey = function() 
		return 'https://[Log in to view URL]'
	end,
	Auth = function(MAIN_KEY)
		if MAIN_KEY.Name == '1234' then
			return true;
		end;
	end,
	Freeze = true,
}).Close();

Embed on website

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