Advertisement
FurkingBoi

adventurer

Jan 15th, 2021
975
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))()
  2. local window = library:Window("Adventurer Simulator")
  3.  
  4. window:Toggle("Auto-Sell", true, function(bool)
  5. while bool == true do
  6. wait(.0)
  7. game:GetService("Workspace").Activations.Sell.RootPart.CFrame = game.Players.LocalPlayer.character.HumanoidRootPart.CFrame
  8. end
  9. end)
  10. window:Toggle("Auto-Click", true, function(bool)
  11. while bool == true do
  12. wait(.0)
  13. local A_1 =
  14. {
  15. ["Action"] = "Attack"
  16. }
  17. local Event = game:GetService("ReplicatedStorage").Remotes.Events.Weapon
  18. Event:FireServer(A_1)
  19. end
  20. end)
  21. window:Toggle("Collect Coins & Gems", true, function(bool)
  22. while bool == true do
  23. for i,v in pairs(game:GetService("Workspace").Client.Worlds.Overworld.Collectables.Projectiles:GetDescendants()) do
  24. if v:IsA("UnionOperation") or v:IsA("MeshPart") then
  25. v.CFrame = game.workspace[game.Players.LocalPlayer.Name].HumanoidRootPart.CFrame
  26. end
  27. end
  28. wait(0.25)
  29. end
  30. end)
  31. window:Toggle("Auto-Buy Weapons", true, function(bool)
  32. while bool == true do
  33. wait(.0)
  34. local A_1 =
  35. {
  36. ["Action"] = "Buy All",
  37. ["Category"] = "Weapons"
  38. }
  39. local Event = game:GetService("ReplicatedStorage").Remotes.Events.Shop
  40. Event:FireServer(A_1)
  41. end
  42. end)
  43. window:Toggle("Auto-Buy Genetics", true, function(bool)
  44. while bool == true do
  45. wait(.0)
  46. local A_1 =
  47. {
  48. ["Action"] = "Buy All",
  49. ["Category"] = "Genetics"
  50. }
  51. local Event = game:GetService("ReplicatedStorage").Remotes.Events.Shop
  52. Event:FireServer(A_1)
  53. end
  54. end)
  55. window:Toggle("Auto Delete All Pets", true, function(bool)
  56. while bool == true do
  57. wait(.0)
  58. local A_1 =
  59. {
  60. ["Action"] = "Delete All"
  61. }
  62. local Event = game:GetService("ReplicatedStorage").Remotes.Events.Pet
  63. Event:FireServer(A_1)
  64. end
  65. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement