Advertisement
mr2meows

bomb

Mar 15th, 2023 (edited)
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. local toal = Instance.new("Tool",owner.Backpack)
  2. local collide = Instance.new("Sound",script)
  3. local splat = Instance.new("Sound",script)
  4. local switch = Instance.new("Sound",script)
  5. switch.SoundId = "rbxassetid://12222170"
  6. splat.SoundId = "rbxassetid://12222152"
  7. collide.SoundId = "rbxassetid://12221984"
  8. toal.RequiresHandle = true
  9. toal.Name = "Bomb"
  10. local handle = Instance.new("Part",toal)
  11. handle.Shape = "Ball"
  12. handle.Size = Vector3.new(2,2,2)
  13. handle.BrickColor = BrickColor.new("Black")
  14. handle.Anchored = false
  15. handle.CanCollide = false
  16. handle.Name = "Handle"
  17. function stupid()
  18. if toal.Enabled == true then
  19. toal.Enabled = false
  20. splat:Play()
  21. local bomb = Instance.new("Part",workspace)
  22. bomb.Position = handle.Position
  23. bomb.Shape = "Ball"
  24. bomb.Size = Vector3.new(2,2,2)
  25. bomb.BrickColor = BrickColor.new("Black")
  26. bomb.Anchored = false
  27. bomb.CanCollide = true
  28. for i = 0, 2, .25 do
  29. bomb.BrickColor = BrickColor.new("Bright orange")
  30. wait(.1)
  31. bomb.BrickColor = BrickColor.new("Black")
  32. wait(.1)
  33. switch:Play()
  34. end
  35. collide:Play()
  36. Instance.new("Explosion",workspace).Position = bomb.Position
  37. bomb:Destroy()
  38. wait(2)
  39. toal.Enabled = true
  40. end
  41. end
  42. toal.Activated:Connect(stupid)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement