Advertisement
gotem9999

Untitled

Sep 29th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1.  
  2.  
  3. ROBLOX Forum » ROBLOX Fun » Look What I Made
  4.  
  5. Home Search MyForums
  6.  
  7.  Terrorist Suit/Suicide Bomber Suit.Track ThreadSort:   Oldest to newest  Newest to oldest  Previous Thread :: Next Thread  wafflemasterqwerty
  8. Joined: 08 Apr 2010Total Posts: 4806-14-2010 10:12 PMI was bored so I made this in like 5 minutes...
  9.  
  10. Just open notepad and replace all wafflemasterqwertys with your name.
  11.  
  12. You can use this at a script builder or something
  13.  
  14. if script.Parent.className ~= "HopperBin" then
  15. local h = Instance.new("HopperBin")
  16. h.Parent = game.Players.wafflemasterqwerty.Backpack
  17. h.Name = "SuicideBomb!"
  18. local p = Instance.new("Part")
  19. p.Parent = game.Workspace.ruthassjr
  20. p.Name = "SuicideBomb"
  21. p.Size = Vector3.new(2,2,1)
  22. p.TopSurface = 0
  23. p.BottomSurface = 0
  24. p.Locked = true
  25. p.BrickColor = BrickColor.new("Really black")
  26. local w = Instance.new("Weld")
  27. w.Parent = p.Parent
  28. w.Part0 = p
  29. w.Part1 = p.Parent.Torso
  30. w.C0 = CFrame.new(0,0,-1)
  31. script.Parent = h
  32. local d = Instance.new("Decal")
  33. d.Parent = p
  34. d.Face = "Back"
  35. d.Texture = "http://www.roblox.com/asset/?id=28824625"
  36. Instance.new("BlockMesh").Parent = p
  37. end
  38.  
  39. tool = script.Parent
  40.  
  41. function click(mouse)
  42. if game.Workspace.ruthassjr:FindFirstChild("SuicideBomb") ~= nil then
  43. local s = Instance.new("Sparkles")
  44. s.Parent = game.Workspace.ruthassjr.SuicideBomb
  45. s.Color = Color3.new(.5,.5,0)
  46. wait(3)
  47. local e = Instance.new("Explosion")
  48. e.Parent = game.Workspace
  49. e.BlastPressure = 1000000
  50. e.BlastRadius = 15
  51. e.Position = game.Workspace.ruthassjr.SuicideBomb.Position
  52. else
  53. script.Parent:Remove()
  54. end
  55. end
  56.  
  57. function selected(mouse)
  58. mouse.Button1Down:connect(function () click(mouse) end)
  59. end
  60.  
  61. tool.Selected:connect(selected)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement