Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Thanks for using my script! if you wanna, you can go ahead and join my discord server! ill post all the updates there!
- -- https://discord.gg/8GepranX
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Friday Hub", "BloodTheme")
- local newTab = Window:NewTab("Universal")
- local newSection = newTab:NewSection("Scripts")
- newSection:NewButton("Infinite Yield", "Loads Infinite Yield.", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/ttwizz/infiniteyield/master/source.lua", true))()
- end)
- local playerSection = newTab:NewSection("Player")
- playerSection:NewSlider("WalkSpeed", "Changes Your WalkSpeed.", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
- _G.WS = s;
- local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
- Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
- Humanoid.WalkSpeed = _G.WS;
- end)
- Humanoid.WalkSpeed = _G.WS;
- end)
- playerSection:NewSlider("JumpPower", "Changes Your JumpPower.", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
- _G.WS = s;
- local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
- Humanoid:GetPropertyChangedSignal("JumpPower"):Connect(function()
- Humanoid.JumpPower = _G.WS;
- end)
- Humanoid.JumpPower = _G.WS;
- end)
- local infjmp = false -- Initialize with 'false', or set to 'true' if you want it enabled by default
- -- Define the toggle functionality
- playerSection:NewToggle("Infinite Jump", "Toggle the ability to jump infinitely", function(state)
- infjmp = state -- Set the 'infjmp' variable based on the toggle state
- if state then
- print("Infinite Jump Enabled")
- else
- print("Infinite Jump Disabled")
- end
- end)
- -- Listen for jump requests and apply infinite jump if enabled
- game:GetService("UserInputService").jumpRequest:Connect(function()
- if infjmp then
- local player = game:GetService("Players").LocalPlayer
- local character = player.Character
- local humanoid = character and character:FindFirstChildOfClass("Humanoid")
- if humanoid then
- humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
- end
- end
- end)
- local mm2Tab = Window:NewTab("Murder Mystery 2")
- local mm2Section = mm2Tab:NewSection("Scripts")
- mm2Section:NewButton("Vynixu's mm2 Script", "Loads mm2 script.", function()
- loadstring(game:GetObjects("rbxassetid://4001118261")[1].Source)()
- end)
- mm2Section:NewButton("SnapSanix(working!)", "Loads SnapSanix.", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/Roman34296589/SnapSanix-GUI-MM2/main/SnapSanix%20GUI%20mm2.lua'))()
- end)
- local arsenalTab = Window:NewTab("Arsenal")
- local arsenalSection = arsenalTab:NewSection("Scripts")
- newSection:NewButton("SerenadeHub", "Loads SerenadeHub.", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/4xdhondiscord/SerenadeHub/main/Serenade", true))()
- end)
- arsenalSection:NewButton("Untitled script hub", "loads script.", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/JackyPoopoo/cartel/main/0000000000000000000000000000000000000000000000000"))()
- end)
- arsenalSection:NewButton("AppleWare Hub", "Loads AppleWare Hub.", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/NebulaServicesA/AppleWare/main/Arsenal"))()
- end)
- arsenalSection:NewButton("Tbao Hub(Reccomended!)", "Loads Tbao Hub.", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/tbao143/thaibao/main/TbaoHubArsenal"))()
- end)
- mm2Section:NewLabel("Remember, This hub is made for SOLARA!")
- arsenalSection:NewLabel("Remember, This hub is made for SOLARA")
- local comingsoonTab = Window:NewTab("More Coming Soon!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement