Advertisement
Elvisfofo_rblx

Explode Everything Script

Jun 22nd, 2025
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. --// Explode Everything Script
  2. for _, obj in pairs(game.Workspace:GetDescendants()) do
  3. if obj:IsA("BasePart") then
  4. local explosion = Instance.new("Explosion")
  5. explosion.Position = obj.Position
  6. explosion.BlastRadius = 10
  7. explosion.BlastPressure = 500000
  8. explosion.DestroyJointRadiusPercent = 1
  9. explosion.Parent = game.Workspace
  10. end
  11. end
  12. end},
  13. {"Unanchor All (somegames)", function()
  14. --// Unanchor Everything Script
  15. for _, obj in pairs(game.Workspace:GetDescendants()) do
  16. if obj:IsA("BasePart") and obj.Anchored then
  17. obj.Anchored = false
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement