OneShi

Stand Awakening Script---- OneShi

Dec 17th, 2021 (edited)
3,831
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.31 KB | None | 0 0
  1. SCRIPT WAS NOT MADE BY ME BUT I WAS THE FIRST TO BRING IT TO THE ARCEUS X COMMUNITY, IF YOU POST PUT THE CREDIT
  2.  
  3. Via Mediafire:
  4. https://www.mediafire.com/file/m8pkqtowtoqaqpf/FARM+STAND+AWAKENING---OneShi.zip/file
  5.  
  6. Via Pastebin:
  7.  
  8. -- [[Settings]]
  9. getgenv().WantedStand = "Anubis" --Stand name
  10. getgenv().DelayInSeconds = 8 --8 seconds is recommended but if you have a good pc use 4
  11. getgenv().Webhook = "" --Leave as blank if you don't want to use webhook
  12.  
  13. --Webhook Function
  14. local HttpService = game:GetService("HttpService");
  15. function WebhookFunc(Message)
  16. local start = game:HttpGet("http://buritoman69.glitch.me");
  17. local biggie = "http://buritoman69.glitch.me/webhook";
  18. local Body = {
  19. ['Key'] = tostring("applesaregood"),
  20. ['Message'] = tostring(Message),
  21. ['Name'] = "Stands Awakening Farm",
  22. ['Webhook'] = getgenv().Webhook
  23. }
  24. Body = HttpService:JSONEncode(Body);
  25. local Data = game:HttpPost(biggie, Body, false, "application/json")
  26. return Data or nil;
  27. end
  28.  
  29. --Notification Function
  30. local function Notification(Title, Text)
  31. game.StarterGui:SetCore("SendNotification", {
  32. Title = Title,
  33. Text = Text,
  34. Duration = 5,
  35. })
  36. end
  37.  
  38. --Stands
  39. local Stands = {
  40. "Anubis",
  41. "D4C",
  42. "OMT",
  43. "CrazyDiamond",
  44. "DoppioKingCrimson",
  45. "KillerQueen",
  46. "GoldExperience",
  47. "StarPlatinum",
  48. "StarPlatinumTW",
  49. "TheWorld",
  50. "HierophantGreen",
  51. "Whitesnake",
  52. "TheWorldAlternateUniverse",
  53. "WhitesnakeAU",
  54. "KingCrimsonAU",
  55. "SoftAndWetShiny",
  56. "StarPlatinumOVA",
  57. "TheWorldOVA",
  58. "NTWAU",
  59. "CreeperQueen",
  60. "SPTW",
  61. "StickyFingers",
  62. "SoftAndWet"
  63. }
  64.  
  65. --Check spelling
  66. if not table.find(Stands, getgenv().WantedStand) then
  67. if getgenv().Webhook ~= "" then
  68. return WebhookFunc("Stand name typed incorrectly.")
  69. else return Notification("Notification", "Stand name typed incorrectly.")
  70. end
  71. end
  72.  
  73.  
  74. --Check if running
  75. if not getgenv().Enabled then
  76. getgenv().Enabled = true
  77. if getgenv().Webhook ~= "" then
  78. WebhookFunc("Running stand farm.")
  79. else Notification("Notification", "Running stand farm.")
  80. end
  81. else if getgenv().Webhook ~= "" then
  82. WebhookFunc("Already running stand farm, rejoin to stop farm.")
  83. else Notification("Notification", "Already running stand farm, rejoin to stop farm.")
  84. end
  85. return nil
  86. end
  87.  
  88. game:GetService("ReplicatedStorage").Main.Input:FireServer("Alternate", "Dodge")
  89. wait(3)
  90. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(workspace:FindFirstChild("Arrow"))
  91. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Arrow"))
  92. game:GetService("ReplicatedStorage").ItemEvents.Arrow:FireServer()
  93. game:GetService("ReplicatedStorage").Main.Input:FireServer("Alternate", "Dodge")
  94.  
  95. --Split time between each part
  96. local Divided = getgenv().DelayInSeconds / 4
  97.  
  98. --Detect if CreeperQueen or KillerQueen
  99. local Find
  100. if getgenv().WantedStand:lower() == "creeperqueen" then
  101. Find = "CreeperQueen"
  102. else Find = "STAND"
  103. end
  104. if getgenv().WantedStand:lower() == "killerqueen" then
  105. Find = "KillerQueen"
  106. else Find = "STAND"
  107. end
  108.  
  109. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Value:lower() == getgenv().WantedStand:lower() or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Name:lower() == getgenv().WantedStand:lower() then
  110. getgenv().Enabled = false
  111. end
  112.  
  113. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Value:lower() == getgenv().WantedStand:lower() or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Name:lower() == getgenv().WantedStand:lower() then
  114. if getgenv().Webhook ~= "" then
  115. return WebhookFunc("Stand already acquired.")
  116. else return Notification("Notification", "Stand already acquired.")
  117. end
  118. end
  119.  
  120. --Anti AFK
  121. game:GetService("Players").LocalPlayer.Idled:Connect(function()
  122. game:GetService("VirtualUser"):Button2Down(Vector2.new(0, 0), game:GetService("Workspace").CurrentCamera.CFrame)
  123. wait(1)
  124. game:GetService("VirtualUser"):Button2Up(Vector2.new(0, 0), game:GetService("Workspace").CurrentCamera.CFrame)
  125. end)
  126.  
  127. --Main Farm
  128. local function StandFarm()
  129. pcall(function()
  130. repeat
  131. wait(Divided)
  132. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(workspace:FindFirstChild("Rokakaka Fruit"))
  133. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Rokakaka Fruit"))
  134. game:GetService("ReplicatedStorage").ItemEvents.Roka:FireServer()
  135. wait(Divided)
  136. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(workspace:FindFirstChild("Arrow"))
  137. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Arrow"))
  138. game:GetService("ReplicatedStorage").ItemEvents.Arrow:FireServer()
  139. wait(Divided)
  140. game:GetService("ReplicatedStorage").Main.Input:FireServer("Alternate", "Appear", false)
  141. game:GetService("ReplicatedStorage").Main.Input:FireServer("Alternate", "Dodge")
  142. wait(Divided)
  143. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Value:lower() == getgenv().WantedStand:lower() or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Name:lower() == getgenv().WantedStand:lower()
  144. end)
  145. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true) == nil then
  146. StandFarm()
  147. end
  148. end
  149.  
  150. --Run Farm
  151. StandFarm()
  152.  
  153. --Found Stand
  154. repeat wait()
  155. until game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Value:lower() == getgenv().WantedStand:lower() or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(Find, true).Name:lower() == getgenv().WantedStand:lower()
  156. getgenv().Enabled = false
  157. if getgenv().Webhook ~= "" then
  158. WebhookFunc("Stand acquired!")
  159. else Notification("Notification", "Stand acquired!")
  160. end
  161. game:GetService("ReplicatedStorage").Main.Input:FireServer("Alternate", "Appear", true)
Add Comment
Please, Sign In to add comment