View difference between Paste ID: WDdQ0Hec and hjA3ZDUw
SHOW: | | - or go back to the newest paste.
1
Player=game:GetService("Players").LocalPlayer
2
Character=Player.Character 
3
PlayerGui=Player.PlayerGui
4
Backpack=Player.Backpack 
5
Torso=Character.Torso 
6
Head=Character.Head 
7
Humanoid=Character.Humanoid
8
m=Instance.new('Model',Character)
9
LeftArm=Character["Left Arm"] 
10
LeftLeg=Character["Left Leg"] 
11
RightArm=Character["Right Arm"] 
12
RightLeg=Character["Right Leg"] 
13
LS=Torso["Left Shoulder"] 
14
LH=Torso["Left Hip"] 
15
RS=Torso["Right Shoulder"] 
16
RH=Torso["Right Hip"] 
17
Face = Head.face
18
Neck=Torso.Neck
19
it=Instance.new
20
attacktype=1
21
vt=Vector3.new
22
cf=CFrame.new
23
euler=CFrame.fromEulerAnglesXYZ
24
angles=CFrame.Angles
25
cloaked=false
26
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
27
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
28
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
29
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
30
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
31
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
32
RootPart=Character.HumanoidRootPart
33
RootJoint=RootPart.RootJoint
34
RootCF=euler(-1.57,0,3.14)
35
attack = false 
36
attackdebounce = false 
37
deb=false
38
equipped=true
39
hand=false
40
MMouse=nil
41
combo=0
42
mana=0
43
trispeed=.2
44
attackmode='none'
45
local idle=0
46
local Anim="Idle"
47
local Effects={}
48
local gun=false
49
local shoot=false
50
player=nil 
51
mana=0
52
53
mouse=Player:GetMouse()
54
--save shoulders 
55
RSH, LSH=nil, nil 
56
--welds 
57
RW, LW=Instance.new("Weld"), Instance.new("Weld") 
58
RW.Name="Right Shoulder" LW.Name="Left Shoulder"
59
LH=Torso["Left Hip"]
60
RH=Torso["Right Hip"]
61
TorsoColor=Torso.BrickColor
62
function NoOutline(Part)
63
Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
64
end
65
player=Player 
66
ch=Character
67
RSH=ch.Torso["Right Shoulder"] 
68
LSH=ch.Torso["Left Shoulder"] 
69
-- 
70
RSH.Parent=nil 
71
LSH.Parent=nil 
72
-- 
73
RW.Name="Right Shoulder"
74
RW.Part0=ch.Torso 
75
RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) 
76
RW.C1=cf(0, 0.5, 0) 
77
RW.Part1=ch["Right Arm"] 
78
RW.Parent=ch.Torso 
79
-- 
80
LW.Name="Left Shoulder"
81
LW.Part0=ch.Torso 
82
LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) 
83
LW.C1=cf(0, 0.5, 0) 
84
LW.Part1=ch["Left Arm"] 
85
LW.Parent=ch.Torso 
86
87
	Player=game:GetService('Players').LocalPlayer
88
	Character=Player.Character
89
	Mouse=Player:GetMouse()
90
	m=Instance.new('Model',Character)
91
92
93
	local function weldBetween(a, b)
94
	    local weldd = Instance.new("ManualWeld")
95
	    weldd.Part0 = a
96
	    weldd.Part1 = b
97
	    weldd.C0 = CFrame.new()
98
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
99
	    weldd.Parent = a
100
	    return weldd
101
	end
102
	
103
	function swait(num)
104
    if num==0 or num==nil then
105
    game:service'RunService'.Stepped:wait(0)
106
    else
107
    for i=0,num do
108
    game:service'RunService'.Stepped:wait(0)
109
    end
110
    end
111
	    end
112
	
113
	function nooutline(part)
114
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
115
	end
116
	
117
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
118
		local fp=it("Part")
119
		fp.formFactor=formfactor
120
		fp.Parent=parent
121
		fp.Reflectance=reflectance
122
		fp.Transparency=transparency
123
		fp.CanCollide=false
124
		fp.Locked=true
125
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
126
		fp.Name=name
127
		fp.Size=size
128
		fp.Position=Character.Torso.Position
129
		nooutline(fp)
130
		fp.Material=material
131
		fp:BreakJoints()
132
		return fp
133
	end
134
	
135
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
136
		local mesh=it(Mesh)
137
		mesh.Parent=part
138
		if Mesh=="SpecialMesh" then
139
			mesh.MeshType=meshtype
140
			mesh.MeshId=meshid
141
		end
142
		mesh.Offset=offset
143
		mesh.Scale=scale
144
		return mesh
145
	end
146
	
147
	function weld(parent,part0,part1,c0,c1)
148
		local weld=it("Weld")
149
		weld.Parent=parent
150
		weld.Part0=part0
151
		weld.Part1=part1
152
		weld.C0=c0
153
		weld.C1=c1
154
		return weld
155
	end
156
	
157
	
158
local function CFrameFromTopBack(at, top, back)
159
local right = top:Cross(back)
160
return CFrame.new(at.x, at.y, at.z,
161
right.x, top.x, back.x,
162
right.y, top.y, back.y,
163
right.z, top.z, back.z)
164
end
165
166
function Triangle(a, b, c)
167
local edg1 = (c-a):Dot((b-a).unit)
168
local edg2 = (a-b):Dot((c-b).unit)
169
local edg3 = (b-c):Dot((a-c).unit)
170
if edg1 <= (b-a).magnitude and edg1 >= 0 then
171
a, b, c = a, b, c
172
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
173
a, b, c = b, c, a
174
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
175
a, b, c = c, a, b
176
else
177
assert(false, "unreachable")
178
end
179
 
180
local len1 = (c-a):Dot((b-a).unit)
181
local len2 = (b-a).magnitude - len1
182
local width = (a + (b-a).unit*len1 - c).magnitude
183
 
184
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
185
 
186
local list = {}
187
188
local Color = BrickColor.new("Dark grey")
189
 
190
if len1 > 0.01 then
191
local w1 = Instance.new('WedgePart', m)
192
game:GetService("Debris"):AddItem(w1,5)
193
w1.Material = "SmoothPlastic"
194
w1.FormFactor = 'Custom'
195
w1.BrickColor = BrickColor.new(Color)
196
w1.Transparency = 0
197
w1.Reflectance = 0
198
w1.Material = "SmoothPlastic"
199
w1.CanCollide = false
200
NoOutline(w1)
201
local sz = Vector3.new(0.2, width, len1)
202
w1.Size = sz
203
local sp = Instance.new("SpecialMesh",w1)
204
sp.MeshType = "Wedge"
205
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
206
w1:BreakJoints()
207
w1.Anchored = true
208
w1.Parent = workspace
209
w1.Transparency = 0.7
210
table.insert(Effects,{w1,"Disappear",.01})
211
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
212
table.insert(list,w1)
213
end
214
 
215
if len2 > 0.01 then
216
local w2 = Instance.new('WedgePart', m)
217
game:GetService("Debris"):AddItem(w2,5)
218
w2.Material = "SmoothPlastic"
219
w2.FormFactor = 'Custom'
220
w2.BrickColor = BrickColor.new(Color)
221
w2.Transparency = 0
222
w2.Reflectance = 0
223
w2.Material = "SmoothPlastic"
224
w2.CanCollide = false
225
NoOutline(w2)
226
local sz = Vector3.new(0.2, width, len2)
227
w2.Size = sz
228
local sp = Instance.new("SpecialMesh",w2)
229
sp.MeshType = "Wedge"
230
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
231
w2:BreakJoints()
232
w2.Anchored = true
233
w2.Parent = workspace
234
w2.Transparency = 0.7
235
table.insert(Effects,{w2,"Disappear",.01})
236
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
237
table.insert(list,w2)
238
end
239
return unpack(list)
240
end
241
	
242
	
243
so = function(id,par,vol,pit) 
244
coroutine.resume(coroutine.create(function()
245
local sou = Instance.new("Sound",par or workspace)
246
sou.Volume=vol
247
sou.Pitch=pit or 1
248
sou.SoundId=id
249
swait() 
250
sou:play() 
251
game:GetService("Debris"):AddItem(sou,6)
252
end))
253
end
254
 
255
function clerp(a,b,t) 
256
local qa = {QuaternionFromCFrame(a)}
257
local qb = {QuaternionFromCFrame(b)} 
258
local ax, ay, az = a.x, a.y, a.z 
259
local bx, by, bz = b.x, b.y, b.z
260
local _t = 1-t
261
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) 
262
end 
263
 
264
function QuaternionFromCFrame(cf) 
265
local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() 
266
local trace = m00 + m11 + m22 
267
if trace > 0 then 
268
local s = math.sqrt(1 + trace) 
269
local recip = 0.5/s 
270
return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 
271
else 
272
local i = 0 
273
if m11 > m00 then
274
i = 1
275
end
276
if m22 > (i == 0 and m00 or m11) then 
277
i = 2 
278
end 
279
if i == 0 then 
280
local s = math.sqrt(m00-m11-m22+1) 
281
local recip = 0.5/s 
282
return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip 
283
elseif i == 1 then 
284
local s = math.sqrt(m11-m22-m00+1) 
285
local recip = 0.5/s 
286
return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip 
287
elseif i == 2 then 
288
local s = math.sqrt(m22-m00-m11+1) 
289
local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip 
290
end 
291
end 
292
end
293
 
294
function QuaternionToCFrame(px, py, pz, x, y, z, w) 
295
local xs, ys, zs = x + x, y + y, z + z 
296
local wx, wy, wz = w*xs, w*ys, w*zs 
297
local xx = x*xs 
298
local xy = x*ys 
299
local xz = x*zs 
300
local yy = y*ys 
301
local yz = y*zs 
302
local zz = z*zs 
303
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)) 
304
end
305
 
306
function QuaternionSlerp(a, b, t) 
307
local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] 
308
local startInterp, finishInterp; 
309
if cosTheta >= 0.0001 then 
310
if (1 - cosTheta) > 0.0001 then 
311
local theta = math.acos(cosTheta) 
312
local invSinTheta = 1/math.sin(theta) 
313
startInterp = math.sin((1-t)*theta)*invSinTheta 
314
finishInterp = math.sin(t*theta)*invSinTheta  
315
else 
316
startInterp = 1-t 
317
finishInterp = t 
318
end 
319
else 
320
if (1+cosTheta) > 0.0001 then 
321
local theta = math.acos(-cosTheta) 
322
local invSinTheta = 1/math.sin(theta) 
323
startInterp = math.sin((t-1)*theta)*invSinTheta 
324
finishInterp = math.sin(t*theta)*invSinTheta 
325
else 
326
startInterp = t-1 
327
finishInterp = t 
328
end 
329
end 
330
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 
331
end
332
333
334
--Example: Torso.Weld.C0 = clerp(Torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
335
336
337
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
338
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
339
end 
340
341
Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
342
        if hit.Parent==nil then
343
                return
344
        end
345
        h=hit.Parent:FindFirstChild("Humanoid")
346
        for _,v in pairs(hit.Parent:children()) do
347
        if v:IsA("Humanoid") then
348
        h=v
349
        end
350
        end
351
        if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
352
        h=hit.Parent.Parent:FindFirstChild("Humanoid")
353
        end
354
        if hit.Parent.className=="Hat" then
355
        hit=hit.Parent.Parent:findFirstChild("Head")
356
        end
357
        if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
358
        if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
359
        --[[                if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
360
                        return
361
                end]]
362
--                        hs(hit,1.2) 
363
                        c=Instance.new("ObjectValue")
364
                        c.Name="creator"
365
                        c.Value=game:service("Players").LocalPlayer
366
                        c.Parent=h
367
                        game:GetService("Debris"):AddItem(c,.5)
368
                Damage=math.random(minim,maxim)
369
--                h:TakeDamage(Damage)
370
                blocked=false
371
                block=hit.Parent:findFirstChild("Block")
372
                if block~=nil then
373
                if block.className=="NumberValue" then
374
                if block.Value>0 then
375
                blocked=true
376
                if decreaseblock==nil then
377
                block.Value=block.Value-1
378
                end
379
                end
380
                end
381
                if block.className=="IntValue" then
382
                if block.Value>0 then
383
                blocked=true
384
                if decreaseblock~=nil then
385
                block.Value=block.Value-1
386
                end
387
                end
388
                end
389
                end
390
                if blocked==false then
391
--                h:TakeDamage(Damage)
392
                h.Health=h.Health-Damage
393
                showDamage(hit.Parent,Damage,.5,BrickColor.new("Really black"))
394
                else
395
                h.Health=h.Health-(Damage/2)
396
                showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue"))
397
                end
398
                if Type=="Knockdown" then
399
                hum=hit.Parent.Humanoid
400
hum.PlatformStand=true
401
coroutine.resume(coroutine.create(function(HHumanoid)
402
swait(1)
403
HHumanoid.PlatformStand=false
404
end),hum)
405
                local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
406
--hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
407
local bodvol=Instance.new("BodyVelocity")
408
bodvol.velocity=angle*knockback
409
bodvol.P=5000
410
bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
411
bodvol.Parent=hit
412
rl=Instance.new("BodyAngularVelocity")
413
rl.P=3000
414
rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
415
rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
416
rl.Parent=hit
417
game:GetService("Debris"):AddItem(bodvol,.5)
418
game:GetService("Debris"):AddItem(rl,.5)
419
                elseif Type=="Normal" then
420
                vp=Instance.new("BodyVelocity")
421
                vp.P=500
422
                vp.maxForce=Vector3.new(math.huge,0,math.huge)
423
--                vp.velocity=Character.Torso.CFrame.lookVector*Knockback
424
                if KnockbackType==1 then
425
                vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
426
                elseif KnockbackType==2 then
427
                vp.velocity=Property.CFrame.lookVector*knockback
428
                end
429
                if knockback>0 then
430
                        vp.Parent=hit.Parent.Torso
431
                end
432
                game:GetService("Debris"):AddItem(vp,.5)
433
                elseif Type=="Up" then
434
                local bodyVelocity=Instance.new("BodyVelocity")
435
                bodyVelocity.velocity=vt(0,60,0)
436
                bodyVelocity.P=5000
437
                bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
438
                bodyVelocity.Parent=hit
439
                game:GetService("Debris"):AddItem(bodyVelocity,1)
440
                rl=Instance.new("BodyAngularVelocity")
441
                rl.P=3000
442
                rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
443
                rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
444
                rl.Parent=hit
445
                game:GetService("Debris"):AddItem(rl,.5)
446
                elseif Type=="Snare" then
447
                bp=Instance.new("BodyPosition")
448
                bp.P=2000
449
                bp.D=100
450
                bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
451
                bp.position=hit.Parent.Torso.Position
452
                bp.Parent=hit.Parent.Torso
453
                game:GetService("Debris"):AddItem(bp,1)
454
                elseif Type=="Target" then
455
                if Targetting==false then
456
                ZTarget=hit.Parent.Torso
457
                coroutine.resume(coroutine.create(function(Part) 
458
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
459
                swait(5)
460
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
461
                end),ZTarget)
462
                TargHum=ZTarget.Parent:findFirstChild("Humanoid")
463
                targetgui=Instance.new("BillboardGui")
464
                targetgui.Parent=ZTarget
465
                targetgui.Size=UDim2.new(10,100,10,100)
466
                targ=Instance.new("ImageLabel")
467
                targ.Parent=targetgui
468
                targ.BackgroundTransparency=1
469
                targ.Image="rbxassetid://4834067"
470
                targ.Size=UDim2.new(1,0,1,0)
471
                cam.CameraType="Scriptable"
472
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
473
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
474
                workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
475
                Targetting=true
476
                RocketTarget=ZTarget
477
                for i=1,Property do
478
                --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
479
                if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
480
                swait()
481
                end
482
                --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
483
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
484
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
485
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
486
                end
487
                Targetting=false
488
                RocketTarget=nil
489
                targetgui.Parent=nil
490
                cam.CameraType="Custom"
491
                end
492
                end
493
                        debounce=Instance.new("BoolValue")
494
                        debounce.Name="DebounceHit"
495
                        debounce.Parent=hit.Parent
496
                        debounce.Value=true
497
                        game:GetService("Debris"):AddItem(debounce,Delay)
498
                        c=Instance.new("ObjectValue")
499
                        c.Name="creator"
500
                        c.Value=Player
501
                        c.Parent=h
502
                        game:GetService("Debris"):AddItem(c,.5)
503
                CRIT=false
504
                hitDeb=true
505
                AttackPos=6
506
        end
507
end
508
 
509
showDamage=function(Char,Dealt,du,Color)
510
        m=Instance.new("Model")
511
        m.Name=tostring(Dealt)
512
        h=Instance.new("Humanoid")
513
        h.Health=0
514
        h.MaxHealth=0
515
        h.Parent=m
516
        c=Instance.new("Part")
517
        c.Transparency=0
518
        c.BrickColor=Color
519
        c.Name="Head"
520
        c.TopSurface=0
521
        c.BottomSurface=0
522
        c.formFactor="Plate"
523
        c.Size=Vector3.new(1,.4,1)
524
        ms=Instance.new("CylinderMesh")
525
        ms.Scale=Vector3.new(.8,.8,.8)
526
        if CRIT==true then
527
                ms.Scale=Vector3.new(1,1.25,1)
528
        end
529
        ms.Parent=c
530
        c.Reflectance=0
531
        Instance.new("BodyGyro").Parent=c
532
        c.Parent=m
533
        if Char:findFirstChild("Head")~=nil then
534
        c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0))
535
        elseif Char.Parent:findFirstChild("Head")~=nil then
536
        c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0))
537
        end
538
        f=Instance.new("BodyPosition")
539
        f.P=2000
540
        f.D=100
541
        f.maxForce=Vector3.new(math.huge,math.huge,math.huge)
542
        f.position=c.Position+Vector3.new(0,3,0)
543
        f.Parent=c
544
        game:GetService("Debris"):AddItem(m,.5+du)
545
        c.CanCollide=false
546
        m.Parent=workspace
547
        c.CanCollide=false
548
end
549
550
Player=game:GetService('Players').LocalPlayer
551
Character=Player.Character
552
Mouse=Player:GetMouse()
553
m=Instance.new('Model',Character)
554
it=Instance.new
555
function nooutline(part)
556
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
557
end
558
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
559
	local fp=it("Part")
560
	fp.formFactor=formfactor
561
	fp.Parent=parent
562
	fp.Reflectance=reflectance
563
	fp.Transparency=transparency
564
	fp.CanCollide=false
565
	fp.Locked=true
566
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
567
	fp.Name=name
568
	fp.Size=size
569
	fp.Position=Character.Torso.Position
570
	nooutline(fp)
571
	fp.Material=material
572
	fp:BreakJoints()
573
	return fp
574
end
575
function mesh(Mesh,part,meshtype,meshid,offset,scale)
576
	local mesh=it(Mesh)
577
	mesh.Parent=part
578
	if Mesh=="SpecialMesh" then
579
		mesh.MeshType=meshtype
580
		mesh.MeshId=meshid
581
	end
582
	mesh.Offset=offset
583
	mesh.Scale=scale
584
	return mesh
585
end
586
function weld(parent,part0,part1,c0,c1)
587
	local weld=it("Weld")
588
	weld.Parent=parent
589
	weld.Part0=part0
590
	weld.Part1=part1
591
	weld.C0=c0
592
	weld.C1=c1
593
	return weld
594
end
595
596
Player=game:GetService('Players').LocalPlayer
597
Character=Player.Character
598
Mouse=Player:GetMouse()
599
m=Instance.new('Model',Character)
600
it=Instance.new
601
function nooutline(part)
602
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
603
end
604
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
605
	local fp=it("Part")
606
	fp.formFactor=formfactor
607
	fp.Parent=parent
608
	fp.Reflectance=reflectance
609
	fp.Transparency=transparency
610
	fp.CanCollide=false
611
	fp.Locked=true
612
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
613
	fp.Name=name
614
	fp.Size=size
615
	fp.Position=Character.Torso.Position
616
	nooutline(fp)
617
	fp.Material=material
618
	fp:BreakJoints()
619
	return fp
620
end
621
function mesh(Mesh,part,meshtype,meshid,offset,scale)
622
	local mesh=it(Mesh)
623
	mesh.Parent=part
624
	if Mesh=="SpecialMesh" then
625
		mesh.MeshType=meshtype
626
		mesh.MeshId=meshid
627
	end
628
	mesh.Offset=offset
629
	mesh.Scale=scale
630
	return mesh
631
end
632
function weld(parent,part0,part1,c0,c1)
633
	local weld=it("Weld")
634
	weld.Parent=parent
635
	weld.Part0=part0
636
	weld.Part1=part1
637
	weld.C0=c0
638
	weld.C1=c1
639
	return weld
640
end
641
642
Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Handle",Vector3.new(0.399999976, 6.5999999, 0.800000012))
643
handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994874, 0, 0, 0, 1),CFrame.new(0.0507202148, -2.52714539, 1.07002306, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005))
644
mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
645
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 2.19999981))
646
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.66964722, 1.47541952, 0.999999821, -3.44649777e-007, -2.91872539e-006, 2.73044566e-006, -6.73997056e-005, 0.999999821, -3.44861661e-007, -0.999999821, -7.3311603e-005))
647
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
648
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 2.19999981))
649
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.66740417, -1.51460314, 0.999999821, -3.44649777e-007, -2.91872539e-006, 2.73044566e-006, -6.73997056e-005, 0.999999821, -3.44861661e-007, -0.999999821, -7.3311603e-005))
650
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
651
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 3))
652
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000556945801, 7.2594986, -2.07578278, 0.999999821, -3.98708266e-008, -2.78470065e-006, 1.80762606e-006, -0.707154274, 0.707054794, -1.86429861e-006, -0.707058966, -0.707158446))
653
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
654
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 3.79999995))
655
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.67505646, -0.444343567, 0.999999642, -5.20824486e-008, -2.79772325e-006, 2.0444179e-006, -0.601868689, 0.798591197, -1.58032435e-006, -0.798594832, -0.601873219))
656
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
657
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 1, 0.200000048))
658
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 0.0484619141, -7.28675842, 0.999999821, -5.98131294e-007, -3.56129613e-006, 1.96194651e-006, -0.707154334, 0.707054913, -2.80819268e-006, -0.707059085, -0.707158506))
659
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
660
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 1, 0.200000048))
661
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, -1.95571899, -7.67503357, -1.00000417, 1.01207308e-006, 2.75585353e-006, 2.3536104e-006, 0.798599243, 0.60187608, -1.44131911e-006, 0.601875842, -0.798596144))
662
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
663
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.99999994, 0.200000048))
664
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, -1.98649597, -7.69823456, 0.999999821, -4.62420445e-007, -3.67828466e-006, 1.73081651e-006, -0.798675954, 0.601756394, -3.06568472e-006, -0.601761043, -0.798679531))
665
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
666
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 3))
667
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, 7.2868042, -2.04853058, -0.999999821, 3.65708871e-007, 2.25400572e-006, 1.71940098e-006, 0.707059085, 0.707158446, -1.20197456e-006, 0.707154274, -0.707054913))
668
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
669
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 1, 0.200000048))
670
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, 0.0756988525, -7.25950623, -1.00000417, 1.07557219e-006, 2.81106031e-006, 2.61523587e-006, 0.707061827, 0.707162321, -1.09386144e-006, 0.70716244, -0.707058728))
671
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
672
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
673
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.92796326, 0.682914734, 0.999999821, -1.3379514e-007, -2.85678175e-006, 2.24400219e-006, -0.500058174, 0.865988493, -1.45030845e-006, -0.865991473, -0.5000633))
674
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
675
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 3.79999995))
676
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, 7.69830322, -0.413574219, -0.999999583, 3.42691209e-007, 2.2613026e-006, 1.86686486e-006, 0.601761103, 0.798679531, -9.57987822e-007, 0.798675895, -0.601756394))
677
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
678
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
679
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.00057220459, 7.94728088, 0.716293335, -0.999999821, -1.33946315e-007, 2.85676219e-006, 2.24413407e-006, 0.499941558, 0.866061687, -1.45007982e-006, 0.866058707, -0.499936432))
680
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
681
Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,1,"Pastel yellow","Hitbox",Vector3.new(0.399999976, 2.95000029, 8.42000008))
682
Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, -7.13064575, -0.259962082, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005))
683
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
684
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.32797241, 3.78292847, 0.999999821, -5.95495209e-008, -2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
685
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
686
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(4.20000029, 0.200000003, 1.19999993))
687
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.2829361, 0.000549316406, 7.62794495, 1.23406596e-006, 0.865991652, 0.50006336, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672))
688
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
689
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
690
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.32798767, 1.21704102, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
691
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
692
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
693
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -7.94722748, 3.81633759, 0.999999821, 5.96597474e-008, -2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
694
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
695
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
696
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.34732819, 3.81626892, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
697
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
698
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
699
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -7.92785645, 3.78297424, -0.999999821, 5.95495209e-008, 2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
700
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
701
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
702
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -7.94728851, 1.18369293, -0.999999821, -5.96597474e-008, 2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
703
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
704
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(4.20000029, 0.200000003, 1.19999993))
705
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.31630707, 0.000549316406, 7.64728546, -1.23383734e-006, 0.866058886, -0.499936491, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866))
706
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
707
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
708
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.34729767, 1.18365479, 0.999999821, 5.96597474e-008, -2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
709
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
710
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
711
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -7.92796326, 1.2170639, 0.999999821, -5.95495209e-008, -2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
712
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
713
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
714
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.22796631, 1.41705322, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
715
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
716
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
717
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000602722168, 8.04922485, 2.2826767, -0.999999821, -1.03368154e-006, 1.92164384e-006, 1.9565648e-006, -0.707154155, 0.707055032, 4.9492246e-007, 0.707059205, 0.707158327))
718
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
719
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(4.20000029, 0.200000003, 1.60000002))
720
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.2829361, 0.000564575195, 7.62794495, 1.23406596e-006, 0.865991652, 0.50006336, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672))
721
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.980000019, 1))
722
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
723
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000541687012, -7.86872101, 4.7230072, 0.999999821, 6.18751557e-008, -2.79253641e-006, -7.33608772e-007, 0.965943217, -0.258748204, 2.49958407e-006, 0.258753926, 0.965944707))
724
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
725
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
726
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -8.02798462, 1.41706085, 0.999999821, -5.95495209e-008, -2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
727
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
728
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
729
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -8.04729462, 1.38368225, -0.999999821, -5.96597474e-008, 2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
730
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
731
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
732
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -7.90600586, 4.71310425, -0.999999821, 6.17326492e-008, 2.79254573e-006, -7.33863715e-007, -0.965908289, -0.258889705, 2.49951563e-006, -0.258883983, 0.965906799))
733
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
734
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
735
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000579833984, -8.19786835, 3.0612793, -0.999999821, 1.67408443e-009, 3.03368324e-006, -1.42435294e-006, -0.865991592, -0.5000633, 2.46326499e-006, -0.500058234, 0.865988612))
736
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
737
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
738
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000610351563, 8.07653809, 2.25543213, 0.999999821, -1.03365596e-006, -1.9217955e-006, 1.95675148e-006, 0.707058907, 0.707158625, 4.94735673e-007, -0.707154453, 0.707054734))
739
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
740
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
741
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.24727631, 1.38367462, 0.999999821, 5.96597474e-008, -2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
742
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
743
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
744
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.00057220459, -8.16441345, 3.08054352, 0.999999821, 1.84907067e-009, -3.03368279e-006, -1.42412443e-006, 0.866058826, -0.499936432, 2.46339664e-006, 0.499941558, 0.866061807))
745
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
746
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
747
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.22822571, 3.98279572, 0.999999821, -5.95495209e-008, -2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
748
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
749
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
750
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -8.02787781, 3.98300171, -0.999999821, 5.95495209e-008, 2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
751
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
752
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
753
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.24758148, 4.0161438, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
754
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
755
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
756
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -8.04721832, 4.01631165, 0.999999821, 5.96597474e-008, -2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
757
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
758
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(4.20000029, 0.200000003, 1.60000002))
759
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.31628418, 0.000564575195, 7.6472702, -1.23383734e-006, 0.866058886, -0.499936491, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866))
760
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.980000019, 1))
761
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.600000024, 0.600000083))
762
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -2.73671722, 2.73668671, -0.999999821, 9.49127994e-008, 2.40484042e-006, -1.63459686e-006, -0.707059026, -0.707158506, 1.50011931e-006, -0.707154334, 0.707054853))
763
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.800000012, 0.800000012))
764
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
765
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -4.79164124, 5.3915863, -0.999999821, 9.49127994e-008, 2.40484042e-006, -1.63459686e-006, -0.707059026, -0.707158506, 1.50011931e-006, -0.707154334, 0.707054853))
766
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
767
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
768
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 5.99164581, -5.39162445, -0.999999821, -9.50369241e-008, 2.90747721e-006, 1.85573333e-006, 0.707058907, 0.707158327, -1.98983753e-006, 0.707154155, -0.707054734))
769
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
770
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
771
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 4.79161072, 5.39163208, -0.999999821, -2.51380015e-007, 2.56118346e-006, 1.85554666e-006, -0.707154155, 0.707054734, 1.50030701e-006, 0.707058907, 0.707158327))
772
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
773
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 4))
774
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, -0.300024509, -5.0990448, 0.999999642, 8.86621194e-008, -2.71263866e-006, 8.84640485e-008, -0.999999642, -7.33413981e-005, -2.52439077e-006, 6.74295079e-005, -0.999999642))
775
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
776
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 4))
777
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 0.299972534, -5.0990448, 0.999999642, 8.86621194e-008, -2.71263866e-006, 8.84640485e-008, -0.999999642, -7.33413981e-005, -2.52439077e-006, 6.74295079e-005, -0.999999642))
778
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
779
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
780
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -5.99160767, -5.3916626, -0.999999821, 2.51255869e-007, 2.75113416e-006, -1.63441007e-006, 0.707154334, -0.707054853, -1.99002329e-006, -0.707059026, -0.707158506))
781
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
782
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 0.600000083))
783
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 1.99224091, 2.19223022, -0.999999821, -2.51380015e-007, 2.56118346e-006, 1.85554666e-006, -0.707154155, 0.707054734, 1.50030701e-006, 0.707058907, 0.707158327))
784
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.769999981))
785
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.400000006, 0.200000003, 0.600000083))
786
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -1.99222565, 2.1922226, -0.999999821, 9.49127994e-008, 2.40484042e-006, -1.63459686e-006, -0.707059026, -0.707158506, 1.50011931e-006, -0.707154334, 0.707054853))
787
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.769999981))
788
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
789
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.9855423, -1.52587891e-005, -5.18557739, -1.74497791e-006, 0.707154274, -0.707054913, 0.999999821, 6.20720975e-011, -2.65615972e-006, -1.74516435e-006, -0.707059085, -0.707158446))
790
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
791
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
792
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-4.78553772, -1.52587891e-005, -5.58559418, -1.74497791e-006, 0.707154274, -0.707054913, 0.999999821, 6.20720975e-011, -2.65615972e-006, -1.74516435e-006, -0.707059085, -0.707158446))
793
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
794
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
795
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.9855957, 1.52587891e-005, -5.58554077, -1.74516435e-006, -0.707059085, -0.707158446, -0.999999821, -6.20720975e-011, 2.65615972e-006, -1.74497791e-006, 0.707154274, -0.707054913))
796
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
797
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
798
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-4.7855835, 1.52587891e-005, -5.18553162, -1.74516435e-006, -0.707059085, -0.707158446, -0.999999821, -6.20720975e-011, 2.65615972e-006, -1.74497791e-006, 0.707154274, -0.707054913))
799
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
800
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
801
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, -7.84564209, 1.18071747, -0.999999821, 9.66749326e-007, 2.13135627e-006, -1.94302879e-006, 6.75486881e-005, -0.999999821, -9.6690826e-007, -0.999999821, -7.3460651e-005))
802
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
803
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
804
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, -7.84564209, 1.21925235, 0.999999821, -9.66678385e-007, -3.18110392e-006, -2.99277713e-006, 6.71314556e-005, -0.999999821, 9.66907237e-007, 0.999999821, 7.30434185e-005))
805
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
806
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
807
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 7.44563293, 1.21924734, -0.999999821, -9.66873472e-007, 3.18096318e-006, 2.99277804e-006, -6.75486881e-005, 0.999999821, -9.6664337e-007, 0.999999821, 7.3460651e-005))
808
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
809
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
810
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, -7.84564209, -0.419251919, -0.999999821, 9.66750008e-007, 2.13135809e-006, -1.94302993e-006, 6.75784904e-005, -0.999999821, -9.66909511e-007, -0.999999821, -7.34904534e-005))
811
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
812
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
813
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, -0.180722237, -8.0456543, -0.999999821, 5.24748202e-007, 3.62297351e-006, 5.25008204e-007, 0.999999821, 7.34904534e-005, -3.43467877e-006, 6.75784904e-005, -0.999999821))
814
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
815
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
816
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, 7.44563293, -0.419239521, 0.999999821, 9.66802304e-007, -2.13121507e-006, 1.94302902e-006, -6.71016533e-005, 0.999999821, 9.66643483e-007, -0.999999821, -7.30136162e-005))
817
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
818
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
819
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, 7.44564819, -0.380721092, -0.999999821, -9.66873017e-007, 3.18096227e-006, 2.99277667e-006, -6.75784904e-005, 0.999999821, -9.66642006e-007, 0.999999821, 7.34904534e-005))
820
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
821
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
822
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, 7.44563293, 1.18072891, 0.999999821, 9.66802418e-007, -2.1312153e-006, 1.9430297e-006, -6.71314556e-005, 0.999999821, 9.66644393e-007, -0.999999821, -7.30434185e-005))
823
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
824
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
825
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, -0.21928072, 8.84564209, -0.999999821, -5.24871439e-007, 1.68934548e-006, 5.24742063e-007, -0.999999821, -7.34904534e-005, 1.5011276e-006, -6.75784904e-005, 0.999999821))
826
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
827
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
828
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.219273567, -8.0456543, 0.999999821, -5.2487735e-007, -1.68942256e-006, -5.25005987e-007, -0.999999821, -7.30136162e-005, -1.50112783e-006, 6.71016533e-005, -0.999999821))
829
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
830
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
831
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, -0.180725098, 8.84564209, 0.999999821, 5.2500036e-007, -3.62289711e-006, -5.24742177e-007, 0.999999821, 7.29838139e-005, 3.43467877e-006, -6.70718509e-005, 0.999999821))
832
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
833
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
834
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, -0.219299316, -6.44563293, 0.999999821, -5.248761e-007, -1.68942245e-006, -5.25004509e-007, -0.999999821, -7.28646046e-005, -1.50112771e-006, 6.69526416e-005, -0.999999821))
835
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
836
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
837
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, -0.180696487, -6.44563293, -0.999999821, 5.24747293e-007, 3.62297396e-006, 5.25007465e-007, 0.999999821, 7.35649592e-005, -3.43467877e-006, 6.76529962e-005, -0.999999821))
838
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
839
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
840
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, -7.84564209, -0.380716801, 0.999999821, -9.66679295e-007, -3.18110324e-006, -2.99277576e-006, 6.71016533e-005, -0.999999821, 9.66908829e-007, 0.999999821, 7.30136162e-005))
841
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
842
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
843
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.219314575, 7.24563599, -0.999999821, -5.24872348e-007, 1.68934582e-006, 5.24742916e-007, -0.999999821, -7.35649592e-005, 1.50112783e-006, -6.76529962e-005, 0.999999821))
844
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
845
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
846
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, -0.180728436, 7.24563599, 0.999999821, 5.25001496e-007, -3.62289666e-006, -5.24743371e-007, 0.999999821, 7.29540116e-005, 3.43467809e-006, -6.70420486e-005, 0.999999821))
847
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
848
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
849
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.200022697, 3.69998169, -0.999999821, -6.20720975e-011, 2.65615972e-006, 1.31964842e-010, 0.999999821, 7.32520348e-005, -2.46790319e-006, 6.73400718e-005, -0.999999821))
850
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
851
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
852
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.199978352, 3.69998169, 0.999999821, 6.20720975e-011, -2.65615972e-006, -1.31964842e-010, -0.999999821, -7.32520348e-005, -2.46790319e-006, 6.73400718e-005, -0.999999821))
853
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
854
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.600000024, 0.399999976))
855
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 2.5995636, 0.20001173, -0.999999821, -6.20720975e-011, 2.65615972e-006, 2.46790319e-006, -6.73400718e-005, 0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005))
856
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
857
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.600000024, 0.399999976))
858
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 2.5995636, 0.199989319, 0.999999821, 6.20720975e-011, -2.65615972e-006, 2.46790319e-006, -6.73400718e-005, 0.999999821, -1.31964842e-010, -0.999999821, -7.32520348e-005))
859
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
860
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.400000036, 0.600000024))
861
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -4.89909363, 0.500017643, -0.999999821, 7.47743161e-006, 2.65699214e-006, -2.46814989e-006, 5.76073035e-005, -0.999999821, -7.47759987e-006, -0.999999821, -6.35192409e-005))
862
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
863
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.400000036, 0.600000024))
864
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, -4.89909363, 0.50004673, 0.999999821, -7.4775262e-006, -2.65642279e-006, -2.4674348e-006, 7.70728439e-005, -0.999999821, 7.47774311e-006, 0.999999821, 8.2984785e-005))
865
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
866
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
867
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.34057617e-005, 0.100078583, 5.09907532, 0.999999821, 3.96872668e-009, -1.0130585e-005, -8.97625707e-009, 0.999999821, 8.29848068e-005, 9.94809852e-006, -7.70728439e-005, 0.999999821))
868
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
869
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.200000033, 1.20000005))
870
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(3.81469727e-005, 0.699976921, -4.09957886, -0.999999821, 2.83815882e-009, 1.01304904e-005, -2.36349496e-009, 0.999999821, 6.35192628e-005, -9.94800394e-006, 5.76073035e-005, -0.999999821))
871
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
872
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
873
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, 0.499930382, -4.29948425, 0.999999821, -6.6497019e-010, 4.82133237e-006, -2.50907961e-010, -0.999999821, -8.29848068e-005, 5.00964597e-006, 7.70728439e-005, -0.999999821))
874
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
875
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
876
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(3.81469727e-005, 0.500016212, -4.29951477, -0.999999821, 2.83815882e-009, 1.01304904e-005, -2.36349496e-009, 0.999999821, 6.35192628e-005, -9.94800394e-006, 5.76073035e-005, -0.999999821))
877
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
878
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(1.80000007, 0.400000006, 0.799999952))
879
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.79954529, 1.52587891e-005, 1.90734863e-005, -2.46790319e-006, 6.73400718e-005, -0.999999821, -0.999999821, -6.20720975e-011, 2.65615972e-006, 1.31964842e-010, 0.999999821, 7.32520348e-005))
880
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
881
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
882
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, 0.100017548, 5.09906006, -0.999999821, -2.81154766e-009, -4.8182651e-006, 8.87377194e-009, -0.999999821, -6.35192628e-005, -5.00075112e-006, -5.76072998e-005, 0.999999821))
883
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
884
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.200000033, 1.20000005))
885
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, 0.69994545, -4.09954834, 0.999999821, -6.6497019e-010, 4.82133237e-006, -2.50907961e-010, -0.999999821, -8.29848068e-005, 5.00964597e-006, 7.70728439e-005, -0.999999821))
886
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
887
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
888
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.199980259, -3.09999084, -0.999999821, -6.20720975e-011, 2.65615972e-006, -1.31964842e-010, -0.999999821, -7.32520348e-005, 2.46790319e-006, -6.73400718e-005, 0.999999821))
889
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
890
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Pastel light blue","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
891
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.20002079, -3.09999084, 0.999999821, 6.20720975e-011, -2.65615972e-006, 1.31964842e-010, 0.999999821, 7.32520348e-005, 2.46790319e-006, -6.73400718e-005, 0.999999821))
892
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
893
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.800000072, 2.20000029))
894
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.34057617e-005, 1.33576965, -2.48857117, 0.999999821, 5.16932005e-007, -1.74312263e-005, 4.96099256e-006, -0.965943098, 0.258748472, -1.65219808e-005, -0.258754194, -0.965944588))
895
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
896
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.800000072, 2.20000029))
897
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, 1.39878464, -2.47839355, -0.999999821, -4.90805292e-007, -1.21189832e-005, -3.66019731e-006, 0.96590817, 0.258890003, 1.17606105e-005, 0.258884311, -0.96590668))
898
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
899
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 1.60000014))
900
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, 3.91101837, -1.28395081, -0.999999821, -6.39833274e-007, -1.18780463e-005, -8.98512008e-006, 0.707058847, 0.707158685, 8.07914512e-006, 0.707154512, -0.707054675))
901
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
902
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 2.20000029))
903
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-4.57763672e-005, 4.64130402, 0.180419922, -0.999999821, -4.90812965e-007, -1.20061359e-005, -1.08064278e-005, 0.499941379, 0.866061985, 5.67143161e-006, 0.866059065, -0.499936253))
904
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
905
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 2.00000024))
906
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, 2.76877594, -1.9785614, -0.999999821, -6.99441955e-007, -1.18177722e-005, -6.60940168e-006, 0.865991533, 0.500063479, 1.00473708e-005, 0.500058472, -0.865988493))
907
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
908
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 1.60000014))
909
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-6.86645508e-005, 3.86151886, -1.3242569, 0.999999821, 5.95436006e-007, -1.7190272e-005, 1.24424796e-005, -0.707154155, 0.707055032, -1.1602061e-005, -0.707059205, -0.707158327))
910
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
911
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.600000024, 2.00000024))
912
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-6.86645508e-005, 2.71051025, -2.0047226, 0.999999821, 6.41683698e-007, -1.71299907e-005, 9.02559623e-006, -0.866058826, 0.49993673, -1.43517545e-005, -0.499941796, -0.866061807))
913
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
914
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Pastel yellow","Part",Vector3.new(0.200000003, 0.400000036, 2.20000029))
915
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-6.86645508e-005, 4.60388184, 0.128692627, 0.999999821, 4.28497856e-007, -1.73183871e-005, 1.50488149e-005, -0.500058055, 0.865988791, -8.19501111e-006, -0.865991771, -0.500063181))
916
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
917
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
918
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, 3.71121216, 2.82486343, -0.999999821, -1.97225904e-006, 2.36766391e-006, 2.61569949e-006, -0.258884281, 0.965906739, -1.34077732e-006, 0.965908229, 0.258890003))
919
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 1, 1))
920
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.4000001))
921
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, 2.19729614, 5.34124756, -0.999999821, -2.2279487e-006, 2.0706359e-006, 2.90644743e-006, -0.707154512, 0.707054675, -2.44128955e-007, 0.707058847, 0.707158685))
922
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
923
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.4000001))
924
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, 2.22851563, 5.3099823, 0.999999821, 1.58679245e-006, -2.07068274e-006, 2.09235395e-007, 0.707059264, 0.707158267, 2.45308138e-006, -0.707154095, 0.707055092))
925
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
926
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
927
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, 3.8639679, 0.922094584, -0.999999821, -1.58131888e-006, 2.41916155e-006, 2.2310212e-006, -6.75784904e-005, 0.999999821, -1.58114017e-006, 0.999999821, 7.34904606e-005))
928
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.03999996, 1, 1))
929
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.60000014))
930
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 3.15304565, 4.29320526, -0.999999821, -1.68681856e-006, 2.48592164e-006, 2.83326176e-006, -0.500058532, 0.865988553, -3.1177467e-007, 0.865991533, 0.500063539))
931
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 1, 1))
932
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
933
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 3.86395264, 0.877912998, 0.999999821, 2.23347001e-006, -2.4191138e-006, 2.23102029e-006, -6.71016533e-005, 0.999999821, 2.23329266e-006, -0.999999821, -7.30136235e-005))
934
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.03999996, 1, 1))
935
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.60000014))
936
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, 3.17512512, 4.25492859, 0.999999821, 2.12797931e-006, -2.48588958e-006, 9.26044322e-007, 0.499941796, 0.866061747, 2.9916207e-006, -0.866058767, 0.49993673))
937
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 1, 1))
938
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Cool yellow","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
939
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 3.72265625, 2.78215027, 0.999999821, 1.84252258e-006, -2.36767346e-006, 1.62845026e-006, 0.258754224, 0.965944648, 2.34368144e-006, -0.965943158, 0.258748502))
940
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 1, 1))
941
942
TrailDeb = false
943
944
function attackone()
945
	attack=true
946
	for i=0,1,0.07 do
947
		swait()
948
		RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(-50)),.2)
949
        Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(50)),.3)
950
        RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(160), math.rad(0), math.rad(10)), 0.2)
951
        LW.C0 = clerp(LW.C0, CFrame.new(.3, 0.5, -1) * angles(math.rad(160), math.rad(0), math.rad(50)), 0.2)
952
        handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(60),math.rad(-10),math.rad(0)),.2)
953
	end
954
	so("http://www.roblox.com/asset/?id=203691447",Hitbox,1,1)
955
	con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10,30,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
956
	 if TrailDeb == false then
957
							TrailDeb = true
958
						end
959
						
960
961
coroutine.wrap(function()
962
local Old = Hitbox.CFrame.p
963
while wait()do
964
if not TrailDeb then break end
965
local New = Hitbox.CFrame.p
966
local Mag =(Old -New).magnitude
967
local Dis =(Old +New)/2
968
local Trail = Instance.new("Part",Character)
969
Trail.Material = "SmoothPlastic"
970
Trail.Anchored = true
971
Trail.CanCollide = false
972
Trail.BrickColor = BrickColor.new("Navy blue")
973
Trail.Size = Vector3.new(0.2,Mag,0.2)
974
Trail.TopSurface = 0
975
Trail.BottomSurface = 0
976
Trail.formFactor = "Custom"
977
Trail.CFrame = CFrame.new(Dis,New)* CFrame.Angles(math.pi/2,0,0)
978
local ms = Instance.new("BlockMesh",Trail)
979
ms.Scale = Vector3.new(1,1,1)
980
local TM = Instance.new("CylinderMesh",Trail)
981
TM.Scale = Vector3.new(1,1,1)
982
Old = New
983
coroutine.wrap(function()
984
for i = 1,0,-0.1 do
985
wait()
986
TM.Scale = TM.Scale * Vector3.new(i,1,i)
987
end
988
Trail:remove()
989
end)()
990
coroutine.wrap(function()
991
for i = 1,10 do
992
wait()
993
Trail.Transparency = Trail.Transparency +0.1
994
end end)()end end)() 
995
	for i=0,1,0.06 do
996
		swait()
997
		RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(50)),.2)
998
        Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(10),math.rad(5),math.rad(-50)),.3)
999
        RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(10)), 0.2)
1000
        LW.C0 = clerp(LW.C0, CFrame.new(.2, 0.2, -.5) * angles(math.rad(10), math.rad(0), math.rad(50)), 0.2)
1001
        handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(-10),math.rad(0)),.2)
1002
	end
1003
	attack=false
1004
	con1:disconnect()
1005
	if TrailDeb == true then
1006
						TrailDeb = false
1007
						end
1008
end
1009
1010
function attacktwo()
1011
        attack=true
1012
        for i=0,1,0.06 do
1013
                swait()
1014
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(90)),.2)
1015
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(-80)),.3)
1016
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(90),math.rad(90)),.1)
1017
LW.C0 = clerp(LW.C0, CFrame.new(.3, 0.5, -1) * angles(math.rad(0), math.rad(60), math.rad(90)), 0.1)
1018
handleweld.C0=clerp(handleweld.C0,cf(0,-.5,-2)*angles(math.rad(-80),math.rad(-10),math.rad(0)),.1)
1019
1020
        end
1021
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10,30,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1022
so("http://www.roblox.com/asset/?id=203691492",Hitbox,1,1)
1023
if TrailDeb == false then
1024
TrailDeb = true
1025
end
1026
coroutine.wrap(function()
1027
local Old = Hitbox.CFrame.p
1028
while wait()do
1029
if not TrailDeb then break end
1030
local New = Hitbox.CFrame.p
1031
local Mag =(Old -New).magnitude
1032
local Dis =(Old +New)/2
1033
local Trail = Instance.new("Part",Character)
1034
Trail.Material = "SmoothPlastic"
1035
Trail.Anchored = true
1036
Trail.CanCollide = false
1037
Trail.BrickColor = BrickColor.new("Navy blue")
1038
Trail.Size = Vector3.new(0.2,Mag,0.2)
1039
Trail.TopSurface = 0
1040
Trail.BottomSurface = 0
1041
Trail.formFactor = "Custom"
1042
Trail.CFrame = CFrame.new(Dis,New)* CFrame.Angles(math.pi/2,0,0)
1043
local ms = Instance.new("BlockMesh",Trail)
1044
ms.Scale = Vector3.new(1,1,1)
1045
local TM = Instance.new("CylinderMesh",Trail)
1046
TM.Scale = Vector3.new(1,1,1)
1047
Old = New
1048
coroutine.wrap(function()
1049
for i = 1,0,-0.1 do
1050
wait()
1051
TM.Scale = TM.Scale * Vector3.new(i,1,i)
1052
end
1053
Trail:remove()
1054
end)()
1055
coroutine.wrap(function()
1056
for i = 1,10 do
1057
wait()
1058
Trail.Transparency = Trail.Transparency +0.1
1059
end end)()end end)() 
1060
for i=0,1,0.06 do
1061
                swait()
1062
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(-50)),.2)
1063
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(50)),.3)
1064
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-10),math.rad(90)),.1)
1065
LW.C0 = clerp(LW.C0, CFrame.new(.3, 0.5, -1) * angles(math.rad(0), math.rad(-10), math.rad(90)), 0.1)
1066
handleweld.C0=clerp(handleweld.C0,cf(0,-.5,-2)*angles(math.rad(-80),math.rad(-10),math.rad(0)),.1)
1067
end
1068
1069
for i=0,1,1 do
1070
swait()
1071
so("http://www.roblox.com/asset/?id=203691467",Hitbox,1,1)
1072
for i=0,1,0.1 do
1073
swait()
1074
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*euler(0,0,6*i),.3)
1075
end
1076
end
1077
1078
attack=false
1079
con1:disconnect()
1080
if TrailDeb == true then
1081
						TrailDeb = false
1082
						end
1083
end
1084
1085
function attackthree()
1086
        attack=true
1087
        for i=0,1.5,0.06 do
1088
swait()
1089
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-10),math.rad(0),math.rad(00)),.1)
1090
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(00)),.1)
1091
RW.C0=clerp(RW.C0,cf(1,0.8,-1)*angles(math.rad(130),math.rad(0),math.rad(-50)),.1)
1092
LW.C0=clerp(LW.C0,cf(-1,0.8,-1)*angles(math.rad(130),math.rad(0),math.rad(50)),.1)
1093
handleweld.C0=clerp(handleweld.C0,cf(-1,0,-.2)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.3)
1094
        end
1095
so("http://roblox.com/asset/?id=203691467",Hitbox,1,1) 
1096
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10,30,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1097
if TrailDeb == false then
1098
TrailDeb = true
1099
end 
1100
coroutine.wrap(function()
1101
local Old = Hitbox.CFrame.p
1102
while wait()do
1103
if not TrailDeb then break end
1104
local New = Hitbox.CFrame.p
1105
local Mag =(Old -New).magnitude
1106
local Dis =(Old +New)/2
1107
local Trail = Instance.new("Part",Character)
1108
Trail.Material = "SmoothPlastic"
1109
Trail.Anchored = true
1110
Trail.CanCollide = false
1111
Trail.BrickColor = BrickColor.new("Navy blue")
1112
Trail.Size = Vector3.new(0.2,Mag,0.2)
1113
Trail.TopSurface = 0
1114
Trail.BottomSurface = 0
1115
Trail.formFactor = "Custom"
1116
Trail.CFrame = CFrame.new(Dis,New)* CFrame.Angles(math.pi/2,0,0)
1117
local ms = Instance.new("BlockMesh",Trail)
1118
ms.Scale = Vector3.new(1,1,1)
1119
local TM = Instance.new("CylinderMesh",Trail)
1120
TM.Scale = Vector3.new(1,1,1)
1121
Old = New
1122
coroutine.wrap(function()
1123
for i = 1,0,-0.1 do
1124
wait()
1125
TM.Scale = TM.Scale * Vector3.new(i,1,i)
1126
end
1127
Trail:remove()
1128
end)()
1129
coroutine.wrap(function()
1130
for i = 1,10 do
1131
wait()
1132
Trail.Transparency = Trail.Transparency +0.1
1133
end end)()end end)() 
1134
      for i=0,1.5,.06 do
1135
swait()
1136
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(0)),.2)
1137
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(-5),math.rad(00)),.2)
1138
RW.C0=clerp(RW.C0,cf(1,0.2,-.5)*angles(math.rad(20),math.rad(0),math.rad(-50)),.2)
1139
LW.C0=clerp(LW.C0,cf(-1,0.2,-.5)*angles(math.rad(20),math.rad(0),math.rad(50)),.2)
1140
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(10),math.rad(70),math.rad(0)),.3)
1141
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(-20),math.rad(-70),math.rad(-20)),.3)
1142
handleweld.C0=clerp(handleweld.C0,cf(-1,0,-.2)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.3)
1143
        end
1144
attack=false
1145
con1:disconnect()
1146
if TrailDeb == true then
1147
						TrailDeb = false
1148
						end
1149
end
1150
1151
function JumpSpin()
1152
attack=true
1153
for i=0,1,0.06 do
1154
swait()
1155
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(-50)),.1)
1156
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(50)),.1)
1157
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-10),math.rad(90)),.1)
1158
LW.C0 = clerp(LW.C0, CFrame.new(.3, 0.5, -1) * angles(math.rad(0), math.rad(-10), math.rad(90)), 0.1)
1159
handleweld.C0=clerp(handleweld.C0,cf(0,-.5,-2)*angles(math.rad(-80),math.rad(-10),math.rad(0)),.1)
1160
end
1161
if TrailDeb == false then
1162
TrailDeb = true
1163
end 
1164
coroutine.wrap(function()
1165
local Old = Hitbox.CFrame.p
1166
while wait()do
1167
if not TrailDeb then break end
1168
local New = Hitbox.CFrame.p
1169
local Mag =(Old -New).magnitude
1170
local Dis =(Old +New)/2
1171
local Trail = Instance.new("Part",Character)
1172
Trail.Material = "SmoothPlastic"
1173
Trail.Anchored = true
1174
Trail.CanCollide = false
1175
Trail.BrickColor = BrickColor.new("Navy blue")
1176
Trail.Size = Vector3.new(0.2,Mag,0.2)
1177
Trail.TopSurface = 0
1178
Trail.BottomSurface = 0
1179
Trail.formFactor = "Custom"
1180
Trail.CFrame = CFrame.new(Dis,New)* CFrame.Angles(math.pi/2,0,0)
1181
local ms = Instance.new("BlockMesh",Trail)
1182
ms.Scale = Vector3.new(1,1,1)
1183
local TM = Instance.new("CylinderMesh",Trail)
1184
TM.Scale = Vector3.new(1,1,1)
1185
Old = New
1186
coroutine.wrap(function()
1187
for i = 1,0,-0.1 do
1188
wait()
1189
TM.Scale = TM.Scale * Vector3.new(i,1,i)
1190
end
1191
Trail:remove()
1192
end)()
1193
coroutine.wrap(function()
1194
for i = 1,10 do
1195
wait()
1196
Trail.Transparency = Trail.Transparency +0.1
1197
end end)()end end)() 
1198
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10,30,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1199
for i=0,0.6,.5 do
1200
	so("http://www.roblox.com/asset/?id=203691447",Hitbox,1,1)
1201
swait()
1202
for i=0,1,0.1 do
1203
swait()
1204
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,4)*euler(0,1.2,6*i),.2)
1205
end
1206
end
1207
attack=false
1208
con1:disconnect()
1209
if TrailDeb == true then
1210
						TrailDeb = false
1211
						end
1212
end
1213
1214
mouse.Button1Down:connect(function()
1215
	if attack==false then
1216
		if attacktype==1 then
1217
			attacktype = 2
1218
			attackone()
1219
		elseif attacktype==2 then
1220
			attacktype = 3
1221
			attacktwo()
1222
			elseif attacktype==3 then
1223
			attacktype = 1
1224
			attackthree()
1225
		end
1226
	end
1227
end)
1228
1229
function MMMAGIC(part,x1,y1,z1,x2,y2,z2,color) 
1230
        local msh1 = it("BlockMesh") 
1231
        msh1.Scale = vt(0.5,0.5,0.5) 
1232
        S=it("Part")
1233
        S.Material = "SmoothPlastic"
1234
        S.Name="Effect"
1235
        S.formFactor=0
1236
        S.Size=vt(x1,y1,z1)
1237
        S.BrickColor=color
1238
        S.Reflectance = 0
1239
        S.TopSurface=0
1240
        S.BottomSurface=0
1241
        S.Transparency=0
1242
        S.Anchored=true
1243
        S.CanCollide=false
1244
        S.CFrame=part.CFrame*cf(x2,y2,z2)*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
1245
        S.Parent=workspace
1246
        nooutline(S)
1247
        msh1.Parent = S
1248
        coroutine.resume(coroutine.create(function(Part,CF) for i=1, 9 do Part.Mesh.Scale = Part.Mesh.Scale + vt(0.1,0.1,0.1) Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) Part.Transparency=i*.1 wait() end Part.Parent=nil end),S,S.CFrame)
1249
end 
1250
1251
function MMMAGIC2(part,x1,y1,z1,x2,y2,z2,color) 
1252
        local msh1 = it("BlockMesh") 
1253
        msh1.Scale = vt(0.5,0.5,0.5) 
1254
        S=it("Part")
1255
        S.Material = "SmoothPlastic"
1256
        S.Name="Effect"
1257
        S.formFactor=0
1258
        S.Size=vt(x1,y1,z1)
1259
        S.BrickColor=color
1260
        S.Reflectance = 0
1261
        S.TopSurface=0
1262
        S.BottomSurface=0
1263
        S.Transparency=0
1264
        S.Anchored=true
1265
        S.CanCollide=false
1266
        S.CFrame=part*cf(x2,y2,z2)*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
1267
        S.Parent=workspace
1268
        nooutline(S)
1269
        msh1.Parent = S
1270
        coroutine.resume(coroutine.create(function(Part,CF) for i=1, 9 do Part.Mesh.Scale = Part.Mesh.Scale + vt(0.1,0.1,0.1) Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) Part.Transparency=i*.1 wait() end Part.Parent=nil end),S,S.CFrame)
1271
end 
1272
1273
function MMMAGIC3(part,x1,y1,z1,x2,y2,z2,color) 
1274
        local msh1 = it("BlockMesh") 
1275
        msh1.Scale = vt(0.5,0.5,0.5) 
1276
        S=it("Part")
1277
        S.Material = "SmoothPlastic"
1278
        S.Name="Effect"
1279
        S.formFactor=0
1280
        S.Size=vt(x1,y1,z1)
1281
        S.BrickColor=color
1282
        S.Reflectance = 0
1283
        S.TopSurface=0
1284
        S.BottomSurface=0
1285
        S.Transparency=0
1286
        S.Anchored=true
1287
        S.CanCollide=false
1288
        S.CFrame=part*cf(x2,y2,z2)*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
1289
        S.Parent=workspace
1290
        nooutline(S)
1291
        msh1.Parent = S
1292
        coroutine.resume(coroutine.create(function(Part,CF) for i=1, 9 do Part.Mesh.Scale = Part.Mesh.Scale + vt(0,0.1,0) Part.CFrame=Part.CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50)) Part.Transparency=i*.1 wait() end Part.Parent=nil end),S,S.CFrame)
1293
end 
1294
1295
DOHHit=function(hit,Damage,Pos) --credits to turdulator for making this function :D
1296
        if hit.Parent==nil then
1297
                return
1298
        end
1299
        h=hit.Parent:FindFirstChild("Humanoid")
1300
        t=hit.Parent:FindFirstChild("Torso")
1301
        if h~=nil and t~=nil then
1302
        if attackdebounce2 == false then 
1303
        attackdebounce2 = true 
1304
        coroutine.resume(coroutine.create(function() 
1305
        wait(0.2) 
1306
        attackdebounce2 = false 
1307
        end)) 
1308
        elseif attackdebounce2==true then return end
1309
                if h.Parent==Character then
1310
                        return
1311
                end
1312
                        c=it("ObjectValue")
1313
                        c.Name="creator"
1314
                        c.Value=game.Players.LocalPlayer
1315
                        c.Parent=h
1316
                        game:GetService("Debris"):AddItem(c,.5)
1317
                if math.random(0,99)+math.random()<=7.8 then
1318
--[[                        Knockback=Knockback*2
1319
                        r=it("BodyAngularVelocity")
1320
                        r.P=3000
1321
                        r.maxTorque=vt(500000000,50000000000,500000000)*50000
1322
                        r.angularvelocity=vt(math.random(-20,20),math.random(-20,20),math.random(-20,20))
1323
                        r.Parent=hit.Parent.Torso]]
1324
        
1325
                end
1326
                h:TakeDamage(Damage) 
1327
                game:GetService("Debris"):AddItem(vl,.2)
1328
                rl=it("BodyAngularVelocity")
1329
                rl.P=3000
1330
                rl.maxTorque=vt(500000,500000,500000)*50000000000000
1331
                rl.angularvelocity=vt(math.random(-3,3),math.random(-3,3),math.random(-3,3))
1332
                rl.Parent=t
1333
                game:GetService("Debris"):AddItem(rl,.05)
1334
                f=it("BodyPosition")
1335
                f.P=800
1336
                f.D=100
1337
                f.maxForce=vt(math.huge,math.huge,math.huge)
1338
                f.position=Pos.Position
1339
                f.Parent=t
1340
                game:GetService("Debris"):AddItem(f,.1)
1341
        else
1342
                if hit.CanCollide==false then
1343
                        return
1344
                end
1345
--                DBExplode(DB)
1346
        end
1347
end
1348
1349
colors={"Really black","Navy blue"}
1350
random=colors[math.random(1,#colors)]
1351
function Absorber()
1352
attack=true
1353
so("http://www.roblox.com/asset/?id=231917977",LeftArm,1,1) 
1354
for i=0,1,0.1 do
1355
wait()
1356
MMMAGIC(LeftArm,2,2,2,0,-1,0,BrickColor.new(random)) 
1357
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(-10),math.rad(-60)),.3)
1358
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(-5),math.rad(50)),.3)
1359
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(40), math.rad(0), math.rad(30)), 0.3)
1360
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
1361
end
1362
for i=0,1,0.1 do
1363
wait(0)
1364
MMMAGIC(LeftArm,2,2,2,0,-1,0,BrickColor.new(random)) 
1365
end
1366
for i=0,1,0.2 do
1367
wait()
1368
MMMAGIC(LeftArm,2,2,2,0,-1,0,BrickColor.new(random)) 
1369
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(-10),math.rad(-90)),.3)
1370
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(5),math.rad(80)),.3)
1371
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(40), math.rad(0), math.rad(30)), 0.3)
1372
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(90), math.rad(0), math.rad(-90)), 0.3)
1373
end
1374
for i=0,1,0.15 do
1375
wait(0)
1376
MMMAGIC(LeftArm,2,2,2,0,-1,0,BrickColor.new(random)) 
1377
end
1378
so("http://www.roblox.com/asset/?id=231917822",LeftArm,1,1) 
1379
MMMAGIC(LeftArm,4,4,4,0,-1,0,BrickColor.new("Navy blue")) 
1380
MMMAGIC(LeftArm,4,4,4,0,-1,0,BrickColor.new("Black")) 
1381
lacf=LeftArm.CFrame
1382
coroutine.resume(coroutine.create(function() 
1383
local derppart=part(3,workspace,"SmoothPlastic",0,0,BrickColor.new("Really black"),"Effect",vt(1,1,1))
1384
derppart.Anchored=true
1385
derppart.CFrame=lacf*CFrame.new(0,-1,0)
1386
for i=1,50 do
1387
wait()
1388
local c = game.Workspace:GetChildren();
1389
for i = 1, #c do
1390
local hum = c[i]:findFirstChild("Humanoid")
1391
if hum ~= nil and hum.Health ~= 0 then
1392
local head = c[i]:findFirstChild("Head");
1393
if head ~= nil then
1394
local targ = head.Position - derppart.Position;
1395
local mag = targ.magnitude;
1396
if mag <= 7 and c[i].Name ~= Player.Name then 
1397
DOHHit(head,math.random(1,3),derppart)
1398
end 
1399
end 
1400
end 
1401
end 
1402
MMMAGIC2(lacf,3,3,3,0,-1,0,BrickColor.new(random)) 
1403
MMMAGIC3(lacf,1,4,1,0,-1,0,BrickColor.new(random)) 
1404
end
1405
derppart.Parent=nil
1406
end))
1407
for i=0,1,0.2 do
1408
wait()
1409
end
1410
attack=false
1411
end
1412
1413
mouse.KeyDown:connect(function(k)
1414
	k=k:lower()
1415
	if k=='q' then
1416
		if attack==false then
1417
			JumpSpin()
1418
		end
1419
		elseif k=='e' then
1420
		if attack==false then
1421
			Absorber()
1422
		end
1423
	end
1424
end)
1425
1426
1427
local sine = 0
1428
local change = 1
1429
local val = 0
1430
1431
while true do
1432
swait()
1433
sine = sine + change
1434
local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude 
1435
local velderp=RootPart.Velocity.y
1436
hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
1437
if equipped==true or equipped==false then
1438
if attack==false then
1439
idle=idle+1
1440
else
1441
idle=0
1442
end
1443
if idle>=500 then
1444
if attack==false then
1445
--Sheath()
1446
end
1447
end
1448
if RootPart.Velocity.y > 1 and hitfloor==nil then 
1449
Anim="Jump"
1450
if attack==false then
1451
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-30)),.3)
1452
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-20),math.rad(-5),math.rad(30)),.3)
1453
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(50), math.rad(0), math.rad(20)), 0.3)
1454
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(-20)), 0.3)
1455
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(10),math.rad(70),math.rad(0)),.3)
1456
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(-20),math.rad(-70),math.rad(-20)),.3)
1457
handleweld.C0=clerp(handleweld.C0,cf(0,0,.6)*angles(math.rad(100),math.rad(-10),math.rad(0)),.3)
1458
end
1459
elseif RootPart.Velocity.y < -1 and hitfloor==nil then 
1460
Anim="Fall"
1461
if attack==false then
1462
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-30)),.3)
1463
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(20),math.rad(5),math.rad(30)),.3)
1464
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(50), math.rad(0), math.rad(30)), 0.3)
1465
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(-30)), 0.3)
1466
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(10),math.rad(70),math.rad(0)),.3)
1467
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(-20),math.rad(-70),math.rad(-20)),.3)
1468
handleweld.C0=clerp(handleweld.C0,cf(0,0,.6)*angles(math.rad(100),math.rad(-10),math.rad(0)),.3)
1469
end
1470
elseif torvel<1 and hitfloor~=nil then
1471
Anim="Idle"
1472
if attack==false then
1473
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(-30)),.3)
1474
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(-5),math.rad(30)),.3)
1475
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(40), math.rad(0), math.rad(10)), 0.3)
1476
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(-20)), 0.3)
1477
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(5),math.rad(70),math.rad(0)),.3)
1478
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-70),math.rad(-20)),.3)
1479
handleweld.C0=clerp(handleweld.C0,cf(0,0,.6)*angles(math.rad(100),math.rad(-10),math.rad(0)),.3)
1480
end
1481
elseif torvel>2 and torvel<22 and hitfloor~=nil then
1482
Anim="Walk"
1483
if attack==false then
1484
change=3
1485
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(30),math.rad(0),math.rad(-20)),.3)
1486
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-20),math.rad(-5),math.rad(20)),.3)
1487
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(150), math.rad(0), math.rad(10)), 0.3)
1488
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(0), math.rad(-20)), 0.3)
1489
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1490
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(-10)),.3)
1491
handleweld.C0=clerp(handleweld.C0,cf(0,0,.6)*angles(math.rad(90),math.rad(-10),math.rad(0)),.3)
1492
end
1493
elseif torvel>=22 and hitfloor~=nil then
1494
Anim="Run"
1495
if attack==false then
1496
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(30),math.rad(0),math.rad(-20)),.3)
1497
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-20),math.rad(-5),math.rad(20)),.3)
1498
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(150), math.rad(0), math.rad(10)), 0.3)
1499
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(0), math.rad(-20)), 0.3)
1500
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1501
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(-10)),.3)
1502
handleweld.C0=clerp(handleweld.C0,cf(0,0,.6)*angles(math.rad(90),math.rad(-10),math.rad(0)),.3)
1503
end
1504
end
1505
end
1506
end