View difference between Paste ID: PZTWHanD and U6bEgLAq
SHOW: | | - or go back to the newest paste.
1-
p = game.Players.chucky_100
1+
p = game.Players.XxXexe5
2
-------------
3
--cape
4
p = game.Players.LocalPlayer
5
char = p.Character
6
hum = char.Humanoid
7
root=char.HumanoidRootPart
8
torso = char.Torso
9
local player = game.Players.LocalPlayer
10
lig = Instance.new("PointLight",player.Character.Torso)
11
lig.Color=Color3.new(255,0,0)
12
m=player:GetMouse()
13
bb = Instance.new("BillboardGui",player.Character.Head)
14
bb.Enabled = true
15
function newRay(start,face,range,wat)
16
        local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
17
        hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
18
        return rey,hit,pos
19
end
20
aa1={}
21
torso=game.Players.LocalPlayer.Character.Torso
22
23
local WorldUp = Vector3.new(0,1,0)
24
function look2(Vec1,Vec2)
25
    local Orig = Vec1
26
    Vec1 = Vec1+Vector3.new(0,1,0)
27
    Vec2 = Vec2+Vector3.new(0,1,0)
28
    local Forward = (Vec2-Vec1).unit
29
    local Up = (WorldUp-WorldUp:Dot(Forward)*Forward).unit
30
    local Right = Up:Cross(Forward).unit
31
    Forward = -Forward
32
    Right = -Right
33
    return CFrame.new(Orig.X,Orig.Y,Orig.Z,Right.X,Up.X,Forward.X,Right.Y,Up.Y,Forward.Y,Right.Z,Up.Z,Forward.Z)
34
end
35
36
function look(CFr,Vec2)
37
    local A = Vector3.new(0,0,0)
38
    local B = CFr:inverse()*Vec2
39
    local CF = look2(A,Vector3.new(A.X,B.Y,B.Z))
40
    if B.Z > 0 then
41
        CF = CFr*(CF*CFrame.Angles(0,0,math.pi))
42
    elseif B.Z == 0 then
43
        if B.Y > 0 then
44
            CF = CFr*CFrame.Angles(math.pi/2,0,0)
45
        elseif B.Y < 0 then
46
            CF = CFr*CFrame.Angles(-math.pi/2,0,0)
47
        else
48
            CF = CFr
49
        end
50
    end
51
    local _,_,_,_,X,_,_,Y,_,_,Z,_ = CF:components()
52
    local Up = Vector3.new(X,Y,Z)
53
    local Forward = (Vec2-CFr.p).unit
54
    local Right = Up:Cross(Forward)
55
    Forward = -Forward
56
    Right = -Right
57
    return CFrame.new(CFr.X,CFr.Y,CFr.Z,Right.X,Up.X,Forward.X,Right.Y,Up.Y,Forward.Y,Right.Z,Up.Z,Forward.Z)
58
end
59
60
function simulate(j,d,m,r,t)
61
        local joint = j
62
        for i,v in ipairs(t) do
63
                if v[1]:FindFirstChild("Weld") then
64
                        local stiff = m.CFrame.lookVector*0.03
65
                        if i > 1 then joint = t[i-1][1].CFrame*CFrame.new(0,0,d*.5) end
66
                        local dir = (v[2].p-(joint.p+Vector3.new(0,0.2,0)+stiff)).unit
67
                        local dis = (v[2].p-(joint.p+Vector3.new(0,0.2,0)+stiff)).magnitude
68
                        local pos = joint.p+(dir*(d*0.5))
69
                      --if v[1].CFrame.y<=workspace.Base.CFrame.y then pos = joint.p+(dir*(d*.5)) end
70
                        local inv = v[1].Weld.Part0.CFrame
71
                        local rel1 = inv:inverse()*pos
72
                        local rel2 = inv:inverse()*(pos-(dir*dis))
73
                        local cf = look(CFrame.new(rel1),rel2)--CFrame.new(pos,pos-(dir*dis))*CFrame.fromEulerAnglesXYZ(r.x,r.y,r.z)
74
                        v[1].Weld.C0 = cf
75
                        v[2] = inv*cf
76
                        --v[1].CFrame = cf
77
                end
78
        end
79
end
80
for i=1,8 do
81
 local p = Instance.new("Part",char)
82
 p.Anchored = false
83
p.BrickColor = BrickColor.new("White") ---- change COlor here
84
 p.CanCollide = false
85
 p.FormFactor="Custom"
86
 p.Material = "SmoothPlastic"
87
 p.TopSurface = "SmoothNoOutlines"
88
 p.BottomSurface = "SmoothNoOutlines"
89
 p.RightSurface = "SmoothNoOutlines"
90
 p.LeftSurface = "SmoothNoOutlines"
91
 p.FrontSurface = "SmoothNoOutlines"
92
 p.BackSurface = "SmoothNoOutlines"
93
94
 p.Size=Vector3.new(2,.2,0.2)
95
 p:BreakJoints() -- sometimes the parts are stuck to something so you have to breakjoints them
96
mesh = Instance.new("BlockMesh",p)
97
mesh.Scale = Vector3.new(1,1,4)
98
local w = Instance.new("Motor6D",p)
99
w.Part0 = aa1[i-1] and aa1[i-1][1] or torso
100
w.Part1 = p
101
w.Name = "Weld"
102
 --table.insert(aa1,p)
103
 aa1[i] = {p,p.CFrame}
104
105
end
106
game:service"RunService".Stepped:connect(function()
107
 simulate(torso.CFrame*CFrame.new(0,0.9,.5),.6,torso,Vector3.new(),aa1)
108
end)
109
-------------
110
--NAMETAG
111
p = game.Players.LocalPlayer
112
char = p.Character
113
local char = p.Character
114
torso = char.Torso
115
neck = char.Torso.Neck
116
hum = char.Humanoid
117
118
CV="White"
119
120
local txt = Instance.new("BillboardGui", char)
121
txt.Adornee = char .Head
122
txt.Name = "_status"
123
txt.Size = UDim2.new(2, 0, 1.2, 0)
124
txt.StudsOffset = Vector3.new(-9, 8, 0)
125
local text = Instance.new("TextLabel", txt)
126
text.Size = UDim2.new(10, 0, 7, 0)
127
text.FontSize = "Size24"
128
text.TextScaled = true
129
text.TextTransparency = 0
130
text.BackgroundTransparency = 1 
131
text.TextTransparency = 0
132
text.TextStrokeTransparency = 0
133
text.Font = "SciFi"
134
text.TextStrokeColor3 = Color3.new(0,0,0)
135
136
v=Instance.new("Part")
137
v.Name = "ColorBrick"
138
v.Parent=p.Character
139
v.FormFactor="Symmetric"
140
v.Anchored=true
141
v.CanCollide=false
142
v.BottomSurface="Smooth"
143
v.TopSurface="Smooth"
144
v.Size=Vector3.new(10,5,3)
145
v.Transparency=1
146
v.CFrame=char.Torso.CFrame
147
v.BrickColor=BrickColor.new(CV)
148
v.Transparency=1
149
text.TextColor3 = Color3.new(100,0,0) --- COlor here
150
v.Shape="Block"
151
text.Text = "Lord chucky/BIG DADDY" --- Put name here
152
-----------
153
music = Instance.new("Sound", Character)
154
music.SoundId ="http://www.roblox.com/asset/?id=331436076"
155
music.Volume  = 1
156
music.Looped = true
157
wait(0.1)
158
music:Play()
159
--MUSIC
160
-------------
161
Player=game:GetService("Players").LocalPlayer
162
Character=Player.Character 
163
PlayerGui=Player.PlayerGui
164
Backpack=Player.Backpack 
165
Torso=Character.Torso 
166
Head=Character.Head 
167
Humanoid=Character.Humanoid
168
m=Instance.new('Model',Character)
169
LeftArm=Character["Left Arm"] 
170
LeftLeg=Character["Left Leg"] 
171
RightArm=Character["Right Arm"] 
172
RightLeg=Character["Right Leg"] 
173
LS=Torso["Left Shoulder"] 
174
LH=Torso["Left Hip"] 
175
RS=Torso["Right Shoulder"] 
176
RH=Torso["Right Hip"] 
177
Face = Head.face
178
Neck=Torso.Neck
179
it=Instance.new
180
attacktype=1
181
vt=Vector3.new
182
cf=CFrame.new
183
euler=CFrame.fromEulerAnglesXYZ
184
angles=CFrame.Angles
185
cloaked=false
186
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
187
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
188
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
189
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
190
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
191
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
192
RootPart=Character.HumanoidRootPart
193
RootJoint=RootPart.RootJoint
194
RootCF=euler(-1.57,0,3.14)
195
attack = false 
196
attackdebounce = false 
197
deb=false
198
equipped=true
199
hand=false
200
MMouse=nil
201
combo=0
202
mana=0
203
trispeed=.2
204
attackmode='none'
205
local idle=0
206
local Anim="Idle"
207
local Effects={}
208
local gun=false
209
local shoot=false
210
player=nil 
211
mana=0
212
local CurrentMode = "Unsheathed"
213
plr = game.Players.LocalPlayer
214
asdasd = plr.Name
215
ws = game.Workspace[asdasd]
216
Mouse = Player:GetMouse()
217
for i,v in pairs(Character:children()) do
218
    if v:IsA("Hat") then
219
        v:Destroy()
220
    end
221
end
222
--NFSBOYLOL EDIT
223
Player.CanLoadCharacterAppearance = true
224
Character.Humanoid.MaxHealth = math.huge
225
Character.Humanoid.JumpPower = 100
226
Character.Humanoid.WalkSpeed = (90)
227
228
Character.Shirt:Destroy()
229
Character.Pants:Destroy()
230
--FUNCTIONS AND HUMANOID STATS
231
232
Character.Humanoid.NameDisplayDistance = 0
233
Character.Humanoid.HealthDisplayDistance = 0
234
Character.Head.BrickColor = BrickColor.new(255,0,0)
235
Character.Head.face.Texture = "http://www.roblox.com/asset/?id=259421287"
236
Character.Head.Mesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
237
Character.Head.Mesh.TextureId = "http://www.roblox.com/asset/?id=21057378"
238
Character.Head.Mesh.Scale = Vector3.new(1,1,1)
239
Character.Head.Mesh.VertexColor = Vector3.new(0.7,0.7,0.7)
240
Character.Head.Material = "SmoothPlastic"
241
242
shirt = Instance.new("Shirt", Character)
243
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=58761367"
244
245
pants = Instance.new("Pants", Character)
246
pants.PantsTemplate = "http://www.roblox.com/asset/?id=58761326"
247
--SHIRT AND PANTS
248
game.Workspace.Base.Material = "Granite"
249
game.Workspace.Base.BrickColor = BrickColor.new("White")
250
--BASEPLATE
251
local particleemitter = Instance.new("ParticleEmitter", ws.Torso)
252
particleemitter.VelocitySpread = 180
253
particleemitter.Lifetime = NumberRange.new(0.2)
254
particleemitter.Speed = NumberRange.new(2)
255
particleemitter.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 2), NumberSequenceKeypoint.new(1, 10)})
256
particleemitter.RotSpeed = NumberRange.new(-45, 45)
257
particleemitter.Rate = 100
258
particleemitter.Rotation = NumberRange.new(-45, 45)
259
particleemitter.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(0.701, 0), NumberSequenceKeypoint.new(1, 1)})
260
particleemitter.LightEmission = 0
261
particleemitter.Color = ColorSequence.new(Color3.new(1,1,1), Color3.new(1,1,1)) --Color here
262
------------
263
music = Instance.new("Sound", Character)
264
music.SoundId ="http://www.roblox.com/asset/?id=331436076"
265
music.Volume  = 1
266
music.Looped = true
267
wait(0.1)
268
music:Play()
269
--MUSIC
270
---------
271
Player=game:GetService("Players").LocalPlayer
272
Character=Player.Character 
273
PlayerGui=Player.PlayerGui
274
Backpack=Player.Backpack 
275
Torso=Character.Torso 
276
Head=Character.Head 
277
Humanoid=Character.Humanoid
278
m=Instance.new('Model',Character)
279
LeftArm=Character["Left Arm"] 
280
LeftLeg=Character["Left Leg"] 
281
RightArm=Character["Right Arm"] 
282
RightLeg=Character["Right Leg"] 
283
LS=Torso["Left Shoulder"] 
284
LH=Torso["Left Hip"] 
285
RS=Torso["Right Shoulder"] 
286
RH=Torso["Right Hip"] 
287
Face = Head.face
288
Neck=Torso.Neck
289
it=Instance.new
290
attacktype=1
291
vt=Vector3.new
292
cf=CFrame.new
293
euler=CFrame.fromEulerAnglesXYZ
294
angles=CFrame.Angles
295
cloaked=false
296
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
297
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
298
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
299
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
300
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
301
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
302
RootPart=Character.HumanoidRootPart
303
RootJoint=RootPart.RootJoint
304
RootCF=euler(-1.57,0,3.14)
305
attack = false 
306
attackdebounce = false 
307
deb=false
308
equipped=true
309
hand=false
310
MMouse=nil
311
combo=0
312
mana=0
313
trispeed=.2
314
attackmode='none'
315
local idle=0
316
local Anim="Idle"
317
local Effects={}
318
local gun=false
319
local shoot=false
320
player=nil 
321
mana=0
322
323
mouse=Player:GetMouse()
324
--save shoulders 
325
RSH, LSH=nil, nil 
326
--welds 
327
RW, LW=Instance.new("Weld"), Instance.new("Weld") 
328
RW.Name="Right Shoulder" LW.Name="Left Shoulder"
329
LH=Torso["Left Hip"]
330
RH=Torso["Right Hip"]
331
TorsoColor=Torso.BrickColor
332
function NoOutline(Part)
333
Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
334
end
335
player=Player 
336
ch=Character
337
RSH=ch.Torso["Right Shoulder"] 
338
LSH=ch.Torso["Left Shoulder"] 
339
-- 
340
RSH.Parent=nil 
341
LSH.Parent=nil 
342
-- 
343
RW.Name="Right Shoulder"
344
RW.Part0=ch.Torso 
345
RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) 
346
RW.C1=cf(0, 0.5, 0) 
347
RW.Part1=ch["Right Arm"] 
348
RW.Parent=ch.Torso 
349
-- 
350
LW.Name="Left Shoulder"
351
LW.Part0=ch.Torso 
352
LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) 
353
LW.C1=cf(0, 0.5, 0) 
354
LW.Part1=ch["Left Arm"] 
355
LW.Parent=ch.Torso 
356
357
	Player=game:GetService('Players').LocalPlayer
358
	Character=Player.Character
359
	Mouse=Player:GetMouse()
360
	m=Instance.new('Model',Character)
361
362
363
	local function weldBetween(a, b)
364
	    local weldd = Instance.new("ManualWeld")
365
	    weldd.Part0 = a
366
	    weldd.Part1 = b
367
	    weldd.C0 = CFrame.new()
368
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
369
	    weldd.Parent = a
370
	    return weldd
371
	end
372
	
373
	function swait(num)
374
    if num==0 or num==nil then
375
    game:service'RunService'.Stepped:wait(0)
376
    else
377
    for i=0,num do
378
    game:service'RunService'.Stepped:wait(0)
379
    end
380
    end
381
	    end
382
	
383
	function nooutline(part)
384
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
385
	end
386
	
387
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
388
		local fp=it("Part")
389
		fp.formFactor=formfactor
390
		fp.Parent=parent
391
		fp.Reflectance=reflectance
392
		fp.Transparency=transparency
393
		fp.CanCollide=false
394
		fp.Locked=true
395
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
396
		fp.Name=name
397
		fp.Size=size
398
		fp.Position=Character.Torso.Position
399
		nooutline(fp)
400
		fp.Material=material
401
		fp:BreakJoints()
402
		return fp
403
	end
404
	
405
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
406
		local mesh=it(Mesh)
407
		mesh.Parent=part
408
		if Mesh=="SpecialMesh" then
409
			mesh.MeshType=meshtype
410
			mesh.MeshId=meshid
411
		end
412
		mesh.Offset=offset
413
		mesh.Scale=scale
414
		return mesh
415
	end
416
	
417
	function weld(parent,part0,part1,c0,c1)
418
		local weld=it("Weld")
419
		weld.Parent=parent
420
		weld.Part0=part0
421
		weld.Part1=part1
422
		weld.C0=c0
423
		weld.C1=c1
424
		return weld
425
	end
426
	
427
	
428
local function CFrameFromTopBack(at, top, back)
429
local right = top:Cross(back)
430
return CFrame.new(at.x, at.y, at.z,
431
right.x, top.x, back.x,
432
right.y, top.y, back.y,
433
right.z, top.z, back.z)
434
end
435
436
function Triangle(a, b, c)
437
local edg1 = (c-a):Dot((b-a).unit)
438
local edg2 = (a-b):Dot((c-b).unit)
439
local edg3 = (b-c):Dot((a-c).unit)
440
if edg1 <= (b-a).magnitude and edg1 >= 0 then
441
a, b, c = a, b, c
442
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
443
a, b, c = b, c, a
444
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
445
a, b, c = c, a, b
446
else
447
assert(false, "unreachable")
448
end
449
 
450
local len1 = (c-a):Dot((b-a).unit)
451
local len2 = (b-a).magnitude - len1
452
local width = (a + (b-a).unit*len1 - c).magnitude
453
 
454
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
455
 
456
local list = {}
457
 
458
if len1 > 0.01 then
459
local w1 = Instance.new('WedgePart', m)
460
game:GetService("Debris"):AddItem(w1,5)
461
w1.Material = "SmoothPlastic"
462
w1.FormFactor = 'Custom'
463
w1.BrickColor = BrickColor.new("Really red")
464
w1.Transparency = 0
465
w1.Reflectance = 0
466
w1.Material = "SmoothPlastic"
467
w1.CanCollide = false
468
NoOutline(w1)
469
local sz = Vector3.new(0.2, width, len1)
470
w1.Size = sz
471
local sp = Instance.new("SpecialMesh",w1)
472
sp.MeshType = "Wedge"
473
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
474
w1:BreakJoints()
475
w1.Anchored = true
476
w1.Parent = workspace
477
w1.Transparency = 0.7
478
table.insert(Effects,{w1,"Disappear",.01})
479
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
480
table.insert(list,w1)
481
end
482
 
483
if len2 > 0.01 then
484
local w2 = Instance.new('WedgePart', m)
485
game:GetService("Debris"):AddItem(w2,5)
486
w2.Material = "SmoothPlastic"
487
w2.FormFactor = 'Custom'
488
w2.BrickColor = BrickColor.new("Really red")
489
w2.Transparency = 0
490
w2.Reflectance = 0
491
w2.Material = "SmoothPlastic"
492
w2.CanCollide = false
493
NoOutline(w2)
494
local sz = Vector3.new(0.2, width, len2)
495
w2.Size = sz
496
local sp = Instance.new("SpecialMesh",w2)
497
sp.MeshType = "Wedge"
498
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
499
w2:BreakJoints()
500
w2.Anchored = true
501
w2.Parent = workspace
502
w2.Transparency = 0.7
503
table.insert(Effects,{w2,"Disappear",.01})
504
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
505
table.insert(list,w2)
506
end
507
return unpack(list)
508
end
509
	
510
	
511
so = function(id,par,vol,pit) 
512
coroutine.resume(coroutine.create(function()
513
local sou = Instance.new("Sound",par or workspace)
514
sou.Volume=vol
515
sou.Pitch=pit or 1
516
sou.SoundId=id
517
swait() 
518
sou:play() 
519
game:GetService("Debris"):AddItem(sou,6)
520
end))
521
end
522
 
523
function clerp(a,b,t) 
524
local qa = {QuaternionFromCFrame(a)}
525
local qb = {QuaternionFromCFrame(b)} 
526
local ax, ay, az = a.x, a.y, a.z 
527
local bx, by, bz = b.x, b.y, b.z
528
local _t = 1-t
529
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) 
530
end 
531
 
532
function QuaternionFromCFrame(cf) 
533
local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() 
534
local trace = m00 + m11 + m22 
535
if trace > 0 then 
536
local s = math.sqrt(1 + trace) 
537
local recip = 0.5/s 
538
return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 
539
else 
540
local i = 0 
541
if m11 > m00 then
542
i = 1
543
end
544
if m22 > (i == 0 and m00 or m11) then 
545
i = 2 
546
end 
547
if i == 0 then 
548
local s = math.sqrt(m00-m11-m22+1) 
549
local recip = 0.5/s 
550
return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip 
551
elseif i == 1 then 
552
local s = math.sqrt(m11-m22-m00+1) 
553
local recip = 0.5/s 
554
return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip 
555
elseif i == 2 then 
556
local s = math.sqrt(m22-m00-m11+1) 
557
local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip 
558
end 
559
end 
560
end
561
 
562
function QuaternionToCFrame(px, py, pz, x, y, z, w) 
563
local xs, ys, zs = x + x, y + y, z + z 
564
local wx, wy, wz = w*xs, w*ys, w*zs 
565
local xx = x*xs 
566
local xy = x*ys 
567
local xz = x*zs 
568
local yy = y*ys 
569
local yz = y*zs 
570
local zz = z*zs 
571
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)) 
572
end
573
 
574
function QuaternionSlerp(a, b, t) 
575
local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] 
576
local startInterp, finishInterp; 
577
if cosTheta >= 0.0001 then 
578
if (1 - cosTheta) > 0.0001 then 
579
local theta = math.acos(cosTheta) 
580
local invSinTheta = 1/math.sin(theta) 
581
startInterp = math.sin((1-t)*theta)*invSinTheta 
582
finishInterp = math.sin(t*theta)*invSinTheta  
583
else 
584
startInterp = 1-t 
585
finishInterp = t 
586
end 
587
else 
588
if (1+cosTheta) > 0.0001 then 
589
local theta = math.acos(-cosTheta) 
590
local invSinTheta = 1/math.sin(theta) 
591
startInterp = math.sin((t-1)*theta)*invSinTheta 
592
finishInterp = math.sin(t*theta)*invSinTheta 
593
else 
594
startInterp = t-1 
595
finishInterp = t 
596
end 
597
end 
598
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 
599
end
600
601
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
602
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
603
end 
604
605
local function CFrameFromTopBack(at, top, back)
606
local right = top:Cross(back)
607
return CFrame.new(at.x, at.y, at.z,
608
right.x, top.x, back.x,
609
right.y, top.y, back.y,
610
right.z, top.z, back.z)
611
end
612
613
--Example: Torso.Weld.C0 = clerp(Torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
614
615
616
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
617
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
618
end 
619
620
Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
621
        if hit.Parent==nil then
622
                return
623
        end
624
        h=hit.Parent:FindFirstChild("Humanoid")
625
        for _,v in pairs(hit.Parent:children()) do
626
        if v:IsA("Humanoid") then
627
        h=v
628
        end
629
        end
630
        if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
631
        h=hit.Parent.Parent:FindFirstChild("Humanoid")
632
        end
633
        if hit.Parent.className=="Hat" then
634
        hit=hit.Parent.Parent:findFirstChild("Head")
635
        end
636
        if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
637
        if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
638
        --[[                if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
639
                        return
640
                end]]
641
--                        hs(hit,1.2) 
642
                        c=Instance.new("ObjectValue")
643
                        c.Name="creator"
644
                        c.Value=game:service("Players").LocalPlayer
645
                        c.Parent=h
646
                        game:GetService("Debris"):AddItem(c,.5)
647
                Damage=math.random(minim,maxim)
648
--                h:TakeDamage(Damage)
649
                blocked=false
650
                block=hit.Parent:findFirstChild("Block")
651
                if block~=nil then
652
                print(block.className)
653
                if block.className=="NumberValue" then
654
                if block.Value>0 then
655
                blocked=true
656
                if decreaseblock==nil then
657
                block.Value=block.Value-1
658
                end
659
                end
660
                end
661
                if block.className=="IntValue" then
662
                if block.Value>0 then
663
                blocked=true
664
                if decreaseblock~=nil then
665
                block.Value=block.Value-1
666
                end
667
                end
668
                end
669
                end
670
                if blocked==false then
671
--                h:TakeDamage(Damage)
672
                h.Health=h.Health-Damage
673
                showDamage(hit.Parent,Damage,.5,BrickColor.new("Really red"))
674
                else
675
                h.Health=h.Health-(Damage/2)
676
                showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue"))
677
                end
678
                if Type=="Knockdown" then
679
                hum=hit.Parent.Humanoid
680
hum.PlatformStand=true
681
coroutine.resume(coroutine.create(function(HHumanoid)
682
swait(1)
683
HHumanoid.PlatformStand=false
684
end),hum)
685
                local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
686
--hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
687
local bodvol=Instance.new("BodyVelocity")
688
bodvol.velocity=angle*knockback
689
bodvol.P=5000
690
bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
691
bodvol.Parent=hit
692
rl=Instance.new("BodyAngularVelocity")
693
rl.P=3000
694
rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
695
rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
696
rl.Parent=hit
697
game:GetService("Debris"):AddItem(bodvol,.5)
698
game:GetService("Debris"):AddItem(rl,.5)
699
                elseif Type=="Normal" then
700
                vp=Instance.new("BodyVelocity")
701
                vp.P=500
702
                vp.maxForce=Vector3.new(math.huge,0,math.huge)
703
--                vp.velocity=Character.Torso.CFrame.lookVector*Knockback
704
                if KnockbackType==1 then
705
                vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
706
                elseif KnockbackType==2 then
707
                vp.velocity=Property.CFrame.lookVector*knockback
708
                end
709
                if knockback>0 then
710
                        vp.Parent=hit.Parent.Torso
711
                end
712
                game:GetService("Debris"):AddItem(vp,.5)
713
                elseif Type=="Up" then
714
                local bodyVelocity=Instance.new("BodyVelocity")
715
                bodyVelocity.velocity=vt(0,60,0)
716
                bodyVelocity.P=5000
717
                bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
718
                bodyVelocity.Parent=hit
719
                game:GetService("Debris"):AddItem(bodyVelocity,1)
720
                rl=Instance.new("BodyAngularVelocity")
721
                rl.P=3000
722
                rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
723
                rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
724
                rl.Parent=hit
725
                game:GetService("Debris"):AddItem(rl,.5)
726
                elseif Type=="Snare" then
727
                bp=Instance.new("BodyPosition")
728
                bp.P=2000
729
                bp.D=100
730
                bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
731
                bp.position=hit.Parent.Torso.Position
732
                bp.Parent=hit.Parent.Torso
733
                game:GetService("Debris"):AddItem(bp,1)
734
                elseif Type=="Target" then
735
                if Targetting==false then
736
                ZTarget=hit.Parent.Torso
737
                coroutine.resume(coroutine.create(function(Part) 
738
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
739
                swait(5)
740
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
741
                end),ZTarget)
742
                TargHum=ZTarget.Parent:findFirstChild("Humanoid")
743
                targetgui=Instance.new("BillboardGui")
744
                targetgui.Parent=ZTarget
745
                targetgui.Size=UDim2.new(10,100,10,100)
746
                targ=Instance.new("ImageLabel")
747
                targ.Parent=targetgui
748
                targ.BackgroundTransparency=1
749
                targ.Image="rbxassetid://4834067"
750
                targ.Size=UDim2.new(1,0,1,0)
751
                cam.CameraType="Scriptable"
752
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
753
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
754
                workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
755
                Targetting=true
756
                RocketTarget=ZTarget
757
                for i=1,Property do
758
                --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
759
                if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
760
                swait()
761
                end
762
                --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
763
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
764
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
765
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
766
                end
767
                Targetting=false
768
                RocketTarget=nil
769
                targetgui.Parent=nil
770
                cam.CameraType="Custom"
771
                end
772
                end
773
                        debounce=Instance.new("BoolValue")
774
                        debounce.Name="DebounceHit"
775
                        debounce.Parent=hit.Parent
776
                        debounce.Value=true
777
                        game:GetService("Debris"):AddItem(debounce,Delay)
778
                        c=Instance.new("ObjectValue")
779
                        c.Name="creator"
780
                        c.Value=Player
781
                        c.Parent=h
782
                        game:GetService("Debris"):AddItem(c,.5)
783
                CRIT=false
784
                hitDeb=true
785
                AttackPos=6
786
        end
787
end
788
 
789
showDamage=function(Char,Dealt,du,Color)
790
        m=Instance.new("Model")
791
        m.Name=tostring(Dealt)
792
        h=Instance.new("Humanoid")
793
        h.Health=0
794
        h.MaxHealth=0
795
        h.Parent=m
796
        c=Instance.new("Part")
797
        c.Transparency=0
798
        c.BrickColor=Color
799
        c.Name="Head"
800
        c.TopSurface=0
801
        c.BottomSurface=0
802
        c.formFactor="Plate"
803
        c.Size=Vector3.new(1,.4,1)
804
        ms=Instance.new("CylinderMesh")
805
        ms.Scale=Vector3.new(.8,.8,.8)
806
        if CRIT==true then
807
                ms.Scale=Vector3.new(1,1.25,1)
808
        end
809
        ms.Parent=c
810
        c.Reflectance=0
811
        Instance.new("BodyGyro").Parent=c
812
        c.Parent=m
813
        if Char:findFirstChild("Head")~=nil then
814
        c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0))
815
        elseif Char.Parent:findFirstChild("Head")~=nil then
816
        c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0))
817
        end
818
        f=Instance.new("BodyPosition")
819
        f.P=2000
820
        f.D=100
821
        f.maxForce=Vector3.new(math.huge,math.huge,math.huge)
822
        f.position=c.Position+Vector3.new(0,3,0)
823
        f.Parent=c
824
        game:GetService("Debris"):AddItem(m,.5+du)
825
        c.CanCollide=false
826
        m.Parent=workspace
827
        c.CanCollide=false
828
end
829
830
Player=game:GetService('Players').LocalPlayer
831
Character=Player.Character
832
Mouse=Player:GetMouse()
833
m=Instance.new('Model',Character)
834
it=Instance.new
835
function nooutline(part)
836
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
837
end
838
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
839
	local fp=it("Part")
840
	fp.formFactor=formfactor
841
	fp.Parent=parent
842
	fp.Reflectance=reflectance
843
	fp.Transparency=transparency
844
	fp.CanCollide=false
845
	fp.Locked=true
846
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
847
	fp.Name=name
848
	fp.Size=size
849
	fp.Position=Character.Torso.Position
850
	nooutline(fp)
851
	fp.Material=material
852
	fp:BreakJoints()
853
	return fp
854
end
855
function mesh(Mesh,part,meshtype,meshid,offset,scale)
856
	local mesh=it(Mesh)
857
	mesh.Parent=part
858
	if Mesh=="SpecialMesh" then
859
		mesh.MeshType=meshtype
860
		mesh.MeshId=meshid
861
	end
862
	mesh.Offset=offset
863
	mesh.Scale=scale
864
	return mesh
865
end
866
function weld(parent,part0,part1,c0,c1)
867
	local weld=it("Weld")
868
	weld.Parent=parent
869
	weld.Part0=part0
870
	weld.Part1=part1
871
	weld.C0=c0
872
	weld.C1=c1
873
	return weld
874
end
875
876
Player=game:GetService('Players').LocalPlayer
877
Character=Player.Character
878
Mouse=Player:GetMouse()
879
m=Instance.new('Model',Character)
880
it=Instance.new
881
function nooutline(part)
882
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
883
end
884
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
885
	local fp=it("Part")
886
	fp.formFactor=formfactor
887
	fp.Parent=parent
888
	fp.Reflectance=reflectance
889
	fp.Transparency=transparency
890
	fp.CanCollide=false
891
	fp.Locked=true
892
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
893
	fp.Name=name
894
	fp.Size=size
895
	fp.Position=Character.Torso.Position
896
	nooutline(fp)
897
	fp.Material=material
898
	fp:BreakJoints()
899
	return fp
900
end
901
function mesh(Mesh,part,meshtype,meshid,offset,scale)
902
	local mesh=it(Mesh)
903
	mesh.Parent=part
904
	if Mesh=="SpecialMesh" then
905
		mesh.MeshType=meshtype
906
		mesh.MeshId=meshid
907
	end
908
	mesh.Offset=offset
909
	mesh.Scale=scale
910
	return mesh
911
end
912
function weld(parent,part0,part1,c0,c1)
913
	local weld=it("Weld")
914
	weld.Parent=parent
915
	weld.Part0=part0
916
	weld.Part1=part1
917
	weld.C0=c0
918
	weld.C1=c1
919
	return weld
920
end
921
922
Player=game:GetService('Players').LocalPlayer
923
Character=Player.Character
924
Mouse=Player:GetMouse()
925
m=Instance.new('Model',Character)
926
it=Instance.new
927
function nooutline(part)
928
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
929
end
930
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
931
	local fp=it("Part")
932
	fp.formFactor=formfactor
933
	fp.Parent=parent
934
	fp.Reflectance=reflectance
935
	fp.Transparency=transparency
936
	fp.CanCollide=false
937
	fp.Locked=true
938
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
939
	fp.Name=name
940
	fp.Size=size
941
	fp.Position=Character.Torso.Position
942
	nooutline(fp)
943
	fp.Material=material
944
	fp:BreakJoints()
945
	return fp
946
end
947
function mesh(Mesh,part,meshtype,meshid,offset,scale)
948
	local mesh=it(Mesh)
949
	mesh.Parent=part
950
	if Mesh=="SpecialMesh" then
951
		mesh.MeshType=meshtype
952
		mesh.MeshId=meshid
953
	end
954
	mesh.Offset=offset
955
	mesh.Scale=scale
956
	return mesh
957
end
958
function weld(parent,part0,part1,c0,c1)
959
	local weld=it("Weld")
960
	weld.Parent=parent
961
	weld.Part0=part0
962
	weld.Part1=part1
963
	weld.C0=c0
964
	weld.C1=c1
965
	return weld
966
end
967
968
Player=game:GetService('Players').LocalPlayer
969
Character=Player.Character
970
Mouse=Player:GetMouse()
971
m=Instance.new('Model',Character)
972
it=Instance.new
973
function nooutline(part)
974
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
975
end
976
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
977
	local fp=it("Part")
978
	fp.formFactor=formfactor
979
	fp.Parent=parent
980
	fp.Reflectance=reflectance
981
	fp.Transparency=transparency
982
	fp.CanCollide=false
983
	fp.Locked=true
984
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
985
	fp.Name=name
986
	fp.Size=size
987
	fp.Position=Character.Torso.Position
988
	nooutline(fp)
989
	fp.Material=material
990
	fp:BreakJoints()
991
	return fp
992
end
993
function mesh(Mesh,part,meshtype,meshid,offset,scale)
994
	local mesh=it(Mesh)
995
	mesh.Parent=part
996
	if Mesh=="SpecialMesh" then
997
		mesh.MeshType=meshtype
998
		mesh.MeshId=meshid
999
	end
1000
	mesh.Offset=offset
1001
	mesh.Scale=scale
1002
	return mesh
1003
end
1004
function weld(parent,part0,part1,c0,c1)
1005
	local weld=it("Weld")
1006
	weld.Parent=parent
1007
	weld.Part0=part0
1008
	weld.Part1=part1
1009
	weld.C0=c0
1010
	weld.C1=c1
1011
	return weld
1012
end
1013
1014
Handle=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Handle",Vector3.new(0.47127685, 6.3622365, 0.47127685))
1015
HandleWeld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994874, 0, 0, 0, 1),CFrame.new(-0.138687134, -1.94626427, -1.14470816, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1016
mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1017
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.942553699, 0.431683987, 7.77606821))
1018
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -1.90734863e-005, 10.6036348, -2.7978557e-019, 1, -2.11954898e-009, -1, -4.49694887e-017, -2.10845315e-008, -2.10845315e-008, 2.11954898e-009, 1))
1019
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1020
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 2.35638404))
1021
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-0.235641241, -1.90734863e-005, 8.60073185, 5.96046448e-007, 1, 8.72877948e-008, -1, 5.96046448e-007, -2.10845137e-008, -2.10845652e-008, -8.72877806e-008, 1))
1022
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.548587799, 1))
1023
Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Hitbox",Vector3.new(1.17819202, 0.431683987, 7.77606821))
1024
Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.57627869e-007, 2.0980835e-005, 10.6036358, 8.64267349e-007, -1, 3.70933577e-008, 1, 8.64267349e-007, 2.24855157e-007, -2.24855185e-007, 3.70931623e-008, 1))
1025
mesh("BlockMesh",Hitbox,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.436686844, 1))
1026
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1027
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(10.2471504, -1.71661377e-005, 10.2471485, 4.17314908e-007, 0.707106769, 0.707106888, -1, 4.06722535e-007, 1.8344987e-007, -1.57877665e-007, -0.707106829, 0.707106709))
1028
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.551317096, 0.800000012))
1029
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 2.35638404))
1030
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0.235642195, -1.90734863e-005, 8.60073185, 5.96046448e-007, 1, 8.72877948e-008, -1, 5.96046448e-007, -2.10845137e-008, -2.10845652e-008, -8.72877806e-008, 1))
1031
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.548587799, 1))
1032
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1033
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -1.52587891e-005, 7.30471659, 1.1920929e-006, 1, -2.11952234e-009, -1, 1.1920929e-006, 5.50754237e-007, 5.50754237e-007, 2.11886575e-009, 1))
1034
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.849999964, 0.551317096, 0.850000083))
1035
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553461))
1036
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.1920929e-006, -1.90734863e-005, 13.9025793, 5.96046448e-007, 1, 8.72877948e-008, -1, 5.96046448e-007, -2.10845137e-008, -2.10845652e-008, -8.72877806e-008, 1))
1037
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.548587799, 1))
1038
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1039
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.81469727e-006, -1.90734863e-005, 8.95417881, -2.7978557e-019, 1, -2.11954898e-009, -1, -4.49694887e-017, -2.10845315e-008, -2.10845315e-008, 2.11954898e-009, 1))
1040
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 0.551317096, 0.436686993))
1041
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1042
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-6.58149529, -1.71661377e-005, 6.58149815, -2.9884724e-008, 0.707106709, -0.707106948, -1, 6.84152184e-008, 1.1067857e-007, 1.26638426e-007, 0.707106888, 0.707106709))
1043
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 0.551317096, 0.436686993))
1044
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1045
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.16521358, -1.90734863e-005, 5.16521358, 4.17314908e-007, 0.707106769, 0.707106888, -1, 4.06722535e-007, 1.8344987e-007, -1.57877665e-007, -0.707106829, 0.707106709))
1046
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.849999964, 0.551317096, 0.850000083))
1047
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 2.35638404))
1048
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(9.53674316e-007, -1.90734863e-005, 11.7818422, 5.96046448e-007, 1, 8.72877948e-008, -1, 5.96046448e-007, -2.10845137e-008, -2.10845652e-008, -8.72877806e-008, 1))
1049
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.548587799, 1))
1050
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1051
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.81469727e-006, -1.90734863e-005, 9.66108418, -2.7978557e-019, 1, -2.11954898e-009, -1, -4.49694887e-017, -2.10845315e-008, -2.10845315e-008, 2.11954898e-009, 1))
1052
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 0.551317096, 0.436686993))
1053
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.942553699, 0.47127676, 0.942553461))
1054
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(2.46478605, 0, -2.45052147, 2.9719919e-008, 0.707106709, -0.707106948, -1, 6.74940921e-008, 2.54637627e-008, 6.57311361e-008, 0.707106948, 0.70710665))
1055
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1056
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1057
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-0.00832653046, -2.95724702, 0.00832653046, -0.707106292, -0.707107365, 1.63920468e-008, -1.13011822e-011, 2.31931363e-008, 1, -0.707107365, 0.707106292, -1.64080038e-008))
1058
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1059
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1060
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0.00832748413, -3.06328011, -0.00832462311, -0.707106292, 0.707107365, -1.64079239e-008, 2.10848246e-008, -2.11949636e-009, -1, -0.707107365, -0.707106292, -1.3410526e-008))
1061
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1062
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1063
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 0.589102745, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1064
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1065
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1066
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 0.471286774, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1067
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1068
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1069
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 0.82473278, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1070
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1071
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1072
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 1.29600334, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1073
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1074
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.19999998807907,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1075
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 2.91010475, 3.81469727e-006, 1, -2.27335702e-017, 8.06892189e-008, -8.06892189e-008, 2.11954165e-009, 1, -1.93757754e-016, -1, 2.11954165e-009))
1076
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1077
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1078
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 1.17818928, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1079
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1080
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1081
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 0.942557335, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1082
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1083
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1084
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 0.706920624, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1085
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1086
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1087
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 1.06036949, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1088
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1089
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.80000001192093,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1090
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.75697637, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1091
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1092
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1093
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.78053427, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1094
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1095
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.80000001192093,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1096
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-006, 2.86297798, 0, 1, -2.27335702e-017, 8.06892189e-008, -8.06892189e-008, 2.11954165e-009, 1, -1.93757754e-016, -1, 2.11954165e-009))
1097
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1098
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1099
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 2.88654709, 3.81469727e-006, 1, -2.27335702e-017, 8.06892189e-008, -8.06892189e-008, 2.11954165e-009, 1, -1.93757754e-016, -1, 2.11954165e-009))
1100
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1101
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.60000002384186,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1102
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.75696874, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1103
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1104
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1105
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.82766294, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1106
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1107
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.60000002384186,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1108
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.86297035, 3.81469727e-006, 1, -2.27335702e-017, 8.06892189e-008, -8.06892189e-008, 2.11954165e-009, 1, -1.93757754e-016, -1, 2.11954165e-009))
1109
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1110
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.19999998807907,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1111
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.80409765, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1112
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1113
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1114
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.93367577, 3.81469727e-006, 1, -2.27335702e-017, 8.06892189e-008, -8.06892189e-008, 2.11954165e-009, 1, -1.93757754e-016, -1, 2.11954165e-009))
1115
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.0545858555, 1.04999995))
1116
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.47127685, 0.431683987, 0.47127685))
1117
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.00292492, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1118
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.600444376, 1.04999995))
1119
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 6.3622365, 0.47127685))
1120
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-0.129585266, -0.0589094162, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1121
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.949999988, 1.00999999))
1122
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1123
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0.00832748413, -3.0514946, -0.00832462311, -0.707106292, 0.707107365, -1.64079239e-008, 2.10848246e-008, -2.11949636e-009, -1, -0.707107365, -0.707106292, -1.3410526e-008))
1124
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.496731251, 0.800000012))
1125
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.942553699, 0.47127676, 0.942553461))
1126
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(2.46478605, 0, -2.45052147, 2.9719919e-008, 0.707106709, -0.707106948, -1, 6.74940921e-008, 2.54637627e-008, 6.57311361e-008, 0.707106948, 0.70710665))
1127
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1.00999999, 0.600000024))
1128
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1129
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-0.00832653046, -2.94546914, 0.00832653046, -0.707106292, -0.707107365, 1.63920468e-008, -1.13011822e-011, 2.31931363e-008, 1, -0.707107365, 0.707106292, -1.64080038e-008))
1130
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.496731251, 0.800000012))
1131
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 6.3622365, 0.47127685))
1132
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0.129598618, -0.0589094162, 3.81469727e-006, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1133
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.949999988, 1.00999999))
1134
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1135
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-3.58234119, 1.90734863e-006, 3.58231902, 2.9719919e-008, 0.707106709, -0.707106948, -1, 6.74940921e-008, 2.54637627e-008, 6.57311361e-008, 0.707106948, 0.70710665))
1136
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.540399909, 1))
1137
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.471276909, 0.431683987, 0.47127685))
1138
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.08363247, 1.90734863e-006, 3.08129597, 2.38500974e-007, 0.707106769, 0.707106888, -1, 2.62476846e-007, 7.48144728e-008, -1.32697366e-007, -0.707106829, 0.707106709))
1139
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.55677563, 1))
1140
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1141
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-2.49929142, 1.90734863e-006, 2.49926829, 2.9719919e-008, 0.707106709, -0.707106948, -1, 6.74940921e-008, 2.54637627e-008, 6.57311361e-008, 0.707106948, 0.70710665))
1142
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.540399909, 1))
1143
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(1.17819202, 0.431683987, 1.1781919))
1144
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.08245516, 1.90734863e-006, 3.08247662, 2.38500974e-007, 0.707106769, 0.707106888, -1, 2.62476846e-007, 7.48144728e-008, -1.32697366e-007, -0.707106829, 0.707106709))
1145
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1146
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1147
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-2.49929142, 1.90734863e-006, 2.49926829, 2.9719919e-008, 0.707106709, -0.707106948, -1, 6.74940921e-008, 2.54637627e-008, 6.57311361e-008, 0.707106948, 0.70710665))
1148
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.543129206, 0.600000024))
1149
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(1.17819202, 0.431683987, 1.1781919))
1150
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.08245468, 1.90734863e-006, 3.08247614, -5.95222431e-008, 0.707106769, 0.707106829, -1, 2.13529061e-009, -8.63124541e-008, -6.2542e-008, -0.707106829, 0.707106829))
1151
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.551317096, 0.800000012))
1152
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.706915319, 0.431683987, 0.70691514))
1153
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-3.58234119, 1.90734863e-006, 3.58231902, 2.9719919e-008, 0.707106709, -0.707106948, -1, 6.74940921e-008, 2.54637627e-008, 6.57311361e-008, 0.707106948, 0.70710665))
1154
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.543129206, 0.600000024))
1155
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 3.06329918))
1156
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.83053207, 0, -3.59342003, -2.10848654e-008, 2.11953632e-009, 1, -1, 5.96472081e-018, -2.10848654e-008, -5.06548632e-017, -1, 2.11953632e-009))
1157
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 0.436686844, 1))
1158
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 3.06329918))
1159
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.03983116, 0, -5.66268873, 1.0092191e-010, -0.49999997, 0.866025448, -1, -8.85555448e-011, 6.54072352e-011, 4.39878793e-011, -0.866025448, -0.49999997))
1160
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 0.436686844, 1))
1161
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 3.06329918))
1162
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.1596446, 0, -1.14267612, 2.99032479e-008, 0.5, 0.866025507, -1, 5.96862151e-008, 6.94447694e-011, -5.16550607e-008, -0.866025448, 0.49999997))
1163
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 0.436686844, 1))
1164
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 3.06329918))
1165
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.06750488, -7.62939453e-006, -5.63829994, 1.00921965e-010, 0.49999997, 0.866025507, 1, -7.84179527e-011, -7.1260331e-011, 3.22817779e-011, 0.866025448, -0.49999994))
1166
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 0.436686844, 1))
1167
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 3.06329918))
1168
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.8422966, -5.7220459e-006, -3.55846047, -2.10848654e-008, 2.11953632e-009, 1, 1, -5.96472081e-018, 2.10848654e-008, 5.06548632e-017, 1, -2.11953632e-009))
1169
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 0.436686844, 1))
1170
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 3.06329918))
1171
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.15236616, -5.7220459e-006, -1.10649979, -2.97014005e-008, -0.49999997, 0.866025448, 1, -5.95192411e-008, -6.7222547e-011, 5.15787875e-008, 0.866025448, 0.49999997))
1172
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 0.436686844, 1))
1173
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 2.12074566))
1174
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.47706032, 1.90734863e-006, -3.12215781, -2.10848654e-008, 2.11953632e-009, 1, -1, 5.96472081e-018, -2.10848654e-008, -5.06548632e-017, -1, 2.11953632e-009))
1175
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1176
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 2.12074566))
1177
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.68635941, 0, -5.19142342, 1.0092191e-010, -0.49999997, 0.866025448, -1, -8.85555448e-011, 6.54072352e-011, 4.39878793e-011, -0.866025448, -0.49999997))
1178
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1179
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 2.12074566))
1180
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.8061738, 1.90734863e-006, -0.671413898, 2.99032479e-008, 0.5, 0.866025507, -1, 5.96862151e-008, 6.94447694e-011, -5.16550607e-008, -0.866025448, 0.49999997))
1181
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1182
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 2.12074566))
1183
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.71404743, -5.7220459e-006, -5.16704845, 1.00921965e-010, 0.49999997, 0.866025507, 1, -7.84179527e-011, -7.1260331e-011, 3.22817779e-011, 0.866025448, -0.49999994))
1184
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1185
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 2.12074566))
1186
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.4887991, -7.62939453e-006, -3.08720088, -2.10848654e-008, 2.11953632e-009, 1, 1, -5.96472081e-018, 2.10848654e-008, 5.06548632e-017, 1, -2.11953632e-009))
1187
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1188
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.706915319, 0.431683987, 2.12074566))
1189
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.79890299, -5.7220459e-006, -0.635236621, -2.97014005e-008, -0.49999997, 0.866025448, 1, -5.95192411e-008, -6.7222547e-011, 5.15787875e-008, 0.866025448, 0.49999997))
1190
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.545858502, 1))
1191
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.88510728))
1192
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.35923672, 1.90734863e-006, -3.004354, -2.10848654e-008, 2.11953632e-009, 1, -1, 5.96472081e-018, -2.10848654e-008, -5.06548632e-017, -1, 2.11953632e-009))
1193
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1194
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553699))
1195
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.71270561, -1.90734863e-006, -4.53597069, -2.10848654e-008, 2.11953632e-009, 1, -1, 5.96472081e-018, -2.10848654e-008, -5.06548632e-017, -1, 2.11953632e-009))
1196
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1197
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.88510728))
1198
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.56853008, 1.90734863e-006, -5.07360697, 1.0092191e-010, -0.49999997, 0.866025448, -1, -8.85555448e-011, 6.54072352e-011, 4.39878793e-011, -0.866025448, -0.49999997))
1199
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1200
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553699))
1201
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.92202568, 1.90734863e-006, -6.60524845, 1.0092191e-010, -0.49999997, 0.866025448, -1, -8.85555448e-011, 6.54072352e-011, 4.39878793e-011, -0.866025448, -0.49999997))
1202
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1203
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.88510728))
1204
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.6883502, 1.90734863e-006, -0.553584576, 2.99032479e-008, 0.5, 0.866025507, -1, 5.96862151e-008, 6.94447694e-011, -5.16550607e-008, -0.866025448, 0.49999997))
1205
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1206
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553699))
1207
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.04181051, 1.90734863e-006, -2.08520555, 2.99032479e-008, 0.5, 0.866025507, -1, 5.96862151e-008, 6.94447694e-011, -5.16550607e-008, -0.866025448, 0.49999997))
1208
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1209
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.88510728))
1210
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.59622097, -7.62939453e-006, -5.04922485, 1.00921965e-010, 0.49999997, 0.866025507, 1, -7.84179527e-011, -7.1260331e-011, 3.22817779e-011, 0.866025448, -0.49999994))
1211
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1212
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553699))
1213
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.94971085, -5.7220459e-006, -6.58086109, 1.00921965e-010, 0.49999997, 0.866025507, 1, -7.84179527e-011, -7.1260331e-011, 3.22817779e-011, 0.866025448, -0.49999994))
1214
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1215
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.88510728))
1216
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.37100601, -7.62939453e-006, -2.96938396, -2.10848654e-008, 2.11953632e-009, 1, 1, -5.96472081e-018, 2.10848654e-008, 5.06548632e-017, 1, -2.11953632e-009))
1217
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1218
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553699))
1219
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.72446442, -7.62939453e-006, -4.50100327, -2.10848654e-008, 2.11953632e-009, 1, 1, -5.96472081e-018, 2.10848654e-008, 5.06548632e-017, 1, -2.11953632e-009))
1220
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1221
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.88510728))
1222
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.68107176, -7.62939453e-006, -0.517408967, -2.97014005e-008, -0.49999997, 0.866025448, 1, -5.95192411e-008, -6.7222547e-011, 5.15787875e-008, 0.866025448, 0.49999997))
1223
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1224
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553699))
1225
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(4.03451967, -5.7220459e-006, -2.0490427, -2.97014005e-008, -0.49999997, 0.866025448, 1, -5.95192411e-008, -6.7222547e-011, 5.15787875e-008, 0.866025448, 0.49999997))
1226
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.272929311, 0.551317096, 1))
1227
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.17819202, 0.471276879))
1228
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 6.12653065, -0.235630035, 1, -1.10232007e-017, 3.90650889e-008, -3.90650889e-008, 2.11953455e-009, 1, -9.38230139e-017, -1, 2.11953455e-009))
1229
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1230
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127676, 0.471276939))
1231
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 0.706905127, -6.00870228, -1, 9.85864956e-018, -3.49257157e-008, 8.38854116e-017, 1, -2.11954898e-009, 3.49257157e-008, -2.11954898e-009, -1))
1232
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1233
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127676, 0.471276939))
1234
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 0.706909895, -6.0087018, 1, -2.07059851e-018, 7.24334726e-009, -1.74232295e-017, -1, 2.11954898e-009, 7.24334726e-009, -2.11954898e-009, -1))
1235
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1236
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.17819202, 0.471276879))
1237
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 6.12653017, -0.235634089, -1, 9.06044012e-019, -3.10397041e-009, -3.10397041e-009, 2.11953766e-009, 1, 7.48503163e-018, 1, -2.11953766e-009))
1238
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1239
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127679, 0.706915379))
1240
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -5.33699083, 5.37031364, -1, 1.10232007e-017, -3.90650889e-008, 2.99255909e-008, -0.642787695, -0.766044378, -2.5110559e-008, -0.766044378, 0.642787695))
1241
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.534941494, 1, 1))
1242
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.41383028, 0.471276939))
1243
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.71661377e-005, -15.1985502, 0.235637665, 1, -7.95318443e-018, 2.81527921e-008, 2.81527921e-008, -2.11953988e-009, -1, 6.76241459e-017, 1, -2.11953988e-009))
1244
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1245
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127679, 0.942553759))
1246
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -6.45125961, 3.288414, -1, 5.96462445e-018, -2.10845315e-008, 1.98129797e-008, -0.342020154, -0.939692676, -7.21133508e-009, -0.939692736, 0.342020154))
1247
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 1, 1))
1248
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.70691514, 1.17819214))
1249
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -6.59780788, 1.06036115, -1, 1.10232007e-017, -3.90650889e-008, 3.90650889e-008, -2.11953455e-009, -1, -9.38230139e-017, -1, 2.11953455e-009))
1250
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1251
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127679, 0.942553759))
1252
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -6.45125961, 3.28841209, 1, -5.96462197e-018, 2.10845279e-008, 1.98129744e-008, 0.342020184, -0.939692616, -7.2113342e-009, 0.939692616, 0.342020184))
1253
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 1, 1))
1254
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.70691514, 1.17819214))
1255
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -6.59780741, 1.06035578, 1, -9.06044012e-019, 3.10397041e-009, 3.10397041e-009, -2.11953766e-009, -1, 7.48503163e-018, 1, -2.11953766e-009))
1256
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1257
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127679, 0.706915379))
1258
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -5.33699036, 5.37031269, 1, -9.06044012e-019, 3.10397041e-009, 2.37777975e-009, 0.642787635, -0.766044378, -1.99519423e-009, 0.766044438, 0.642787635))
1259
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.534941494, 1, 1))
1260
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.41383028, 0.471276939))
1261
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -15.1985502, 0.235634089, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1262
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1263
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.47127679, 0.706915379))
1264
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(2.86102295e-005, -5.45164728, 5.4353075, -1, 1.10232041e-017, -3.90650854e-008, 2.99255873e-008, -0.642787695, -0.766044378, -2.51105554e-008, -0.766044378, 0.642787695))
1265
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1266
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.47127679, 0.942553759))
1267
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.05175781e-005, -5.72134924, 4.95808125, -1, 5.96046519e-008, -2.81763075e-008, -1.11071472e-008, -0.57357645, -0.819151998, -6.49865441e-008, -0.819152057, 0.57357651))
1268
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1269
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.47127679, 0.942553759))
1270
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -5.70764017, 4.97766304, 1, -5.96046519e-008, 1.39927545e-008, 4.56500118e-008, 0.573576331, -0.819152117, 4.07993674e-008, 0.819152117, 0.573576391))
1271
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1272
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 1.17819214))
1273
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -6.66683817, 2.64804816, 1, -9.10891291e-020, 2.07233342e-010, 2.00172337e-010, 0.258819014, -0.965925813, -5.36357139e-011, 0.965925932, 0.258819044))
1274
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1275
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.47127679, 0.706915379))
1276
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -5.4362812, 5.45362663, 1, -9.06044012e-019, 3.10397041e-009, 2.37777975e-009, 0.642787635, -0.766044378, -1.99519423e-009, 0.766044438, 0.642787635))
1277
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1278
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.47127679, 0.942553759))
1279
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -6.57304001, 3.33273697, 1, -5.96462197e-018, 2.10845279e-008, 1.98129744e-008, 0.342020184, -0.939692616, -7.2113342e-009, 0.939692616, 0.342020184))
1280
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1281
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 2.12074542, 0.471276939))
1282
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -15.5520258, 0.294540286, 1, -7.95318443e-018, 2.81527921e-008, 2.81527921e-008, -2.11953988e-009, -1, 6.76241459e-017, 1, -2.11953988e-009))
1283
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1.25))
1284
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 2.12074542, 0.471276939))
1285
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -15.5520258, 0.294544458, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1286
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1.25))
1287
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 1.17819214))
1288
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -6.72740221, 1.06035578, 1, -9.06044012e-019, 3.10397041e-009, 3.10397041e-009, -2.11953766e-009, -1, 7.48503163e-018, 1, -2.11953766e-009))
1289
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1290
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 1.64946854, 0.431683928))
1291
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 10.2501783, 0.0589027405, 1, -5.96462445e-018, 2.10845315e-008, -2.10845315e-008, 2.11953899e-009, 1, -5.06541121e-017, -1, 2.11953899e-009))
1292
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.5, 0.272929341))
1293
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1294
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -13.0189238, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1295
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1296
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553759))
1297
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 0.11782074, -10.1323633, 1, -9.97980505e-018, 3.53563578e-008, -8.49193411e-017, -1, 2.11954898e-009, 3.53563578e-008, -2.11954898e-009, -1))
1298
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1299
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 1.17819214))
1300
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.05175781e-005, -6.72740459, 1.03645062, -1, 1.10232041e-017, -3.90650854e-008, 3.90650854e-008, -2.1195381e-009, -1, -9.38231396e-017, -1, 2.1195381e-009))
1301
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1302
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.47127679, 0.942553759))
1303
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.05175781e-005, -6.58121395, 3.31027269, -1, 5.96462197e-018, -2.10845279e-008, 1.98129761e-008, -0.342020154, -0.939692676, -7.21133375e-009, -0.939692736, 0.342020154))
1304
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1305
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.471276999))
1306
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.71661377e-005, -7.01797199, 2.4415319, 1, 2.71393856e-017, -9.65826104e-008, -9.32916819e-008, 0.258817583, -0.96592629, 2.49972771e-008, 0.96592629, 0.258817583))
1307
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.545858502, 1))
1308
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.7069152))
1309
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -0.235641718, 10.1323643, 1, -1.94944302e-018, 6.81270151e-009, 1.63893034e-017, 1, -2.11954898e-009, -6.81270151e-009, 2.11954898e-009, 1))
1310
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1311
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1312
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -3.81469727e-006, 13.0189199, -1, 5.96462445e-018, -2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1313
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1314
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.431683928))
1315
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -0.294540286, 10.5447378, -1, 9.97980505e-018, -3.53563578e-008, -8.49193411e-017, -1, 2.11954898e-009, -3.53563578e-008, 2.11954898e-009, 1))
1316
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.5, 0.272929341))
1317
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.7069152))
1318
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -0.23563385, 10.1323671, -1, 9.97980505e-018, -3.53563578e-008, -8.49193411e-017, -1, 2.11954898e-009, -3.53563578e-008, 2.11954898e-009, 1))
1319
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1320
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.431683928))
1321
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -0.294544458, 10.5447369, 1, -1.94944302e-018, 6.81270151e-009, 1.63893034e-017, 1, -2.11954898e-009, -6.81270151e-009, 2.11954898e-009, 1))
1322
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.5, 0.272929341))
1323
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 1.17819214))
1324
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.05175781e-005, -6.67302656, 2.62495732, -1, 1.18381556e-017, -4.1961826e-008, 4.05320151e-008, -0.258819073, -0.965925932, -1.08605205e-008, -0.965925932, 0.258819073))
1325
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1326
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 1.64946854, 0.431683928))
1327
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 10.2501783, 0.0589065552, -1, 5.9646261e-018, -2.10845386e-008, -2.10845386e-008, 2.11953721e-009, 1, 5.06540956e-017, 1, -2.11953721e-009))
1328
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.5, 0.272929341))
1329
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.7069152))
1330
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -0.11782074, 10.9570942, 1, -1.94944302e-018, 6.81270151e-009, 1.63893034e-017, 1, -2.11954898e-009, -6.81270151e-009, 2.11954898e-009, 1))
1331
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1332
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.7069152))
1333
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -0.117828369, 10.9570932, -1, 9.97980505e-018, -3.53563578e-008, -8.49193411e-017, -1, 2.11954898e-009, -3.53563578e-008, 2.11954898e-009, 1))
1334
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1335
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553759))
1336
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 0.117824554, -10.1323681, -1, 1.94944302e-018, -6.81270151e-009, 1.63893034e-017, 1, -2.11954898e-009, 6.81270151e-009, -2.11954898e-009, -1))
1337
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1338
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1339
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.71661377e-005, -13.3488045, 0.117819667, -1, -5.96046519e-008, 1.3320961e-007, -1.3320961e-007, 8.72877663e-008, -1, 5.96046412e-008, -1, -8.72877735e-008))
1340
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1341
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1342
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.71661377e-005, -0.235645652, 13.2427616, 1, 5.96046519e-008, -1.3320961e-007, -5.96046519e-008, 1, -2.11954898e-009, 1.3320961e-007, 2.11955697e-009, 1))
1343
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1344
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1345
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -0.235641718, -13.124959, -1, 5.96462445e-018, -2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1346
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1347
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1348
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.71661377e-005, 0.117832184, -13.242775, 1, 5.96046519e-008, -1.3320961e-007, 5.96046519e-008, -1, 2.11954898e-009, -1.3320961e-007, -2.11955697e-009, -1))
1349
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1350
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1351
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 0.11782074, 13.124959, -1, 5.96462445e-018, -2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1352
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1353
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1354
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 0.117828369, 13.124959, 1, -5.96046519e-008, 2.1084535e-008, 5.96046519e-008, 1, -2.11954543e-009, -2.1084535e-008, 2.11954676e-009, 1))
1355
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1356
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1357
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.71661377e-005, -0.117829442, 13.36059, -1, -5.96046519e-008, 1.3320961e-007, 5.96046412e-008, -1, -8.72878303e-008, 1.3320961e-007, -8.72878232e-008, 1))
1358
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1359
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1360
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.33514404e-005, 4.88758087e-006, -13.3723717, -1, 3.27825546e-007, 4.00545844e-007, 3.27825575e-007, 1, 8.72878374e-008, -4.00545815e-007, 8.72879653e-008, -1))
1361
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1362
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1363
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.33514404e-005, 13.3723755, 1.07288361e-006, -1, 3.27825546e-007, 4.00545844e-007, 4.00545815e-007, -8.72877663e-008, 1, 3.27825575e-007, 1, 8.72876385e-008))
1364
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1365
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553759))
1366
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 0.117824554, -8.01163101, -1, 1.94944302e-018, -6.81270151e-009, 1.63893034e-017, 1, -2.11954898e-009, 6.81270151e-009, -2.11954898e-009, -1))
1367
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1368
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.942553759))
1369
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 0.117824554, -8.01163292, 1, -4.84687142e-018, 1.71115211e-008, -4.11155814e-017, -1, 2.11954898e-009, 1.71115211e-008, -2.11954898e-009, -1))
1370
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 1))
1371
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1372
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.71661377e-005, -0.235642552, 13.2427635, -1, -5.96046519e-008, 1.3320961e-007, 5.96046412e-008, -1, -8.72878303e-008, 1.3320961e-007, -8.72878232e-008, 1))
1373
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1374
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1375
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 13.0189199, 0.117828369, -1, 5.96462445e-018, -2.10845315e-008, -2.10845315e-008, 2.11953899e-009, 1, 5.06541121e-017, 1, -2.11953899e-009))
1376
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1377
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1378
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -0.235637665, -13.124959, 1, -5.96046519e-008, 2.1084535e-008, -5.96046519e-008, -1, 2.11954543e-009, 2.1084535e-008, -2.11954676e-009, -1))
1379
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1380
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1381
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -0.11782074, -13.0071325, -1, 5.96462445e-018, -2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1382
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1383
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1384
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.71661377e-005, 0.117814183, -13.2427731, -1, -5.96046519e-008, 1.3320961e-007, -5.96046412e-008, 1, 8.72878303e-008, -1.3320961e-007, 8.72878232e-008, -1))
1385
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1386
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.706915379))
1387
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.71661377e-005, 2.21567225, -5.99290466, -1, -5.96046519e-008, 4.70381849e-007, 6.41713527e-008, 0.965925157, 0.258821607, -4.69780616e-007, 0.258821636, -0.965925217))
1388
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 1, 1))
1389
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.706915379))
1390
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 2.21566916, -5.99291849, 1, 1.13911638e-017, -4.06060394e-008, 1.05096039e-008, -0.965925932, 0.258818716, -3.92224351e-008, -0.258818746, -0.965925992))
1391
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 1, 1))
1392
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.471276999))
1393
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -7.01795816, 2.44157147, -1, 5.96046519e-008, 1.61682223e-008, -3.10443156e-008, -0.258822441, -0.965924978, -5.338892e-008, -0.965924919, 0.258822411))
1394
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.545858502, 1))
1395
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1396
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.52587891e-005, -0.11782074, 8.60072708, 1, -2.68220901e-007, -3.94595418e-007, 2.68220901e-007, 1, -2.11953632e-009, 3.94595418e-007, 2.11943041e-009, 1))
1397
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.545858681))
1398
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.17819214))
1399
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, 0.235634089, -6.7156353, 1, -4.84687142e-018, 1.71115211e-008, -4.11155814e-017, -1, 2.11954898e-009, 1.71115211e-008, -2.11954898e-009, -1))
1400
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.545858502, 1))
1401
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.706915379))
1402
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-005, -7.24581957, 0.471252203, 1, 1.49011612e-007, -3.50100997e-008, -3.50097054e-008, -2.65452309e-006, -1, -1.49011711e-007, 1, -2.65452309e-006))
1403
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 1, 1))
1404
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.706915379))
1405
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -7.24579668, 0.471290231, -1, -4.64906606e-018, 1.66415006e-008, -1.66415006e-008, -3.04195237e-006, -1, 5.06273016e-014, -1, 3.04195237e-006))
1406
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 1, 1))
1407
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 1.17819214))
1408
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, 0.235637665, -6.71563721, -1, 6.25757625e-018, -2.21258283e-008, 5.31543582e-017, 1, -2.11954898e-009, 2.21258283e-008, -2.11954898e-009, -1))
1409
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.545858502, 1))
1410
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.706915379))
1411
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(2.47955322e-005, -2.21564531, 6.69983864, 1, -1.4603138e-006, 3.62147802e-007, 1.50428559e-006, 0.965926766, -0.258815557, 2.814369e-008, 0.258815557, 0.965926766))
1412
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 1, 1))
1413
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.47127676, 0.706915379))
1414
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-005, -2.21567488, 6.69983006, -1, 8.64267349e-007, 6.3673042e-008, -8.512975e-007, -0.965925157, -0.258821487, -1.62187604e-007, -0.258821517, 0.965925217))
1415
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 1, 1))
1416
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1417
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.52587891e-005, -0.11782527, 8.6007309, -1, 2.68220901e-007, 3.84296584e-007, -2.6822093e-007, -1, -8.7287809e-008, 3.84296555e-007, -8.72879156e-008, 1))
1418
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.545858681))
1419
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1420
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -2.46171904, -6.44813824, 1, -5.96046519e-008, -1.56151387e-007, 2.3676936e-008, -0.874312937, 0.485362679, -1.65455063e-007, -0.485362709, -0.874312997))
1421
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.435595185, 1, 0.545858681))
1422
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.94255352, 0.47127682))
1423
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -0.754919529, -6.5783577, 1, 5.96046519e-008, 8.44457091e-008, -1.58495475e-008, -0.718900204, 0.695113361, 1.02140021e-007, -0.695113361, -0.718900144))
1424
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436141044, 1, 0.699999988))
1425
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1426
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -5.47849655, -4.83053112, 1, -5.96462445e-018, 2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1427
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 0.545858681))
1428
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 1.1781919, 0.47127682))
1429
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, 0.794997692, -6.17932892, 1, -5.96462445e-018, 2.10845315e-008, -1.80798381e-008, -0.514495671, 0.857492924, 1.08479004e-008, -0.857492983, -0.51449573))
1430
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1431
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1432
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -4.65464973, -6.76117277, 1, 4.62503547e-017, -1.64512002e-007, -2.76709966e-009, -0.999858618, -0.0168200471, -1.64488739e-007, 0.0168200471, -0.999858618))
1433
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.435595185, 1, 0.545858681))
1434
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.94255352, 0.47127682))
1435
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-006, -2.79210186, -7.44828796, 1, 5.96046519e-008, 1.27823441e-007, 2.68232707e-008, -0.970142603, 0.242535606, 1.38463207e-007, -0.242535591, -0.970142543))
1436
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436141044, 1, 0.699999988))
1437
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 1.1781919, 0.47127682))
1438
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -0.947648764, -7.54688501, 1, -9.33695006e-018, 3.30713483e-008, -1.60516027e-008, -0.874312937, 0.485362828, 2.89147053e-008, -0.485362798, -0.874312878))
1439
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1440
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1441
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -7.54776335, -4.03987265, 1, -9.33695006e-018, 3.30713483e-008, 1.65356742e-008, -0.866025448, -0.5, 2.86406294e-008, 0.5, -0.866025448))
1442
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 0.545858681))
1443
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1444
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -0.644618988, -4.67205238, 1, -2.68220901e-007, -9.28621517e-008, -5.83698743e-008, -0.51449573, 0.857492983, -2.77774717e-007, -0.857492983, -0.51449573))
1445
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.435595185, 1, 0.545858681))
1446
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.94255352, 0.47127682))
1447
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 0.540613174, -4.39249039, 1, 5.96046519e-008, 3.15287636e-008, -1.39198644e-008, -0.275029242, 0.961435914, 6.59773818e-008, -0.961435854, -0.275029242))
1448
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436141044, 1, 0.699999988))
1449
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 1.1781919, 0.47127682))
1450
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 1.4806242, -3.73265815, 1, -5.96046519e-008, 1.65360845e-008, -1.75362942e-008, -0.0168199558, 0.999858618, -5.93180864e-008, -0.999858618, -0.0168199558))
1451
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1452
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1453
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -3.02773857, -4.15963984, 1, -5.96046519e-008, 1.65360845e-008, -5.9887185e-008, -0.866025448, 0.50000006, -1.54816604e-008, -0.50000006, -0.866025448))
1454
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 0.545858681))
1455
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1456
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -4.61986828, -6.7735424, -1, 5.81796227e-017, -2.06681079e-007, 3.4763874e-009, 0.999858618, -0.0168200564, 2.06651848e-007, -0.0168200564, -0.999858558))
1457
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.435595185, 1, 0.545858681))
1458
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.94255352, 0.47127682))
1459
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(9.53674316e-006, -2.755301, -7.45122194, -1, -5.96046519e-008, 8.56543636e-008, -3.70507784e-008, 0.970142543, 0.242535576, -9.75531833e-008, 0.242535576, -0.970142543))
1460
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436141044, 1, 0.699999988))
1461
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 1.1781919, 0.47127682))
1462
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -0.911337137, -7.54020405, -1, 2.59229801e-018, -9.09770925e-009, -4.41568915e-009, 0.874312937, 0.485362768, 7.95424437e-009, 0.485362709, -0.874312878))
1463
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1464
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1465
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -7.52333641, -4.06755209, -1, 2.59229801e-018, -9.09770925e-009, 4.54885507e-009, 0.866025448, -0.50000006, 7.8788478e-009, -0.50000006, -0.866025388))
1466
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 0.545858681))
1467
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1468
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -2.42543793, -6.44142866, -1, 5.96046519e-008, -1.98320492e-007, -4.41442545e-008, 0.874312937, 0.485362709, 2.02324031e-007, 0.485362679, -0.874312878))
1469
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.435595185, 1, 0.545858681))
1470
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.94255352, 0.47127682))
1471
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -0.7215662, -6.56250381, -1, -5.96046519e-008, 4.2276632e-008, -1.34627616e-008, 0.718900383, 0.695113182, -7.18246582e-008, 0.695113182, -0.718900383))
1472
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436141044, 1, 0.699999988))
1473
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 1.1781919, 0.47127682))
1474
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 0.823094845, -6.15539932, -1, 5.96462445e-018, -2.10845315e-008, -1.80798381e-008, 0.51449573, 0.857492983, 1.08479012e-008, 0.857492983, -0.51449573))
1475
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1476
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1477
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -5.44353104, -4.8422966, -1, 5.96462445e-018, -2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1478
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 0.545858681))
1479
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1480
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(3.81469727e-006, -0.616511345, -4.64811897, -1, 2.68220901e-007, -1.35031215e-007, 2.22102337e-008, 0.51449585, 0.857492864, 2.99470514e-007, 0.857492864, -0.51449585))
1481
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.435595185, 1, 0.545858681))
1482
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.94255352, 0.47127682))
1483
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, 0.561533928, -4.36208248, -1, -5.96046519e-008, -1.06402904e-008, -2.6622974e-008, 0.275029153, 0.961435914, -5.43796617e-008, 0.961435914, -0.275029153))
1484
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436141044, 1, 0.699999988))
1485
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 1.1781919, 0.47127682))
1486
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 1.49296141, -3.69788003, -1, 5.96046519e-008, -2.56329802e-008, -2.4626809e-008, 0.0168199651, 0.999858618, 6.00273751e-008, 0.999858618, -0.0168199651))
1487
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 1))
1488
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,"Electric blue","Part",Vector3.new(0.431683987, 0.70691514, 0.431683928))
1489
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -2.99156237, -4.15233135, -1, 5.96046519e-008, -2.56329802e-008, 3.88026571e-008, 0.866025448, 0.5, 5.20011412e-008, 0.5, -0.866025448))
1490
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.436686903, 1, 0.545858681))
1491
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.1781919, 0.7069152))
1492
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -4.77160645, -4.47705936, 1, -5.96462445e-018, 2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1493
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1494
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1495
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -2.16785407, 4.83054352, -1, 5.96462445e-018, -2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1496
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 0.545858562, 1))
1497
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127682, 0.431683928))
1498
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 1.82617533, 4.71272469, 1, -5.96462445e-018, 2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1499
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 0.545858681))
1500
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.94255358, 0.471276879))
1501
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, 1.59053767, 4.35926437, 1, -5.96462445e-018, 2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1502
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1503
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.1781919, 0.7069152))
1504
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -6.84085512, -3.68640089, 1, -9.33695006e-018, 3.30713483e-008, 1.65356742e-008, -0.866025448, -0.5, 2.86406294e-008, 0.5, -0.866025448))
1505
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1506
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.94255358, 0.471276879))
1507
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 3.6597867, 3.5685668, 1, -9.33695006e-018, 3.30713483e-008, -1.65356742e-008, 0.866025448, 0.5, -2.86406294e-008, -0.5, 0.866025448))
1508
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1509
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1510
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-006, -4.23710251, 4.03983641, -1, 9.33695006e-018, -3.30713483e-008, 1.65356742e-008, -0.866025448, -0.5, -2.86406294e-008, -0.5, 0.866025448))
1511
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 0.545858562, 1))
1512
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127682, 0.431683928))
1513
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 3.89543247, 3.92199945, 1, -9.33695006e-018, 3.30713483e-008, -1.65356742e-008, 0.866025448, 0.5, -2.86406294e-008, -0.5, 0.866025448))
1514
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 0.545858681))
1515
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.1781919, 0.7069152))
1516
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -2.32085609, -3.80615664, 1, -5.96046519e-008, 1.65360845e-008, -5.9887185e-008, -0.866025448, 0.50000006, -1.54816604e-008, -0.50000006, -0.866025448))
1517
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1518
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.94255358, 0.471276879))
1519
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -0.860202789, 3.68838453, 1, -5.96046519e-008, 1.65360845e-008, 5.9887185e-008, 0.866025448, -0.50000006, 1.54816604e-008, 0.50000006, 0.866025448))
1520
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1521
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1522
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-006, 0.28290081, 4.15967131, -1, 5.96046519e-008, -1.65360845e-008, -5.9887185e-008, -0.866025448, 0.50000006, 1.54816604e-008, 0.50000006, 0.866025448))
1523
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 0.545858562, 1))
1524
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127682, 0.431683928))
1525
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -0.624579906, 4.04186392, 1, -5.96046519e-008, 1.65360845e-008, 5.9887185e-008, 0.866025448, -0.50000006, 1.54816604e-008, 0.50000006, 0.866025448))
1526
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 0.545858681))
1527
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.1781919, 0.7069152))
1528
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -6.81646252, -3.71407461, -1, 2.59229801e-018, -9.09770925e-009, 4.54885507e-009, 0.866025448, -0.50000006, 7.8788478e-009, -0.50000006, -0.866025388))
1529
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1530
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.94255358, 0.471276879))
1531
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, 3.63541222, 3.5962615, -1, 2.59229801e-018, -9.09770925e-009, -4.54885507e-009, -0.866025448, 0.50000006, -7.8788478e-009, 0.50000006, 0.866025388))
1532
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1533
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1534
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-5.7220459e-006, -4.21271515, 4.06753111, 1, -2.59229801e-018, 9.09770925e-009, 4.54885507e-009, 0.866025448, -0.50000006, -7.8788478e-009, 0.50000006, 0.866025388))
1535
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 0.545858562, 1))
1536
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127682, 0.431683928))
1537
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, 3.87103081, 3.94970846, -1, 2.59229801e-018, -9.09770925e-009, -4.54885507e-009, -0.866025448, 0.50000006, -7.8788478e-009, 0.50000006, 0.866025388))
1538
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 0.545858681))
1539
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.1781919, 0.7069152))
1540
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -4.73662186, -4.48879814, -1, 5.96462445e-018, -2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1541
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1542
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.94255358, 0.471276879))
1543
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, 1.55557752, 4.37102509, -1, 5.96462445e-018, -2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1544
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1545
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1546
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-7.62939453e-006, -2.1328826, 4.84232903, 1, -5.96462445e-018, 2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1547
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 0.545858562, 1))
1548
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127682, 0.431683928))
1549
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, 1.79121137, 4.72449493, -1, 5.96462445e-018, -2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1550
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 0.545858681))
1551
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 1.1781919, 0.7069152))
1552
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -2.28466034, -3.79887199, -1, 5.96046519e-008, -2.56329802e-008, 3.88026571e-008, 0.866025448, 0.5, 5.20011412e-008, 0.5, -0.866025448))
1553
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1554
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.94255358, 0.471276879))
1555
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -0.896381855, 3.68110657, -1, 5.96046519e-008, -2.56329802e-008, -3.88026571e-008, -0.866025448, -0.5, -5.20011412e-008, -0.5, 0.866025448))
1556
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 1))
1557
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1558
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-7.62939453e-006, 0.319051743, 4.15240955, 1, -5.96046519e-008, 2.56329802e-008, 3.88026571e-008, 0.866025448, 0.5, -5.20011412e-008, -0.5, 0.866025448))
1559
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.540400028, 0.545858562, 1))
1560
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Crimson","Part",Vector3.new(0.431683987, 0.47127682, 0.431683928))
1561
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -0.660738468, 4.03456402, -1, 5.96046519e-008, -2.56329802e-008, -3.88026571e-008, -0.866025448, -0.5, -5.20011412e-008, -0.5, 0.866025448))
1562
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.545858622, 1, 0.545858681))
1563
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1564
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 4.47706032, -3.88795829, 1, -5.96462445e-018, 2.10845315e-008, -2.10845315e-008, 2.11953899e-009, 1, -5.06541121e-017, -1, 2.11953899e-009))
1565
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1566
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1567
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -4.59487629, 4.12361526, 1, -5.96462445e-018, 2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, 5.06541121e-017, 1, -2.11953899e-009))
1568
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1569
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1570
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -4.00576591, -4.42994595, 1, -5.96462445e-018, 2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1571
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1572
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1573
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, 4.00578308, 4.66557503, 1, -5.96462445e-018, 2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1574
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1575
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1576
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(1.90734863e-006, -5.06615257, -4.71270514, 1, -5.96462445e-018, 2.10845315e-008, -1.93576611e-015, -1, 9.15268927e-008, 2.10845315e-008, -9.15268927e-008, -1))
1577
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1578
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1579
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 2.00288558, 4.35926437, 1, -5.96462445e-018, 2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1580
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1581
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1582
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -3.8042016, 6.19287872, 1, -9.33695006e-018, 3.30713483e-008, 2.86406294e-008, 0.49999997, -0.866025448, -1.65356742e-008, 0.866025448, 0.49999997))
1583
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1584
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1585
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -6.0750351, -3.63924742, 1, -9.33695006e-018, 3.30713483e-008, 1.65356742e-008, -0.866025448, -0.5, 2.86406294e-008, 0.5, -0.866025448))
1586
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1587
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1588
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 6.0750699, 3.87487745, 1, -9.33695006e-018, 3.30713483e-008, -1.65356742e-008, 0.866025448, 0.5, -2.86406294e-008, -0.5, 0.866025448))
1589
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1590
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1591
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, 3.6863513, -5.95721436, 1, -9.33695006e-018, 3.30713483e-008, -2.86406294e-008, -0.49999997, 0.866025448, 1.65356742e-008, -0.866025448, -0.49999997))
1592
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1593
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1594
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, -7.13541365, -3.92203617, 1, -9.33695006e-018, 3.30713483e-008, 1.65356742e-008, -0.866025448, -0.5, 2.86406276e-008, 0.49999997, -0.866025388))
1595
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1596
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1597
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, 4.07215261, 3.56856489, 1, -9.33695006e-018, 3.30713483e-008, -1.65356742e-008, 0.866025448, 0.5, -2.86406294e-008, -0.5, 0.866025448))
1598
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1599
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1600
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -3.92400312, 1.67285705, 1, -5.96046519e-008, 1.65360845e-008, -1.54816515e-008, -0.49999997, -0.866025507, 5.9887185e-008, 0.866025448, -0.49999994))
1601
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1602
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1603
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -1.55502748, -3.75904417, 1, -5.96046519e-008, 1.65360845e-008, -5.9887185e-008, -0.866025448, 0.50000006, -1.54816604e-008, -0.50000006, -0.866025448))
1604
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1605
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1606
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(-1.90734863e-006, 1.55503702, 3.99468088, 1, -5.96046519e-008, 1.65360845e-008, 5.9887185e-008, 0.866025448, -0.50000006, 1.54816604e-008, 0.50000006, 0.866025448))
1607
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1608
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1609
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, 3.80617571, -1.43718886, 1, -5.96046519e-008, 1.65360845e-008, 1.54816515e-008, 0.49999997, 0.866025507, -5.9887185e-008, -0.866025448, 0.49999994))
1610
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1611
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1612
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -2.61539006, -4.04182625, 1, -5.96046519e-008, 1.65360845e-008, -5.9887185e-008, -0.866025329, 0.50000006, -1.5481664e-008, -0.500000119, -0.866025388))
1613
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1614
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1615
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(0, -0.447852612, 3.68841124, 1, -5.96046519e-008, 1.65360845e-008, 5.9887185e-008, 0.866025448, -0.50000006, 1.54816604e-008, 0.50000006, 0.866025448))
1616
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1617
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1618
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -3.83188629, 6.16848278, -1, 2.59229801e-018, -9.09770925e-009, 7.87884868e-009, -0.49999997, -0.866025507, -4.54885374e-009, -0.866025448, 0.49999994))
1619
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1620
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1621
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -6.05066299, -3.66692972, -1, 2.59229801e-018, -9.09770925e-009, 4.54885507e-009, 0.866025448, -0.50000006, 7.8788478e-009, -0.50000006, -0.866025388))
1622
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1623
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1624
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 6.05066776, 3.90255499, -1, 2.59229801e-018, -9.09770925e-009, -4.54885507e-009, -0.866025448, 0.50000006, -7.8788478e-009, 0.50000006, 0.866025388))
1625
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1626
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1627
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 3.71402836, -5.93283463, -1, 2.59229801e-018, -9.09770925e-009, -7.87884868e-009, 0.49999997, 0.866025507, 4.54885374e-009, 0.866025448, -0.49999994))
1628
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1629
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1630
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -7.1110096, -3.94973993, -1, 2.59229801e-018, -9.09770925e-009, 4.54885507e-009, 0.866025448, -0.50000006, 7.8788478e-009, -0.50000006, -0.866025388))
1631
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1632
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1633
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 4.04776955, 3.59624338, -1, 2.59229801e-018, -9.09770925e-009, -4.54885507e-009, -0.866025448, 0.50000006, -7.8788478e-009, 0.50000006, 0.866025388))
1634
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1635
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1636
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -4.60666656, 4.08863068, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009))
1637
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1638
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1639
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -3.970783, -4.44169998, -1, 5.96462445e-018, -2.10845315e-008, 5.06543239e-017, 1, -2.11954898e-009, 2.10845315e-008, -2.11954898e-009, -1))
1640
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1641
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1642
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 3.97082877, 4.67734241, -1, 5.96462445e-018, -2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1643
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1644
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1645
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 4.48880005, -3.85297799, -1, 5.96462445e-018, -2.10845315e-008, -2.10845315e-008, 2.11953899e-009, 1, 5.06541121e-017, 1, -2.11953899e-009))
1646
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1647
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1648
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -5.03117704, -4.72449589, -1, 5.96462445e-018, -2.10845315e-008, -1.83445758e-015, 1, 8.72877948e-008, 2.10845315e-008, 8.72877948e-008, -1))
1649
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1650
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1651
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 1.96795416, 4.37102509, -1, 5.96462445e-018, -2.10845315e-008, -5.06543239e-017, -1, 2.11954898e-009, -2.10845315e-008, 2.11954898e-009, 1))
1652
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1653
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1654
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -3.9167099, 1.63669538, -1, 5.96046519e-008, -2.56329802e-008, 5.20011412e-008, 0.5, -0.866025448, -3.88026571e-008, -0.866025448, -0.5))
1655
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1656
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1657
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, -1.51884508, -3.75176907, -1, 5.96046519e-008, -2.56329802e-008, 3.88026571e-008, 0.866025448, 0.5, 5.20011412e-008, 0.5, -0.866025448))
1658
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1659
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.47127685))
1660
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, 1.51886177, 3.98740387, -1, 5.96046519e-008, -2.56329802e-008, -3.88026571e-008, -0.866025448, -0.5, -5.20011412e-008, -0.5, 0.866025448))
1661
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.5))
1662
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1663
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(7.62939453e-006, 3.7989006, -1.40103054, -1, 5.96046519e-008, -2.56329802e-008, -5.20011412e-008, -0.5, 0.866025448, 3.88026571e-008, 0.866025448, 0.5))
1664
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1665
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1666
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -2.57921457, -4.03452349, -1, 5.96046519e-008, -2.56329802e-008, 3.88026535e-008, 0.866025448, 0.50000006, 5.20011376e-008, 0.5, -0.866025388))
1667
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1668
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Electric blue","Part",Vector3.new(0.431683987, 0.431683987, 0.431683928))
1669
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -1, 5.96462445e-018, -2.10845315e-008, 2.10845315e-008, -2.11953899e-009, -1, -5.06541121e-017, -1, 2.11953899e-009),CFrame.new(5.7220459e-006, -0.484000444, 3.68109703, -1, 5.96046519e-008, -2.56329802e-008, -3.88026571e-008, -0.866025448, -0.5, -5.20011412e-008, -0.5, 0.866025448))
1670
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.551317215, 0.272929251, 0.272929341))
1671
1672
function attackone()
1673
        attack=true
1674
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1675
        for i=0,1,0.1 do
1676
                swait()
1677
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(80)),.3)
1678
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(10),math.rad(-70)),.3)
1679
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(90), math.rad(90)), 0.3)
1680
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(80), math.rad(-70), math.rad(0)), 0.3)
1681
RH.C0=clerp(RH.C0,cf(1,-1,0.2)*angles(math.rad(0),math.rad(40),math.rad(20)),.3)
1682
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1683
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1684
        end
1685
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.6) 
1686
so("http://roblox.com/asset/?id=231917871",Hitbox,1,0.8) 
1687
 for i=0,1,0.1 do
1688
                swait()
1689
 local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1690
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1691
local h = 5
1692
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1693
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1694
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1695
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1696
scfr = blcf
1697
elseif not scfr then
1698
scfr = blcf
1699
end
1700
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(-80)),.3)
1701
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(5),math.rad(70)),.3)
1702
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.5) * angles(math.rad(0), math.rad(-70), math.rad(90)), 0.3)
1703
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(70), math.rad(-70), math.rad(0)), 0.3)
1704
RH.C0=clerp(RH.C0,cf(1,-1,0.2)*angles(math.rad(0),math.rad(40),math.rad(20)),.3)
1705
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1706
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1707
        end
1708
        attack=false
1709
con1:disconnect()
1710
end
1711
1712
function attacktwo()
1713
        attack=true
1714
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1715
        for i=0,1,0.1 do
1716
                swait()
1717
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(90)),.2)
1718
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(-80)),.3)
1719
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(90),math.rad(90)),.1)
1720
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(70), math.rad(-70), math.rad(0)), 0.3)
1721
1722
        end
1723
1724
for i=0,1,1 do
1725
swait()
1726
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.7) 
1727
so("http://www.roblox.com/asset/?id=234365573",Hitbox,1,0.7)
1728
for i=0,1,0.1 do
1729
swait()
1730
 local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1731
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1732
local h = 5
1733
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1734
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1735
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1736
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1737
scfr = blcf
1738
elseif not scfr then
1739
scfr = blcf
1740
end
1741
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(-50)),.3)
1742
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-10),math.rad(110)),.1)
1743
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-60)), 0.3)
1744
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,0)*angles(math.rad(-50),math.rad(10),math.rad(0)),.3)
1745
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*euler(0,0,-6*i),.3)
1746
end
1747
end
1748
con1:disconnect()
1749
attack=false
1750
end
1751
1752
function attackthree()
1753
        attack=true
1754
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1755
        for i=0,1,0.1 do
1756
swait()
1757
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-10),math.rad(0),math.rad(00)),.3)
1758
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(00)),.3)
1759
RW.C0=clerp(RW.C0,cf(1,0.8,-1)*angles(math.rad(150),math.rad(0),math.rad(-50)),.3)
1760
LW.C0=clerp(LW.C0,cf(-1,0.8,-1)*angles(math.rad(150),math.rad(0),math.rad(50)),.3)
1761
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1762
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1763
HandleWeld.C0=clerp(HandleWeld.C0,cf(-1,0,-.2)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.3)
1764
        end
1765
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.4) 
1766
so("http://www.roblox.com/asset/?id=234365549",Hitbox,1,0.6)
1767
for i=0,1,.1 do
1768
swait()
1769
 local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1770
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1771
local h = 5
1772
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1773
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1774
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1775
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1776
scfr = blcf
1777
elseif not scfr then
1778
scfr = blcf
1779
end
1780
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1781
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(-5),math.rad(00)),.3)
1782
RW.C0=clerp(RW.C0,cf(1,0.2,-.5)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
1783
LW.C0=clerp(LW.C0,cf(-1,0.2,-.5)*angles(math.rad(10),math.rad(0),math.rad(50)),.3)
1784
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1785
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1786
HandleWeld.C0=clerp(HandleWeld.C0,cf(-1,0,-.2)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.3)
1787
        end
1788
attack=false
1789
con1:disconnect()
1790
end
1791
1792
function CrimsonMoon()
1793
attack=true
1794
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1795
for i=0,1,0.1 do
1796
swait()
1797
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(120),math.rad(80)),.3)
1798
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-10),math.rad(0),math.rad(-10)),.3)
1799
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-30),math.rad(-5),math.rad(0)),.3)
1800
end
1801
for i=0,1,0.15 do
1802
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.5) 
1803
so("http://roblox.com/asset/?id=28144425",Torso,1,0.8)
1804
swait()
1805
for i=0,1,0.1 do
1806
swait()
1807
local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1808
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1809
local h = 5
1810
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1811
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1812
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1813
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1814
scfr = blcf
1815
elseif not scfr then
1816
scfr = blcf
1817
end
1818
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-40),math.rad(90)),.3)
1819
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-20),math.rad(0),math.rad(-60)),.3)
1820
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,5)*euler(0,-1.5,-6*i),.3)
1821
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-30),math.rad(-5),math.rad(0)),.3)
1822
end
1823
end
1824
attack=false
1825
con1:disconnect()
1826
end
1827
1828
function BreakEffect(brickcolor,cframe,x1,y1,z1)
1829
local prt=part("Custom",workspace,"SmoothPlastic",0,0,"Really red","Effect",vt(0.5,0.5,0.5))
1830
prt.Anchored=true
1831
prt.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
1832
local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1))
1833
coroutine.resume(coroutine.create(function(Part,CF,Numbb,randnumb) 
1834
CF=Part.CFrame
1835
Numbb=0
1836
randnumb=math.random()-math.random()
1837
for i=0,1,0.05 do
1838
wait()
1839
CF=CF*cf(0,1,0)
1840
--Part.CFrame=Part.CFrame*euler(0.5,0,0)*cf(0,1,0)
1841
Part.CFrame=CF*euler(Numbb,0,0)
1842
Part.Transparency=i
1843
Numbb=Numbb+randnumb
1844
end
1845
Part.Parent=nil
1846
end),prt,CF,Numbb,randnumb)
1847
end
1848
1849
function Execution() --HEUAHUEHAUEHAUHUEAHUAEHUAHEUAHEUH
1850
attack=true
1851
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,999999999,999999999,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1852
Humanoid.WalkSpeed = 0
1853
for i=0,1,0.03 do
1854
swait()
1855
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(60)),.1)
1856
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-60)),.1)
1857
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(90),math.rad(120)),.1)
1858
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(100), math.rad(0), math.rad(0)), 0.1)
1859
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.1)
1860
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1861
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(0),math.rad(10),math.rad(0)),.1)
1862
end
1863
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.5) 
1864
so("http://roblox.com/asset/?id=28144425",Torso,1,0.5)
1865
 hitconasdf = Hitbox.Touched:connect(function(hit)
1866
                local hum12 = hit.Parent:FindFirstChild("Humanoid")
1867
                if hum12 and not hum12:IsDescendantOf(Character) then
1868
                        so('http://roblox.com/asset/?id=154965973',Hitbox,1,0.8)
1869
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1870
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1871
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1872
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1873
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1874
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1875
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1876
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1877
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1878
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1879
                        hitconasdf:disconnect()
1880
                end
1881
        end)
1882
for i=0,1,0.03 do
1883
swait()
1884
local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1885
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1886
local h = 5
1887
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1888
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1889
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1890
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1891
scfr = blcf
1892
elseif not scfr then
1893
scfr = blcf
1894
end
1895
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.2)
1896
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(60)),.2)
1897
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-20),math.rad(70)),.2)
1898
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-40)), 0.2)
1899
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.2)
1900
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1901
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(0),math.rad(10),math.rad(0)),.2)
1902
end
1903
attack=false
1904
con1:disconnect()
1905
Humanoid.WalkSpeed= 16
1906
pcall(function()
1907
        hitconasdf:disconnect()
1908
        end)
1909
end
1910
1911
mouse.Button1Down:connect(function()
1912
        if attack==false then
1913
                if attacktype==1 then
1914
                        attack=true
1915
                        attacktype=2
1916
                        attackone()
1917
                elseif attacktype==2 then
1918
                        attack=true
1919
                        attacktype=3
1920
                        attacktwo()
1921
               elseif attacktype==3 then
1922
                        attack=true
1923
                        attacktype=1
1924
                        attackthree()
1925
                end
1926
        end
1927
end)
1928
1929
mouse.KeyDown:connect(function(k)
1930
	k=k:lower()
1931
	if k=='q' then
1932
		if attack==false then
1933
			CrimsonMoon()
1934
		end
1935
		elseif k=='e' then
1936
		if attack==false then
1937
			Execution()
1938
		end
1939
	end
1940
end)
1941
1942
1943
local sine = 0
1944
local change = 1
1945
local val = 0
1946
1947
while true do
1948
swait()
1949
sine = sine + change
1950
local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude 
1951
local velderp=RootPart.Velocity.y
1952
hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
1953
if equipped==true or equipped==false then
1954
if attack==false then
1955
idle=idle+1
1956
else
1957
idle=0
1958
end
1959
if idle>=500 then
1960
if attack==false then
1961
--Sheath()
1962
end
1963
end
1964
if RootPart.Velocity.y > 1 and hitfloor==nil then 
1965
Anim="Jump"
1966
if attack==false then
1967
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1968
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1969
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(10)), 0.3)
1970
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)), 0.3)
1971
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
1972
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1973
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(10),math.rad(0)),.3)
1974
end
1975
elseif RootPart.Velocity.y < -1 and hitfloor==nil then 
1976
Anim="Fall"
1977
if attack==false then
1978
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(0)),.3)
1979
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(10),math.rad(0),math.rad(0)),.3)
1980
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(20)), 0.3)
1981
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-40)), 0.3)
1982
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
1983
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1984
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(10),math.rad(0)),.3)
1985
end
1986
elseif torvel<1 and hitfloor~=nil then
1987
Anim="Idle"
1988
if attack==false then
1989
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(60)),.3)
1990
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(5),math.rad(-50)),.3)
1991
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(70), math.rad(100), math.rad(0)), 0.3)
1992
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(-70), math.rad(0)), 0.3)
1993
RH.C0=clerp(RH.C0,cf(1,-1,0.2)*angles(math.rad(0),math.rad(40),math.rad(20)),.3)
1994
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1995
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1996
end
1997
elseif torvel>2 and torvel<22 and hitfloor~=nil then
1998
Anim="Walk"
1999
if attack==false then
2000
change=3
2001
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(60)),.3)
2002
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(10),math.rad(-50)),.3)
2003
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(70), math.rad(100), math.rad(0)), 0.3)
2004
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(-70), math.rad(0)), 0.3)
2005
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(80),math.rad(20)),.3)
2006
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-100),math.rad(0)),.3)
2007
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
2008
end
2009
elseif torvel>=22 and hitfloor~=nil then
2010
Anim="Run"
2011
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(60)),.3)
2012
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(10),math.rad(-50)),.3)
2013
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(70), math.rad(100), math.rad(0)), 0.3)
2014
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(-70), math.rad(0)), 0.3)
2015
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(80),math.rad(20)),.3)
2016
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-100),math.rad(0)),.3)
2017
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
2018
end
2019
end
2020
end