View difference between Paste ID: Tb9YT08u and wTHn4kTM
SHOW: | | - or go back to the newest paste.
1
--[[ The Card Master script. Made by KillerDarkness0105.
2
Credits to the blackjack NIGHTWING script for the cards.
3
4
script is not finshed yet so ye.. :D
5
6
7
attacklist
8
9-
q = aircombo
9+
10-
r = flipattack
10+
11-
y = ultimateform
11+
print("q = aircombo")
12-
t = ultracombo
12+
print("r = flipattack")
13-
shift = run
13+
print("y = ultimateform")
14-
e = form revert
14+
print("t = ultracombo")
15-
f = knockback blast
15+
print("shift = run")
16-
g = max damage blast
16+
print("e = form revert")
17
print("f = knockback blast")
18
print("g = max damage blast")
19
20
21
22
23
Codex#6685
24
]]--
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
m = game.Players.LocalPlayer
50
	char = m.Character
51
	local txt = Instance.new("BillboardGui", char)
52
	txt.Adornee = char .Head
53
	txt.Name = "_status"
54
	txt.Size = UDim2.new(2, 0, 1.2, 0)
55
	txt.StudsOffset = Vector3.new(-9, 8, 0)
56
	local text = Instance.new("TextLabel", txt)
57
	text.Size = UDim2.new(10, 0, 7, 0)
58
	text.FontSize = "Size24"
59
	text.TextScaled = true
60
	text.TextTransparency = 0
61
	text.BackgroundTransparency = 1 
62
	text.TextTransparency = 0
63
	text.TextStrokeTransparency = 0
64
	text.Font = "Bodoni"
65
	text.TextStrokeColor3 = Color3.new(0,0,0)
66
67
	v=Instance.new("Part")
68
	v.Name = "ColorBrick"
69
	v.Parent=m.Character
70
	v.FormFactor="Symmetric"
71
	v.Anchored=true
72
	v.CanCollide=false
73
	v.BottomSurface="Smooth"
74
	v.TopSurface="Smooth"
75
	v.Size=Vector3.new(10,5,3)
76
	v.Transparency=1
77
	v.CFrame=char.Torso.CFrame
78
	v.BrickColor=BrickColor.new("Really black")
79-
	text.Text = "The Card Master"
79+
80
	text.TextColor3 = Color3.new(255,255,255)
81
	v.Shape="Block"
82
	text.Text = "Card Tricker"
83
84
85
86
87
light=game:GetService("Lighting")
88
Player=game:GetService("Players").LocalPlayer
89
Character=Player.Character 
90
PlayerGui=Player.PlayerGui
91
Backpack=Player.Backpack 
92
Torso=Character.Torso 
93
Head=Character.Head 
94
Humanoid=Character.Humanoid
95
m=Instance.new('Model',Character)
96
LeftArm=Character["Left Arm"] 
97
LeftLeg=Character["Left Leg"] 
98
RightArm=Character["Right Arm"] 
99
RightLeg=Character["Right Leg"] 
100
LS=Torso["Left Shoulder"] 
101
LH=Torso["Left Hip"] 
102
RS=Torso["Right Shoulder"] 
103
RH=Torso["Right Hip"] 
104
Face = Head.face
105
Neck=Torso.Neck
106
it=Instance.new
107
attacktype=1
108
vt=Vector3.new
109
cf=CFrame.new
110
euler=CFrame.fromEulerAnglesXYZ
111
angles=CFrame.Angles
112
cloaked=false
113
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
114
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
115
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
116
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
117
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
118
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
119
RootPart=Character.HumanoidRootPart
120
RootJoint=RootPart.RootJoint
121
RootCF=euler(-1.57,0,3.14)
122
attack = false 
123
attackdebounce = false 
124
deb=false
125
equipped=true
126
hand=false
127
MMouse=nil
128
combo=0
129
mana=0
130
trispeed=.2
131
attackmode='none'
132
local idle=0
133
local Anim="Idle"
134
local Effects={}
135
local gun=false
136
local shoot=false
137
player=nil 
138
mana=0
139
chatfunction = false
140
141
142
143
144
m=Instance.new("ForceField", Character)
145
m.Visible = false
146
147
Humanoid.Animator.Parent = nil
148
Character.Animate.Parent = nil
149
150
mouse=Player:GetMouse()
151
--save shoulders 
152
RSH, LSH=nil, nil 
153
--welds 
154
RW, LW=Instance.new("Weld"), Instance.new("Weld") 
155
RW.Name="Right Shoulder" LW.Name="Left Shoulder"
156
LH=Torso["Left Hip"]
157
RH=Torso["Right Hip"]
158
TorsoColor=Torso.BrickColor
159
function NoOutline(Part)
160
Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
161
end
162
player=Player 
163
ch=Character
164
RSH=ch.Torso["Right Shoulder"] 
165
LSH=ch.Torso["Left Shoulder"] 
166
-- 
167
RSH.Parent=nil 
168
LSH.Parent=nil 
169
-- 
170
RW.Name="Right Shoulder"
171
RW.Part0=ch.Torso 
172
RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) 
173
RW.C1=cf(0, 0.5, 0) 
174
RW.Part1=ch["Right Arm"] 
175
RW.Parent=ch.Torso 
176
-- 
177
LW.Name="Left Shoulder"
178
LW.Part0=ch.Torso 
179
LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) 
180
LW.C1=cf(0, 0.5, 0) 
181
LW.Part1=ch["Left Arm"] 
182
LW.Parent=ch.Torso 
183
184
	Player=game:GetService('Players').LocalPlayer
185
	Character=Player.Character
186
	Mouse=Player:GetMouse()
187
	m=Instance.new('Model',Character)
188
189
190
	local function weldBetween(a, b)
191
	    local weldd = Instance.new("ManualWeld")
192
	    weldd.Part0 = a
193
	    weldd.Part1 = b
194
	    weldd.C0 = CFrame.new()
195
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
196
	    weldd.Parent = a
197
	    return weldd
198
	end
199
	
200
	ArtificialHB = Instance.new("BindableEvent", script)
201
ArtificialHB.Name = "Heartbeat"
202
203
script:WaitForChild("Heartbeat")
204
205
frame = 1 / 60
206
tf = 0
207
allowframeloss = false
208
tossremainder = false
209
lastframe = tick()
210
script.Heartbeat:Fire()
211
212
game:GetService("RunService").Heartbeat:connect(function(s, p)
213
	tf = tf + s
214
	if tf >= frame then
215
		if allowframeloss then
216
			script.Heartbeat:Fire()
217
			lastframe = tick()
218
		else
219
			for i = 1, math.floor(tf / frame) do
220
				script.Heartbeat:Fire()
221
			end
222
			lastframe = tick()
223
		end
224
		if tossremainder then
225
			tf = 0
226
		else
227
			tf = tf - frame * math.floor(tf / frame)
228
		end
229
	end
230
end)
231
232
function swait(num)
233
	if num == 0 or num == nil then
234
		ArtificialHB.Event:wait()
235
	else
236
		for i = 0, num do
237
			ArtificialHB.Event:wait()
238
		end
239
	end
240
end
241
242
243
	function nooutline(part)
244
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
245
	end
246
	
247
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
248
		local fp=it("Part")
249
		fp.formFactor=formfactor
250
		fp.Parent=parent
251
		fp.Reflectance=reflectance
252
		fp.Transparency=transparency
253
		fp.CanCollide=false
254
		fp.Locked=true
255
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
256
		fp.Name=name
257
		fp.Size=size
258
		fp.Position=Character.Torso.Position
259
		nooutline(fp)
260
		fp.Material=material
261
		fp:BreakJoints()
262
		return fp
263
	end
264
	
265
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
266
		local mesh=it(Mesh)
267
		mesh.Parent=part
268
		if Mesh=="SpecialMesh" then
269
			mesh.MeshType=meshtype
270
			mesh.MeshId=meshid
271
		end
272
		mesh.Offset=offset
273
		mesh.Scale=scale
274
		return mesh
275
	end
276
	
277
	function weld(parent,part0,part1,c0,c1)
278
		local weld=it("Weld")
279
		weld.Parent=parent
280
		weld.Part0=part0
281
		weld.Part1=part1
282
		weld.C0=c0
283
		weld.C1=c1
284
		return weld
285
	end
286
	
287
	
288
local function CFrameFromTopBack(at, top, back)
289
local right = top:Cross(back)
290
return CFrame.new(at.x, at.y, at.z,
291
right.x, top.x, back.x,
292
right.y, top.y, back.y,
293
right.z, top.z, back.z)
294
end
295
296
function Triangle(a, b, c)
297
local edg1 = (c-a):Dot((b-a).unit)
298
local edg2 = (a-b):Dot((c-b).unit)
299
local edg3 = (b-c):Dot((a-c).unit)
300
if edg1 <= (b-a).magnitude and edg1 >= 0 then
301
a, b, c = a, b, c
302
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
303
a, b, c = b, c, a
304
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
305
a, b, c = c, a, b
306
else
307
assert(false, "unreachable")
308
end
309
 
310
function lerp(a, b, t) -- Linear interpolation
311
	return a + (b - a)*t
312
end
313
 
314
function slerp(a, b, t) --Spherical interpolation
315
	dot = a:Dot(b)
316
	if dot > 0.99999 or dot < -0.99999 then
317
		return t <= 0.5 and a or b
318
	else
319
		r = math.acos(dot)
320
		return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
321
	end
322
end
323
 
324
function matrixInterpolate(a, b, t)
325
	local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
326
	local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
327
	local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
328
	local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
329
	local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
330
	local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
331
	local t = v1:Dot(v2)
332
	if not (t < 0 or t == 0 or t > 0) then 	-- Failsafe
333
		return CFrame.new()
334
	end
335
	return CFrame.new(
336
	v0.x, v0.y, v0.z,
337
	v1.x, v1.y, v1.z,
338
	v2.x, v2.y, v2.z,
339
	v3.x, v3.y, v3.z)
340
end
341
342
function Lerp(c1,c2,al)
343
	local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
344
	local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
345
	for i,v in pairs(com1) do 
346
		com1[i] = v+(com2[i]-v)*al
347
	end
348
	return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
349
end
350
351
352
local len1 = (c-a):Dot((b-a).unit)
353
local len2 = (b-a).magnitude - len1
354
local width = (a + (b-a).unit*len1 - c).magnitude
355
 
356
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
357
 
358
local list = {}
359
360
local TrailColor = ("White")
361
 
362
if len1 > 0.01 then
363
local w1 = Instance.new('WedgePart', m)
364
game:GetService("Debris"):AddItem(w1,5)
365
w1.Material = "SmoothPlastic"
366
w1.FormFactor = 'Custom'
367
w1.BrickColor = BrickColor.new(TrailColor)
368
w1.Transparency = 0
369
w1.Reflectance = 0
370
w1.Material = "Neon"
371
w1.CanCollide = false
372
NoOutline(w1)
373
local sz = Vector3.new(0.2, width, len1)
374
w1.Size = sz
375
local sp = Instance.new("SpecialMesh",w1)
376
sp.MeshType = "Wedge"
377
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
378
w1:BreakJoints()
379
w1.Anchored = true
380
w1.Parent = workspace
381
w1.Transparency = 0.7
382
table.insert(Effects,{w1,"Disappear",.01})
383
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
384
table.insert(list,w1)
385
end
386
 
387
if len2 > 0.01 then
388
local w2 = Instance.new('WedgePart', m)
389
game:GetService("Debris"):AddItem(w2,5)
390
w2.Material = "SmoothPlastic"
391
w2.FormFactor = 'Custom'
392
w2.BrickColor = BrickColor.new(TrailColor)
393
w2.Transparency = 0
394
w2.Reflectance = 0
395
w2.Material = "SmoothPlastic"
396
w2.CanCollide = false
397
NoOutline(w2)
398
local sz = Vector3.new(0.2, width, len2)
399
w2.Size = sz
400
local sp = Instance.new("SpecialMesh",w2)
401
sp.MeshType = "Wedge"
402
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
403
w2:BreakJoints()
404
w2.Anchored = true
405
w2.Parent = workspace
406
w2.Transparency = 0.7
407
table.insert(Effects,{w2,"Disappear",.01})
408
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
409
table.insert(list,w2)
410
end
411
return unpack(list)
412
end
413
	
414
	
415
so = function(id,par,vol,pit) 
416
coroutine.resume(coroutine.create(function()
417
local sou = Instance.new("Sound",par or workspace)
418
sou.Volume=vol
419
sou.Pitch=pit or 1
420
sou.SoundId=id
421
swait() 
422
sou:play() 
423
game:GetService("Debris"):AddItem(sou,6)
424
end))
425
end
426
 
427
function clerp(a,b,t) 
428
local qa = {QuaternionFromCFrame(a)}
429
local qb = {QuaternionFromCFrame(b)} 
430
local ax, ay, az = a.x, a.y, a.z 
431
local bx, by, bz = b.x, b.y, b.z
432
local _t = 1-t
433
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) 
434
end 
435
 
436
function QuaternionFromCFrame(cf) 
437
local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() 
438
local trace = m00 + m11 + m22 
439
if trace > 0 then 
440
local s = math.sqrt(1 + trace) 
441
local recip = 0.5/s 
442
return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 
443
else 
444
local i = 0 
445
if m11 > m00 then
446
i = 1
447
end
448
if m22 > (i == 0 and m00 or m11) then 
449
i = 2 
450
end 
451
if i == 0 then 
452
local s = math.sqrt(m00-m11-m22+1) 
453
local recip = 0.5/s 
454
return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip 
455
elseif i == 1 then 
456
local s = math.sqrt(m11-m22-m00+1) 
457
local recip = 0.5/s 
458
return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip 
459
elseif i == 2 then 
460
local s = math.sqrt(m22-m00-m11+1) 
461
local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip 
462
end 
463
end 
464
end
465
 
466
function QuaternionToCFrame(px, py, pz, x, y, z, w) 
467
local xs, ys, zs = x + x, y + y, z + z 
468
local wx, wy, wz = w*xs, w*ys, w*zs 
469
local xx = x*xs 
470
local xy = x*ys 
471
local xz = x*zs 
472
local yy = y*ys 
473
local yz = y*zs 
474
local zz = z*zs 
475
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)) 
476
end
477
 
478
function QuaternionSlerp(a, b, t) 
479
local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] 
480
local startInterp, finishInterp; 
481
if cosTheta >= 0.0001 then 
482
if (1 - cosTheta) > 0.0001 then 
483
local theta = math.acos(cosTheta) 
484
local invSinTheta = 1/math.sin(theta) 
485
startInterp = math.sin((1-t)*theta)*invSinTheta 
486
finishInterp = math.sin(t*theta)*invSinTheta  
487
else 
488
startInterp = 1-t 
489
finishInterp = t 
490
end 
491
else 
492
if (1+cosTheta) > 0.0001 then 
493
local theta = math.acos(-cosTheta) 
494
local invSinTheta = 1/math.sin(theta) 
495
startInterp = math.sin((t-1)*theta)*invSinTheta 
496
finishInterp = math.sin(t*theta)*invSinTheta 
497
else 
498
startInterp = t-1 
499
finishInterp = t 
500
end 
501
end 
502
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 
503
end
504
505
--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)
506
507
508
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
509
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
510
end 
511
512
513
514
515
516
517
Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
518
        if hit.Parent==nil then
519
                return
520
        end
521
        h=hit.Parent:FindFirstChild("Humanoid")
522
        for _,v in pairs(hit.Parent:children()) do
523
        if v:IsA("Humanoid") then
524
        h=v
525
        end
526
        end
527
        if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
528
        h=hit.Parent.Parent:FindFirstChild("Humanoid")
529
        end
530
        if hit.Parent.className=="Hat" then
531
        hit=hit.Parent.Parent:findFirstChild("Head")
532
        end
533
        if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
534
        if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
535
        --[[                if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
536
                        return
537
                end]]
538
--                        hs(hit,1.2) 
539
                        c=Instance.new("ObjectValue")
540
                        c.Name="creator"
541
                        c.Value=game:service("Players").LocalPlayer
542
                        c.Parent=h
543
                        game:GetService("Debris"):AddItem(c,.5)
544
                Damage=math.random(minim,maxim)
545
--                h:TakeDamage(Damage)
546
                blocked=false
547
                block=hit.Parent:findFirstChild("Block")
548
                if block~=nil then
549
                print(block.className)
550
                if block.className=="NumberValue" then
551
                if block.Value>0 then
552
                blocked=true
553
                if decreaseblock==nil then
554
                block.Value=block.Value-1
555
                end
556
                end
557
                end
558
                if block.className=="IntValue" then
559
                if block.Value>0 then
560
                blocked=true
561
                if decreaseblock~=nil then
562
                block.Value=block.Value-1
563
                end
564
                end
565
                end
566
                end
567
                if blocked==false then
568
--                h:TakeDamage(Damage)
569
                h.Health=h.Health-Damage
570
                showDamage(hit.Parent,Damage,.5,BrickColor.new("White"))
571
                else
572
                h.Health=h.Health-(Damage/2)
573
                showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue"))
574
                end
575
                h.Health=h.Health-Damage
576
577
578
                
579
                if Type=="Knockdown" then
580
                hum=hit.Parent.Humanoid
581
hum.PlatformStand=true
582
coroutine.resume(coroutine.create(function(HHumanoid)
583
swait(5)
584
HHumanoid.PlatformStand=false
585
end),hum)
586
587
                local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
588
--hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
589
local bodvol=Instance.new("BodyVelocity")
590
bodvol.velocity=angle*knockback
591
bodvol.P=5000
592
bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
593
bodvol.Parent=hit
594
rl=Instance.new("BodyAngularVelocity")
595
rl.P=30000
596
rl.maxTorque=Vector3.new(0,10,10)*5000
597
rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(2,4),math.random(-10,10))
598
rl.Parent=hit
599
game:GetService("Debris"):AddItem(bodvol,.5)
600
game:GetService("Debris"):AddItem(rl,.5)
601
               elseif Type=="Normal" then
602
                vp=Instance.new("BodyVelocity")
603
                vp.P=500
604
                vp.maxForce=Vector3.new(math.huge,0,math.huge)
605
--                vp.velocity=Character.Torso.CFrame.lookVector*Knockback
606
                if KnockbackType==1 then
607
                vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
608
                elseif KnockbackType==2 then
609
                vp.velocity=Property.CFrame.lookVector*knockback
610
                end
611
                if knockback>0 then
612
                        vp.Parent=hit.Parent.Torso
613
                end
614
                game:GetService("Debris"):AddItem(vp,.5)
615
                elseif Type=="Up" then
616
                local bodyVelocity=Instance.new("BodyVelocity")
617
                bodyVelocity.velocity=vt(0,4,0)
618
                bodyVelocity.P=1000
619
                bodyVelocity.maxForce=Vector3.new(1e+009, 1e+009, 1e+009)
620
                bodyVelocity.Parent=hit
621
                game:GetService("Debris"):AddItem(bodyVelocity,1)
622
                rl=Instance.new("BodyAngularVelocity")
623
                rl.P=3000
624
                rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
625
                rl.angularvelocity=Vector3.new(math.random(-20,20),math.random(-20,20),math.random(-20,20))
626
                rl.Parent=hit
627
 game:GetService("Debris"):AddItem(rl,.5)
628
elseif Type=="Slam" then
629
                local bodyVelocity2=Instance.new("BodyVelocity")
630
                bodyVelocity2.velocity=vt(0,4,0)
631
                bodyVelocity2.P=1000
632
                bodyVelocity2.maxForce=Vector3.new(1e+009, 1e+009, 1e+009)
633
                bodyVelocity2.Parent=hit
634
                game:GetService("Debris"):AddItem(bodyVelocity2,1)
635
                rl2=Instance.new("BodyAngularVelocity")
636
                rl2.P=3000
637
                rl2.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
638
                rl2.angularvelocity=Vector3.new(math.random(-20,20),math.random(-20,20),math.random(-20,20))
639
                rl2.Parent=hit
640
 game:GetService("Debris"):AddItem(rl2,.5)
641
                elseif Type=="Snare" then
642
                bp=Instance.new("BodyPosition")
643
                bp.P=2000
644
                bp.D=100
645
                bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
646
                bp.position=hit.Parent.Torso.Position
647
                bp.Parent=hit.Parent.Torso
648
                game:GetService("Debris"):AddItem(bp,1)
649
                elseif Type=="Target" then
650
                if Targetting==false then
651
                ZTarget=hit.Parent.Torso
652
                coroutine.resume(coroutine.create(function(Part) 
653
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
654
                swait(5)
655
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
656
                end),ZTarget)
657
                TargHum=ZTarget.Parent:findFirstChild("Humanoid")
658
                targetgui=Instance.new("BillboardGui")
659
                targetgui.Parent=ZTarget
660
                targetgui.Size=UDim2.new(10,100,10,100)
661
                targ=Instance.new("ImageLabel")
662
                targ.Parent=targetgui
663
                targ.BackgroundTransparency=1
664
                targ.Image="rbxassetid://4834067"
665
                targ.Size=UDim2.new(1,0,1,0)
666
                cam.CameraType="Scriptable"
667
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
668
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
669
                workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
670
                Targetting=true
671
                RocketTarget=ZTarget
672
                for i=1,Property do
673
                --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
674
                if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
675
                swait()
676
                end
677
                --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
678
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
679
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
680
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
681
                end
682
                Targetting=false
683
                RocketTarget=nil
684
                targetgui.Parent=nil
685
                cam.CameraType="Custom"
686
                end
687
                end
688
689
690
691
692
693
694
  
695
696
                        debounce=Instance.new("BoolValue")
697
                        debounce.Name="DebounceHit"
698
                        debounce.Parent=hit.Parent
699
                        debounce.Value=true
700
                        game:GetService("Debris"):AddItem(debounce,Delay)
701
                        c=Instance.new("ObjectValue")
702
                        c.Name="creator"
703
                        c.Value=Player
704
                        c.Parent=h
705
                        game:GetService("Debris"):AddItem(c,.5)
706
                CRIT=false
707
                hitDeb=true
708
                AttackPos=6
709
        end
710
end
711
 
712
showDamage=function(Char,Dealt,du,Color)
713
        m=Instance.new("Model")
714
        m.Name=tostring(Dealt)
715
        h=Instance.new("Humanoid")
716
        h.Health=0
717
        h.MaxHealth=0
718
        h.Parent=m
719
        c=Instance.new("Part")
720
        c.Transparency=0
721
        c.BrickColor=Color
722
        c.Name="Head"
723
        c.TopSurface=0
724
        c.BottomSurface=0
725
        c.formFactor="Plate"
726
        c.Size=Vector3.new(1,.4,1)
727
        ms=Instance.new("CylinderMesh")
728
        ms.Scale=Vector3.new(.8,.8,.8)
729
        if CRIT==true then
730
                ms.Scale=Vector3.new(1,1.25,1)
731
        end
732
        ms.Parent=c
733
        c.Reflectance=0
734
        Instance.new("BodyGyro").Parent=c
735
        c.Parent=m
736
        if Char:findFirstChild("Head")~=nil then
737
        c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0))
738
        elseif Char.Parent:findFirstChild("Head")~=nil then
739
        c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0))
740
        end
741
        f=Instance.new("BodyPosition")
742
        f.P=2000
743
        f.D=100
744
        f.maxForce=Vector3.new(math.huge,math.huge,math.huge)
745
        f.position=c.Position+Vector3.new(0,3,0)
746
        f.Parent=c
747
        game:GetService("Debris"):AddItem(m,.5+du)
748
        c.CanCollide=false
749
        m.Parent=workspace
750
        c.CanCollide=false
751
end
752
753
754
755
756
757
local s = Instance.new("Sound",Character)
758
s.SoundId = "http://www.roblox.com/asset/?id=0"
759
s.Pitch = 0.98
760
s.Volume = 0.70
761
s.Looped = false
762
s:Stop()
763
764
765
local sou3 = Instance.new("Sound",Character)
766
sou3.Volume = 0.30
767
sou3.PlaybackSpeed = 1
768
sou3.Pitch = 1
769
sou3.SoundId = "rbxassetid://1061887796"--0--music
770
sou3.Name = "The Skid Rekter Music"
771
sou3.Looped = true
772
sou3:Stop()
773
774
local Face = Instance.new('Decal',Character.Head)
775
	Face.Name = 'face'
776
	if Character.Head:findFirstChild('face') then
777
	Character.Head['face']:Destroy()
778
	end
779
	Face.Texture = 'rbxassetid://54292338'
780
781
782
783
784
local sou2 = Instance.new("Sound",Character)
785
sou2.Volume = 0.30
786
sou2.PlaybackSpeed = 1
787
sou2.Pitch = 0.88
788
sou2.SoundId = "rbxassetid://0"--music 0
789
sou2.Name = "The Skid Rekter Music"
790
sou2.Looped = true
791
sou2:Stop()
792
--0
793
794
795
local handee = Instance.new("Part")
796
handee.Parent = Character
797
handee.Size = Vector3.new(0.2,0.2,0.2)
798
handee.Archivable = true
799
handee.Transparency = 1
800
handee.CanCollide = false
801
handee.BrickColor = BrickColor.new("White")
802
handee.Material = "Neon"
803
local handeemesh = Instance.new("BlockMesh",handee)
804
handeemesh.Scale = Vector3.new(1,1,1)
805
local handeeweld = Instance.new("Weld")
806
handeeweld.Parent = handee
807
handeeweld.Part0 = LeftArm
808
handeeweld.Part1 = handee
809
handeeweld.C1 = CFrame.new(0, 1.85, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
810
		handeeweld.Part0 = LeftArm
811
812
813
814
815
local eye1 = Instance.new("Part")
816
eye1.Parent = Character
817
eye1.Size = Vector3.new(0.2,0.2,0.2)
818
eye1.Archivable = true
819
eye1.Transparency = 1
820
eye1.CanCollide = false
821
eye1.BrickColor = BrickColor.new("Really red")
822
eye1.Material = "Neon"
823
local eye1mesh = Instance.new("SpecialMesh",eye1)
824
eye1mesh.MeshType = "Sphere"
825
eye1mesh.Scale = Vector3.new(1.2,1.2,1.2)
826
local eye1weld = Instance.new("Weld")
827
eye1weld.Parent = eye1
828
eye1weld.Part0 = Head
829
eye1weld.Part1 = eye1
830
eye1weld.C1 = CFrame.new(.11,-.22,.57)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
831
		eye1weld.Part0 = Head
832
833
834
835
836
local particleemitter2 = Instance.new("ParticleEmitter", handee)
837
particleemitter2.VelocitySpread = 180
838
particleemitter2.Lifetime = NumberRange.new(2)
839
particleemitter2.Texture = "http://roblox.com/asset/?id=284205403"
840
particleemitter2.Speed = NumberRange.new(0.5)
841
particleemitter2.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 1)})
842
particleemitter2.RotSpeed = NumberRange.new(-45, 45)
843
particleemitter2.Rate = 128
844
particleemitter2.Rotation = NumberRange.new(-45, 45)
845
particleemitter2.Acceleration = Vector3.new(0,3,0)
846
particleemitter2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(0.701, 0), NumberSequenceKeypoint.new(1, 1)})
847
particleemitter2.LightEmission = 0.8
848
particleemitter2.Color = ColorSequence.new(Color3.new(0, 0, 255), Color3.new(255,0,0))
849
850
851
particleemitter2.Enabled = false
852
853
854
855
--[[local particleemitter3 = Instance.new("ParticleEmitter", handee)
856
particleemitter3.VelocitySpread = 180
857
particleemitter3.Lifetime = NumberRange.new(2)
858
particleemitter3.Texture = "http://roblox.com/asset/?id=284205403"
859
particleemitter3.Speed = NumberRange.new(0.5)
860
particleemitter3.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 1)})
861
particleemitter3.RotSpeed = NumberRange.new(-45, 45)
862
particleemitter3.Rate = 128
863
particleemitter3.Rotation = NumberRange.new(-45, 45)
864
particleemitter3.Acceleration = Vector3.new(0,3,0)
865
particleemitter3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(0.701, 0), NumberSequenceKeypoint.new(1, 1)})
866
particleemitter3.LightEmission = 0.8
867
particleemitter3.Color = ColorSequence.new(Color3.new(255, 0, 0), Color3.new(255,192,0))
868
869
particleemitter3.Enabled = true
870
--]]
871
872
local particleemitter = Instance.new("ParticleEmitter", eye1)
873
particleemitter.VelocitySpread = 180
874
particleemitter.Lifetime = NumberRange.new(2)
875
particleemitter.Texture = "http://roblox.com/asset/?id=284205403"
876
particleemitter.Speed = NumberRange.new(0.5)
877
particleemitter.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 1)})
878
particleemitter.RotSpeed = NumberRange.new(-45, 45)
879
particleemitter.Rate = 80
880
particleemitter.Rotation = NumberRange.new(-45, 45)
881
particleemitter.Acceleration = Vector3.new(1,3,0)
882
particleemitter.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(0.701, 0), NumberSequenceKeypoint.new(1, 1)})
883
particleemitter.LightEmission = 0.8
884
particleemitter.Color = ColorSequence.new(Color3.new(0, 0, 0), Color3.new(0,0,0))
885
886
887
888
889
local particleemitter4 = Instance.new("ParticleEmitter", X)
890
particleemitter4.VelocitySpread = 180
891
particleemitter4.Lifetime = NumberRange.new(2)
892
particleemitter4.Texture = "http://roblox.com/asset/?id=284205403"
893
particleemitter4.Speed = NumberRange.new(0.5)
894
particleemitter4.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 1)})
895
particleemitter4.RotSpeed = NumberRange.new(-45, 45)
896
particleemitter4.Rate = 128
897
particleemitter4.Rotation = NumberRange.new(-45, 45)
898
particleemitter4.Acceleration = Vector3.new(0,3,0)
899
particleemitter4.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(0.701, 0), NumberSequenceKeypoint.new(1, 1)})
900
particleemitter4.LightEmission = 0.8
901
particleemitter4.Color = ColorSequence.new(Color3.new(255, 0, 0), Color3.new(255,192,0))
902
903
904
particleemitter4.Enabled = false
905
906
--NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 1)})
907
908
particleemitter.Enabled = false
909
910
New = function(Object, Parent, Name, Data)
911
	local Object = Instance.new(Object)
912
	for Index, Value in pairs(Data or {}) do
913
		Object[Index] = Value
914
	end
915
	Object.Parent = Parent
916
	Object.Name = Name
917
	return Object
918
end
919
920
--------
921
--green card
922
-------
923
Handle1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Handle1",Vector3.new(0.874639988, 0.200000003, 0.538240016))
924
Handle1weld=weld(m,Character["Right Arm"],Handle1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.29614592, -0.0330114365, -0.0364151001, -2.18557464e-011, 1.00000083, 0.00029155612, 1, 2.18539804e-011, 6.26317401e-012, 6.25671433e-012, 0.000291556091, -1.00000095))
925
HitboxA=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","HitboxA",Vector3.new(5.8092001, 5.8092001, 5.8092001))
926
HitboxAweld=weld(m,Handle1,HitboxA,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.86238098e-005, 0, -6.48498535e-005, 1.00000346, 3.84204577e-013, 7.42121483e-006, -3.83895037e-013, 1, 2.26815094e-016, -7.42141856e-006, -6.11056344e-016, 1.00000393))
927
mesh("BlockMesh",HitboxA,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.899999976, 1))
928
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.0092001, 0.200000003, 0.672799945))
929
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000140190125, 0, -0.000114440918, 1.0000025, 3.8331442e-013, 7.18253432e-006, -3.83076085e-013, 1, -3.10081821e-016, -7.18273805e-006, 1.21430643e-017, 1.0000031))
930
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.302759975, 1))
931
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
932
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.403881311, 0.168102264, -0.0336685181, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
933
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
934
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
935
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370234966, 0.100944519, -0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
936
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
937
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
938
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168125153, -0.100980163, 0.0336675644, 0.000573056866, 2.98486214e-008, -1.0000056, 1.00000012, 2.69930268e-007, 0.000581997563, 2.69947321e-007, -1.00000715, -2.96909342e-008))
939
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
940
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
941
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403671861, -0.168109894, 0.0336675644, -0.999998152, -5.05912532e-013, -9.94937727e-006, -1.0142976e-006, -1.25001372e-011, 1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
942
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
943
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
944
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403880239, -0.168109894, -0.0336685181, 0.999998152, 5.0591199e-013, 1.00386096e-005, 1.10352994e-006, 1.25001372e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
945
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
946
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
947
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168125153, -0.100980163, 0.0336675644, 0.000573056866, 2.98486214e-008, -1.0000056, 1.00000012, 2.69930268e-007, 0.000581997563, 2.69947321e-007, -1.00000715, -2.96909342e-008))
948
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
949
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
950
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336615801, 0.16809082, -0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
951
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
952
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
953
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.16796875, -0.10090518, 0.0336675644, 0.000573500176, -2.98232514e-008, -1.0000056, -1.00000012, -1.49107777e-007, -0.000582440873, -1.49089473e-007, 1.00000715, -2.9910705e-008))
954
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
955
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
956
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16834259, -0.403576255, 0.0336675644, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
957
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
958
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
959
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403676748, -0.168113708, 0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
960
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
961
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
962
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370247602, 0.23550415, -0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
963
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
964
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
965
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.16796875, -0.10090518, 0.0336675644, 0.000573500176, -2.98232514e-008, -1.0000056, -1.00000012, -1.49107777e-007, -0.000582440873, -1.49089473e-007, 1.00000715, -2.9910705e-008))
966
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
967
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
968
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.3366189, 0.168102264, -0.0336685181, -0.999998152, -5.05912532e-013, -9.94937727e-006, -1.0142976e-006, -1.25001372e-011, 1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
969
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
970
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
971
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370234966, 0.100944519, 0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
972
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
973
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
974
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168281555, -0.100830197, 0.0336685181, -0.000573068857, 3.10669677e-008, 1.0000056, -1.00000012, -2.23650019e-007, -0.000582009437, 2.23630153e-007, -1.00000715, 3.11978283e-008))
975
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0686255917, 0.287285566))
976
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
977
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000113844872, 5.34057617e-005, 0.0336675644, 0.999998152, 5.05974602e-013, 1.00088655e-005, 1.07378582e-006, 1.25001381e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
978
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.438665539, 0.0968831778, 0.0686255991))
979
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
980
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168281555, -0.100830197, 0.0336685181, -0.000573278638, -1.25004191e-011, 1.0000056, -1.00000012, -4.98838059e-013, -0.000582219218, 5.06288913e-013, -1.00000715, -1.20206492e-011))
981
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
982
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
983
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168125153, -0.101054907, 0.0336675644, -0.000573500176, -2.98486285e-008, 1.0000056, 1.00000012, -7.45608943e-008, 0.000582440873, 7.45434434e-008, 1.00000715, 2.9891396e-008))
984
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
985
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
986
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168125153, -0.101054907, 0.0336675644, -0.000573500176, -2.98486285e-008, 1.0000056, 1.00000012, -7.45608943e-008, 0.000582440873, 7.45434434e-008, 1.00000715, 2.9891396e-008))
987
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
988
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
989
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370035887, -0.235523224, 0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
990
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
991
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
992
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.33641088, 0.168117523, -0.0336685181, 0.999998152, 5.0591199e-013, 1.00386096e-005, 1.10352994e-006, 1.25001372e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
993
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
994
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
995
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370036006, -0.235523224, -0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
996
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
997
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
998
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.34057617e-005, 0.000113844872, -0.0336685181, 0.00057326362, 2.39958297e-007, -1.0000056, -1.00000012, 6.26174241e-008, -0.000582204317, 6.2479657e-008, 1.00000715, 2.39993909e-007))
999
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.145997554, 0.0995743647, 0.0686255991))
1000
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1001
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.33641088, 0.168117523, 0.0336675644, 0.999998152, 5.0591199e-013, 1.00386096e-005, 1.10352994e-006, 1.25001372e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
1002
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1003
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1004
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168292999, 0.336523175, 0.0336675644, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
1005
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1006
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1007
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.3366189, 0.168102264, 0.0336675644, -0.999998152, -5.05912532e-013, -9.94937727e-006, -1.0142976e-006, -1.25001372e-011, 1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
1008
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1009
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1010
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168338776, 0.403784871, 0.0336675644, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
1011
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1012
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1013
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168292999, 0.336523175, -0.0336685181, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
1014
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1015
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1016
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336615801, 0.16809082, 0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1017
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1018
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1019
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168338776, 0.403784871, -0.0336685181, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
1020
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1021
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1022
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.403881311, 0.168102264, 0.0336666107, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1023
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1024
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1025
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403880239, -0.168109894, 0.0336675644, 0.999998152, 5.0591199e-013, 1.00386096e-005, 1.10352994e-006, 1.25001372e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
1026
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1027
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1028
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370247602, 0.23550415, 0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1029
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1030
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1031
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370010257, -0.100978851, -0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1032
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1033
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1034
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16834259, -0.403576255, -0.0336685181, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
1035
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1036
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1037
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.336412072, -0.168121338, -0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1038
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1039
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1040
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403676867, -0.168113708, -0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1041
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1042
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1043
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168312073, -0.336315274, -0.0336685181, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
1044
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1045
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1046
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.336411953, -0.168121338, 0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1047
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1048
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1049
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.34057617e-005, 0.000113844872, 0.0336675644, 0.00057326362, 2.39958297e-007, -1.0000056, -1.00000012, 6.26174241e-008, -0.000582204317, 6.2479657e-008, 1.00000715, 2.39993909e-007))
1050
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.145997554, 0.0995743647, 0.0686255991))
1051
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1052
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000113844872, 5.34057617e-005, -0.0336685181, 0.999998152, 5.05974602e-013, 1.00088655e-005, 1.07378582e-006, 1.25001381e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
1053
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.438665539, 0.0968831778, 0.0686255991))
1054
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1055
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168312073, -0.336315274, 0.0336675644, 0.000573248719, 1.25004182e-011, -1.0000056, -1.00000012, -4.98775825e-013, -0.000582189416, -5.06288913e-013, 1.00000715, 1.20206492e-011))
1056
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1057
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1058
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370010138, -0.100978851, 0.0336675644, -1.0000006, 1.13307885e-006, -8.87716305e-006, -4.40966687e-006, -6.55631327e-010, 1.00000775, 1.13307692e-006, 1.00000358, 6.65452582e-010))
1059
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1060
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1061
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000113844872, 5.34057617e-005, -0.0336685181, 0.999998152, 5.05974602e-013, 1.00088655e-005, 1.07378582e-006, 1.25001381e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
1062
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.403679937, 0.0773719698, 0.0881367922))
1063
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1064
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403671861, -0.168109894, -0.0336685181, -0.999998152, -5.05912532e-013, -9.94937727e-006, -1.0142976e-006, -1.25001372e-011, 1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
1065
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1066
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1067
Partweld=weld(m,Handle1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000113844872, 5.34057617e-005, 0.0336675644, 0.999998152, 5.05974602e-013, 1.00088655e-005, 1.07378582e-006, 1.25001381e-011, -1.00001013, -5.06285443e-013, 1.00000715, 1.20206544e-011))
1068
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.403679937, 0.0773719698, 0.0881367922))
1069
mesh("BlockMesh",Handle1,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.336399972, 1))
1070
1071
1072
--red card
1073
1074
1075
Handle2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really red","Handle",Vector3.new(0.874639988, 0.200000003, 0.538240016))
1076
Handle2weld=weld(m,Character["Right Arm"],Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.22525215, -0.233011246, 0.324962616, -2.18563345e-011, 0.706900716, 0.70731312, 1, 1.10235857e-011, 1.98833918e-011, 6.25844428e-012, 0.707313061, -0.706900775))
1077
HitboxB=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","HitboxB",Vector3.new(5.8092001, 5.8092001, 5.8092001))
1078
HitboxBweld=weld(m,Handle2,HitboxB,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.14440918e-005, 0, -7.62939453e-006, 1.00000072, 3.8386655e-013, 7.06315041e-006, -3.83776344e-013, 1, 2.7929048e-016, -7.30156898e-006, -3.23525928e-016, 1.00000072))
1079
mesh("BlockMesh",HitboxB,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.899999976, 1))
1080
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"New Yeller","Part",Vector3.new(1.0092001, 0.200000003, 0.672799945))
1081
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.52587891e-005, 0, -2.47955322e-005, 1.00000119, 3.8383359e-013, 6.85453415e-006, -3.83656648e-013, 1, 3.27862737e-016, -7.53998756e-006, -4.11996826e-016, 1.00000119))
1082
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.302759975, 1))
1083
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1084
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.40378952, 0.168237686, -0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1085
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1086
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1087
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370145798, 0.101079941, -0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1088
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1089
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1090
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.16825676, -0.100891113, 0.0336675644, 0.000573158264, 2.98486249e-008, -1.00000477, 0.999999404, 2.69930268e-007, 0.000581979752, 2.69947151e-007, -1.00000715, -2.96909235e-008))
1091
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1092
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1093
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403764725, -0.167982101, 0.0336675644, -0.999997497, -5.06466397e-013, -9.89437103e-006, -1.07288361e-006, -1.2501793e-011, 1.0000093, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1094
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1095
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1096
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403787613, -0.168233871, -0.0336675644, 0.999997616, 5.06466397e-013, 9.983778e-006, 1.1920929e-006, 1.25017921e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1097
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1098
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1099
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.16825676, -0.100891113, 0.0336675644, 0.000573158264, 2.98486249e-008, -1.00000477, 0.999999404, 2.69930268e-007, 0.000581979752, 2.69947151e-007, -1.00000715, -2.96909235e-008))
1100
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
1101
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1102
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336524963, 0.168228149, -0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1103
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1104
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1105
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168094635, -0.100999832, 0.0336675644, 0.000573605299, -2.98232479e-008, -1.00000477, -0.999999523, -1.49107777e-007, -0.000582337379, -1.49089374e-007, 1.00000715, -2.99106517e-008))
1106
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1107
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1108
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168212891, -0.403669357, 0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1109
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1110
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1111
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403766632, -0.167980194, 0.0336694717, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1112
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1113
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1114
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370157242, 0.235637665, -0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1115
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1116
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1117
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168094635, -0.100999832, 0.0336675644, 0.000573605299, -2.98232479e-008, -1.00000477, -0.999999523, -1.49107777e-007, -0.000582337379, -1.49089374e-007, 1.00000715, -2.99106517e-008))
1118
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
1119
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1120
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336526871, 0.168230057, -0.0336675644, -0.999997497, -5.06466397e-013, -9.89437103e-006, -1.07288361e-006, -1.2501793e-011, 1.0000093, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1121
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1122
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1123
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370145798, 0.101079941, 0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1124
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1125
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1126
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168149948, -0.100921631, 0.0336675644, -0.000573158264, 3.10669641e-008, 1.00000477, -0.999999404, -2.23650019e-007, -0.000581979752, 2.23630025e-007, -1.00000715, 3.11977928e-008))
1127
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0686255917, 0.287285566))
1128
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1129
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-005, -8.01086426e-005, 0.0336675644, 0.999997497, 5.06527112e-013, 9.92417336e-006, 1.1920929e-006, 1.2501793e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1130
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.438665539, 0.0968831778, 0.0686255991))
1131
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1132
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168151855, -0.100923538, 0.0336675644, -0.000573396683, -1.25020758e-011, 1.00000477, -0.999999464, -4.9939046e-013, -0.000582128763, 5.06891404e-013, -1.00000715, -1.20223718e-011))
1133
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1134
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1135
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.167991638, -0.100963593, 0.0336675644, -0.000573605299, -2.9848632e-008, 1.00000477, 0.999999523, -7.45609015e-008, 0.000582337379, 7.45433866e-008, 1.00000715, 2.98913676e-008))
1136
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1137
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1138
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.167991638, -0.100963593, 0.0336675644, -0.000573605299, -2.9848632e-008, 1.00000477, 0.999999523, -7.45609015e-008, 0.000582337379, 7.45433866e-008, 1.00000715, 2.98913676e-008))
1139
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
1140
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1141
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370128632, -0.235393524, 0.0336685181, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1142
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1143
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1144
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336503983, 0.167989731, -0.0336675644, 0.999997616, 5.06466397e-013, 9.983778e-006, 1.1920929e-006, 1.25017921e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1145
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1146
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1147
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370128632, -0.235393524, -0.0336666107, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1148
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1149
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1150
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.01086426e-005, 2.0980835e-005, -0.0336675644, 0.000573247671, 2.39958325e-007, -1.00000477, -0.999999523, 6.26174312e-008, -0.000582069159, 6.24795931e-008, 1.00000715, 2.3999371e-007))
1151
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.145997554, 0.0995743647, 0.0686255991))
1152
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1153
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336503983, 0.167989731, 0.0336675644, 0.999997616, 5.06466397e-013, 9.983778e-006, 1.1920929e-006, 1.25017921e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1154
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1155
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1156
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168420792, 0.336431503, 0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1157
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1158
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1159
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336526871, 0.168230057, 0.0336675644, -0.999997497, -5.06466397e-013, -9.89437103e-006, -1.07288361e-006, -1.2501793e-011, 1.0000093, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1160
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1161
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1162
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168464661, 0.403690338, 0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1163
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1164
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1165
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168420792, 0.336431503, -0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1166
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1167
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1168
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336524963, 0.168228149, 0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1169
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1170
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1171
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168464661, 0.403690338, -0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1172
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1173
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1174
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.40378952, 0.168237686, 0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1175
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1176
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1177
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403787613, -0.168233871, 0.0336675644, 0.999997616, 5.06466397e-013, 9.983778e-006, 1.1920929e-006, 1.25017921e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1178
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1179
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1180
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370157242, 0.235637665, 0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1181
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1182
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1183
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370100021, -0.100845337, -0.0336666107, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1184
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1185
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1186
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168212891, -0.403669357, -0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1187
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1188
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1189
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.336503983, -0.167987823, -0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1190
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1191
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1192
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403766632, -0.167980194, -0.033665657, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1193
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1194
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1195
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168182373, -0.336408615, -0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1196
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1197
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1198
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.336503983, -0.167987823, 0.0336675644, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1199
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1200
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1201
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.01086426e-005, 2.0980835e-005, 0.0336675644, 0.000573247671, 2.39958325e-007, -1.00000477, -0.999999523, 6.26174312e-008, -0.000582069159, 6.24795931e-008, 1.00000715, 2.3999371e-007))
1202
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.145997554, 0.0995743647, 0.0686255991))
1203
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1204
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-005, -8.01086426e-005, -0.0336675644, 0.999997497, 5.06527112e-013, 9.92417336e-006, 1.1920929e-006, 1.2501793e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1205
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.438665539, 0.0968831778, 0.0686255991))
1206
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1207
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168182373, -0.336408615, 0.0336675644, 0.000573247671, 1.25020723e-011, -1.00000477, -0.999999523, -4.99328877e-013, -0.000582069159, -5.06891404e-013, 1.00000715, 1.20223718e-011))
1208
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1209
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1210
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370100021, -0.100845337, 0.0336685181, -0.999999881, 1.13307874e-006, -8.82148743e-006, -4.529953e-006, -6.55632992e-010, 1.00000679, 1.13307624e-006, 1.00000358, 6.65409061e-010))
1211
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1212
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1213
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-005, -8.01086426e-005, -0.0336675644, 0.999997497, 5.06527112e-013, 9.92417336e-006, 1.1920929e-006, 1.2501793e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1214
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.403679937, 0.0773719698, 0.0881367922))
1215
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1216
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403764725, -0.167982101, -0.0336675644, -0.999997497, -5.06466397e-013, -9.89437103e-006, -1.07288361e-006, -1.2501793e-011, 1.0000093, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1217
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1218
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1219
Partweld=weld(m,Handle2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-005, -8.01086426e-005, 0.0336675644, 0.999997497, 5.06527112e-013, 9.92417336e-006, 1.1920929e-006, 1.2501793e-011, -1.00000918, -5.06887067e-013, 1.00000715, 1.20223779e-011))
1220
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.403679937, 0.0773719698, 0.0881367922))
1221
mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.336399972, 1))
1222
1223
--blue card
1224
1225
Handle3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Toothpaste","Handle",Vector3.new(0.874639988, 0.200000003, 0.538240016))
1226
Handle3weld=weld(m,Character["Right Arm"],Handle3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.17321014, 0.166988373, -0.376420975, -2.18565339e-011, 0.70731312, -0.706900716, 1, 1.98822694e-011, -1.10249414e-011, 6.25667443e-012, -0.706900656, -0.70731318))
1227
HitboxC=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","HitboxC",Vector3.new(5.8092001, 5.8092001, 5.8092001))
1228
HitboxCweld=weld(m,Handle3,HitboxC,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.00543213e-005, 0, -2.28881836e-005, 1.00000072, 3.8378762e-013, 7.48038292e-006, -3.83802365e-013, 1, 2.56739074e-016, -7.03334808e-006, -3.45209972e-016, 1.00000083))
1229
mesh("BlockMesh",HitboxC,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.899999976, 1))
1230
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"White","Part",Vector3.new(1.0092001, 0.200000003, 0.672799945))
1231
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(8.96453857e-005, 0, 0, 1.00000131, 3.83072046e-013, 7.56978989e-006, -3.83100669e-013, 1, -3.73832909e-016, -6.67572021e-006, 2.01227923e-016, 1.00000143))
1232
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.302759975, 1))
1233
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1234
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.403652191, 0.168144226, -0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1235
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1236
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1237
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370010376, 0.100990295, -0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1238
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1239
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1240
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168167114, -0.100755692, 0.0336675644, 0.000573158264, 2.98486178e-008, -1.00000477, 0.999999404, 2.69930268e-007, 0.000582277775, 2.69947122e-007, -1.00000715, -2.96908667e-008))
1241
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1242
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1243
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403900146, -0.168071747, 0.0336675644, -0.999997497, -5.06629461e-013, -1.00135803e-005, -1.01327896e-006, -1.25000375e-011, 1.00000918, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1244
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1245
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1246
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403652191, -0.168144226, -0.0336675644, 0.999997497, 5.06629461e-013, 1.01625919e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1247
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1248
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1249
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168167114, -0.100755692, 0.0336675644, 0.000573158264, 2.98486178e-008, -1.00000477, 0.999999404, 2.69930268e-007, 0.000582277775, 2.69947122e-007, -1.00000715, -2.96908667e-008))
1250
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
1251
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1252
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336391449, 0.168142319, -0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1253
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1254
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1255
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.16799736, -0.101131439, 0.0336675644, 0.000573456287, -2.9823255e-008, -1.00000453, -0.999999404, -1.49107777e-007, -0.000582545996, -1.4908936e-007, 1.00000715, -2.99107121e-008))
1256
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1257
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1258
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168302536, -0.403802872, 0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1259
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1260
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1261
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403903961, -0.168067932, 0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1262
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1263
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1264
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.37002182, 0.235544205, -0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1265
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1266
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1267
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.16799736, -0.101131439, 0.0336675644, 0.000573456287, -2.9823255e-008, -1.00000453, -0.999999404, -1.49107777e-007, -0.000582545996, -1.4908936e-007, 1.00000715, -2.99107121e-008))
1268
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
1269
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1270
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336391449, 0.168138504, -0.0336675644, -0.999997497, -5.06629461e-013, -1.00135803e-005, -1.01327896e-006, -1.25000375e-011, 1.00000918, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1271
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1272
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1273
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.370010376, 0.100990295, 0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1274
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1275
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1276
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168243408, -0.101055145, 0.0336675644, -0.000573158264, 3.10669712e-008, 1.00000477, -0.999999404, -2.23650019e-007, -0.000582277775, 2.23630025e-007, -1.00000715, 3.11978496e-008))
1277
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0686255917, 0.287285566))
1278
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1279
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000110626221, 1.14440918e-005, 0.0336675644, 0.999997377, 5.06689309e-013, 1.01029873e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1280
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.438665539, 0.0968831778, 0.0686255991))
1281
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1282
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168243408, -0.101053238, 0.0336675644, -0.000573307276, -1.25003194e-011, 1.00000453, -0.999999404, -4.99556126e-013, -0.000582367182, 5.07092632e-013, -1.00000715, -1.20206076e-011))
1283
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1284
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1285
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168081284, -0.100828171, 0.0336675644, -0.000573456287, -2.98486249e-008, 1.00000453, 0.999999404, -7.45609015e-008, 0.000582545996, 7.45433795e-008, 1.00000715, 2.98913676e-008))
1286
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0834272057, 0.0659343898, 0.29401359))
1287
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1288
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168081284, -0.100828171, 0.0336675644, -0.000573456287, -2.98486249e-008, 1.00000453, 0.999999404, -7.45609015e-008, 0.000582545996, 7.45433795e-008, 1.00000715, 2.98913676e-008))
1289
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=111893941",Vector3.new(0, 0, 0),Vector3.new(0.0793904066, 0.0733351931, 0.287285566))
1290
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1291
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370262146, -0.23548317, 0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1292
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1293
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1294
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336639404, 0.168081284, -0.0336675644, 0.999997497, 5.06629461e-013, 1.01625919e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1295
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1296
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1297
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370262146, -0.23548317, -0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1298
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1299
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1300
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.33514404e-005, -0.000108718872, -0.0336675644, 0.000573188066, 2.39958325e-007, -1.00000453, -0.999999404, 6.26174312e-008, -0.000582367182, 6.24796286e-008, 1.00000715, 2.3999371e-007))
1301
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.145997554, 0.0995743647, 0.0686255991))
1302
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1303
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336639404, 0.168081284, 0.0336675644, 0.999997497, 5.06629461e-013, 1.01625919e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1304
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1305
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1306
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168329239, 0.336299896, 0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1307
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1308
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1309
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336391449, 0.168138504, 0.0336675644, -0.999997497, -5.06629461e-013, -1.00135803e-005, -1.01327896e-006, -1.25000375e-011, 1.00000918, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1310
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1311
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1312
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168373108, 0.403558731, 0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1313
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1314
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1315
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168329239, 0.336299896, -0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1316
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1317
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1318
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.336391449, 0.168142319, 0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1319
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1320
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1321
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.168373108, 0.403558731, -0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1322
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1323
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1324
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.403652191, 0.168144226, 0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1325
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1326
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1327
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403652191, -0.168144226, 0.0336675644, 0.999997497, 5.06629461e-013, 1.01625919e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1328
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1329
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1330
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.37002182, 0.235544205, 0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1331
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1332
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1333
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370235443, -0.100938797, -0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1334
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1335
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1336
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168302536, -0.403802872, -0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1337
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1338
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1339
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.336641312, -0.168083191, -0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1340
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1341
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1342
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403903961, -0.168067932, -0.0336675644, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1343
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1344
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1345
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168273926, -0.336544037, -0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1346
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1347
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1348
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.336641312, -0.168083191, 0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1349
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1350
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1351
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.33514404e-005, -0.000108718872, 0.0336675644, 0.000573188066, 2.39958325e-007, -1.00000453, -0.999999404, 6.26174312e-008, -0.000582367182, 6.24796286e-008, 1.00000715, 2.3999371e-007))
1352
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.145997554, 0.0995743647, 0.0686255991))
1353
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1354
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000110626221, 1.14440918e-005, -0.0336675644, 0.999997377, 5.06689309e-013, 1.01029873e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1355
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.438665539, 0.0968831778, 0.0686255991))
1356
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1357
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.168273926, -0.336544037, 0.0336675644, 0.000573188066, 1.25003176e-011, -1.00000453, -0.999999404, -4.99492808e-013, -0.000582367182, -5.07092632e-013, 1.00000715, 1.20206076e-011))
1358
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1359
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1360
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.370235443, -0.100938797, 0.0336685181, -0.999999762, 1.13307874e-006, -9.08970833e-006, -4.35113907e-006, -6.55631216e-010, 1.00000668, 1.13307613e-006, 1.00000358, 6.65693278e-010))
1361
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.0672799945, 0.0679528043, 0.0679528043))
1362
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1363
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000110626221, 1.14440918e-005, -0.0336675644, 0.999997377, 5.06689309e-013, 1.01029873e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1364
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.403679937, 0.0773719698, 0.0881367922))
1365
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1366
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.403900146, -0.168071747, -0.0336675644, -0.999997497, -5.06629461e-013, -1.00135803e-005, -1.01327896e-006, -1.25000375e-011, 1.00000918, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1367
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0242207684, 0.0511327684, 0.0235479958))
1368
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1369
Partweld=weld(m,Handle3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000110626221, 1.14440918e-005, 0.0336675644, 0.999997377, 5.06689309e-013, 1.01029873e-005, 1.1920929e-006, 1.25000392e-011, -1.00000906, -5.07090897e-013, 1.00000715, 1.20206128e-011))
1370
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.403679937, 0.0773719698, 0.0881367922))
1371
mesh("BlockMesh",Handle3,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.336399972, 1))
1372
1373
1374
1375
1376
1377
1378
----------------------------------------------------------------------------------------
1379
1380
Throwing = false
1381
1382
function attackone()
1383
attack = true
1384
Throwing = true
1385
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,4,5,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1386
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,7,10,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1387
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,10,12,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1388
for i = 0,1,0.1 do
1389
swait()
1390
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.2)
1391
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-80)),.2)
1392
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)),.2)
1393
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
1394
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(0)),.2)
1395
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0)),.2)
1396
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1397
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1398
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1399
end
1400
so("http://roblox.com/asset/?id=10209640",RightArm,1,2) 
1401
coroutine.resume(coroutine.create(function()
1402
while Throwing == true do
1403
wait()
1404
so("http://roblox.com/asset/?id=10209640",Handle1,0.4,3) 
1405
so("http://roblox.com/asset/?id=10209640",Handle2,0.4,3) 
1406
so("http://roblox.com/asset/?id=10209640",Handle3,0.4,3) 
1407
end
1408
end))
1409
for i = 0,2,0.02 do
1410
swait()
1411
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1412
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1413
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1414
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1415
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1416
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1417
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1418
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1419
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1420
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1421
end
1422
con1:disconnect()
1423
con2:disconnect()
1424
con3:disconnect()
1425
attack = false
1426
Throwing = false
1427
end
1428
1429
function attacktwo()
1430
attack = true
1431
Throwing = true
1432
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,4,5,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1433
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,7,10,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1434
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,10,12,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1435
for i = 0,1,0.1 do
1436
swait()
1437
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.2)
1438
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-80)),.2)
1439
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)),.2)
1440
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
1441
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(0)),.2)
1442
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0)),.2)
1443
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1444
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1445
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1446
end
1447
so("http://roblox.com/asset/?id=10209640",RightArm,1,2) 
1448
coroutine.resume(coroutine.create(function()
1449
while Throwing == true do
1450
wait()
1451
so("http://roblox.com/asset/?id=10209640",Handle1,0.4,3) 
1452
so("http://roblox.com/asset/?id=10209640",Handle2,0.4,3) 
1453
so("http://roblox.com/asset/?id=10209640",Handle3,0.4,3) 
1454
end
1455
end))
1456
for i = 0,4,0.08 do
1457
swait()
1458
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1459
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0 -360*i)),.2)
1460
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1461
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(30), math.rad(90)),.2)
1462
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1463
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1464
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1465
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1466
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1467
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1468
end
1469
con1:disconnect()
1470
con2:disconnect()
1471
con3:disconnect()
1472
attack = false
1473
Throwing = false
1474
end
1475
1476
1477
1478
1479
1480
1481
function attackthree()
1482
attack = true
1483
Throwing = true
1484
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,4,5,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1485
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,7,10,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1486
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,10,12,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1487
for i = 0,1,0.1 do
1488
swait()
1489
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.2)
1490
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-80)),.2)
1491
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)),.2)
1492
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
1493
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(0)),.2)
1494
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0)),.2)
1495
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1496
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1497
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1498
end
1499
so("http://roblox.com/asset/?id=10209640",RightArm,1,2) 
1500
coroutine.resume(coroutine.create(function()
1501
while Throwing == true do
1502
wait()
1503
so("http://roblox.com/asset/?id=10209640",Handle1,0.4,3) 
1504
so("http://roblox.com/asset/?id=10209640",Handle2,0.4,3) 
1505
so("http://roblox.com/asset/?id=10209640",Handle3,0.4,3) 
1506
end
1507
end))
1508
for i = 0,0.5,0.02 do
1509
swait()
1510
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1511
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1512
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1513
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1514
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1515
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1516
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1517
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,-10,-2)*angles(10,0+30*i,0),.2)
1518
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1519
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1520
end
1521
con1:disconnect()
1522
con2:disconnect()
1523
con3:disconnect()
1524
attack = false
1525
Throwing = false
1526
end
1527
1528
1529
1530
function attackfour()
1531
attack = true
1532
Throwing = true
1533
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,4,5,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1534
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,7,10,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1535
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,10,12,math.random(0,0),"Knockdown",RootPart,.2,1) end)  
1536
for i = 0,1,0.1 do
1537
swait()
1538
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.2)
1539
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-80)),.2)
1540
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)),.2)
1541
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
1542
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(0)),.2)
1543
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0)),.2)
1544
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1545
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1546
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1547
end
1548
so("http://roblox.com/asset/?id=10209640",RightArm,1,2) 
1549
coroutine.resume(coroutine.create(function()
1550
while Throwing == true do
1551
wait()
1552
so("http://roblox.com/asset/?id=10209640",Handle1,0.4,3) 
1553
so("http://roblox.com/asset/?id=10209640",Handle2,0.4,3) 
1554
so("http://roblox.com/asset/?id=10209640",Handle3,0.4,3) 
1555
end
1556
end))
1557
for i = 0,0.5,0.02 do
1558
swait()
1559
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1560
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1561
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1562
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1563
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1564
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1565
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1566
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1567
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1568
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1569
end
1570
con1:disconnect()
1571
con2:disconnect()
1572
con3:disconnect()
1573
attack = false
1574
Throwing = false
1575
end
1576
1577
1578
1579
1580
1581
function aircombo()
1582
attack = true
1583
Throwing = true
1584
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,10,10,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1585
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,10,10,math.random(0,0),"Up",RootPart,.2,1) end) 
1586
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,10,10,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1587
for i = 0,1,0.1 do
1588
swait()
1589
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.2)
1590
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-80)),.2)
1591
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)),.2)
1592
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
1593
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(0)),.2)
1594
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0)),.2)
1595
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1596
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1597
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1598
end
1599
so("http://roblox.com/asset/?id=10209640",RightArm,1,2) 
1600
coroutine.resume(coroutine.create(function()
1601
while Throwing == true do
1602
wait()
1603
so("http://roblox.com/asset/?id=10209640",Handle1,0.4,3) 
1604
so("http://roblox.com/asset/?id=10209640",Handle2,0.4,3) 
1605
so("http://roblox.com/asset/?id=10209640",Handle3,0.4,3) 
1606
end
1607
end))
1608
for i = 0,2,0.02 do
1609
swait()
1610
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1611
Humanoid.CameraOffset = Vector3.new(0,0,0)
1612
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1613
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1614
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1615
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1616
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1617
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1618
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1619
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1620
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1621
end
1622
for i = 0,10,0.02 do
1623
swait()
1624
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1625
Humanoid.CameraOffset = Vector3.new(0,0 + 4,0)
1626
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1627
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1628
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1629
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1630
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1631
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1632
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1633
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1634
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1635
end
1636
con1:disconnect()
1637
con2:disconnect()
1638
con3:disconnect()
1639
attack = false
1640
Throwing = false
1641
end
1642
1643
1644
--end      
1645
1646
1647
1648
1649
1650
function Flipattack()
1651
attack = true
1652
Throwing = true
1653
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,4,5,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1654
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,7,10,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1655
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,10,12,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1656
for i = 0,1,0.1 do
1657
swait()
1658
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.2)
1659
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-80)),.2)
1660
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)),.2)
1661
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
1662
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(0)),.2)
1663
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0)),.2)
1664
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1665
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1666
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1667
end
1668
so("http://roblox.com/asset/?id=10209640",RightArm,1,2) 
1669
coroutine.resume(coroutine.create(function()
1670
while Throwing == true do
1671
wait()
1672
so("http://roblox.com/asset/?id=10209640",Handle2,0.4,3)
1673
end
1674
end))
1675
for i = 0,7,0.10 do
1676
swait()
1677
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1678
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,1)* angles(math.rad(0+360*i),math.rad(0),math.rad(0)),.2)
1679
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1680
RW.C0 = clerp(RW.C0, CFrame.new(0.3, 0.5, 0) * angles(math.rad(0), math.rad(80), math.rad(90)),.2)
1681
LW.C0 = clerp(LW.C0, CFrame.new(-0.3, 0.5, 0) * angles(math.rad(0), math.rad(-80), math.rad(-90)),.2)
1682
RH.C0=clerp(RH.C0,cf(1,-0.70,-0.50)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1683
LH.C0=clerp(LH.C0,cf(-1,-0.70,-0.50)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1684
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,3)*angles(0,0,0),.2)
1685
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-3,0)*angles(0,20,0),.2)
1686
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,-4)*angles(0,0,0),.2)
1687
end
1688
con1:disconnect()
1689
con2:disconnect()
1690
con3:disconnect()
1691
attack = false
1692
Throwing = false
1693
end
1694
1695
1696
function Ultracombo() -- not complete yet.
1697
attack = true
1698
Throwing = true
1699
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1700
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1701
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1702
for i = 0,1,0.1 do
1703
swait()
1704
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.2)
1705
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-80)),.2)
1706
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(0), math.rad(130), math.rad(90)),.2)
1707
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
1708
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(0)),.2)
1709
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-140),math.rad(0)),.2)
1710
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1711
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1712
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1713
end
1714
so("http://roblox.com/asset/?id=10209640",RightArm,1,2) 
1715
coroutine.resume(coroutine.create(function()
1716
while Throwing == true do
1717
wait()
1718
so("http://roblox.com/asset/?id=10209640",Handle2,0.4,3)
1719
end
1720
end))
1721
1722
--flip attack
1723
1724
for i = 0,7,0.10 do
1725
swait()
1726
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1727
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,1)* angles(math.rad(0+360*i),math.rad(0),math.rad(0)),.2)
1728
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1729
RW.C0 = clerp(RW.C0, CFrame.new(0.3, 0.5, 0) * angles(math.rad(0), math.rad(80), math.rad(90)),.2)
1730
LW.C0 = clerp(LW.C0, CFrame.new(-0.3, 0.5, 0) * angles(math.rad(0), math.rad(-80), math.rad(-90)),.2)
1731
RH.C0=clerp(RH.C0,cf(1,-0.70,-0.50)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1732
LH.C0=clerp(LH.C0,cf(-1,-0.70,-0.50)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1733
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,3)*angles(0,0,0),.2)
1734
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-3,0)*angles(0,20,0),.2)
1735
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,-3)*angles(0,0,0),.2)
1736
end
1737
1738
1739
1740
con1:disconnect()
1741
con2:disconnect()
1742
con3:disconnect()
1743
1744
1745
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1746
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1747
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1748
1749
--spin attack
1750
1751
for i = 0,4,0.08 do
1752
swait()
1753
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1754
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0 -360*i)),.2)
1755
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1756
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(30), math.rad(90)),.2)
1757
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1758
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1759
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1760
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,-3,-2)*angles(5+30*i,0,0),.2)
1761
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-3,-2)*angles(5+30*i,0,0),.2)
1762
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,-3,-2)*angles(5+30*i,0,0),.2)
1763
end
1764
1765
1766
1767
con1:disconnect()
1768
con2:disconnect()
1769
con3:disconnect()
1770
1771
1772
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1773
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Up",RootPart,.2,1) end) 
1774
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1775
1776
--air combo
1777
1778
1779
1780
for i = 0,2,0.02 do
1781
swait()
1782
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1783
Humanoid.CameraOffset = Vector3.new(0,0,0)
1784
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1785
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1786
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1787
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1788
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1789
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1790
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1791
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1792
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1793
end
1794
1795
1796
1797
for i = 0,10,0.02 do
1798
swait()
1799
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1800
Humanoid.CameraOffset = Vector3.new(0,0 + 4,0)
1801
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1802
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1803
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1804
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1805
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1806
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1807
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1808
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1809
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,-10,-2)*angles(5+30*i,0,0),.2)
1810
end
1811
1812
1813
1814
con1:disconnect()
1815
con2:disconnect()
1816
con3:disconnect()
1817
1818
1819
--1 card combo's
1820
1821
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1822
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1823
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1824
1825
for i = 0,0.5,0.02 do
1826
swait()
1827
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1828
Humanoid.CameraOffset = Vector3.new(0,4,0)
1829
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1830
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1831
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1832
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1833
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1834
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1835
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,-10,-2)*angles(10,0+30*i,0),.2)
1836
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1837
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1838
end
1839
1840
1841
1842
for i = 0,0.5,0.02 do
1843
swait()
1844
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1845
Humanoid.CameraOffset = Vector3.new(0,4,0)
1846
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1847
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1848
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1849
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1850
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1851
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1852
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1853
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-10,-2)*angles(10,0+30*i,0),.2)
1854
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1855
end
1856
1857
1858
1859
for i = 0,0.5,0.02 do
1860
swait()
1861
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1862
Humanoid.CameraOffset = Vector3.new(0,4,0)
1863
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1864
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1865
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1866
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1867
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1868
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1869
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1870
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1871
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,10,-2)*angles(10,0+30*i,0),.2)
1872
end
1873
1874
1875
con1:disconnect()
1876
con2:disconnect()
1877
con3:disconnect()
1878
1879
1880
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,99999999,99999999,math.random(0,0),"Slam",RootPart,.2,1) end) 
1881
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,99999999,99999999,math.random(0,0),"Slam",RootPart,.2,1) end) 
1882
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,99999999,99999999,math.random(0,0),"Slam",RootPart,.2,1) end) 
1883
1884
1885
1886
1887
for i = 0,7,0.10 do
1888
swait()
1889
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1890
Humanoid.CameraOffset = Vector3.new(0,4,0)
1891
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(0+360*i),math.rad(0),math.rad(0)),.2)
1892
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1893
RW.C0 = clerp(RW.C0, CFrame.new(0.3, 0.5, 0) * angles(math.rad(0), math.rad(80), math.rad(90)),.2)
1894
LW.C0 = clerp(LW.C0, CFrame.new(-0.3, 0.5, 0) * angles(math.rad(0), math.rad(-80), math.rad(-90)),.2)
1895
RH.C0=clerp(RH.C0,cf(1,-0.70,-0.50)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1896
LH.C0=clerp(LH.C0,cf(-1,-0.70,-0.50)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1897
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,3)*angles(0,0,0),.2)
1898
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,-3,0)*angles(0,20,0),.2)
1899
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,-4)*angles(0,0,0),.2)
1900
end
1901
1902
1903
1904
con1:disconnect()
1905
con2:disconnect()
1906
con3:disconnect()
1907
1908
attack = false
1909
Throwing = false
1910
end
1911
1912
function heal() -- test move.
1913
1914
local con1=HitboxA.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1915
local con2=HitboxB.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1916
local con3=HitboxC.Touched:connect(function(hit) Damagefunc(hit,0,0,math.random(0,0),"Knockdown",RootPart,.2,1) end) 
1917
1918
for i = 0,0.5,0.08 do
1919
swait()
1920
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1921
Humanoid.CameraOffset = Vector3.new(0,4,0)
1922
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,4)* angles(math.rad(0),math.rad(0),math.rad(50)),.2)
1923
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50)),.2)
1924
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(40), math.rad(90)),.2)
1925
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)),.2)
1926
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
1927
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1928
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,-10,-2)*angles(10,0+30*i,0),.2)
1929
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1930
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1931
end
1932
1933
1934
con1:disconnect()
1935
con2:disconnect()
1936
con3:disconnect()
1937
1938
end
1939
1940
1941
function Ultimateform()
1942
1943
for i = 1, 3 do
1944
		so("http://www.roblox.com/asset/?id=139508004", Character, 1, 1)
1945
		local part = Instance.new("Part",Torso)
1946
		part.Shape = "Ball"
1947
		part.Anchored = true
1948
		part.CanCollide = false
1949
		part.BrickColor = BrickColor.new"Really black"
1950
		part.Material = Enum.Material.SmoothPlastic
1951
		part.Size = Vector3.new(1,1,1)
1952
		part.CFrame = Torso.CFrame
1953
		part.TopSurface,part.BottomSurface = 10,10
1954
		for i = 0,1,.1 do
1955
			part.Size = part.Size+ Vector3.new(7,7,7)
1956
			part.Transparency = i
1957
			wait()
1958
		end
1959
		part:destroy()
1960
end
1961
1962
for i = 0,2,0.02 do
1963
swait()
1964
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1965
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1966
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(30),math.rad(0),math.rad(0)),.2)
1967
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
1968
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
1969
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
1970
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1971
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1972
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1973
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1974
end
1975
end
1976
1977
function Ultimateform2()
1978
for i = 0,1,0.08 do
1979
swait()
1980
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
1981
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
1982
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(30),math.rad(0),math.rad(0)),.2)
1983
RW.C0 = clerp(RW.C0, CFrame.new(0.8, 0.5, -.5) * angles(math.rad(80), math.rad(0), math.rad(-90)),.2)
1984
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
1985
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
1986
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1987
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1988
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1989
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
1990
end
1991
1992
1993
for i = 1, 3 do
1994
eye1.Transparency = 0
1995
		so("http://www.roblox.com/asset/?id=138903071", Character, 1, 1)
1996
		local part = Instance.new("Part",eye1)
1997
		part.Shape = "Ball"
1998
		part.Anchored = true
1999
		part.CanCollide = false
2000
		part.BrickColor = BrickColor.new"Really red"
2001
		part.Material = Enum.Material.Neon
2002
		part.Size = Vector3.new(1,1,1)
2003
		part.CFrame = eye1.CFrame
2004
		part.TopSurface,part.BottomSurface = 10,10
2005
		for i = 0,1,.2 do
2006
			part.Size = part.Size+ Vector3.new(0.25,0.25,0.25)
2007
			part.Transparency = i
2008
			wait()
2009
		end
2010
		part:destroy()
2011
end
2012
2013
2014
2015
2016
for i = 0,1,0.08 do
2017
swait()
2018
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2019
Humanoid.CameraOffset = Vector3.new(0,0.5,0)
2020
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0.5)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2021
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.2)
2022
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2023
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2024
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2025
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2026
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2027
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2028
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2029
end
2030
2031
2032
for i = 0,1,0.05 do
2033
swait()
2034
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2035
Humanoid.CameraOffset = Vector3.new(0,1,0)
2036
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,1)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2037
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.2)
2038
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2039
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2040
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2041
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2042
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2043
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2044
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2045
end
2046
2047
2048
2049
for i = 0,1,0.05 do
2050
swait()
2051
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2052
Humanoid.CameraOffset = Vector3.new(0,1.5,0)
2053
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,1.5)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2054
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.2)
2055
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2056
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2057
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2058
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2059
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2060
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2061
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2062
end
2063
2064
2065
2066
for i = 0,1,0.05 do
2067
swait()
2068
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2069
Humanoid.CameraOffset = Vector3.new(0,2,0)
2070
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,2)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2071
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.2)
2072
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2073
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(0)),.2)
2074
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2075
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2076
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2077
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2078
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2079
end
2080
2081
2082
2083
2084
for i = 0,1,0.005 do
2085
swait()
2086
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2087
Humanoid.CameraOffset = Vector3.new(0,2,0)
2088
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,2)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2089
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-30),math.rad(0),math.rad(0)),.2)
2090
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(10)), 0.3)
2091
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)), 0.3)
2092
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2093
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2094
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2095
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2096
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2097
end
2098
2099
2100
2101
particleemitter.Enabled = true
2102
particleemitter2.Enabled = true
2103
2104
2105
2106
2107
2108
for i = 0,3,0.009 do
2109
game.Lighting.TimeOfDay = 0
2110
swait()
2111
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2112
Humanoid.CameraOffset = Vector3.new(0,2+1*i,0)
2113
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,2+1*i)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2114
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(30),math.rad(0),math.rad(0)),.2)
2115
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(30)), 0.3)
2116
LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(-80), math.rad(0), math.rad(-100)),.2)
2117
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2118
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2119
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2120
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2121
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2122
end
2123
2124
2125
for i = 1, 15 do
2126
		so("http://www.roblox.com/asset/?id=139508004", Character, 1, 1)
2127
		local part = Instance.new("Part",Torso)
2128
		part.Shape = "Ball"
2129
		part.Anchored = true
2130
		part.CanCollide = false
2131
		part.BrickColor = BrickColor.new"Really black"
2132
		part.Material = Enum.Material.SmoothPlastic
2133
		part.Size = Vector3.new(1,1,1)
2134
		part.CFrame = Torso.CFrame
2135
		part.TopSurface,part.BottomSurface = 10,10
2136
		for i = 0,1,.2 do
2137
			part.Size = part.Size+ Vector3.new(10,10,10)
2138
			part.Transparency = i
2139
			wait()
2140
		end
2141
		part:destroy()
2142
end
2143
2144
2145
skybox = Instance.new("Part",Character)
2146
skybox.Size = Vector3.new(0,0,0)
2147
skybox.Anchored = true
2148
skybox.CanCollide = true
2149
skyboxmesh = Instance.new("SpecialMesh",skybox)
2150
skyboxmesh.MeshId = "http://www.roblox.com/asset/?id=1527559"
2151
skyboxmesh.TextureId = "http://www.roblox.com/asset/?id=294394670"
2152
skyboxmesh.VertexColor = Vector3.new(1,0.5,1)
2153
skyboxmesh.Scale = Vector3.new(-3000,-3000,-3000)
2154
2155
skybox.CFrame = skybox.CFrame * CFrame.fromEulerAnglesXYZ(0,math.rad(1),0)
2156
2157
2158
local base = game.Workspace.Base
2159
base.BrickColor = BrickColor.new("Really black")
2160
base.Material = "Granite"
2161
2162
2163
spawn(function()
2164
chatfunc("Lets Do This.")
2165
end)
2166
2167
2168
for i = 0,3,0.020 do
2169
game.Lighting.TimeOfDay = 0
2170
swait()
2171
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2172
Humanoid.CameraOffset = Vector3.new(0,3,0)
2173
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,3)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2174
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(30),math.rad(0),math.rad(0)),.2)
2175
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(30)), 0.3)
2176
LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(-80), math.rad(0), math.rad(-100)),.2)
2177
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2178
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2179
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2180
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2181
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2182
end
2183
2184
2185
for i = 0,3,0.050 do
2186
swait()
2187
--so("http://roblox.com/asset/?id=10209640",RightArm,1,3) 
2188
Humanoid.CameraOffset = Vector3.new(0,3,0)
2189
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,3)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2190
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2191
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(30)), 0.3)
2192
LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(-80), math.rad(0), math.rad(-100)),.2)
2193
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2194
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2195
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2196
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2197
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(0,0,0),.2)
2198
end
2199
2200
Humanoid.WalkSpeed = 16
2201
2202
end
2203
2204
2205
2206
function projectile()
2207
2208
2209
local X = Instance.new("Part",handee)
2210
	local O = Instance.new("ObjectValue",X)
2211
	O.Name = "creator"
2212
	X.Locked = true
2213
	X.Name = "Shell"
2214
	X.Anchored = false
2215
	X.CanCollide = false
2216
	X.Transparency = 0
2217
	X.Reflectance = 0
2218
	X.BottomSurface = 0
2219
	X.TopSurface = 0
2220
	X.Shape = 0
2221
	local V = Instance.new("ObjectValue",X)
2222
	V.Value = char
2223
	V.Name = "creator"
2224
	X.BrickColor = BrickColor.new("Crimson")
2225
	X.Size = Vector3.new(2,2,2)
2226
	X.Material = "Neon"
2227
	local Z = Instance.new("SpecialMesh",X)
2228
	Z.MeshType = "Sphere"
2229
	Z.Scale = Vector3.new(0.5,0.5,1)
2230
	X.CFrame = handee.CFrame*CFrame.new(0,0,0)
2231
	local bv = Instance.new("BodyVelocity",X)
2232
	bv.maxForce = Vector3.new(99999,99999,99999)
2233
	X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
2234
	bv.velocity = X.CFrame.lookVector*150
2235
2236
local con5=X.Touched:connect(function(hit) Damagefunc(hit,25,45,math.random(550,550),"Knockdown",RootPart,.2,1) end)
2237
2238
2239
particleemitter4.Enabled = true
2240
2241
wait(10)
2242
2243
particleemitter4.Enabled = false
2244
2245
X:Destroy()
2246
con5:disconnect()
2247
end
2248
2249
2250
2251
function forcefield()
2252
Force.Transparency = 0.40
2253
Forcemesh.Scale = Vector3.new(80,80,80)
2254
Force.CanCollide = true
2255
Force.BrickColor = BrickColor.new("White")
2256
2257
spawn(function()
2258
chatfunc("FORCEFIELD!")
2259
end)
2260
2261
2262
end
2263
2264
function projectile2()
2265
2266
2267
local X = Instance.new("Part",handee)
2268
	local O = Instance.new("ObjectValue",X)
2269
	O.Name = "creator"
2270
	X.Locked = true
2271
	X.Name = "Shell"
2272
	X.Anchored = false
2273
	X.CanCollide = false
2274
	X.Transparency = 0
2275
	X.Reflectance = 0
2276
	X.BottomSurface = 0
2277
	X.TopSurface = 0
2278
	X.Shape = 0
2279
	local V = Instance.new("ObjectValue",X)
2280
	V.Value = char
2281
	V.Name = "creator"
2282
	X.BrickColor = BrickColor.new("Toothpaste")
2283
	X.Size = Vector3.new(4,4,4)
2284
	X.Material = "Neon"
2285
	local Z = Instance.new("SpecialMesh",X)
2286
	Z.MeshType = "Sphere"
2287
	Z.Scale = Vector3.new(0.5,0.5,1)
2288
	X.CFrame = handee.CFrame*CFrame.new(0,0,0)
2289
	local bv = Instance.new("BodyVelocity",X)
2290
	bv.maxForce = Vector3.new(99999,99999,99999)
2291
	X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
2292
	bv.velocity = X.CFrame.lookVector*70
2293
2294
local con5=X.Touched:connect(function(hit) Damagefunc(hit,140,145,math.random(25,25),"Knockdown",RootPart,.2,1) end)
2295
2296
2297
particleemitter4.Enabled = true
2298
2299
wait(10)
2300
2301
particleemitter4.Enabled = false
2302
2303
X:Destroy()
2304
con5:disconnect()
2305
end
2306
2307
2308
mouse.Button1Down:connect(function()
2309
 if attack==false then
2310
                if attacktype==1 then
2311
                        attack=true
2312
                        attacktype=2
2313
                        attackone()
2314
                elseif attacktype==2 then
2315
                        attack=true
2316
                        attacktype=3
2317
                        attacktwo()
2318
                elseif attacktype==3 then
2319
                        attack=true
2320
                        attacktype=4
2321
                        attackthree()
2322
                elseif attacktype==4 then
2323
                        attack=true
2324
                        attacktype=1
2325
                        attackfour()  
2326
                end
2327
        end
2328
end)
2329
2330
2331
2332
2333
2334
mouse.KeyDown:connect(function(key)
2335
if key == 'e' and attack == false then
2336
so("http://roblox.com/asset/?id=405596045",Character,1,1)
2337
particleemitter.Enabled = false
2338
particleemitter2.Enabled = false
2339
--particleemitter3.Enabled = false
2340
sou2:Stop()
2341
sou3:Stop()
2342
eye1.Transparency = 1
2343
2344
2345
Character.Humanoid.MaxHealth = 400
2346
Character.Humanoid.Health = 400
2347
2348
2349
elseif key == 'u' then
2350
heal()
2351
2352
elseif key == 'f' and attack == false and particleemitter.Enabled == true then
2353
projectile()
2354
2355
2356
elseif key == 'p' and attack == false then
2357
forcefield()
2358
2359
elseif key == 'g' and attack == false and particleemitter.Enabled == true then
2360
projectile2()
2361
2362
elseif key == 'r' and attack == false then
2363
Flipattack()
2364
2365
elseif key == 't' and attack == false then
2366
Ultracombo()
2367
2368
2369
elseif key == 'y' and attack == false and particleemitter.Enabled == false then
2370
attack = true
2371
Player.Chatted:connect(onChatted)
2372
Character.Humanoid.WalkSpeed = 0
2373
text.TextTransparency = 1
2374
text.TextStrokeTransparency = 1
2375
spawn(function()
2376
chatfunc("You've made the worst mistake...")
2377
wait(2)
2378
chatfunc("YOU'LL EVER MAKE!")
2379
end)
2380
2381
2382
2383
Character.Humanoid.MaxHealth = 40000
2384
Character.Humanoid.Health = 40000
2385
2386
2387
2388
Ultimateform()
2389
wait(4)
2390
s:Play()
2391
sou2:Stop()
2392
sou3:Play()
2393
spawn(function()
2394
wait(1)
2395
chatfunc("Heheh...")
2396
end)
2397
Ultimateform2()
2398
2399
text.TextTransparency = 0
2400
text.TextStrokeTransparency = 0
2401
2402
2403
attack = false
2404
Character.Humanoid.WalkSpeed = 16
2405
2406
end
2407
end)
2408
2409
2410
2411
mouse.KeyDown:connect(function(key)
2412
if key == 'q' and attack == false then
2413
aircombo()
2414
    end
2415
end)
2416
2417
2418
2419
local string1=part(3,m,"SmoothPlastic",0,0.8,BrickColor.new("Lime green"),"String1",vt(2,2,2))--These are not the trail sizes. Search string1.size to edit the trail size.
2420
local stringmsh1=mesh("CylinderMesh",string1,"","",vt(0,0,0),vt(0.1,1,0.1))
2421
local stringwld1=weld(string1,string1,Handle1,euler(0,0,0),cf(0,0,0))
2422
2423
local string2=part(3,m,"SmoothPlastic",0,0.8,BrickColor.new("Really red"),"String2",vt(2,2,2))--These are not the trail sizes. Search string1.size to edit the trail size.
2424
local stringmsh2=mesh("CylinderMesh",string2,"","",vt(0,0,0),vt(0.1,1,0.1))
2425
local stringwld2=weld(string2,string2,Handle2,euler(0,0,0),cf(0,0,0))
2426
2427
local string3=part(3,m,"SmoothPlastic",0,0.8,BrickColor.new("Toothpaste"),"String3",vt(2,2,2))--These are not the trail sizes. Search string1.size to edit the trail size.
2428
local stringmsh3=mesh("CylinderMesh",string3,"","",vt(0,0,0),vt(0.1,1,0.1))
2429
local stringwld3=weld(string3,string3,Handle3,euler(0,0,0),cf(0,0,0))
2430
2431
local strmdl = "Arrow"
2432
coroutine.resume(coroutine.create(function()
2433
repeat
2434
wait(-10)
2435
2436
local top = RightArm.CFrame*cf(0,-1,0)
2437
local bottom = Handle1.CFrame
2438
local bottom2 = Handle2.CFrame
2439
local bottom3 = Handle3.CFrame
2440
local oristrpos
2441
local oristrpos2
2442
local oristrpos3
2443
2444
if strmdl == "Bow" then
2445
oristrpos = CFrame.new((top.p+bottom.p)/4)
2446
oristrpos2 = CFrame.new((top.p+bottom.p)/4)
2447
oristrpos3 = CFrame.new((top.p+bottom.p)/4)
2448
elseif strmdl == "Arrow" then
2449
oristrpos = Handle1.CFrame
2450
oristrpos2 = Handle2.CFrame
2451
oristrpos3 = Handle3.CFrame
2452
end
2453
2454
local mg1 = (top.p - oristrpos.p).magnitude
2455
local mg2 = (bottom.p - oristrpos.p).magnitude
2456
string1.Size = Vector3.new(4,mg1,4)--trail sizes. they do cause lag so be careful only edit the 4's
2457
string1.Anchored=true
2458
string1.CFrame = CFrame.new((top.p+oristrpos.p)/2,oristrpos.p) * CFrame.Angles(math.rad(90),0,0)
2459
2460
local mg1B = (top.p - oristrpos2.p).magnitude
2461
local mg2B = (bottom2.p - oristrpos2.p).magnitude
2462
string2.Size = Vector3.new(4,mg1B,4)--trail sizes. they do cause lag so be careful only edit the 4's
2463
string2.Anchored=true
2464
string2.CFrame = CFrame.new((top.p+oristrpos2.p)/2,oristrpos2.p) * CFrame.Angles(math.rad(90),0,0)
2465
2466
local mg1C = (top.p - oristrpos3.p).magnitude
2467
local mg2C = (bottom3.p - oristrpos3.p).magnitude
2468
string3.Size = Vector3.new(4,mg1C,4)--trail sizes. they do cause lag so be careful only edit the 4's
2469
string3.Anchored=true
2470
string3.CFrame = CFrame.new((top.p+oristrpos3.p)/2,oristrpos3.p) * CFrame.Angles(math.rad(90),0,0)
2471
until false
2472
end))
2473
2474
2475
---------------------------------------
2476
mouse.KeyDown:connect(function(key)
2477
    if string.byte(key) == 48 then
2478
		Swing = 2
2479
        char.Humanoid.WalkSpeed = 65
2480
end
2481
end)
2482
2483
mouse.KeyUp:connect(function(key)
2484
    if string.byte(key) == 48 then
2485
		Swing = 1
2486
        char.Humanoid.WalkSpeed = 16
2487
2488
end
2489
end)
2490
2491
---------------------------------------
2492
2493
function chatfunc(text)
2494
local chat = coroutine.wrap(function()
2495
if Character:FindFirstChild("TalkingBillBoard")~= nil then
2496
Character:FindFirstChild("TalkingBillBoard"):destroy()
2497
end
2498
local naeeym2 = Instance.new("BillboardGui",Character)
2499
naeeym2.Size = UDim2.new(0,100,0,40)
2500
naeeym2.StudsOffset = Vector3.new(0,3,0)
2501
naeeym2.Adornee = Character.Head
2502
naeeym2.Name = "TalkingBillBoard"
2503
local tecks2 = Instance.new("TextLabel",naeeym2)
2504
tecks2.BackgroundTransparency = 1
2505
tecks2.BorderSizePixel = 0
2506
tecks2.Text = ""
2507
tecks2.Font = "Bodoni"
2508
tecks2.TextSize = 45
2509
tecks2.TextStrokeTransparency = 0
2510
tecks2.TextColor3 = Color3.new(0,0,0)
2511
tecks2.TextStrokeColor3 = Color3.new(0,0,0)
2512
tecks2.Size = UDim2.new(1,0,0.5,0)
2513
local tecks3 = Instance.new("TextLabel",naeeym2)
2514
tecks3.BackgroundTransparency = 1
2515
tecks3.BorderSizePixel = 0
2516
tecks3.Text = ""
2517
tecks3.Font = "Bodoni"
2518
tecks3.TextSize = 45
2519
tecks3.TextStrokeTransparency = 0
2520
tecks3.TextColor3 = Color3.new(255,255,255)
2521
tecks3.TextStrokeColor3 = Color3.new(0,0,0)
2522
tecks3.Size = UDim2.new(1,0,0.5,0)
2523
for i = 1,string.len(text),1 do
2524
tecks2.Text = string.sub(text,1,i)
2525
tecks3.Text = string.sub(text,1,i)
2526
wait(0.01)
2527
end
2528
wait(2)
2529
for i = 1, 70 do
2530
wait(0.0000000000000000000001)
2531
tecks2.Rotation = tecks2.Rotation - 0
2532
tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.09
2533
tecks2.TextTransparency = tecks2.TextTransparency + .09
2534
tecks3.Rotation = tecks2.Rotation + 0
2535
tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.08
2536
tecks3.TextTransparency = tecks2.TextTransparency + .08
2537
end
2538
naeeym2:Destroy()
2539
end)
2540
chat()
2541
end
2542
--end
2543
2544
2545
2546
2547
2548
2549
2550
2551
-------------------------------
2552
2553
2554
---------------------------------------
2555
2556
char.Humanoid.JumpPower = 80
2557
2558
2559
2560
local sine = 0
2561
local change = 1
2562
local val = 0
2563
while true do
2564
swait()
2565
sine = sine + change
2566
local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude 
2567
local velderp=RootPart.Velocity.y
2568
hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
2569
if equipped==true or equipped==false then
2570
if attack==false then
2571
idle=idle+1
2572
else
2573
idle=0
2574
end
2575
if idle>=500 then
2576
if attack==false then
2577
--Sheath()
2578
end
2579
end
2580
2581
if RootPart.Velocity.y > 1 and hitfloor==nil then 
2582
Anim="Jump"
2583
if attack==false then
2584
change = 2
2585
Humanoid.CameraOffset = Vector3.new(0,0,0)
2586
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0 + 360 * math.cos (sine / 30)),math.rad(0),math.rad(0)),.3)
2587
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
2588
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(10)), 0.3)
2589
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)), 0.3)
2590
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
2591
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
2592
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2593
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2594
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2595
end
2596
elseif RootPart.Velocity.y < -1 and hitfloor==nil then 
2597
Anim="Fall"
2598
change = 1
2599
if attack==false then
2600
Humanoid.CameraOffset = Vector3.new(0,0,0)
2601
RH.C0=clerp(RH.C0,cf(1,0.20,-0.25)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
2602
LH.C0=clerp(LH.C0,cf(-1,-0.70,-0.25)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
2603
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
2604
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(40),math.rad(0),math.rad(0)),.3)
2605
RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.65, 0) * angles(math.rad(-10), math.rad(0), math.rad(90)), 0.3)
2606
LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.65, 0) * angles(math.rad(-10), math.rad(0), math.rad(-90)), 0.3)
2607
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2608
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2609
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2610
end
2611
elseif torvel<1 and hitfloor~=nil then
2612
Anim="Idle"
2613
if attack==false and particleemitter.Enabled==false then
2614
Humanoid.CameraOffset = Vector3.new(0,0,0)
2615
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math  .rad(50)),.2)
2616
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(-50* math.cos (sine / 64))),.2)
2617
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(80), math.rad(0), math.rad(-50)),.2)
2618
LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(0), math.rad(10 + 10 *math.cos (sine / 64)), math.rad(-10 + 10 *math.cos (sine / 30))),.2)
2619
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(0)),.2)
2620
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2621
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2622
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2623
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2624
else
2625
if attack==false and particleemitter.Enabled==true then
2626
Humanoid.CameraOffset = Vector3.new(0,2.50 + 0.50 * math.cos (sine/30),0)
2627
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,2.50 + 0.50 * math.cos (sine/30))* angles(math.rad(10.40 + 4 * math.cos (sine / 30)),math.rad(0),math.rad(0)),.2)
2628
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(10 + 5 * math.cos (sine / 30)),math.rad(0),math.rad(0)),.2)
2629
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(60), math.rad(0), math.rad(-50)),.2)
2630
LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.5, 0) * angles(math.rad(-80), math.rad(0), math.rad(-100)),.2)
2631
RH.C0=clerp(RH.C0,cf(1,-1-0.3*math.cos(sine/20),-0.3)*angles(math.rad(-40 + 7.18 *math.cos(sine/30)),math.rad(70 + 6.18 *math.cos(sine/30)),math.rad(0 + 13.18 *math.cos(sine/30))),.2)
2632
LH.C0=clerp(LH.C0,cf(-1,-1-0.2*math.cos(sine/15),-0.5)*angles(math.rad(-20 + 12.18 *math.cos(sine/15)),math.rad(-90 + 5.18 *math.cos(sine/15)),math.rad(0 + 14.18 *math.cos(sine/15))),.2)
2633
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2634
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2635
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2636
end
2637
end
2638
elseif torvel>2 and torvel<22 and hitfloor~=nil then
2639
Anim="Walk"
2640
if attack==false and particleemitter.Enabled==false then
2641
Humanoid.CameraOffset = Vector3.new(0,0,0)
2642
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(50)),.2)
2643
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(2),math.rad(-50)),.2)
2644
RW.C0 = clerp(RW.C0, CFrame.new(.9, 0.5, -.5) * angles(math.rad(80), math.rad(0), math.rad(-50)),.2)
2645
LW.C0 = clerp(LW.C0, CFrame.new(-.8, 0.3, -.5) * angles(math.rad(60), math.rad(11), math.rad(70)),.2)
2646
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(70),math.rad(-50 - 50 *math.cos (sine / -10))),.2)
2647
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(50 - 50*math.cos (sine / 10))),.2)
2648
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2649
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2650
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2651
else
2652
if attack==false and particleemitter.Enabled==true then
2653
Humanoid.CameraOffset = Vector3.new(0,1 + 0.50 *math.cos (sine/35),0)
2654
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,1.2+.5*math.cos(sine/35))* angles(math.rad(30),math.rad(0),math.rad(0)),.2)
2655
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10-5*math.cos(sine/35)),math.rad(0),math.rad(0)),.2)
2656
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(50)),.2)
2657
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(30),math.rad(0),math.rad(-50)),.2)
2658
RH.C0=clerp(RH.C0,cf(1,-0.75,-0.5)*angles(math.rad(-35),math.rad(90),math.rad(0)),.2)
2659
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2660
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2661
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2662
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2663
end
2664
end
2665
elseif torvel>=22 and hitfloor~=nil then
2666
Anim="Run"
2667
if attack==false and particleemitter.Enabled==true then
2668
Humanoid.CameraOffset = Vector3.new(0,2 + 1 * math.cos(sine/30),0)
2669
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,2 + 1 *math.cos(sine / 30))* angles(math.rad(85),math.rad(0),math.rad(0)),.2)
2670
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-65),math.rad(0),math.rad(0)),.2)
2671
RW.C0 = clerp(RW.C0, CFrame.new(1.45, 0.65, 0) * angles(math.rad(-10), math.rad(0), math.rad(90)), 0.3)
2672
LW.C0 = clerp(LW.C0, CFrame.new(-1.45, 0.65, 0) * angles(math.rad(-10), math.rad(0), math.rad(-90)), 0.3)
2673
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.2)
2674
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
2675
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2676
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2677
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2678
else
2679
if attack==false and particleemitter.Enabled==false then
2680
Humanoid.CameraOffset = Vector3.new(0,0,0)
2681
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(30),math.rad(0),math.rad(0+10*math.cos(sine/5))),.2)
2682
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-12),math.rad(0),math.rad(0)),.2)
2683
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(35+90*math.cos(sine/5)),math.rad(0),math.rad(0)),.2)
2684
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(35-90*math.cos(sine/5)),math.rad(0),math.rad(0)),.2)
2685
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(35),math.rad(90),math.rad(-40 - 70 *math.cos (sine / -5))),.2)
2686
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(35),math.rad(-90),math.rad(40 - 70 *math.cos (sine / 5))),.2)
2687
Handle1weld.C0=clerp(Handle1weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2688
Handle2weld.C0=clerp(Handle2weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2689
Handle3weld.C0=clerp(Handle3weld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.2)
2690
end
2691
end
2692
end
2693
end
2694
if #Effects>0 then
2695
--table.insert(Effects,{prt,"Block1",delay})
2696
for e=1,#Effects do
2697
if Effects[e]~=nil then
2698
--for j=1,#Effects[e] do
2699
local Thing=Effects[e]
2700
if Thing~=nil then
2701
local Part=Thing[1]
2702
local Mode=Thing[2]
2703
local Delay=Thing[3]
2704
local IncX=Thing[4]
2705
local IncY=Thing[5]
2706
local IncZ=Thing[6]
2707
if Thing[1].Transparency<=1 then
2708
if Thing[2]=="Block1" then
2709
Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
2710
Mesh=Thing[1].Mesh
2711
Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
2712
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2713
elseif Thing[2]=="Cylinder" then
2714
Mesh=Thing[1].Mesh
2715
Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
2716
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2717
elseif Thing[2]=="Blood" then
2718
Mesh=Thing[7]
2719
Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
2720
Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
2721
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2722
elseif Thing[2]=="Elec" then
2723
Mesh=Thing[1].Mesh
2724
Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
2725
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2726
elseif Thing[2]=="Disappear" then
2727
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2728
char.Humanoid.MaxHealth = math.huge
2729
			wait()
2730
			char.Humanoid.Health = math.huge
2731
end
2732
else
2733
Part.Parent=nil
2734
table.remove(Effects,e)
2735
end
2736
end
2737
end
2738
--end
2739
end
2740
end
2741
end