Advertisement
SigmaBoy456

Roblox Fighter Bot GUI v2

Sep 15th, 2024 (edited)
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. -- GUI made by: https://v3rmillion.net/member.php?action=profile&uid=1642742
  2. -- Sword Fight Bot Made by MawinCK
  3.  
  4. local player = game.Players.LocalPlayer
  5. local vir = game:GetService("VirtualUser")
  6.  
  7. -- Load the library
  8. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/lime"))()
  9.  
  10. -- Create a new window
  11. local w = Library:Window("Bot Fighter GUI v2 by Mawin_CK")
  12.  
  13. -- Toggle for auto-click
  14. local autoClickEnabled = false
  15. w:Toggle("Auto Click (Can be used in any game)", function(state)
  16. autoClickEnabled = state
  17. if autoClickEnabled then
  18. while autoClickEnabled do
  19. wait()
  20. vir:Button1Down(Vector2.new(1, 1))
  21. end
  22. end
  23. end)
  24. -- Button for Anti Fall feature
  25. w:Button("Anti Fall (Very Important)", function()
  26. loadstring(game:HttpGet("https://pastebin.com/raw/6WWKuaA7"))()
  27. end)
  28.  
  29. -- Button for Anti Stuck feature
  30. w:Button("Anti Stuck (Very Important)", function()
  31. loadstring(game:HttpGet("https://pastebin.com/raw/bJ4S9RJe"))()
  32. end)
  33.  
  34. -- Toggle for Casual Fighter Bot Mode
  35. local casualBotEnabled = false
  36. w:Toggle("Casual Fighter Bot Mode", function(state)
  37. casualBotEnabled = state
  38. if casualBotEnabled then
  39. while casualBotEnabled do
  40. wait(0.01)
  41. loadstring(game:HttpGet("https://pastebin.com/raw/hpUjxw8q"))()
  42. end
  43. end
  44. end)
  45.  
  46. -- Toggle for Pro Fighter Bot Mode
  47. local proBotEnabled = false
  48. w:Toggle("Pro Fighter Bot Mode", function(state)
  49. proBotEnabled = state
  50. if proBotEnabled then
  51. while proBotEnabled do
  52. wait(0.01)
  53. loadstring(game:HttpGet("https://pastebin.com/raw/qEbx8cWK"))()
  54. end
  55. end
  56. end)
  57.  
  58. -- Toggle for Super Pro Fighter Bot Mode
  59. local superProBotEnabled = false
  60. w:Toggle("Super Pro Fighter Bot Mode", function(state)
  61. superProBotEnabled = state
  62. if superProBotEnabled then
  63. while superProBotEnabled do
  64. wait(0.01)
  65. loadstring(game:HttpGet("https://pastebin.com/raw/ep0j1aHj"))()
  66. end
  67. end
  68. end)
  69.  
  70. -- Toggle for Near Godlike Fighter Bot Mode
  71. local nearGodlikeBotEnabled = false
  72. w:Toggle("Near Godlike Fighter Bot Mode", function(state)
  73. nearGodlikeBotEnabled = state
  74. if nearGodlikeBotEnabled then
  75. while nearGodlikeBotEnabled do
  76. wait(0.01)
  77. loadstring(game:HttpGet("https://pastebin.com/raw/nux1XQn3"))()
  78. end
  79. end
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement