Advertisement
LolPenguinOwO

e

Aug 14th, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. local COMBAT = Window:NewTab("Combat")
  2. local Cape = Tab:NewSection("Cape")
  3. local AutoClicker = Tab:NewSection("AutoClicker")
  4.  
  5. AutoClicker:NewButton("AutoClicker", "AutoClicker", function()
  6. print("Toggled AutoClicker")
  7. loadstring(game:HttpGet("https://pastebin.com/raw/NY2r1sx9"))()
  8. end)
  9.  
  10. Cape:NewButton("Cape", "Gives a cool rainbow cape, probably not a lot of people would like it..", function()
  11. print("Toggled Cape")
  12. loadstring(game:HttpGet("https://pastebin.com/raw/yzUss77V"))()
  13. end)
  14.  
  15.  
  16. --BLATANT
  17. local BLATANT = Window:NewTab("Blatant")
  18. local KillAura = Tab:NewSection("KillAura")
  19. local AutoLeave = Tab:NewSection("AutoLeave")
  20.  
  21.  
  22.  
  23. KillAura:NewButton("KillAura", "Shmaksh people with sword when they are close, AutoKill basically.", function()
  24. print("Toggled KillAura")
  25. loadstring(game:HttpGet("https://pastebin.com/raw/CfUTWw2E"))()
  26. end)
  27.  
  28. AutoLeave:NewButton("AutoLeave", "AutoLeave but its basically server shutdown, very hard to program a AutoLeave D:", function()
  29. print("Toggled KillAura")
  30. loadstring(game:HttpGet("https://pastebin.com/raw/ACNH2i4w"))()
  31. end)
  32.  
  33. --RENDER
  34. local Velocity = Tab:NewSection("Velocity")
  35. local Reach = Tab:NewSection("Reach")
  36. local ESP = Tab:NewSection("ESP")
  37. local SpeedGUI = Tab:NewSection("ESP")
  38.  
  39. MainSection:NewToggle("Velocity", "Prevents taking a knockback", function(state)
  40. if state then
  41. CombatConstant.RAYCAST_SWORD_CHARACTER_DISTANCE = (reachval["Value"] - 0.0001)
  42. else
  43. CombatConstant.RAYCAST_SWORD_CHARACTER_DISTANCE = 14.4
  44. end
  45. end)
  46.  
  47. Reach:NewToggle("Reach", "Long Hands LMFAO", function(state)
  48. loadstring(game:HttpGet("https://pastebin.com/raw/2CW8k9CH"))()
  49. end)
  50.  
  51. ESP:NewToggle("ESP", "Fat Gui", function(state)
  52. loadstring(game:HttpGet("https://pastebin.com/raw/Hrntvc2u"))()
  53. end)
  54.  
  55. --WORLD
  56. local BedNuker = Tab:NewSection("BedNuker")
  57. local AntiVoid = Tab:NewSection("AntiVoid")
  58. local FreeCam = Tab:NewSection("FreeCam")
  59.  
  60. MainSection:NewToggle("BedNuker", "Auto break bed and covers", function(state)
  61. if state then
  62. BindToStepped("BedNuker", 1, function()
  63. nuker()
  64. end)
  65. else
  66. UnbindFromStepped("BedNuker")
  67. end
  68. end)
  69.  
  70. AntiVoid:NewButton("AntiVoid", "Void dosent count very cool huh?", function()
  71. print("Toggled KillAura")
  72. loadstring(game:HttpGet("https://pastebin.com/raw/en19hGnD"))()
  73. end)
  74.  
  75. FreeCam:NewButton("FreeCam", "You know that camera that star creators have (Ex: Tapwater, Rektway etc) its basically that.", function()
  76. print("Toggled KillAura")
  77. loadstring(game:HttpGet("https://pastebin.com/raw/FmvrZrrd"))()
  78. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement