Redz_hub_ui_test
Redz_hub_ui_test
local redzlib =
loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/RedzLibV5/main/
Source.Lua"))()
Window:SelectTab(Tab2)
local Section = Tab2:AddSection({"Section"})
local Paragraph = Tab2:AddParagraph({"Paragraph", "This is a Paragraph\nSecond
Line"})
local Number = 0
local Button = Tab2:AddButton({"Button", function()
Number = Number + 1
Section:Set("Number : " .. tostring(Number))
local Dialog = Window:Dialog({
Title = "Dialog",
Text = "This is a Dialog",
Options = {
{"Confirm", function()
end},
{"Maybe", function()
end},
{"Cancel", function()
end}
}
})
end})
Button:Callback(Toggle1.Visible)
Button:Callback(Toggle2.Visible)
Toggle1:Callback(function(Value)
Toggle2:Set(false)
end)
Toggle2:Callback(function(Value)
Toggle1:Set(false)
end)
Tab2:AddSlider({
Name = "Slider",
Min = 1,
Max = 10,
Increase = 1,
Default = 5,
Callback = function(Value)
end
})
end
})
-----library2----
loadstring(game:HttpGet(("https://raw.githubusercontent.com/REDzHUB/LibraryV2/
main/redzLib")))()
MakeWindow({
Hub = {
Title = "REDz HUB",
Animation = "by : redz9999"
},
Key = {
KeySystem = false,
Title = "Key System",
Description = "",
KeyLink = "",
Keys = {"1234"},
Notifi = {
Notifications = true,
CorrectKey = "Running the Script...",
Incorrectkey = "The key is incorrect",
CopyKeyLink = "Copied to Clipboard"
}
}
})
MinimizeButton({
Image = "",
Size = {40, 40},
Color = Color3.fromRGB(10, 10, 10),
Corner = true,
Stroke = false,
StrokeColor = Color3.fromRGB(255, 0, 0)
})
MakeNotifi({
Title = "REDz HUB",
Text = "Notificação teste",
Time = 5
})
AddButton(Main, {
Name = "Botão teste",
Callback = function()
end
})
end
})
end
})
AddKeybind(Main, {
Name = "Keybind teste",
KeyCode = "E",
Default = false,
Callback = function(Value)
end
})
AddTextBox(Main, {
Name = "TextBox teste",
Default = "bom dia",
PlaceholderText = "teste",
ClearText = true,
Callback = function(Value)
end
})
end
})
AddColorPicker(Main, {
Name = "Color picker teste",
Default = Color3.fromRGB(255, 255, 0),
Callback = function(Value)
end
})
end
})