Advertisement
Guest User

Become a bomb

a guest
Jul 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. local yourname = "yournamehere"
  2. local billboard = Instance.new("BillboardGui")
  3. billboard.Parent = game.Workspace[yourname].Head
  4. billboard.Adornee= game.Workspace[yourname].Head
  5. local text = Instance.new("Textbox")
  6. text.Text = "Ima bomb!"
  7. text.Parent = billBoard
  8. game.Workspace[yourname].HumanoidRootPart.Touched:Connect(function(hit)
  9. if not hit:IsDescendantOf(game.Workspace[yourname]) then
  10. boom = Instance.new("Explosion")
  11. boom.Position = game.Workspace[yourname].Head.Position
  12. boom.BlastRadius = 999999999
  13. boom.BlastPressure = 9999999999
  14. boom.Parent = game.Workspace[yourname].Head
  15. end
  16. end))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement