Advertisement
Guest User

Noh

a guest
Jun 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. -- kills everything on map
  2. -- gamelink: https://www.roblox.com/games/2295122555/Project-JoJo#
  3.  
  4. killplayers = false -- set true/false to killplayers
  5.  
  6. -- make platform and tp to it
  7. platform = Instance.new("Part", workspace)
  8. platform.Size = Vector3.new(20,1,20)
  9. platform.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,400,0)
  10. platform.Anchored = true
  11. platform.Material = "Glass"
  12. platform.Transparency = .5
  13. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = platform.CFrame * CFrame.new(0,10,0)
  14.  
  15. -- kill shit loop
  16. while wait() do
  17. workspace = game.Workspace:GetChildren()
  18. playerlist = game.Players:GetChildren()
  19. localplayer = game.Players.LocalPlayer
  20. A_1 = 17 -- abillity
  21. A_2 = nil -- useless
  22. A_4 = 50000000000 -- damage
  23. A_5 = localplayer.Character.Torso.voiceline -- voiceline
  24. A_7 = false -- idk
  25. Event = game:GetService("ReplicatedStorage").Logic.hitbox -- event
  26. for i = 1, #workspace do
  27. if workspace[i].Name == "Holy Dummy" or workspace[i].Name == "Space Dummy" or workspace[i].Name == "Evil Star Platinum User" or workspace[i].Name == "Diavolo"then
  28. if workspace[i].Humanoid.Health > 0 then
  29. A_3 = workspace[i].Head.CFrame
  30. A_6 = workspace[i].Humanoid
  31. Event:InvokeServer(A_1, A_2, A_3, A_4, A_5, A_6, A_7)
  32. end
  33. end
  34. end
  35. if killplayers then
  36. for i = 1, #playerlist do
  37. if playerlist[i].Name ~= localplayer.Name and playerlist[i].Character ~= nil then
  38. if playerlist[i].Character:FindFirstChild("Humanoid") ~= nil then
  39. A_3 = playerlist[i].Character.Head.CFrame
  40. A_6 = playerlist[i].Character.Humanoid
  41. Event:InvokeServer(A_1, A_2, A_3, A_4, A_5, A_6, A_7)
  42. end
  43. end
  44. end
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement