Advertisement
2AreYouMental110

Ant Life V2 (fixed)

Jul 1st, 2022 (edited)
2,974
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.09 KB | None | 0 0
  1. getgenv().delanti = false
  2. getgenv().placeholder1 = false
  3. getgenv().textloop = false
  4. getgenv().antsel = false
  5.  
  6. local selectedoption
  7. local selectedant
  8. local selectedclass
  9. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  10. local Window = Library.CreateLib("Ant Life V2", "Sentinel")
  11.  
  12. local A = Window:NewTab("player")
  13. local A1 = A:NewSection("player")
  14.  
  15. A1:NewToggle("auto delete anticheat", "dont work on larvae", function(bool)
  16.     getgenv().delanti = bool
  17.     if bool then
  18.         delanti()
  19.     end
  20. end)
  21.  
  22.  
  23. A1:NewToggle("show queen gui", "ayo who that", function(bool)
  24.     if bool then
  25.         game:GetService("Players").LocalPlayer.PlayerGui.Queen.Container.Visible = true
  26.     else
  27.         game:GetService("Players").LocalPlayer.PlayerGui.Queen.Container.Visible = false
  28.     end
  29. end)
  30.  
  31.  
  32. A1:NewDropdown("ants", "selection", {"Yellow Crazy Ant", "Carpenter Ant", "Fire Ant"}, function(value1)
  33.     selectedant = value1
  34.     print(value1)
  35. end)
  36.  
  37.  
  38. A1:NewToggle("auto spawn as ant", "you cant specifically select queen", function(bool)
  39.     getgenv().antsel = bool
  40.     if bool then
  41.         antsel()
  42.     end
  43. end)
  44.  
  45.  
  46. A1:NewTextBox("do shoutout", "must be in a colony", function(txt)
  47.     print(txt)
  48.     game:GetService("ReplicatedStorage").Remotes.StartVote:FireServer("Shoutout","",txt)
  49. end)
  50.  
  51.  
  52. A1:NewButton("infinite yield (modified)", "modified esp", function()
  53.     loadstring(game:HttpGet("https://pastebin.com/raw/eXNwGVYr"))()
  54. end)
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. function antsel()
  64.     spawn(function()
  65.         while getgenv().antsel do
  66.             local A_1 =
  67.             {
  68.                 ["colony"] = (selectedant),
  69.                 ["class"] = "Ant",
  70.                 ["species"] = "Ant"
  71.             }
  72.             local Event = game:GetService("ReplicatedStorage").Remotes.SpawnPlayer
  73.             Event:InvokeServer(A_1)
  74.             wait()
  75.         end
  76.     end)
  77. end
  78.  
  79.  
  80. function delanti()
  81.     spawn(function()
  82.         while getgenv().delanti do
  83.             if game.Players.LocalPlayer.Character then
  84.                 for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  85.                     if v.Name == "attackLocalsa" and v.ClassName == "LocalScript" then
  86.                         v:Destroy()
  87.                     end
  88.                 end
  89.             end
  90.             wait()
  91.         end
  92.     end)
  93. end
  94.  
  95.  
  96.  
  97.  
  98. for i,v in pairs(game.Players:GetPlayers()) do
  99.     if v:GetRankInGroup(4525406) >= 240 then
  100.         game:GetService("StarterGui"):SetCore("SendNotification", {
  101.         Title = "Moderator Already Ingame!",
  102.         Text = (v.Name)
  103.         })
  104.         rconsoleprint("@@RED@@")
  105.         rconsoleprint("mod detected!",v.Name)
  106.     end
  107. end
  108. game.Players.PlayerAdded:Connect(function(plr)
  109.     wait(.5)
  110.     if plr:GetRankInGroup(4525406) >= 240 then
  111.         game:GetService("StarterGui"):SetCore("SendNotification", {
  112.         Title = "Moderator Joined!",
  113.         Text = (plr.Name)
  114.         })
  115.         rconsoleprint("@@RED@@")
  116.         rconsoleprint("mod joined!",v.Name)
  117.     end
  118. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement