Menace00

Roblox Fe script hub red

Aug 9th, 2023
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 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("Yeat's Script Hub", "BloodTheme")
  3.  
  4. -- MAIN
  5. local Main = Window:NewTab("Credits")
  6. local MainSection = Main:NewSection("Credits To Yeat")
  7. local MainSection = Main:NewSection("Made 9/4/22")
  8. local Main = Window:NewTab("Main")
  9. local ScriptSection = Main:NewSection("Main")
  10.  
  11.  
  12. ScriptSection:NewButton(" Pls Donate Fake Donation", "Says That u Donated To A Player!", function()
  13. loadstring(game:HttpGet(("https://raw.githubusercontent.com/o5u3/PLS-Donate/main/Fake-Donate.lua")))()
  14. end)
  15. ScriptSection:NewButton(" Back/Front Flip May Not Work", "Makes You Do Gymnastics", function()
  16. loadstring(game:HttpGet(("https://pastebin.com/raw/7wDcPtLk")))()
  17. end)
  18.  
  19. ScriptSection:NewToggle("Super-Human", "Go Fast And Super Jump", function(state)
  20. if state then
  21. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  22. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  23. else
  24. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  25. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  26. end
  27. end)
  28.  
  29. ScriptSection:NewButton(" Infinite Yeild", "FE Admin Commands", function()
  30. loadstring(game:HttpGet(("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source")))()
  31. end)
  32.  
  33.  
  34. --LOCAL PLAYER
  35. local Player = Window:NewTab("Player")
  36. local PlayerSection = Player:NewSection("Player")
  37.  
  38. PlayerSection:NewSlider("WalkSpeed", "SPEED!!", 500, 16, function(s)
  39. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  40. end)
  41.  
  42. PlayerSection:NewSlider("JumpPower", "JUMP HIGH!!", 350, 50, function(s)
  43. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  44. end)
  45.  
  46. PlayerSection:NewButton(" Reset WS/JP", "Reset to all defaults", function()
  47. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  48. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  49. end)
  50.  
  51.  
  52. --Other
  53. local Other = Window:NewTab("Other")
  54. local OtherSection = Other:NewSection("Other")
  55.  
  56. OtherSection:NewButton(" Chat Spoofer", "Lets you chat for other people", function()
  57. loadstring(game:HttpGet(("https://pastebin.com/raw/djBfk8Li")))()
  58. end)
  59.  
  60. OtherSection:NewButton(" Bypassed Fly", "Bird Mode", function()
  61. loadstring(game:HttpGet(("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua")))()
  62.  
  63. Fly(true)
  64. end)
  65.  
  66. --INFO
  67. local Info = Window:NewTab("Info")
  68. local InfoSection = Info:NewSection("Made 9/4/22")
  69. local InfoSection = Info:NewSection("Not Finished")
  70. local InfoSection = Info:NewSection("Adding More Scripts Soon")
Add Comment
Please, Sign In to add comment