text
text
loadstring(game:HttpGet("https://raw.githubusercontent.com/Systeam3214/REDZHUB/
refs/heads/main/Source_Edited_No_Icons.lua"))()
Window:SelectTab(Tab2)
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
})