The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Bat Simulator GUI script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 15



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Bat Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7.  
  8. b:Toggle("AutoClicker",function(bool)
  9.     shared.toggle = bool
  10.     AutoClicker = bool
  11. end)
  12.  
  13. b:Toggle("AutoSell",function(bool)
  14.     shared.toggle = bool
  15.     AutoSell = bool
  16. end)
  17.  
  18. b:Toggle("AutoTpCoins",function(bool)
  19.     shared.toggle = bool
  20.     AutoTpCoins = bool
  21. end)
  22.  
  23. b:Toggle("AutoBoss",function(bool)
  24.     shared.toggle = bool
  25.     AutoBoss = bool
  26. end)
  27.  
  28. f:Toggle("Bats",function(bool)
  29.     shared.toggle = bool
  30.     Bats = bool
  31. end)
  32.  
  33. f:Toggle("DNA",function(bool)
  34.     shared.toggle = bool
  35.     DNA = bool
  36. end)
  37.  
  38. f:Toggle("Jumps",function(bool)
  39.     shared.toggle = bool
  40.     Jumps = bool
  41. end)
  42.  
  43. e:Toggle("AntiAfk",function(boosl)
  44.     shared.toggle = bool
  45.     AntiAfk = bool
  46. end)
  47.  
  48. e:Button("Tp Shop",function()
  49.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").World.PadEffect.Shop7.CFrame.Position + Vector3.new(0,0,0))
  50. end)
  51.  
  52. --Credits
  53. u:Button("maxgat5#8395",function()
  54.     setclipboard("maxgat5#8395")
  55. end)
  56.  
  57. u:Button("Discrod Server",function()
  58.     setclipboard("https://discord.gg/K4txdRSVfq")
  59. end)
  60.  
  61. pcall(function()
  62. while wait() do
  63.     if AutoClicker == true then
  64.         local tool = game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") or game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
  65.         game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  66.         tool:Activate()
  67.     end
  68.    
  69.     if AutoSell == true then
  70.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").World.PadEffect.Sell1.CFrame.Position + Vector3.new(0,0,0))
  71.         wait()
  72.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").World.PadEffect.Sell1.CFrame.Position + Vector3.new(100,100,100))
  73.         wait()
  74.     end
  75.    
  76.     if AutoBoss == true then
  77.         for i,v in pairs(game:GetService("Workspace").Boss:GetDescendants()) do
  78.             if v.ClassName == "Humanoid" then
  79.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Parent.Head.CFrame.Position + Vector3.new(0,3,0))
  80.                 local tool = game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool") or game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
  81.                 game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  82.                 tool:Activate()
  83.             end
  84.         end
  85.     end
  86.    
  87.     if AutoTpCoins == true then
  88.         for i,v in pairs(game:GetService("Workspace").CoinSpawns:GetDescendants()) do
  89.             if v.ClassName == "TouchTransmitter" then
  90.                 if AutoTpCoins == true then
  91.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Parent.CFrame.Position + Vector3.new(0,0,0))
  92.                     wait()
  93.                 end
  94.             end
  95.         end
  96.     end
  97.    
  98.     if Bats == true then
  99.         game:GetService("ReplicatedStorage").Knit.Services.ShopService.RE.buyAll:FireServer("Bats")
  100.     end
  101.    
  102.     if DNA == true then
  103.         game:GetService("ReplicatedStorage").Knit.Services.ShopService.RE.buyAll:FireServer("DNA")
  104.     end
  105.    
  106.     if Jumps == true then
  107.         game:GetService("ReplicatedStorage").Knit.Services.ShopService.RE.buyAll:FireServer("Jumps")
  108.     end
  109.    
  110.     if AntiAfk == true then
  111.         local bb=game:service'VirtualUser'
  112.         bb:CaptureController()
  113.         bb:ClickButton2(Vector2.new())
  114.     end
  115. end
  116. end)