--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
local redzlib = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = redzlib:MakeWindow({
Title = "redz Hub : Blox Fruits",
SubTitle = "by redz9999",
SaveFolder = "testando | redz lib v5.lua"
})
local Tab1 = Window:MakeTab({"Um", "cherry"})
local Tab2 = Window:MakeTab({"Dois", "swords"})
local Tab3 = Window:MakeTab({"Três", "user"})
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})
local Toggle1 = Tab2:AddToggle({
Name = "Toggle 1",
Description = "This is a <font color='rgb(88, 101, 242)'>Toggle</font> Example",
Default = false
})
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
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
})
-- local Button = Tab2:AddButton({"Refresh Dropdown"})
local Dropdown = Tab2:AddDropdown({
Name = "Players List",
Description = "Select the <font color='rgb(88, 101, 242)'>Number</font>",
Options = {"one", "two", "three"},
Default = "two",
Flag = "dropdown teste",
Callback = function(Value)
end
})
Tab1:AddButton({"Dark Purple", function()
redzlib:SetTheme("Purple")
end})
To embed this project on your website, copy the following code and paste it into your website's HTML: