From Scanty Gibbon, 6 Months ago, written in Plain Text.
Embed
  1. local library = loadstring(game:HttpGet(("https://pastebin.com/raw/FsJak6AT")))()
  2. local w = library:CreateWindow("War Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local e = w:CreateFolder("Mix")
  5. local u = w:CreateFolder("Credits")
  6. local Worlds = "WorldWar1"
  7.  
  8. b:Toggle(
  9.     "Auto-Melee ",
  10.     function(bool)
  11.         shared.toggle = bool
  12.         AutoMelee = bool
  13.     end
  14. )
  15.  
  16. b:Toggle(
  17.     "Auto-Farm",
  18.     function(bool)
  19.         shared.toggle = bool
  20.         AutoFarm = bool
  21.     end
  22. )
  23.  
  24. b:Dropdown(
  25.     "World",
  26.     {"Tribal", "Medieval", "Colonial", "WorldWar1", "OilWars", "WorldWar2", "Modern", "Future", "Western", "Ancient"},
  27.     true,
  28.     function(World)
  29.         Worlds = World
  30.     end
  31. )
  32.  
  33. e:Toggle(
  34.     "AntiAfk",
  35.     function(bool)
  36.         shared.toggle = bool
  37.         AntiAfk = bool
  38.     end
  39. )
  40.  
  41. u:Button(
  42.     "MaGiXx#2325",
  43.     function()
  44.         setclipboard("MaGiXx#2325")
  45.     end
  46. )
  47.  
  48. u:Button(
  49.     "Discord Server",
  50.     function()
  51.         setclipboard("https://discord.gg/rANQFVv5Hn")
  52.     end
  53. )
  54.  
  55. game:GetService("RunService").Stepped:connect(
  56.     function()
  57.         if AutoMelee == true then
  58.                 for i,v in pairs(game:GetService("Players")[game.Players.LocalPlayer.Name].Backpack:GetChildren()) do
  59.         if v:FindFirstChild("MeleeScript") then
  60.                     local tool =
  61.                     game.Players.LocalPlayer.Backpack:FindFirstChild(v.Name)
  62.                     game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
  63.                     wait(0.1)
  64.         end
  65.     end
  66.     game:service "VirtualUser":ClickButton1(Vector2.new())
  67.         end
  68.         if AutoFarm == true then
  69.             for i, v in pairs(game:GetService("Workspace").MapAreas:GetChildren()) do
  70.                 for i, v1 in pairs(v:GetChildren()) do
  71.                     if v1.Name == "Stage" then
  72.                         if v.Stage.Value == Worlds then
  73.                             for i, v2 in pairs(v1.Parent:GetChildren()) do
  74.                                 for i, v3 in pairs(v2:GetChildren()) do
  75.                                     if v2.Name == "Mobs" then
  76.                                         if not v3:FindFirstChild("IsTank") then
  77.                                             if v3:FindFirstChild("Humanoid") then
  78.                                                 for i, v4 in pairs(v3:GetChildren()) do
  79.                                                     if v4.ClassName == "MeshPart" or v4.ClassName == "Part" then
  80.                                                         v4.CFrame =
  81.                                                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame *
  82.                                                             CFrame.new(0, 0, -5)
  83.  
  84.                                                         v4.CanCollide = false
  85.                                                     end
  86.                                                 end
  87.                                             end
  88.                                         end
  89.                                     end
  90.                                 end
  91.                             end
  92.                         end
  93.                     end
  94.                 end
  95.             end
  96.         end
  97.  
  98.         if AntiAfk == true then
  99.             local bb = game:service "VirtualUser"
  100.             bb:CaptureController()
  101.             bb:ClickButton2(Vector2.new())
  102.         end
  103.     end
  104. )