Advertisement
ERROR_CODE

Untitled

Oct 17th, 2023 (edited)
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.18 KB | None | 0 0
  1. local explosion = Instance.new("Explosion")
  2. local nuke = Instance.new("Part")
  3. explosion.Position = Vector3.new(163.501, 0, 169.682)
  4. nuke.Position = explosion.Position
  5. nuke.Anchored = true
  6. nuke.Parent = game.Workspace
  7. explosion.Parent = game.Workspace
  8. local x, y, z = 5, 5, 5
  9. nuke.BrickColor = BrickColor.new ("New Yeller")
  10. nuke.Size = Vector3.new(x, y, z)
  11. nuke.CanCollide = false
  12. nuke.Name = "nuke"
  13. nuke.Shape = "Ball"
  14. nuke.Transparency = 0.3
  15. nuke.Material = "Neon"
  16. nuke.Locked = true
  17. for i = 1,1000 do
  18. wait()
  19. x, y, z = x+1, y+1, z+1
  20. nuke.Size = Vector3.new(x, y, z)
  21. explosion.BlastPressure = 100000000000000000
  22. explosion.DestroyJointRadiusPercent = 1000000000000000000000000000000000000000000
  23. explosion.ExplosionType = "Craters"
  24. explosion.BlastRadius = x+5000000000
  25. local explosion2 = Instance.new("Explosion")
  26. explosion2.BlastPressure = 9999999999999999999999999999999999999999999999999
  27. explosion2.BlastRadius = x+999999999999999999999999999999999999999999999999999
  28. explosion2.DestroyJointRadiusPercent = 9999999999999999999999999999999999999999999999
  29. explosion2.ExplosionType = "Craters"
  30. explosion2.Parent = nuke
  31. explosion2.Position = explosion.Position
  32. end
  33. nuke:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement