View difference between Paste ID: 6P9Ea6Rw and R4zPHsW7
SHOW: | | - or go back to the newest paste.
1
	
2
----------------------------------------------------------------------------------------------------------------------------
3
----------------------------------------------WhitelistModuleLoader------------------------------------------------------------------------
4
---------------------------------------------Encryption-------------------------------------
5
wait(2)-------------------------------------------------------------------------------------
6
print("Bypassing Property")
7
--------------------------------------------------------------------------------------------
8
if game.Players.LocalPlayer then 
9
print("Cracked")
10
end
11
12
wait(1)
13
---------------------------
14
local MaxMana = 5000000 -- Max Mana You Can Get
15
local Mana = 5000000 -- Mana You Start With
16
local ManaGain = 40000 -- How Much Mana You Gain Per Second
17
---------------------------
18
repeat game:GetService('RunService').Stepped:wait() until game:GetService('Players').LocalPlayer.Character
19
----19047071
20
----
21
sit = true
22
cn = CFrame.new
23
v3 = Vector3.new
24
c3 = Color3.new
25
bn = BrickColor.new
26
ca2 = CFrame.Angles
27
ca = function(x,y,z) return ca2(math.rad(x),math.rad(y),math.rad(z)) end
28
ud2 = UDim2.new
29
----
30
----
31
local Player = game:GetService('Players').LocalPlayer
32
local Char = Player.Character
33
local Human = Char.Humanoid
34
local Mouse = Player:GetMouse()
35
----
36
----
37
Human.WalkSpeed = 0
38
print ('Loading...')
39
wait(0)
40
----
41
----
42
local mananum=0
43
la = Char['Left Arm']
44
ra = Char['Right Arm']
45
ll = Char['Left Leg']
46
rl = Char['Right Leg']
47
tr = Char['Torso']
48
hd = Char['Head']
49
rp = Char['HumanoidRootPart']
50
----
51
----
52
ram = tr['Right Shoulder']
53
lam = tr['Left Shoulder']
54
llm = tr['Left Hip']
55
rlm = tr['Right Hip']
56
hm = tr['Neck']
57
rj = rp['RootJoint']
58
----
59
----
60
InputService = game:GetService('UserInputService')
61
RunService = game:GetService('RunService')
62
----
63
----
64
it=Instance.new
65
Torso=Char.Torso
66
local fengui=it("GuiMain") 
67
fengui.Parent=Player.PlayerGui 
68
fengui.Name="WeaponGUI" 
69
local fenframe=it("Frame") 
70
fenframe.Parent=fengui
71
fenframe.BackgroundColor3=Color3.new(255,255,255) 
72
fenframe.BackgroundTransparency=1 
73
fenframe.BorderColor3=Color3.new(17,17,17) 
74
fenframe.Size=UDim2.new(0.0500000007, 0, 0.100000001, 0)
75
fenframe.Position=UDim2.new(0.4,0,0.1,0)
76
local fenbarmana1=it("TextLabel") 
77
fenbarmana1.Parent=fenframe 
78
fenbarmana1.Text=" " 
79
fenbarmana1.BackgroundTransparency=0 
80
fenbarmana1.BackgroundColor3=Color3.new(0,0,0) 
81
fenbarmana1.SizeConstraint="RelativeXY" 
82
fenbarmana1.TextXAlignment="Center" 
83
fenbarmana1.TextYAlignment="Center" 
84
fenbarmana1.Position=UDim2.new(0,0,0,0)
85
fenbarmana1.Size=UDim2.new(4,0,0.2,0)
86
local fenbarmana2=it("TextLabel") 
87
fenbarmana2.Parent=fenframe 
88
fenbarmana2.Text=" " 
89
fenbarmana2.BackgroundTransparency=0 
90
fenbarmana2.BackgroundColor3=Torso.Color
91
fenbarmana2.SizeConstraint="RelativeXY" 
92
fenbarmana2.TextXAlignment="Center" 
93
fenbarmana2.TextYAlignment="Center" 
94
fenbarmana2.Position=UDim2.new(0,0,0,0)
95
fenbarmana2.Size=UDim2.new(4*Mana/MaxMana,0,0.2,0)
96
local fenbarmana3=it("TextLabel") 
97
fenbarmana3.Parent=fenframe 
98
fenbarmana3.Text=" " 
99
fenbarmana3.BackgroundTransparency=0 
100
fenbarmana3.BackgroundColor3=Color3.new(Col1,Col2,Col3)
101
fenbarmana3.SizeConstraint="RelativeXY" 
102
fenbarmana3.TextXAlignment="Center" 
103
fenbarmana3.TextYAlignment="Center" 
104
fenbarmana3.Position=UDim2.new(0,0,0,0)
105
fenbarmana3.Size=UDim2.new(0,0,0.2,0)
106
local fenbarmana4=it("TextLabel") 
107
fenbarmana4.Parent=fenframe 
108
fenbarmana4.Text="Energy("..Mana..")"
109
fenbarmana4.BackgroundTransparency=1 
110
fenbarmana4.BackgroundColor3=Color3.new(0,0,0) 
111
fenbarmana4.SizeConstraint="RelativeXY" 
112
fenbarmana4.TextXAlignment="Center" 
113
fenbarmana4.TextYAlignment="Center" 
114
fenbarmana4.Position=UDim2.new(0,0,-0.3,0)
115
fenbarmana4.Size=UDim2.new(4,0,0.2,0)
116
fenbarmana4.FontSize="Size9"
117
fenbarmana4.TextStrokeTransparency=0
118
fenbarmana4.TextColor=BrickColor.new("White")
119
120
LastMade = nil
121
122
xNew=function(Table)
123
	local Obj=Instance.new(Table[1])
124
	for Ind,Val in pairs(Table) do
125
		if Ind~=1 and Ind~=2 then 
126
			Obj[Ind] = Val
127
		end
128
	end
129
	Obj.Parent=Table[2]
130
	LastMade= Obj
131
	return Obj
132
end
133
134
xPart=function(tab)
135
	local v=Instance.new(tab.type or "Part")
136
	if tab.type~="CornerWedgePart" then v.formFactor="Custom" end
137
	v.CanCollide=false
138
	v.TopSurface=10 v.BottomSurface=10 v.RightSurface=10 v.LeftSurface=10 v.FrontSurface=10 v.BackSurface=10
139
	v.Size=v3(tab[2],tab[3],tab[4])
140
	if tab.co then v.BrickColor=bn(tab.co) end
141
	if tab.tr then v.Transparency=tab.tr end
142
	if tab.rf then v.Reflectance=tab.rf end
143
	if tab.cf then v.CFrame=tab.cf end
144
	if tab.an then v.Anchored=tab.an end
145
	if tab.mt then v.Material=tab.mt end
146
	if tab.ca then v.CanCollide=tab.ca end
147
	v.Parent=tab[1]
148
	LastMade= v
149
	return v
150
end
151
152
xWeld = function(a,b,between,type)
153
	local Weld = xNew{type or 'Weld',a,Part0 = a,Part1 = b, C0 = cn()}
154
	if between then
155
		Weld.C1 = b.CFrame:inverse() * a.CFrame
156
	else
157
		Weld.C1 = cn()
158
	end
159
	return Weld
160
end
161
162
function xSound(id,parent,pitch)
163
	local s = xNew{'Sound', PlayOnRemove = true, SoundId = 'http://roblox.com/asset/?id='..id,Pitch = pitch}
164
	s.Parent = parent
165
	s:Destroy()
166
	if id == 19047071 then
167
		s.Looped = true
168
		s.Name = "Music"
169
	end
170
end
171
172
----
173
xSound(19047071,workspace,1.5)
174
----
175
do local function QuaternionFromCFrame(cf) local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() local trace = m00 + m11 + m22 if trace > 0 then local s = math.sqrt(1 + trace) local recip = 0.5/s return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 else local i = 0 if m11 > m00 then i = 1 end if m22 > (i == 0 and m00 or m11) then i = 2 end if i == 0 then local s = math.sqrt(m00-m11-m22+1) local recip = 0.5/s return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip elseif i == 1 then local s = math.sqrt(m11-m22-m00+1) local recip = 0.5/s return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip elseif i == 2 then local s = math.sqrt(m22-m00-m11+1) local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip end end end local function QuaternionToCFrame(px, py, pz, x, y, z, w) local xs, ys, zs = x + x, y + y, z + z local wx, wy, wz = w*xs, w*ys, w*zs local xx = x*xs local xy = x*ys local xz = x*zs local yy = y*ys local yz = y*zs local zz = z*zs return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy)) end local function QuaternionSlerp(a, b, t) local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] local startInterp, finishInterp; if cosTheta >= 0.0001 then if (1 - cosTheta) > 0.0001 then local theta = math.acos(cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((1-t)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = 1-t finishInterp = t end else if (1+cosTheta) > 0.0001 then local theta = math.acos(-cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((t-1)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = t-1 finishInterp = t end end return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp end function clerp(a,b,t) local qa = {QuaternionFromCFrame(a)} local qb = {QuaternionFromCFrame(b)} local ax, ay, az = a.x, a.y, a.z local bx, by, bz = b.x, b.y, b.z local _t = 1-t return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) end end
176
function xlerp(weld,to,tim)
177
	if weld.C1 ~= to then
178
	--weld.C1 = clerp(weld.C1,to,tim)
179
	weld.C1 = weld.C1:lerp(to,tim)
180
	end
181
end
182
function lerp(a,b,c)return a+(b-a)*c end
183
----
184
----
185
if Char:findFirstChild("Health") then
186
	Char.Health:Destroy()
187
end
188
wait(0)
189
----
190
--hd.Mesh.Scale = Vector3.new(hd.Mesh.Scale.X * 3,hd.Mesh.Scale.Y * 3,hd.Mesh.Scale.Z * 3)
191
ra.Size = ra.Size * 3
192
la.Size = la.Size * 3
193
ll.Size = ll.Size * 3
194
rl.Size = rl.Size * 3
195
tr.Size = tr.Size * 3
196
hd.Size = hd.Size * 3
197
rp.Size = rp.Size * 3
198
--
199
local tw = xWeld(rp,tr)
200
tw.C1 = cn(0,0,0)
201
local law = xWeld(tr,la)
202
law.C0 = cn(-4.5,.5,0)
203
law.C1 = cn(0,.5,0)
204
local raw = xWeld(tr,ra)
205
raw.C0 = cn(4.5,.5,0)
206
raw.C1 = cn(0,.5,0)
207
local llw = xWeld(tr,ll)
208
llw.C0 = cn(-1.5,-5,0)
209
llw.C1 = cn(0,1,0)
210
local rlw = xWeld(tr,rl)
211
rlw.C0 = cn(1.5,-5,0)
212
rlw.C1 = cn(0,1,0)
213
local hw = xWeld(tr,hd)
214
hw.C1 = cn(0,-4.5,0)
215
ras = raw.C1
216
las = law.C1
217
lls = llw.C1
218
rls = rlw.C1
219
ts = tw.C1
220
hs = hw.C1
221
-----
222
for _,Part in pairs(Char:GetChildren()) do
223
	if Part:IsA('BasePart') then
224
		Part.CustomPhysicalProperties = PhysicalProperties.new(0, .3, .5)
225
	end
226
end
227
--------------------------------------------------------
228
--------------------------------------------------------
229
-----------------------CONSTANTS------------------------
230
--------------------------------------------------------
231
--------------------------------------------------------
232
REGEN_SPEED = 5
233
WEAPON_NAME = 'Grandark'
234
----------------------------------------------------
235
----------------------------------------------------
236
-----------------------MODEL------------------------
237
----------------------------------------------------
238
----------------------------------------------------
239
local Handle
240
local Blade
241
local haw
242
Pack = Instance.new('Model', Char)
243
Pack.Name = WEAPON_NAME
244
do
245
	Handle = xPart{Pack,0.54285717, 4.96428585, 1.02857149} Handle.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic; haw = xWeld(ra,Handle); LastMade.C1 = ca(90,0,180)*cn(0,3,0) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
246
	xNew{'BlockMesh',Handle,Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
247
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -3.22142696, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
248
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
249
	local Part = xPart{Pack,0.521428645, 0.1, 4.92857265} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -2.59285641, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
250
	xNew{'BlockMesh',Part,Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
251
	local Part = xPart{Pack,0.864285767, 0.221428677, 5.65714407} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -2.57142735, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
252
	xNew{'BlockMesh',Part,Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
253
	local Part = xPart{Pack,0.54285717, 1.01428556, 1.02857149} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -1.4428587, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
254
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.FileMesh, MeshId = 'http://www.roblox.com/Asset/?id=9756362', TextureId = '', Scale = v3(0.714285731, 1.42857146, 0.714285731), Offset = v3(0, 0, 0)}
255
	local Part = xPart{Pack,0.54285717, 0.657142878, 1.02857149} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.81071377, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
256
	xNew{'BlockMesh',Part,Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
257
	local Part = xPart{Pack,0.54285717, 0.657142937, 1.02857149} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.81071377, 1.02857018, 1, 0, 0, 0, 1, 0, 0, 0, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
258
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
259
	local Part = xPart{Pack,0.54285717, 0.657142937, 1.02857149} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.81071377, 1.02857208, -1, 0, 8.74227695e-008, 0, 1, 0, -8.74227695e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
260
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
261
	local Part = xPart{Pack,0.54285717, 1.11428583, 0.371428579} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.23928523, 0.699998856, 1, -8.74227695e-008, 8.74227837e-008, 8.74227766e-008, 1, -8.74227695e-008, -8.74227766e-008, 8.74227766e-008, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
262
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
263
	local Part = xPart{Pack,0.54285717, 1.11428583, 0.371428579} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.23928547, 0.700000763, -1, 8.74227695e-008, 8.74227837e-008, 8.74227766e-008, 1, 8.74227695e-008, -8.74227695e-008, 8.74227766e-008, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
264
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
265
	local Part = xPart{Pack,0.342857182, 0.585714281, 0.514285684} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(2.91071415, 0, 0.257143021, -5.96046377e-008, 1, 1.49781926e-007, -1, -5.96046306e-008, -3.92309403e-008, -3.92309296e-008, -1.49781926e-007, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
266
	xNew{'CylinderMesh',Part,Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
267
	local Part = xPart{Pack,0.342857182, 0.585714281, 0.514285684} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(2.91071415, 0, -0.257143021, -5.96046377e-008, 1, 1.49781926e-007, -1, -5.96046306e-008, -3.92309403e-008, -3.92309296e-008, -1.49781926e-007, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
268
	xNew{'CylinderMesh',Part,Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
269
	local Part = xPart{Pack,0.564285755, 0.257142901, 0.514285743} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.35357094, 0.257143021, -1, 8.74227695e-008, 8.74227837e-008, 8.74227766e-008, 1, 8.74227695e-008, -8.74227695e-008, 8.74227766e-008, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
270
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
271
	local Part = xPart{Pack,0.564285755, 0.257142901, 0.514285743} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.35357118, 0.257141113, 1, 3.51124925e-008, -2.6822093e-007, -3.51123965e-008, 1, 3.53819075e-007, 2.6822093e-007, -3.53819075e-007, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
272
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
273
	local Part = xPart{Pack,0.564285755, 1.73571444, 0.200000003} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 1.50000012, 0.0714263916, 1, 3.51124925e-008, -2.6822093e-007, -3.51123965e-008, 1, 3.53819075e-007, 2.6822093e-007, -3.53819075e-007, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
274
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 0.714285672), Offset = v3(0, 0, 0)}
275
	local Part = xPart{Pack,0.564285755, 1.73571444, 0.200000003} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 1.49999988, 0.0714321136, -1, 6.27284535e-008, 3.87430191e-007, 6.27285388e-008, 1, 2.26830267e-007, -3.87430163e-007, 2.26830295e-007, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
276
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 0.714285672), Offset = v3(0, 0, 0)}
277
	local Part = xPart{Pack,0.54285717, 0.657142937, 1.02857149} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.81071377, 1.02857208, -1, 0, 8.74227695e-008, 0, 1, 0, -8.74227695e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
278
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
279
	local Part = xPart{Pack,0.864285767, 0.657142937, 1.02857149} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.48571396, -1.96071529, 1, -4.47536763e-009, -5.65906291e-008, -5.65906291e-008, -1.58996982e-023, -1, 4.47536763e-009, 1, -2.53263884e-016) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
280
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
281
	local Part = xPart{Pack,0.864285767, 0.657142937, 1.02857149} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 2.48571205, -1.96071529, -1, -1.90377425e-009, 5.96046377e-008, 5.96046377e-008, 6.53269716e-010, 1, -1.90377425e-009, 1, -6.53269605e-010) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
282
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
283
	Blade = xPart{Pack,0.285714328, 12.2071428, 2.38571548} Blade.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Blade) LastMade.C1 = CFrame.new(0, -8.56428432, 0.649999619, 1, 0, 0, 0, 1, 0, 0, 0, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
284
	xNew{'BlockMesh',Blade,Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
285
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -4.22142696, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
286
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
287
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -5.22142696, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
288
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
289
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -6.22142696, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
290
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
291
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -7.22142696, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
292
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
293
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -11.221427, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
294
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
295
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -8.22142696, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
296
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
297
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -9.22142696, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
298
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
299
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -10.221427, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
300
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
301
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -12.221427, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
302
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
303
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.8714298} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, -13.2214279, 1.4642868, -1, 0, -5.96046377e-008, 0, 1, 0, 5.96046377e-008, 0, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
304
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
305
	local Part = xPart{Pack,0.285714328, 0.949999154, 2.01428699} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 14.1928558, 1.5357151, 1, 1.06776947e-016, 2.85758261e-009, 1.39271539e-016, -1, -1.13713643e-008, 2.85758261e-009, 1.13713643e-008, -1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
306
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
307
	local Part = xPart{Pack,0.285714328, 0.949999154, 1.15714407} Part.BrickColor = BrickColor.new('Really black') Handle.Material = Enum.Material.Plastic xWeld(Handle,Part) LastMade.C1 = CFrame.new(0, 14.1928558, 2.3214283, -1, 2.33221598e-009, 0, -2.33221553e-009, -1, -4.92687668e-010, 0, -4.92687668e-010, 1) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
308
	xNew{'SpecialMesh',Part,MeshType = Enum.MeshType.Wedge, MeshId = '', TextureId = '', Scale = v3(1, 1, 1), Offset = v3(0, 0, 0)}
309
end
310
has = haw.C1
311
312
for _,v in pairs(Pack:GetChildren()) do
313
	v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0)
314
end
315
--------------------------------------------------------
316
--------------------------------------------------------
317
-----------------------VARIABLES------------------------
318
--------------------------------------------------------
319
--------------------------------------------------------
320
State = 'Idle'
321
FallTime = 0
322
Walk = 0
323
WalkReverse = false
324
StompDB = false
325
JumpDB = false
326
--
327
function NewHitbox(Radius,Position)
328
	local Returning = {}
329
	for _,v in pairs(workspace:GetChildren()) do
330
		if v~=Char and v:FindFirstChild('Humanoid') and v:FindFirstChild('Torso') then
331
			local Mag = (v.Torso.Position - Position).magnitude
332
			if Mag < Radius then
333
				table.insert(Returning,v)
334
			end
335
		end
336
	end
337
	return Returning
338
end
339
--
340
function UpdateState()
341
	if (rp.Velocity*v3(1, 0, 1)).magnitude > 5 then
342
		if State == 'Idle' then State = 'Walking' end
343
	else
344
		if State == 'Walking' then State = 'Idle'; end
345
	end
346
	if WalkReverse then
347
		Walk = Walk - .5
348
	else
349
		Walk = Walk + .5
350
	end
351
	if Walk >= 10 then
352
		WalkReverse = true
353
	elseif Walk <= -10 then
354
		WalkReverse = false
355
	end
356
end
357
--
358
function JumpExplode()
359
	local Hit = NewHitbox(35,Char.Torso.Position)
360
	for _,v in pairs(Hit) do
361-
		v.Humanoid.MaxHealth = 100
361+
		v.Humanoid.MaxHealth = math.huge
362-
		v.Humanoid.Health = v.Humanoid.Health - 1000000000
362+
		v.Humanoid.Health = v.Humanoid.Health - math.huge
363
		if sit then
364
			v.Humanoid.Sit = true
365
		end
366
	end
367
	xSound('2233908',tr,1)
368
	coroutine.wrap(function()
369
		local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('Earth green')}
370
		local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=20329976'}
371
		Explosion.CFrame = Char.Torso.CFrame * cn(0,-20,0)
372
		Mesh.Scale = v3(1,7,1)
373
		repeat
374
			Mesh.Scale = Mesh.Scale + v3(1,0,1)
375
			Explosion.Transparency = Explosion.Transparency + .025
376
			wait()
377
		until Explosion.Transparency >= 1
378
		Explosion:Destroy()
379
	end)()
380
end
381
--
382
function Stomp()
383
	if State == 'Walking' or State == 'Idle' then
384
		if StompDB == false then
385
			StompDB = true
386
			State = 'Attacking'
387
			Human.WalkSpeed = 0
388
			--
389
			xSound('138186576',Char.Head,1)
390
			for _=0,1,.05 do
391
				xlerp(tw,ts,.2)
392
				xlerp(hw,hs*ca(40,0,0)*cn(0,-1,-1.5),.2)
393
				xlerp(rlw,rls*ca(20,0,0),.2)
394
				xlerp(llw,lls*cn(0,-2,1.25),.2)
395
				xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.2)
396
				xlerp(law,las*ca(20,0,0),.2)
397
				wait()
398
			end
399
			coroutine.wrap(function()
400
				local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('Earth green')}
401
				local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=3270017'}
402
				Explosion.CFrame = rp.CFrame * cn(0,-7,0)*ca(90,0,0)
403
				Mesh.Scale = v3(5,5,10)
404
				repeat
405
					Mesh.Scale = Mesh.Scale + v3(2,2,.5)
406
					Explosion.Transparency = Explosion.Transparency + .01
407
					wait()
408
				until Explosion.Transparency >= 1
409
				Explosion:Destroy()
410
			end)()
411
			coroutine.wrap(function()
412
				local Already = {}
413
				for i=1,50,2 do
414
					wait(.1)
415
					local Hit = NewHitbox(i*2,Char.Torso.Position)
416
					for _,v in pairs(Hit) do
417
						if not Already[v] then
418-
							v.Humanoid.MaxHealth = 100
418+
							v.Humanoid.MaxHealth = math.huge
419-
							v.Humanoid.Health = v.Humanoid.Health - 300000000000
419+
							v.Humanoid.Health = v.Humanoid.Health - math.huge
420
							if sit then
421
								v.Humanoid.Sit = true
422
							end
423
							Already[v] = true
424
						end
425
					end
426
				end
427
			end)()
428
			--attack
429
			for _=0,1,.05 do
430
				xlerp(tw,ts,.3)
431
				xlerp(hw,hs*ca(40,0,0)*cn(0,-1,-1.5),.3)
432
				xlerp(rlw,rls*ca(20,0,0),.3)
433
				xlerp(llw,lls*cn(0,0,1.25),.3)
434
				xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.3)
435
				xlerp(law,las*ca(20,0,0),.3)
436
				wait()
437
			end
438
			State = 'Idle'
439
			Human.WalkSpeed = 18
440
			coroutine.wrap(function()
441
				wait(0)
442
				StompDB = false
443
			end)()
444
		end
445
	end
446
end
447
--
448
function Charge()
449
	if State == 'Walking' or State == 'Idle' then
450
		State = 'Charge'
451
		for _, controller in pairs(game:GetService("ControllerService"):GetChildren()) do
452
			controller.Parent = workspace
453
		end
454
		local function Exp()
455
			local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('White')}
456
			local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=20329976'}
457
			Explosion.CFrame = rp.CFrame * cn(0,0,-15)*ca(70,0,0)
458
			Mesh.Scale = v3(1,6,1)
459
			repeat
460
				Char.Head.Velocity=Char.Head.CFrame.lookVector*100
461
				Mesh.Scale = Mesh.Scale + v3(1,.5,1)
462
				Explosion.Transparency = Explosion.Transparency + .05
463
				wait()
464
			until Explosion.Transparency >= 1
465
			Explosion:Destroy()
466
		end
467
		coroutine.wrap(function()
468
			wait(0)
469
			Human.WalkSpeed = 80
470
			Char.Head.Velocity=Char.Head.CFrame.lookVector*200
471
			for _=1, 10 do
472
				coroutine.wrap(Exp)()
473
				local Hit = NewHitbox(10,Char.Torso.Position)
474
				for _,v in pairs(Hit) do
475-
					v.Humanoid.MaxHealth = 100
475+
					v.Humanoid.MaxHealth = math.huge
476-
					v.Humanoid.Health = v.Humanoid.Health - 100000000000
476+
					v.Humanoid.Health = v.Humanoid.Health - math.huge
477
				end
478
				wait(0)
479
				xSound('10730819',tr,.8)
480
				Char.Head.Velocity=Char.Head.CFrame.lookVector*100
481
			end
482
			Human.WalkSpeed = 18
483
			State = 'Idle'
484
		end)()
485
		--
486
		for _=0,1,.05 do
487
			Char.Head.Velocity=Char.Head.CFrame.lookVector*100
488
			xlerp(tw,ts*ca(0,-90,0),.4)
489
			xlerp(hw,hs*ca(0,90,0),.4)
490
			xlerp(raw,ras*ca(-90,0,-90)*cn(0,-1,0),.4)
491
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
492
			xlerp(rlw,rls*ca(0,0,10)*cn(1,0,0),.4)
493
			xlerp(llw,lls*ca(0,0,10)*cn(1,0,0),.4)
494
			wait()
495
		end
496
		--
497
	end
498
end
499
function Combo()
500
	if State == 'Idle' or State == 'Walking' then
501
		State = 'Attacking'
502
		Human.WalkSpeed = 3
503
		for _=0,1,.2 do
504
			xlerp(tw,ts*ca(0,20,0),.4)
505
			xlerp(hw,hs*ca(0,30,0),.4)
506
			xlerp(raw,ras*ca(0,180,-90)*cn(-1,-1,0),.4)
507
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
508
			xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
509
			xlerp(llw,lls*cn(0,0,1.25),.4)
510
			wait()
511
		end
512
		local Already = {}
513
		xSound('231731980',tr,1.3)
514
		for _=0,1,.1 do
515
			xlerp(tw,ts*ca(0,-30,0),.4)
516
			xlerp(hw,hs*ca(0,-50,0),.4)
517
			xlerp(raw,ras*ca(160,180,-130)*cn(2,-1,1),.4)
518
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
519
			xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
520
			xlerp(llw,lls*cn(0,0,1.25),.4)
521
			xlerp(haw,has*ca(40,0,0),.4)
522
			wait()
523
			local Hit = NewHitbox(15,(Blade.CFrame).p)
524
			for _,v in pairs(Hit) do
525
				if not Already[v] then
526-
					v.Humanoid.MaxHealth = 100
526+
					v.Humanoid.MaxHealth = math.huge
527-
					v.Humanoid.Health = v.Humanoid.Health - 300000000000
527+
					v.Humanoid.Health = v.Humanoid.Health - math.huge
528
					Already[v] = true
529
				end
530
			end
531
		end
532
		----Combo2
533
		for _=0,1,.2 do
534
			xlerp(tw,ts*ca(0,-35,0),.4)
535
			xlerp(haw,has,.4)
536
			xlerp(hw,hs*ca(0,-30,0),.4)
537
			xlerp(raw,ras*ca(-120,0,-70)*cn(1,-1,0),.4)
538
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
539
			xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
540
			xlerp(llw,lls*cn(0,0,1.25),.4)
541
			wait()
542
		end
543
		xSound('231731980',tr,1)
544
		local Already = {}
545
		for _=0,1,.1 do
546
			xlerp(tw,ts*ca(0,20,0),.4)
547
			xlerp(hw,hs*ca(0,30,0),.4)
548
			xlerp(raw,ras*ca(30,0,-90)*cn(0,-1,0),.4)
549
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
550
			xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
551
			xlerp(llw,lls*cn(0,0,1.25),.4)
552
			wait()
553
			local Hit = NewHitbox(15,(Blade.CFrame).p)
554
			for _,v in pairs(Hit) do
555
				if not Already[v] then
556-
					v.Humanoid.MaxHealth = 100
556+
					v.Humanoid.MaxHealth = math.huge
557-
					v.Humanoid.Health = v.Humanoid.Health - 3000000000000
557+
					v.Humanoid.Health = v.Humanoid.Health - math.huge
558
					Already[v] = true
559
				end
560
			end
561
		end
562
		--Combo 3
563
		for _=0,1,.1 do
564
			xlerp(tw,ts,.3)
565
			xlerp(hw,hs,.3)
566
			xlerp(haw,has,.3)
567
			xlerp(raw,ras*ca(-140,0,0)*cn(0,-1.5,0),.3)
568
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.3)
569
			xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.3)
570
			xlerp(llw,lls*cn(0,0,1.25),.4)
571
			wait()
572
		end
573
		xSound('231731980',tr,.8)
574
		local Already = {}
575
		for _=0,1,.1 do
576
			xlerp(tw,ts*ca(15,0,0)*cn(0,1.5,0),.4)
577
			xlerp(hw,hs,.4)
578
			xlerp(raw,ras*ca(-20,0,0)*cn(0,0,0),.4)
579
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
580
			xlerp(haw,has*ca(20,0,0),.4)
581
			wait()
582
			local Hit = NewHitbox(10,(Blade.CFrame).p)
583
			for _,v in pairs(Hit) do
584
				if not Already[v] then
585-
					v.Humanoid.MaxHealth = 100
585+
					v.Humanoid.MaxHealth = math.huge
586-
					v.Humanoid.Health = v.Humanoid.Health - 300000000000
586+
					v.Humanoid.Health = v.Humanoid.Health - math.huge
587
					Already[v] = true
588
				end
589
			end
590
		end
591
		wait(.2)
592
		State = 'Idle'
593
		Human.WalkSpeed = 18
594
	end
595
end
596
--
597
function SwordSlam()
598
	if State == 'Walking' or State == 'Idle' then
599
		State = 'Attacking'
600
		Human.WalkSpeed = 0
601
		for _=0,1,.05 do
602
			xlerp(tw,ts,.2)
603
			xlerp(hw,hs,.2)
604
			xlerp(raw,ras*ca(-140,0,0)*cn(0,-1.5,0),.2)
605
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.2)
606
			xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.2)
607
			xlerp(llw,lls*cn(0,0,1.25),.2)
608
			wait()
609
		end
610
		coroutine.wrap(function()
611
		wait()
612
		xSound('10730819',tr,.5)
613
		local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('dsasda')}
614
		local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=20329976'}
615
		Explosion.CFrame = rp.CFrame * cn(0,-5,-20)
616
		Mesh.Scale = v3(1,5,1)
617
		repeat
618
			Mesh.Scale = Mesh.Scale + v3(1,1,1)
619
			Explosion.Transparency = Explosion.Transparency + .025
620
			wait()
621
		until Explosion.Transparency >= 1
622
		Explosion:Destroy()
623
		end)()
624
		for _=0,1,.15 do
625
			xlerp(tw,ts*ca(15,0,0)*cn(0,1.5,0),.4)
626
			xlerp(hw,hs,.4)
627
			xlerp(raw,ras*ca(-20,0,0)*cn(0,0,0),.4)
628
			xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
629
			xlerp(haw,has*ca(20,0,0),.4)
630
			wait()
631
		end
632
		local Hit = NewHitbox(40,(rp.CFrame * cn(0,-5,-20)).p)
633
		for _,v in pairs(Hit) do
634-
		v.Humanoid.MaxHealth = 100
634+
		v.Humanoid.MaxHealth = math.huge
635-
		v.Humanoid.Health = v.Humanoid.Health - 100000000000
635+
		v.Humanoid.Health = v.Humanoid.Health - math.huge
636
		if sit then
637
			v.Humanoid.Sit = true
638
		end
639
		end
640
		wait(0)
641
		State = 'Idle'
642
		Human.WalkSpeed = 18
643
	end
644
end
645
--
646
CanBoom = true
647
function Fire(Part)
648
	local Flame = Instance.new("ParticleEmitter",Part)
649
	Flame.LightEmission = 0.21
650
	Flame.Size = NumberSequence.new(15)
651
	Flame.Texture = "http://www.roblox.com/asset/?id=366803190"
652
	Flame.Transparency = NumberSequence.new(0.5)
653
	Flame.LockedToPart = true
654
	Flame.Lifetime = NumberRange.new(0.1,0.8)
655
	Flame.Rate = 40
656
	Flame.VelocitySpread = 2
657
end
658
Mouse.KeyDown:connect(function(key)
659
	if key == ' ' then
660
		if State == 'Walking' or State == 'Idle' then
661
			if JumpDB == false then
662
				JumpDB = true
663
				State = 'Jumping'
664
				Human.Jump = true
665
				Human.WalkSpeed = 18
666
				wait(0)
667
				State = 'Falling'
668
				coroutine.wrap(function()
669
					wait(0)
670
					JumpDB = false
671
				end)()
672
			end
673
		end
674
	elseif key == 'z' and Mana >= 400 then
675
		Mana = Mana-400
676
		Combo()
677
	elseif key == 'x' and Mana >= 300 then
678
		Mana = Mana-300
679
		Charge()
680
	elseif key == 'c' and Mana >= 250 then
681
		Mana = Mana-250
682
		SwordSlam()
683
	elseif key == 'v' and Mana >= 100 then
684
		Mana = Mana-100
685
		Stomp()
686
	elseif key == "p" and Mana >= 1000 then
687
		Mana = Mana-1000
688
		Stomp()
689
		wait()
690
		SwordSlam()
691
		wait()
692
		Combo()
693
		wait()
694
		Combo()
695
	elseif key == "f" and Mana >= 800 and CanBoom then
696
		Mana = Mana - 800
697
		CanBoom = false
698
		local P = Instance.new("Part",Char)
699
		P.Name = "Boom"
700
		P.Anchored = true
701
		P.Transparency = 1
702
		Fire(P)
703
		P.Material = "Neon"
704
		P.BrickColor = BrickColor.new("Crimson")
705
		P.TopSurface = "Smooth"
706
		P.CFrame = Torso.CFrame
707
		P.CanCollide = false
708
		xSound(161451748,workspace,0.9)
709
		function Hit(hit)
710
			if hit.Parent and hit.Parent:findFirstChild("Humanoid") then
711
				if hit.Parent:findFirstChild("Torso") and hit.Parent.Name ~= Player.Character.Name and hit.Parent:findFirstChild("Flamed") == nil then
712
					local Z = Instance.new("StringValue",hit.Parent)
713
					Z.Name = "Flamed"
714
					local Torsoo = hit.Parent:findFirstChild("Torso")
715
					Torsoo.Anchored = true
716
					for i,v in pairs(hit.Parent:GetChildren()) do
717
						Fire(v)
718
					end
719
					if hit.Parent:findFirstChild("Humanoid") then
720
						local H = hit.Parent:findFirstChild("Humanoid")
721
						H.MaxHealth = math.huge
722
						H.WalkSpeed = 0
723
						H.JumpPower = 0
724
						wait()
725
						Torsoo.Anchored = false
726
						H:remove()
727
						if hit.Parent then
728
							hit.Parent:BreakJoints()
729
						end
730
					end
731
				end
732
			end
733
		end
734
		P.Touched:connect(Hit)
735
		for i=1,100 do
736
			wait(0.1)
737
			P.CFrame = Torso.CFrame
738
			P.Size = Vector3.new(P.Size.X + 0.5,P.Size.Y + 0.5,P.Size.Z + 0.5)
739
			P.CFrame = Torso.CFrame
740
		end
741
		P:remove()
742
		wait(0)
743
		CanBoom = true
744
		
745
	end
746
end)
747
--
748
Human.Changed:connect(function()
749
	if State ~= 'Jumping' then
750
		Human.Jump = false
751
	end
752
end)
753
754
Human.FreeFalling:connect(function(a)
755
	if a then
756
		if State == 'Walking' or State == 'Idle' then
757
			State = 'Falling'
758
		end
759
	elseif State == 'Jumping' or State == 'Falling' then
760
		State = 'Idle'
761
		if FallTime > 10 then
762
			print('Boom!')
763
			JumpExplode()
764
		end
765
		Human.WalkSpeed = 18
766
		FallTime = 0
767
	end
768
end)
769
--
770
wait(0)
771
game:GetService('RunService').RenderStepped:connect(function()
772
	UpdateState()
773
	if State == 'Jumping' or State == 'Falling' then
774
		FallTime = FallTime + .1
775
		xlerp(tw,ts,.3)
776
		xlerp(hw,hs*ca(40,0,0)*cn(0,-1,-1.5),.2)
777
		xlerp(raw,ras*ca(0,0,-90)*cn(-1,-1,0),.2)
778
		xlerp(law,las*ca(0,0,90)*cn(1,-1,0),.2)
779
		xlerp(rlw,rls*ca(20,0,0),.2)
780
		xlerp(llw,lls*cn(0,-.5,1.25),.2)
781
	elseif State == 'Idle' then
782
		xlerp(tw,ts*ca(0,25,0),.1)
783
		xlerp(hw,hs*ca(0,-25,0),.1)
784
		xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.1)
785
		xlerp(law,las*ca(20,0,0),.1)
786
		xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.1)
787
		xlerp(llw,lls*cn(0,0,1.25),.1)
788
		xlerp(haw,has,.4)
789
	elseif State == 'Walking' then
790
		xlerp(tw,ts,.15)
791
		xlerp(hw,hs,.15)
792
		--xlerp(law,las*ca(30,0,0),.3)
793
		--xlerp(raw,ras*ca(20,0,-40)*cn(-1,-.5,0),.15)
794
		xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.1)
795
		xlerp(law,las*ca(20,0,0),.1)
796
		if WalkReverse then
797
			xlerp(rlw,rls*ca(30,0,0)*cn(0,-1,-1.5),.05)
798
			xlerp(llw,lls*ca(-30,0,0)*cn(0,-1,1.5),.05)
799
		else
800
			xlerp(rlw,rls*ca(-30,0,0)*cn(0,-1,1.5),.05)
801
			xlerp(llw,lls*ca(30,0,0)*cn(0,-1,-1.5),.05)
802
		end
803
	end
804
	fenbarmana2:TweenSize(UDim2.new(4*Mana/MaxMana,0,0.2,0),nil,1,0.4,true)
805
	fenbarmana4.Text="[Mana]->                   [->  "..Mana.." <-]                    <-[Mana]"
806
	if Mana>=MaxMana then
807
		Mana=MaxMana
808
	else
809
		if mananum<=8 then
810
			mananum=mananum+1
811
		else
812
			mananum=0
813
			Mana=Mana+ManaGain
814
			Char.Humanoid.Health = Char.Humanoid.Health + 1000
815
		end
816
	end
817
	if Mana <= MaxMana/2 then
818
		fenbarmana2.BackgroundColor = BrickColor.new("Bright red")
819
		Char.Humanoid.MaxHealth = 40000
820
		Human.Health = Human.MaxHealth
821
	else
822
		fenbarmana2.BackgroundColor = BrickColor.new("Royal purple")
823
		Char.Humanoid.MaxHealth = 50000
824
		Human.Health = Human.MaxHealth
825
	end
826
end)
827
--
828
Char.Humanoid.WalkSpeed = 18
829
Char.Humanoid.JumpPower = 190
830
831
Human.Health = Human.MaxHealth
832
833
---------------------------------------------------------------ExtraMorphing-------------
834
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
835
836
Create = function(itemClass,tabl)
837
local item = Instance.new(itemClass)
838
for i,v in pairs(tabl) do
839
local a,b = ypcall(function() return item[i] end)
840
if a then
841
item[i] = tabl[i]
842
end
843
end
844
return item
845
end
846
function runDummyScript(f,scri)
847
local oldenv = getfenv(f)
848
local newenv = setmetatable({}, {
849
__index = function(_, k)
850
if k:lower() == 'script' then
851
return scri
852
else
853
return oldenv[k]
854
end
855
end
856
})
857
setfenv(f, newenv)
858
ypcall(function() f() end)
859
end
860
cors = {}
861
mas = Instance.new("Model",game:GetService("Lighting")) 
862
mas.Name = "CompiledModel"
863
o1 = Create("Model",{
864
["Name"] = "The Revenant",
865
["Parent"] = mas,
866
})
867
o2 = Create("Part",{
868
["Name"] = "Head",
869
["Parent"] = o1,
870
["BrickColor"] = BrickColor.new("Really black"),
871
["Position"] = Vector3.new(-1754.52759, -3600.20703, 1099.4939),
872
["Rotation"] = Vector3.new(-180, 0, -180),
873
["Anchored"] = true,
874
["CFrame"] = CFrame.new(-1754.52759, -3600.20703, 1099.4939, -1, 0, 0, 0, 1, 0, 0, 0, -1),
875
["FormFactor"] = Enum.FormFactor.Symmetric,
876
["Size"] = Vector3.new(0.686592042, 0.686592281, 0.6865924),
877
["BottomSurface"] = Enum.SurfaceType.Smooth,
878
["TopSurface"] = Enum.SurfaceType.Smooth,
879
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
880
})
881
o3 = Create("Script",{
882
["Name"] = "Arm1",
883
["Parent"] = o2,
884
})
885
table.insert(cors,coroutine.create(function()
886
wait()
887
runDummyScript(function()
888
function onTouched(hit)
889
	if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Arm1") == nil then
890
		local g = script.Parent.Parent.Arm1:clone()
891
		g.Parent = hit.Parent
892
		local C = g:GetChildren()
893
		for i=1, #C do
894
			if C[i].className == "Part" then
895
				local W = Instance.new("Weld")
896
				W.Part0 = g.Middle
897
				W.Part1 = C[i]
898
				local CJ = CFrame.new(g.Middle.Position)
899
				local C0 = g.Middle.CFrame:inverse()*CJ
900
				local C1 = C[i].CFrame:inverse()*CJ
901
				W.C0 = C0
902
				W.C1 = C1
903
				W.Parent = g.Middle
904
			end
905
				local Y = Instance.new("Weld")
906
				Y.Part0 = hit.Parent["Left Arm"]
907
				Y.Part1 = g.Middle
908
				Y.C0 = CFrame.new(0, 0, 0)
909
				Y.Parent = Y.Part0
910
		end
911
912
		local h = g:GetChildren()
913
		for i = 1, # h do
914
			if h[i].className == "Part" then
915
				h[i].Anchored = false
916
				h[i].CanCollide = false
917
			end
918
		end
919
		
920
	end
921
922
end
923
924
script.Parent.Touched:connect(onTouched)
925
end,o3)
926
end))
927
o4 = Create("Script",{
928
["Name"] = "Leg1",
929
["Parent"] = o2,
930
})
931
table.insert(cors,coroutine.create(function()
932
wait()
933
runDummyScript(function()
934
function onTouched(hit)
935
	if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Leg1") == nil then
936
		local g = script.Parent.Parent.Leg1:clone()
937
		g.Parent = hit.Parent
938
		local C = g:GetChildren()
939
		for i=1, #C do
940
			if C[i].className == "Part" then
941
				local W = Instance.new("Weld")
942
				W.Part0 = g.Middle
943
				W.Part1 = C[i]
944
				local CJ = CFrame.new(g.Middle.Position)
945
				local C0 = g.Middle.CFrame:inverse()*CJ
946
				local C1 = C[i].CFrame:inverse()*CJ
947
				W.C0 = C0
948
				W.C1 = C1
949
				W.Parent = g.Middle
950
			end
951
				local Y = Instance.new("Weld")
952
				Y.Part0 = hit.Parent["Left Leg"]
953
				Y.Part1 = g.Middle
954
				Y.C0 = CFrame.new(0, 0, 0)
955
				Y.Parent = Y.Part0
956
		end
957
958
		local h = g:GetChildren()
959
		for i = 1, # h do
960
			if h[i].className == "Part" then
961
				h[i].Anchored = false
962
				h[i].CanCollide = false
963
			end
964
		end
965
		
966
	end
967
968
end
969
970
script.Parent.Touched:connect(onTouched)
971
end,o4)
972
end))
973
o5 = Create("Script",{
974
["Name"] = "WalkSpeed Script",
975
["Parent"] = o2,
976
})
977
table.insert(cors,coroutine.create(function()
978
wait()
979
runDummyScript(function()
980
local debounce = false 
981
982
function onTouch(part) 
983
984
local human = part.Parent:findFirstChild("Humanoid") 
985
if (human ~= nil) and debounce == false then 
986
987
debounce = true 
988
989
human.WalkSpeed = 16-- or whatever number 
990
991
wait(2) 
992
debounce = false 
993
end 
994
end 
995
996
997
script.Parent.Touched:connect(onTouch) 
998
999
end,o5)
1000
end))
1001
o6 = Create("Script",{
1002
["Name"] = "Leg2",
1003
["Parent"] = o2,
1004
})
1005
table.insert(cors,coroutine.create(function()
1006
wait()
1007
runDummyScript(function()
1008
function onTouched(hit)
1009
	if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Leg2") == nil then
1010
		local g = script.Parent.Parent.Leg2:clone()
1011
		g.Parent = hit.Parent
1012
		local C = g:GetChildren()
1013
		for i=1, #C do
1014
			if C[i].className == "Part" then
1015
				local W = Instance.new("Weld")
1016
				W.Part0 = g.Middle
1017
				W.Part1 = C[i]
1018
				local CJ = CFrame.new(g.Middle.Position)
1019
				local C0 = g.Middle.CFrame:inverse()*CJ
1020
				local C1 = C[i].CFrame:inverse()*CJ
1021
				W.C0 = C0
1022
				W.C1 = C1
1023
				W.Parent = g.Middle
1024
			end
1025
				local Y = Instance.new("Weld")
1026
				Y.Part0 = hit.Parent["Right Leg"]
1027
				Y.Part1 = g.Middle
1028
				Y.C0 = CFrame.new(0, 0, 0)
1029
				Y.Parent = Y.Part0
1030
		end
1031
1032
		local h = g:GetChildren()
1033
		for i = 1, # h do
1034
			if h[i].className == "Part" then
1035
				h[i].Anchored = false
1036
				h[i].CanCollide = false
1037
			end
1038
		end
1039
		
1040
	end
1041
1042
end
1043
1044
script.Parent.Touched:connect(onTouched)
1045
end,o6)
1046
end))
1047
o7 = Create("Script",{
1048
["Name"] = "Arm2",
1049
["Parent"] = o2,
1050
})
1051
table.insert(cors,coroutine.create(function()
1052
wait()
1053
runDummyScript(function()
1054
function onTouched(hit)
1055
	if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Arm2") == nil then
1056
		local g = script.Parent.Parent.Arm2:clone()
1057
		g.Parent = hit.Parent
1058
		local C = g:GetChildren()
1059
		for i=1, #C do
1060
			if C[i].className == "Part" then
1061
				local W = Instance.new("Weld")
1062
				W.Part0 = g.Middle
1063
				W.Part1 = C[i]
1064
				local CJ = CFrame.new(g.Middle.Position)
1065
				local C0 = g.Middle.CFrame:inverse()*CJ
1066
				local C1 = C[i].CFrame:inverse()*CJ
1067
				W.C0 = C0
1068
				W.C1 = C1
1069
				W.Parent = g.Middle
1070
			end
1071
				local Y = Instance.new("Weld")
1072
				Y.Part0 = hit.Parent["Right Arm"]
1073
				Y.Part1 = g.Middle
1074
				Y.C0 = CFrame.new(0, 0, 0)
1075
				Y.Parent = Y.Part0
1076
		end
1077
1078
		local h = g:GetChildren()
1079
		for i = 1, # h do
1080
			if h[i].className == "Part" then
1081
				h[i].Anchored = false
1082
				h[i].CanCollide = false
1083
			end
1084
		end
1085
		
1086
	end
1087
1088
end
1089
1090
script.Parent.Touched:connect(onTouched)
1091
end,o7)
1092
end))
1093
o8 = Create("Script",{
1094
["Name"] = "Torso",
1095
["Parent"] = o2,
1096
})
1097
table.insert(cors,coroutine.create(function()
1098
wait()
1099
runDummyScript(function()
1100
function onTouched(hit)
1101
	if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Chest") == nil then
1102
		local g = script.Parent.Parent.Chest:clone()
1103
		g.Parent = hit.Parent
1104
		local C = g:GetChildren()
1105
		for i=1, #C do
1106
			if C[i].className == "Part" then
1107
				local W = Instance.new("Weld")
1108
				W.Part0 = g.Middle
1109
				W.Part1 = C[i]
1110
				local CJ = CFrame.new(g.Middle.Position)
1111
				local C0 = g.Middle.CFrame:inverse()*CJ
1112
				local C1 = C[i].CFrame:inverse()*CJ
1113
				W.C0 = C0
1114
				W.C1 = C1
1115
				W.Parent = g.Middle
1116
			end
1117
				local Y = Instance.new("Weld")
1118
				Y.Part0 = hit.Parent.Torso
1119
				Y.Part1 = g.Middle
1120
				Y.C0 = CFrame.new(0, 0, 0)
1121
				Y.Parent = Y.Part0
1122
		end
1123
1124
		local h = g:GetChildren()
1125
		for i = 1, # h do
1126
			if h[i].className == "Part" then
1127
				h[i].Anchored = false
1128
				h[i].CanCollide = false
1129
			end
1130
		end
1131
		
1132
	end
1133
end
1134
1135
script.Parent.Touched:connect(onTouched)
1136
1137
end,o8)
1138
end))
1139
o9 = Create("Script",{
1140
["Parent"] = o2,
1141
})
1142
table.insert(cors,coroutine.create(function()
1143
wait()
1144
runDummyScript(function()
1145
function onTouch(part) 
1146
local human = part.Parent:findFirstChild("Humanoid") 
1147
if human ~= nil then 
1148
part.Parent:findFirstChild("Head").Transparency = 0.98
1149
part.Parent:findFirstChild("Torso").Transparency = 1
1150
part.Parent:findFirstChild("Left Arm").Transparency = 1
1151
part.Parent:findFirstChild("Right Arm").Transparency = 1
1152
part.Parent:findFirstChild("Left Leg").CanCollide = true
1153
part.Parent:findFirstChild("Left Leg").Transparency = 1
1154
part.Parent:findFirstChild("Right Leg").CanCollide = true
1155
part.Parent:findFirstChild("Right Leg").Transparency = 1
1156
end 
1157
end 
1158
script.Parent.Touched:connect(onTouch) 
1159
1160
--COLORS
1161
1162
--1 = white
1163
--208 = Light stone grey
1164
--194 = Medium stone grey
1165
--199 = Dark stone grey
1166
--26 = Black
1167
--21 = Bright red
1168
--24 = Bright yellow
1169
--226 = Cool yellow
1170
--23 = Bright blue
1171
--107 = Bright bluish green
1172
--102 = Medium blue
1173
--11 = Pastel blue
1174
--45 = Light blue
1175
--135 = Sand blue
1176
--106 = Bright orange
1177
--105 = Br. yellowish orange
1178
--141 = Earth green
1179
--28 = Dark green
1180
--37 = Bright green
1181
--119 = Br. yellowish green
1182
--29 = Medium green
1183
--151 = Sand green
1184
--38 = Dark orange
1185
--192 = Reddish brown
1186
--104 = Bright violet
1187
--9 = Light reddish violet
1188
--101 = Medium red
1189
--5 = Brick Yellow
1190
--153 = Sand red
1191
--217 = Brown
1192
--18 = Nougat
1193
--125 = Light orange
1194
1195
1196
end,o9)
1197
end))
1198
o10 = Create("Script",{
1199
["Name"] = "HatRemover",
1200
["Parent"] = o2,
1201
})
1202
table.insert(cors,coroutine.create(function()
1203
wait()
1204
runDummyScript(function()
1205
function onTouched(hit) 
1206
	local d = hit.Parent:GetChildren() 
1207
	for i=1, #d do 
1208
		if (d[i].className == "Hat") then 
1209
			d[i].Handle.Transparency = 1
1210
		end 
1211
	end
1212
end 
1213
1214
script.Parent.Touched:connect(onTouched) 
1215
end,o10)
1216
end))
1217
o11 = Create("Script",{
1218
["Name"] = "Cframe",
1219
["Parent"] = o2,
1220
})
1221
table.insert(cors,coroutine.create(function()
1222
wait()
1223
runDummyScript(function()
1224
1225
wait(2)
1226
1227
local p = script.Parent
1228
local me = game.Players.LocalPlayer.Character
1229
1230
1231
p.Shape = "Ball"
1232
1233
game:GetService('RunService').Stepped:connect(function()
1234
	p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
1235
end)
1236
1237
wait(0.5)
1238
1239
me.Head.Transparency = 1
1240
1241
p:Remove()
1242
end,o11)
1243
end))
1244
o12 = Create("Model",{
1245
["Name"] = "Arm2",
1246
["Parent"] = o1,
1247
})
1248
o13 = Create("Part",{
1249
["Name"] = "Middle",
1250
["Parent"] = o12,
1251
["Material"] = Enum.Material.Grass,
1252
["BrickColor"] = BrickColor.new("Really black"),
1253
["Position"] = Vector3.new(-1755.90063, -3590.25195, 1111.85254),
1254
["Anchored"] = true,
1255
["CFrame"] = CFrame.new(-1755.90063, -3590.25195, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1256
["CanCollide"] = false,
1257
["FormFactor"] = Enum.FormFactor.Symmetric,
1258
["Size"] = Vector3.new(3.43296003, 6.86592293, 3.43296194),
1259
["BottomSurface"] = Enum.SurfaceType.Smooth,
1260
["TopSurface"] = Enum.SurfaceType.Smooth,
1261
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1262
})
1263
o14 = Create("Fire",{
1264
["Parent"] = o13,
1265
["Size"] = 30,
1266
["Color"] = Color3.new(1, 0.815686, 0),
1267
["Enabled"] = false,
1268
["Heat"] = 25,
1269
["SecondaryColor"] = Color3.new(1, 0, 0),
1270
})
1271
o15 = Create("Script",{
1272
["Parent"] = o14,
1273
})
1274
table.insert(cors,coroutine.create(function()
1275
wait()
1276
runDummyScript(function()
1277
function Spread(part)
1278
	check = part:findFirstChild("Fire")
1279
		if check == nil then 
1280
	script.Parent:Clone().Parent = part
1281
	
1282
		elseif check ~= nil then
1283
	check.Size = check.Size + 1
1284
	check.Heat = check.Heat  +1
1285
	end
1286
end
1287
1288
1289
script.Parent.Parent.Touched:connect(Spread)
1290
1291
1292
end,o15)
1293
end))
1294
o16 = Create("Part",{
1295
["Parent"] = o12,
1296
["Material"] = Enum.Material.Grass,
1297
["BrickColor"] = BrickColor.new("Cocoa"),
1298
["Position"] = Vector3.new(-1755.80078, -3589.75195, 1111.85254),
1299
["Anchored"] = true,
1300
["CFrame"] = CFrame.new(-1755.80078, -3589.75195, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1301
["CanCollide"] = false,
1302
["FormFactor"] = Enum.FormFactor.Symmetric,
1303
["Size"] = Vector3.new(4.03295994, 1.86592293, 3.83296204),
1304
["BottomSurface"] = Enum.SurfaceType.Smooth,
1305
["TopSurface"] = Enum.SurfaceType.Smooth,
1306
["Color"] = Color3.new(0.337255, 0.141176, 0.141176),
1307
})
1308
o17 = Create("Fire",{
1309
["Parent"] = o16,
1310
["Size"] = 30,
1311
["Color"] = Color3.new(1, 0.815686, 0),
1312
["Enabled"] = false,
1313
["Heat"] = 25,
1314
["SecondaryColor"] = Color3.new(1, 0, 0),
1315
})
1316
o18 = Create("Script",{
1317
["Parent"] = o17,
1318
})
1319
table.insert(cors,coroutine.create(function()
1320
wait()
1321
runDummyScript(function()
1322
function Spread(part)
1323
	check = part:findFirstChild("Fire")
1324
		if check == nil then 
1325
	script.Parent:Clone().Parent = part
1326
	
1327
		elseif check ~= nil then
1328
	check.Size = check.Size + 1
1329
	check.Heat = check.Heat  +1
1330
	end
1331
end
1332
1333
1334
script.Parent.Parent.Touched:connect(Spread)
1335
1336
1337
end,o18)
1338
end))
1339
o19 = Create("Part",{
1340
["Parent"] = o12,
1341
["Material"] = Enum.Material.Grass,
1342
["BrickColor"] = BrickColor.new("Cocoa"),
1343
["Position"] = Vector3.new(-1755.80078, -3591.35156, 1111.85254),
1344
["Anchored"] = true,
1345
["CFrame"] = CFrame.new(-1755.80078, -3591.35156, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1346
["CanCollide"] = false,
1347
["FormFactor"] = Enum.FormFactor.Symmetric,
1348
["Size"] = Vector3.new(4.03295994, 5.06592274, 1.83296204),
1349
["BottomSurface"] = Enum.SurfaceType.Smooth,
1350
["TopSurface"] = Enum.SurfaceType.Smooth,
1351
["Color"] = Color3.new(0.337255, 0.141176, 0.141176),
1352
})
1353
o20 = Create("Fire",{
1354
["Parent"] = o19,
1355
["Size"] = 30,
1356
["Color"] = Color3.new(1, 0.815686, 0),
1357
["Enabled"] = false,
1358
["Heat"] = 25,
1359
["SecondaryColor"] = Color3.new(1, 0, 0),
1360
})
1361
o21 = Create("Script",{
1362
["Parent"] = o20,
1363
})
1364
table.insert(cors,coroutine.create(function()
1365
wait()
1366
runDummyScript(function()
1367
function Spread(part)
1368
	check = part:findFirstChild("Fire")
1369
		if check == nil then 
1370
	script.Parent:Clone().Parent = part
1371
	
1372
		elseif check ~= nil then
1373
	check.Size = check.Size + 1
1374
	check.Heat = check.Heat  +1
1375
	end
1376
end
1377
1378
1379
script.Parent.Parent.Touched:connect(Spread)
1380
1381
1382
end,o21)
1383
end))
1384
o22 = Create("Part",{
1385
["Name"] = "Armor",
1386
["Parent"] = o12,
1387
["Material"] = Enum.Material.Slate,
1388
["BrickColor"] = BrickColor.new("Really black"),
1389
["Position"] = Vector3.new(-1755.59814, -3587.30859, 1111.36255),
1390
["Anchored"] = true,
1391
["CFrame"] = CFrame.new(-1755.59814, -3587.30859, 1111.36255, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1392
["CanCollide"] = false,
1393
["FormFactor"] = Enum.FormFactor.Symmetric,
1394
["Size"] = Vector3.new(3.99000001, 2.0999999, 4.85296202),
1395
["BottomSurface"] = Enum.SurfaceType.Smooth,
1396
["TopSurface"] = Enum.SurfaceType.Smooth,
1397
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1398
})
1399
o23 = Create("Fire",{
1400
["Parent"] = o22,
1401
["Size"] = 30,
1402
["Color"] = Color3.new(1, 0.815686, 0),
1403
["Enabled"] = false,
1404
["Heat"] = 25,
1405
["SecondaryColor"] = Color3.new(1, 0, 0),
1406
})
1407
o24 = Create("Script",{
1408
["Parent"] = o23,
1409
})
1410
table.insert(cors,coroutine.create(function()
1411
wait()
1412
runDummyScript(function()
1413
function Spread(part)
1414
	check = part:findFirstChild("Fire")
1415
		if check == nil then 
1416
	script.Parent:Clone().Parent = part
1417
	
1418
		elseif check ~= nil then
1419
	check.Size = check.Size + 1
1420
	check.Heat = check.Heat  +1
1421
	end
1422
end
1423
1424
1425
script.Parent.Parent.Touched:connect(Spread)
1426
1427
1428
end,o24)
1429
end))
1430
o25 = Create("Part",{
1431
["Name"] = "Armor",
1432
["Parent"] = o12,
1433
["Material"] = Enum.Material.Slate,
1434
["BrickColor"] = BrickColor.new("Really black"),
1435
["Position"] = Vector3.new(-1755.30298, -3587.26367, 1111.39258),
1436
["Anchored"] = true,
1437
["CFrame"] = CFrame.new(-1755.30298, -3587.26367, 1111.39258, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1438
["CanCollide"] = false,
1439
["FormFactor"] = Enum.FormFactor.Symmetric,
1440
["Size"] = Vector3.new(4.93999958, 3.38999987, 3.0129621),
1441
["BottomSurface"] = Enum.SurfaceType.Smooth,
1442
["TopSurface"] = Enum.SurfaceType.Smooth,
1443
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1444
})
1445
o26 = Create("Fire",{
1446
["Parent"] = o25,
1447
["Size"] = 30,
1448
["Color"] = Color3.new(1, 0.815686, 0),
1449
["Enabled"] = false,
1450
["Heat"] = 25,
1451
["SecondaryColor"] = Color3.new(1, 0, 0),
1452
})
1453
o27 = Create("Script",{
1454
["Parent"] = o26,
1455
})
1456
table.insert(cors,coroutine.create(function()
1457
wait()
1458
runDummyScript(function()
1459
function Spread(part)
1460
	check = part:findFirstChild("Fire")
1461
		if check == nil then 
1462
	script.Parent:Clone().Parent = part
1463
	
1464
		elseif check ~= nil then
1465
	check.Size = check.Size + 1
1466
	check.Heat = check.Heat  +1
1467
	end
1468
end
1469
1470
1471
script.Parent.Parent.Touched:connect(Spread)
1472
1473
1474
end,o27)
1475
end))
1476
o28 = Create("Part",{
1477
["Name"] = "Armor",
1478
["Parent"] = o12,
1479
["Material"] = Enum.Material.Slate,
1480
["BrickColor"] = BrickColor.new("Really black"),
1481
["Position"] = Vector3.new(-1752.87793, -3586.97266, 1111.12756),
1482
["Rotation"] = Vector3.new(-5.22349401e-005, 1.91785184e-005, -22.583704),
1483
["Anchored"] = true,
1484
["CFrame"] = CFrame.new(-1752.87793, -3586.97266, 1111.12756, 0.923319459, 0.384032726, 3.34728298e-007, -0.384032726, 0.923319459, 9.11671691e-007, 4.10506154e-008, -9.70310793e-007, 1),
1485
["CanCollide"] = false,
1486
["FormFactor"] = Enum.FormFactor.Symmetric,
1487
["Size"] = Vector3.new(3.64999938, 1.13, 1.68296218),
1488
["BottomSurface"] = Enum.SurfaceType.Smooth,
1489
["TopSurface"] = Enum.SurfaceType.Smooth,
1490
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1491
})
1492
o29 = Create("Fire",{
1493
["Parent"] = o28,
1494
["Size"] = 30,
1495
["Color"] = Color3.new(1, 0.815686, 0),
1496
["Enabled"] = false,
1497
["Heat"] = 25,
1498
["SecondaryColor"] = Color3.new(1, 0, 0),
1499
})
1500
o30 = Create("Script",{
1501
["Parent"] = o29,
1502
})
1503
table.insert(cors,coroutine.create(function()
1504
wait()
1505
runDummyScript(function()
1506
function Spread(part)
1507
	check = part:findFirstChild("Fire")
1508
		if check == nil then 
1509
	script.Parent:Clone().Parent = part
1510
	
1511
		elseif check ~= nil then
1512
	check.Size = check.Size + 1
1513
	check.Heat = check.Heat  +1
1514
	end
1515
end
1516
1517
1518
script.Parent.Parent.Touched:connect(Spread)
1519
1520
1521
end,o30)
1522
end))
1523
o31 = Create("Part",{
1524
["Name"] = "Armor",
1525
["Parent"] = o12,
1526
["Material"] = Enum.Material.Slate,
1527
["BrickColor"] = BrickColor.new("Really black"),
1528
["Position"] = Vector3.new(-1751.26221, -3587.58008, 1111.57251),
1529
["Rotation"] = Vector3.new(-0.000566392206, -5.4949076e-005, 9.08247471),
1530
["Anchored"] = true,
1531
["CFrame"] = CFrame.new(-1751.26221, -3587.58008, 1111.57251, 0.987462223, -0.157856047, -9.59042268e-007, 0.157856047, 0.987462223, 9.88540887e-006, -6.13453551e-007, -9.91285833e-006, 1),
1532
["CanCollide"] = false,
1533
["FormFactor"] = Enum.FormFactor.Symmetric,
1534
["Size"] = Vector3.new(0.200000003, 4.40999985, 4.29296207),
1535
["BottomSurface"] = Enum.SurfaceType.Smooth,
1536
["TopSurface"] = Enum.SurfaceType.Smooth,
1537
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1538
})
1539
o32 = Create("Fire",{
1540
["Parent"] = o31,
1541
["Size"] = 30,
1542
["Color"] = Color3.new(1, 0.815686, 0),
1543
["Enabled"] = false,
1544
["Heat"] = 25,
1545
["SecondaryColor"] = Color3.new(1, 0, 0),
1546
})
1547
o33 = Create("Script",{
1548
["Parent"] = o32,
1549
})
1550
table.insert(cors,coroutine.create(function()
1551
wait()
1552
runDummyScript(function()
1553
function Spread(part)
1554
	check = part:findFirstChild("Fire")
1555
		if check == nil then 
1556
	script.Parent:Clone().Parent = part
1557
	
1558
		elseif check ~= nil then
1559
	check.Size = check.Size + 1
1560
	check.Heat = check.Heat  +1
1561
	end
1562
end
1563
1564
1565
script.Parent.Parent.Touched:connect(Spread)
1566
1567
1568
end,o33)
1569
end))
1570
o34 = Create("Part",{
1571
["Name"] = "Armor",
1572
["Parent"] = o12,
1573
["Material"] = Enum.Material.Slate,
1574
["BrickColor"] = BrickColor.new("Really black"),
1575
["Position"] = Vector3.new(-1753.77808, -3592.89307, 1111.12756),
1576
["Rotation"] = Vector3.new(-5.22349401e-005, 1.91785184e-005, -22.583704),
1577
["Anchored"] = true,
1578
["CFrame"] = CFrame.new(-1753.77808, -3592.89307, 1111.12756, 0.923319459, 0.384032726, 3.34728298e-007, -0.384032726, 0.923319459, 9.11671691e-007, 4.10506154e-008, -9.70310793e-007, 1),
1579
["CanCollide"] = false,
1580
["FormFactor"] = Enum.FormFactor.Symmetric,
1581
["Size"] = Vector3.new(3.64999938, 1.13, 1.68296218),
1582
["BottomSurface"] = Enum.SurfaceType.Smooth,
1583
["TopSurface"] = Enum.SurfaceType.Smooth,
1584
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1585
})
1586
o35 = Create("Fire",{
1587
["Parent"] = o34,
1588
["Size"] = 30,
1589
["Color"] = Color3.new(1, 0.815686, 0),
1590
["Enabled"] = false,
1591
["Heat"] = 25,
1592
["SecondaryColor"] = Color3.new(1, 0, 0),
1593
})
1594
o36 = Create("Script",{
1595
["Parent"] = o35,
1596
})
1597
table.insert(cors,coroutine.create(function()
1598
wait()
1599
runDummyScript(function()
1600
function Spread(part)
1601
	check = part:findFirstChild("Fire")
1602
		if check == nil then 
1603
	script.Parent:Clone().Parent = part
1604
	
1605
		elseif check ~= nil then
1606
	check.Size = check.Size + 1
1607
	check.Heat = check.Heat  +1
1608
	end
1609
end
1610
1611
1612
script.Parent.Parent.Touched:connect(Spread)
1613
1614
1615
end,o36)
1616
end))
1617
o37 = Create("Part",{
1618
["Name"] = "Armor",
1619
["Parent"] = o12,
1620
["Material"] = Enum.Material.Slate,
1621
["BrickColor"] = BrickColor.new("Really black"),
1622
["Position"] = Vector3.new(-1752.16235, -3593.50049, 1111.57251),
1623
["Rotation"] = Vector3.new(-5.22349401e-005, 1.91785184e-005, -22.583704),
1624
["Anchored"] = true,
1625
["CFrame"] = CFrame.new(-1752.16235, -3593.50049, 1111.57251, 0.923319459, 0.384032726, 3.34728298e-007, -0.384032726, 0.923319459, 9.11671691e-007, 4.10506154e-008, -9.70310793e-007, 1),
1626
["CanCollide"] = false,
1627
["FormFactor"] = Enum.FormFactor.Symmetric,
1628
["Size"] = Vector3.new(0.200000003, 4.40999985, 4.29296207),
1629
["BottomSurface"] = Enum.SurfaceType.Smooth,
1630
["TopSurface"] = Enum.SurfaceType.Smooth,
1631
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1632
})
1633
o38 = Create("Fire",{
1634
["Parent"] = o37,
1635
["Size"] = 30,
1636
["Color"] = Color3.new(1, 0.815686, 0),
1637
["Enabled"] = false,
1638
["Heat"] = 25,
1639
["SecondaryColor"] = Color3.new(1, 0, 0),
1640
})
1641
o39 = Create("Script",{
1642
["Parent"] = o38,
1643
})
1644
table.insert(cors,coroutine.create(function()
1645
wait()
1646
runDummyScript(function()
1647
function Spread(part)
1648
	check = part:findFirstChild("Fire")
1649
		if check == nil then 
1650
	script.Parent:Clone().Parent = part
1651
	
1652
		elseif check ~= nil then
1653
	check.Size = check.Size + 1
1654
	check.Heat = check.Heat  +1
1655
	end
1656
end
1657
1658
1659
script.Parent.Parent.Touched:connect(Spread)
1660
1661
1662
end,o39)
1663
end))
1664
o40 = Create("Model",{
1665
["Name"] = "Chest",
1666
["Parent"] = o1,
1667
})
1668
o41 = Create("Part",{
1669
["Name"] = "Middle",
1670
["Parent"] = o40,
1671
["Material"] = Enum.Material.Grass,
1672
["BrickColor"] = BrickColor.new("Really black"),
1673
["Position"] = Vector3.new(-1761.05005, -3590.25195, 1111.85254),
1674
["Anchored"] = true,
1675
["CFrame"] = CFrame.new(-1761.05005, -3590.25195, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1676
["CanCollide"] = false,
1677
["FormFactor"] = Enum.FormFactor.Symmetric,
1678
["Size"] = Vector3.new(6.86592007, 6.86592293, 3.43296194),
1679
["BottomSurface"] = Enum.SurfaceType.Smooth,
1680
["TopSurface"] = Enum.SurfaceType.Smooth,
1681
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1682
})
1683
o42 = Create("Fire",{
1684
["Parent"] = o41,
1685
["Size"] = 30,
1686
["Color"] = Color3.new(1, 0.815686, 0),
1687
["Enabled"] = false,
1688
["Heat"] = 25,
1689
["SecondaryColor"] = Color3.new(1, 0, 0),
1690
})
1691
o43 = Create("Script",{
1692
["Parent"] = o42,
1693
})
1694
table.insert(cors,coroutine.create(function()
1695
wait()
1696
runDummyScript(function()
1697
function Spread(part)
1698
	check = part:findFirstChild("Fire")
1699
		if check == nil then 
1700
	script.Parent:Clone().Parent = part
1701
	
1702
		elseif check ~= nil then
1703
	check.Size = check.Size + 1
1704
	check.Heat = check.Heat  +1
1705
	end
1706
end
1707
1708
1709
script.Parent.Parent.Touched:connect(Spread)
1710
1711
1712
end,o43)
1713
end))
1714
o44 = Create("Part",{
1715
["Parent"] = o40,
1716
["BrickColor"] = BrickColor.new("Really black"),
1717
["Position"] = Vector3.new(-1761.05005, -3585.10156, 1111.85254),
1718
["Velocity"] = Vector3.new(0, -1, 0),
1719
["Anchored"] = true,
1720
["CFrame"] = CFrame.new(-1761.05005, -3585.10156, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1721
["CanCollide"] = false,
1722
["FormFactor"] = Enum.FormFactor.Symmetric,
1723
["Size"] = Vector3.new(6.86592007, 3.43296146, 3.43296194),
1724
["TopSurface"] = Enum.SurfaceType.Smooth,
1725
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1726
})
1727
o45 = Create("SpecialMesh",{
1728
["Parent"] = o44,
1729
["Scale"] = Vector3.new(1.20000005, 1.20000005, 1.20000005),
1730
})
1731
o46 = Create("Fire",{
1732
["Parent"] = o44,
1733
["Size"] = 30,
1734
["Color"] = Color3.new(1, 0.815686, 0),
1735
["Enabled"] = false,
1736
["Heat"] = 25,
1737
["SecondaryColor"] = Color3.new(1, 0, 0),
1738
})
1739
o47 = Create("Script",{
1740
["Parent"] = o46,
1741
})
1742
table.insert(cors,coroutine.create(function()
1743
wait()
1744
runDummyScript(function()
1745
function Spread(part)
1746
	check = part:findFirstChild("Fire")
1747
		if check == nil then 
1748
	script.Parent:Clone().Parent = part
1749
	
1750
		elseif check ~= nil then
1751
	check.Size = check.Size + 1
1752
	check.Heat = check.Heat  +1
1753
	end
1754
end
1755
1756
1757
script.Parent.Parent.Touched:connect(Spread)
1758
1759
1760
end,o47)
1761
end))
1762
o48 = Create("Part",{
1763
["Name"] = "Hat",
1764
["Parent"] = o40,
1765
["Material"] = Enum.Material.Concrete,
1766
["BrickColor"] = BrickColor.new("Really black"),
1767
["Position"] = Vector3.new(-1761.05005, -3584.1377, 1111.85254),
1768
["Anchored"] = true,
1769
["CFrame"] = CFrame.new(-1761.05005, -3584.1377, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
1770
["CanCollide"] = false,
1771
["FormFactor"] = Enum.FormFactor.Symmetric,
1772
["Size"] = Vector3.new(6.86592007, 3.43296146, 3.43296194),
1773
["BottomSurface"] = Enum.SurfaceType.Weld,
1774
["TopSurface"] = Enum.SurfaceType.Smooth,
1775
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
1776
})
1777
o49 = Create("Fire",{
1778
["Parent"] = o48,
1779
["Size"] = 30,
1780
["Color"] = Color3.new(1, 0.815686, 0),
1781
["Enabled"] = false,
1782
["Heat"] = 25,
1783
["SecondaryColor"] = Color3.new(1, 0, 0),
1784
})
1785
o50 = Create("Script",{
1786
["Parent"] = o49,
1787
})
1788
table.insert(cors,coroutine.create(function()
1789
wait()
1790
runDummyScript(function()
1791
function Spread(part)
1792
	check = part:findFirstChild("Fire")
1793
		if check == nil then 
1794
	script.Parent:Clone().Parent = part
1795
	
1796
		elseif check ~= nil then
1797
	check.Size = check.Size + 1
1798
	check.Heat = check.Heat  +1
1799
	end
1800
end
1801
1802
1803
script.Parent.Parent.Touched:connect(Spread)
1804
1805
1806
end,o50)
1807
end))
1808
o51 = Create("SpecialMesh",{
1809
["Parent"] = o48,
1810
["MeshId"] = "http://www.roblox.com/asset/?id=16150814",
1811
["Scale"] = Vector3.new(4, 4, 4),
1812
["TextureId"] = "http://www.roblox.com/asset/?id=16150799",
1813
["VertexColor"] = Vector3.new(0.200000003, 0.200000003, 0.200000003),
1814
["MeshType"] = Enum.MeshType.FileMesh,
1815
})
1816
o52 = Create("Part",{
1817
["Parent"] = o40,
1818
["Transparency"] = 1,
1819
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1820
["Rotation"] = Vector3.new(91.8079071, -3.89169359, 131.856094),
1821
["Anchored"] = true,
1822
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.665723264, -0.74310571, -0.0678706542, 0.0217668079, 0.0715781152, -0.997199297, 0.7458812, -0.66533494, -0.0314760283),
1823
["CanCollide"] = false,
1824
["Locked"] = true,
1825
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1826
})
1827
o53 = Create("ParticleEmitter",{
1828
["Parent"] = o52,
1829
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1830
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1831
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1832
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1833
["Speed"] = NumberRange.new(10,10),
1834
})
1835
o54 = Create("Part",{
1836
["Parent"] = o40,
1837
["Transparency"] = 1,
1838
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1839
["Rotation"] = Vector3.new(85.7094498, 5.97641565e-006, -1.68086683e-006),
1840
["Anchored"] = true,
1841
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 1, 2.93366611e-008, 1.04308128e-007, -1.04308128e-007, 0.0748144686, -0.997199237, 3.20142135e-008, 0.997197449, 0.0748144463),
1842
["CanCollide"] = false,
1843
["Locked"] = true,
1844
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1845
})
1846
o55 = Create("ParticleEmitter",{
1847
["Parent"] = o54,
1848
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1849
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1850
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1851
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1852
["Speed"] = NumberRange.new(10,10),
1853
})
1854
o56 = Create("Part",{
1855
["Parent"] = o40,
1856
["Transparency"] = 1,
1857
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1858
["Rotation"] = Vector3.new(88.6520844, 4.07365465, -46.3612671),
1859
["Anchored"] = true,
1860
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.6883654, 0.721877038, 0.0710387975, 0.031986922, 0.0676305369, -0.997199357, -0.72465837, 0.688708603, 0.0234639738),
1861
["CanCollide"] = false,
1862
["Locked"] = true,
1863
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1864
})
1865
o57 = Create("ParticleEmitter",{
1866
["Parent"] = o56,
1867
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1868
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1869
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1870
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1871
["Speed"] = NumberRange.new(10,10),
1872
})
1873
o58 = Create("Part",{
1874
["Parent"] = o40,
1875
["Transparency"] = 1,
1876
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1877
["Rotation"] = Vector3.new(88.6522293, 4.07362413, -60.6914787),
1878
["Anchored"] = true,
1879
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.488275468, 0.869793534, 0.0710382611, 0.0142543819, 0.0734416321, -0.997199357, -0.872573256, 0.487919807, 0.0234614406),
1880
["CanCollide"] = false,
1881
["Locked"] = true,
1882
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1883
})
1884
o59 = Create("ParticleEmitter",{
1885
["Parent"] = o58,
1886
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1887
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1888
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1889
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1890
["Speed"] = NumberRange.new(10,10),
1891
})
1892
o60 = Create("Part",{
1893
["Parent"] = o40,
1894
["Transparency"] = 1,
1895
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1896
["Rotation"] = Vector3.new(88.652298, 4.07355118, -54.170784),
1897
["Anchored"] = true,
1898
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.583892345, 0.808717191, 0.0710370019, 0.0225025266, 0.0713460743, -0.997199595, -0.811519146, 0.583854675, 0.023460323),
1899
["CanCollide"] = false,
1900
["Locked"] = true,
1901
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1902
})
1903
o61 = Create("ParticleEmitter",{
1904
["Parent"] = o60,
1905
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1906
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1907
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1908
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1909
["Speed"] = NumberRange.new(10,10),
1910
})
1911
o62 = Create("Part",{
1912
["Parent"] = o40,
1913
["Transparency"] = 1,
1914
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1915
["Rotation"] = Vector3.new(92.5079422, 3.48240304, -100.481056),
1916
["Anchored"] = true,
1917
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.181574538, 0.981499434, 0.0607419871, 0.031988997, 0.0676312596, -0.997199178, -0.98285675, -0.179122493, -0.0436771102),
1918
["CanCollide"] = false,
1919
["Locked"] = true,
1920
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1921
})
1922
o63 = Create("ParticleEmitter",{
1923
["Parent"] = o62,
1924
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1925
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1926
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1927
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1928
["Speed"] = NumberRange.new(10,10),
1929
})
1930
o64 = Create("Part",{
1931
["Parent"] = o40,
1932
["Transparency"] = 1,
1933
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1934
["Rotation"] = Vector3.new(88.6522217, 4.07366323, -71.6749725),
1935
["Anchored"] = true,
1936
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.313612849, 0.946889937, 0.0710389465, 7.52419567e-007, 0.0748128816, -0.997199416, -0.949550927, 0.312734067, 0.0234616306),
1937
["CanCollide"] = false,
1938
["Locked"] = true,
1939
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1940
})
1941
o65 = Create("ParticleEmitter",{
1942
["Parent"] = o64,
1943
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1944
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1945
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1946
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1947
["Speed"] = NumberRange.new(10,10),
1948
})
1949
o66 = Create("Part",{
1950
["Parent"] = o40,
1951
["Transparency"] = 1,
1952
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1953
["Rotation"] = Vector3.new(88.6522217, 4.07363415, -54.7600021),
1954
["Anchored"] = true,
1955
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.575544894, 0.814678848, 0.0710384399, 0.0217674468, 0.0715756118, -0.997199476, -0.817480505, 0.575478315, 0.0234615691),
1956
["CanCollide"] = false,
1957
["Locked"] = true,
1958
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1959
})
1960
o67 = Create("ParticleEmitter",{
1961
["Parent"] = o66,
1962
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1963
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1964
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1965
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1966
["Speed"] = NumberRange.new(10,10),
1967
})
1968
o68 = Create("Part",{
1969
["Parent"] = o40,
1970
["Transparency"] = 1,
1971
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1972
["Rotation"] = Vector3.new(88.6522293, 4.07363319, -64.9099731),
1973
["Anchored"] = true,
1974
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.422970563, 0.903354645, 0.071038425, 0.00881337654, 0.0742913932, -0.997199476, -0.90610069, 0.422411412, 0.0234615393),
1975
["CanCollide"] = false,
1976
["Locked"] = true,
1977
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1978
})
1979
o69 = Create("ParticleEmitter",{
1980
["Parent"] = o68,
1981
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
1982
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
1983
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
1984
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
1985
["Speed"] = NumberRange.new(10,10),
1986
})
1987
o70 = Create("Part",{
1988
["Parent"] = o40,
1989
["Transparency"] = 1,
1990
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
1991
["Rotation"] = Vector3.new(85.7858124, 0.805993795, 6.10579872),
1992
["Anchored"] = true,
1993
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.994228899, -0.106354184, 0.0140667818, 0.0217652507, 0.0715764016, -0.997199416, 0.105049394, 0.99174881, 0.0734781027),
1994
["CanCollide"] = false,
1995
["Locked"] = true,
1996
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
1997
})
1998
o71 = Create("ParticleEmitter",{
1999
["Parent"] = o70,
2000
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2001
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2002
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2003
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2004
["Speed"] = NumberRange.new(10,10),
2005
})
2006
o72 = Create("Part",{
2007
["Parent"] = o40,
2008
["Transparency"] = 1,
2009
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2010
["Rotation"] = Vector3.new(90.5981674, 4.24854565, -80.5159073),
2011
["Anchored"] = true,
2012
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.164320961, 0.983621061, 0.0740831718, 0.0225036014, 0.0713462606, -0.997199535, -0.986150265, 0.165527821, -0.0104111936),
2013
["CanCollide"] = false,
2014
["Locked"] = true,
2015
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2016
})
2017
o73 = Create("ParticleEmitter",{
2018
["Parent"] = o72,
2019
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2020
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2021
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2022
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2023
["Speed"] = NumberRange.new(10,10),
2024
})
2025
o74 = Create("Part",{
2026
["Parent"] = o40,
2027
["Transparency"] = 1,
2028
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2029
["Rotation"] = Vector3.new(92.5080032, 3.48228145, -108.879791),
2030
["Anchored"] = true,
2031
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.322986245, 0.944452524, 0.0607398674, 0.021769356, 0.07157664, -0.997199357, -0.946153343, -0.32075882, -0.0436782129),
2032
["CanCollide"] = false,
2033
["Locked"] = true,
2034
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2035
})
2036
o75 = Create("ParticleEmitter",{
2037
["Parent"] = o74,
2038
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2039
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2040
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2041
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2042
["Speed"] = NumberRange.new(10,10),
2043
})
2044
o76 = Create("Part",{
2045
["Parent"] = o40,
2046
["Transparency"] = 1,
2047
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2048
["Rotation"] = Vector3.new(90.5981445, 4.24865246, -91.2550812),
2049
["Anchored"] = true,
2050
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.0218434073, 0.997012675, 0.0740850344, 0.0088143833, 0.0742918178, -0.997199416, -0.999722719, -0.0211290903, -0.0104107056),
2051
["CanCollide"] = false,
2052
["Locked"] = true,
2053
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2054
})
2055
o77 = Create("ParticleEmitter",{
2056
["Parent"] = o76,
2057
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2058
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2059
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2060
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2061
["Speed"] = NumberRange.new(10,10),
2062
})
2063
o78 = Create("Part",{
2064
["Parent"] = o40,
2065
["Transparency"] = 1,
2066
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2067
["Rotation"] = Vector3.new(90.5981445, 4.2486515, -81.1051102),
2068
["Anchored"] = true,
2069
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.15419735, 0.985258758, 0.0740850121, 0.0217685215, 0.071575813, -0.997199357, -0.9878003, 0.155377954, -0.0104107037),
2070
["CanCollide"] = false,
2071
["Locked"] = true,
2072
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2073
})
2074
o79 = Create("ParticleEmitter",{
2075
["Parent"] = o78,
2076
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2077
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2078
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2079
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2080
["Speed"] = NumberRange.new(10,10),
2081
})
2082
o80 = Create("Part",{
2083
["Parent"] = o40,
2084
["Transparency"] = 1,
2085
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2086
["Rotation"] = Vector3.new(92.5080032, 3.48227262, -114.811272),
2087
["Anchored"] = true,
2088
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.418855935, 0.906019092, 0.0607397109, 0.0142561644, 0.0734429136, -0.997199357, -0.907940924, -0.416816145, -0.0436781682),
2089
["CanCollide"] = false,
2090
["Locked"] = true,
2091
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2092
})
2093
o81 = Create("ParticleEmitter",{
2094
["Parent"] = o80,
2095
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2096
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2097
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2098
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2099
["Speed"] = NumberRange.new(10,10),
2100
})
2101
o82 = Create("Part",{
2102
["Parent"] = o40,
2103
["Transparency"] = 1,
2104
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2105
["Rotation"] = Vector3.new(92.5080185, 3.48230243, -125.794777),
2106
["Anchored"] = true,
2107
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.583803773, 0.809619486, 0.0607402325, 2.25007534e-006, 0.0748144388, -0.997199237, -0.811894834, -0.582167447, -0.0436785743),
2108
["CanCollide"] = false,
2109
["Locked"] = true,
2110
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2111
})
2112
o83 = Create("ParticleEmitter",{
2113
["Parent"] = o82,
2114
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2115
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2116
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2117
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2118
["Speed"] = NumberRange.new(10,10),
2119
})
2120
o84 = Create("Part",{
2121
["Parent"] = o40,
2122
["Transparency"] = 1,
2123
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2124
["Rotation"] = Vector3.new(90.5981445, 4.24864292, -87.0365982),
2125
["Anchored"] = true,
2126
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.0515560172, 0.995918393, 0.0740848705, 0.0142553989, 0.0734420046, -0.997199357, -0.998568416, 0.0524677485, -0.0104107074),
2127
["CanCollide"] = false,
2128
["Locked"] = true,
2129
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2130
})
2131
o85 = Create("ParticleEmitter",{
2132
["Parent"] = o84,
2133
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2134
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2135
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2136
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2137
["Speed"] = NumberRange.new(10,10),
2138
})
2139
o86 = Create("Part",{
2140
["Parent"] = o40,
2141
["Transparency"] = 1,
2142
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2143
["Rotation"] = Vector3.new(90.5980301, 4.24873638, -72.7063599),
2144
["Anchored"] = true,
2145
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.296452016, 0.952169955, 0.0740864947, 0.0319880433, 0.0676306561, -0.997199297, -0.95451194, 0.297991157, -0.0104086772),
2146
["CanCollide"] = false,
2147
["Locked"] = true,
2148
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2149
})
2150
o87 = Create("ParticleEmitter",{
2151
["Parent"] = o86,
2152
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2153
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2154
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2155
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2156
["Speed"] = NumberRange.new(10,10),
2157
})
2158
o88 = Create("Part",{
2159
["Parent"] = o40,
2160
["Transparency"] = 1,
2161
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2162
["Rotation"] = Vector3.new(90.5981522, 4.24868107, -98.0200729),
2163
["Anchored"] = true,
2164
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.139136612, 0.987498105, 0.0740855336, 1.6912818e-006, 0.0748133883, -0.997199357, -0.990273178, -0.13874647, -0.0104108211),
2165
["CanCollide"] = false,
2166
["Locked"] = true,
2167
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2168
})
2169
o89 = Create("ParticleEmitter",{
2170
["Parent"] = o88,
2171
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2172
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2173
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2174
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2175
["Speed"] = NumberRange.new(10,10),
2176
})
2177
o90 = Create("Part",{
2178
["Parent"] = o40,
2179
["Transparency"] = 1,
2180
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2181
["Rotation"] = Vector3.new(86.5763168, 2.58728242, -20.1215248),
2182
["Anchored"] = true,
2183
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.938007891, 0.343661755, 0.0451412499, 0.0217661932, 0.0715755075, -0.997199476, -0.345929593, 0.93636179, 0.0596581995),
2184
["CanCollide"] = false,
2185
["Locked"] = true,
2186
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2187
})
2188
o91 = Create("ParticleEmitter",{
2189
["Parent"] = o90,
2190
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2191
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2192
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2193
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2194
["Speed"] = NumberRange.new(10,10),
2195
})
2196
o92 = Create("Part",{
2197
["Parent"] = o40,
2198
["Transparency"] = 1,
2199
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2200
["Rotation"] = Vector3.new(88.1726608, 3.88256121, -39.4587975),
2201
["Anchored"] = true,
2202
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.770309925, 0.634064615, 0.067711629, 0.0319868773, 0.0676303059, -0.997199357, -0.636866927, 0.770317078, 0.0318146087),
2203
["CanCollide"] = false,
2204
["Locked"] = true,
2205
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2206
})
2207
o93 = Create("ParticleEmitter",{
2208
["Parent"] = o92,
2209
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2210
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2211
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2212
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2213
["Speed"] = NumberRange.new(10,10),
2214
})
2215
o94 = Create("Part",{
2216
["Parent"] = o40,
2217
["Transparency"] = 1,
2218
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2219
["Rotation"] = Vector3.new(86.5764236, 2.58725405, -19.5322876),
2220
["Anchored"] = true,
2221
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.941492617, 0.33399722, 0.0451407582, 0.0225012712, 0.0713459849, -0.997199714, -0.336281836, 0.93987, 0.0596563518),
2222
["CanCollide"] = false,
2223
["Locked"] = true,
2224
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2225
})
2226
o95 = Create("ParticleEmitter",{
2227
["Parent"] = o94,
2228
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2229
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2230
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2231
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2232
["Speed"] = NumberRange.new(10,10),
2233
})
2234
o96 = Create("Part",{
2235
["Parent"] = o40,
2236
["Transparency"] = 1,
2237
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2238
["Rotation"] = Vector3.new(85.7859116, 0.806017935, 6.69499683),
2239
["Anchored"] = true,
2240
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.993082643, -0.116572484, 0.0140672028, 0.0225003324, 0.0713469088, -0.997199535, 0.115242243, 0.990616262, 0.0734762773),
2241
["CanCollide"] = false,
2242
["Locked"] = true,
2243
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2244
})
2245
o97 = Create("ParticleEmitter",{
2246
["Parent"] = o96,
2247
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2248
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2249
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2250
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2251
["Speed"] = NumberRange.new(10,10),
2252
})
2253
o98 = Create("Part",{
2254
["Parent"] = o40,
2255
["Transparency"] = 1,
2256
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2257
["Rotation"] = Vector3.new(85.78582, 0.805994451, 0.174329057),
2258
["Anchored"] = true,
2259
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.999896467, -0.00304231024, 0.014066793, 0.0142521039, 0.0734422281, -0.997199416, 0.00200076075, 0.997294903, 0.0734779537),
2260
["CanCollide"] = false,
2261
["Locked"] = true,
2262
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2263
})
2264
o99 = Create("ParticleEmitter",{
2265
["Parent"] = o98,
2266
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2267
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2268
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2269
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2270
["Speed"] = NumberRange.new(10,10),
2271
})
2272
o100 = Create("Part",{
2273
["Parent"] = o40,
2274
["Transparency"] = 1,
2275
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2276
["Rotation"] = Vector3.new(86.5761871, 2.58722425, -11.7227564),
2277
["Anchored"] = true,
2278
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.978144228, 0.202969119, 0.0451402366, 0.0319857337, 0.067630738, -0.997199416, -0.205453068, 0.976846695, 0.0596604981),
2279
["CanCollide"] = false,
2280
["Locked"] = true,
2281
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2282
})
2283
o101 = Create("ParticleEmitter",{
2284
["Parent"] = o100,
2285
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2286
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2287
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2288
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2289
["Speed"] = NumberRange.new(10,10),
2290
})
2291
o102 = Create("Part",{
2292
["Parent"] = o40,
2293
["Transparency"] = 1,
2294
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2295
["Rotation"] = Vector3.new(85.7857819, 0.806004465, -10.809165),
2296
["Anchored"] = true,
2297
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.982160211, 0.187519893, 0.0140669681, -1.57952309e-006, 0.0748129785, -0.997199416, -0.188046604, 0.979407728, 0.073478587),
2298
["CanCollide"] = false,
2299
["Locked"] = true,
2300
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2301
})
2302
o103 = Create("ParticleEmitter",{
2303
["Parent"] = o102,
2304
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2305
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2306
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2307
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2308
["Speed"] = NumberRange.new(10,10),
2309
})
2310
o104 = Create("Part",{
2311
["Parent"] = o40,
2312
["Transparency"] = 1,
2313
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2314
["Rotation"] = Vector3.new(85.7858124, 0.805993795, -4.04415083),
2315
["Anchored"] = true,
2316
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.99741137, 0.0705181807, 0.0140667818, 0.00881107524, 0.0742917582, -0.997199416, -0.0713654235, 0.994740188, 0.0734780729),
2317
["CanCollide"] = false,
2318
["Locked"] = true,
2319
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2320
})
2321
o105 = Create("ParticleEmitter",{
2322
["Parent"] = o104,
2323
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2324
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2325
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2326
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2327
["Speed"] = NumberRange.new(10,10),
2328
})
2329
o106 = Create("Part",{
2330
["Parent"] = o40,
2331
["Transparency"] = 1,
2332
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2333
["Rotation"] = Vector3.new(86.5763245, 2.5872798, -26.05299),
2334
["Anchored"] = true,
2335
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.897472501, 0.438754529, 0.0451412052, 0.0142531395, 0.0734415054, -0.997199476, -0.440840036, 0.895600855, 0.0596581101),
2336
["CanCollide"] = false,
2337
["Locked"] = true,
2338
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2339
})
2340
o107 = Create("ParticleEmitter",{
2341
["Parent"] = o106,
2342
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2343
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2344
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2345
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2346
["Speed"] = NumberRange.new(10,10),
2347
})
2348
o108 = Create("Part",{
2349
["Parent"] = o40,
2350
["Transparency"] = 1,
2351
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2352
["Rotation"] = Vector3.new(86.5763168, 2.58728147, -30.271471),
2353
["Anchored"] = true,
2354
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.862766325, 0.503583789, 0.045141235, 0.00881213322, 0.07429111, -0.997199476, -0.505526066, 0.860746384, 0.0596582144),
2355
["CanCollide"] = false,
2356
["Locked"] = true,
2357
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2358
})
2359
o109 = Create("ParticleEmitter",{
2360
["Parent"] = o108,
2361
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2362
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2363
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2364
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2365
["Speed"] = NumberRange.new(10,10),
2366
})
2367
o110 = Create("Part",{
2368
["Parent"] = o40,
2369
["Transparency"] = 1,
2370
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2371
["Rotation"] = Vector3.new(85.7857132, 0.805881739, 14.504549),
2372
["Anchored"] = true,
2373
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.968032002, -0.250432104, 0.0140648261, 0.0319848694, 0.0676316917, -0.997199297, 0.248779178, 0.965768933, 0.0734796599),
2374
["CanCollide"] = false,
2375
["Locked"] = true,
2376
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2377
})
2378
o111 = Create("ParticleEmitter",{
2379
["Parent"] = o110,
2380
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2381
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2382
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2383
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2384
["Speed"] = NumberRange.new(10,10),
2385
})
2386
o112 = Create("Part",{
2387
["Parent"] = o40,
2388
["Transparency"] = 1,
2389
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2390
["Rotation"] = Vector3.new(88.1727982, 3.88255501, -58.0075073),
2391
["Anchored"] = true,
2392
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.528592288, 0.846171021, 0.0677115172, 0.00881337747, 0.0742911473, -0.997199416, -0.848830044, 0.527707875, 0.03181215),
2393
["CanCollide"] = false,
2394
["Locked"] = true,
2395
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2396
})
2397
o113 = Create("ParticleEmitter",{
2398
["Parent"] = o112,
2399
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2400
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2401
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2402
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2403
["Speed"] = NumberRange.new(10,10),
2404
})
2405
o114 = Create("Part",{
2406
["Parent"] = o40,
2407
["Transparency"] = 1,
2408
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2409
["Rotation"] = Vector3.new(92.5079803, 3.48217797, -108.290573),
2410
["Anchored"] = true,
2411
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.3132568, 0.947724164, 0.0607380643, 0.0225044452, 0.0713471472, -0.997199416, -0.949401677, -0.311012, -0.0436778031),
2412
["CanCollide"] = false,
2413
["Locked"] = true,
2414
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2415
})
2416
o115 = Create("ParticleEmitter",{
2417
["Parent"] = o114,
2418
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2419
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2420
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2421
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2422
["Speed"] = NumberRange.new(10,10),
2423
})
2424
o116 = Create("Part",{
2425
["Parent"] = o40,
2426
["Transparency"] = 1,
2427
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2428
["Rotation"] = Vector3.new(88.1727982, 3.88255286, -47.8575058),
2429
["Anchored"] = true,
2430
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.669436872, 0.73977679, 0.06771148, 0.0217674114, 0.0715753064, -0.997199416, -0.742550015, 0.669034898, 0.0318121836),
2431
["CanCollide"] = false,
2432
["Locked"] = true,
2433
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2434
})
2435
o117 = Create("ParticleEmitter",{
2436
["Parent"] = o116,
2437
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2438
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2439
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2440
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2441
["Speed"] = NumberRange.new(10,10),
2442
})
2443
o118 = Create("Part",{
2444
["Parent"] = o40,
2445
["Transparency"] = 1,
2446
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2447
["Rotation"] = Vector3.new(88.1727905, 3.88258696, -64.7724915),
2448
["Anchored"] = true,
2449
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.42523545, 0.902546406, 0.067712076, 7.84173608e-007, 0.074812673, -0.997199357, -0.905082703, 0.424043894, 0.0318123475),
2450
["CanCollide"] = false,
2451
["Locked"] = true,
2452
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2453
})
2454
o119 = Create("ParticleEmitter",{
2455
["Parent"] = o118,
2456
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2457
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2458
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2459
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2460
["Speed"] = NumberRange.new(10,10),
2461
})
2462
o120 = Create("Part",{
2463
["Parent"] = o40,
2464
["Transparency"] = 1,
2465
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2466
["Rotation"] = Vector3.new(88.1728058, 3.88254642, -53.78899),
2467
["Anchored"] = true,
2468
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.589404881, 0.80499506, 0.0677113682, 0.0142543623, 0.0734413564, -0.997199476, -0.807711899, 0.588718295, 0.0318120643),
2469
["CanCollide"] = false,
2470
["Locked"] = true,
2471
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2472
})
2473
o121 = Create("ParticleEmitter",{
2474
["Parent"] = o120,
2475
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2476
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2477
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2478
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2479
["Speed"] = NumberRange.new(10,10),
2480
})
2481
o122 = Create("Part",{
2482
["Parent"] = o40,
2483
["Transparency"] = 1,
2484
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2485
["Rotation"] = Vector3.new(92.5080032, 3.48228097, -119.029747),
2486
["Anchored"] = true,
2487
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.484367788, 0.872753441, 0.0607398599, 0.00881505013, 0.0742927566, -0.997199357, -0.874820292, -0.482474804, -0.043678198),
2488
["CanCollide"] = false,
2489
["Locked"] = true,
2490
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2491
})
2492
o123 = Create("ParticleEmitter",{
2493
["Parent"] = o122,
2494
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2495
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2496
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2497
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2498
["Speed"] = NumberRange.new(10,10),
2499
})
2500
o124 = Create("Part",{
2501
["Parent"] = o40,
2502
["Transparency"] = 1,
2503
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2504
["Rotation"] = Vector3.new(86.5762939, 2.58730626, -37.0364799),
2505
["Anchored"] = true,
2506
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.797438562, 0.601709425, 0.0451416671, -4.47034836e-007, 0.0748125091, -0.997199535, -0.603400409, 0.795203745, 0.0596586503),
2507
["CanCollide"] = false,
2508
["Locked"] = true,
2509
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2510
})
2511
o125 = Create("ParticleEmitter",{
2512
["Parent"] = o124,
2513
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2514
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2515
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2516
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2517
["Speed"] = NumberRange.new(10,10),
2518
})
2519
o126 = Create("Part",{
2520
["Parent"] = o40,
2521
["Transparency"] = 1,
2522
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2523
["Rotation"] = Vector3.new(88.1728821, 3.88248229, -47.2683334),
2524
["Anchored"] = true,
2525
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.67700851, 0.732853889, 0.0677102506, 0.022502467, 0.0713458061, -0.997199595, -0.735631049, 0.676635146, 0.0318107568),
2526
["CanCollide"] = false,
2527
["Locked"] = true,
2528
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2529
})
2530
o127 = Create("ParticleEmitter",{
2531
["Parent"] = o126,
2532
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2533
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2534
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2535
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2536
["Speed"] = NumberRange.new(10,10),
2537
})
2538
o128 = Create("Part",{
2539
["Parent"] = o40,
2540
["Transparency"] = 1,
2541
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2542
["Rotation"] = Vector3.new(94.2613144, -0.499827653, -175.694702),
2543
["Anchored"] = true,
2544
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.997140229, 0.0750680491, -0.00872352719, 0.0142532885, 0.0734430179, -0.997199416, -0.0742171258, -0.994470239, -0.0743027255),
2545
["CanCollide"] = false,
2546
["Locked"] = true,
2547
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2548
})
2549
o129 = Create("ParticleEmitter",{
2550
["Parent"] = o128,
2551
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2552
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2553
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2554
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2555
["Speed"] = NumberRange.new(10,10),
2556
})
2557
o130 = Create("Part",{
2558
["Parent"] = o40,
2559
["Transparency"] = 1,
2560
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2561
["Rotation"] = Vector3.new(94.261322, -0.499826789, -179.913193),
2562
["Anchored"] = true,
2563
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.999960899, 0.00151503831, -0.00872351229, 0.00881218165, 0.0742927045, -0.997199416, -0.000862813671, -0.997235537, -0.0743029192),
2564
["CanCollide"] = false,
2565
["Locked"] = true,
2566
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2567
})
2568
o131 = Create("ParticleEmitter",{
2569
["Parent"] = o130,
2570
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2571
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2572
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2573
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2574
["Speed"] = NumberRange.new(10,10),
2575
})
2576
o132 = Create("Part",{
2577
["Parent"] = o40,
2578
["Transparency"] = 1,
2579
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2580
["Rotation"] = Vector3.new(94.2613602, -0.499834061, 173.321823),
2581
["Anchored"] = true,
2582
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.993177116, -0.116288163, -0.00872363895, -5.81145287e-007, 0.0748140141, -0.997199237, 0.116614863, -0.990393817, -0.0743034109),
2583
["CanCollide"] = false,
2584
["Locked"] = true,
2585
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2586
})
2587
o133 = Create("ParticleEmitter",{
2588
["Parent"] = o132,
2589
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2590
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2591
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2592
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2593
["Speed"] = NumberRange.new(10,10),
2594
})
2595
o134 = Create("Part",{
2596
["Parent"] = o40,
2597
["Transparency"] = 1,
2598
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2599
["Rotation"] = Vector3.new(92.5135651, 3.47827554, -114.90554),
2600
["Anchored"] = true,
2601
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.42034781, 0.905332446, 0.0606700778, 0.014252793, 0.07344383, -0.997199297, -0.907251179, -0.41830501, -0.0437752716),
2602
["CanCollide"] = false,
2603
["Locked"] = true,
2604
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2605
})
2606
o135 = Create("ParticleEmitter",{
2607
["Parent"] = o134,
2608
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2609
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2610
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2611
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2612
["Speed"] = NumberRange.new(10,10),
2613
})
2614
o136 = Create("Part",{
2615
["Parent"] = o40,
2616
["Transparency"] = 1,
2617
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2618
["Rotation"] = Vector3.new(93.6014633, -2.333462, 147.101608),
2619
["Anchored"] = true,
2620
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.838938951, -0.542700648, -0.0407153368, -1.86264515e-008, 0.0748138502, -0.997199237, 0.544225812, -0.836587727, -0.0627640337),
2621
["CanCollide"] = false,
2622
["Locked"] = true,
2623
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2624
})
2625
o137 = Create("ParticleEmitter",{
2626
["Parent"] = o136,
2627
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2628
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2629
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2630
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2631
["Speed"] = NumberRange.new(10,10),
2632
})
2633
o138 = Create("Part",{
2634
["Parent"] = o40,
2635
["Transparency"] = 1,
2636
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2637
["Rotation"] = Vector3.new(92.1031647, -3.74052405, 119.376282),
2638
["Anchored"] = true,
2639
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.489498109, -0.869560719, -0.0652380958, 5.23403287e-007, 0.0748140067, -0.997199237, 0.87200439, -0.488126427, -0.0366207063),
2640
["CanCollide"] = false,
2641
["Locked"] = true,
2642
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2643
})
2644
o139 = Create("ParticleEmitter",{
2645
["Parent"] = o138,
2646
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2647
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2648
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2649
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2650
["Speed"] = NumberRange.new(10,10),
2651
})
2652
o140 = Create("Part",{
2653
["Parent"] = o40,
2654
["Transparency"] = 1,
2655
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2656
["Rotation"] = Vector3.new(93.6014328, -2.33343935, 158.085083),
2657
["Anchored"] = true,
2658
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.926969826, -0.372919947, -0.0407149419, 0.01425381, 0.073442772, -0.997199357, 0.374865085, -0.924952507, -0.0627634823),
2659
["CanCollide"] = false,
2660
["Locked"] = true,
2661
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2662
})
2663
o141 = Create("ParticleEmitter",{
2664
["Parent"] = o140,
2665
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2666
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2667
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2668
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2669
["Speed"] = NumberRange.new(10,10),
2670
})
2671
o142 = Create("Part",{
2672
["Parent"] = o40,
2673
["Transparency"] = 1,
2674
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2675
["Rotation"] = Vector3.new(92.1031418, -3.74048948, 130.359772),
2676
["Anchored"] = true,
2677
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.646205604, -0.760369897, -0.0652374923, 0.0142543968, 0.0734428242, -0.997199357, 0.763030291, -0.645324588, -0.0366203785),
2678
["CanCollide"] = false,
2679
["Locked"] = true,
2680
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2681
})
2682
o143 = Create("ParticleEmitter",{
2683
["Parent"] = o142,
2684
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2685
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2686
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2687
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2688
["Speed"] = NumberRange.new(10,10),
2689
})
2690
o144 = Create("Part",{
2691
["Parent"] = o40,
2692
["Transparency"] = 1,
2693
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2694
["Rotation"] = Vector3.new(92.1032867, -3.74049091, 144.690002),
2695
["Anchored"] = true,
2696
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.814298451, -0.576768756, -0.0652375147, 0.0319872722, 0.067631647, -0.997199297, 0.579564393, -0.814103067, -0.0366229154),
2697
["CanCollide"] = false,
2698
["Locked"] = true,
2699
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2700
})
2701
o145 = Create("ParticleEmitter",{
2702
["Parent"] = o144,
2703
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2704
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2705
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2706
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2707
["Speed"] = NumberRange.new(10,10),
2708
})
2709
o146 = Create("Part",{
2710
["Parent"] = o40,
2711
["Transparency"] = 1,
2712
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2713
["Rotation"] = Vector3.new(93.6015625, -2.33337355, 172.415314),
2714
["Anchored"] = true,
2715
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.990429044, -0.131882057, -0.0407137945, 0.0319866985, 0.0676317811, -0.997199297, 0.134265944, -0.988955557, -0.062765792),
2716
["CanCollide"] = false,
2717
["Locked"] = true,
2718
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2719
})
2720
o147 = Create("ParticleEmitter",{
2721
["Parent"] = o146,
2722
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2723
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2724
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2725
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2726
["Speed"] = NumberRange.new(10,10),
2727
})
2728
o148 = Create("Part",{
2729
["Parent"] = o40,
2730
["Transparency"] = 1,
2731
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2732
["Rotation"] = Vector3.new(92.1031494, -3.7404964, 136.291245),
2733
["Anchored"] = true,
2734
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.721321881, -0.689520895, -0.0652376115, 0.0217675827, 0.0715767443, -0.997199416, 0.692257822, -0.72072053, -0.0366205126),
2735
["CanCollide"] = false,
2736
["Locked"] = true,
2737
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2738
})
2739
o149 = Create("ParticleEmitter",{
2740
["Parent"] = o148,
2741
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2742
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2743
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2744
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2745
["Speed"] = NumberRange.new(10,10),
2746
})
2747
o150 = Create("Part",{
2748
["Parent"] = o40,
2749
["Transparency"] = 1,
2750
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2751
["Rotation"] = Vector3.new(93.6013336, -2.33342433, 164.605774),
2752
["Anchored"] = true,
2753
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.963322699, -0.265238851, -0.0407146811, 0.0225021094, 0.0713472068, -0.997199535, 0.267400384, -0.961539388, -0.0627617538),
2754
["CanCollide"] = false,
2755
["Locked"] = true,
2756
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2757
})
2758
o151 = Create("ParticleEmitter",{
2759
["Parent"] = o150,
2760
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2761
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2762
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2763
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2764
["Speed"] = NumberRange.new(10,10),
2765
})
2766
o152 = Create("Part",{
2767
["Parent"] = o40,
2768
["Transparency"] = 1,
2769
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2770
["Rotation"] = Vector3.new(93.6014404, -2.33344245, 164.016571),
2771
["Anchored"] = true,
2772
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.960544229, -0.275131136, -0.0407149941, 0.0217670128, 0.071576722, -0.997199357, 0.277274162, -0.958738506, -0.0627636239),
2773
["CanCollide"] = false,
2774
["Locked"] = true,
2775
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2776
})
2777
o153 = Create("ParticleEmitter",{
2778
["Parent"] = o152,
2779
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2780
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2781
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2782
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2783
["Speed"] = NumberRange.new(10,10),
2784
})
2785
o154 = Create("Part",{
2786
["Parent"] = o40,
2787
["Transparency"] = 1,
2788
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2789
["Rotation"] = Vector3.new(93.6014404, -2.33344316, 153.866592),
2790
["Anchored"] = true,
2791
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.897026539, -0.440097481, -0.040715009, 0.00881273672, 0.0742924362, -0.997199357, 0.441888869, -0.894871473, -0.0627636313),
2792
["CanCollide"] = false,
2793
["Locked"] = true,
2794
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2795
})
2796
o155 = Create("ParticleEmitter",{
2797
["Parent"] = o154,
2798
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2799
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2800
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2801
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2802
["Speed"] = NumberRange.new(10,10),
2803
})
2804
o156 = Create("Part",{
2805
["Parent"] = o40,
2806
["Transparency"] = 1,
2807
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2808
["Rotation"] = Vector3.new(92.5135727, 3.47828579, -108.974068),
2809
["Anchored"] = true,
2810
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.324541301, 0.943923831, 0.0606702566, 0.0217660815, 0.0715779364, -0.997199297, -0.945621192, -0.322310954, -0.0437753312),
2811
["CanCollide"] = false,
2812
["Locked"] = true,
2813
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2814
})
2815
o157 = Create("ParticleEmitter",{
2816
["Parent"] = o156,
2817
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2818
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2819
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2820
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2821
["Speed"] = NumberRange.new(10,10),
2822
})
2823
o158 = Create("Part",{
2824
["Parent"] = o40,
2825
["Transparency"] = 1,
2826
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2827
["Rotation"] = Vector3.new(94.2613297, -0.499825507, -169.763214),
2828
["Anchored"] = true,
2829
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.984044254, 0.177709699, -0.00872348994, 0.0217664987, 0.0715771168, -0.997199357, -0.176587358, -0.981476426, -0.0743029416),
2830
["CanCollide"] = false,
2831
["Locked"] = true,
2832
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2833
})
2834
o159 = Create("ParticleEmitter",{
2835
["Parent"] = o158,
2836
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2837
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2838
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2839
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2840
["Speed"] = NumberRange.new(10,10),
2841
})
2842
o160 = Create("Part",{
2843
["Parent"] = o40,
2844
["Transparency"] = 1,
2845
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2846
["Rotation"] = Vector3.new(94.2614059, -0.499709398, -161.364487),
2847
["Anchored"] = true,
2848
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.947534502, 0.31953451, -0.00872146338, 0.0319862142, 0.0676321536, -0.997199357, -0.318049282, -0.945157945, -0.0743042678),
2849
["CanCollide"] = false,
2850
["Locked"] = true,
2851
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2852
})
2853
o161 = Create("ParticleEmitter",{
2854
["Parent"] = o160,
2855
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2856
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2857
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2858
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2859
["Speed"] = NumberRange.new(10,10),
2860
})
2861
o162 = Create("Part",{
2862
["Parent"] = o40,
2863
["Transparency"] = 1,
2864
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2865
["Rotation"] = Vector3.new(94.2612228, -0.499854535, -169.174011),
2866
["Anchored"] = true,
2867
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.982164741, 0.187819839, -0.00872399658, 0.0225015879, 0.0713475794, -0.997199476, -0.186671242, -0.979608715, -0.0743010864),
2868
["CanCollide"] = false,
2869
["Locked"] = true,
2870
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2871
})
2872
o163 = Create("ParticleEmitter",{
2873
["Parent"] = o162,
2874
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2875
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2876
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2877
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2878
["Speed"] = NumberRange.new(10,10),
2879
})
2880
o164 = Create("Part",{
2881
["Parent"] = o40,
2882
["Transparency"] = 1,
2883
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2884
["Rotation"] = Vector3.new(92.1030655, -3.74043012, 136.880478),
2885
["Anchored"] = true,
2886
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.7283746, -0.682066679, -0.0652364641, 0.0225026757, 0.0713472888, -0.997199476, 0.684809685, -0.727801323, -0.0366190374),
2887
["CanCollide"] = false,
2888
["Locked"] = true,
2889
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2890
})
2891
o165 = Create("ParticleEmitter",{
2892
["Parent"] = o164,
2893
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2894
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2895
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2896
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2897
["Speed"] = NumberRange.new(10,10),
2898
})
2899
o166 = Create("Part",{
2900
["Parent"] = o40,
2901
["Transparency"] = 1,
2902
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2903
["Rotation"] = Vector3.new(93.7929153, 2.0070765, -152.154175),
2904
["Anchored"] = true,
2905
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.883665204, 0.466807544, 0.0350229293, -9.01520252e-007, 0.0748142153, -0.997199297, -0.468119651, -0.881188631, -0.0661100745),
2906
["CanCollide"] = false,
2907
["Locked"] = true,
2908
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2909
})
2910
o167 = Create("ParticleEmitter",{
2911
["Parent"] = o166,
2912
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2913
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2914
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2915
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2916
["Speed"] = NumberRange.new(10,10),
2917
})
2918
o168 = Create("Part",{
2919
["Parent"] = o40,
2920
["Transparency"] = 1,
2921
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2922
["Rotation"] = Vector3.new(93.7928925, 2.00720692, -126.840439),
2923
["Anchored"] = true,
2924
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.599220753, 0.799817324, 0.0350252055, 0.031986054, 0.067632474, -0.997199237, -0.79994458, -0.596421063, -0.0661095679),
2925
["CanCollide"] = false,
2926
["Locked"] = true,
2927
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2928
})
2929
o169 = Create("ParticleEmitter",{
2930
["Parent"] = o168,
2931
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2932
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2933
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2934
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2935
["Speed"] = NumberRange.new(10,10),
2936
})
2937
o170 = Create("Part",{
2938
["Parent"] = o40,
2939
["Transparency"] = 1,
2940
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2941
["Rotation"] = Vector3.new(92.513504, 3.47841239, -100.575317),
2942
["Anchored"] = true,
2943
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.18318972, 0.981203556, 0.060672462, 0.0319859311, 0.0676330775, -0.997199237, -0.982557118, -0.180735588, -0.0437742099),
2944
["CanCollide"] = false,
2945
["Locked"] = true,
2946
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2947
})
2948
o171 = Create("ParticleEmitter",{
2949
["Parent"] = o170,
2950
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2951
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2952
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2953
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2954
["Speed"] = NumberRange.new(10,10),
2955
})
2956
o172 = Create("Part",{
2957
["Parent"] = o40,
2958
["Transparency"] = 1,
2959
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2960
["Rotation"] = Vector3.new(93.7928848, 2.00706434, -135.239212),
2961
["Anchored"] = true,
2962
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.709617138, 0.703716636, 0.035022717, 0.0217662603, 0.0715773031, -0.997199297, -0.704251409, -0.706866026, -0.0661095232),
2963
["CanCollide"] = false,
2964
["Locked"] = true,
2965
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2966
})
2967
o173 = Create("ParticleEmitter",{
2968
["Parent"] = o172,
2969
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2970
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2971
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2972
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2973
["Speed"] = NumberRange.new(10,10),
2974
})
2975
o174 = Create("Part",{
2976
["Parent"] = o40,
2977
["Transparency"] = 1,
2978
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2979
["Rotation"] = Vector3.new(92.5135727, 3.47828293, -119.124016),
2980
["Anchored"] = true,
2981
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.485805035, 0.87195915, 0.0606702045, 0.00881163031, 0.0742934197, -0.997199297, -0.874022782, -0.483909011, -0.0437753089),
2982
["CanCollide"] = false,
2983
["Locked"] = true,
2984
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
2985
})
2986
o175 = Create("ParticleEmitter",{
2987
["Parent"] = o174,
2988
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
2989
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
2990
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
2991
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
2992
["Speed"] = NumberRange.new(10,10),
2993
})
2994
o176 = Create("Part",{
2995
["Parent"] = o40,
2996
["Transparency"] = 1,
2997
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
2998
["Rotation"] = Vector3.new(93.7928848, 2.00706506, -145.38916),
2999
["Anchored"] = true,
3000
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.822523952, 0.567651212, 0.0350227281, 0.00881189853, 0.0742928758, -0.997199297, -0.568662286, -0.819910288, -0.0661095232),
3001
["CanCollide"] = false,
3002
["Locked"] = true,
3003
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3004
})
3005
o177 = Create("ParticleEmitter",{
3006
["Parent"] = o176,
3007
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3008
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3009
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3010
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3011
["Speed"] = NumberRange.new(10,10),
3012
})
3013
o178 = Create("Part",{
3014
["Parent"] = o40,
3015
["Transparency"] = 1,
3016
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3017
["Rotation"] = Vector3.new(94.2905273, 0.0145034799, -154.495163),
3018
["Anchored"] = true,
3019
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.902548909, 0.430587351, 0.000253133476, 0.0319863558, 0.0676319897, -0.997199237, -0.429397821, -0.90001142, -0.0748138651),
3020
["CanCollide"] = false,
3021
["Locked"] = true,
3022
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3023
})
3024
o179 = Create("ParticleEmitter",{
3025
["Parent"] = o178,
3026
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3027
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3028
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3029
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3030
["Speed"] = NumberRange.new(10,10),
3031
})
3032
o180 = Create("Part",{
3033
["Parent"] = o40,
3034
["Transparency"] = 1,
3035
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3036
["Rotation"] = Vector3.new(93.7928162, 2.00698066, -134.649948),
3037
["Anchored"] = true,
3038
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.70234257, 0.710977197, 0.0350212567, 0.0225013494, 0.0713477731, -0.997199535, -0.711483479, -0.699586332, -0.0661083013),
3039
["CanCollide"] = false,
3040
["Locked"] = true,
3041
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3042
})
3043
o181 = Create("ParticleEmitter",{
3044
["Parent"] = o180,
3045
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3046
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3047
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3048
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3049
["Speed"] = NumberRange.new(10,10),
3050
})
3051
o182 = Create("Part",{
3052
["Parent"] = o40,
3053
["Transparency"] = 1,
3054
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3055
["Rotation"] = Vector3.new(93.7928848, 2.00705934, -141.17067),
3056
["Anchored"] = true,
3057
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.7785393, 0.626618087, 0.0350226313, 0.0142530277, 0.0734432712, -0.997199297, -0.627434313, -0.775858164, -0.0661094338),
3058
["CanCollide"] = false,
3059
["Locked"] = true,
3060
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3061
})
3062
o183 = Create("ParticleEmitter",{
3063
["Parent"] = o182,
3064
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3065
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3066
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3067
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3068
["Speed"] = NumberRange.new(10,10),
3069
})
3070
o184 = Create("Part",{
3071
["Parent"] = o40,
3072
["Transparency"] = 1,
3073
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3074
["Rotation"] = Vector3.new(92.5135956, 3.47830582, -125.889046),
3075
["Anchored"] = true,
3076
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.585137486, 0.808661342, 0.0606706068, -1.21444464e-006, 0.074814707, -0.997199297, -0.810934246, -0.583497524, -0.0437757187),
3077
["CanCollide"] = false,
3078
["Locked"] = true,
3079
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3080
})
3081
o185 = Create("ParticleEmitter",{
3082
["Parent"] = o184,
3083
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3084
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3085
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3086
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3087
["Speed"] = NumberRange.new(10,10),
3088
})
3089
o186 = Create("Part",{
3090
["Parent"] = o40,
3091
["Transparency"] = 1,
3092
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3093
["Rotation"] = Vector3.new(92.5135498, 3.47817874, -108.384872),
3094
["Anchored"] = true,
3095
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.314817429, 0.947211266, 0.0606683902, 0.022501193, 0.0713484362, -0.997199476, -0.948885441, -0.312570006, -0.0437749177),
3096
["CanCollide"] = false,
3097
["Locked"] = true,
3098
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3099
})
3100
o187 = Create("ParticleEmitter",{
3101
["Parent"] = o186,
3102
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3103
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3104
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3105
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3106
["Speed"] = NumberRange.new(10,10),
3107
})
3108
o188 = Create("Part",{
3109
["Parent"] = o40,
3110
["Transparency"] = 1,
3111
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3112
["Rotation"] = Vector3.new(94.2904892, 0.0143754138, -179.808853),
3113
["Anchored"] = true,
3114
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.999994397, 0.00333616044, 0.000250898302, -4.09781933e-007, 0.0748139843, -0.997199297, -0.00334567297, -0.997191966, -0.0748133287),
3115
["CanCollide"] = false,
3116
["Locked"] = true,
3117
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3118
})
3119
o189 = Create("ParticleEmitter",{
3120
["Parent"] = o188,
3121
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3122
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3123
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3124
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3125
["Speed"] = NumberRange.new(10,10),
3126
})
3127
o190 = Create("Part",{
3128
["Parent"] = o40,
3129
["Transparency"] = 1,
3130
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3131
["Rotation"] = Vector3.new(94.290451, 0.0143788289, -168.825333),
3132
["Anchored"] = true,
3133
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.981041014, 0.193800449, 0.000250957906, 0.0142534375, 0.0734428689, -0.997199416, -0.193275839, -0.978288114, -0.0748125464),
3134
["CanCollide"] = false,
3135
["Locked"] = true,
3136
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3137
})
3138
o191 = Create("ParticleEmitter",{
3139
["Parent"] = o190,
3140
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3141
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3142
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3143
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3144
["Speed"] = NumberRange.new(10,10),
3145
})
3146
o192 = Create("Part",{
3147
["Parent"] = o40,
3148
["Transparency"] = 1,
3149
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3150
["Rotation"] = Vector3.new(92.1031494, -3.7404964, 126.141289),
3151
["Anchored"] = true,
3152
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.588522196, -0.805844843, -0.0652376115, 0.00881329924, 0.0742925704, -0.997199416, 0.808432996, -0.587447941, -0.0366205201),
3153
["CanCollide"] = false,
3154
["Locked"] = true,
3155
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3156
})
3157
o193 = Create("ParticleEmitter",{
3158
["Parent"] = o192,
3159
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3160
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3161
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3162
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3163
["Speed"] = NumberRange.new(10,10),
3164
})
3165
o194 = Create("Part",{
3166
["Parent"] = o40,
3167
["Transparency"] = 1,
3168
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3169
["Rotation"] = Vector3.new(94.2903519, 0.0143369939, -162.304688),
3170
["Anchored"] = true,
3171
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.952686429, 0.303955168, 0.000250227749, 0.022501722, 0.0713474005, -0.997199476, -0.303121299, -0.950010955, -0.0748109668),
3172
["CanCollide"] = false,
3173
["Locked"] = true,
3174
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3175
})
3176
o195 = Create("ParticleEmitter",{
3177
["Parent"] = o194,
3178
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3179
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3180
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3181
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3182
["Speed"] = NumberRange.new(10,10),
3183
})
3184
o196 = Create("Part",{
3185
["Parent"] = o40,
3186
["Transparency"] = 1,
3187
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3188
["Rotation"] = Vector3.new(94.2904587, 0.014379683, -173.043854),
3189
["Anchored"] = true,
3190
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.992639124, 0.12110962, 0.000250972807, 0.00881235301, 0.0742925704, -0.997199416, -0.120788924, -0.989854991, -0.0748127401),
3191
["CanCollide"] = false,
3192
["Locked"] = true,
3193
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3194
})
3195
o197 = Create("ParticleEmitter",{
3196
["Parent"] = o196,
3197
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3198
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3199
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3200
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3201
["Speed"] = NumberRange.new(10,10),
3202
})
3203
o198 = Create("Part",{
3204
["Parent"] = o40,
3205
["Transparency"] = 1,
3206
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3207
["Rotation"] = Vector3.new(94.2904587, 0.0143822441, -162.89386),
3208
["Anchored"] = true,
3209
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.955761433, 0.294142872, 0.000251017511, 0.0217666402, 0.0715769008, -0.997199416, -0.29333657, -0.953077495, -0.0748127103),
3210
["CanCollide"] = false,
3211
["Locked"] = true,
3212
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3213
})
3214
o199 = Create("ParticleEmitter",{
3215
["Parent"] = o198,
3216
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3217
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3218
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3219
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3220
["Speed"] = NumberRange.new(10,10),
3221
})
3222
o200 = Create("Part",{
3223
["Parent"] = o40,
3224
["Transparency"] = 1,
3225
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3226
["Rotation"] = Vector3.new(89.8953552, -4.28925848, 105.515739),
3227
["Anchored"] = true,
3228
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.266753852, -0.960858285, -0.0747917816, 0.0217667986, 0.0715778098, -0.997199297, 0.963518798, -0.267634332, 0.00182124786),
3229
["CanCollide"] = false,
3230
["Locked"] = true,
3231
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3232
})
3233
o201 = Create("ParticleEmitter",{
3234
["Parent"] = o200,
3235
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3236
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3237
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3238
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3239
["Speed"] = NumberRange.new(10,10),
3240
})
3241
o202 = Create("Part",{
3242
["Parent"] = o40,
3243
["Transparency"] = 1,
3244
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3245
["Rotation"] = Vector3.new(89.8953171, -4.28915977, 106.104965),
3246
["Anchored"] = true,
3247
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.276620984, -0.958064437, -0.0747900605, 0.0225019082, 0.0713483319, -0.997199476, 0.960715652, -0.277528822, 0.00182191283),
3248
["CanCollide"] = false,
3249
["Locked"] = true,
3250
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3251
})
3252
o203 = Create("ParticleEmitter",{
3253
["Parent"] = o202,
3254
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3255
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3256
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3257
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3258
["Speed"] = NumberRange.new(10,10),
3259
})
3260
o204 = Create("Part",{
3261
["Parent"] = o40,
3262
["Transparency"] = 1,
3263
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3264
["Rotation"] = Vector3.new(91.8080521, -3.89170218, 140.254837),
3265
["Anchored"] = true,
3266
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.767122865, -0.637899756, -0.0678708032, 0.0319866836, 0.0676331818, -0.997199178, 0.640702367, -0.767143786, -0.031478513),
3267
["CanCollide"] = false,
3268
["Locked"] = true,
3269
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3270
})
3271
o205 = Create("ParticleEmitter",{
3272
["Parent"] = o204,
3273
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3274
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3275
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3276
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3277
["Speed"] = NumberRange.new(10,10),
3278
})
3279
o206 = Create("Part",{
3280
["Parent"] = o40,
3281
["Transparency"] = 1,
3282
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3283
["Rotation"] = Vector3.new(91.8078308, -3.89162207, 132.445297),
3284
["Anchored"] = true,
3285
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.67332983, -0.736220598, -0.0678694025, 0.0225019008, 0.0713486224, -0.997199476, 0.738999724, -0.672970235, -0.0314746276),
3286
["CanCollide"] = false,
3287
["Locked"] = true,
3288
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3289
})
3290
o207 = Create("ParticleEmitter",{
3291
["Parent"] = o206,
3292
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3293
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3294
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3295
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3296
["Speed"] = NumberRange.new(10,10),
3297
})
3298
o208 = Create("Part",{
3299
["Parent"] = o40,
3300
["Transparency"] = 1,
3301
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3302
["Rotation"] = Vector3.new(87.9093552, -3.74753022, 71.7991714),
3303
["Anchored"] = true,
3304
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.311680853, -0.947936237, -0.065360114, 0.0142536219, 0.0734435916, -0.997199297, 0.950079978, 0.309875667, 0.0364025161),
3305
["CanCollide"] = false,
3306
["Locked"] = true,
3307
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3308
})
3309
o209 = Create("ParticleEmitter",{
3310
["Parent"] = o208,
3311
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3312
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3313
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3314
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3315
["Speed"] = NumberRange.new(10,10),
3316
})
3317
o210 = Create("Part",{
3318
["Parent"] = o40,
3319
["Transparency"] = 1,
3320
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3321
["Rotation"] = Vector3.new(87.9093552, -3.74753881, 67.5806808),
3322
["Anchored"] = true,
3323
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.380566627, -0.922440886, -0.065360263, 0.00881247222, 0.0742932856, -0.997199237, 0.924711466, 0.378924072, 0.0364025608),
3324
["CanCollide"] = false,
3325
["Locked"] = true,
3326
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3327
})
3328
o211 = Create("ParticleEmitter",{
3329
["Parent"] = o210,
3330
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3331
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3332
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3333
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3334
["Speed"] = NumberRange.new(10,10),
3335
})
3336
o212 = Create("Part",{
3337
["Parent"] = o40,
3338
["Transparency"] = 1,
3339
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3340
["Rotation"] = Vector3.new(87.9093399, -3.74756861, 60.8156891),
3341
["Anchored"] = true,
3342
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.486577958, -0.871188819, -0.0653607845, -3.83704901e-007, 0.0748147219, -0.997199297, 0.873637259, 0.485214263, 0.0364029035),
3343
["CanCollide"] = false,
3344
["Locked"] = true,
3345
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3346
})
3347
o213 = Create("ParticleEmitter",{
3348
["Parent"] = o212,
3349
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3350
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3351
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3352
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3353
["Speed"] = NumberRange.new(10,10),
3354
})
3355
o214 = Create("Part",{
3356
["Parent"] = o40,
3357
["Transparency"] = 1,
3358
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3359
["Rotation"] = Vector3.new(89.8953552, -4.28925848, 95.3657913),
3360
["Anchored"] = true,
3361
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.0932519436, -0.992829502, -0.0747917816, 0.00881233905, 0.0742934793, -0.997199297, 0.995603502, -0.0936497822, 0.00182124041),
3362
["CanCollide"] = false,
3363
["Locked"] = true,
3364
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3365
})
3366
o215 = Create("ParticleEmitter",{
3367
["Parent"] = o214,
3368
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3369
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3370
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3371
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3372
["Speed"] = NumberRange.new(10,10),
3373
})
3374
o216 = Create("Part",{
3375
["Parent"] = o40,
3376
["Transparency"] = 1,
3377
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3378
["Rotation"] = Vector3.new(89.8954849, -4.28933144, 113.914505),
3379
["Anchored"] = true,
3380
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.404237568, -0.911590993, -0.0747930482, 0.0319866538, 0.067632921, -0.997199178, 0.914094567, -0.405497104, 0.00181907415),
3381
["CanCollide"] = false,
3382
["Locked"] = true,
3383
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3384
})
3385
o217 = Create("ParticleEmitter",{
3386
["Parent"] = o216,
3387
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3388
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3389
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3390
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3391
["Speed"] = NumberRange.new(10,10),
3392
})
3393
o218 = Create("Part",{
3394
["Parent"] = o40,
3395
["Transparency"] = 1,
3396
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3397
["Rotation"] = Vector3.new(89.8953552, -4.28925085, 99.5842743),
3398
["Anchored"] = true,
3399
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.166031793, -0.983280063, -0.0747916475, 0.0142535102, 0.07344383, -0.997199297, 0.986017346, -0.166632652, 0.00182126649),
3400
["CanCollide"] = false,
3401
["Locked"] = true,
3402
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3403
})
3404
o219 = Create("ParticleEmitter",{
3405
["Parent"] = o218,
3406
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3407
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3408
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3409
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3410
["Speed"] = NumberRange.new(10,10),
3411
})
3412
o220 = Create("Part",{
3413
["Parent"] = o40,
3414
["Transparency"] = 1,
3415
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3416
["Rotation"] = Vector3.new(89.8953476, -4.2892952, 88.6007767),
3417
["Anchored"] = true,
3418
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.0243502744, -0.99690181, -0.0747924149, -5.30853868e-007, 0.0748149008, -0.997199297, 0.999703526, 0.0242818799, 0.0018213205),
3419
["CanCollide"] = false,
3420
["Locked"] = true,
3421
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3422
})
3423
o221 = Create("ParticleEmitter",{
3424
["Parent"] = o220,
3425
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3426
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3427
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3428
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3429
["Speed"] = NumberRange.new(10,10),
3430
})
3431
o222 = Create("Part",{
3432
["Parent"] = o40,
3433
["Transparency"] = 1,
3434
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3435
["Rotation"] = Vector3.new(87.9094315, -3.74766088, 86.1293869),
3436
["Anchored"] = true,
3437
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.0673592016, -0.99558562, -0.0653623864, 0.0319867022, 0.0676326752, -0.997199178, 0.997216046, 0.065079622, 0.0364012159),
3438
["CanCollide"] = false,
3439
["Locked"] = true,
3440
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3441
})
3442
o223 = Create("ParticleEmitter",{
3443
["Parent"] = o222,
3444
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3445
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3446
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3447
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3448
["Speed"] = NumberRange.new(10,10),
3449
})
3450
o224 = Create("Part",{
3451
["Parent"] = o40,
3452
["Transparency"] = 1,
3453
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3454
["Rotation"] = Vector3.new(87.9093704, -3.74743366, 78.3198776),
3455
["Anchored"] = true,
3456
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.202014804, -0.977199256, -0.0653584376, 0.0225019958, 0.0713481307, -0.997199476, 0.979124069, 0.199977919, 0.036402341),
3457
["CanCollide"] = false,
3458
["Locked"] = true,
3459
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3460
})
3461
o225 = Create("ParticleEmitter",{
3462
["Parent"] = o224,
3463
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3464
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3465
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3466
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3467
["Speed"] = NumberRange.new(10,10),
3468
})
3469
o226 = Create("Part",{
3470
["Parent"] = o40,
3471
["Transparency"] = 1,
3472
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3473
["Rotation"] = Vector3.new(87.9093552, -3.7475431, 77.7306519),
3474
["Anchored"] = true,
3475
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.212053299, -0.975070119, -0.0653603375, 0.0217668973, 0.0715776533, -0.997199237, 0.977015674, 0.210036218, 0.0364025459),
3476
["CanCollide"] = false,
3477
["Locked"] = true,
3478
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3479
})
3480
o227 = Create("ParticleEmitter",{
3481
["Parent"] = o226,
3482
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3483
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3484
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3485
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3486
["Speed"] = NumberRange.new(10,10),
3487
})
3488
o228 = Create("Part",{
3489
["Parent"] = o40,
3490
["Transparency"] = 1,
3491
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3492
["Rotation"] = Vector3.new(91.8079071, -3.89169359, 121.706116),
3493
["Anchored"] = true,
3494
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.524350643, -0.848793328, -0.0678706542, 0.00881229527, 0.0742937326, -0.997199297, 0.851456881, -0.523479283, -0.0314760059),
3495
["CanCollide"] = false,
3496
["Locked"] = true,
3497
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3498
})
3499
o229 = Create("ParticleEmitter",{
3500
["Parent"] = o228,
3501
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3502
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3503
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3504
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3505
["Speed"] = NumberRange.new(10,10),
3506
})
3507
o230 = Create("Part",{
3508
["Parent"] = o40,
3509
["Transparency"] = 1,
3510
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3511
["Rotation"] = Vector3.new(91.8079071, -3.89168763, 125.924606),
3512
["Anchored"] = true,
3513
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.585367382, -0.807922482, -0.0678705499, 0.0142534673, 0.0734440908, -0.997199297, 0.810642779, -0.584694326, -0.0314759463),
3514
["CanCollide"] = false,
3515
["Locked"] = true,
3516
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3517
})
3518
o231 = Create("ParticleEmitter",{
3519
["Parent"] = o230,
3520
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3521
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3522
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3523
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3524
["Speed"] = NumberRange.new(10,10),
3525
})
3526
o232 = Create("Part",{
3527
["Parent"] = o40,
3528
["Transparency"] = 1,
3529
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3530
["Rotation"] = Vector3.new(85.7094803, 3.41509462e-006, 6.7649889),
3531
["Anchored"] = true,
3532
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.99303776, -0.117797188, 5.96046448e-008, 0.00881272554, 0.0742930025, -0.997199297, 0.117467135, 0.9902547, 0.0748138353),
3533
["CanCollide"] = false,
3534
["Locked"] = true,
3535
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3536
})
3537
o233 = Create("ParticleEmitter",{
3538
["Parent"] = o232,
3539
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3540
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3541
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3542
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3543
["Speed"] = NumberRange.new(10,10),
3544
})
3545
o234 = Create("Part",{
3546
["Parent"] = o40,
3547
["Transparency"] = 1,
3548
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3549
["Rotation"] = Vector3.new(85.7094879, 5.12264205e-006, 10.98349),
3550
["Anchored"] = true,
3551
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.981682122, -0.190526128, 8.94069672e-008, 0.014253851, 0.0734433234, -0.997199416, 0.189992264, 0.978931069, 0.0748137087),
3552
["CanCollide"] = false,
3553
["Locked"] = true,
3554
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3555
})
3556
o235 = Create("ParticleEmitter",{
3557
["Parent"] = o234,
3558
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3559
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3560
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3561
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3562
["Speed"] = NumberRange.new(10,10),
3563
})
3564
o236 = Create("Part",{
3565
["Parent"] = o40,
3566
["Transparency"] = 1,
3567
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3568
["Rotation"] = Vector3.new(85.7094803, 1.70754731e-006, 16.9149685),
3569
["Anchored"] = true,
3570
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.956737638, -0.290952176, 2.98023224e-008, 0.0217670985, 0.0715773255, -0.997199297, 0.290136814, 0.954056323, 0.07481388),
3571
["CanCollide"] = false,
3572
["Locked"] = true,
3573
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3574
})
3575
o237 = Create("ParticleEmitter",{
3576
["Parent"] = o236,
3577
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3578
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3579
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3580
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3581
["Speed"] = NumberRange.new(10,10),
3582
})
3583
o238 = Create("Part",{
3584
["Parent"] = o40,
3585
["Transparency"] = 1,
3586
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3587
["Rotation"] = Vector3.new(85.7095795, 4.39693431e-005, 17.5041828),
3588
["Anchored"] = true,
3589
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.953695059, -0.300775439, 7.67409801e-007, 0.0225021988, 0.0713478252, -0.997199476, 0.299932599, 0.951022446, 0.074812144),
3590
["CanCollide"] = false,
3591
["Locked"] = true,
3592
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3593
})
3594
o239 = Create("ParticleEmitter",{
3595
["Parent"] = o238,
3596
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3597
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3598
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3599
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3600
["Speed"] = NumberRange.new(10,10),
3601
})
3602
o240 = Create("Part",{
3603
["Parent"] = o40,
3604
["Transparency"] = 1,
3605
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3606
["Rotation"] = Vector3.new(85.7094116, -0.000123370293, 25.3137016),
3607
["Anchored"] = true,
3608
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.903980315, -0.427574009, -2.15321779e-006, 0.0319868661, 0.0676323473, -0.997199237, 0.426376015, 0.9014467, 0.0748150349),
3609
["CanCollide"] = false,
3610
["Locked"] = true,
3611
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3612
})
3613
o241 = Create("ParticleEmitter",{
3614
["Parent"] = o240,
3615
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3616
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3617
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3618
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3619
["Speed"] = NumberRange.new(10,10),
3620
})
3621
o242 = Create("Part",{
3622
["Parent"] = o40,
3623
["Transparency"] = 1,
3624
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3625
["Rotation"] = Vector3.new(86.2003632, -1.99434543, 27.6544552),
3626
["Anchored"] = true,
3627
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.885226369, -0.463856965, -0.0348008648, -3.94880772e-007, 0.0748145506, -0.997199237, 0.465160698, 0.882745445, 0.0662276074),
3628
["CanCollide"] = false,
3629
["Locked"] = true,
3630
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3631
})
3632
o243 = Create("ParticleEmitter",{
3633
["Parent"] = o242,
3634
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3635
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3636
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3637
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3638
["Speed"] = NumberRange.new(10,10),
3639
})
3640
o244 = Create("Part",{
3641
["Parent"] = o40,
3642
["Transparency"] = 1,
3643
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3644
["Rotation"] = Vector3.new(86.2003937, -1.99432755, 38.6379433),
3645
["Anchored"] = true,
3646
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.780633986, -0.624018788, -0.0348005518, 0.0142535642, 0.0734434575, -0.997199297, 0.624826014, 0.777950108, 0.0662269443),
3647
["CanCollide"] = false,
3648
["Locked"] = true,
3649
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3650
})
3651
o245 = Create("ParticleEmitter",{
3652
["Parent"] = o244,
3653
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3654
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3655
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3656
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3657
["Speed"] = NumberRange.new(10,10),
3658
})
3659
o246 = Create("Part",{
3660
["Parent"] = o40,
3661
["Transparency"] = 1,
3662
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3663
["Rotation"] = Vector3.new(86.200386, -1.99447691, 52.9681625),
3664
["Anchored"] = true,
3665
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.601893902, -0.797817409, -0.0348031595, 0.031986624, 0.067632556, -0.997199178, 0.797935426, 0.599093735, 0.0662271008),
3666
["CanCollide"] = false,
3667
["Locked"] = true,
3668
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3669
})
3670
o247 = Create("ParticleEmitter",{
3671
["Parent"] = o246,
3672
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3673
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3674
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3675
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3676
["Speed"] = NumberRange.new(10,10),
3677
})
3678
o248 = Create("Part",{
3679
["Parent"] = o40,
3680
["Transparency"] = 1,
3681
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3682
["Rotation"] = Vector3.new(86.200386, -1.99433267, 34.4194527),
3683
["Anchored"] = true,
3684
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.824422002, -0.56490469, -0.0348006412, 0.00881243497, 0.0742931217, -0.997199237, 0.565907061, 0.821804762, 0.0662270635),
3685
["CanCollide"] = false,
3686
["Locked"] = true,
3687
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3688
})
3689
o249 = Create("ParticleEmitter",{
3690
["Parent"] = o248,
3691
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3692
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3693
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3694
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3695
["Speed"] = NumberRange.new(10,10),
3696
})
3697
o250 = Create("Part",{
3698
["Parent"] = o40,
3699
["Transparency"] = 1,
3700
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3701
["Rotation"] = Vector3.new(86.200386, -1.99433351, 44.5694199),
3702
["Anchored"] = true,
3703
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.711969256, -0.701347888, -0.0348006561, 0.0217668451, 0.0715774819, -0.997199237, 0.701873243, 0.709216297, 0.0662270635),
3704
["CanCollide"] = false,
3705
["Locked"] = true,
3706
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3707
})
3708
o251 = Create("ParticleEmitter",{
3709
["Parent"] = o250,
3710
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3711
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3712
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3713
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3714
["Speed"] = NumberRange.new(10,10),
3715
})
3716
o252 = Create("Part",{
3717
["Parent"] = o40,
3718
["Transparency"] = 1,
3719
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3720
["Rotation"] = Vector3.new(86.2004547, -1.99425054, 45.1586418),
3721
["Anchored"] = true,
3722
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.704719126, -0.708632469, -0.0347992107, 0.022501938, 0.0713479817, -0.997199416, 0.709129572, 0.70196116, 0.0662258714),
3723
["CanCollide"] = false,
3724
["Locked"] = true,
3725
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3726
})
3727
o253 = Create("ParticleEmitter",{
3728
["Parent"] = o252,
3729
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3730
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3731
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3732
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3733
["Speed"] = NumberRange.new(10,10),
3734
})
3735
o254 = Create("Part",{
3736
["Parent"] = o40,
3737
["Transparency"] = 1,
3738
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3739
["Rotation"] = Vector3.new(87.4747849, -3.46971107, 71.4232864),
3740
["Anchored"] = true,
3741
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.317990065, -0.946160436, -0.0605208725, 0.0225017648, 0.0713482797, -0.997199416, 0.947826922, 0.315737069, 0.0439783558),
3742
["CanCollide"] = false,
3743
["Locked"] = true,
3744
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3745
})
3746
o255 = Create("ParticleEmitter",{
3747
["Parent"] = o254,
3748
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3749
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3750
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3751
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3752
["Speed"] = NumberRange.new(10,10),
3753
})
3754
o256 = Create("Part",{
3755
["Parent"] = o40,
3756
["Transparency"] = 1,
3757
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3758
["Rotation"] = Vector3.new(87.474823, -3.469944, 79.232811),
3759
["Anchored"] = true,
3760
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.186476216, -0.980593324, -0.060524933, 0.0319864899, 0.0676328763, -0.997199237, 0.981938541, 0.184017584, 0.0439776927),
3761
["CanCollide"] = false,
3762
["Locked"] = true,
3763
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3764
})
3765
o257 = Create("ParticleEmitter",{
3766
["Parent"] = o256,
3767
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3768
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3769
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3770
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3771
["Speed"] = NumberRange.new(10,10),
3772
})
3773
o258 = Create("Part",{
3774
["Parent"] = o40,
3775
["Transparency"] = 1,
3776
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3777
["Rotation"] = Vector3.new(87.474762, -3.46981502, 60.6841011),
3778
["Anchored"] = true,
3779
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.488726914, -0.870335042, -0.060522683, 0.00881221518, 0.074293375, -0.997199237, 0.872392356, 0.486823827, 0.0439787731),
3780
["CanCollide"] = false,
3781
["Locked"] = true,
3782
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3783
})
3784
o259 = Create("ParticleEmitter",{
3785
["Parent"] = o258,
3786
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3787
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3788
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3789
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3790
["Speed"] = NumberRange.new(10,10),
3791
})
3792
o260 = Create("Part",{
3793
["Parent"] = o40,
3794
["Transparency"] = 1,
3795
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3796
["Rotation"] = Vector3.new(87.4747696, -3.4698081, 64.9025879),
3797
["Anchored"] = true,
3798
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.423380911, -0.903927863, -0.0605225638, 0.0142533705, 0.0734437481, -0.997199237, 0.905839682, 0.421331614, 0.0439787284),
3799
["CanCollide"] = false,
3800
["Locked"] = true,
3801
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3802
})
3803
o261 = Create("ParticleEmitter",{
3804
["Parent"] = o260,
3805
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3806
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3807
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3808
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3809
["Speed"] = NumberRange.new(10,10),
3810
})
3811
o262 = Create("Part",{
3812
["Parent"] = o40,
3813
["Transparency"] = 1,
3814
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3815
["Rotation"] = Vector3.new(87.4747391, -3.469841, 53.9191055),
3816
["Anchored"] = true,
3817
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.587847352, -0.806704819, -0.0605231375, -6.44475222e-007, 0.0748147741, -0.997199237, 0.808971882, 0.58619982, 0.0439791642),
3818
["CanCollide"] = false,
3819
["Locked"] = true,
3820
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3821
})
3822
o263 = Create("ParticleEmitter",{
3823
["Parent"] = o262,
3824
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3825
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3826
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3827
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3828
["Speed"] = NumberRange.new(10,10),
3829
})
3830
o264 = Create("Part",{
3831
["Parent"] = o40,
3832
["Transparency"] = 1,
3833
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3834
["Rotation"] = Vector3.new(87.474762, -3.46981668, 70.8340683),
3835
["Anchored"] = true,
3836
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, 0.327703208, -0.942840219, -0.0605227128, 0.02176667, 0.0715778098, -0.997199237, 0.944529951, 0.325467318, 0.0439787768),
3837
["CanCollide"] = false,
3838
["Locked"] = true,
3839
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3840
})
3841
o265 = Create("ParticleEmitter",{
3842
["Parent"] = o264,
3843
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3844
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3845
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3846
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3847
["Speed"] = NumberRange.new(10,10),
3848
})
3849
o266 = Create("Part",{
3850
["Parent"] = o40,
3851
["Transparency"] = 1,
3852
["Position"] = Vector3.new(-1761.44092, -3600.4082, 1108.44788),
3853
["Rotation"] = Vector3.new(91.8079224, -3.89172578, 114.941132),
3854
["Anchored"] = true,
3855
["CFrame"] = CFrame.new(-1761.44092, -3600.4082, 1108.44788, -0.420714408, -0.904650569, -0.067871213, -6.10947609e-007, 0.0748151317, -0.997199237, 0.907193065, -0.419535309, -0.0314762108),
3856
["CanCollide"] = false,
3857
["Locked"] = true,
3858
["Size"] = Vector3.new(2.23000002, 0.200000003, 0.200000003),
3859
})
3860
o267 = Create("ParticleEmitter",{
3861
["Parent"] = o266,
3862
["Size"] = NumberSequence.new(2.7999999523163,2.7999999523163),
3863
["Color"] = ColorSequence.new(Color3.new(0, 0, 0),Color3.new(0.129412, 0.129412, 0.129412)),
3864
["Texture"] = "rbxasset://textures/particles/explosion01_implosion_main.dds",
3865
["Acceleration"] = Vector3.new(0, -0.899999976, 0),
3866
["Speed"] = NumberRange.new(10,10),
3867
})
3868
o268 = Create("Part",{
3869
["Name"] = "PartWing",
3870
["Parent"] = o40,
3871
["Material"] = Enum.Material.DiamondPlate,
3872
["BrickColor"] = BrickColor.new("Really black"),
3873
["Position"] = Vector3.new(-1765.06714, -3586.375, 1116.46716),
3874
["Rotation"] = Vector3.new(-31.8383636, -26.1270409, -15.2933931),
3875
["Anchored"] = true,
3876
["CFrame"] = CFrame.new(-1765.06714, -3586.375, 1116.46716, 0.866026163, 0.23681061, -0.44036296, -1.43962566e-007, 0.880728126, 0.473622233, 0.499998778, -0.410169125, 0.762733698),
3877
["CanCollide"] = false,
3878
["FormFactor"] = Enum.FormFactor.Symmetric,
3879
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
3880
["BottomSurface"] = Enum.SurfaceType.Smooth,
3881
["TopSurface"] = Enum.SurfaceType.Smooth,
3882
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
3883
})
3884
o269 = Create("Fire",{
3885
["Parent"] = o268,
3886
["Size"] = 30,
3887
["Color"] = Color3.new(1, 0.815686, 0),
3888
["Enabled"] = false,
3889
["Heat"] = 25,
3890
["SecondaryColor"] = Color3.new(1, 0, 0),
3891
})
3892
o270 = Create("Script",{
3893
["Parent"] = o269,
3894
})
3895
table.insert(cors,coroutine.create(function()
3896
wait()
3897
runDummyScript(function()
3898
function Spread(part)
3899
	check = part:findFirstChild("Fire")
3900
		if check == nil then 
3901
	script.Parent:Clone().Parent = part
3902
	
3903
		elseif check ~= nil then
3904
	check.Size = check.Size + 1
3905
	check.Heat = check.Heat  +1
3906
	end
3907
end
3908
3909
3910
script.Parent.Parent.Touched:connect(Spread)
3911
3912
3913
end,o270)
3914
end))
3915
o271 = Create("Part",{
3916
["Name"] = "PartWing",
3917
["Parent"] = o40,
3918
["Material"] = Enum.Material.DiamondPlate,
3919
["BrickColor"] = BrickColor.new("Really black"),
3920
["Position"] = Vector3.new(-1757.6272, -3586.375, 1116.46716),
3921
["Rotation"] = Vector3.new(-30.7509575, 20.4207287, 17.368824),
3922
["Anchored"] = true,
3923
["CFrame"] = CFrame.new(-1757.6272, -3586.375, 1116.46716, 0.8944242, -0.279761165, 0.348911107, 0.0862824619, 0.873468339, 0.479174733, -0.438817233, -0.398480594, 0.805389702),
3924
["CanCollide"] = false,
3925
["FormFactor"] = Enum.FormFactor.Symmetric,
3926
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
3927
["BottomSurface"] = Enum.SurfaceType.Smooth,
3928
["TopSurface"] = Enum.SurfaceType.Smooth,
3929
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
3930
})
3931
o272 = Create("Fire",{
3932
["Parent"] = o271,
3933
["Size"] = 30,
3934
["Color"] = Color3.new(1, 0.815686, 0),
3935
["Enabled"] = false,
3936
["Heat"] = 25,
3937
["SecondaryColor"] = Color3.new(1, 0, 0),
3938
})
3939
o273 = Create("Script",{
3940
["Parent"] = o272,
3941
})
3942
table.insert(cors,coroutine.create(function()
3943
wait()
3944
runDummyScript(function()
3945
function Spread(part)
3946
	check = part:findFirstChild("Fire")
3947
		if check == nil then 
3948
	script.Parent:Clone().Parent = part
3949
	
3950
		elseif check ~= nil then
3951
	check.Size = check.Size + 1
3952
	check.Heat = check.Heat  +1
3953
	end
3954
end
3955
3956
3957
script.Parent.Parent.Touched:connect(Spread)
3958
3959
3960
end,o273)
3961
end))
3962
o274 = Create("Part",{
3963
["Name"] = "PartWing",
3964
["Parent"] = o40,
3965
["Material"] = Enum.Material.DiamondPlate,
3966
["BrickColor"] = BrickColor.new("Really black"),
3967
["Position"] = Vector3.new(-1768.47729, -3580.29492, 1122.43713),
3968
["Rotation"] = Vector3.new(-58.9302444, -16.5921669, -25.3577919),
3969
["Anchored"] = true,
3970
["CFrame"] = CFrame.new(-1768.47729, -3580.29492, 1122.43713, 0.866024435, 0.410437077, -0.285557359, 3.18802017e-006, 0.571108341, 0.820874691, 0.500001609, -0.710898519, 0.494592458),
3971
["CanCollide"] = false,
3972
["FormFactor"] = Enum.FormFactor.Symmetric,
3973
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
3974
["BottomSurface"] = Enum.SurfaceType.Smooth,
3975
["TopSurface"] = Enum.SurfaceType.Smooth,
3976
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
3977
})
3978
o275 = Create("Fire",{
3979
["Parent"] = o274,
3980
["Size"] = 30,
3981
["Color"] = Color3.new(1, 0.815686, 0),
3982
["Enabled"] = false,
3983
["Heat"] = 25,
3984
["SecondaryColor"] = Color3.new(1, 0, 0),
3985
})
3986
o276 = Create("Script",{
3987
["Parent"] = o275,
3988
})
3989
table.insert(cors,coroutine.create(function()
3990
wait()
3991
runDummyScript(function()
3992
function Spread(part)
3993
	check = part:findFirstChild("Fire")
3994
		if check == nil then 
3995
	script.Parent:Clone().Parent = part
3996
	
3997
		elseif check ~= nil then
3998
	check.Size = check.Size + 1
3999
	check.Heat = check.Heat  +1
4000
	end
4001
end
4002
4003
4004
script.Parent.Parent.Touched:connect(Spread)
4005
4006
4007
end,o276)
4008
end))
4009
o277 = Create("Part",{
4010
["Name"] = "PartWing",
4011
["Parent"] = o40,
4012
["Material"] = Enum.Material.DiamondPlate,
4013
["BrickColor"] = BrickColor.new("Really black"),
4014
["Position"] = Vector3.new(-1753.96729, -3580.54297, 1123.09595),
4015
["Rotation"] = Vector3.new(-49.5530434, 23.428503, -23.0137844),
4016
["Anchored"] = true,
4017
["CFrame"] = CFrame.new(-1753.96729, -3580.54297, 1123.09595, 0.84452939, 0.358721286, 0.397604406, -0.532125711, 0.478816509, 0.698267221, 0.0601037443, -0.801282644, 0.595259428),
4018
["CanCollide"] = false,
4019
["FormFactor"] = Enum.FormFactor.Symmetric,
4020
["Size"] = Vector3.new(1, 0.800000012, 11.6429615),
4021
["BottomSurface"] = Enum.SurfaceType.Smooth,
4022
["TopSurface"] = Enum.SurfaceType.Smooth,
4023
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4024
})
4025
o278 = Create("Fire",{
4026
["Parent"] = o277,
4027
["Size"] = 30,
4028
["Color"] = Color3.new(1, 0.815686, 0),
4029
["Enabled"] = false,
4030
["Heat"] = 25,
4031
["SecondaryColor"] = Color3.new(1, 0, 0),
4032
})
4033
o279 = Create("Script",{
4034
["Parent"] = o278,
4035
})
4036
table.insert(cors,coroutine.create(function()
4037
wait()
4038
runDummyScript(function()
4039
function Spread(part)
4040
	check = part:findFirstChild("Fire")
4041
		if check == nil then 
4042
	script.Parent:Clone().Parent = part
4043
	
4044
		elseif check ~= nil then
4045
	check.Size = check.Size + 1
4046
	check.Heat = check.Heat  +1
4047
	end
4048
end
4049
4050
4051
script.Parent.Parent.Touched:connect(Spread)
4052
4053
4054
end,o279)
4055
end))
4056
o280 = Create("Part",{
4057
["Name"] = "PartWing",
4058
["Parent"] = o40,
4059
["Material"] = Enum.Material.DiamondPlate,
4060
["BrickColor"] = BrickColor.new("Really black"),
4061
["Position"] = Vector3.new(-1750.33691, -3580.7832, 1129.82141),
4062
["Rotation"] = Vector3.new(-49.5530853, 23.428484, 18.1905384),
4063
["Anchored"] = true,
4064
["CFrame"] = CFrame.new(-1750.33691, -3580.7832, 1129.82141, 0.871700943, -0.286441207, 0.397604108, -0.0849343687, 0.710780144, 0.698267698, -0.482621759, -0.642450809, 0.595259011),
4065
["CanCollide"] = false,
4066
["FormFactor"] = Enum.FormFactor.Symmetric,
4067
["Size"] = Vector3.new(1, 11.5900002, 1.35296154),
4068
["BottomSurface"] = Enum.SurfaceType.Smooth,
4069
["TopSurface"] = Enum.SurfaceType.Smooth,
4070
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4071
})
4072
o281 = Create("Fire",{
4073
["Parent"] = o280,
4074
["Size"] = 30,
4075
["Color"] = Color3.new(1, 0.815686, 0),
4076
["Enabled"] = false,
4077
["Heat"] = 25,
4078
["SecondaryColor"] = Color3.new(1, 0, 0),
4079
})
4080
o282 = Create("Script",{
4081
["Parent"] = o281,
4082
})
4083
table.insert(cors,coroutine.create(function()
4084
wait()
4085
runDummyScript(function()
4086
function Spread(part)
4087
	check = part:findFirstChild("Fire")
4088
		if check == nil then 
4089
	script.Parent:Clone().Parent = part
4090
	
4091
		elseif check ~= nil then
4092
	check.Size = check.Size + 1
4093
	check.Heat = check.Heat  +1
4094
	end
4095
end
4096
4097
4098
script.Parent.Parent.Touched:connect(Spread)
4099
4100
4101
end,o282)
4102
end))
4103
o283 = Create("Part",{
4104
["Name"] = "PartWing",
4105
["Parent"] = o40,
4106
["Material"] = Enum.Material.DiamondPlate,
4107
["BrickColor"] = BrickColor.new("Really black"),
4108
["Position"] = Vector3.new(-1771.47314, -3579.17578, 1127.62634),
4109
["Rotation"] = Vector3.new(-58.9302444, -16.5921669, -25.3577919),
4110
["Anchored"] = true,
4111
["CFrame"] = CFrame.new(-1771.47314, -3579.17578, 1127.62634, 0.866024435, 0.410437077, -0.285557359, 3.18802017e-006, 0.571108341, 0.820874691, 0.500001609, -0.710898519, 0.494592458),
4112
["CanCollide"] = false,
4113
["FormFactor"] = Enum.FormFactor.Symmetric,
4114
["Size"] = Vector3.new(1, 9.35999966, 1.15296268),
4115
["BottomSurface"] = Enum.SurfaceType.Smooth,
4116
["TopSurface"] = Enum.SurfaceType.Smooth,
4117
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4118
})
4119
o284 = Create("Fire",{
4120
["Parent"] = o283,
4121
["Size"] = 30,
4122
["Color"] = Color3.new(1, 0.815686, 0),
4123
["Enabled"] = false,
4124
["Heat"] = 25,
4125
["SecondaryColor"] = Color3.new(1, 0, 0),
4126
})
4127
o285 = Create("Script",{
4128
["Parent"] = o284,
4129
})
4130
table.insert(cors,coroutine.create(function()
4131
wait()
4132
runDummyScript(function()
4133
function Spread(part)
4134
	check = part:findFirstChild("Fire")
4135
		if check == nil then 
4136
	script.Parent:Clone().Parent = part
4137
	
4138
		elseif check ~= nil then
4139
	check.Size = check.Size + 1
4140
	check.Heat = check.Heat  +1
4141
	end
4142
end
4143
4144
4145
script.Parent.Parent.Touched:connect(Spread)
4146
4147
4148
end,o285)
4149
end))
4150
o286 = Create("Part",{
4151
["Name"] = "Armor",
4152
["Parent"] = o40,
4153
["Material"] = Enum.Material.Slate,
4154
["BrickColor"] = BrickColor.new("Really black"),
4155
["Position"] = Vector3.new(-1761.06006, -3589.20313, 1111.66748),
4156
["Anchored"] = true,
4157
["CFrame"] = CFrame.new(-1761.06006, -3589.20313, 1111.66748, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4158
["CanCollide"] = false,
4159
["FormFactor"] = Enum.FormFactor.Symmetric,
4160
["Size"] = Vector3.new(7.20591974, 5.09000015, 4.622962),
4161
["BottomSurface"] = Enum.SurfaceType.Smooth,
4162
["TopSurface"] = Enum.SurfaceType.Smooth,
4163
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4164
})
4165
o287 = Create("Fire",{
4166
["Parent"] = o286,
4167
["Size"] = 30,
4168
["Color"] = Color3.new(1, 0.815686, 0),
4169
["Enabled"] = false,
4170
["Heat"] = 25,
4171
["SecondaryColor"] = Color3.new(1, 0, 0),
4172
})
4173
o288 = Create("Script",{
4174
["Parent"] = o287,
4175
})
4176
table.insert(cors,coroutine.create(function()
4177
wait()
4178
runDummyScript(function()
4179
function Spread(part)
4180
	check = part:findFirstChild("Fire")
4181
		if check == nil then 
4182
	script.Parent:Clone().Parent = part
4183
	
4184
		elseif check ~= nil then
4185
	check.Size = check.Size + 1
4186
	check.Heat = check.Heat  +1
4187
	end
4188
end
4189
4190
4191
script.Parent.Parent.Touched:connect(Spread)
4192
4193
4194
end,o288)
4195
end))
4196
o289 = Create("Part",{
4197
["Name"] = "Armor",
4198
["Parent"] = o40,
4199
["Material"] = Enum.Material.Slate,
4200
["BrickColor"] = BrickColor.new("Really black"),
4201
["Position"] = Vector3.new(-1761.21021, -3587.50781, 1111.47754),
4202
["Anchored"] = true,
4203
["CFrame"] = CFrame.new(-1761.21021, -3587.50781, 1111.47754, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4204
["CanCollide"] = false,
4205
["FormFactor"] = Enum.FormFactor.Symmetric,
4206
["Size"] = Vector3.new(9.6259203, 1.70000005, 4.86296177),
4207
["BottomSurface"] = Enum.SurfaceType.Smooth,
4208
["TopSurface"] = Enum.SurfaceType.Smooth,
4209
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4210
})
4211
o290 = Create("Fire",{
4212
["Parent"] = o289,
4213
["Size"] = 30,
4214
["Color"] = Color3.new(1, 0.815686, 0),
4215
["Enabled"] = false,
4216
["Heat"] = 25,
4217
["SecondaryColor"] = Color3.new(1, 0, 0),
4218
})
4219
o291 = Create("Script",{
4220
["Parent"] = o290,
4221
})
4222
table.insert(cors,coroutine.create(function()
4223
wait()
4224
runDummyScript(function()
4225
function Spread(part)
4226
	check = part:findFirstChild("Fire")
4227
		if check == nil then 
4228
	script.Parent:Clone().Parent = part
4229
	
4230
		elseif check ~= nil then
4231
	check.Size = check.Size + 1
4232
	check.Heat = check.Heat  +1
4233
	end
4234
end
4235
4236
4237
script.Parent.Parent.Touched:connect(Spread)
4238
4239
4240
end,o291)
4241
end))
4242
o292 = Create("Part",{
4243
["Parent"] = o40,
4244
["Material"] = Enum.Material.Neon,
4245
["BrickColor"] = BrickColor.new("Really red"),
4246
["Position"] = Vector3.new(-1761.64014, -3584.49756, 1109.07996),
4247
["Anchored"] = true,
4248
["CFrame"] = CFrame.new(-1761.64014, -3584.49756, 1109.07996, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4249
["CanCollide"] = false,
4250
["Locked"] = true,
4251
["Shape"] = Enum.PartType.Ball,
4252
["Size"] = Vector3.new(0.890000105, 0.890000105, 0.890000105),
4253
["BottomSurface"] = Enum.SurfaceType.Smooth,
4254
["TopSurface"] = Enum.SurfaceType.Smooth,
4255
["Color"] = Color3.new(1, 0, 0),
4256
})
4257
o293 = Create("Part",{
4258
["Parent"] = o40,
4259
["Material"] = Enum.Material.Neon,
4260
["BrickColor"] = BrickColor.new("Really red"),
4261
["Position"] = Vector3.new(-1760.44019, -3584.49756, 1109.07996),
4262
["Anchored"] = true,
4263
["CFrame"] = CFrame.new(-1760.44019, -3584.49756, 1109.07996, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4264
["CanCollide"] = false,
4265
["Locked"] = true,
4266
["Shape"] = Enum.PartType.Ball,
4267
["Size"] = Vector3.new(0.890000105, 0.890000105, 0.890000105),
4268
["BottomSurface"] = Enum.SurfaceType.Smooth,
4269
["TopSurface"] = Enum.SurfaceType.Smooth,
4270
["Color"] = Color3.new(1, 0, 0),
4271
})
4272
o294 = Create("Part",{
4273
["Name"] = "PartWing",
4274
["Parent"] = o40,
4275
["Material"] = Enum.Material.DiamondPlate,
4276
["BrickColor"] = BrickColor.new("Really black"),
4277
["Position"] = Vector3.new(-1757.6272, -3583.95947, 1116.17285),
4278
["Rotation"] = Vector3.new(-57.624279, 20.4207325, 17.3688202),
4279
["Anchored"] = true,
4280
["CFrame"] = CFrame.new(-1757.6272, -3583.95947, 1116.17285, 0.8944242, -0.279761106, 0.348911166, -0.121389359, 0.599019885, 0.791479528, -0.430429846, -0.750272632, 0.501817882),
4281
["CanCollide"] = false,
4282
["FormFactor"] = Enum.FormFactor.Symmetric,
4283
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
4284
["BottomSurface"] = Enum.SurfaceType.Smooth,
4285
["TopSurface"] = Enum.SurfaceType.Smooth,
4286
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4287
})
4288
o295 = Create("Fire",{
4289
["Parent"] = o294,
4290
["Size"] = 30,
4291
["Color"] = Color3.new(1, 0.815686, 0),
4292
["Enabled"] = false,
4293
["Heat"] = 25,
4294
["SecondaryColor"] = Color3.new(1, 0, 0),
4295
})
4296
o296 = Create("Script",{
4297
["Parent"] = o295,
4298
})
4299
table.insert(cors,coroutine.create(function()
4300
wait()
4301
runDummyScript(function()
4302
function Spread(part)
4303
	check = part:findFirstChild("Fire")
4304
		if check == nil then 
4305
	script.Parent:Clone().Parent = part
4306
	
4307
		elseif check ~= nil then
4308
	check.Size = check.Size + 1
4309
	check.Heat = check.Heat  +1
4310
	end
4311
end
4312
4313
4314
script.Parent.Parent.Touched:connect(Spread)
4315
4316
4317
end,o296)
4318
end))
4319
o297 = Create("Part",{
4320
["Name"] = "PartWing",
4321
["Parent"] = o40,
4322
["Material"] = Enum.Material.DiamondPlate,
4323
["BrickColor"] = BrickColor.new("Really black"),
4324
["Position"] = Vector3.new(-1765.06714, -3583.95947, 1116.17285),
4325
["Rotation"] = Vector3.new(-58.7116852, -26.1270428, -15.2933884),
4326
["Anchored"] = true,
4327
["CFrame"] = CFrame.new(-1765.06714, -3583.95947, 1116.17285, 0.866026163, 0.23681052, -0.44036299, 0.226009175, 0.600212216, 0.767245233, 0.44600296, -0.763980508, 0.466278106),
4328
["CanCollide"] = false,
4329
["FormFactor"] = Enum.FormFactor.Symmetric,
4330
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
4331
["BottomSurface"] = Enum.SurfaceType.Smooth,
4332
["TopSurface"] = Enum.SurfaceType.Smooth,
4333
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4334
})
4335
o298 = Create("Fire",{
4336
["Parent"] = o297,
4337
["Size"] = 30,
4338
["Color"] = Color3.new(1, 0.815686, 0),
4339
["Enabled"] = false,
4340
["Heat"] = 25,
4341
["SecondaryColor"] = Color3.new(1, 0, 0),
4342
})
4343
o299 = Create("Script",{
4344
["Parent"] = o298,
4345
})
4346
table.insert(cors,coroutine.create(function()
4347
wait()
4348
runDummyScript(function()
4349
function Spread(part)
4350
	check = part:findFirstChild("Fire")
4351
		if check == nil then 
4352
	script.Parent:Clone().Parent = part
4353
	
4354
		elseif check ~= nil then
4355
	check.Size = check.Size + 1
4356
	check.Heat = check.Heat  +1
4357
	end
4358
end
4359
4360
4361
script.Parent.Parent.Touched:connect(Spread)
4362
4363
4364
end,o299)
4365
end))
4366
o300 = Create("Part",{
4367
["Name"] = "PartWing",
4368
["Parent"] = o40,
4369
["Material"] = Enum.Material.DiamondPlate,
4370
["BrickColor"] = BrickColor.new("Really black"),
4371
["Position"] = Vector3.new(-1753.96729, -3575.76074, 1119.44958),
4372
["Rotation"] = Vector3.new(-76.426384, 23.4285088, -23.0137901),
4373
["Anchored"] = true,
4374
["CFrame"] = CFrame.new(-1753.96729, -3575.76074, 1119.44958, 0.844529271, 0.358721316, 0.397604495, -0.447492391, 0.0649125203, 0.891928732, 0.294144362, -0.931184888, 0.215345576),
4375
["CanCollide"] = false,
4376
["FormFactor"] = Enum.FormFactor.Symmetric,
4377
["Size"] = Vector3.new(1, 0.800000012, 11.6429615),
4378
["BottomSurface"] = Enum.SurfaceType.Smooth,
4379
["TopSurface"] = Enum.SurfaceType.Smooth,
4380
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4381
})
4382
o301 = Create("Fire",{
4383
["Parent"] = o300,
4384
["Size"] = 30,
4385
["Color"] = Color3.new(1, 0.815686, 0),
4386
["Enabled"] = false,
4387
["Heat"] = 25,
4388
["SecondaryColor"] = Color3.new(1, 0, 0),
4389
})
4390
o302 = Create("Script",{
4391
["Parent"] = o301,
4392
})
4393
table.insert(cors,coroutine.create(function()
4394
wait()
4395
runDummyScript(function()
4396
function Spread(part)
4397
	check = part:findFirstChild("Fire")
4398
		if check == nil then 
4399
	script.Parent:Clone().Parent = part
4400
	
4401
		elseif check ~= nil then
4402
	check.Size = check.Size + 1
4403
	check.Heat = check.Heat  +1
4404
	end
4405
end
4406
4407
4408
script.Parent.Parent.Touched:connect(Spread)
4409
4410
4411
end,o302)
4412
end))
4413
o303 = Create("Part",{
4414
["Name"] = "PartWing",
4415
["Parent"] = o40,
4416
["Material"] = Enum.Material.DiamondPlate,
4417
["BrickColor"] = BrickColor.new("Really black"),
4418
["Position"] = Vector3.new(-1750.33691, -3572.93506, 1125.55737),
4419
["Rotation"] = Vector3.new(-76.4264069, 23.428484, 18.1905346),
4420
["Anchored"] = true,
4421
["CFrame"] = CFrame.new(-1750.33691, -3572.93506, 1125.55737, 0.871700943, -0.286441118, 0.397604108, -0.293916613, 0.343621314, 0.89192909, -0.392110378, -0.89435786, 0.215345189),
4422
["CanCollide"] = false,
4423
["FormFactor"] = Enum.FormFactor.Symmetric,
4424
["Size"] = Vector3.new(1, 11.5900002, 1.35296154),
4425
["BottomSurface"] = Enum.SurfaceType.Smooth,
4426
["TopSurface"] = Enum.SurfaceType.Smooth,
4427
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4428
})
4429
o304 = Create("Fire",{
4430
["Parent"] = o303,
4431
["Size"] = 30,
4432
["Color"] = Color3.new(1, 0.815686, 0),
4433
["Enabled"] = false,
4434
["Heat"] = 25,
4435
["SecondaryColor"] = Color3.new(1, 0, 0),
4436
})
4437
o305 = Create("Script",{
4438
["Parent"] = o304,
4439
})
4440
table.insert(cors,coroutine.create(function()
4441
wait()
4442
runDummyScript(function()
4443
function Spread(part)
4444
	check = part:findFirstChild("Fire")
4445
		if check == nil then 
4446
	script.Parent:Clone().Parent = part
4447
	
4448
		elseif check ~= nil then
4449
	check.Size = check.Size + 1
4450
	check.Heat = check.Heat  +1
4451
	end
4452
end
4453
4454
4455
script.Parent.Parent.Touched:connect(Spread)
4456
4457
4458
end,o305)
4459
end))
4460
o306 = Create("Part",{
4461
["Name"] = "PartWing",
4462
["Parent"] = o40,
4463
["Material"] = Enum.Material.DiamondPlate,
4464
["BrickColor"] = BrickColor.new("Really black"),
4465
["Position"] = Vector3.new(-1771.47314, -3572.49316, 1122.8728),
4466
["Rotation"] = Vector3.new(-85.8035736, -16.5921726, -25.3577862),
4467
["Anchored"] = true,
4468
["CFrame"] = CFrame.new(-1771.47314, -3572.49316, 1122.8728, 0.866024554, 0.410437047, -0.285557449, 0.226013467, 0.188093245, 0.955792248, 0.446003973, -0.892279387, 0.0701290593),
4469
["CanCollide"] = false,
4470
["FormFactor"] = Enum.FormFactor.Symmetric,
4471
["Size"] = Vector3.new(1, 9.35999966, 1.15296268),
4472
["BottomSurface"] = Enum.SurfaceType.Smooth,
4473
["TopSurface"] = Enum.SurfaceType.Smooth,
4474
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4475
})
4476
o307 = Create("Fire",{
4477
["Parent"] = o306,
4478
["Size"] = 30,
4479
["Color"] = Color3.new(1, 0.815686, 0),
4480
["Enabled"] = false,
4481
["Heat"] = 25,
4482
["SecondaryColor"] = Color3.new(1, 0, 0),
4483
})
4484
o308 = Create("Script",{
4485
["Parent"] = o307,
4486
})
4487
table.insert(cors,coroutine.create(function()
4488
wait()
4489
runDummyScript(function()
4490
function Spread(part)
4491
	check = part:findFirstChild("Fire")
4492
		if check == nil then 
4493
	script.Parent:Clone().Parent = part
4494
	
4495
		elseif check ~= nil then
4496
	check.Size = check.Size + 1
4497
	check.Heat = check.Heat  +1
4498
	end
4499
end
4500
4501
4502
script.Parent.Parent.Touched:connect(Spread)
4503
4504
4505
end,o308)
4506
end))
4507
o309 = Create("Part",{
4508
["Name"] = "PartWing",
4509
["Parent"] = o40,
4510
["Material"] = Enum.Material.DiamondPlate,
4511
["BrickColor"] = BrickColor.new("Really black"),
4512
["Position"] = Vector3.new(-1768.47729, -3575.8374, 1118.74988),
4513
["Rotation"] = Vector3.new(-85.8035736, -16.5921726, -25.3577862),
4514
["Anchored"] = true,
4515
["CFrame"] = CFrame.new(-1768.47729, -3575.8374, 1118.74988, 0.866024554, 0.410437047, -0.285557449, 0.226013467, 0.188093245, 0.955792248, 0.446003973, -0.892279387, 0.0701290593),
4516
["CanCollide"] = false,
4517
["FormFactor"] = Enum.FormFactor.Symmetric,
4518
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
4519
["BottomSurface"] = Enum.SurfaceType.Smooth,
4520
["TopSurface"] = Enum.SurfaceType.Smooth,
4521
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4522
})
4523
o310 = Create("Fire",{
4524
["Parent"] = o309,
4525
["Size"] = 30,
4526
["Color"] = Color3.new(1, 0.815686, 0),
4527
["Enabled"] = false,
4528
["Heat"] = 25,
4529
["SecondaryColor"] = Color3.new(1, 0, 0),
4530
})
4531
o311 = Create("Script",{
4532
["Parent"] = o310,
4533
})
4534
table.insert(cors,coroutine.create(function()
4535
wait()
4536
runDummyScript(function()
4537
function Spread(part)
4538
	check = part:findFirstChild("Fire")
4539
		if check == nil then 
4540
	script.Parent:Clone().Parent = part
4541
	
4542
		elseif check ~= nil then
4543
	check.Size = check.Size + 1
4544
	check.Heat = check.Heat  +1
4545
	end
4546
end
4547
4548
4549
script.Parent.Parent.Touched:connect(Spread)
4550
4551
4552
end,o311)
4553
end))
4554
o312 = Create("Model",{
4555
["Name"] = "Arm1",
4556
["Parent"] = o1,
4557
})
4558
o313 = Create("Part",{
4559
["Name"] = "Middle",
4560
["Parent"] = o312,
4561
["Material"] = Enum.Material.Grass,
4562
["BrickColor"] = BrickColor.new("Really black"),
4563
["Position"] = Vector3.new(-1766.19946, -3590.25195, 1111.85254),
4564
["Anchored"] = true,
4565
["CFrame"] = CFrame.new(-1766.19946, -3590.25195, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4566
["CanCollide"] = false,
4567
["FormFactor"] = Enum.FormFactor.Symmetric,
4568
["Size"] = Vector3.new(3.43296003, 6.86592293, 3.43296194),
4569
["BottomSurface"] = Enum.SurfaceType.Smooth,
4570
["TopSurface"] = Enum.SurfaceType.Smooth,
4571
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4572
})
4573
o314 = Create("Fire",{
4574
["Parent"] = o313,
4575
["Size"] = 30,
4576
["Color"] = Color3.new(1, 0.815686, 0),
4577
["Enabled"] = false,
4578
["Heat"] = 25,
4579
["SecondaryColor"] = Color3.new(1, 0, 0),
4580
})
4581
o315 = Create("Script",{
4582
["Parent"] = o314,
4583
})
4584
table.insert(cors,coroutine.create(function()
4585
wait()
4586
runDummyScript(function()
4587
function Spread(part)
4588
	check = part:findFirstChild("Fire")
4589
		if check == nil then 
4590
	script.Parent:Clone().Parent = part
4591
	
4592
		elseif check ~= nil then
4593
	check.Size = check.Size + 1
4594
	check.Heat = check.Heat  +1
4595
	end
4596
end
4597
4598
4599
script.Parent.Parent.Touched:connect(Spread)
4600
4601
4602
end,o315)
4603
end))
4604
o316 = Create("Part",{
4605
["Parent"] = o312,
4606
["Material"] = Enum.Material.Grass,
4607
["BrickColor"] = BrickColor.new("Cocoa"),
4608
["Position"] = Vector3.new(-1766.20068, -3589.75195, 1111.85254),
4609
["Anchored"] = true,
4610
["CFrame"] = CFrame.new(-1766.20068, -3589.75195, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4611
["CanCollide"] = false,
4612
["FormFactor"] = Enum.FormFactor.Symmetric,
4613
["Size"] = Vector3.new(4.03295994, 1.86592293, 3.83296204),
4614
["BottomSurface"] = Enum.SurfaceType.Smooth,
4615
["TopSurface"] = Enum.SurfaceType.Smooth,
4616
["Color"] = Color3.new(0.337255, 0.141176, 0.141176),
4617
})
4618
o317 = Create("Fire",{
4619
["Parent"] = o316,
4620
["Size"] = 30,
4621
["Color"] = Color3.new(1, 0.815686, 0),
4622
["Enabled"] = false,
4623
["Heat"] = 25,
4624
["SecondaryColor"] = Color3.new(1, 0, 0),
4625
})
4626
o318 = Create("Script",{
4627
["Parent"] = o317,
4628
})
4629
table.insert(cors,coroutine.create(function()
4630
wait()
4631
runDummyScript(function()
4632
function Spread(part)
4633
	check = part:findFirstChild("Fire")
4634
		if check == nil then 
4635
	script.Parent:Clone().Parent = part
4636
	
4637
		elseif check ~= nil then
4638
	check.Size = check.Size + 1
4639
	check.Heat = check.Heat  +1
4640
	end
4641
end
4642
4643
4644
script.Parent.Parent.Touched:connect(Spread)
4645
4646
4647
end,o318)
4648
end))
4649
o319 = Create("Part",{
4650
["Parent"] = o312,
4651
["Material"] = Enum.Material.Grass,
4652
["BrickColor"] = BrickColor.new("Cocoa"),
4653
["Position"] = Vector3.new(-1766.20068, -3591.35156, 1111.85254),
4654
["Anchored"] = true,
4655
["CFrame"] = CFrame.new(-1766.20068, -3591.35156, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4656
["CanCollide"] = false,
4657
["FormFactor"] = Enum.FormFactor.Symmetric,
4658
["Size"] = Vector3.new(4.03295994, 5.06592274, 1.83296204),
4659
["BottomSurface"] = Enum.SurfaceType.Smooth,
4660
["TopSurface"] = Enum.SurfaceType.Smooth,
4661
["Color"] = Color3.new(0.337255, 0.141176, 0.141176),
4662
})
4663
o320 = Create("Fire",{
4664
["Parent"] = o319,
4665
["Size"] = 30,
4666
["Color"] = Color3.new(1, 0.815686, 0),
4667
["Enabled"] = false,
4668
["Heat"] = 25,
4669
["SecondaryColor"] = Color3.new(1, 0, 0),
4670
})
4671
o321 = Create("Script",{
4672
["Parent"] = o320,
4673
})
4674
table.insert(cors,coroutine.create(function()
4675
wait()
4676
runDummyScript(function()
4677
function Spread(part)
4678
	check = part:findFirstChild("Fire")
4679
		if check == nil then 
4680
	script.Parent:Clone().Parent = part
4681
	
4682
		elseif check ~= nil then
4683
	check.Size = check.Size + 1
4684
	check.Heat = check.Heat  +1
4685
	end
4686
end
4687
4688
4689
script.Parent.Parent.Touched:connect(Spread)
4690
4691
4692
end,o321)
4693
end))
4694
o322 = Create("Part",{
4695
["Parent"] = o312,
4696
["Material"] = Enum.Material.DiamondPlate,
4697
["BrickColor"] = BrickColor.new("Really black"),
4698
["Position"] = Vector3.new(-1766.71729, -3592.08398, 1113.85254),
4699
["Anchored"] = true,
4700
["CFrame"] = CFrame.new(-1766.71729, -3592.08398, 1113.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4701
["CanCollide"] = false,
4702
["FormFactor"] = Enum.FormFactor.Symmetric,
4703
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
4704
["BottomSurface"] = Enum.SurfaceType.Smooth,
4705
["TopSurface"] = Enum.SurfaceType.Smooth,
4706
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4707
})
4708
o323 = Create("Fire",{
4709
["Parent"] = o322,
4710
["Size"] = 30,
4711
["Color"] = Color3.new(1, 0.815686, 0),
4712
["Enabled"] = false,
4713
["Heat"] = 25,
4714
["SecondaryColor"] = Color3.new(1, 0, 0),
4715
})
4716
o324 = Create("Script",{
4717
["Parent"] = o323,
4718
})
4719
table.insert(cors,coroutine.create(function()
4720
wait()
4721
runDummyScript(function()
4722
function Spread(part)
4723
	check = part:findFirstChild("Fire")
4724
		if check == nil then 
4725
	script.Parent:Clone().Parent = part
4726
	
4727
		elseif check ~= nil then
4728
	check.Size = check.Size + 1
4729
	check.Heat = check.Heat  +1
4730
	end
4731
end
4732
4733
4734
script.Parent.Parent.Touched:connect(Spread)
4735
4736
4737
end,o324)
4738
end))
4739
o325 = Create("Part",{
4740
["Parent"] = o312,
4741
["Material"] = Enum.Material.DiamondPlate,
4742
["BrickColor"] = BrickColor.new("Really black"),
4743
["Position"] = Vector3.new(-1766.71729, -3591.31445, 1122.85254),
4744
["Rotation"] = Vector3.new(-9.48516273, 5.05940334e-005, 1.32760613e-006),
4745
["Anchored"] = true,
4746
["CFrame"] = CFrame.new(-1766.71729, -3591.31445, 1122.85254, 1, -2.3171097e-008, 8.83032442e-007, -1.22662527e-007, 0.986328304, 0.16479218, -8.74778323e-007, -0.164792165, 0.986328304),
4747
["CanCollide"] = false,
4748
["FormFactor"] = Enum.FormFactor.Symmetric,
4749
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
4750
["BottomSurface"] = Enum.SurfaceType.Smooth,
4751
["TopSurface"] = Enum.SurfaceType.Smooth,
4752
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4753
})
4754
o326 = Create("Fire",{
4755
["Parent"] = o325,
4756
["Size"] = 30,
4757
["Color"] = Color3.new(1, 0.815686, 0),
4758
["Enabled"] = false,
4759
["Heat"] = 25,
4760
["SecondaryColor"] = Color3.new(1, 0, 0),
4761
})
4762
o327 = Create("Script",{
4763
["Parent"] = o326,
4764
})
4765
table.insert(cors,coroutine.create(function()
4766
wait()
4767
runDummyScript(function()
4768
function Spread(part)
4769
	check = part:findFirstChild("Fire")
4770
		if check == nil then 
4771
	script.Parent:Clone().Parent = part
4772
	
4773
		elseif check ~= nil then
4774
	check.Size = check.Size + 1
4775
	check.Heat = check.Heat  +1
4776
	end
4777
end
4778
4779
4780
script.Parent.Parent.Touched:connect(Spread)
4781
4782
4783
end,o327)
4784
end))
4785
o328 = Create("Part",{
4786
["Parent"] = o312,
4787
["Material"] = Enum.Material.Neon,
4788
["BrickColor"] = BrickColor.new("Really black"),
4789
["Position"] = Vector3.new(-1766.75708, -3590.54297, 1123.36755),
4790
["Rotation"] = Vector3.new(-9.48516273, 5.05940334e-005, 1.32760613e-006),
4791
["Anchored"] = true,
4792
["CFrame"] = CFrame.new(-1766.75708, -3590.54297, 1123.36755, 1, -2.3171097e-008, 8.83032442e-007, -1.22662527e-007, 0.986328304, 0.16479218, -8.74778323e-007, -0.164792165, 0.986328304),
4793
["CanCollide"] = false,
4794
["FormFactor"] = Enum.FormFactor.Symmetric,
4795
["Size"] = Vector3.new(0.200000003, 2.1500001, 11.1029625),
4796
["BottomSurface"] = Enum.SurfaceType.Smooth,
4797
["TopSurface"] = Enum.SurfaceType.Smooth,
4798
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4799
})
4800
o329 = Create("Fire",{
4801
["Parent"] = o328,
4802
["Size"] = 30,
4803
["Color"] = Color3.new(1, 0.815686, 0),
4804
["Enabled"] = false,
4805
["Heat"] = 25,
4806
["SecondaryColor"] = Color3.new(1, 0, 0),
4807
})
4808
o330 = Create("Script",{
4809
["Parent"] = o329,
4810
})
4811
table.insert(cors,coroutine.create(function()
4812
wait()
4813
runDummyScript(function()
4814
function Spread(part)
4815
	check = part:findFirstChild("Fire")
4816
		if check == nil then 
4817
	script.Parent:Clone().Parent = part
4818
	
4819
		elseif check ~= nil then
4820
	check.Size = check.Size + 1
4821
	check.Heat = check.Heat  +1
4822
	end
4823
end
4824
4825
4826
script.Parent.Parent.Touched:connect(Spread)
4827
4828
4829
end,o330)
4830
end))
4831
o331 = Create("Part",{
4832
["Parent"] = o312,
4833
["Material"] = Enum.Material.DiamondPlate,
4834
["BrickColor"] = BrickColor.new("Really black"),
4835
["Position"] = Vector3.new(-1766.71729, -3592.08398, 1106.98718),
4836
["Rotation"] = Vector3.new(-180, -3.41509462e-006, -180),
4837
["Anchored"] = true,
4838
["CFrame"] = CFrame.new(-1766.71729, -3592.08398, 1106.98718, -1, 0, -5.96046448e-008, 0, 1, 0, 5.96046448e-008, 0, -1),
4839
["CanCollide"] = false,
4840
["FormFactor"] = Enum.FormFactor.Symmetric,
4841
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
4842
["BottomSurface"] = Enum.SurfaceType.Smooth,
4843
["TopSurface"] = Enum.SurfaceType.Smooth,
4844
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4845
})
4846
o332 = Create("Fire",{
4847
["Parent"] = o331,
4848
["Size"] = 30,
4849
["Color"] = Color3.new(1, 0.815686, 0),
4850
["Enabled"] = false,
4851
["Heat"] = 25,
4852
["SecondaryColor"] = Color3.new(1, 0, 0),
4853
})
4854
o333 = Create("Script",{
4855
["Parent"] = o332,
4856
})
4857
table.insert(cors,coroutine.create(function()
4858
wait()
4859
runDummyScript(function()
4860
function Spread(part)
4861
	check = part:findFirstChild("Fire")
4862
		if check == nil then 
4863
	script.Parent:Clone().Parent = part
4864
	
4865
		elseif check ~= nil then
4866
	check.Size = check.Size + 1
4867
	check.Heat = check.Heat  +1
4868
	end
4869
end
4870
4871
4872
script.Parent.Parent.Touched:connect(Spread)
4873
4874
4875
end,o333)
4876
end))
4877
o334 = Create("Part",{
4878
["Parent"] = o312,
4879
["Material"] = Enum.Material.DiamondPlate,
4880
["BrickColor"] = BrickColor.new("Really black"),
4881
["Position"] = Vector3.new(-1766.71704, -3591.31445, 1097.98718),
4882
["Rotation"] = Vector3.new(-170.514847, -5.33684324e-005, -180),
4883
["Anchored"] = true,
4884
["CFrame"] = CFrame.new(-1766.71704, -3591.31445, 1097.98718, -1, 3.1261262e-008, -9.31454849e-007, -1.22662556e-007, 0.986328304, 0.16479212, 9.2387188e-007, 0.16479212, -0.986328363),
4885
["CanCollide"] = false,
4886
["FormFactor"] = Enum.FormFactor.Symmetric,
4887
["Size"] = Vector3.new(1, 0.800000012, 9.83296204),
4888
["BottomSurface"] = Enum.SurfaceType.Smooth,
4889
["TopSurface"] = Enum.SurfaceType.Smooth,
4890
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4891
})
4892
o335 = Create("Fire",{
4893
["Parent"] = o334,
4894
["Size"] = 30,
4895
["Color"] = Color3.new(1, 0.815686, 0),
4896
["Enabled"] = false,
4897
["Heat"] = 25,
4898
["SecondaryColor"] = Color3.new(1, 0, 0),
4899
})
4900
o336 = Create("Script",{
4901
["Parent"] = o335,
4902
})
4903
table.insert(cors,coroutine.create(function()
4904
wait()
4905
runDummyScript(function()
4906
function Spread(part)
4907
	check = part:findFirstChild("Fire")
4908
		if check == nil then 
4909
	script.Parent:Clone().Parent = part
4910
	
4911
		elseif check ~= nil then
4912
	check.Size = check.Size + 1
4913
	check.Heat = check.Heat  +1
4914
	end
4915
end
4916
4917
4918
script.Parent.Parent.Touched:connect(Spread)
4919
4920
4921
end,o336)
4922
end))
4923
o337 = Create("Part",{
4924
["Parent"] = o312,
4925
["Material"] = Enum.Material.Neon,
4926
["BrickColor"] = BrickColor.new("Really black"),
4927
["Position"] = Vector3.new(-1766.67725, -3590.54297, 1097.47217),
4928
["Rotation"] = Vector3.new(-170.514847, -5.33684324e-005, -180),
4929
["Anchored"] = true,
4930
["CFrame"] = CFrame.new(-1766.67725, -3590.54297, 1097.47217, -1, 3.1261262e-008, -9.31454849e-007, -1.22662556e-007, 0.986328304, 0.16479212, 9.2387188e-007, 0.16479212, -0.986328363),
4931
["CanCollide"] = false,
4932
["FormFactor"] = Enum.FormFactor.Symmetric,
4933
["Size"] = Vector3.new(0.200000003, 2.1500001, 11.1029625),
4934
["BottomSurface"] = Enum.SurfaceType.Smooth,
4935
["TopSurface"] = Enum.SurfaceType.Smooth,
4936
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4937
})
4938
o338 = Create("Fire",{
4939
["Parent"] = o337,
4940
["Size"] = 30,
4941
["Color"] = Color3.new(1, 0.815686, 0),
4942
["Enabled"] = false,
4943
["Heat"] = 25,
4944
["SecondaryColor"] = Color3.new(1, 0, 0),
4945
})
4946
o339 = Create("Script",{
4947
["Parent"] = o338,
4948
})
4949
table.insert(cors,coroutine.create(function()
4950
wait()
4951
runDummyScript(function()
4952
function Spread(part)
4953
	check = part:findFirstChild("Fire")
4954
		if check == nil then 
4955
	script.Parent:Clone().Parent = part
4956
	
4957
		elseif check ~= nil then
4958
	check.Size = check.Size + 1
4959
	check.Heat = check.Heat  +1
4960
	end
4961
end
4962
4963
4964
script.Parent.Parent.Touched:connect(Spread)
4965
4966
4967
end,o339)
4968
end))
4969
o340 = Create("Part",{
4970
["Name"] = "Armor",
4971
["Parent"] = o312,
4972
["Material"] = Enum.Material.Slate,
4973
["BrickColor"] = BrickColor.new("Really black"),
4974
["Position"] = Vector3.new(-1766.55811, -3587.30859, 1111.36255),
4975
["Anchored"] = true,
4976
["CFrame"] = CFrame.new(-1766.55811, -3587.30859, 1111.36255, 1, 0, 0, 0, 1, 0, 0, 0, 1),
4977
["CanCollide"] = false,
4978
["FormFactor"] = Enum.FormFactor.Symmetric,
4979
["Size"] = Vector3.new(3.99000001, 2.0999999, 4.85296202),
4980
["BottomSurface"] = Enum.SurfaceType.Smooth,
4981
["TopSurface"] = Enum.SurfaceType.Smooth,
4982
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
4983
})
4984
o341 = Create("Fire",{
4985
["Parent"] = o340,
4986
["Size"] = 30,
4987
["Color"] = Color3.new(1, 0.815686, 0),
4988
["Enabled"] = false,
4989
["Heat"] = 25,
4990
["SecondaryColor"] = Color3.new(1, 0, 0),
4991
})
4992
o342 = Create("Script",{
4993
["Parent"] = o341,
4994
})
4995
table.insert(cors,coroutine.create(function()
4996
wait()
4997
runDummyScript(function()
4998
function Spread(part)
4999
	check = part:findFirstChild("Fire")
5000
		if check == nil then 
5001
	script.Parent:Clone().Parent = part
5002
	
5003
		elseif check ~= nil then
5004
	check.Size = check.Size + 1
5005
	check.Heat = check.Heat  +1
5006
	end
5007
end
5008
5009
5010
script.Parent.Parent.Touched:connect(Spread)
5011
5012
5013
end,o342)
5014
end))
5015
o343 = Create("Part",{
5016
["Name"] = "Armor",
5017
["Parent"] = o312,
5018
["Material"] = Enum.Material.Slate,
5019
["BrickColor"] = BrickColor.new("Really black"),
5020
["Position"] = Vector3.new(-1766.87305, -3587.26367, 1111.39258),
5021
["Anchored"] = true,
5022
["CFrame"] = CFrame.new(-1766.87305, -3587.26367, 1111.39258, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5023
["CanCollide"] = false,
5024
["FormFactor"] = Enum.FormFactor.Symmetric,
5025
["Size"] = Vector3.new(4.93999958, 3.38999987, 3.0129621),
5026
["BottomSurface"] = Enum.SurfaceType.Smooth,
5027
["TopSurface"] = Enum.SurfaceType.Smooth,
5028
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5029
})
5030
o344 = Create("Fire",{
5031
["Parent"] = o343,
5032
["Size"] = 30,
5033
["Color"] = Color3.new(1, 0.815686, 0),
5034
["Enabled"] = false,
5035
["Heat"] = 25,
5036
["SecondaryColor"] = Color3.new(1, 0, 0),
5037
})
5038
o345 = Create("Script",{
5039
["Parent"] = o344,
5040
})
5041
table.insert(cors,coroutine.create(function()
5042
wait()
5043
runDummyScript(function()
5044
function Spread(part)
5045
	check = part:findFirstChild("Fire")
5046
		if check == nil then 
5047
	script.Parent:Clone().Parent = part
5048
	
5049
		elseif check ~= nil then
5050
	check.Size = check.Size + 1
5051
	check.Heat = check.Heat  +1
5052
	end
5053
end
5054
5055
5056
script.Parent.Parent.Touched:connect(Spread)
5057
5058
5059
end,o345)
5060
end))
5061
o346 = Create("Part",{
5062
["Name"] = "Armor",
5063
["Parent"] = o312,
5064
["Material"] = Enum.Material.Slate,
5065
["BrickColor"] = BrickColor.new("Really black"),
5066
["Position"] = Vector3.new(-1768.47095, -3586.81836, 1111.39258),
5067
["Rotation"] = Vector3.new(-4.61960044e-005, -2.27979817e-005, 13.9343042),
5068
["Anchored"] = true,
5069
["CFrame"] = CFrame.new(-1768.47095, -3586.81836, 1111.39258, 0.970572472, -0.240809187, -3.97899839e-007, 0.240809187, 0.970572472, 8.0627234e-007, 1.92032843e-007, -8.78363664e-007, 1),
5070
["CanCollide"] = false,
5071
["FormFactor"] = Enum.FormFactor.Symmetric,
5072
["Size"] = Vector3.new(5.59999943, 1.13999987, 1.59296203),
5073
["BottomSurface"] = Enum.SurfaceType.Smooth,
5074
["TopSurface"] = Enum.SurfaceType.Smooth,
5075
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5076
})
5077
o347 = Create("Fire",{
5078
["Parent"] = o346,
5079
["Size"] = 30,
5080
["Color"] = Color3.new(1, 0.815686, 0),
5081
["Enabled"] = false,
5082
["Heat"] = 25,
5083
["SecondaryColor"] = Color3.new(1, 0, 0),
5084
})
5085
o348 = Create("Script",{
5086
["Parent"] = o347,
5087
})
5088
table.insert(cors,coroutine.create(function()
5089
wait()
5090
runDummyScript(function()
5091
function Spread(part)
5092
	check = part:findFirstChild("Fire")
5093
		if check == nil then 
5094
	script.Parent:Clone().Parent = part
5095
	
5096
		elseif check ~= nil then
5097
	check.Size = check.Size + 1
5098
	check.Heat = check.Heat  +1
5099
	end
5100
end
5101
5102
5103
script.Parent.Parent.Touched:connect(Spread)
5104
5105
5106
end,o348)
5107
end))
5108
o349 = Create("Part",{
5109
["Name"] = "Armor",
5110
["Parent"] = o312,
5111
["Material"] = Enum.Material.Slate,
5112
["BrickColor"] = BrickColor.new("Really black"),
5113
["Position"] = Vector3.new(-1771.11182, -3587.38672, 1111.15259),
5114
["Rotation"] = Vector3.new(0.000526479387, -6.7576475e-005, -11.3504553),
5115
["Anchored"] = true,
5116
["CFrame"] = CFrame.new(-1771.11182, -3587.38672, 1111.15259, 0.980441749, 0.19680962, -1.17943193e-006, -0.19680962, 0.980441749, -9.18879869e-006, -6.52079677e-007, 9.24120559e-006, 1),
5117
["CanCollide"] = false,
5118
["FormFactor"] = Enum.FormFactor.Symmetric,
5119
["Size"] = Vector3.new(0.200000003, 4.76999998, 3.39296198),
5120
["BottomSurface"] = Enum.SurfaceType.Smooth,
5121
["TopSurface"] = Enum.SurfaceType.Smooth,
5122
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5123
})
5124
o350 = Create("Fire",{
5125
["Parent"] = o349,
5126
["Size"] = 30,
5127
["Color"] = Color3.new(1, 0.815686, 0),
5128
["Enabled"] = false,
5129
["Heat"] = 25,
5130
["SecondaryColor"] = Color3.new(1, 0, 0),
5131
})
5132
o351 = Create("Script",{
5133
["Parent"] = o350,
5134
})
5135
table.insert(cors,coroutine.create(function()
5136
wait()
5137
runDummyScript(function()
5138
function Spread(part)
5139
	check = part:findFirstChild("Fire")
5140
		if check == nil then 
5141
	script.Parent:Clone().Parent = part
5142
	
5143
		elseif check ~= nil then
5144
	check.Size = check.Size + 1
5145
	check.Heat = check.Heat  +1
5146
	end
5147
end
5148
5149
5150
script.Parent.Parent.Touched:connect(Spread)
5151
5152
5153
end,o351)
5154
end))
5155
o352 = Create("Part",{
5156
["Name"] = "Armor",
5157
["Parent"] = o312,
5158
["Material"] = Enum.Material.Slate,
5159
["BrickColor"] = BrickColor.new("Really black"),
5160
["Position"] = Vector3.new(-1770.04199, -3593.6167, 1111.48254),
5161
["Rotation"] = Vector3.new(-4.61960044e-005, -2.27979817e-005, 13.9343042),
5162
["Anchored"] = true,
5163
["CFrame"] = CFrame.new(-1770.04199, -3593.6167, 1111.48254, 0.970572472, -0.240809187, -3.97899839e-007, 0.240809187, 0.970572472, 8.0627234e-007, 1.92032843e-007, -8.78363664e-007, 1),
5164
["CanCollide"] = false,
5165
["FormFactor"] = Enum.FormFactor.Symmetric,
5166
["Size"] = Vector3.new(0.200000003, 4.76999998, 3.39296198),
5167
["BottomSurface"] = Enum.SurfaceType.Smooth,
5168
["TopSurface"] = Enum.SurfaceType.Smooth,
5169
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5170
})
5171
o353 = Create("Fire",{
5172
["Parent"] = o352,
5173
["Size"] = 30,
5174
["Color"] = Color3.new(1, 0.815686, 0),
5175
["Enabled"] = false,
5176
["Heat"] = 25,
5177
["SecondaryColor"] = Color3.new(1, 0, 0),
5178
})
5179
o354 = Create("Script",{
5180
["Parent"] = o353,
5181
})
5182
table.insert(cors,coroutine.create(function()
5183
wait()
5184
runDummyScript(function()
5185
function Spread(part)
5186
	check = part:findFirstChild("Fire")
5187
		if check == nil then 
5188
	script.Parent:Clone().Parent = part
5189
	
5190
		elseif check ~= nil then
5191
	check.Size = check.Size + 1
5192
	check.Heat = check.Heat  +1
5193
	end
5194
end
5195
5196
5197
script.Parent.Parent.Touched:connect(Spread)
5198
5199
5200
end,o354)
5201
end))
5202
o355 = Create("Part",{
5203
["Name"] = "Armor",
5204
["Parent"] = o312,
5205
["Material"] = Enum.Material.Slate,
5206
["BrickColor"] = BrickColor.new("Really black"),
5207
["Position"] = Vector3.new(-1767.40088, -3593.04834, 1111.72253),
5208
["Rotation"] = Vector3.new(-4.61960044e-005, -2.27979817e-005, 13.9343042),
5209
["Anchored"] = true,
5210
["CFrame"] = CFrame.new(-1767.40088, -3593.04834, 1111.72253, 0.970572472, -0.240809187, -3.97899839e-007, 0.240809187, 0.970572472, 8.0627234e-007, 1.92032843e-007, -8.78363664e-007, 1),
5211
["CanCollide"] = false,
5212
["FormFactor"] = Enum.FormFactor.Symmetric,
5213
["Size"] = Vector3.new(5.59999943, 1.13999987, 1.59296203),
5214
["BottomSurface"] = Enum.SurfaceType.Smooth,
5215
["TopSurface"] = Enum.SurfaceType.Smooth,
5216
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5217
})
5218
o356 = Create("Fire",{
5219
["Parent"] = o355,
5220
["Size"] = 30,
5221
["Color"] = Color3.new(1, 0.815686, 0),
5222
["Enabled"] = false,
5223
["Heat"] = 25,
5224
["SecondaryColor"] = Color3.new(1, 0, 0),
5225
})
5226
o357 = Create("Script",{
5227
["Parent"] = o356,
5228
})
5229
table.insert(cors,coroutine.create(function()
5230
wait()
5231
runDummyScript(function()
5232
function Spread(part)
5233
	check = part:findFirstChild("Fire")
5234
		if check == nil then 
5235
	script.Parent:Clone().Parent = part
5236
	
5237
		elseif check ~= nil then
5238
	check.Size = check.Size + 1
5239
	check.Heat = check.Heat  +1
5240
	end
5241
end
5242
5243
5244
script.Parent.Parent.Touched:connect(Spread)
5245
5246
5247
end,o357)
5248
end))
5249
o358 = Create("Model",{
5250
["Name"] = "Leg2",
5251
["Parent"] = o1,
5252
})
5253
o359 = Create("Part",{
5254
["Name"] = "Middle",
5255
["Parent"] = o358,
5256
["Material"] = Enum.Material.Grass,
5257
["BrickColor"] = BrickColor.new("Really black"),
5258
["Position"] = Vector3.new(-1759.33374, -3597.11719, 1111.85254),
5259
["Velocity"] = Vector3.new(0, -1, 0),
5260
["Anchored"] = true,
5261
["CFrame"] = CFrame.new(-1759.33374, -3597.11719, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5262
["CanCollide"] = false,
5263
["FormFactor"] = Enum.FormFactor.Symmetric,
5264
["Size"] = Vector3.new(3.43296003, 6.86592293, 3.43296194),
5265
["BottomSurface"] = Enum.SurfaceType.Smooth,
5266
["TopSurface"] = Enum.SurfaceType.Smooth,
5267
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5268
})
5269
o360 = Create("Fire",{
5270
["Parent"] = o359,
5271
["Size"] = 30,
5272
["Color"] = Color3.new(1, 0.815686, 0),
5273
["Enabled"] = false,
5274
["Heat"] = 25,
5275
["SecondaryColor"] = Color3.new(1, 0, 0),
5276
})
5277
o361 = Create("Script",{
5278
["Parent"] = o360,
5279
})
5280
table.insert(cors,coroutine.create(function()
5281
wait()
5282
runDummyScript(function()
5283
function Spread(part)
5284
	check = part:findFirstChild("Fire")
5285
		if check == nil then 
5286
	script.Parent:Clone().Parent = part
5287
	
5288
		elseif check ~= nil then
5289
	check.Size = check.Size + 1
5290
	check.Heat = check.Heat  +1
5291
	end
5292
end
5293
5294
5295
script.Parent.Parent.Touched:connect(Spread)
5296
5297
5298
end,o361)
5299
end))
5300
o362 = Create("Part",{
5301
["Name"] = "Armor",
5302
["Parent"] = o358,
5303
["Material"] = Enum.Material.Concrete,
5304
["BrickColor"] = BrickColor.new("Really black"),
5305
["Position"] = Vector3.new(-1759.13867, -3599.01221, 1111.9325),
5306
["Velocity"] = Vector3.new(0, -1, 0),
5307
["Anchored"] = true,
5308
["CFrame"] = CFrame.new(-1759.13867, -3599.01221, 1111.9325, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5309
["CanCollide"] = false,
5310
["FormFactor"] = Enum.FormFactor.Symmetric,
5311
["Size"] = Vector3.new(3.8229599, 3.49592304, 4.39296246),
5312
["BottomSurface"] = Enum.SurfaceType.Smooth,
5313
["TopSurface"] = Enum.SurfaceType.Smooth,
5314
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5315
})
5316
o363 = Create("Fire",{
5317
["Parent"] = o362,
5318
["Size"] = 30,
5319
["Color"] = Color3.new(1, 0.815686, 0),
5320
["Enabled"] = false,
5321
["Heat"] = 25,
5322
["SecondaryColor"] = Color3.new(1, 0, 0),
5323
})
5324
o364 = Create("Script",{
5325
["Parent"] = o363,
5326
})
5327
table.insert(cors,coroutine.create(function()
5328
wait()
5329
runDummyScript(function()
5330
function Spread(part)
5331
	check = part:findFirstChild("Fire")
5332
		if check == nil then 
5333
	script.Parent:Clone().Parent = part
5334
	
5335
		elseif check ~= nil then
5336
	check.Size = check.Size + 1
5337
	check.Heat = check.Heat  +1
5338
	end
5339
end
5340
5341
5342
script.Parent.Parent.Touched:connect(Spread)
5343
5344
5345
end,o364)
5346
end))
5347
o365 = Create("Part",{
5348
["Name"] = "Armor",
5349
["Parent"] = o358,
5350
["Material"] = Enum.Material.Concrete,
5351
["BrickColor"] = BrickColor.new("Really black"),
5352
["Position"] = Vector3.new(-1759.13867, -3594.68213, 1111.9325),
5353
["Anchored"] = true,
5354
["CFrame"] = CFrame.new(-1759.13867, -3594.68213, 1111.9325, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5355
["CanCollide"] = false,
5356
["FormFactor"] = Enum.FormFactor.Symmetric,
5357
["Size"] = Vector3.new(3.8229599, 3.49592304, 4.39296246),
5358
["BottomSurface"] = Enum.SurfaceType.Smooth,
5359
["TopSurface"] = Enum.SurfaceType.Smooth,
5360
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5361
})
5362
o366 = Create("Fire",{
5363
["Parent"] = o365,
5364
["Size"] = 30,
5365
["Color"] = Color3.new(1, 0.815686, 0),
5366
["Enabled"] = false,
5367
["Heat"] = 25,
5368
["SecondaryColor"] = Color3.new(1, 0, 0),
5369
})
5370
o367 = Create("Script",{
5371
["Parent"] = o366,
5372
})
5373
table.insert(cors,coroutine.create(function()
5374
wait()
5375
runDummyScript(function()
5376
function Spread(part)
5377
	check = part:findFirstChild("Fire")
5378
		if check == nil then 
5379
	script.Parent:Clone().Parent = part
5380
	
5381
		elseif check ~= nil then
5382
	check.Size = check.Size + 1
5383
	check.Heat = check.Heat  +1
5384
	end
5385
end
5386
5387
5388
script.Parent.Parent.Touched:connect(Spread)
5389
5390
5391
end,o367)
5392
end))
5393
o368 = Create("Part",{
5394
["Name"] = "Armor",
5395
["Parent"] = o358,
5396
["Material"] = Enum.Material.Concrete,
5397
["BrickColor"] = BrickColor.new("Really black"),
5398
["Position"] = Vector3.new(-1759.32861, -3598.07715, 1110.65747),
5399
["Anchored"] = true,
5400
["CFrame"] = CFrame.new(-1759.32861, -3598.07715, 1110.65747, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5401
["CanCollide"] = false,
5402
["FormFactor"] = Enum.FormFactor.Symmetric,
5403
["Size"] = Vector3.new(2.42296004, 5.36592293, 1.30296254),
5404
["BottomSurface"] = Enum.SurfaceType.Smooth,
5405
["TopSurface"] = Enum.SurfaceType.Smooth,
5406
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5407
})
5408
o369 = Create("Fire",{
5409
["Parent"] = o368,
5410
["Size"] = 30,
5411
["Color"] = Color3.new(1, 0.815686, 0),
5412
["Enabled"] = false,
5413
["Heat"] = 25,
5414
["SecondaryColor"] = Color3.new(1, 0, 0),
5415
})
5416
o370 = Create("Script",{
5417
["Parent"] = o369,
5418
})
5419
table.insert(cors,coroutine.create(function()
5420
wait()
5421
runDummyScript(function()
5422
function Spread(part)
5423
	check = part:findFirstChild("Fire")
5424
		if check == nil then 
5425
	script.Parent:Clone().Parent = part
5426
	
5427
		elseif check ~= nil then
5428
	check.Size = check.Size + 1
5429
	check.Heat = check.Heat  +1
5430
	end
5431
end
5432
5433
5434
script.Parent.Parent.Touched:connect(Spread)
5435
5436
5437
end,o370)
5438
end))
5439
o371 = Create("Model",{
5440
["Name"] = "Leg1",
5441
["Parent"] = o1,
5442
})
5443
o372 = Create("Part",{
5444
["Name"] = "Middle",
5445
["Parent"] = o371,
5446
["Material"] = Enum.Material.Grass,
5447
["BrickColor"] = BrickColor.new("Really black"),
5448
["Position"] = Vector3.new(-1762.7666, -3597.11719, 1111.85254),
5449
["Anchored"] = true,
5450
["CFrame"] = CFrame.new(-1762.7666, -3597.11719, 1111.85254, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5451
["CanCollide"] = false,
5452
["FormFactor"] = Enum.FormFactor.Symmetric,
5453
["Size"] = Vector3.new(3.43296003, 6.86592293, 3.43296194),
5454
["BottomSurface"] = Enum.SurfaceType.Smooth,
5455
["TopSurface"] = Enum.SurfaceType.Smooth,
5456
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5457
})
5458
o373 = Create("Fire",{
5459
["Parent"] = o372,
5460
["Size"] = 30,
5461
["Color"] = Color3.new(1, 0.815686, 0),
5462
["Enabled"] = false,
5463
["Heat"] = 25,
5464
["SecondaryColor"] = Color3.new(1, 0, 0),
5465
})
5466
o374 = Create("Script",{
5467
["Parent"] = o373,
5468
})
5469
table.insert(cors,coroutine.create(function()
5470
wait()
5471
runDummyScript(function()
5472
function Spread(part)
5473
	check = part:findFirstChild("Fire")
5474
		if check == nil then 
5475
	script.Parent:Clone().Parent = part
5476
	
5477
		elseif check ~= nil then
5478
	check.Size = check.Size + 1
5479
	check.Heat = check.Heat  +1
5480
	end
5481
end
5482
5483
5484
script.Parent.Parent.Touched:connect(Spread)
5485
5486
5487
end,o374)
5488
end))
5489
o375 = Create("Part",{
5490
["Name"] = "Armor",
5491
["Parent"] = o371,
5492
["Material"] = Enum.Material.Concrete,
5493
["BrickColor"] = BrickColor.new("Really black"),
5494
["Position"] = Vector3.new(-1762.77856, -3599.01221, 1111.9325),
5495
["Anchored"] = true,
5496
["CFrame"] = CFrame.new(-1762.77856, -3599.01221, 1111.9325, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5497
["CanCollide"] = false,
5498
["FormFactor"] = Enum.FormFactor.Symmetric,
5499
["Size"] = Vector3.new(3.8229599, 3.49592304, 4.39296246),
5500
["BottomSurface"] = Enum.SurfaceType.Smooth,
5501
["TopSurface"] = Enum.SurfaceType.Smooth,
5502
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5503
})
5504
o376 = Create("Fire",{
5505
["Parent"] = o375,
5506
["Size"] = 30,
5507
["Color"] = Color3.new(1, 0.815686, 0),
5508
["Enabled"] = false,
5509
["Heat"] = 25,
5510
["SecondaryColor"] = Color3.new(1, 0, 0),
5511
})
5512
o377 = Create("Script",{
5513
["Parent"] = o376,
5514
})
5515
table.insert(cors,coroutine.create(function()
5516
wait()
5517
runDummyScript(function()
5518
function Spread(part)
5519
	check = part:findFirstChild("Fire")
5520
		if check == nil then 
5521
	script.Parent:Clone().Parent = part
5522
	
5523
		elseif check ~= nil then
5524
	check.Size = check.Size + 1
5525
	check.Heat = check.Heat  +1
5526
	end
5527
end
5528
5529
5530
script.Parent.Parent.Touched:connect(Spread)
5531
5532
5533
end,o377)
5534
end))
5535
o378 = Create("Part",{
5536
["Name"] = "Armor",
5537
["Parent"] = o371,
5538
["Material"] = Enum.Material.Concrete,
5539
["BrickColor"] = BrickColor.new("Really black"),
5540
["Position"] = Vector3.new(-1762.77856, -3594.63232, 1111.9325),
5541
["Anchored"] = true,
5542
["CFrame"] = CFrame.new(-1762.77856, -3594.63232, 1111.9325, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5543
["CanCollide"] = false,
5544
["FormFactor"] = Enum.FormFactor.Symmetric,
5545
["Size"] = Vector3.new(3.8229599, 3.49592304, 4.39296246),
5546
["BottomSurface"] = Enum.SurfaceType.Smooth,
5547
["TopSurface"] = Enum.SurfaceType.Smooth,
5548
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5549
})
5550
o379 = Create("Fire",{
5551
["Parent"] = o378,
5552
["Size"] = 30,
5553
["Color"] = Color3.new(1, 0.815686, 0),
5554
["Enabled"] = false,
5555
["Heat"] = 25,
5556
["SecondaryColor"] = Color3.new(1, 0, 0),
5557
})
5558
o380 = Create("Script",{
5559
["Parent"] = o379,
5560
})
5561
table.insert(cors,coroutine.create(function()
5562
wait()
5563
runDummyScript(function()
5564
function Spread(part)
5565
	check = part:findFirstChild("Fire")
5566
		if check == nil then 
5567
	script.Parent:Clone().Parent = part
5568
CV="Pastel blue"
5569
	
5570
local txt = Instance.new("BillboardGui", Character)
5571
txt.Adornee = Character .Head
5572
txt.Name = "_status"
5573
txt.Size = UDim2.new(2, 0, 1.2, 0)
5574
txt.StudsOffset = Vector3.new(-9, 8, 0)
5575
local text = Instance.new("TextLabel", txt)
5576
text.Size = UDim2.new(10, 0, 7, 0)
5577
text.FontSize = "Size24"
5578
text.TextScaled = true
5579
text.TextTransparency = 0
5580
text.BackgroundTransparency = 1 
5581
text.TextTransparency = 0
5582
text.TextStrokeTransparency = 0
5583
text.Font = "Antique"
5584
text.TextStrokeColor3 = Color3.new(255,85,0)
5585
5586
v=Instance.new("Part")
5587
v.Name = "ColorBrick"
5588
v.Parent=Player.Character
5589
v.FormFactor="Symmetric"
5590
v.Anchored=true
5591
v.CanCollide=false
5592
v.BottomSurface="Smooth"
5593
v.TopSurface="Smooth"
5594
v.Size=Vector3.new(10,5,3)
5595
v.Transparency=1
5596
v.CFrame=Character.Torso.CFrame
5597
v.BrickColor=BrickColor.new(CV)
5598
v.Transparency=1
5599
text.TextColor3 = Color3.new(0,0,0)
5600
v.Shape="Block"
5601
text.Text = "The Titan"
5602
5603
	
5604
		elseif check ~= nil then
5605
	check.Size = check.Size + 1
5606
	check.Heat = check.Heat  +1
5607
	end
5608
end
5609
5610
5611
script.Parent.Parent.Touched:connect(Spread)
5612
5613
5614
end,o380)
5615
end))
5616
o381 = Create("Part",{
5617
["Name"] = "Armor",
5618
["Parent"] = o371,
5619
["Material"] = Enum.Material.Concrete,
5620
["BrickColor"] = BrickColor.new("Really black"),
5621
["Position"] = Vector3.new(-1762.85864, -3598.07715, 1110.65747),
5622
["Anchored"] = true,
5623
["CFrame"] = CFrame.new(-1762.85864, -3598.07715, 1110.65747, 1, 0, 0, 0, 1, 0, 0, 0, 1),
5624
["CanCollide"] = false,
5625
["FormFactor"] = Enum.FormFactor.Symmetric,
5626
["Size"] = Vector3.new(2.42296004, 5.36592293, 1.30296254),
5627
["BottomSurface"] = Enum.SurfaceType.Smooth,
5628
["TopSurface"] = Enum.SurfaceType.Smooth,
5629
["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
5630
})
5631
o382 = Create("Fire",{
5632
["Parent"] = o381,
5633
["Size"] = 30,
5634
["Color"] = Color3.new(1, 0.815686, 0),
5635
["Enabled"] = false,
5636
["Heat"] = 25,
5637
["SecondaryColor"] = Color3.new(1, 0, 0),
5638
})
5639
o383 = Create("Script",{
5640
["Parent"] = o382,
5641
})
5642
table.insert(cors,coroutine.create(function()
5643
wait()
5644
runDummyScript(function()
5645
function Spread(part)
5646
	check = part:findFirstChild("Fire")
5647
		if check == nil then 
5648
	script.Parent:Clone().Parent = part
5649
	
5650
		elseif check ~= nil then
5651
	check.Size = check.Size + 1
5652
	check.Heat = check.Heat  +1
5653
	end
5654
end
5655
5656
5657
script.Parent.Parent.Touched:connect(Spread)
5658
char.Humanoid.MaxHealth = math.huge
5659
			wait()
5660
			char.Humanoid.Health = math.huge
5661
5662
5663
end,o383)
5664
end))
5665
mas.Parent = workspace
5666
mas:MakeJoints()
5667
local mas1 = mas:GetChildren()
5668
for i=1,#mas1 do
5669
	mas1[i].Parent = workspace 
5670
	ypcall(function() mas1[i]:MakeJoints() end)
5671
end
5672
mas:Destroy()
5673
for i=1,#cors do
5674
coroutine.resume(cors[i])
5675
end
5676
------------------------------------------------------------------------------------------
5677
game.Players.LocalPlayer.Character.Head.face:Remove()
5678
game.Players.LocalPlayer.Character.Head.Transparency = 0