Advertisement
lafur

Untitled

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