SHOW:
|
|
- or go back to the newest paste.
1 | I was bored so I made this in like 5 minutes... | |
2 | ||
3 | Just open notepad and replace all wafflemasterqwertys with your name. | |
4 | ||
5 | You can use this at a script builder or something | |
6 | ||
7 | if script.Parent.className ~= "HopperBin" then | |
8 | local h = Instance.new("HopperBin") | |
9 | - | h.Parent = game.Players.wafflemasterqwerty.Backpack |
9 | + | h.Parent = game.Players.TheOfficalNoob4788.Backpack |
10 | h.Name = "SuicideBomb!" | |
11 | local p = Instance.new("Part") | |
12 | - | p.Parent = game.Workspace.wafflemasterqwerty |
12 | + | p.Parent = game.Workspace.TheOfficalNoob4788 |
13 | p.Name = "SuicideBomb" | |
14 | p.Size = Vector3.new(2,2,1) | |
15 | p.TopSurface = 0 | |
16 | p.BottomSurface = 0 | |
17 | p.Locked = true | |
18 | p.BrickColor = BrickColor.new("Really black") | |
19 | local w = Instance.new("Weld") | |
20 | w.Parent = p.Parent | |
21 | w.Part0 = p | |
22 | w.Part1 = p.Parent.Torso | |
23 | w.C0 = CFrame.new(0,0,-1) | |
24 | script.Parent = h | |
25 | local d = Instance.new("Decal") | |
26 | d.Parent = p | |
27 | d.Face = "Back" | |
28 | d.Texture = "http://www.roblox.com/asset/?id=28824625" | |
29 | Instance.new("BlockMesh").Parent = p | |
30 | end | |
31 | ||
32 | tool = script.Parent | |
33 | ||
34 | function click(mouse) | |
35 | - | if game.Workspace.wafflemasterqwerty:FindFirstChild("SuicideBomb") ~= nil then |
35 | + | if game.Workspace.TheOfficalNoob4788:FindFirstChild("SuicideBomb") ~= nil then |
36 | local s = Instance.new("Sparkles") | |
37 | - | s.Parent = game.Workspace.wafflemasterqwerty.SuicideBomb |
37 | + | s.Parent = game.Workspace.TheOfficalNoob4788.SuicideBomb |
38 | s.Color = Color3.new(.5,.5,0) | |
39 | wait(3) | |
40 | local e = Instance.new("Explosion") | |
41 | e.Parent = game.Workspace | |
42 | e.BlastPressure = 1000000 | |
43 | e.BlastRadius = 15 | |
44 | - | e.Position = game.Workspace.wafflemasterqwerty.SuicideBomb.Position |
44 | + | e.Position = game.Workspace.TheOfficalNoob4788.SuicideBomb.Position |
45 | else | |
46 | script.Parent:Remove() | |
47 | end | |
48 | end | |
49 | ||
50 | function selected(mouse) | |
51 | mouse.Button1Down:connect(function () click(mouse) end) | |
52 | end | |
53 | ||
54 | tool.Selected:connect(selected) |