Advertisement
Guest User

Ability Wars - Fat_Danniel

a guest
Nov 12th, 2022
4,476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 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("Fat_Danniel│AbilityWarsKiller│OP Script Hub", "Ocean")
  3.  
  4. -- MAIN
  5. local Main = Window:NewTab("MAIN")
  6. local MainSection = Main:NewSection("Main")
  7.  
  8. --1st script
  9. MainSection:NewButton("IdenLua/Orion Library", "Combat bot, Atomatically Chases Players", function()
  10. loadstring(game:HttpGet("https://package.idenlua.tk/Scripts/AbbWars.lua"))()
  11. end)
  12.  
  13. --2nd script
  14. MainSection:NewButton("Dizzy hub", "Combat bot, Godmode, Auto Farm, Killaura, Etc", function()
  15. loadstring(game:HttpGet(("https://raw.githubusercontent.com/dizyhvh/rbx_scripts/main/dizzy_hub/loader.lua")))();
  16. end)
  17.  
  18. --3rd script
  19. MainSection:NewButton("AWD Public", "Massive, Blatant Gui", function()
  20. loadstring(game:HttpGet("https://paste.ee/r/Wo5Kj"))()
  21. end)
  22.  
  23.  
  24. MainSection:NewToggle("Super Human", "WalkSpeed and JumpHeight (May not work)", function(state)
  25. if state then
  26. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  27. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  28. else
  29. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  30. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  31. end
  32. end)
  33.  
  34. -- LOCAL PLAYER
  35. local Player = Window:NewTab("Player")
  36. local PlayerSection = Player:NewSection("Player")
  37.  
  38. PlayerSection:NewSlider("WalkSpeed", "WalkSpeed Slider MAY CRASH GAME", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  39. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  40. end)
  41.  
  42. PlayerSection:NewSlider("JumpPower", "Jump height Slider MAY CRASH GAME", 350, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  43. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  44. end)
  45.  
  46. PlayerSection:NewButton("Reset to Default", "Resets WalkSpeed and Jumpspeed to Default", function()
  47. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  48. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  49. end)
  50.  
  51. -- Extra
  52. local Extra = Window:NewTab("Extra")
  53. local ExtraSection = Extra:NewSection("Extra")
  54.  
  55. ExtraSection:NewLabel("This GUI was made by Fat_Danniel on Youtube")
  56. ExtraSection:NewLabel("Subscribe and Like for more scripts")
  57. ExtraSection:NewLabel("Join the Fat_Danniel Discord Below")
  58. ExtraSection:NewLabel("https://discord.gg/R9HEPvVQBW")
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement