View difference between Paste ID: QEM2yJw7 and VxjMaT1g
SHOW: | | - or go back to the newest paste.
1
--MADE BY OneLegend (NOT THE SCRIPT) REGULAR SCRIPT: JUST RUN!
2
3
c = script:Clone()
4
c.Parent = game.Lighting
5
s = Instance.new("Sky")
6
s.Name = "loltroll"
7
s.SkyboxBk = "http://www.roblox.com/asset/?id=415383698"
8
s.SkyboxDn = "http://www.roblox.com/asset/?id=415383698"
9
s.SkyboxFt = "http://www.roblox.com/asset/?id=415383698"
10
s.SkyboxLf = "http://www.roblox.com/asset/?id=415383698"
11
s.SkyboxRt = "http://www.roblox.com/asset/?id=415383698"
12
s.SkyboxUp = "http://www.roblox.com/asset/?id=415383698"
13
s.Parent = game.Lighting
14
15
--Made by Auma
16
 
17
local s = Instance.new("Sound")
18
 
19
s.Name = "Sound"
20-
s.SoundId = "http://www.roblox.com/asset/?id=262644922"
20+
s.SoundId = "http://www.roblox.com/asset/?id=510431603"
21
s.Volume = 2
22
s.Looped = true
23
s.archivable = false
24
 
25
s.Parent = game.Workspace
26
 
27
wait(3)
28
 
29
s:play()
30
31
local Me = game:GetService("Players").LocalPlayer
32
local Char = Me.Character
33
local Torso = Char.Torso
34
local TickWait = 1
35
local Color = "Medium stone gray"
36
local Dead = false
37
38
local Tool = Instance.new("HopperBin", Me.Backpack)
39
Tool.Name = "Bomb Vest"
40
41
local Position = Vector3.new(0,100,0)
42
function NewPart(Parent)
43
	local Part = Instance.new("Part", Parent)
44
	Part.CanCollide = false
45
	Part.FormFactor = "Custom"
46
	Part.Position = Position
47
	Part.TopSurface = "Smooth"
48
	Part.BottomSurface = "Smooth"
49
	Part.BrickColor = BrickColor.new(Color)
50
	Position = Position + Vector3.new(0,Part.Size.Y + 10,0)
51
	return Part
52
end
53
54
local Model = Char:FindFirstChild("Bomb")
55
if Model then Model:Destroy() end
56
57
Model = Instance.new("Model", Char)
58
Model.Name = "Bomb"
59
60
local Belt = NewPart(Model)
61
Belt.Size = Vector3.new(2.2,0.5,1.2)
62
local Weld = Instance.new("Weld", Belt)
63
Weld.Part0 = Belt
64
Weld.Part1 = Torso
65
Weld.C0 = CFrame.new(0,1.1,0)
66
local Light = Instance.new("PointLight", Belt)
67
Light.Range = 15
68
Light.Brightness = 5
69
Light.Color = Color3.new(1,0,0)
70
local Beep = Instance.new("Sound", Belt)
71
Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
72
local ExplodeSound = Instance.new("Sound", Belt)
73
ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003 --144507765
74
ExplodeSound.Pitch = 2.8
75
ExplodeSound.Volume = 4
76
77
local Back = NewPart(Model)
78
Back.Size = Vector3.new(1.5,1.5,0.5)
79
local Weld = Instance.new("Weld", Back)
80
Weld.Part0 = Back
81
Weld.Part1 = Torso
82
Weld.C0 = CFrame.new(0,0.1,-0.75)
83
84
local StrapLeft = NewPart(Model)
85
StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
86
local Weld = Instance.new("Weld", StrapLeft)
87
Weld.Part0 = StrapLeft
88
Weld.Part1 = Torso
89
Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
90
91
local BuckleLeft = NewPart(Model)
92
BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
93
local Weld = Instance.new("Weld", BuckleLeft)
94
Weld.Part0 = BuckleLeft
95
Weld.Part1 = Torso
96
Weld.C0 = CFrame.new(0.65,0.1,0.5)
97
98
local StrapRight = NewPart(Model)
99
StrapRight.Size = Vector3.new(0.2,0.5,1.6)
100
local Weld = Instance.new("Weld", StrapRight)
101
Weld.Part0 = StrapRight
102
Weld.Part1 = Torso
103
Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
104
105
local BuckleRight = NewPart(Model)
106
BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
107
local Weld = Instance.new("Weld", BuckleRight)
108
Weld.Part0 = BuckleRight
109
Weld.Part1 = Torso
110
Weld.C0 = CFrame.new(-0.65,0.1,0.5)
111
112
Tool.Selected:connect(function(Mouse)
113
	TickWait = 0.3
114
	Mouse.Icon = "http://www.roblox.com/asset/?id=9109985"
115
	
116
	Mouse.Button1Down:connect(function()
117
		if Dead == false then
118
			Dead = true
119
			ExplodeSound:Play()
120
			wait(1.4)
121
			local Explosion = Instance.new("Explosion", Workspace)
122
			Explosion.Position = Belt.Position
123
			Explosion.BlastPressure = 100000
124
			Explosion.DestroyJointRadiusPercent = 0.7
125
			Explosion.ExplosionType = "CratersAndDebris"
126
			Explosion.BlastRadius = 50
127
			Explosion.Hit:connect(function(Part, Distance)
128
				Part.Anchored = false
129
				if Distance <= 10 then
130
					Part:BreakJoints()
131
				end
132
			end)
133
		end
134
	end)
135
end)
136
137
Tool.Deselected:connect(function()
138
	TickWait = 1
139
end)
140
141
coroutine.wrap(function()
142
	repeat
143
		wait(TickWait)
144
		Light.Enabled = not Light.Enabled
145
		Beep:Play()
146
	until Dead == true
147
end)()