CoderPlayz

Frax Hub V2 Free

Dec 15th, 2022
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Frax Hub V2 Free Version", "BloodTheme")
  3. -- MAIN
  4. local Main = Window:NewTab("Fun Stuff")
  5. local MainSection = Main:NewSection("Fun Stuff")
  6.  
  7.  
  8. MainSection:NewButton("Back/Front Flip", "Makes you do gymnastics", function()
  9. loadstring(game:HttpGet('https://pastebin.com/raw/7wDcPtLk'))()
  10. end)
  11.  
  12. MainSection:NewToggle("Super-Human", "go fast and jump high", function(state)
  13. if state then
  14. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  15. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  16. else
  17. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  18. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  19. end
  20. end)
  21.  
  22. MainSection:NewButton("Infinite Yield", "FE Admin Commands", function()
  23. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  24. end)
  25.  
  26.  
  27. --LOCAL PLAYER
  28. local Player = Window:NewTab("Player")
  29. local PlayerSection = Player:NewSection("Player")
  30.  
  31. PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
  32. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  33. end)
  34.  
  35. PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
  36. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  37. end)
  38.  
  39. PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
  40. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  41. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  42. end)
  43.  
  44.  
  45. --Other
  46. local Other = Window:NewTab("Other")
  47. local OtherSection = Other:NewSection("Other")
  48.  
  49. OtherSection:NewButton("Chat Spoofer", "Lets you chat for other people", function()
  50. loadstring(game:HttpGet(('https://pastebin.com/raw/djBfk8Li'),true))()
  51. end)
  52.  
  53. OtherSection:NewButton("Bypassed Fly", "bird mode", function()
  54. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
  55.  
  56. Fly(true)
  57. end)
  58.  
  59. -- Trolling
  60. local Main = Window:NewTab("Game Gui's")
  61. local MainSection = Main:NewSection("Game Gui's")
  62.  
  63. MainSection:NewButton("Pet Simulator X Gui", "Pet Simulator X Gui", function()
  64. loadstring(game:HttpGet("https://raw.githubusercontent.com/UltraStuff/scripts2/main/petsimx", true))()
  65. end)
  66.  
  67. MainSection:NewButton("Blox Fruits Gui", "Blox Fruits Gui", function()
  68. loadstring(game:HttpGet("https://raw.githubusercontent.com/UltraStuff/scripts2/main/bf", true))()
  69. end)
  70.  
  71. MainSection:NewButton("BROOKHAVEN GUI", "BROOKHAVEN GUI", function()
  72. loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven"))()
  73. end)
  74.  
  75.  
  76.  
  77.  
Add Comment
Please, Sign In to add comment