Advertisement
Finatic

Dungeon Quest | Spell Spam | Insta Kill

Apr 29th, 2019
6,559
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. NAME = "Blade Throw" -- Put the name of the spell within the quotes
  2. ID = 4 -- Replace with the ID number. Can be found by running a remote spy, then unequipping the skill
  3. AMOUNT = 15 -- Change this to any number, but just know that the higher the number, the longer the wait
  4. SLOT = "q" -- Put either q or e between the quotes.
  5. local ws = 70
  6. local Player = game.Players.LocalPlayer;
  7. Player.Character.Humanoid.WalkSpeed = ws;
  8.  
  9. loadstring(game:HttpGet(('https://pastebin.com/raw/R1ZFkXmA'),true))()
  10.  
  11. SLOT2 = string.lower(SLOT) -- incase someone puts a capital Q as the slot value
  12.  
  13. for i = 1,AMOUNT do
  14. if game.Players.LocalPlayer.Backpack:FindFirstChild(NAME) then
  15. game.Players.LocalPlayer.Backpack:FindFirstChild(NAME).Parent = game.Players.LocalPlayer
  16. wait(0.005)
  17. game.ReplicatedStorage.remotes.unequipItem:InvokeServer("ability", ID)
  18. wait(0.005)
  19. game.ReplicatedStorage.remotes.equipItem:InvokeServer("ability", ID, SLOT2)
  20. wait(0.005)
  21. end
  22. end
  23. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  24. if (v:IsA("Tool")) then
  25. v.Parent = game.Players.LocalPlayer.Backpack
  26. end
  27. end
  28.  
  29. local Dungeon = workspace:WaitForChild("dungeon")
  30. spawn(function()
  31. while wait() do
  32. for index, value in next, Dungeon:GetDescendants() do
  33. if (value.Name == "barrier") then
  34. value:Destroy()
  35. end
  36. end
  37. end
  38. end)
  39.  
  40. wait(2)
  41. local Event = game:GetService("ReplicatedStorage").remotes.changeStartValue
  42. Event:FireServer()
  43. while true do
  44. pcall(function()
  45. local mypos = Player.Character.HumanoidRootPart.CFrame.p;
  46. for index, value in next, workspace.dungeon:GetDescendants() do
  47. Player.Character.Humanoid.WalkSpeed = ws;
  48. if (value:FindFirstChildOfClass("Humanoid") and (value ~= Player.Character)) then
  49. if ((value.HumanoidRootPart.CFrame.p - mypos).Magnitude < 20) then
  50. value.Humanoid.Health = 0;
  51. end;
  52. end;
  53. end;
  54. end);
  55. wait(0.15);
  56. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement