local Library = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = Library.CreateLib("Renda Hub", "DarkTheme")

local MainTab = Window:NewTab("Main")
local Section = MainTab:NewSection("Main")

Section:NewButton("Test button!", "Click and press F9 if its printing Working then its working!", function()
    print("Working")
end)

Section:NewButton("My other script hub Night Hub", "Execute Night Hub i made", function()
    loadstring(game:HttpGet(('https://[Log in to view URL]'),true))()
end)

Section:NewButton("Infinite Yield", "You execute infinnite yield", function()
    loadstring(game:HttpGet('https://[Log in to view URL]'))()
end)

Section:NewButton("Fly", "FlyGuiV3", function()
  loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)

 Section:NewToggle("Super-Human", "Get WS 120 and JP 120", function(state)
    if state then
       game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
    else
       game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
    end
end)

local PlayerTab = Window:NewTab("Player")
local Section = PlayerTab:NewSection("Player")

    Section:NewSlider("Walkspeed", "WalkSpeed Slider", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
    game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
end)

    Section:NewSlider("Jump Power", "JumpPower Slider", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
    game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
end)

Section:NewButton("Reset character", "Reset character!", function()
  game.Players.LocalPlayer.Character.Humanoid.Health = 0
end)

local HubTab = Window:NewTab("Hub/Script")
local Section = HubTab:NewSection("Hub")

Section:NewButton("NutHub", "Nothing here", function()
     loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)

Section:NewButton("360 Script in one gui", "ButtonInfo", function()
    loadstring(game:HttpGet(('https://[Log in to view URL]'),true))()
end)

Section:NewButton("Thunder Client V2", "Thunder Client V2 Arsenal", function()
      if getgenv().thunderclient then return end
getgenv().thunderclient = true
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)

Section:NewButton("kowa hub", "working", function()
    loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)

Section:NewButton("JailBreak Auto Farming", "JailBreak Auto Farming", function()
   loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: