Advertisement
roblox_exploit

Bleach: Soul Of End

Aug 27th, 2019
3,300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. -------EDIT SECTION---------------------------------------
  2. _G.attack = true --Toggle -> false to stop
  3. local MAP = "Hollows" --Stages -> "Hollows", "Soul Reapers", "Arrancars", "Stronger Menos Grande", "Quincys", "Quincy Soilders"(go first in the portal to farm quincys)
  4. local NPC = "Hollow" --Mobs -> "Hollow", "Soul Reaper", "Arrancar", "Stronger Menos Grande", "Quincy", "Quincy Soilder"
  5. local QUEST = "Hollow Part 1" --Quests -> "Soul Reaper Part 1", "Arrancar Part 1", "Stronger Menos Grande Part 1", "Quincy Part 1", "Quincy Soilder Part 1"
  6. local SKILL = "Explosion Arrow"
  7. ----------------------------END----------------------------
  8.  
  9.  
  10. local me = game.Players.LocalPlayer
  11. game:GetService('RunService').Stepped:connect(function()
  12. if _G.attack then
  13. me.Character.Humanoid:ChangeState(11)
  14. end
  15. end)
  16. local farm = coroutine.wrap(function()
  17. while _G.attack do
  18. wait()
  19. for _,v in pairs(game.Workspace.Spawners[MAP]:GetDescendants()) do
  20. if string.find(v.Name, NPC) and v:FindFirstChild("HumanoidRootPart") then
  21. if workspace:FindFirstChild("Second Floor") then
  22. game:GetService("ReplicatedStorage").Remotes.Skills:FireServer("Reiatsu Charge")
  23. else
  24. game:GetService("ReplicatedStorage").Remotes.Skills:FireServer("Charge")
  25. end
  26. game:GetService("ReplicatedStorage").Remotes.Skills:FireServer(SKILL, v.HumanoidRootPart.Position)
  27. game:GetService("ReplicatedStorage").Remotes.Quest:FireServer("Start Quest", QUEST)
  28. game:GetService("ReplicatedStorage").Remotes.Quest:FireServer("Quest Completed")
  29. me.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame+Vector3.new(0,75,0)
  30. end
  31. end
  32. for loot,x in pairs(game.Workspace:GetChildren()) do
  33. if x.Name == "Loot" then
  34. x.Core.CFrame = me.Character.HumanoidRootPart.CFrame+Vector3.new(0,0,0)
  35. end
  36. end
  37. end
  38. end)
  39. farm()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement