Advertisement
2AreYouMental110

A modded adventure GUI (UPDATE)

Jun 19th, 2022 (edited)
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.80 KB | None | 0 0
  1. -- https://pastebin.com/1Gie1fkU VERSION 1
  2.  
  3. -- autocollect kinda stops whrn theres no item so uhh spam the collect
  4. for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  5.     if v.Name == "Anticheat" and v.Parent then
  6.         game.Players.LocalPlayer.Character.Anticheat:Destroy()
  7.     else
  8.         print("localplayer anticheat already deleted")
  9.     end
  10. end
  11.  
  12. for i, v in pairs(game:GetService("Workspace"):GetDescendants()) do
  13.     if v.Name == "Anticheat" and v.Parent then
  14.         game:GetService("Workspace").Anticheat:Destroy()
  15.     else
  16.         print("workspace anticheat already deleted")
  17.     end
  18. end
  19.  
  20. for i, v in pairs(game:GetService("ReplicatedStorage"):GetDescendants()) do
  21.     if v.Name == "stopexploiting" and v.Parent then
  22.         game:GetService("ReplicatedStorage").stopexploiting:Destroy()
  23.     else
  24.         if v.Name == "imaginexploitingGER" and v.Parent then
  25.             game:GetService("ReplicatedStorage").imaginexploitingGER:Destroy()
  26.         else
  27.             if v.Name == "WHYAREYOUEXPLOITING" and v.Parent then
  28.                 game:GetService("ReplicatedStorage").WHYAREYOUEXPLOITING:Destroy()
  29.             else
  30.                 if v.Name == "HEYNOEXPLOITINGPLEAsETHANKSLOL" and v.Parent then
  31.                     game:GetService("ReplicatedStorage").HEYNOEXPLOITINGPLEAsETHANKSLOL:Destroy()
  32.                 else
  33.                     if v.Name == "imaginexploitingSF" and v.Parent then
  34.                         game:GetService("ReplicatedStorage").imaginexploitingSF:Destroy()
  35.                     else
  36.                         if v.Name == "seriouslystop" and v.Parent then
  37.                             game:GetService("ReplicatedStorage").seriouslystop:Destroy()
  38.                         else
  39.                             print("all anticheats are deleted!")
  40.                         end
  41.                     end
  42.                 end
  43.             end
  44.         end
  45.     end
  46. end
  47.  
  48. getgenv().autocollect = false
  49.  
  50.  
  51. local selectedoption
  52. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  53. local Window = Library.CreateLib("A modded adventure", "Sentinel")
  54.  
  55. local A = Window:NewTab("Items")
  56. local A1 = A:NewSection("Items")
  57. local A2 = A:NewSection("Item Spawns")
  58.  
  59. local B = Window:NewTab("Stands")
  60. local B1 = B:NewSection("Stands")
  61.  
  62. local C = Window:NewTab("Other")
  63. local C1 = C:NewSection("Other")
  64.  
  65.  
  66. A1:NewDropdown("Item List", "choose one and click the button to collect if it spawned", {"Aja Mask", "Banknote", "Black Requiem Arrow", "Bootleg's Diary", "Coffin", "Dark Infused Dominus", "Diego's Requiem Arrow", "Ender Pearl", "Empty Heart", "Essense of the Pot God", "Frog", "Full Form Emerald", "Hat", "Heart", "Hellish Diary", "Holy Corpse", "Holy Corpse Left Eye", "Hyper's Chaos Emerald", "Jotaro's Requiem Arrow", "Knife", "Mario Hat", "POT's Diary", "Pure Aja Mask", "Reborn Arrow", "Requiems Arrow", "Saitama's Cape", "Sonic's Shoes", "Vampire Mask", "X!Tale Heart", "Zipper Hand", "Zero Two's Horns"}, function(value1)
  67.     selectedoption = value1
  68.     print(value1)
  69. end)
  70.  
  71. A1:NewButton("Collect Item", "collect the item if it spawned", function()
  72.     if selectedoption then
  73.         collect()
  74.     end
  75. end)
  76.  
  77. A1:NewToggle("Auto Collect Item", "collects the item if it spawned", function(bool)
  78.     getgenv().autocollect = bool
  79.     if selectedoption then
  80.         if bool then
  81.             autocollect2()
  82.         end
  83.     end
  84. end)
  85.  
  86. A2:NewButton("Show Item Spawns", "light blue = chaos emerald, red = item, green = banknote", function()
  87.     for i, v in pairs(game:GetDescendants()) do
  88.         if v.Parent.Name == "NegativeChaosEmeraldSpawn" then
  89.             v.Transparency = ("0.3")
  90.             v.Color = Color3.fromRGB(0, 255, 255)
  91.         end
  92.     end
  93.     for i, v in pairs(game:GetDescendants()) do
  94.         if v.Parent.Name == "ArrowRokaSpawns" then
  95.             v.Transparency = ("0.3")
  96.             v.Color = Color3.fromRGB(255, 0, 0)
  97.         end
  98.     end
  99.     for i, v in pairs(game:GetDescendants()) do
  100.         if v.Parent.Name == "MoneySpawns" then
  101.             v.Transparency = ("0.3")
  102.             v.Color = Color3.fromRGB(0, 255, 0)
  103.         end
  104.     end
  105. end)
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123. function autocollect2()
  124.     spawn(function()
  125.         while getgenv().autocollect do
  126.             game:GetService("Workspace")[selectedoption].Handle.CanCollide = false
  127.             game:GetService("Workspace")[selectedoption].Handle.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position
  128.             wait()
  129.         end
  130.     end)
  131. end
  132.  
  133.  
  134.  
  135.  
  136. function collect()
  137.     game:GetService("Workspace")[selectedoption].Handle.CanCollide = false
  138.     game:GetService("Workspace")[selectedoption].Handle.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position
  139.     wait()
  140. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement