local SafeUILib = loadstring(game:HttpGet("https://raw.githubusercontent.com/ewenja/HihiHub/main/New%20HihiHub%20Bypass%20Ui_6a"))() print("SafeUILib loaded successfully:", SafeUILib ~= nil) -- Create main window local win = SafeUILib:CreateWindow({ Name = "HihiHub GUI Example", Size = UDim2.fromOffset(720, 480), ToggleKeys = { Enum.KeyCode.RightControl } -- Hide / show the window }) -- Notify on load win:Notify("GUI Loaded Successfully!", 3) -- Tabs local mainTab = win:AddTab("Main") local settingTab = win:AddTab("Settings") mainTab:AddButton("Say Hello", function() print("Hello from HihiHub ") win:Notify("You pressed the Hello button!") end) mainTab:AddTailwindColorPicker("Theme Color", Color3.fromRGB(24, 115, 235), function(newColor) print("Selected color:", newColor) win:Notify("New theme color applied!") end) mainTab:AddTextbox("Player Name", "HihiHub", function(text) print("Input:", text) win:Notify("Player name set to: " .. text) end) mainTab:AddSlider("Speed", 10, 100, 25, function(value) print("Speed:", value) end) mainTab:AddToggle("God Mode", false, function(state) print("God Mode:", state) if state then win:Notify("God Mode Activated!") else win:Notify(" God Mode Disabled.") end end) mainTab:AddRoundToggle("Infinite Jump", false, function(state) print("Infinite Jump:", state) end) mainTab:AddDropdown("Team", {"Red", "Blue", "Spectator"}, 1, function(option) print("Selected Team:", option) end) mainTab:AddColorPicker("Accent Color", Color3.fromRGB(0, 170, 255), function(color) print("Selected Accent Color:", color) end) mainTab:AddColorPickerNative("Highlight", Color3.fromRGB(255, 100, 0), function(color) print("Highlight Color:", color) end) mainTab:AddKeybind("Open Menu", Enum.KeyCode.RightControl, function(key) print("Keybind pressed:", key) win:Notify("Pressed Key: " .. key.Name) end) --// ===== SETTINGS TAB ===== settingTab:AddCustomButton({ Text = "Reset Settings", Color = Color3.fromRGB(255, 80, 80), HoverColor = Color3.fromRGB(255, 100, 100), ActiveColor = Color3.fromRGB(255, 120, 120), TextColor = Color3.new(1, 1, 1), Callback = function() print("Settings Reset ") win:Notify("All settings have been reset!") end }) settingTab:AddTextbox("Profile Name", "Default", function(v) print("Profile:", v) end) settingTab:AddToggle("Auto Save", true, function(state) print("AutoSave:", state) end) -- Show Main tab by default win:SwitchTab("Main")