Advertisement
SigmaBoy456

GUI Fight bot GUI v1

Sep 14th, 2024 (edited)
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 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 v1")
  12.  
  13. -- Button for player lock
  14.  
  15. -- Toggle for auto-click
  16. local On = false
  17. w:Toggle("Auto Click (Can be used in any game)", function(v)
  18. On = v
  19. if On then
  20. while On do
  21. wait()
  22. vir:Button1Down(Vector2.new(1, 1))
  23. end
  24. end
  25. end)
  26.  
  27. -- Button for targeting closest player with a bot fighter
  28. local turnOn = false
  29. w:Toggle("Godlike Fighter Bot", function(state)
  30. turnOn = true
  31. if turnOn then
  32. while turnOn do
  33. wait(0.1)
  34. loadstring(game:HttpGet("https://pastebin.com/raw/3RmmJezU"))()
  35. end
  36. end
  37. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement