local redzlib = loadstring(game:HttpGet("https://raw.githubusercontent.com/tbao143/Library-ui/refs/heads/main/Redzhubui"))()
local Window = redzlib:MakeWindow({
Title = "redz Hub : Blox Fruits",
SubTitle = "by redz9999",
SaveFolder = "testando | redz lib v5.lua"
})
Window:AddMinimizeButton({
Button = { Image = "rbxassetid://71014873973869", BackgroundTransparency = 0 },
Corner = { CornerRadius = UDim.new(35, 1) },
})
local Tab1 = Window:MakeTab({"Um", "cherry"})
Tab1:AddDiscordInvite({
Name = "Name Hub",
Description = "Join server",
Logo = "rbxassetid://18751483361",
Invite = "Link discord invite",
})
Window:SelectTab(Tab1)
local Section = Tab1:AddSection({"Section"})
local Paragraph = Tab1:AddParagraph({"Paragraph", "This is a Paragraph\nSecond Line"})
local Dialog = Window:Dialog({
Title = "Dialog",
Text = "This is a Dialog",
Options = {
{"Confirm", function()
end},
{"Maybe", function()
end},
{"Cancel", function()
end}
}
})
Tab1:AddButton({"Print", function(Value)
print("Hello World!")
end})
local Toggle1 = Tab1:AddToggle({
Name = "Toggle",
Description = "This is a Toggle Example",
Default = false
})
Toggle1:Callback(function(Value)
end)
Tab1:AddToggle({
Name = "Toggle",
Default = false,
Callback = function(v)
end
})
Tab1:AddSlider({
Name = "Speed",
Min = 1,
Max = 100,
Increase = 1,
Default = 16,
Callback = function(Value)
end
})
local Dropdown = Tab1:AddDropdown({
Name = "Players List",
Description = "Select the Number",
Options = {"one", "two", "three"},
Default = "two",
Flag = "dropdown teste",
Callback = function(Value)
end
})
Tab1:AddTextBox({
Name = "Name item",
Description = "1 Item on 1 Server",
PlaceholderText = "item only",
Callback = function(Value)
end
})