Advertisement
Guest User

Untitled

a guest
May 19th, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.59 KB | None | 0 0
  1. (Doesn't work anymore) Beast mode:
  2. Code:
  3. plr = game.Players.LocalPlayer
  4.  
  5. game.Lighting["Beast Mode"]:Clone().Parent = plr.Backpack
  6.  
  7. (Doesn't work anymore) To activate beat mode, when you equip the tool press q and you will transform, when in beast mode press 2 to return to normal. I also know that while in beast mode you can't talk, so here is a little fix for that...
  8.  
  9. Code:
  10. local gui = game:GetService("StarterGui")
  11.  
  12. gui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)
  13. Use the code when you have transformed into the beast so you can talk again.
  14.  
  15.  
  16. For this one, I didn't really look around too much to see if there was another way to do it, but oh well, just do it this way seems easiest tbh.
  17. Invincible to spells:
  18.  
  19. Code:
  20. plr = game.Players.LocalPlayer
  21. plr.Character.PROTEGOSpellEffect:Clone().Parent = plr.Character
  22.  
  23. Before you use the script, you must use the protego spell first. Quickly click once after saying protego and then execute the script then you will be invincible to spells, and then use normal god mode if you want so the snakes can't kill you too.
  24.  
  25.  
  26. More wands(To spam spells):
  27.  
  28. -Edited and fixed
  29.  
  30. This script basically puts 9 more wands into your backpack, you may think "why the hell would I want that?", well the thing is if you to show off, now you can. You can go to notepad and copy any spell and paste it onto each wand to spam it. Example "/e bombarda" -- Copy and paste that onto each wand and you will have yourself your own personal barrage, or use immobulus to knock everyone down around you simultaneously or maybe you want to show off or cause lag or a lot of noise, you can by using expecto patronum. This is actually pretty fun to use, trust me. gg.
  31.  
  32. Code:
  33. w = 1
  34. plr = game.Players.LocalPlayer
  35. for i = 1,9 do
  36. elder = plr.Backpack:findFirstChild("Elder Wand")
  37. wand = plr.Backpack:findFirstChild("Wand")
  38. if elder then
  39. elder:Clone().Parent = plr.Backpack
  40. else
  41. if wand then
  42. wand:Clone().Parent = plr.Backpack
  43. else
  44. if w == 1 then
  45. w = w + 1
  46. print("YOU GOT NO FACKING WAND, HARRY. HERE YOU FACKING GO")
  47. game.StarterPack.Wand:Clone().Parent = plr.Backpack
  48. end
  49. end
  50. end
  51. end
  52.  
  53. wait(.1)
  54.  
  55. for i,v in pairs(plr:GetChildren()) do
  56. if v.Name == "Wand" or v.Name == "Elder Wand" then
  57. v.LocalScript.Disabled = true
  58. end
  59. end
  60.  
  61.  
  62.  
  63. Alternative spam method:
  64.  
  65. Don't spam this too fast otherwise you will get disconnected. The server doesn't like this method very much
  66.  
  67. * q is to ready the spell you want
  68. * e is to delete the spell assigned to the q key so you can input another spell if needed
  69.  
  70. Code:
  71. spell = "infernum" -- put the spell you want to use in here, inside the quotes
  72.  
  73. cast = 1
  74. plr = game.Players.LocalPlayer
  75. mouse = plr:GetMouse()
  76. mouse.KeyDown:connect(function(key)
  77. if key == "q" then
  78. if cast ~= 1 then return end
  79. game.Players:chat(spell)
  80. elseif key == "e" then
  81. cast = 0
  82. end
  83. end)
  84.  
  85. Delete everyone's wands and auror flight (except yours):
  86.  
  87. If you want to delete yours too, then just put -- before where it says if (if v.Name ~= plr.Name then) and put another -- on one of the (end) at the bottom, make sure it isn't an (end) that has a parenthesis by it.. The same should be done for the auror flight section.
  88. * z key is to delete everyone's wand
  89. * x key is to delete everyone's auror flight
  90.  
  91. Code:
  92. plr = game.Players.LocalPlayer
  93. mouse = plr:GetMouse()
  94. mouse.KeyDown:connect(function(key)
  95. if key == "z" then
  96. for i,v in pairs(game.Players:GetChildren()) do
  97. if v.Name ~= plr.Name then
  98. coroutine.wrap(function()
  99. if v.Backpack:findFirstChild("Wand") then
  100. wand = v.Backpack:findFirstChild("Wand")
  101. wand:Destroy()
  102. end
  103. end)()
  104. coroutine.wrap(function()
  105. if v.Character:findFirstChild("Wand") then
  106. ewand = v.Character:findFirstChild("Wand")
  107. ewand:Destroy()
  108. end
  109. end)()
  110. coroutine.wrap(function()
  111. if v.Backpack:findFirstChild("Elder Wand") then
  112. elder = v.Backpack:findFirstChild("Elder Wand")
  113. elder:Destroy()
  114. end
  115. end)()
  116. coroutine.wrap(function()
  117. if v.Character:findFirstChild("Elder Wand") then
  118. eelder = v.Character:findFirstChild("Elder Wand")
  119. eelder:Destroy()
  120. end
  121. end)()
  122. end
  123. end
  124. elseif key == "x" then
  125. for i,v in pairs(game.Players:GetChildren()) do
  126. if v.Name ~= plr.Name then
  127. if v.Backpack:findFirstChild("Auror") then
  128. aur = v.Backpack:findFirstChild("Auror"):Destroy()
  129. end
  130. end
  131. end
  132. end
  133. end)
  134.  
  135. This is the game btw: https://www.roblox.com/games/527730528/Magic-Training
  136. Have fun.
  137. The truth is not based on opinion. An opinion is what is thought to be the truth.- K
  138.  
  139. Exploits I own Elysian Rc7, Intriga, ProtoSmasher, R1 and Seraph.
  140.  
  141. (I may have a lot of exploits, but I rather get to keep using one just in case owners retires or whatever.)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement