View difference between Paste ID: GHTW2SBv and 0UdJBtdx
SHOW: | | - or go back to the newest paste.
1
local p = game.Players.LocalPlayer
2
local char = p.Character
3
local mouse = p:GetMouse()
4
local larm = char["Left Arm"]
5
local rarm = char["Right Arm"]
6
local lleg = char["Left Leg"]
7
local rleg = char["Right Leg"]
8
local hed = char.Head
9
local torso = char.Torso
10
z = Instance.new("Sound", torso)
11-
z.SoundId = "rbxassetid://428255459" -- Put Music ID Here.
11+
z.SoundId = "rbxassetid://150120645" -- Put Music ID Here.
12
z.Looped = true
13
z.Pitch = 1
14
z.Volume = 1
15
wait(.1)
16
z:Play()
17
Player=game:GetService("Players").LocalPlayer
18
Character=Player.Character 
19
PlayerGui=Player.PlayerGui
20
Backpack=Player.Backpack 
21
Torso=Character.Torso 
22
Head=Character.Head 
23
Humanoid=Character.Humanoid
24
m=Instance.new('Model',Character)
25
LeftArm=Character["Left Arm"] 
26
LeftLeg=Character["Left Leg"] 
27
RightArm=Character["Right Arm"] 
28
RightLeg=Character["Right Leg"] 
29
LS=Torso["Left Shoulder"] 
30
LH=Torso["Left Hip"] 
31
RS=Torso["Right Shoulder"] 
32
RH=Torso["Right Hip"] 
33
Face = Head.face
34
Neck=Torso.Neck
35
it=Instance.new
36
attacktype=1
37
vt=Vector3.new
38
cf=CFrame.new
39
euler=CFrame.fromEulerAnglesXYZ
40
angles=CFrame.Angles
41
cloaked=false
42
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
43
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
44
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
45
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
46
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
47
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
48
RootPart=Character.HumanoidRootPart
49
RootJoint=RootPart.RootJoint
50
RootCF=euler(-1.57,0,3.14)
51
attack = false 
52
attackdebounce = false 
53
deb=false
54
equipped=true
55
hand=false
56
MMouse=nil
57
combo=0
58
mana=0
59
trispeed=.2
60
attackmode='none'
61
local idle=0
62
local Anim="Idle"
63
local Effects={}
64
local gun=false
65
local shoot=false
66
player=nil 
67
mana=0
68
69
mouse=Player:GetMouse()
70
--save shoulders 
71
RSH, LSH=nil, nil 
72
--welds 
73
RW, LW=Instance.new("Weld"), Instance.new("Weld") 
74
RW.Name="Right Shoulder" LW.Name="Left Shoulder"
75
LH=Torso["Left Hip"]
76
RH=Torso["Right Hip"]
77
TorsoColor=Torso.BrickColor
78
function NoOutline(Part)
79
Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
80
end
81
player=Player 
82
ch=Character
83
RSH=ch.Torso["Right Shoulder"] 
84
LSH=ch.Torso["Left Shoulder"] 
85
-- 
86
RSH.Parent=nil 
87
LSH.Parent=nil 
88
-- 
89
RW.Name="Right Shoulder"
90
RW.Part0=ch.Torso 
91
RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) 
92
RW.C1=cf(0, 0.5, 0) 
93
RW.Part1=ch["Right Arm"] 
94
RW.Parent=ch.Torso 
95
-- 
96
LW.Name="Left Shoulder"
97
LW.Part0=ch.Torso 
98
LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) 
99
LW.C1=cf(0, 0.5, 0) 
100
LW.Part1=ch["Left Arm"] 
101
LW.Parent=ch.Torso 
102
103
	Player=game:GetService('Players').LocalPlayer
104
	Character=Player.Character
105
	Mouse=Player:GetMouse()
106
	m=Instance.new('Model',Character)
107
108
109
	local function weldBetween(a, b)
110
	    local weldd = Instance.new("ManualWeld")
111
	    weldd.Part0 = a
112
	    weldd.Part1 = b
113
	    weldd.C0 = CFrame.new()
114
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
115
	    weldd.Parent = a
116
	    return weldd
117
	end
118
	
119
	it=Instance.new
120
	
121
	function nooutline(part)
122
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
123
	end
124
	
125
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
126
		local fp=it("Part")
127
		fp.formFactor=formfactor
128
		fp.Parent=parent
129
		fp.Reflectance=reflectance
130
		fp.Transparency=transparency
131
		fp.CanCollide=false
132
		fp.Locked=true
133
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
134
		fp.Name=name
135
		fp.Size=size
136
		fp.Position=Character.Torso.Position
137
		nooutline(fp)
138
		fp.Material=material
139
		fp:BreakJoints()
140
		return fp
141
	end
142
	
143
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
144
		local mesh=it(Mesh)
145
		mesh.Parent=part
146
		if Mesh=="SpecialMesh" then
147
			mesh.MeshType=meshtype
148
			mesh.MeshId=meshid
149
		end
150
		mesh.Offset=offset
151
		mesh.Scale=scale
152
		return mesh
153
	end
154
	
155
	function weld(parent,part0,part1,c0,c1)
156
		local weld=it("Weld")
157
		weld.Parent=parent
158
		weld.Part0=part0
159
		weld.Part1=part1
160
		weld.C0=c0
161
		weld.C1=c1
162
		return weld
163
	end    
164
165
166
    Player=game:GetService('Players').LocalPlayer
167
	Character=Player.Character
168
	Mouse=Player:GetMouse()
169
	m=Instance.new('Model',Character)
170
171
172
	local function weldBetween(a, b)
173
	    local weldd = Instance.new("ManualWeld")
174
	    weldd.Part0 = a
175
	    weldd.Part1 = b
176
	    weldd.C0 = CFrame.new()
177
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
178
	    weldd.Parent = a
179
	    return weldd
180
	end
181
	
182
	it=Instance.new
183
	
184
	function nooutline(part)
185
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
186
	end
187
	
188
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
189
		local fp=it("Part")
190
		fp.formFactor=formfactor
191
		fp.Parent=parent
192
		fp.Reflectance=reflectance
193
		fp.Transparency=transparency
194
		fp.CanCollide=false
195
		fp.Locked=true
196
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
197
		fp.Name=name
198
		fp.Size=size
199
		fp.Position=Character.Torso.Position
200
		nooutline(fp)
201
		fp.Material=material
202
		fp:BreakJoints()
203
		return fp
204
	end
205
	
206
	function swait(num)
207
    if num==0 or num==nil then
208
    game:service'RunService'.Stepped:wait(0)
209
    else
210
    for i=0,num do
211
    game:service'RunService'.Stepped:wait(0)
212
    end
213
    end
214
    end
215
	
216
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
217
		local mesh=it(Mesh)
218
		mesh.Parent=part
219
		if Mesh=="SpecialMesh" then
220
			mesh.MeshType=meshtype
221
			mesh.MeshId=meshid
222
		end
223
		mesh.Offset=offset
224
		mesh.Scale=scale
225
		return mesh
226
	end
227
	
228
	function weld(parent,part0,part1,c0,c1)
229
		local weld=it("Weld")
230
		weld.Parent=parent
231
		weld.Part0=part0
232
		weld.Part1=part1
233
		weld.C0=c0
234
		weld.C1=c1
235
		return weld
236
	end
237
	
238
	
239
local function CFrameFromTopBack(at, top, back)
240
local right = top:Cross(back)
241
return CFrame.new(at.x, at.y, at.z,
242
right.x, top.x, back.x,
243
right.y, top.y, back.y,
244
right.z, top.z, back.z)
245
end
246
247
function Triangle(a, b, c)
248
local edg1 = (c-a):Dot((b-a).unit)
249
local edg2 = (a-b):Dot((c-b).unit)
250
local edg3 = (b-c):Dot((a-c).unit)
251
if edg1 <= (b-a).magnitude and edg1 >= 0 then
252
a, b, c = a, b, c
253
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
254
a, b, c = b, c, a
255
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
256
a, b, c = c, a, b
257
else
258
assert(false, "unreachable")
259
end
260
 
261
local len1 = (c-a):Dot((b-a).unit)
262
local len2 = (b-a).magnitude - len1
263
local width = (a + (b-a).unit*len1 - c).magnitude
264
 
265
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
266
 
267
local list = {}
268
269
local Color = BrickColor.new("Really black")
270
 
271
if len1 > 0.01 then
272
local w1 = Instance.new('WedgePart', m)
273
game:GetService("Debris"):AddItem(w1,5)
274
w1.Material = "SmoothPlastic"
275
w1.FormFactor = 'Custom'
276
w1.BrickColor = BrickColor.new(Color)
277
w1.Transparency = 0
278
w1.Reflectance = 0
279
w1.Material = "SmoothPlastic"
280
w1.CanCollide = false
281
NoOutline(w1)
282
local sz = Vector3.new(0.2, width, len1)
283
w1.Size = sz
284
local sp = Instance.new("SpecialMesh",w1)
285
sp.MeshType = "Wedge"
286
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
287
w1:BreakJoints()
288
w1.Anchored = true
289
w1.Parent = workspace
290
w1.Transparency = 0.7
291
table.insert(Effects,{w1,"Disappear",.01})
292
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
293
table.insert(list,w1)
294
end
295
 
296
if len2 > 0.01 then
297
local w2 = Instance.new('WedgePart', m)
298
game:GetService("Debris"):AddItem(w2,5)
299
w2.Material = "SmoothPlastic"
300
w2.FormFactor = 'Custom'
301
w2.BrickColor = BrickColor.new(Color)
302
w2.Transparency = 0
303
w2.Reflectance = 0
304
w2.Material = "SmoothPlastic"
305
w2.CanCollide = false
306
NoOutline(w2)
307
local sz = Vector3.new(0.2, width, len2)
308
w2.Size = sz
309
local sp = Instance.new("SpecialMesh",w2)
310
sp.MeshType = "Wedge"
311
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
312
w2:BreakJoints()
313
w2.Anchored = true
314
w2.Parent = workspace
315
w2.Transparency = 0.7
316
table.insert(Effects,{w2,"Disappear",.01})
317
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
318
table.insert(list,w2)
319
end
320
return unpack(list)
321
end
322
	
323
	
324
so = function(id,par,vol,pit) 
325
coroutine.resume(coroutine.create(function()
326
local sou = Instance.new("Sound",par or workspace)
327
sou.Volume=vol
328
sou.Pitch=pit or 1
329
sou.SoundId=id
330
swait() 
331
sou:play() 
332
game:GetService("Debris"):AddItem(sou,6)
333
end))
334
end
335
 
336
function clerp(a,b,t) 
337
local qa = {QuaternionFromCFrame(a)}
338
local qb = {QuaternionFromCFrame(b)} 
339
local ax, ay, az = a.x, a.y, a.z 
340
local bx, by, bz = b.x, b.y, b.z
341
local _t = 1-t
342
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) 
343
end 
344
 
345
function QuaternionFromCFrame(cf) 
346
local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() 
347
local trace = m00 + m11 + m22 
348
if trace > 0 then 
349
local s = math.sqrt(1 + trace) 
350
local recip = 0.5/s 
351
return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 
352
else 
353
local i = 0 
354
if m11 > m00 then
355
i = 1
356
end
357
if m22 > (i == 0 and m00 or m11) then 
358
i = 2 
359
end 
360
if i == 0 then 
361
local s = math.sqrt(m00-m11-m22+1) 
362
local recip = 0.5/s 
363
return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip 
364
elseif i == 1 then 
365
local s = math.sqrt(m11-m22-m00+1) 
366
local recip = 0.5/s 
367
return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip 
368
elseif i == 2 then 
369
local s = math.sqrt(m22-m00-m11+1) 
370
local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip 
371
end 
372
end 
373
end
374
 
375
function QuaternionToCFrame(px, py, pz, x, y, z, w) 
376
local xs, ys, zs = x + x, y + y, z + z 
377
local wx, wy, wz = w*xs, w*ys, w*zs 
378
local xx = x*xs 
379
local xy = x*ys 
380
local xz = x*zs 
381
local yy = y*ys 
382
local yz = y*zs 
383
local zz = z*zs 
384
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)) 
385
end
386
 
387
function QuaternionSlerp(a, b, t) 
388
local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] 
389
local startInterp, finishInterp; 
390
if cosTheta >= 0.0001 then 
391
if (1 - cosTheta) > 0.0001 then 
392
local theta = math.acos(cosTheta) 
393
local invSinTheta = 1/math.sin(theta) 
394
startInterp = math.sin((1-t)*theta)*invSinTheta 
395
finishInterp = math.sin(t*theta)*invSinTheta  
396
else 
397
startInterp = 1-t 
398
finishInterp = t 
399
end 
400
else 
401
if (1+cosTheta) > 0.0001 then 
402
local theta = math.acos(-cosTheta) 
403
local invSinTheta = 1/math.sin(theta) 
404
startInterp = math.sin((t-1)*theta)*invSinTheta 
405
finishInterp = math.sin(t*theta)*invSinTheta 
406
else 
407
startInterp = t-1 
408
finishInterp = t 
409
end 
410
end 
411
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 
412
end
413
414
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
415
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
416
end 
417
418
local function CFrameFromTopBack(at, top, back)
419
local right = top:Cross(back)
420
return CFrame.new(at.x, at.y, at.z,
421
right.x, top.x, back.x,
422
right.y, top.y, back.y,
423
right.z, top.z, back.z)
424
end
425
426
function Triangle(a, b, c)
427
local edg1 = (c-a):Dot((b-a).unit)
428
local edg2 = (a-b):Dot((c-b).unit)
429
local edg3 = (b-c):Dot((a-c).unit)
430
if edg1 <= (b-a).magnitude and edg1 >= 0 then
431
a, b, c = a, b, c
432
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
433
a, b, c = b, c, a
434
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
435
a, b, c = c, a, b
436
else
437
assert(false, "unreachable")
438
end
439
 
440
local len1 = (c-a):Dot((b-a).unit)
441
local len2 = (b-a).magnitude - len1
442
local width = (a + (b-a).unit*len1 - c).magnitude
443
 
444
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
445
 
446
local list = {}
447
 
448
if len1 > 0.01 then
449
local w1 = Instance.new('WedgePart', m)
450
game:GetService("Debris"):AddItem(w1,5)
451
w1.Material = "SmoothPlastic"
452
w1.FormFactor = 'Custom'
453
w1.BrickColor = BrickColor.new("Dark stone grey")
454
w1.Transparency = 0
455
w1.Reflectance = 0
456
w1.Material = "SmoothPlastic"
457
w1.CanCollide = false
458
NoOutline(w1)
459
local sz = Vector3.new(0.2, width, len1)
460
w1.Size = sz
461
local sp = Instance.new("SpecialMesh",w1)
462
sp.MeshType = "Wedge"
463
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
464
w1:BreakJoints()
465
w1.Anchored = true
466
w1.Parent = workspace
467
w1.Transparency = 0.7
468
table.insert(Effects,{w1,"Disappear",.01})
469
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
470
table.insert(list,w1)
471
end
472
 
473
if len2 > 0.01 then
474
local w2 = Instance.new('WedgePart', m)
475
game:GetService("Debris"):AddItem(w2,5)
476
w2.Material = "SmoothPlastic"
477
w2.FormFactor = 'Custom'
478
w2.BrickColor = BrickColor.new("Dark stone grey")
479
w2.Transparency = 0
480
w2.Reflectance = 0
481
w2.Material = "SmoothPlastic"
482
w2.CanCollide = false
483
NoOutline(w2)
484
local sz = Vector3.new(0.2, width, len2)
485
w2.Size = sz
486
local sp = Instance.new("SpecialMesh",w2)
487
sp.MeshType = "Wedge"
488
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
489
w2:BreakJoints()
490
w2.Anchored = true
491
w2.Parent = workspace
492
w2.Transparency = 0.7
493
table.insert(Effects,{w2,"Disappear",.01})
494
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
495
table.insert(list,w2)
496
end
497
return unpack(list)
498
end
499
500
Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
501
        if hit.Parent==nil then
502
                return
503
        end
504
        h=hit.Parent:FindFirstChild("Humanoid")
505
        for _,v in pairs(hit.Parent:children()) do
506
        if v:IsA("Humanoid") then
507
        h=v
508
        end
509
        end
510
        if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
511
        h=hit.Parent.Parent:FindFirstChild("Humanoid")
512
        end
513
        if hit.Parent.className=="Hat" then
514
        hit=hit.Parent.Parent:findFirstChild("Head")
515
        end
516
        if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
517
        if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
518
        --[[                if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
519
                        return
520
                end]]
521
--                        hs(hit,1.2) 
522
                        c=Instance.new("ObjectValue")
523
                        c.Name="creator"
524
                        c.Value=game:service("Players").LocalPlayer
525
                        c.Parent=h
526
                        game:GetService("Debris"):AddItem(c,.5)
527
                Damage=math.random(minim,maxim)
528
--                h:TakeDamage(Damage)
529
                blocked=false
530
                block=hit.Parent:findFirstChild("Block")
531
                if block~=nil then
532
                print(block.className)
533
                if block.className=="NumberValue" then
534
                if block.Value>0 then
535
                blocked=true
536
                if decreaseblock==nil then
537
                block.Value=block.Value-1
538
                end
539
                end
540
                end
541
                if block.className=="IntValue" then
542
                if block.Value>0 then
543
                blocked=true
544
                if decreaseblock~=nil then
545
                block.Value=block.Value-1
546
                end
547
                end
548
                end
549
                end
550
                if blocked==false then
551
--                h:TakeDamage(Damage)
552
                h.Health=h.Health-Damage
553
                showDamage(hit.Parent,Damage,.5,BrickColor.new("Dark stone grey"))
554
                else
555
                h.Health=h.Health-(Damage/2)
556
                showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue"))
557
                end
558
                if Type=="Knockdown" then
559
                hum=hit.Parent.Humanoid
560
hum.PlatformStand=true
561
coroutine.resume(coroutine.create(function(HHumanoid)
562
swait(1)
563
HHumanoid.PlatformStand=false
564
end),hum)
565
                local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
566
--hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
567
local bodvol=Instance.new("BodyVelocity")
568
bodvol.velocity=angle*knockback
569
bodvol.P=5000
570
bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
571
bodvol.Parent=hit
572
rl=Instance.new("BodyAngularVelocity")
573
rl.P=3000
574
rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
575
rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
576
rl.Parent=hit
577
game:GetService("Debris"):AddItem(bodvol,.5)
578
game:GetService("Debris"):AddItem(rl,.5)
579
                elseif Type=="Normal" then
580
                vp=Instance.new("BodyVelocity")
581
                vp.P=500
582
                vp.maxForce=Vector3.new(math.huge,0,math.huge)
583
--                vp.velocity=Character.Torso.CFrame.lookVector*Knockback
584
                if KnockbackType==1 then
585
                vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
586
                elseif KnockbackType==2 then
587
                vp.velocity=Property.CFrame.lookVector*knockback
588
                end
589
                if knockback>0 then
590
                        vp.Parent=hit.Parent.Torso
591
                end
592
                game:GetService("Debris"):AddItem(vp,.5)
593
                elseif Type=="Up" then
594
                local bodyVelocity=Instance.new("BodyVelocity")
595
                bodyVelocity.velocity=vt(0,60,0)
596
                bodyVelocity.P=5000
597
                bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
598
                bodyVelocity.Parent=hit
599
                game:GetService("Debris"):AddItem(bodyVelocity,1)
600
                rl=Instance.new("BodyAngularVelocity")
601
                rl.P=3000
602
                rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
603
                rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
604
                rl.Parent=hit
605
                game:GetService("Debris"):AddItem(rl,.5)
606
                elseif Type=="Snare" then
607
                bp=Instance.new("BodyPosition")
608
                bp.P=2000
609
                bp.D=100
610
                bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
611
                bp.position=hit.Parent.Torso.Position
612
                bp.Parent=hit.Parent.Torso
613
                game:GetService("Debris"):AddItem(bp,1)
614
                elseif Type=="Target" then
615
                if Targetting==false then
616
                ZTarget=hit.Parent.Torso
617
                coroutine.resume(coroutine.create(function(Part) 
618
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
619
                swait(5)
620
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
621
                end),ZTarget)
622
                TargHum=ZTarget.Parent:findFirstChild("Humanoid")
623
                targetgui=Instance.new("BillboardGui")
624
                targetgui.Parent=ZTarget
625
                targetgui.Size=UDim2.new(10,100,10,100)
626
                targ=Instance.new("ImageLabel")
627
                targ.Parent=targetgui
628
                targ.BackgroundTransparency=1
629
                targ.Image="rbxassetid://4834067"
630
                targ.Size=UDim2.new(1,0,1,0)
631
                cam.CameraType="Scriptable"
632
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
633
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
634
                workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
635
                Targetting=true
636
                RocketTarget=ZTarget
637
                for i=1,Property do
638
                --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
639
                if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
640
                swait()
641
                end
642
                --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
643
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
644
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
645
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
646
                end
647
                Targetting=false
648
                RocketTarget=nil
649
                targetgui.Parent=nil
650
                cam.CameraType="Custom"
651
                end
652
                end
653
                        debounce=Instance.new("BoolValue")
654
                        debounce.Name="DebounceHit"
655
                        debounce.Parent=hit.Parent
656
                        debounce.Value=true
657
                        game:GetService("Debris"):AddItem(debounce,Delay)
658
                        c=Instance.new("ObjectValue")
659
                        c.Name="creator"
660
                        c.Value=Player
661
                        c.Parent=h
662
                        game:GetService("Debris"):AddItem(c,.5)
663
                CRIT=false
664
                hitDeb=true
665
                AttackPos=6
666
        end
667
end
668
 
669
showDamage=function(Char,Dealt,du,Color)
670
        m=Instance.new("Model")
671
        m.Name=tostring(Dealt)
672
        h=Instance.new("Humanoid")
673
        h.Health=0
674
        h.MaxHealth=0
675
        h.Parent=m
676
        c=Instance.new("Part")
677
        c.Transparency=0
678
        c.BrickColor=Color
679
        c.Name="Head"
680
        c.TopSurface=0
681
        c.BottomSurface=0
682
        c.formFactor="Plate"
683
        c.Size=Vector3.new(1,.4,1)
684
        ms=Instance.new("CylinderMesh")
685
        ms.Scale=Vector3.new(.8,.8,.8)
686
        if CRIT==true then
687
                ms.Scale=Vector3.new(1,1.25,1)
688
        end
689
        ms.Parent=c
690
        c.Reflectance=0
691
        Instance.new("BodyGyro").Parent=c
692
        c.Parent=m
693
        if Char:findFirstChild("Head")~=nil then
694
        c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0))
695
        elseif Char.Parent:findFirstChild("Head")~=nil then
696
        c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0))
697
        end
698
        f=Instance.new("BodyPosition")
699
        f.P=2000
700
        f.D=100
701
        f.maxForce=Vector3.new(math.huge,math.huge,math.huge)
702
        f.position=c.Position+Vector3.new(0,3,0)
703
        f.Parent=c
704
        game:GetService("Debris"):AddItem(m,.5+du)
705
        c.CanCollide=false
706
        m.Parent=workspace
707
        c.CanCollide=false
708
end
709
 
710
711
Player=game:GetService('Players').LocalPlayer
712
Character=Player.Character
713
Mouse=Player:GetMouse()
714
m=Instance.new('Model',Character)
715
it=Instance.new
716
function nooutline(part)
717
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
718
end
719
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
720
	local fp=it("Part")
721
	fp.formFactor=formfactor
722
	fp.Parent=parent
723
	fp.Reflectance=reflectance
724
	fp.Transparency=transparency
725
	fp.CanCollide=false
726
	fp.Locked=true
727
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
728
	fp.Name=name
729
	fp.Size=size
730
	fp.Position=Character.Torso.Position
731
	nooutline(fp)
732
	fp.Material=material
733
	fp:BreakJoints()
734
	return fp
735
end
736
function mesh(Mesh,part,meshtype,meshid,offset,scale)
737
	local mesh=it(Mesh)
738
	mesh.Parent=part
739
	if Mesh=="SpecialMesh" then
740
		mesh.MeshType=meshtype
741
		mesh.MeshId=meshid
742
	end
743
	mesh.Offset=offset
744
	mesh.Scale=scale
745
	return mesh
746
end
747
function weld(parent,part0,part1,c0,c1)
748
	local weld=it("Weld")
749
	weld.Parent=parent
750
	weld.Part0=part0
751
	weld.Part1=part1
752
	weld.C0=c0
753
	weld.C1=c1
754
	return weld
755
end
756
757
Player=game:GetService('Players').LocalPlayer
758
Character=Player.Character
759
Mouse=Player:GetMouse()
760
m=Instance.new('Model',Character)
761
it=Instance.new
762
function nooutline(part)
763
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
764
end
765
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
766
	local fp=it("Part")
767
	fp.formFactor=formfactor
768
	fp.Parent=parent
769
	fp.Reflectance=reflectance
770
	fp.Transparency=transparency
771
	fp.CanCollide=false
772
	fp.Locked=true
773
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
774
	fp.Name=name
775
	fp.Size=size
776
	fp.Position=Character.Torso.Position
777
	nooutline(fp)
778
	fp.Material=material
779
	fp:BreakJoints()
780
	return fp
781
end
782
function mesh(Mesh,part,meshtype,meshid,offset,scale)
783
	local mesh=it(Mesh)
784
	mesh.Parent=part
785
	if Mesh=="SpecialMesh" then
786
		mesh.MeshType=meshtype
787
		mesh.MeshId=meshid
788
	end
789
	mesh.Offset=offset
790
	mesh.Scale=scale
791
	return mesh
792
end
793
function weld(parent,part0,part1,c0,c1)
794
	local weld=it("Weld")
795
	weld.Parent=parent
796
	weld.Part0=part0
797
	weld.Part1=part1
798
	weld.C0=c0
799
	weld.C1=c1
800
	return weld
801
end
802
803
HandleA=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","HandleA",Vector3.new(1.6487186, 1.9784621, 1.64871848))
804
HandleAweld=weld(m,Character["Right Arm"],HandleA,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994874, 0, 0, 0, 1),CFrame.new(-0.0212783813, -0.19931078, 1.02361298, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069))
805
mesh("CylinderMesh",HandleA,"","",Vector3.new(0, 0, 0),Vector3.new(0.174999908, 1.04999995, 0.524999976))
806
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
807
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0, 1.26446486, 0.783137321, -1, -8.61177796e-012, 1.51011747e-007, 1.50979517e-007, -1.33582034e-012, 1, 8.83393966e-012, 1, -1.33582034e-012))
808
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.0333333202, 0.13333331))
809
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
810
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.00329208374, -1.32052565, 0.784784317, 1, 8.61367228e-012, -1.59730007e-011, 1.62856395e-011, 1.33582034e-012, -1, 8.83393966e-012, 1, -1.33582034e-012))
811
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.0333333202, 0.13333331))
812
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
813
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0, -1.33371496, 0.811164856, 1, 8.61367228e-012, -1.5944579e-011, 1.62714286e-011, 1.33582034e-012, -1, 8.83393966e-012, 1, -1.33582034e-012))
814
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0499999858, 0.0499999858, 0.166666642))
815
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
816
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0, 1.25127745, 0.811161995, -1, -8.61177796e-012, 1.51011747e-007, 1.50979517e-007, -1.33582034e-012, 1, 8.83393966e-012, 1, -1.33582034e-012))
817
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0499999784, 0.0499999858, 0.166666642))
818
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
819
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.96608448, 0.0280532837, -1.49057865, 4.62648231e-009, -0.965925753, -0.258818984, -1, -4.2230571e-008, 1.39698415e-007, -1.45832743e-007, 0.258818984, -0.965925753))
820
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
821
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
822
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.42736959, -1.90734863e-006, -0.270785332, 1.65861607e-007, 0.587785304, 0.809016943, 1, -2.56842885e-008, -1.86375004e-007, -8.87363996e-008, 0.809016943, -0.587785304))
823
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.166666672, 0.166666672))
824
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
825
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.577048302, -0.0280227661, -1.4557147, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
826
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
827
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
828
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.577048302, 0.0280532837, -1.4557147, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
829
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
830
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
831
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.962899685, 0, -1.49143219, 4.62648231e-009, -0.965925753, -0.258818984, -1, -4.2230571e-008, 1.39698415e-007, -1.45832743e-007, 0.258818984, -0.965925753))
832
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.166666672))
833
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
834
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.43294263, -0.028055191, -0.268722534, 1.65861607e-007, 0.587785304, 0.809016943, 1, -2.56842885e-008, -1.86375004e-007, -8.87363996e-008, 0.809016943, -0.587785304))
835
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.166666672, 0.149999991))
836
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
837
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.43294263, 0.0280208588, -0.268722534, 1.65861607e-007, 0.587785304, 0.809016943, 1, -2.56842885e-008, -1.86375004e-007, -8.87363996e-008, 0.809016943, -0.587785304))
838
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.166666672, 0.149999991))
839
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
840
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.962899685, -0.0280227661, -1.49143219, 4.62648231e-009, -0.965925753, -0.258818984, -1, -4.2230571e-008, 1.39698415e-007, -1.45832743e-007, 0.258818984, -0.965925753))
841
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
842
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
843
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.577048302, 0, -1.4557147, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
844
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.166666672))
845
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
846
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.3308568, -0.0280208588, -2.34424305, 3.05438661e-008, -0.99619472, -0.0871556401, -1, -4.35536585e-008, 1.47202044e-007, -1.50404261e-007, 0.0871556401, -0.99619472))
847
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.5))
848
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 4.94615555))
849
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.00164794922, 7.62939453e-006, -5.16695738, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
850
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.233333305, 0.0499999933, 1))
851
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
852
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26282072, -1.90734863e-006, 0.412180901, 1.94690912e-007, -1.32871492e-012, 1, 1, 8.62338326e-012, -1.94723142e-007, 8.83393966e-012, 1, -1.33582034e-012))
853
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.166666672, 0.333333343))
854
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
855
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-7.62939453e-006, -0.08244133, 7.9681406, 1, -1.50987148e-007, -1.51011761e-007, 1.51004627e-007, 0.99999994, 1.19207968e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
856
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0166666452, 0.133333281, 0.433333308))
857
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
858
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.0247306824, -0.0296740532, 2.22566557, 1, -1.50987148e-007, -1.51011761e-007, 1.51004627e-007, 0.99999994, 1.19207968e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
859
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0499999858, 0.400000006))
860
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
861
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.63556767, 0, -1.01302338, -6.30534984e-008, -0.707106829, -0.70710665, -1, -3.0917235e-008, 1.20103138e-007, -1.06752402e-007, 0.70710665, -0.707106829))
862
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.166666672))
863
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
864
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.89365387, -0.0280227661, -1.84453678, 4.62648941e-009, -0.965925753, -0.258818984, -1, -4.2230571e-008, 1.39698415e-007, -1.45832772e-007, 0.258818984, -0.965925753))
865
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.0999999866))
866
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
867
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.0280208588, -0.067609787, -2.28172255, -1, -8.61177796e-012, 1.51011747e-007, 8.83204621e-012, 1, -5.96059806e-008, -1.50979531e-007, -5.9603309e-008, -1))
868
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0499999858, 0.400000006))
869
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
870
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.344002247, 1.90734863e-006, -2.34309292, 3.0543859e-008, -0.99619472, -0.0871556699, -1, -4.35536585e-008, 1.47202044e-007, -1.50404247e-007, 0.0871556699, -0.99619472))
871
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.5))
872
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
873
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.85855484, -0.0280227661, 0.747494459, -8.70362982e-008, 0.5, -0.866025448, -1, 2.1847077e-008, 1.13156574e-007, 7.54974323e-008, 0.866025329, 0.5))
874
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.0499999858, 0.0999999866))
875
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
876
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.00164794922, -1.90734863e-006, -2.33613157, 4.37202203e-008, 1, -5.96059806e-008, 1, -4.37027694e-008, -1.51011719e-007, -1.50979531e-007, -5.9603309e-008, -1))
877
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.166666672, 0.333333343))
878
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
879
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.64256334, -0.0280227661, -1.02001858, -6.30534984e-008, -0.707106829, -0.70710665, -1, -3.0917235e-008, 1.20103138e-007, -1.06752402e-007, 0.70710665, -0.707106829))
880
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
881
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
882
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.92918491, 0, -0.610360622, -9.31263031e-008, -0.42261833, -0.906307817, -1, -1.84818436e-008, 1.11395778e-007, -6.37986943e-008, 0.906307817, -0.42261833))
883
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.166666672))
884
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
885
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.893769741, 0, -1.85133171, 4.62648231e-009, -0.965925753, -0.258818984, -1, -4.2230571e-008, 1.39698415e-007, -1.45832772e-007, 0.258818984, -0.965925753))
886
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.116666652))
887
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
888
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.90734863e-006, -0.0412211418, 2.25204802, 1, -1.50987148e-007, -1.51011761e-007, 1.51004627e-007, 0.99999994, 1.19207968e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
889
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0666666552, 0.433333367))
890
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
891
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.92918491, 0.0280532837, -0.610360622, -9.31263031e-008, -0.42261833, -0.906307817, -1, -1.84818436e-008, 1.11395778e-007, -6.37986943e-008, 0.906307817, -0.42261833))
892
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
893
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
894
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.0280609131, -0.343752861, 7.90654612, 1, -1.50987177e-007, -1.48376117e-007, 1.45735555e-007, 0.999390841, -0.0348992646, 1.53523487e-007, 0.0348992646, 0.999390841))
895
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0166666452, 0.0999999568, 0.366666645))
896
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
897
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.00332832336, -0.0296730995, 2.22566557, -1, -8.61177796e-012, 1.51011747e-007, -8.85193828e-012, -0.99999994, -1.19207961e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
898
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.0499999858, 0.400000006))
899
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
900
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-2.05584478, 0, 0.0412130356, -1.07268136e-007, 1.33582034e-012, -1, -1, -8.61438351e-012, 1.07300366e-007, 8.83393966e-012, 1, -1.33582034e-012))
901
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.166666672))
902
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
903
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.90734863e-006, -0.0824308395, -2.25369406, 1, 1.51004386e-007, -1.51011733e-007, 1.50986963e-007, -1, 5.96059806e-008, -1.50979531e-007, -5.9603309e-008, -1))
904
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.0666666552, 0.433333367))
905
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
906
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-2.00435209, 0, 0.380025864, -1.02121355e-007, 0.258818984, -0.965925753, -1, 1.13047181e-008, 1.08789791e-007, 3.9084906e-008, 0.965925753, 0.258818984))
907
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999933, 0.0999999866))
908
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
909
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.028055191, -0.067609787, -2.28172255, -1, -8.61177796e-012, 1.51011747e-007, 8.83204621e-012, 1, -5.96059806e-008, -1.50979531e-007, -5.9603309e-008, -1))
910
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0499999858, 0.400000006))
911
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
912
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.06898212, -0.0280532837, -1.0689826, -6.30410142e-008, 0.70710665, -0.707106829, 1, -3.09000008e-008, -1.20103124e-007, -1.0676488e-007, -0.707106829, -0.70710665))
913
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.133333325, 0.166666672, 0.133333325))
914
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
915
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-2.05584478, 0.0280532837, 0.0412135124, -1.07268143e-007, 1.19210625e-007, -0.99999994, -1, -8.60727808e-012, 1.07300366e-007, 8.85193828e-012, 0.99999994, 1.19207961e-007))
916
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
917
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
918
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26282072, -0.028055191, 0.412180901, 1.94690912e-007, -1.32871492e-012, 1, 1, 8.62338326e-012, -1.94723142e-007, 8.83393966e-012, 1, -1.33582034e-012))
919
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.166666672, 0.333333343))
920
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
921
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.028055191, -0.0692405701, -2.28172255, 1, 1.51004386e-007, -1.51011733e-007, 1.50986963e-007, -1, 5.96059806e-008, -1.50979531e-007, -5.9603309e-008, -1))
922
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0499999858, 0.400000006))
923
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
924
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.00164985657, 0, -1.62058592, 4.37202203e-008, 1, -5.96059806e-008, 1, -4.37027694e-008, -1.51011719e-007, -1.50979531e-007, -5.9603309e-008, -1))
925
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.166666672, 0.333333343))
926
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
927
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.90734863e-006, -0.0824422836, -2.25369406, -1, -8.61177796e-012, 1.51011747e-007, 8.83204621e-012, 1, -5.96059806e-008, -1.50979531e-007, -5.9603309e-008, -1))
928
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.0666666552, 0.433333367))
929
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
930
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.00164985657, -0.0280532837, -1.62058592, 4.37202203e-008, 1, -5.96059806e-008, 1, -4.37027694e-008, -1.51011719e-007, -1.50979531e-007, -5.9603309e-008, -1))
931
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.166666672, 0.333333343))
932
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
933
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.0296878815, -0.0296740532, 2.22566557, 1, -1.50987148e-007, -1.51011761e-007, 1.51004627e-007, 0.99999994, 1.19207968e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
934
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0499999858, 0.400000006))
935
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
936
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.336278915, 0.028055191, -2.42486453, 5.68613316e-008, -0.99619472, 0.0871558189, -1, -4.35536691e-008, 1.5482145e-007, -1.50405796e-007, -0.0871558189, -0.99619472))
937
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.399999976))
938
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
939
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-2.00435209, 0.0280532837, 0.380025864, -1.02121355e-007, 0.258818984, -0.965925753, -1, 1.13047181e-008, 1.08789791e-007, 3.9084906e-008, 0.965925753, 0.258818984))
940
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.0499999858, 0.0999999866))
941
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
942
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.64256334, 0.0280532837, -1.02001858, -6.30534984e-008, -0.707106829, -0.70710665, -1, -3.0917235e-008, 1.20103138e-007, -1.06752402e-007, 0.70710665, -0.707106829))
943
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
944
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
945
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.06781673, -1.90734863e-006, -1.06781578, 1.50476268e-007, 0.707106829, 0.70710665, 1, -3.09000008e-008, -1.81920356e-007, -1.06752402e-007, 0.70710665, -0.707106829))
946
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.166666672, 0.166666672, 0.166666672))
947
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
948
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.342236519, 1.90734863e-006, -2.34159303, 5.68613316e-008, -0.99619472, 0.0871558189, -1, -4.35536691e-008, 1.5482145e-007, -1.50405796e-007, -0.0871558189, -0.99619472))
949
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.5))
950
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
951
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.85855484, 0, 0.747494459, -8.70362982e-008, 0.5, -0.866025448, -1, 2.1847077e-008, 1.13156574e-007, 7.54974323e-008, 0.866025329, 0.5))
952
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999933, 0.0999999866))
953
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
954
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.3308568, 0.028055191, -2.3442421, 3.05438768e-008, -0.996194661, -0.0871556103, -1, -4.35536585e-008, 1.47202044e-007, -1.50404233e-007, 0.0871556103, -0.996194661))
955
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.5))
956
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
957
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.06806135, 0.028055191, -1.80671334, 1.07510097e-007, -0.906307697, 0.422618389, -1, -3.96245774e-008, 1.69484991e-007, -1.36837642e-007, -0.422618389, -0.906307697))
958
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.0999999866))
959
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
960
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.06806087, 1.90734863e-006, -1.80671358, 1.0751009e-007, -0.906307757, 0.4226183, -1, -3.96245774e-008, 1.69484991e-007, -1.36837684e-007, -0.4226183, -0.906307757))
961
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.116666652, 0.0499999858, 0.116666652))
962
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
963
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.00164985657, 0.0280227661, -1.62058592, 4.37202203e-008, 1, -5.96059806e-008, 1, -4.37027694e-008, -1.51011719e-007, -1.50979531e-007, -5.9603309e-008, -1))
964
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.166666672, 0.333333343))
965
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
966
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.893769741, 0.0280532837, -1.85133171, 4.62648941e-009, -0.965925753, -0.258818984, -1, -4.2230571e-008, 1.39698415e-007, -1.45832772e-007, 0.258818984, -0.965925753))
967
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.0999999866))
968
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
969
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0, -0.028055191, -2.40537596, 4.37202203e-008, 1, -5.96059806e-008, 1, -4.37027694e-008, -1.51011719e-007, -1.50979531e-007, -5.9603309e-008, -1))
970
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.166666672, 0.25000003))
971
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
972
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.0280609131, 0.179037094, 7.9139514, -1, -8.61177796e-012, 1.51011747e-007, 5.26024646e-009, -0.999390841, 0.0348992646, 1.50887871e-007, 0.0348992646, 0.999390841))
973
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0166666452, 0.0999999568, 0.366666645))
974
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
975
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.85855484, 0.0280532837, 0.747494459, -8.70362982e-008, 0.5, -0.866025448, -1, 2.1847077e-008, 1.13156574e-007, 7.54974323e-008, 0.866025329, 0.5))
976
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.0499999858, 0.0999999866))
977
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 4.94615555))
978
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.00164794922, 0.0280609131, -5.16695738, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
979
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.199999973, 0.0666666552, 1))
980
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
981
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.06781483, 0.0280227661, -1.06781673, -6.30410142e-008, 0.70710665, -0.707106829, 1, -3.09000008e-008, -1.20103124e-007, -1.0676488e-007, -0.707106829, -0.70710665))
982
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.133333325, 0.166666672, 0.133333325))
983
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
984
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-2.00435209, -0.0280227661, 0.380025864, -1.02121355e-007, 0.258818984, -0.965925753, -1, 1.13047181e-008, 1.08789791e-007, 3.9084906e-008, 0.965925753, 0.258818984))
985
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.0499999858, 0.0999999866))
986
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
987
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26282072, 0.0280208588, 0.412180901, 1.94690912e-007, -1.32871492e-012, 1, 1, 8.62338326e-012, -1.94723142e-007, 8.83393966e-012, 1, -1.33582034e-012))
988
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0833333209, 0.166666672, 0.333333343))
989
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
990
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(7.62939453e-006, -0.110453606, 7.9681406, -1, -8.61177796e-012, 1.51011747e-007, -8.85193828e-012, -0.99999994, -1.19207961e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
991
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0166666452, 0.0999999568, 0.433333308))
992
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
993
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.90734863e-006, -0.0412135124, 2.25369406, -1, -8.61177796e-012, 1.51011747e-007, -8.85193828e-012, -0.99999994, -1.19207961e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
994
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.0666666552, 0.433333367))
995
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
996
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.336278439, -0.0280208588, -2.42486453, 5.68613174e-008, -0.996194839, 0.0871557593, -1, -4.35536691e-008, 1.5482145e-007, -1.50405782e-007, -0.0871557593, -0.996194839))
997
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.399999976))
998
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
999
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0, 0.0280208588, -2.40537596, 4.37202203e-008, 1, -5.96059806e-008, 1, -4.37027694e-008, -1.51011719e-007, -1.50979531e-007, -5.9603309e-008, -1))
1000
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0666666552, 0.166666672, 0.25000003))
1001
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
1002
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.0247306824, -0.0296730995, 2.22566557, -1, -8.61177796e-012, 1.51011747e-007, -8.85193828e-012, -0.99999994, -1.19207961e-007, 1.50979517e-007, -1.19210625e-007, 0.99999994))
1003
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0499999858, 0.400000006))
1004
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 4.94615555))
1005
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.00164794922, -0.0280151367, -5.16695738, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
1006
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.199999973, 0.0666666552, 1))
1007
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
1008
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.0280151367, -0.343983173, 7.91313314, 1, 8.61177796e-012, -1.51011747e-007, -5.26024646e-009, 0.999390841, -0.0348992646, 1.50887871e-007, 0.0348992646, 0.999390841))
1009
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0166666452, 0.0999999568, 0.366666645))
1010
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1011
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-2.05584478, -0.0280227661, 0.0412130356, -1.07268136e-007, 1.33582034e-012, -1, -1, -8.61438351e-012, 1.07300366e-007, 8.83393966e-012, 1, -1.33582034e-012))
1012
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
1013
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
1014
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.0280151367, 0.179037094, 7.9139514, -1, -8.61177796e-012, 1.51011747e-007, 5.26024646e-009, -0.999390841, 0.0348992646, 1.50887871e-007, 0.0348992646, 0.999390841))
1015
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0166666452, 0.0999999568, 0.366666645))
1016
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1017
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.06806135, -0.0280208588, -1.80671334, 1.07510097e-007, -0.906307697, 0.422618389, -1, -3.96245774e-008, 1.69484991e-007, -1.36837642e-007, -0.422618389, -0.906307697))
1018
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.0999999866))
1019
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1020
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-1.92918491, -0.0280227661, -0.610360622, -9.31263031e-008, -0.42261833, -0.906307817, -1, -1.84818436e-008, 1.11395778e-007, -6.37986943e-008, 0.906307817, -0.42261833))
1021
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0999999866, 0.0499999858, 0.166666672))
1022
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 1.64871836, 1.64871848))
1023
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0.0280208588, -0.0692405701, -2.28172255, 1, 8.74313955e-008, -1.51011761e-007, 8.74139445e-008, -1, 5.96059806e-008, -1.50979531e-007, -5.9603309e-008, -1))
1024
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0666666478, 0.0499999858, 0.400000006))
1025
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1026
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26445436, 0.0279273987, -0.219360352, 9.17009093e-005, 6.10351563e-005, 1, 1, -9.15518103e-005, -9.16953577e-005, 9.15462151e-005, 1, -6.10947609e-005))
1027
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.124999918, 0.174999997, 0.524999976))
1028
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1029
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(9.53674316e-007, -0.0280208588, -2.63947296, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
1030
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.124999918, 0.174999997, 0.524999976))
1031
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1032
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.00164890289, 0.028055191, -2.6114459, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
1033
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.124999918, 0.174999997, 0.524999976))
1034
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1035
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26446486, -0.000116348267, -7.67707825e-005, 9.17474172e-005, 6.10351563e-005, 1, 1, -9.15517885e-005, -9.17418729e-005, 9.15462078e-005, 1, -6.10351563e-005))
1036
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.274999917, 0.174999997, 0.524999976))
1037
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1038
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(9.53674316e-007, 1.90734863e-006, -2.63947296, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
1039
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.174999908, 0.174999997, 0.524999976))
1040
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1041
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26444912, -0.0281486511, -0.219365597, 9.17009093e-005, 6.10351563e-005, 1, 1, -9.15518103e-005, -9.16953577e-005, 9.15462151e-005, 1, -6.10947609e-005))
1042
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.124999918, 0.174999997, 0.524999976))
1043
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"White","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1044
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.2644515, -9.53674316e-005, -0.219363213, 9.17009093e-005, 6.10351563e-005, 1, 1, -9.15518103e-005, -9.16953577e-005, 9.15462151e-005, 1, -6.10947609e-005))
1045
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.174999908, 0.174999997, 0.524999976))
1046
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1047
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26446199, -0.028169632, -7.91549683e-005, 9.17474172e-005, 6.10351563e-005, 1, 1, -9.15517885e-005, -9.17418729e-005, 9.15462078e-005, 1, -6.10351563e-005))
1048
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.22499992, 0.174999997, 0.524999976))
1049
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1050
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0, 1.04353952, 0.00177240372, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069))
1051
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.22499992, 0.174999997, 0.524999976))
1052
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1053
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(0, -1.04365873, -0.000122070313, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069))
1054
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.22499992, 0.174999997, 0.524999976))
1055
Part=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.6487186, 0.659487367, 1.64871848))
1056
Partweld=weld(m,HandleA,Part,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(1.26446724, 0.0279064178, -7.39097595e-005, 9.17474172e-005, 6.10351563e-005, 1, 1, -9.15517885e-005, -9.17418729e-005, 9.15462078e-005, 1, -6.10351563e-005))
1057
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.22499992, 0.174999997, 0.524999976))
1058
HitboxA=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,1,"Black","HitboxA",Vector3.new(0.548718691, 0.200000003, 4.94615555))
1059
HitboxAweld=weld(m,HandleA,HitboxA,CFrame.new(0, 0, 0, -1, 4.31581357e-005, 1.53807946e-007, 1.4864068e-007, -0.000118941069, 0.99999994, 4.31581757e-005, 1, 0.000118941069),CFrame.new(-0.0102620125, -0.0421981812, -5.16695642, 4.37025598e-008, -1, 5.96059806e-008, -1, -4.37200036e-008, 1.51011761e-007, -1.50979531e-007, -5.9603309e-008, -1))
1060
1061
Player=game:GetService('Players').LocalPlayer
1062
Character=Player.Character
1063
Mouse=Player:GetMouse()
1064
m=Instance.new('Model',Character)
1065
it=Instance.new
1066
function nooutline(part)
1067
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
1068
end
1069
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
1070
	local fp=it("Part")
1071
	fp.formFactor=formfactor
1072
	fp.Parent=parent
1073
	fp.Reflectance=reflectance
1074
	fp.Transparency=transparency
1075
	fp.CanCollide=false
1076
	fp.Locked=true
1077
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
1078
	fp.Name=name
1079
	fp.Size=size
1080
	fp.Position=Character.Torso.Position
1081
	nooutline(fp)
1082
	fp.Material=material
1083
	fp:BreakJoints()
1084
	return fp
1085
end
1086
function mesh(Mesh,part,meshtype,meshid,offset,scale)
1087
	local mesh=it(Mesh)
1088
	mesh.Parent=part
1089
	if Mesh=="SpecialMesh" then
1090
		mesh.MeshType=meshtype
1091
		mesh.MeshId=meshid
1092
	end
1093
	mesh.Offset=offset
1094
	mesh.Scale=scale
1095
	return mesh
1096
end
1097
function weld(parent,part0,part1,c0,c1)
1098
	local weld=it("Weld")
1099
	weld.Parent=parent
1100
	weld.Part0=part0
1101
	weld.Part1=part1
1102
	weld.C0=c0
1103
	weld.C1=c1
1104
	return weld
1105
end
1106
1107
HandleB=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","HandleB",Vector3.new(0.344953746, 1.85412645, 0.344953775))
1108
HandleBweld=weld(m,Character["Left Arm"],HandleB,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994874, 0, 0, 0, 1),CFrame.new(0.0160045624, 0.213553905, -0.998093128, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1109
mesh("CylinderMesh",HandleB,"","",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 1, 0.56249994))
1110
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1111
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -2.36137581, 0.170432568, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1112
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.512499988, 0.43749997, 0.187499985))
1113
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 1.81100714, 0.344953775))
1114
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.00830316544, -2.37172699, -0.103485107, 0, 1, 0, 0, 0, -1, -1, 0, 0))
1115
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 1, 0.249999985))
1116
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1117
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.20959854, -0.170432568, 0.0103435516, 0, 0, 1, 0, -1, 0, 1, 0, 0))
1118
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.187499985, 0.56249994))
1119
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1120
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -8.22558594, 0.0514202118, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1121
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.249999985))
1122
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1123
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, 2.49073601, 0.157274723, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1124
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.0624999963))
1125
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1126
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -7.96686935, 0.0841898918, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1127
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.187499985, 0.43749997))
1128
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1129
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -0.0514202118, 8.35494423, -1, 0, 0, 0, -1, 0, 0, 0, 1))
1130
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.249999985, 0.31249997))
1131
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1132
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -2.36137581, 0.174527168, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1133
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.512499988, 0.43749997, 0.187499985))
1134
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1135
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -2.20959854, 0.256663799, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1136
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.43749997, 0.31249997))
1137
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.646788299, 0.344953775))
1138
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -2.43553925, 0.00204944611, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1139
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 1, 0.81249994))
1140
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1141
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.20959854, -0.174527168, -0.0120773315, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1142
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.187499985, 0.550000191))
1143
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.668347895))
1144
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00204944611, -0.0914173126, 0.144706249, 0, 1, 0, 1, 0, 0, 0, 0, -1))
1145
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.124999993, 0.0624999963, 1))
1146
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1147
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0914173126, -0.208867073, 0.00830316544, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1148
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.112499967, 0.0624999851))
1149
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1150
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.120735168, 1.20923233, -0.525731087, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1151
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1152
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1153
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0914173126, -0.208867073, 0.014122963, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1154
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.112499967, 0.0624999851))
1155
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1156
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, -0.120735168, 0.525731087, 0, 0, 1, 1, 0, 0, 0, 1, 0))
1157
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.37499997, 0.0624999963, 0.124999993))
1158
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1159
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.120735168, -1.36101627, -0.525731087, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1160
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1161
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.668347895))
1162
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00204944611, 0.0896949768, 0.139539242, 0, 1, 0, 1, 0, 0, 0, 0, -1))
1163
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.124999993, 0.0624999963, 1))
1164
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1165
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.137985229, 1.20923233, -0.525731087, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1166
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1167
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1168
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0896949768, -0.214044571, 0.00830316544, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1169
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.112499967, 0.0624999851))
1170
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1171
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -1.28339767, -1.13975048, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1172
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.187499985))
1173
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1174
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0896949768, -0.214044571, 0.014122963, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1175
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.112499967, 0.0624999851))
1176
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1177
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, 0.137985229, 0.525731087, 0, 0, 1, 1, 0, 0, 0, 1, 0))
1178
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.37499997, 0.0624999963, 0.124999993))
1179
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1180
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.137985229, -1.36101627, -0.525731087, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1181
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1182
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1183
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -1.39033127, -0.49296093, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1184
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 0.43749997))
1185
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1186
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -1.30409527, 1.13975048, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1187
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.187499985))
1188
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1189
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, 1.26097298, 1.13975048, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1190
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.187499985))
1191
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1192
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.137985229, -1.36101627, -0.531545162, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1193
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1194
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1195
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, -0.137985229, 0.531545162, 0, 0, 1, -1, 0, 0, 0, -1, 0))
1196
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.37499997, 0.0624999963, 0.124999993))
1197
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1198
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.236611366, 0.129356384, -1.28511906, 8.74227766e-008, 1, 0, 1, -8.74227766e-008, 0, 0, 0, -1))
1199
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1200
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1201
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.172481537, -0.0744886398, 1.35411167, 1, -8.74227766e-008, 0, 8.74227766e-008, 1, 0, 0, 0, 1))
1202
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.485999972, 0.404999793))
1203
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1204
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.129356384, -1.31789017, 0.272830009, -1, 8.74227766e-008, 0, 0, 0, -1, -8.74227766e-008, -1, 0))
1205
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1206
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1207
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.129356384, -1.31789017, -0.203848839, 1, -8.74227766e-008, 0, 0, 0, -1, 8.74227766e-008, 1, 0))
1208
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1209
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1210
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-1.28511906, -0.129356384, -0.236611366, 0, 0, -1, -1, 8.74227766e-008, 0, 8.74227766e-008, 1, 0))
1211
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1212
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1213
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-1.28511906, -0.115564346, -0.260121822, 0, 0, -1, 1, 0, 0, 0, -1, 0))
1214
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1215
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1216
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0117478371, -0.137985229, -1.45587635, -8.74227766e-008, -1, 0, -1, 8.74227766e-008, 0, 0, 0, -1))
1217
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0874999985, 0.162500009))
1218
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1219
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.137985229, -0.115241528, 1.37481308, -1, 8.74227766e-008, 0, -8.74227766e-008, -1, 0, 0, 0, 1))
1220
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.607500017, 0.506249726))
1221
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1222
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.115564346, 1.25235367, 0.291165829, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1223
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1224
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1225
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.172481537, -0.0945391655, 1.35411167, -1, 8.74227766e-008, 0, -8.74227766e-008, -1, 0, 0, 0, 1))
1226
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.485999972, 0.404999793))
1227
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1228
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.129356384, 1.25235367, 0.272830009, 1, -8.74227766e-008, 0, 0, 0, 1, -8.74227766e-008, -1, 0))
1229
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1230
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1231
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.129356384, 1.25235367, -0.203848839, -1, 8.74227766e-008, 0, 0, 0, 1, 8.74227766e-008, 1, 0))
1232
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1233
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1234
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.115564346, -1.31789017, -0.2256217, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1235
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1236
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1237
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.137985229, -1.3282423, 0.817209721, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1238
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1239
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1240
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.120735168, 1.24200726, 0.817209721, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1241
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1242
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.517430663))
1243
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -1.28339767, -0.848265171, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1244
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 1))
1245
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1246
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.137985229, 1.24200726, 0.817209721, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1247
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1248
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.517430663))
1249
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -1.36963272, 0.848265171, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1250
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 1))
1251
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.517430663))
1252
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, 1.19715977, 0.848265171, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1253
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 1))
1254
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1255
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.120735168, -1.3282423, 0.817209721, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1256
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1257
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1258
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -7.68573761, 0.28771162, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1259
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.0624999963, 0.249999985))
1260
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1261
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -0.234244823, 8.07380676, -1, 0, 0, 0, -1, 0, 0, 0, 1))
1262
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.187499985, 0.43749997))
1263
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1264
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -0.28771162, -7.59949827, 0.999999881, 0, 0, 0, -0.99999994, 0, 0, 0, -0.99999994))
1265
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.249999985, 0.43749997))
1266
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1267
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -7.77197647, 0.234244823, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1268
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.43749997))
1269
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1270
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -2.09059143, 0.360152721, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1271
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.249999985, 0.31249997))
1272
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1273
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -7.92375565, 0.21182394, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1274
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.31249997))
1275
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1276
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -7.60984039, 0.20319891, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1277
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.49999997, 0.249999985))
1278
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1279
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -0.320485592, 7.77197647, -1, 0, 0, 0, -1, 0, 0, 0, 1))
1280
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.0624999963, 0.43749997))
1281
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1282
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -0.28771162, 7.92375565, -1, 0, 0, 0, -1, 0, 0, 0, 1))
1283
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.124999993, 0.43749997))
1284
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1285
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.9940033, -0.330836773, 0.0103435516, 0, 0, 1, 0, -1, 0, 1, 0, 0))
1286
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 1, 0.56249994))
1287
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1288
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, 1.93018341, 0.466011047, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1289
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.249999985))
1290
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1291
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, 1.82152367, 0.369420528, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1292
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.31249997))
1293
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.646788299, 0.344953775))
1294
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00204944611, -1.7887516, 0.0983161926, 0, 1, 0, 0, 0, -1, -1, 0, 0))
1295
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.9375, 1, 0.0624999963))
1296
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1297
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.82152367, -0.240066051, -0.0103435516, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1298
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.31249997, 0.43749997, 0.56249994))
1299
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1300
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.9940033, -0.336652279, -0.0103435516, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1301
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 1, 0.56249994))
1302
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1303
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, 1.60592842, 0.186600685, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1304
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.124999993))
1305
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 1.81100714, 0.344953775))
1306
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.00830316544, -2.37172699, 0.0862426758, 0, 1, 0, 0, 0, -1, -1, 0, 0))
1307
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 1, 0.249999985))
1308
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1309
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -0.329720974, 7.77231407, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1310
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.0624999963, 0.43749997))
1311
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1312
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.02676964, -0.293530464, -0.0103435516, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1313
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.124999993, 0.74999994, 0.56249994))
1314
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.646788299, 0.344953775))
1315
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -1.7887516, 0.00204944611, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1316
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 1, 0.9375))
1317
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1318
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, 1.71459007, 0.260756493, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1319
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.31249997))
1320
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.646788299, 0.344953775))
1321
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.00204944611, -1.7887516, 0.117282867, 0, -1, 0, 0, 0, -1, 1, 0, 0))
1322
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.9375, 1, 0.0624999963))
1323
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1324
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.71459007, -0.186600685, -0.0103435516, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1325
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.31249997, 0.124999993, 0.56249994))
1326
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1327
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.93018341, -0.28771162, 0.0103435516, 0, 0, 1, 0, -1, 0, 1, 0, 0))
1328
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.31249997, 0.74999994, 0.56249994))
1329
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1330
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, 1.71459007, 0.256663799, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1331
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.31249997))
1332
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1333
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, 1.60592842, 0.180776119, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1334
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.124999993))
1335
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1336
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.02676964, -0.28771162, 0.0103435516, 0, 0, 1, 0, -1, 0, 1, 0, 0))
1337
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.124999993, 0.74999994, 0.56249994))
1338
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1339
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.71459007, -0.180776119, 0.0103435516, 0, 0, 1, 0, -1, 0, 1, 0, 0))
1340
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.31249997, 0.124999993, 0.56249994))
1341
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1342
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.124181747, -0.100353718, 1.37481308, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1343
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.607500017, 0.506249726))
1344
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1345
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -2.02676964, 0.466011047, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1346
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.124999993, 0.249999985))
1347
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1348
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.115564346, 1.25235367, 0.272830009, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1349
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1350
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1351
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.124181747, -0.140022755, -1.20060539, -1, 0, 0, 0, 1, 0, 0, 0, -1))
1352
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.354374975, 0.506249726))
1353
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1354
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.115564346, -1.31789017, -0.203848839, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1355
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1356
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1357
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.124181747, -0.158359051, -1.20060539, 1, 0, 0, 0, -1, 0, 0, 0, -1))
1358
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.354374975, 0.506249726))
1359
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1360
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-1.28511906, -0.115564346, 0.236611366, 0, 0, -1, 1, 0, 0, 0, -1, 0))
1361
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1362
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1363
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.15868187, -0.129035473, -1.21440411, 1, 0, 0, 0, -1, 0, 0, 0, -1))
1364
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.283499986, 0.404999793))
1365
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1366
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.115564346, -1.31789017, 0.272830009, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1367
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1368
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1369
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -1.51969147, 0.170432568, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1370
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.0624999963))
1371
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.388072997))
1372
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -1.28339767, -0.388392925, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1373
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.43749997, 1))
1374
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1375
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0117478371, -0.15868187, -1.21440411, 0, 1, 0, 1, 0, 0, 0, 0, -1))
1376
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.405000001, 0.0904999897, 0.405000001))
1377
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1378
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, 0.120735168, 0.531545162, 0, 0, 1, -1, 0, 0, 0, -1, 0))
1379
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.37499997, 0.0624999963, 0.124999993))
1380
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1381
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -1.28339767, -0.585016251, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1382
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.81249994, 0.0624999963))
1383
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1384
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00830316544, 0.127635956, -1.5731554, 0, -1, 0, -1, 0, 0, -0, -0, -1))
1385
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1386
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1387
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -1.51969147, 0.174527168, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1388
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.0624999963))
1389
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.517430663))
1390
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -1.28339767, -0.854077816, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1391
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 1))
1392
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1393
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, 0.120735168, 0.562595844, 0, 0, 1, -1, 0, 0, 0, -1, 0))
1394
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.49999997, 0.0624999963, 0.0624999963))
1395
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1396
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.120735168, -1.36101627, -0.531545162, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1397
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1398
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.388072997))
1399
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -1.28339767, -0.375680447, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1400
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.43749997, 1))
1401
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1402
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -1.37998486, 0.256663799, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1403
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.124999993, 0.43749997))
1404
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.474311411, 0.344953775))
1405
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -8.17039299, 0.00204944611, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1406
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 1, 0.0624999963))
1407
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1408
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -1.41275597, 0.229718208, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1409
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 0.249999985))
1410
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1411
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0, 0.625231504, -1.04904175e-005, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1412
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(0.974999964, 0.849999964, 0.675000012))
1413
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1414
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00598144531, -0.108636856, 0.648684263, -0.342020124, 0.939692616, 0, 0.939692616, 0.342020124, 0, 0, 0, -1))
1415
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1416
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1417
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, 1.15403748, 0.256659985, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1418
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 0.43749997))
1419
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1420
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00267028809, -0.106860161, 0.648684263, -0.422618151, -0.906307757, 0, -0.906307757, 0.422618151, 0, 0, 0, -1))
1421
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1422
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1423
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00665950775, -0.105759621, 0.648684263, 0.42261824, 0.906307697, 0, 0.906307697, -0.42261824, 0, 0, 0, -1))
1424
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1425
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1426
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0, -1.04572105, -1.04904175e-005, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1427
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.56249994, 0.74999994))
1428
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1429
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00364732742, -0.107065201, 0.648684263, 0.342020214, -0.939692557, 0, -0.939692557, -0.342020214, 0, 0, 0, -1))
1430
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1431
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1432
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00272464752, -0.103487015, 0.646622419, 0, 1, 0, 1, 0, 0, 0, 0, -1))
1433
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.124999993, 0.0624999963, 0.249999985))
1434
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1435
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -2.02676964, 0.460892677, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1436
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.124999993, 0.249999985))
1437
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1438
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.00207138062, 0.549334526, -0.000723838806, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1439
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.81249994))
1440
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1441
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.00207138062, 0.700427771, -0.000723838806, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1442
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.81249994))
1443
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1444
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.119354248, 1.20991611, -0.531184673, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1445
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1446
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1447
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -8.07449722, 0.104915142, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1448
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.56249994))
1449
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1450
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0, 0.819095135, -1.04904175e-005, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1451
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.74999994, 0.81249994))
1452
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1453
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -1.28304958, -0.579558372, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1454
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.81249994, 0.0624999963))
1455
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1456
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.139364243, 1.20991611, -0.531184673, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1457
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.124999993))
1458
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1459
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.130399704, 1.25269699, -0.226321697, 1, -8.74227766e-008, 0, 0, 0, 1, -8.74227766e-008, -1, 0))
1460
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1461
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1462
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-1.28511906, -0.130399704, 0.259450436, 0, 0, -1, -1, 8.74227766e-008, 0, 8.74227766e-008, 1, 0))
1463
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1464
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1465
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.139364243, -0.100700855, 1.37480354, 1, -8.74227766e-008, 0, 8.74227766e-008, 1, 0, 0, 0, 1))
1466
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.607500017, 0.506249726))
1467
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1468
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.114528656, 1.25269699, -0.226321697, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1469
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1470
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1471
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, 0.139364243, 0.557480812, 0, 0, 1, 1, 0, 0, 0, 1, 0))
1472
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.49999997, 0.0624999963, 0.0624999963))
1473
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1474
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.011068821, -0.122804642, -1.45552635, 0, 1, 0, 1, 0, 0, 0, 0, -1))
1475
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0874999985, 0.162500009))
1476
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1477
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.114528656, -1.31754303, 0.291165829, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1478
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1479
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1480
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.130399704, -1.31754303, -0.226321697, -1, 8.74227766e-008, 0, 0, 0, -1, -8.74227766e-008, -1, 0))
1481
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1482
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1483
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.011068821, -0.122804642, -1.2002573, 0, 1, 0, 1, 0, 0, 0, 0, -1))
1484
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.506249964, 0.113124982, 0.506249964))
1485
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1486
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -0.202844143, -7.40597677, 0.999999881, 0, 0, 0, -0.99999994, 0, 0, 0, -0.99999994))
1487
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.249999985, 0.68749994))
1488
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1489
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -1.30443859, 1.14520788, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1490
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.187499985))
1491
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1492
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -1.28304958, -1.14520788, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1493
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.187499985))
1494
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1495
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -0.147681713, 8.22558403, -1, 0, 0, 0, -1, 0, 0, 0, 1))
1496
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.31249997, 0.43749997))
1497
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1498
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.119354248, -1.32858467, 0.822336197, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1499
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1500
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1501
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, -0.119354248, 0.557480812, 0, 0, 1, 1, 0, 0, 0, 1, 0))
1502
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.49999997, 0.0624999963, 0.0624999963))
1503
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.517430663))
1504
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -1.36928463, 0.854077816, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1505
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 1))
1506
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.366513371, 0.366513401))
1507
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -1.28304958, 0.00272464752, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1508
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.687500238, 1, 1))
1509
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1510
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -1.38032341, 0.260767937, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1511
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.124999993, 0.43749997))
1512
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1513
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -1.41274834, 0.22357893, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1514
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 0.249999985))
1515
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1516
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.130399704, -1.31754303, 0.291165829, 1, -8.74227766e-008, 0, 0, 0, -1, 8.74227766e-008, 1, 0))
1517
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1518
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1519
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.122804642, -0.114547253, 1.37480354, -1, 0, 0, 0, -1, 0, 0, 0, 1))
1520
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.607500017, 0.506249726))
1521
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1522
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -1.39067554, -0.502212524, 1, 0, 0, 0, 0, -1, 0, 1, 0))
1523
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 0.43749997))
1524
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1525
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.157987595, -0.108965397, -1.21406174, -1, 0, 0, 0, 1, 0, 0, 0, -1))
1526
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.283499986, 0.404999793))
1527
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1528
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.157987595, -0.0938639641, 1.35411167, -1, 0, 0, 0, -1, 0, 0, 0, 1))
1529
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.485999972, 0.404999793))
1530
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1531
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.157987595, -0.0744695663, 1.35411167, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1532
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.485999972, 0.404999793))
1533
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1534
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -7.61087227, 0.215218544, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1535
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.49999997, 0.249999985))
1536
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 4.57678843, 0.344953775))
1537
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -4.99874783, 0.00272464752, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1538
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 1, 0.9375))
1539
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1540
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.237294197, 0.114528656, -1.28511906, 0, -1, 0, -1, 0, 0, -0, -0, -1))
1541
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1542
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1543
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.114528656, 1.25269699, -0.204157829, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1544
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1545
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1546
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.259450436, 0.130399704, -1.28511906, 8.74227766e-008, 1, 0, 1, -8.74227766e-008, 0, 0, 0, -1))
1547
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1548
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1549
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -0.293530464, -7.59949827, -0.999999881, 0, 0, 0, 0.99999994, 0, 0, 0, -0.99999994))
1550
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.249999985, 0.43749997))
1551
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1552
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -7.9234066, 0.217978477, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1553
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.31249997))
1554
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1555
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -0.215218544, -7.40597677, -0.999999881, 0, 0, 0, 0.99999994, 0, 0, 0, -0.99999994))
1556
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.249999985, 0.68749994))
1557
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1558
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -7.77197647, 0.240066051, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1559
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.43749997))
1560
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1561
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -8.22558403, 0.0565404892, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1562
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.249999985))
1563
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1564
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -0.293530464, 7.92375565, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1565
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.124999993, 0.43749997))
1566
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1567
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0103435516, -0.240066051, 8.07380676, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1568
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.187499985, 0.43749997))
1569
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1570
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -8.07449722, 0.110336781, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1571
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.56249994))
1572
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1573
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -0.157261372, 8.22558403, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1574
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.31249997, 0.43749997))
1575
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1576
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00830316544, -0.144189835, -1.57418728, 0, -1, 0, -1, 0, 0, -0, -0, -1))
1577
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1578
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1579
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -7.96686935, 0.0882806778, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1580
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.187499985, 0.43749997))
1581
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1582
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, 1.17542744, -0.455316544, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1583
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 0.68749994))
1584
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1585
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.139364243, -0.158734798, -1.2002573, 1, -8.74227766e-008, 0, -8.74227766e-008, -1, 0, 0, 0, -1))
1586
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.354374975, 0.506249726))
1587
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1588
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.139364243, -1.32858467, 0.822336197, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1589
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1590
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1591
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.139364243, -0.139313221, -1.2002573, -1, 8.74227766e-008, 0, 8.74227766e-008, 1, 0, 0, 0, -1))
1592
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.113124944, 0.354374975, 0.506249726))
1593
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1594
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -7.68573761, 0.293530464, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1595
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.0624999963, 0.249999985))
1596
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1597
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, 1.26166248, 1.14520788, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1598
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.0624999963, 0.187499985))
1599
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.517430663))
1600
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, 1.19681168, 0.854077816, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1601
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 1))
1602
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1603
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, -0.0565404892, 8.35459518, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1604
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.249999985, 0.31249997))
1605
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1606
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.103485107, -3.29895449, -0.00830316544, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1607
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.249999985, 0.249999985))
1608
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.646788299, 0.344953775))
1609
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -7.61087227, 0.00272464752, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1610
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 1, 0.9375))
1611
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1612
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, 1.17542744, 0.299457073, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1613
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 0.68749994))
1614
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1615
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.173856735, -0.129733562, -1.21406174, 1, -8.74227766e-008, 0, -8.74227766e-008, -1, 0, 0, 0, -1))
1616
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.283499986, 0.404999793))
1617
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1618
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, 1.17542744, 0.304910183, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1619
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 0.68749994))
1620
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1621
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, 2.49038315, 0.147681713, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1622
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.43749997, 0.43749997, 0.0624999963))
1623
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1624
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0862426758, -3.29895449, -0.00830316544, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1625
mesh("SpecialMesh",Part,Enum.MeshType.Head,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.249999985, 0.249999985))
1626
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.646788299, 0.344953775))
1627
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.00272464752, -2.43657112, 0.0758972168, 0, 1, 0, 0, 0, -1, -1, 0, 0))
1628
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.81249994, 1, 0.0624999963))
1629
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1630
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.66286087, 0.147681713, -0.0110378265, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1631
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.0624999963, 0.43749997))
1632
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1633
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -2.20959854, 0.260756493, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1634
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.43749997, 0.31249997))
1635
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1636
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, 1.82152367, 0.360152721, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1637
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.31249997))
1638
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1639
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.93018341, -0.293530464, -0.0103435516, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1640
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.31249997, 0.74999994, 0.56249994))
1641
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1642
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.82152367, -0.234244823, 0.0103435516, 0, 0, 1, 0, -1, 0, 1, 0, 0))
1643
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.31249997, 0.43749997, 0.56249994))
1644
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1645
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0103435516, -2.09059143, 0.369420528, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1646
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.249999985, 0.31249997))
1647
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1648
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.09059143, -0.229718208, -0.0103435516, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1649
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.49999997, 0.56249994))
1650
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1651
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, 1.93018341, 0.460892677, -1, 0, 0, 0, 0, 1, 0, 1, 0))
1652
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.31249997, 0.249999985))
1653
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1654
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, 1.17542744, -0.449858665, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1655
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.187499985, 0.68749994))
1656
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1657
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.173856735, -0.108965397, -1.21406174, -1, 8.74227766e-008, 0, 8.74227766e-008, 1, 0, 0, 0, -1))
1658
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0904999524, 0.283499986, 0.404999793))
1659
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1660
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.09059143, -0.223897457, 0.0103435516, 0, 0, 1, 0, -1, 0, 1, 0, 0))
1661
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.49999997, 0.56249994))
1662
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1663
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.011068821, -0.173856735, -1.21406174, -8.74227766e-008, -1, 0, -1, 8.74227766e-008, 0, 0, 0, -1))
1664
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.405000001, 0.0904999897, 0.405000001))
1665
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1666
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.119354248, 1.24234486, 0.822336197, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1667
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1668
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1669
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.259450436, 0.114528656, -1.28511906, 0, -1, 0, -1, 0, 0, -0, -0, -1))
1670
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.249999985, 0.0624999963, 0.124999993))
1671
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1672
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.011068821, -0.139364243, -1.2002573, -8.74227766e-008, -1, 0, -1, 8.74227766e-008, 0, 0, 0, -1))
1673
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.506249964, 0.113124982, 0.506249964))
1674
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1675
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.0110378265, 1.15403748, 0.260767937, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1676
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.68749994, 0.31249997, 0.43749997))
1677
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1678
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-1.04904175e-005, -0.103485107, 0.646622419, 8.74227766e-008, -1, 0, -1, -8.74227766e-008, 0, 0, 0, -1))
1679
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.124999993, 0.0624999963, 0.249999985))
1680
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1681
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.130399704, 1.25269699, 0.291165829, -1, 8.74227766e-008, 0, 0, 0, 1, 8.74227766e-008, 1, 0))
1682
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.0624999963, 0.0624999963))
1683
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1684
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(1.28511906, -0.139364243, 0.562925816, 0, 0, 1, -1, 0, 0, 0, -1, 0))
1685
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.49999997, 0.0624999963, 0.0624999963))
1686
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Toothpaste","Part",Vector3.new(0.344953746, 0.344953746, 0.495871037))
1687
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.139364243, 1.24234486, 0.822336197, 1, 0, 0, 0, 0, 1, 0, -1, 0))
1688
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0624999963, 0.249999985, 1))
1689
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.344953746, 0.344953775))
1690
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(2.66286087, -0.157261372, -0.0110378265, 0, 0, 1, 0, 1, 0, -1, 0, 0))
1691
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.56249994, 0.0624999963, 0.43749997))
1692
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Pastel blue-green","Part",Vector3.new(0.344953746, 0.646788299, 0.344953775))
1693
Partweld=weld(m,HandleB,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(0.00204944611, -2.43553925, 0.0965919495, 0, -1, 0, 0, 0, -1, 1, 0, 0))
1694
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.81249994, 1, 0.0624999963))
1695
HitboxB=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Pastel blue-green","HitboxB",Vector3.new(0.344953746, 4.62678862, 0.674953699))
1696
HitboxBweld=weld(m,HandleB,HitboxB,CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, -1, -0, -1, 0),CFrame.new(-0.0110378265, -4.6137476, 0.000301837921, -1, 0, 0, 0, 0, -1, -0, -1, -0))
1697
1698
function attackone()
1699
	attack=true
1700
	con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,2000000000,2000000000,math.random(2000000000,2000000000),"Normal",RootPart,.2,1) end) 
1701
	for i=0,1,0.1 do
1702
		swait()
1703
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(130),math.rad(0),math.rad(20)),.3)
1704
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
1705
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-80)),.3)
1706
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(80)),.3)
1707
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1708
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(30),math.rad(0),math.rad(0)),.3)
1709
	end
1710
	so("http://www.roblox.com/asset/?id=233856140",HitboxA,1,1) 
1711
	so("http://www.roblox.com/asset/?id=234365549",HitboxA,1,1) 
1712
	for i=0,1,0.1 do
1713
		swait()
1714
		local blcf = HitboxA.CFrame*CFrame.new(0,.5,0)
1715
if scfr and (HitboxA.Position-scfr.p).magnitude > .1 then
1716
local h = 5
1717
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)
1718
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1719
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)
1720
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1721
scfr = blcf
1722
elseif not scfr then
1723
scfr = blcf
1724
end
1725
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(30),math.rad(0),math.rad(20)),.3)
1726
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
1727
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(80)),.3)
1728
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(10),math.rad(-80)),.3)
1729
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(-40),math.rad(-30),math.rad(0)),.3)
1730
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(30),math.rad(0),math.rad(0)),.3)
1731
	end
1732
	attack=false
1733
	con1:disconnect()
1734
end
1735
1736
function attacktwo()
1737
	attack=true
1738
	con1=HitboxB.Touched:connect(function(hit) Damagefunc(hit,2000000000,2000000000,math.random(2000000000,2000000000),"Normal",RootPart,.2,1) end) 
1739
	for i=0,1,0.1 do
1740
		swait()
1741
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
1742
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(130),math.rad(0),math.rad(-20)),.3)
1743
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(80)),.3)
1744
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(-80)),.3)
1745
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(30),math.rad(0),math.rad(0)),.3)
1746
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1747
	end
1748
	so("http://www.roblox.com/asset/?id=233856146",HitboxB,1,1) 
1749
	so("http://www.roblox.com/asset/?id=234365573",HitboxB,1,1) 
1750
	for i=0,1,0.1 do
1751
		swait()
1752
			local blcf = HitboxB.CFrame*CFrame.new(0,.5,0)
1753
if scfr and (HitboxB.Position-scfr.p).magnitude > .1 then
1754
local h = 5
1755
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)
1756
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1757
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)
1758
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1759
scfr = blcf
1760
elseif not scfr then
1761
scfr = blcf
1762
end
1763
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(20)),.3)
1764
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(30),math.rad(0),math.rad(-50)),.3)
1765
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(-80)),.3)
1766
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(-10),math.rad(80)),.3)
1767
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(30),math.rad(-30),math.rad(0)),.3)
1768
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(-40),math.rad(0),math.rad(0)),.3)
1769
	end
1770
	attack=false
1771
	con1:disconnect()
1772
end
1773
1774
function spin()
1775
attack=true
1776
con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,2000000000,2000000000,math.random(2000000000,2000000000),"Normal",RootPart,.2,1) end) 
1777
con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,2000000000,2000000000,math.random(2000000000,2000000000),"Normal",RootPart,.2,1) end) 
1778
for i=0,1,0.2 do
1779
swait()
1780
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
1781
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
1782
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1783
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1784
end
1785
for i=0,1,1 do
1786
so("http://roblox.com/asset/?id=231917987",Torso,1,1)
1787
swait()
1788
for i=0,1,0.1 do
1789
swait()
1790
local blcf = HitboxA.CFrame*CFrame.new(0,.5,0)
1791
if scfr and (HitboxA.Position-scfr.p).magnitude > .1  then
1792
local h = 5
1793
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)
1794
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1795
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)
1796
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1797
scfr = blcf
1798
elseif not scfr then
1799
scfr = blcf
1800
end
1801
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
1802
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
1803
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,-1,-1)*angles(math.rad(-80),math.rad(0),math.rad(0)),.3)
1804
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,-1,-1)*angles(math.rad(-80),math.rad(0),math.rad(0)),.3)
1805
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,5)*euler(0,-1.5,6*i),.3)
1806
end
1807
end
1808
con1:disconnect()
1809
con2:disconnect()
1810
attack=false
1811
end
1812
1813
function kick()
1814
attack=true
1815
con1=LeftLeg.Touched:connect(function(hit) Damagefunc(hit,2000000000,2000000000,math.random(2000000000,2000000000),"Normal",RootPart,.2,1) end) 
1816
Humanoid.WalkSpeed = 0
1817
for i=0,1,0.2 do
1818
swait()
1819
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-20),math.rad(0),math.rad(30)),.3)
1820
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-20),math.rad(0),math.rad(-30)),.3)
1821
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(0)),.3)
1822
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1823
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(-90),math.rad(-90),math.rad(0)),.3)
1824
end
1825
so("http://roblox.com/asset/?id=200632211",LeftLeg,1,1) 
1826
for i=0,1,0.1 do
1827
swait()
1828
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-60),math.rad(0),math.rad(30)),.3)
1829
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-60),math.rad(0),math.rad(-30)),.3)
1830
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
1831
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1832
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(100),math.rad(-90),math.rad(0)),.3)
1833
end
1834
attack=false
1835
Humanoid.WalkSpeed = 110
1836
con1:disconnect()
1837
end
1838
1839
function DualStab()
1840
attack=true
1841
con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,2000000000,2000000000,math.random(2000000000,2000000000),"Normal",RootPart,.2,1) end) 
1842
con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,2000000000,2000000000,math.random(2000000000,2000000000),"Normal",RootPart,.2,1) end) 
1843
for i=0,1,0.2 do
1844
swait()
1845
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
1846
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
1847
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1848
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1849
end
1850
	so("http://www.roblox.com/asset/?id=233856146",HitboxA,1,1) 
1851
	so("http://www.roblox.com/asset/?id=234365573",HitboxB,1,1) 
1852
for i=0,1,0.1 do
1853
swait()
1854
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(130),math.rad(90)),.3)
1855
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(-130),math.rad(-90)),.3)
1856
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
1857
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1858
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,-1,-1)*angles(math.rad(-120),math.rad(0),math.rad(0)),.3)
1859
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,-1,-1)*angles(math.rad(-120),math.rad(0),math.rad(0)),.3)
1860
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1861
Torso.Velocity=Head.CFrame.lookVector*50
1862
end
1863
con1:disconnect()
1864
con2:disconnect()
1865
attack=false
1866
end
1867
1868
function DualSlash()
1869
attack=true
1870
for i=0,1,0.1 do
1871
swait()
1872
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(90),math.rad(50),math.rad(0)),.3)
1873
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(90),math.rad(-50),math.rad(0)),.3)
1874
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(0)),.3)
1875
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1876
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
1877
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
1878
end
1879
con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,10,20,math.random(20,40),"Normal",RootPart,.2,1) end) 
1880
con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,10,20,math.random(20,40),"Normal",RootPart,.2,1) end) 
1881
so("http://www.roblox.com/asset/?id=233856146",HitboxA,1,1) 
1882
so("http://www.roblox.com/asset/?id=234365573",HitboxB,1,1) 
1883
for i=0,1,0.1 do
1884
swait()
1885
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(20),math.rad(60)),.3)
1886
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(-20),math.rad(-60)),.3)
1887
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1888
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1889
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,-1,-1)*angles(math.rad(-60),math.rad(0),math.rad(0)),.3)
1890
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,-1,-1)*angles(math.rad(-60),math.rad(0),math.rad(0)),.3)
1891
end
1892
con1:disconnect()
1893
con2:disconnect()
1894
attack=false
1895
end
1896
1897
mouse.Button1Down:connect(function()
1898
	if attack==false then
1899
		if attacktype==1 then
1900
			attack=true
1901
			attacktype=2
1902
			attackone()
1903
		elseif attacktype==2 then
1904
			attack=true
1905
			attacktype=1
1906
			attacktwo()
1907
		end
1908
	end
1909
end)
1910
1911
mouse.KeyDown:connect(function(k)
1912
	k=k:lower()
1913
	if k=='q' then
1914
		if attack==false then
1915
			spin()
1916
		end
1917
		elseif k=='e' then
1918
		if attack==false then
1919
			kick()
1920
		end
1921
		elseif k=='r' then
1922
		if attack==false then
1923
			DualStab()
1924
		end
1925
		elseif k=='f' then
1926
		if attack==false then
1927
			DualSlash()
1928
	end
1929
	end
1930
end)
1931
1932
local sine = 0
1933
local change = 1
1934
local val = 0
1935
1936
while true do
1937
swait()
1938
sine = sine + change
1939
local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude 
1940
local velderp=RootPart.Velocity.y
1941
hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
1942
if equipped==true or equipped==false then
1943
if attack==false then
1944
idle=idle+1
1945
else
1946
idle=0
1947
end
1948
if idle>=500 then
1949
if attack==false then
1950
--Sheath()
1951
end
1952
end
1953
if RootPart.Velocity.y > 1 and hitfloor==nil then 
1954
Anim="Jump"
1955
if attack==false then
1956
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1957
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
1958
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(20),math.rad(0),math.rad(30)),.3)
1959
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(20),math.rad(0),math.rad(-30)),.3)
1960
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1961
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
1962
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
1963
end
1964
elseif RootPart.Velocity.y < -1 and hitfloor==nil then 
1965
Anim="Fall"
1966
if attack==false then
1967
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(10),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,cf(1.5,0.5,0)*euler(math.rad(-50),math.rad(0),math.rad(30)),.3)
1970
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-50),math.rad(0),math.rad(-30)),.3)
1971
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1972
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1973
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1974
end
1975
elseif torvel<1 and hitfloor~=nil then
1976
Anim="Idle"
1977
if attack==false then
1978
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
1979
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(40)),.3)
1980
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(-20),math.rad(0),math.rad(20)),.3)
1981
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(10),math.rad(20),math.rad(-30)),.3)
1982
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-10)),.3)
1983
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1984
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1985
end
1986
elseif torvel>2 and torvel<22 and hitfloor~=nil then
1987
Anim="Walk"
1988
if attack==false then
1989
change=3
1990
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1991
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1992
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(-20),math.rad(0),math.rad(30)),.3)
1993
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-20),math.rad(0),math.rad(-30)),.3)
1994
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1995
HandleBweld.C0=clerp(HandleBweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1996
HandleAweld.C0=clerp(HandleAweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1997
end
1998
elseif torvel>=22 and hitfloor~=nil then
1999
Anim="Run"
2000
if attack==false then
2001
end
2002
end
2003
end
2004
end