Advertisement
KyrieScriptz

Friday Hub Script (NEW 2024)

Jul 27th, 2024
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.79 KB | None | 0 0
  1. -- Thanks for using my script! if you wanna, you can go ahead and join my discord server! ill post all the updates there!
  2. -- https://discord.gg/8GepranX
  3.  
  4. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  5. local Window = Library.CreateLib("Friday Hub", "BloodTheme")
  6. local newTab = Window:NewTab("Universal")
  7. local newSection = newTab:NewSection("Scripts")
  8. newSection:NewButton("Infinite Yield", "Loads Infinite Yield.", function()
  9. loadstring(game:HttpGet("https://raw.githubusercontent.com/ttwizz/infiniteyield/master/source.lua", true))()
  10. end)
  11. local playerSection = newTab:NewSection("Player")
  12. playerSection:NewSlider("WalkSpeed", "Changes Your WalkSpeed.", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  13. _G.WS = s;
  14. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  15. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  16. Humanoid.WalkSpeed = _G.WS;
  17. end)
  18. Humanoid.WalkSpeed = _G.WS;
  19. end)
  20. playerSection:NewSlider("JumpPower", "Changes Your JumpPower.", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  21. _G.WS = s;
  22. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  23. Humanoid:GetPropertyChangedSignal("JumpPower"):Connect(function()
  24. Humanoid.JumpPower = _G.WS;
  25. end)
  26. Humanoid.JumpPower = _G.WS;
  27. end)
  28. local infjmp = false -- Initialize with 'false', or set to 'true' if you want it enabled by default
  29.  
  30. -- Define the toggle functionality
  31. playerSection:NewToggle("Infinite Jump", "Toggle the ability to jump infinitely", function(state)
  32. infjmp = state -- Set the 'infjmp' variable based on the toggle state
  33. if state then
  34. print("Infinite Jump Enabled")
  35. else
  36. print("Infinite Jump Disabled")
  37. end
  38. end)
  39.  
  40. -- Listen for jump requests and apply infinite jump if enabled
  41. game:GetService("UserInputService").jumpRequest:Connect(function()
  42. if infjmp then
  43. local player = game:GetService("Players").LocalPlayer
  44. local character = player.Character
  45. local humanoid = character and character:FindFirstChildOfClass("Humanoid")
  46. if humanoid then
  47. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  48. end
  49. end
  50. end)
  51. local mm2Tab = Window:NewTab("Murder Mystery 2")
  52. local mm2Section = mm2Tab:NewSection("Scripts")
  53. mm2Section:NewButton("Vynixu's mm2 Script", "Loads mm2 script.", function()
  54. loadstring(game:GetObjects("rbxassetid://4001118261")[1].Source)()
  55. end)
  56. mm2Section:NewButton("SnapSanix(working!)", "Loads SnapSanix.", function()
  57. loadstring(game:HttpGet('https://raw.githubusercontent.com/Roman34296589/SnapSanix-GUI-MM2/main/SnapSanix%20GUI%20mm2.lua'))()
  58. end)
  59. local arsenalTab = Window:NewTab("Arsenal")
  60. local arsenalSection = arsenalTab:NewSection("Scripts")
  61. newSection:NewButton("SerenadeHub", "Loads SerenadeHub.", function()
  62. loadstring(game:HttpGet("https://raw.githubusercontent.com/4xdhondiscord/SerenadeHub/main/Serenade", true))()
  63. end)
  64. arsenalSection:NewButton("Untitled script hub", "loads script.", function()
  65. loadstring(game:HttpGet("https://raw.githubusercontent.com/JackyPoopoo/cartel/main/0000000000000000000000000000000000000000000000000"))()
  66. end)
  67. arsenalSection:NewButton("AppleWare Hub", "Loads AppleWare Hub.", function()
  68. loadstring(game:HttpGet("https://raw.githubusercontent.com/NebulaServicesA/AppleWare/main/Arsenal"))()
  69. end)
  70. arsenalSection:NewButton("Tbao Hub(Reccomended!)", "Loads Tbao Hub.", function()
  71. loadstring(game:HttpGet("https://raw.githubusercontent.com/tbao143/thaibao/main/TbaoHubArsenal"))()
  72. end)
  73. mm2Section:NewLabel("Remember, This hub is made for SOLARA!")
  74. arsenalSection:NewLabel("Remember, This hub is made for SOLARA")
  75. local comingsoonTab = Window:NewTab("More Coming Soon!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement