zombieslayerwtf

Not So Bizarre Adventure Scripts

Oct 9th, 2018
1,390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.68 KB | None | 0 0
  1. ---Dont Mind This!
  2. local function create()
  3. mouse=game.Players.LocalPlayer:GetMouse()
  4. tool=Instance.new("Tool",game.Players.LocalPlayer.Backpack)
  5. tool.RequiresHandle=false
  6. tool.Name="Click Teleport"
  7. tool.Activated:connect(function()
  8. local pos=mouse.Hit+Vector3.new(0,2.5,0)
  9. pos=CFrame.new(pos.X,pos.Y,pos.Z)
  10. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=pos
  11. end)
  12. end
  13. create()
  14. game.Players.LocalPlayer.CharacterAdded:connect(create)
  15.  
  16.  
  17. ---All stand with E strongPunch
  18. local player = game.Players.LocalPlayer
  19. local Mouse = player:GetMouse()
  20. Mouse.KeyDown:connect(function(key)
  21. if key == "e" then
  22. for i=1,20 do
  23. local player2 = game.Players.LocalPlayer
  24. local character2 = player2.Character
  25. player2.Backpack.StrongPunch.RemoteEvent:FireServer()
  26. local p = Instance.new("Part", character2.Effects)
  27. game.Debris:AddItem(p, .3)
  28. p.CanCollide = false
  29. p.Anchored = false
  30. local RightArm = character2["Right Arm"]
  31. p.Size = RightArm.Size
  32. p.Transparency = 1
  33. local w = Instance.new("Weld", p)
  34. w.Part0 = RightArm
  35. w.Part1 = p
  36. p.Touched:connect(function(hit)
  37. local ehum = hit.Parent:findFirstChild("Humanoid")
  38. if ehum ~= character2.Humanoid then
  39. player2.Backpack.StrongPunch.Damage:FireServer(hit, ehum)
  40. end
  41. end)
  42. end
  43. end
  44. end)
  45.  
  46.  
  47.  
  48.  
  49. --Killer Queen
  50. local mouse = game.Players.LocalPlayer:GetMouse()
  51. local name = game.Players.LocalPlayer.Name
  52.  
  53. game:GetService("UserInputService").InputBegan:connect(function(key)
  54. if key.KeyCode == (Enum.KeyCode.V) then
  55. for i,v in pairs(game.Players:GetPlayers()) do
  56. game.Players[name].Backpack.FirstBomb.Bomb:FireServer(true, mouse.Target)
  57. end
  58. end
  59. end)
  60. game:GetService("UserInputService").InputBegan:connect(function(key)
  61. if key.KeyCode == (Enum.KeyCode.X) then
  62. for i,v in pairs(game.Players:GetPlayers()) do
  63. game.Players[name].Backpack.FirstBomb.Bomb:FireServer(false)
  64. end
  65. end
  66. end)
  67.  
  68. ---Hierophant Green
  69. local player = game.Players.LocalPlayer
  70. local player2 = game.Players.LocalPlayer
  71. character2 = player2.Character
  72. local Mouse = player:GetMouse()
  73. Mouse.KeyDown:connect(function(key)
  74. if key == "q" then
  75. player2.Backpack.EmeraldSplash.RemoteEvent:FireServer(true, 10)
  76. player2.Backpack.EmeraldSplash.RemoteEvent:FireServer(false, 10, Mouse.Hit.p)
  77. end
  78. end)
  79. local player = game.Players.LocalPlayer
  80. local player2 = game.Players.LocalPlayer
  81. character2 = player2.Character
  82. local Mouse = player:GetMouse()
  83. Mouse.KeyDown:connect(function(key)
  84. if key == "e" then
  85. player2.Backpack.Barrier.RemoteEvent:FireServer(false, 20)
  86. player2.Backpack.Barrier.RemoteEvent:FireServer(true, 20)
  87. end
  88. end)
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95. ---Silver Chariot
  96. local player = game.Players.LocalPlayer
  97. local player2 = game.Players.LocalPlayer
  98. local character2 = player2.Character
  99. local Mouse = player:GetMouse()
  100. Mouse.KeyDown:connect(function(key)
  101. if key =="t" then
  102. game:GetService("Players").LocalPlayer.Backpack.SwordThrow.RemoteEvent:FireServer(Mouse.Hit.p)
  103. end
  104. end)
  105.  
  106.  
  107.  
  108.  
  109. ---The Hand
  110. local player = game.Players.LocalPlayer
  111. local player2 = game.Players.LocalPlayer
  112. local character2 = player2.Character
  113. local Mouse = player:GetMouse()
  114. Mouse.KeyDown:connect(function(key)
  115. if key =="e" then
  116. game:GetService("Players").LocalPlayer.Backpack.Scrape1.RemoteEvent:FireServer(Mouse.Hit.p)
  117. end
  118. end)
  119. local player = game.Players.LocalPlayer
  120. local player2 = game.Players.LocalPlayer
  121. local character2 = player2.Character
  122. local Mouse = player:GetMouse()
  123. Mouse.KeyDown:connect(function(key)
  124. if key =="r" then
  125. game:GetService("Players").LocalPlayer.Backpack.Scrape2.RemoteEvent:FireServer(Mouse.Hit.p)
  126. end
  127. end)
  128.  
  129. local List = {} --Array of player's HumanoidRootPart
  130. function GetAllPlayers() --Gives you all thje characters of all players in the game currentenly
  131. local namesOfPlayers = {}
  132. for i,Player in ipairs(game:GetService("Players"):GetChildren()) do
  133. table.insert(namesOfPlayers,Player.Name)
  134. end
  135.  
  136. for i,v in ipairs(workspace:GetChildren()) do
  137. for i,Player in ipairs(namesOfPlayers) do
  138. if v.Name == Player then
  139. local humanoidRoot = v:FindFirstChild("HumanoidRootPart")
  140. table.insert(List,humanoidRoot)
  141. end
  142. end
  143. end
  144. end
  145. local player = game.Players.LocalPlayer -- Your Player
  146. local Mouse = player:GetMouse()
  147. Mouse.KeyDown:connect(function(key)
  148. if key == "f" then
  149. List = {}
  150. GetAllPlayers() -- Get all player's HumanoidRootPart
  151. player.Backpack:findFirstChild("Scrape3").RemoteEvent:FireServer(
  152. List -- The list of everyone HumanoidRootPart
  153. )
  154. end
  155. end)
  156.  
  157.  
  158.  
  159.  
  160.  
  161. ---Crazy Diamond
  162. local player = game.Players.LocalPlayer
  163. local player2 = game.Players.LocalPlayer
  164. local character2 = player2.Character
  165. local Mouse = player:GetMouse()
  166. Mouse.KeyDown:connect(function(key)
  167. if key =="g" then
  168. game:GetService("Players").LocalPlayer.Backpack.Wall.RemoteEvent:FireServer()
  169. end
  170. end)
  171. local player = game.Players.LocalPlayer
  172. local player2 = game.Players.LocalPlayer
  173. local character2 = player2.Character
  174. local Mouse = player:GetMouse()
  175. Mouse.KeyDown:connect(function(key)
  176. if key =="r" then
  177. game:GetService("Players").LocalPlayer.Backpack.BloodThrow.RemoteEvent:FireServer(Mouse.Hit.p)
  178. end
  179. end)
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188. ---Star Plat
  189. local player = game.Players.LocalPlayer
  190. local Mouse = player:GetMouse()
  191. Mouse.KeyDown:connect(function(key)
  192. if key == "r" then
  193. local player2 = game.Players.LocalPlayer
  194. local character2 = player2.Character
  195. player2.Backpack:FindFirstChild("Star Finger").RemoteEvent:FireServer()
  196. do
  197. local p = Instance.new("Part", character2)
  198. game.Debris:AddItem(p, 0.25)
  199. p.CanCollide = false
  200. p.Anchored = false
  201. local RightArm = character2["Right Arm"]
  202. p.Size = Vector3.new(10, 0.2, 0.4)
  203. p.Transparency = 1
  204. local w = Instance.new("Weld", p)
  205. w.Part0 = RightArm
  206. w.Part1 = p
  207. w.C0 = CFrame.new(0.3, -6, -0.25) * CFrame.Angles(0, 0, math.rad(90))
  208. p.Touched:connect(function(hit)
  209. local ehum = hit.Parent:findFirstChild("Humanoid")
  210. if ehum ~= character2.Humanoid then
  211. player2.Backpack:FindFirstChild("Star Finger").Damage:FireServer(hit)
  212. end
  213. end)
  214. end
  215. end
  216. end)
  217. local player = game.Players.LocalPlayer
  218. local Mouse = player:GetMouse()
  219. Mouse.KeyDown:connect(function(key)
  220. if key == "g" then
  221. local player2 = game.Players.LocalPlayer
  222. local character2 = player2.Character
  223. game.Players.LocalPlayer.Backpack.Leap.RemoteEvent:FireServer()
  224. local p = Instance.new("Part", character2.Effects)
  225. game.Debris:AddItem(p, 0.3)
  226. p.CanCollide = false
  227. p.Anchored = false
  228. local RightArm = character2["Right Leg"]
  229. p.Size = RightLeg.Size
  230. p.Transparency = 1
  231. local w = Instance.new("Weld", p)
  232. w.Part0 = RightLeg
  233. w.Part1 = p
  234. local RightArm = character2["Left Leg"]
  235. p.Size = LeftLeg.Size
  236. p.Transparency = 1
  237. local w = Instance.new("Weld", p)
  238. w.Part0 = LeftLeg
  239. w.Part1 = p
  240. p.Touched:connect(function(jump)
  241. local ehum = hit.Parent:findFirstChild("Humanoid")
  242. if ehum ~= character2.Humanoid then
  243. game.Players.LocalPlayer.Backpack.Leap.RemoteEvent:FireServer()
  244. end
  245. end)
  246. end
  247. end)
  248. local player2 = game.Players.LocalPlayer
  249. local Mouse = player2:GetMouse()
  250. cooldown = 0
  251. Mouse.KeyDown:connect(function(key)
  252. if key == "y" and cooldown == 0 and not player2:findFirstChild("TCooldown") then
  253. local player = game.Players.LocalPlayer
  254. local character = player.Character
  255. cooldown = 1
  256. game.Lighting.GetTimeInSeconds:FireServer(character, "TheWorld")
  257. wait(40)
  258. cooldown = 0
  259. end
  260. end)
Add Comment
Please, Sign In to add comment