Advertisement
Jovey

Weak Piece Script

May 8th, 2022
2,920
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 1 0
  1. local bosses = {workspace["[JOR]"],workspace["[MRMS]"],workspace["[Ace]"],workspace.Heaven}
  2.  
  3. task.spawn(function()
  4. while wait(1) do
  5. pcall(function()
  6. for _,v in pairs(bosses) do
  7. fireclickdetector(v.ClickDetector)
  8. end
  9. for i,v2 in pairs(game.Players:GetChildren()) do
  10. for _,v in pairs(v2.Backpack:GetChildren()) do
  11. if v:FindFirstChild("DF") and v:FindFirstChild("Event") then
  12. if v.Name == "Explosion" then
  13. v.Event:FireServer("Explosive")
  14. else
  15. v.Event:FireServer(v.Name.."Punch")
  16. v.Event:FireServer(v.Name)
  17. end
  18. end
  19. end
  20. if v2.Character then
  21. for _,v in pairs(v2.Character:GetChildren()) do
  22. if v:FindFirstChild("DF") and v:FindFirstChild("Event") then
  23. if v.Name == "Explosion" then
  24. v.Event:FireServer("Explosive")
  25. else
  26. v.Event:FireServer(v.Name.."Punch")
  27. v.Event:FireServer(v.Name)
  28. end
  29. end
  30. end
  31. end
  32. end
  33. end)
  34. end
  35. end)
  36.  
  37. while wait(0.2) do
  38. for i,v2 in pairs(workspace.Enemy:GetChildren()) do
  39. for _,v in pairs(v2:GetChildren()) do
  40. if v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
  41. game:GetService("ReplicatedStorage").Remote.Skills:FireServer("MMExplosion", 9e18, v.HumanoidRootPart.CFrame)
  42. game:GetService("ReplicatedStorage").Remote.Skills:FireServer("MExplosion", 9e18, v.HumanoidRootPart.CFrame)
  43. game:GetService("ReplicatedStorage").Remote.Skills:FireServer("Explosion", 9e18, v.HumanoidRootPart.CFrame)
  44. end
  45. end
  46. end
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement