Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. local WhirlID = 4
  2. local ShoutID = 9
  3.  
  4. -- Bypass
  5. loadstring(game:HttpGet('https://pastebin.com/raw/1e12BgYP'))()
  6.  
  7. -- Services
  8. local ReplicatedStorage = game.ReplicatedStorage
  9. local Remotes = ReplicatedStorage:WaitForChild("remotes")
  10.  
  11. -- Assets
  12. local Player = game.Players.LocalPlayer
  13. local Dungeon = workspace:WaitForChild("dungeon")
  14.  
  15. -- Code
  16. for i = 1, 100 do
  17. local Spell = Player.Backpack:FindFirstChild("Whirlwind")
  18.  
  19. if (Spell) then
  20. Spell.Parent = Player
  21. Remotes.unequipItem:InvokeServer("ability", WhirlID)
  22. Remotes.equipItem:InvokeServer("ability", WhirlID, "q")
  23. end
  24.  
  25. local Spell2 = Player.Backpack:FindFirstChild("Battle Shout")
  26.  
  27. if (Spell2) then
  28. Spell2.Parent = Player
  29. Remotes.unequipItem:InvokeServer("ability", ShoutID)
  30. Remotes.equipItem:InvokeServer("ability", ShoutID, "e")
  31. end
  32. end
  33.  
  34. for index, value in next, Player:GetChildren() do
  35. if (value:IsA("Tool")) then
  36. value.Parent = Player.Backpack
  37. end
  38. end
  39.  
  40. local AlreadyUsed = {}
  41.  
  42. spawn(function()
  43. while wait() do
  44. for index, value in next, Dungeon:GetDescendants() do
  45. if (value:FindFirstChildOfClass("Humanoid") and value ~= Player.Character) then
  46. local Root = value:FindFirstChild("HumanoidRootPart")
  47. if (Root) then
  48. Player.Character:MoveTo(Root.Position)
  49. end
  50. wait()
  51. end
  52. end
  53. end
  54. end)
  55.  
  56.  
  57. spawn(function()
  58. for loop = 1, 5 do
  59.  
  60. spawn(function()
  61. local c = Player.Backpack:GetChildren()
  62.  
  63. for i = 1, 20 * loop do
  64. if (not AlreadyUsed[c[i]] and c[i].abilitySlot.Value == "e") then
  65. AlreadyUsed[c[i]] = true
  66. c[i]:FindFirstChildWhichIsA("RemoteEvent"):FireServer()
  67. end
  68. end
  69. end)
  70.  
  71. wait(8)
  72. end
  73. end)
  74.  
  75. for loop = 1, 20 do
  76.  
  77. spawn(function()
  78. local c = Player.Backpack:GetChildren()
  79. for i = 1, 5 * loop do
  80. if (not AlreadyUsed[c[i]] and c[i].abilitySlot.Value == "q") then
  81. AlreadyUsed[c[i]] = true
  82. c[i]:FindFirstChildWhichIsA("RemoteEvent"):FireServer()
  83. end
  84. end
  85. end)
  86.  
  87. wait(2)
  88. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement