Advertisement
Guest User

[ROBLOX] Shutdown Bomb Script

a guest
Feb 8th, 2020
3,652
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. function Bomb()
  3.     k = game.Players:GetChildren()
  4.     b = Instance.new("Part")
  5.     e = Instance.new("Explosion")
  6.     b.Parent = game.Workspace
  7.     b.Anchored = True
  8.     b.Size = Vector3.new(10, 10, 10) --Change the 10, 10, 10 to what size you want the bomb to be.
  9.     b.Position = Vector3.new(0, 1, 0) --Change the 0, 1, 0 to what you want the position of the bomb to be.
  10.     b.BrickColor = BrickColor.new("Really black") --Change the 'Really black' to what color you want the bomb to be.
  11.     b.Shape = ("Ball")
  12.     b.BackSurface = ("Smooth")
  13.     b.BottomSurface = ("Smooth")
  14.     b.FrontSurface = ("Smooth")
  15.     b.LeftSurface = ("Smooth")
  16.     b.RightSurface = ("Smooth")
  17.     b.TopSurface = ("Smooth")
  18. for i = 1, 12 do --Change the 12 to how many times you want the bomb to blink before it explodes.
  19.     b.Reflectance = 0
  20.     wait(.25) --Change the .25 to how long you want the bomb to be reflective.
  21.     b.Reflectance = 1
  22.     wait(.25) --Change the .25 to how long you want the bomb to be normal.
  23. end
  24.     b:Remove()
  25.     e.Parent = game.Workspace
  26.     e.BlastPressure = 9.999e+9999
  27.     e.BlastRadius = 9.999e+9999
  28.     e.Position = b.Position
  29.     wait(3)
  30.  
  31. end
  32.  
  33. Bomb()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement