View difference between Paste ID: 0gjhmuG8 and 7JJjxz4J
SHOW: | | - or go back to the newest paste.
1
Player=game:GetService("Players").LocalPlayer
2
Character=Player.Character 
3
PlayerGui=Player.PlayerGui
4
Backpack=Player.Backpack 
5
Torso=Character.Torso 
6
Head=Character.Head 
7
Humanoid=Character.Humanoid
8
m=Instance.new('Model',Character)
9
LeftArm=Character["Left Arm"] 
10
LeftLeg=Character["Left Leg"] 
11
RightArm=Character["Right Arm"] 
12
RightLeg=Character["Right Leg"] 
13
LS=Torso["Left Shoulder"] 
14
LH=Torso["Left Hip"] 
15
RS=Torso["Right Shoulder"] 
16
RH=Torso["Right Hip"] 
17
Face = Head.face
18
Neck=Torso.Neck
19
it=Instance.new
20
attacktype=1
21
vt=Vector3.new
22
cf=CFrame.new
23
euler=CFrame.fromEulerAnglesXYZ
24
angles=CFrame.Angles
25
cloaked=false
26
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
27
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
28
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
29
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
30
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
31
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
32
RootPart=Character.HumanoidRootPart
33
RootJoint=RootPart.RootJoint
34
RootCF=euler(-1.57,0,3.14)
35
attack = false 
36
attackdebounce = false 
37
deb=false
38
equipped=true
39
hand=false
40
MMouse=nil
41
combo=0
42
mana=0
43
trispeed=.2
44
attackmode='none'
45
local idle=0
46
local Anim="Idle"
47
local Effects={}
48
local gun=false
49
local shoot=false
50
player=nil 
51
mana=0
52
53
mouse=Player:GetMouse()
54
--save shoulders 
55
RSH, LSH=nil, nil 
56
--welds 
57
RW, LW=Instance.new("Weld"), Instance.new("Weld") 
58
RW.Name="Right Shoulder" LW.Name="Left Shoulder"
59
LH=Torso["Left Hip"]
60
RH=Torso["Right Hip"]
61
TorsoColor=Torso.BrickColor
62
function NoOutline(Part)
63
Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
64
end
65
player=Player 
66
ch=Character
67
RSH=ch.Torso["Right Shoulder"] 
68
LSH=ch.Torso["Left Shoulder"] 
69
-- 
70
RSH.Parent=nil 
71
LSH.Parent=nil 
72
-- 
73
RW.Name="Right Shoulder"
74
RW.Part0=ch.Torso 
75
RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) 
76
RW.C1=cf(0, 0.5, 0) 
77
RW.Part1=ch["Right Arm"] 
78
RW.Parent=ch.Torso 
79
-- 
80
LW.Name="Left Shoulder"
81
LW.Part0=ch.Torso 
82
LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) 
83
LW.C1=cf(0, 0.5, 0) 
84
LW.Part1=ch["Left Arm"] 
85
LW.Parent=ch.Torso 
86
87
	Player=game:GetService('Players').LocalPlayer
88
	Character=Player.Character
89
	Mouse=Player:GetMouse()
90
	m=Instance.new('Model',Character)
91
92
93
	local function weldBetween(a, b)
94
	    local weldd = Instance.new("ManualWeld")
95
	    weldd.Part0 = a
96
	    weldd.Part1 = b
97
	    weldd.C0 = CFrame.new()
98
	    weldd.C1 = b.CFrame:inverse() * a.CFrame
99
	    weldd.Parent = a
100
	    return weldd
101
	end
102
	
103
	function swait(num)
104
    if num==0 or num==nil then
105
    game:service'RunService'.Stepped:wait(0)
106
    else
107
    for i=0,num do
108
    game:service'RunService'.Stepped:wait(0)
109
    end
110
    end
111
	    end
112
	
113
	function nooutline(part)
114
		part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
115
	end
116
	
117
	function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
118
		local fp=it("Part")
119
		fp.formFactor=formfactor
120
		fp.Parent=parent
121
		fp.Reflectance=reflectance
122
		fp.Transparency=transparency
123
		fp.CanCollide=false
124
		fp.Locked=true
125
		fp.BrickColor=BrickColor.new(tostring(brickcolor))
126
		fp.Name=name
127
		fp.Size=size
128
		fp.Position=Character.Torso.Position
129
		nooutline(fp)
130
		fp.Material=material
131
		fp:BreakJoints()
132
		return fp
133
	end
134
	
135
	function mesh(Mesh,part,meshtype,meshid,offset,scale)
136
		local mesh=it(Mesh)
137
		mesh.Parent=part
138
		if Mesh=="SpecialMesh" then
139
			mesh.MeshType=meshtype
140
			mesh.MeshId=meshid
141
		end
142
		mesh.Offset=offset
143
		mesh.Scale=scale
144
		return mesh
145
	end
146
	
147
	function weld(parent,part0,part1,c0,c1)
148
		local weld=it("Weld")
149
		weld.Parent=parent
150
		weld.Part0=part0
151
		weld.Part1=part1
152
		weld.C0=c0
153
		weld.C1=c1
154
		return weld
155
	end
156
	
157
	
158
local function CFrameFromTopBack(at, top, back)
159
local right = top:Cross(back)
160
return CFrame.new(at.x, at.y, at.z,
161
right.x, top.x, back.x,
162
right.y, top.y, back.y,
163
right.z, top.z, back.z)
164
end
165
166
function Triangle(a, b, c)
167
local edg1 = (c-a):Dot((b-a).unit)
168
local edg2 = (a-b):Dot((c-b).unit)
169
local edg3 = (b-c):Dot((a-c).unit)
170
if edg1 <= (b-a).magnitude and edg1 >= 0 then
171
a, b, c = a, b, c
172
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
173
a, b, c = b, c, a
174
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
175
a, b, c = c, a, b
176
else
177
assert(false, "unreachable")
178
end
179
 
180
local len1 = (c-a):Dot((b-a).unit)
181
local len2 = (b-a).magnitude - len1
182
local width = (a + (b-a).unit*len1 - c).magnitude
183
 
184
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
185
 
186
local list = {}
187
 
188
189
if len1 > 0.01 then
190
local w1 = Instance.new('WedgePart', m)
191
game:GetService("Debris"):AddItem(w1,5)
192
w1.Material = "SmoothPlastic"
193
w1.FormFactor = 'Custom'
194
w1.BrickColor = Color3.new(cR,cG,cB)
195
w1.Transparency = 0
196
w1.Reflectance = 0
197
w1.Material = "SmoothPlastic"
198
w1.CanCollide = false
199
NoOutline(w1)
200
local sz = Vector3.new(0.2, width, len1)
201
w1.Size = sz
202
local sp = Instance.new("SpecialMesh",w1)
203
sp.MeshType = "Wedge"
204
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
205
w1:BreakJoints()
206
w1.Anchored = true
207
w1.Parent = workspace
208
w1.Transparency = 0.7
209
table.insert(Effects,{w1,"Disappear",.01})
210
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
211
table.insert(list,w1)
212
end
213
 
214
if len2 > 0.01 then
215
local w2 = Instance.new('WedgePart', m)
216
game:GetService("Debris"):AddItem(w2,5)
217
w2.Material = "SmoothPlastic"
218
w2.FormFactor = 'Custom'
219
w2.BrickColor = "Really red"
220
w2.Transparency = 0
221
w2.Reflectance = 0
222
w2.Material = "SmoothPlastic"
223
w2.CanCollide = false
224
NoOutline(w2)
225
local sz = Vector3.new(0.2, width, len2)
226
w2.Size = sz
227
local sp = Instance.new("SpecialMesh",w2)
228
sp.MeshType = "Wedge"
229
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
230
w2:BreakJoints()
231
w2.Anchored = true
232
w2.Parent = workspace
233
w2.Transparency = 0.7
234
table.insert(Effects,{w2,"Disappear",.01})
235-
w2.BrickColor = Color3.new(cR,cG,cB)
235+
236
table.insert(list,w2)
237
end
238
return unpack(list)
239
end
240
	
241
	
242
so = function(id,par,vol,pit) 
243
coroutine.resume(coroutine.create(function()
244
local sou = Instance.new("Sound",par or workspace)
245
sou.Volume=vol
246
sou.Pitch=pit or 1
247
sou.SoundId=id
248
swait() 
249
sou:play() 
250
game:GetService("Debris"):AddItem(sou,6)
251
end))
252
end
253
 
254
function clerp(a,b,t) 
255
local qa = {QuaternionFromCFrame(a)}
256
local qb = {QuaternionFromCFrame(b)} 
257
local ax, ay, az = a.x, a.y, a.z 
258
local bx, by, bz = b.x, b.y, b.z
259
local _t = 1-t
260
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) 
261
end 
262
 
263
function QuaternionFromCFrame(cf) 
264
local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() 
265
local trace = m00 + m11 + m22 
266
if trace > 0 then 
267
local s = math.sqrt(1 + trace) 
268
local recip = 0.5/s 
269
return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 
270
else 
271
local i = 0 
272
if m11 > m00 then
273
i = 1
274
end
275
if m22 > (i == 0 and m00 or m11) then 
276
i = 2 
277
end 
278
if i == 0 then 
279
local s = math.sqrt(m00-m11-m22+1) 
280
local recip = 0.5/s 
281
return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip 
282
elseif i == 1 then 
283
local s = math.sqrt(m11-m22-m00+1) 
284
local recip = 0.5/s 
285
return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip 
286
elseif i == 2 then 
287
local s = math.sqrt(m22-m00-m11+1) 
288
local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip 
289
end 
290
end 
291
end
292
 
293
function QuaternionToCFrame(px, py, pz, x, y, z, w) 
294
local xs, ys, zs = x + x, y + y, z + z 
295
local wx, wy, wz = w*xs, w*ys, w*zs 
296
local xx = x*xs 
297
local xy = x*ys 
298
local xz = x*zs 
299
local yy = y*ys 
300
local yz = y*zs 
301
local zz = z*zs 
302
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)) 
303
end
304
 
305
function QuaternionSlerp(a, b, t) 
306
local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] 
307
local startInterp, finishInterp; 
308
if cosTheta >= 0.0001 then 
309
if (1 - cosTheta) > 0.0001 then 
310
local theta = math.acos(cosTheta) 
311
local invSinTheta = 1/math.sin(theta) 
312
startInterp = math.sin((1-t)*theta)*invSinTheta 
313
finishInterp = math.sin(t*theta)*invSinTheta  
314
else 
315
startInterp = 1-t 
316
finishInterp = t 
317
end 
318
else 
319
if (1+cosTheta) > 0.0001 then 
320
local theta = math.acos(-cosTheta) 
321
local invSinTheta = 1/math.sin(theta) 
322
startInterp = math.sin((t-1)*theta)*invSinTheta 
323
finishInterp = math.sin(t*theta)*invSinTheta 
324
else 
325
startInterp = t-1 
326
finishInterp = t 
327
end 
328
end 
329
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 
330
end
331
332
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
333
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
334
end 
335
336
local function CFrameFromTopBack(at, top, back)
337
local right = top:Cross(back)
338
return CFrame.new(at.x, at.y, at.z,
339
right.x, top.x, back.x,
340
right.y, top.y, back.y,
341
right.z, top.z, back.z)
342
end
343
344
--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)
345
346
347
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
348
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
349
end 
350
351
Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
352
        if hit.Parent==nil then
353
                return
354
        end
355
        h=hit.Parent:FindFirstChild("Humanoid")
356
        for _,v in pairs(hit.Parent:children()) do
357
        if v:IsA("Humanoid") then
358
        h=v
359
        end
360
        end
361
        if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
362
        h=hit.Parent.Parent:FindFirstChild("Humanoid")
363
        end
364
        if hit.Parent.className=="Hat" then
365
        hit=hit.Parent.Parent:findFirstChild("Head")
366
        end
367
        if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
368
        if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
369
        --[[                if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
370
                        return
371
                end]]
372
--                        hs(hit,1.2) 
373
                        c=Instance.new("ObjectValue")
374
                        c.Name="creator"
375
                        c.Value=game:service("Players").LocalPlayer
376
                        c.Parent=h
377
                        game:GetService("Debris"):AddItem(c,.5)
378
                Damage=math.random(minim,maxim)
379
--                h:TakeDamage(Damage)
380
                blocked=false
381
                block=hit.Parent:findFirstChild("Block")
382
                if block~=nil then
383
                print(block.className)
384
                if block.className=="NumberValue" then
385
                if block.Value>0 then
386
                blocked=true
387
                if decreaseblock==nil then
388
                block.Value=block.Value-1
389
                end
390
                end
391
                end
392
                if block.className=="IntValue" then
393
                if block.Value>0 then
394
                blocked=true
395
                if decreaseblock~=nil then
396
                block.Value=block.Value-1
397
                end
398
                end
399
                end
400
                end
401
                if blocked==false then
402
--                h:TakeDamage(Damage)
403
                h.Health=h.Health-Damage
404
                showDamage(hit.Parent,Damage,.5,BrickColor.new("Really red"))
405
                else
406
                h.Health=h.Health-(Damage/2)
407
                showDamage(hit.Parent,Damage/2,.5,BrickColor.new("Bright blue"))
408
                end
409
                if Type=="Knockdown" then
410
                hum=hit.Parent.Humanoid
411
hum.PlatformStand=true
412
coroutine.resume(coroutine.create(function(HHumanoid)
413
swait(1)
414
HHumanoid.PlatformStand=false
415
end),hum)
416
                local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
417
--hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
418
local bodvol=Instance.new("BodyVelocity")
419
bodvol.velocity=angle*knockback
420
bodvol.P=5000
421
bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
422
bodvol.Parent=hit
423
rl=Instance.new("BodyAngularVelocity")
424
rl.P=3000
425
rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
426
rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
427
rl.Parent=hit
428
game:GetService("Debris"):AddItem(bodvol,.5)
429
game:GetService("Debris"):AddItem(rl,.5)
430
                elseif Type=="Normal" then
431
                vp=Instance.new("BodyVelocity")
432
                vp.P=500
433
                vp.maxForce=Vector3.new(math.huge,0,math.huge)
434
--                vp.velocity=Character.Torso.CFrame.lookVector*Knockback
435
                if KnockbackType==1 then
436
                vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
437
                elseif KnockbackType==2 then
438
                vp.velocity=Property.CFrame.lookVector*knockback
439
                end
440
                if knockback>0 then
441
                        vp.Parent=hit.Parent.Torso
442
                end
443
                game:GetService("Debris"):AddItem(vp,.5)
444
                elseif Type=="Up" then
445
                local bodyVelocity=Instance.new("BodyVelocity")
446
                bodyVelocity.velocity=vt(0,60,0)
447
                bodyVelocity.P=5000
448
                bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
449
                bodyVelocity.Parent=hit
450
                game:GetService("Debris"):AddItem(bodyVelocity,1)
451
                rl=Instance.new("BodyAngularVelocity")
452
                rl.P=3000
453
                rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
454
                rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
455
                rl.Parent=hit
456
                game:GetService("Debris"):AddItem(rl,.5)
457
                elseif Type=="Snare" then
458
                bp=Instance.new("BodyPosition")
459
                bp.P=2000
460
                bp.D=100
461
                bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
462
                bp.position=hit.Parent.Torso.Position
463
                bp.Parent=hit.Parent.Torso
464
                game:GetService("Debris"):AddItem(bp,1)
465
                elseif Type=="Target" then
466
                if Targetting==false then
467
                ZTarget=hit.Parent.Torso
468
                coroutine.resume(coroutine.create(function(Part) 
469
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
470
                swait(5)
471
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
472
                end),ZTarget)
473
                TargHum=ZTarget.Parent:findFirstChild("Humanoid")
474
                targetgui=Instance.new("BillboardGui")
475
                targetgui.Parent=ZTarget
476
                targetgui.Size=UDim2.new(10,100,10,100)
477
                targ=Instance.new("ImageLabel")
478
                targ.Parent=targetgui
479
                targ.BackgroundTransparency=1
480
                targ.Image="rbxassetid://4834067"
481
                targ.Size=UDim2.new(1,0,1,0)
482
                cam.CameraType="Scriptable"
483
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
484
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
485
                workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
486
                Targetting=true
487
                RocketTarget=ZTarget
488
                for i=1,Property do
489
                --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
490
                if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
491
                swait()
492
                end
493
                --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
494
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
495
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
496
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
497
                end
498
                Targetting=false
499
                RocketTarget=nil
500
                targetgui.Parent=nil
501
                cam.CameraType="Custom"
502
                end
503
                end
504
                        debounce=Instance.new("BoolValue")
505
                        debounce.Name="DebounceHit"
506
                        debounce.Parent=hit.Parent
507
                        debounce.Value=true
508
                        game:GetService("Debris"):AddItem(debounce,Delay)
509
                        c=Instance.new("ObjectValue")
510
                        c.Name="creator"
511
                        c.Value=Player
512
                        c.Parent=h
513
                        game:GetService("Debris"):AddItem(c,.5)
514
                CRIT=false
515
                hitDeb=true
516
                AttackPos=6
517
        end
518
end
519
 
520
showDamage=function(Char,Dealt,du,Color)
521
        m=Instance.new("Model")
522
        m.Name=tostring(Dealt)
523
        h=Instance.new("Humanoid")
524
        h.Health=0
525
        h.MaxHealth=0
526
        h.Parent=m
527
        c=Instance.new("Part")
528
        c.Transparency=0
529
        c.BrickColor=Color
530
        c.Name="Head"
531
        c.TopSurface=0
532
        c.BottomSurface=0
533
        c.formFactor="Plate"
534
        c.Size=Vector3.new(1,.4,1)
535
        ms=Instance.new("CylinderMesh")
536
        ms.Scale=Vector3.new(.8,.8,.8)
537
        if CRIT==true then
538
                ms.Scale=Vector3.new(1,1.25,1)
539
        end
540
        ms.Parent=c
541
        c.Reflectance=0
542
        Instance.new("BodyGyro").Parent=c
543
        c.Parent=m
544
        if Char:findFirstChild("Head")~=nil then
545
        c.CFrame=CFrame.new(Char["Head"].CFrame.p+Vector3.new(0,1.5,0))
546
        elseif Char.Parent:findFirstChild("Head")~=nil then
547
        c.CFrame=CFrame.new(Char.Parent["Head"].CFrame.p+Vector3.new(0,1.5,0))
548
        end
549
        f=Instance.new("BodyPosition")
550
        f.P=2000
551
        f.D=100
552
        f.maxForce=Vector3.new(math.huge,math.huge,math.huge)
553
        f.position=c.Position+Vector3.new(0,3,0)
554
        f.Parent=c
555
        game:GetService("Debris"):AddItem(m,.5+du)
556
        c.CanCollide=false
557
        m.Parent=workspace
558
        c.CanCollide=false
559
end
560
561
Player=game:GetService('Players').LocalPlayer
562
Character=Player.Character
563
Mouse=Player:GetMouse()
564
m=Instance.new('Model',Character)
565
it=Instance.new
566
function nooutline(part)
567
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
568
end
569
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
570
	local fp=it("Part")
571
	fp.formFactor=formfactor
572
	fp.Parent=parent
573
	fp.Reflectance=reflectance
574
	fp.Transparency=transparency
575
	fp.CanCollide=false
576
	fp.Locked=true
577
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
578
	fp.Name=name
579
	fp.Size=size
580
	fp.Position=Character.Torso.Position
581
	nooutline(fp)
582
	fp.Material=material
583
	fp:BreakJoints()
584
	return fp
585
end
586
function mesh(Mesh,part,meshtype,meshid,offset,scale)
587
	local mesh=it(Mesh)
588
	mesh.Parent=part
589
	if Mesh=="SpecialMesh" then
590
		mesh.MeshType=meshtype
591
		mesh.MeshId=meshid
592
	end
593
	mesh.Offset=offset
594
	mesh.Scale=scale
595
	return mesh
596
end
597
function weld(parent,part0,part1,c0,c1)
598
	local weld=it("Weld")
599
	weld.Parent=parent
600
	weld.Part0=part0
601
	weld.Part1=part1
602
	weld.C0=c0
603
	weld.C1=c1
604
	return weld
605
end
606
607
Player=game:GetService('Players').LocalPlayer
608
Character=Player.Character
609
Mouse=Player:GetMouse()
610
m=Instance.new('Model',Character)
611
it=Instance.new
612
function nooutline(part)
613
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
614
end
615
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
616
	local fp=it("Part")
617
	fp.formFactor=formfactor
618
	fp.Parent=parent
619
	fp.Reflectance=reflectance
620
	fp.Transparency=transparency
621
	fp.CanCollide=false
622
	fp.Locked=true
623
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
624
	fp.Name=name
625
	fp.Size=size
626
	fp.Position=Character.Torso.Position
627
	nooutline(fp)
628
	fp.Material=material
629
	fp:BreakJoints()
630
	return fp
631
end
632
function mesh(Mesh,part,meshtype,meshid,offset,scale)
633
	local mesh=it(Mesh)
634
	mesh.Parent=part
635
	if Mesh=="SpecialMesh" then
636
		mesh.MeshType=meshtype
637
		mesh.MeshId=meshid
638
	end
639
	mesh.Offset=offset
640
	mesh.Scale=scale
641
	return mesh
642
end
643
function weld(parent,part0,part1,c0,c1)
644
	local weld=it("Weld")
645
	weld.Parent=parent
646
	weld.Part0=part0
647
	weld.Part1=part1
648
	weld.C0=c0
649
	weld.C1=c1
650
	return weld
651
end
652
653
Player=game:GetService('Players').LocalPlayer
654
Character=Player.Character
655
Mouse=Player:GetMouse()
656
m=Instance.new('Model',Character)
657
it=Instance.new
658
function nooutline(part)
659
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
660
end
661
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
662
	local fp=it("Part")
663
	fp.formFactor=formfactor
664
	fp.Parent=parent
665
	fp.Reflectance=reflectance
666
	fp.Transparency=transparency
667
	fp.CanCollide=false
668
	fp.Locked=true
669
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
670
	fp.Name=name
671
	fp.Size=size
672
	fp.Position=Character.Torso.Position
673
	nooutline(fp)
674
	fp.Material=material
675
	fp:BreakJoints()
676
	return fp
677
end
678
function mesh(Mesh,part,meshtype,meshid,offset,scale)
679
	local mesh=it(Mesh)
680
	mesh.Parent=part
681
	if Mesh=="SpecialMesh" then
682
		mesh.MeshType=meshtype
683
		mesh.MeshId=meshid
684
	end
685
	mesh.Offset=offset
686
	mesh.Scale=scale
687
	return mesh
688
end
689
function weld(parent,part0,part1,c0,c1)
690
	local weld=it("Weld")
691
	weld.Parent=parent
692
	weld.Part0=part0
693
	weld.Part1=part1
694
	weld.C0=c0
695
	weld.C1=c1
696
	return weld
697
end
698
699
Player=game:GetService('Players').LocalPlayer
700
Character=Player.Character
701
Mouse=Player:GetMouse()
702
m=Instance.new('Model',Character)
703
it=Instance.new
704
function nooutline(part)
705
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
706
end
707
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
708
	local fp=it("Part")
709
	fp.formFactor=formfactor
710
	fp.Parent=parent
711
	fp.Reflectance=reflectance
712
	fp.Transparency=transparency
713
	fp.CanCollide=false
714
	fp.Locked=true
715
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
716
	fp.Name=name
717
	fp.Size=size
718
	fp.Position=Character.Torso.Position
719
	nooutline(fp)
720
	fp.Material=material
721
	fp:BreakJoints()
722
	return fp
723
end
724
function mesh(Mesh,part,meshtype,meshid,offset,scale)
725
	local mesh=it(Mesh)
726
	mesh.Parent=part
727
	if Mesh=="SpecialMesh" then
728
		mesh.MeshType=meshtype
729
		mesh.MeshId=meshid
730
	end
731
	mesh.Offset=offset
732
	mesh.Scale=scale
733
	return mesh
734
end
735
function weld(parent,part0,part1,c0,c1)
736
	local weld=it("Weld")
737
	weld.Parent=parent
738
	weld.Part0=part0
739
	weld.Part1=part1
740
	weld.C0=c0
741
	weld.C1=c1
742
	return weld
743
end
744
745
Player=game:GetService('Players').LocalPlayer
746
Character=Player.Character
747
Mouse=Player:GetMouse()
748
m=Instance.new('Model',Character)
749
it=Instance.new
750
function nooutline(part)
751
	part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
752
end
753
function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
754
	local fp=it("Part")
755
	fp.formFactor=formfactor
756
	fp.Parent=parent
757
	fp.Reflectance=reflectance
758
	fp.Transparency=transparency
759
	fp.CanCollide=false
760
	fp.Locked=true
761
	fp.BrickColor=BrickColor.new(tostring(brickcolor))
762
	fp.Name=name
763
	fp.Size=size
764
	fp.Position=Character.Torso.Position
765
	nooutline(fp)
766
	fp.Material=material
767
	fp:BreakJoints()
768
	return fp
769
end
770
function mesh(Mesh,part,meshtype,meshid,offset,scale)
771
	local mesh=it(Mesh)
772
	mesh.Parent=part
773
	if Mesh=="SpecialMesh" then
774
		mesh.MeshType=meshtype
775
		mesh.MeshId=meshid
776
	end
777
	mesh.Offset=offset
778
	mesh.Scale=scale
779
	return mesh
780
end
781
function weld(parent,part0,part1,c0,c1)
782
	local weld=it("Weld")
783
	weld.Parent=parent
784
	weld.Part0=part0
785
	weld.Part1=part1
786
	weld.C0=c0
787
	weld.C1=c1
788
	return weld
789
end
790
791
local cR=255
792
local cG=0
793
local cB=0
794
local flg5=1 local omgidk=1
795
local add=15
796
game:GetService("RunService"):BindToRenderStep("Ghost",1,function()
797
	if omgidk>10000 then omgidk=0 end
798
	omgidk=omgidk+1
799
	if cR>=255 then flg5=1 end
800
	if cG>=255 then flg5=2 end
801
	if cB>=255 then flg5=3 end
802
	if flg5==1 then cR=cR-add cG=cG+add end
803
	if flg5==2 then cG=cG-add cB=cB+add end
804
	if flg5==3 then cB=cB-add cR=cR+add end
805
	color=Color3.fromRGB(cR,cG,cB)
806
807
808-
handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(-0.0048122406, -6.40232849, 1.03116059, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289))
808+
809
handleweld = weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(-0.0048122406, -6.40232849, 1.03116059, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289))
810
mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
811
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.39999938, 0.80000025, 4.20000219))
812
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000183105469, -9.09996033, 2.7000494, 1, -1.19209076e-007, 4.47013271e-008, 4.49016397e-008, 0.00168089767, -0.999998569, 1.19133766e-007, 0.999998569, 0.00168089778))
813
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(1, 0.200000271, 4.59999943))
814
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.59981537, -0.319915771, 2.48973823, 1.63094505e-009, -0.00167454977, 0.999998569, 1, -1.19209083e-007, -1.83056925e-009, 1.19211975e-007, 0.999998569, 0.00167454977))
815
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.400000036, 0.200000271, 4.00000048))
816
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(9.30006409, 0.310112, 2.78980875, 2.04899884e-008, -0.00160901435, 0.999998689, 1, -1.19209126e-007, -2.06818243e-008, 1.19242245e-007, 0.999998689, 0.00160901435))
817
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(1, 0.200000271, 4.60000038))
818
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.60009003, 0.310125351, 2.48941946, 5.51521886e-008, -0.00159262656, 0.999998808, 1, -1.78814503e-007, -5.54370416e-008, 1.78902582e-007, 0.999998808, 0.00159262656))
819
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.39999938, 0.200000271, 0.400000036))
820
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.00018119812, -2.2995882, -6.70053864, 1, -1.19209076e-007, -2.38424491e-007, -1.1956142e-007, -0.999998927, -0.00147830346, -2.3824802e-007, 0.00147830346, -0.999998927))
821
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
822
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.39999938, 1.39999998, 0.600001216))
823
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.00016784668, -7.99960327, 1.49982166, 1, -1.19209076e-007, 4.47013271e-008, 4.49034943e-008, 0.00169644796, -0.999998569, 1.1913307e-007, 0.999998569, 0.00169644807))
824
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.400000036, 0.200000271, 4.00000048))
825
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(9.29983521, -0.319908142, 2.79043484, -2.11861551e-008, -0.00168578397, 0.999998569, 1, -1.19209076e-007, 2.09852242e-008, 1.19173528e-007, 0.999998569, 0.00168578397))
826
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
827
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.79997253, -0.349954605, 0.990463495, 1.07072758e-007, -0.00169718312, 0.999998569, 1, -1.19209126e-007, -1.07275234e-007, 1.19391018e-007, 0.999998569, 0.00169718324))
828
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
829
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.670000017, 0.200000003, 1.19999981))
830
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(5.26336288, 0.310119629, 5.93222046, -5.96040408e-008, -0.70810169, 0.706110597, 1, -1.21502552e-007, -3.74334022e-008, 1.12300903e-007, 0.706110597, 0.70810169))
831
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1, 0.220000014, 0.799999952))
832
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.80014038, -0.31993103, 0.989957035, 6.97039013e-008, -0.00164350378, 0.999998689, 1, -1.19209126e-007, -6.98999116e-008, 1.19323843e-007, 0.999998689, 0.00164350378))
833
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
834
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.220000014, 2.60000014))
835
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.79997253, -0.31993103, 2.49022627, 4.06004794e-008, -0.00169145432, 0.999998569, 1, -1.19209126e-007, -4.08021741e-008, 1.19277971e-007, 0.999998569, 0.00169145432))
836
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
837
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.80001068, 0.340049744, 0.990428209, 4.40637784e-008, -0.00169488578, 0.999998569, 1, -1.49011811e-007, -4.43164012e-008, 1.49086716e-007, 0.999998569, 0.00169488578))
838
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
839
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.39999938, 0.400000036, 0.400000006))
840
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000152587891, -6.70035553, 2.00017023, 1, -1.19209076e-007, 4.47013271e-008, 4.48878374e-008, 0.00156501064, -0.999998808, 1.19138974e-007, 0.999998808, 0.00156501064))
841
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.39999938, 1.60000014, 4.00000191))
842
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.00016784668, -7.89893341, 4.39826918, 1, -1.19209076e-007, 4.47013271e-008, 4.49000481e-008, 0.00166750455, -0.999998689, 1.19134377e-007, 0.999998689, 0.00166750455))
843
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000274, 0.400000036))
844
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.310112, 7.90003204, -4.58929634, 1, 2.84616067e-006, -7.45070793e-007, 7.49569381e-007, -0.00158089248, 0.999998808, 2.84497946e-006, -0.999998808, -0.00158089248))
845
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
846
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.220000014, 0.999999821))
847
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(3.58646393, -0.319763184, 9.33159637, -1.63910798e-007, -0.70812124, 0.706090868, 1, -1.80042989e-007, 5.15776932e-008, 9.06034572e-008, 0.706090927, 0.708121181))
848
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.220000014, 0.999999821))
849
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(3.58652115, 0.310195923, 9.33126068, -1.63910798e-007, -0.70812124, 0.706090868, 1, -1.80042989e-007, 5.15776932e-008, 9.06034572e-008, 0.706090927, 0.708121181))
850
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.799999356, 0.600000262, 0.599999964))
851
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(7.62939453e-005, -0.299938679, -7.40008545, 1, -5.96036465e-008, 1.4898605e-008, -5.95790759e-008, -0.999998689, -0.00164388563, 1.49965658e-008, 0.00164388563, -0.999998689))
852
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
853
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.670000017, 0.200000003, 1.19999981))
854
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(5.26215744, -0.319839478, 5.93211365, -5.96040337e-008, -0.708129704, 0.706082463, 1, -8.2250601e-008, 1.92603378e-009, 5.67118228e-008, 0.706082463, 0.708129704))
855
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.379999876, 4.44999886, 1.39999998))
856
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-2.86102295e-005, -6.05581665, 9.78747559, -1, 1.78814503e-007, -4.47013306e-008, -1.84294734e-007, -0.966237664, 0.257652611, 2.87991475e-009, 0.257652611, 0.966237605))
857
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
858
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.600000024, 0.200000271, 0.599999964))
859
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.61552429, 0.320259094, -0.297967553, -1.84659328e-008, -3.39928299e-008, 1, 1, -1.19209076e-007, 1.84659292e-008, 1.19209076e-007, 1, 3.39928334e-008))
860
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
861
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.600000024, 0.200000271, 0.599999964))
862
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.61553192, -0.309753418, -0.297967553, -1.84659328e-008, -3.39928299e-008, 1, 1, -1.19209076e-007, 1.84659292e-008, 1.19209076e-007, 1, 3.39928334e-008))
863
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
864
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.409999728, 4.00000095, 0.330000013))
865
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.00499916077, -4.83165169, 10.0465012, -1, 1.78814503e-007, -8.94054182e-008, -1.98313487e-007, -0.943822086, 0.33045423, -2.52927972e-008, 0.33045423, 0.943822086))
866
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
867
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.220000014, 2.60000014))
868
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.80001068, 0.310049057, 2.49015784, 5.47156347e-008, -0.00167805818, 0.999998569, 1, -1.49011811e-007, -5.49657635e-008, 1.4910384e-007, 0.999998569, 0.0016780583))
869
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.39999938, 1.80000019, 0.600001216))
870
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000183105469, -7.79891205, 2.09967065, 1, -1.19209076e-007, 4.47013271e-008, 4.49037572e-008, 0.00169865007, -0.999998569, 1.1913297e-007, 0.999998569, 0.00169865007))
871
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.799999356, 2.00000048, 1.19999993))
872
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(5.34057617e-005, -8.7000885, -4.86373901e-005, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289))
873
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000274, 0.400000036))
874
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.319801331, 7.89910126, -4.58908844, 1, 2.84616067e-006, -7.45070793e-007, 7.49658e-007, -0.00161204918, 0.999998689, 2.84495559e-006, -0.999998689, -0.00161204918))
875
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
876
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000274, 0.409999907))
877
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.329921722, 7.89820099, 6.19515657, -1, -5.81154893e-007, -2.93556536e-006, -2.93463631e-006, -0.00159285218, 0.999998808, -5.85830151e-007, 0.999998808, 0.00159285218))
878
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
879
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.200000003, 0.400000006))
880
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.01046753, 0.350257874, 5.18440056, -1.16208916e-007, -0.00116245728, 0.999999404, 1, -1.49011811e-007, 1.16035764e-007, 1.48876836e-007, 0.999999404, 0.00116245728))
881
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
882
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000274, 0.409999907))
883
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.310253143, 7.89775848, 6.19417667, -1, -5.81154893e-007, -2.93556536e-006, -2.93464905e-006, -0.0015708321, 0.999998808, -5.8576552e-007, 0.999998808, 0.0015708321))
884
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
885
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000036, 1.62000012))
886
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.319927216, -9.30068207, 5.59171581, 1, -2.6822255e-007, 7.00361113e-007, 7.00755379e-007, 0.00147273287, -0.999998927, 2.67190842e-007, 0.999998927, 0.00147273298))
887
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
888
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 1.4000001, 1.22000003))
889
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.310224533, -8.39997101, 5.39148617, 1, -2.6822255e-007, 7.00361113e-007, 7.00779196e-007, 0.0015618616, -0.999998808, 2.67128371e-007, 0.999998808, 0.0015618616))
890
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000036, 1.62000012))
891
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.310092926, -9.30047607, 5.59133577, 1, -2.6822255e-007, 7.00361113e-007, 7.00781584e-007, 0.0015708236, -0.999998808, 2.67122118e-007, 0.999998808, 0.0015708236))
892
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
893
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.200000003, 0.400000006))
894
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.00996399, 0.340263367, 5.58438683, -7.12149699e-008, -0.00116247579, 0.999999404, 1, -1.49011782e-007, 7.10417893e-008, 1.48929118e-007, 0.999999404, 0.00116247579))
895
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
896
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 1.4000001, 1.22000003))
897
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.319879532, -8.40018463, 5.39162922, 1, -2.6822255e-007, 7.00361113e-007, 7.00766748e-007, 0.00151529128, -0.999998927, 2.67161028e-007, 0.999998927, 0.00151529128))
898
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.670000017, 0.200000003, 0.599999845))
899
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(7.60210419, -0.309745789, -0.0262105465, 4.40637713e-008, -0.00107338815, 0.999999404, 1, -1.19209105e-007, -4.41917543e-008, 1.1925647e-007, 0.999999404, 0.00107338815))
900
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.39999938, 0.200019345, 0.600000024))
901
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000244140625, -2.40885925, -0.0768338442, 1, -1.49011782e-007, 1.19208131e-007, 1.1940115e-007, 0.00129606796, -0.999999166, 1.48857154e-007, 0.999999166, 0.00129606796))
902
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.379999906, 7.79999733, 0.800000012))
903
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.00018119812, -6.90127945, 10.9409103, -1, 2.38419915e-007, -5.96027014e-008, -2.36358872e-007, -0.866616547, 0.498974591, 6.73128042e-008, 0.498974621, 0.866616607))
904
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
905
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.39999938, 3.60000086, 1.39999986))
906
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-7.62939453e-005, -3.00021267, 10.1993179, -1, 1.78814503e-007, -4.47013306e-008, -1.78743079e-007, -0.999998808, -0.00159316196, -4.49861588e-008, -0.00159316196, 0.999998808))
907
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
908
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.410000145, 0.800000012, 7.41999722))
909
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.00538063049, 10.1888885, 6.88093567, -1, -9.55176984e-006, 6.25857228e-006, 5.75701051e-007, 0.505192995, 0.863006473, -1.14050263e-005, 0.863006473, -0.505192995))
910
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
911
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.409999877, 0.800000012, 4.42000008))
912
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.00535774231, 8.73274994, 6.06542397, -1, -1.08034828e-005, 3.5465257e-006, 5.6521867e-007, 0.264285922, 0.964444458, -1.13566548e-005, 0.964444399, -0.264285892))
913
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
914
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.670000017, 0.200000003, 0.599999845))
915
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(7.62210083, 0.310256958, -0.0261899233, 6.71427998e-008, -0.00107328093, 0.999999404, 1, -1.1920914e-007, -6.72707898e-008, 1.19281268e-007, 0.999999404, 0.00107328082))
916
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.39999938, 6.20002079, 0.200000003))
917
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000244140625, -3.80190277, 0.122788072, 1, -1.19209076e-007, 4.47013271e-008, 4.48775985e-008, 0.00147906633, -0.999998927, 1.19142832e-007, 0.999998927, 0.00147906633))
918
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 1, 0.400000006))
919
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.329883575, -8.59844971, 6.20097303, 1, -2.6822255e-007, 7.00361113e-007, 7.00766861e-007, 0.00151565345, -0.999998927, 2.67160772e-007, 0.999998927, 0.00151565345))
920
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.200000003, 0.400000006))
921
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.00995636, -0.329696655, 5.58438635, -2.65702909e-008, -0.00116240955, 0.999999404, 1, -1.19209076e-007, 2.64317368e-008, 1.19178281e-007, 0.999999404, 0.00116240955))
922
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
923
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
924
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.41021729, 0.340257645, 5.3848424, -6.07377402e-008, -0.0011624021, 0.999999404, 1, -1.49011782e-007, 6.05645667e-008, 1.48941297e-007, 0.999999404, 0.0011624021))
925
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
926
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.200000003, 0.400000006))
927
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.40995026, -0.329879761, 5.38500214, 1.32141196e-008, -0.00116239127, 0.999999404, 1, -1.19209112e-007, -1.33526949e-008, 1.19224552e-007, 0.999999404, 0.00116239127))
928
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
929
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 1, 0.400000006))
930
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.310100555, -8.58777618, 6.20157337, 1, -2.6822255e-007, 7.00361113e-007, 7.00768169e-007, 0.00152056233, -0.999998927, 2.67157333e-007, 0.999998927, 0.00152056233))
931
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 1, 0.400000006))
932
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.329891205, -8.60809326, 6.20138168, 1, -2.6822255e-007, 7.00361113e-007, 7.00766861e-007, 0.00151576323, -0.999998927, 2.67160686e-007, 0.999998927, 0.00151576323))
933
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000033, 0.200000003, 0.400000006))
934
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.01044464, -0.329711914, 5.18439245, -3.97250446e-008, -0.00116242282, 0.999999404, 1, -1.19209027e-007, 3.95864994e-008, 1.19162934e-007, 0.999999404, 0.00116242282))
935
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
936
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.449999839, 0.400000036, 1.62000012))
937
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.0149345398, -9.30037689, 5.59038067, 1, -2.6822255e-007, 7.00361113e-007, 7.00780447e-007, 0.00156656664, -0.999998808, 2.67125102e-007, 0.999998808, 0.00156656664))
938
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
939
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.799999356, 0.600000262, 0.599999964))
940
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-5.34057617e-005, -0.300057292, -7.40003967, -1, 5.96036465e-008, -2.97999652e-008, 5.95545799e-008, 0.999998689, 0.00164382579, 2.98979046e-008, 0.00164382579, -0.999998689))
941
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
942
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000274, 0.600000024))
943
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.319915771, -9.29981232, -0.490157127, -1, 2.38419972e-007, 7.89774788e-007, -7.89374269e-007, 0.00167544454, -0.999998569, -2.39742832e-007, -0.999998569, -0.00167544466))
944
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
945
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.39999938, 0.80000025, 0.599999964))
946
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(9.91821289e-005, -6.90019989, 1.50059986, 1, -1.19209076e-007, 4.47013271e-008, 4.4898453e-008, 0.00165412505, -0.999998689, 1.19134981e-007, 0.999998689, 0.00165412517))
947
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.799999356, 0.400000274, 0.799999952))
948
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(6.86645508e-005, 6.1750412e-005, -7.30003357, 1, -1.19209076e-007, 4.47013271e-008, -1.19135436e-007, -0.999998689, -0.00164388528, 4.48972344e-008, 0.00164388528, -0.999998689))
949
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.400000274, 0.600000024))
950
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.310134888, -9.30013275, -0.489312172, -1, 1.7881456e-007, 8.34478897e-007, -8.34196783e-007, 0.00157221942, -0.999998808, -1.80126335e-007, -0.999998808, -0.00157221942))
951
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
952
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1, 0.230000019, 0.799999952))
953
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.80010223, 0.31505394, 0.98993659, 1.01164737e-007, -0.00164465304, 0.999998689, 1, -1.19209147e-007, -1.01360932e-007, 1.19375699e-007, 0.999998689, 0.00164465304))
954
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
955
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.799999356, 0.80000025, 0.399999976))
956
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(5.34057617e-005, 5.73396683e-005, -7.50003052, 1, -5.96036465e-008, 1.4898605e-008, -5.95790759e-008, -0.999998689, -0.00164388563, 1.49965658e-008, 0.00164388563, -0.999998689))
957
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.39999938, 2.40000057, 0.599999964))
958
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(7.62939453e-005, -7.70002747, 0.900098503, 1, -1.19209076e-007, 4.47013271e-008, 4.490321e-008, 0.00169407704, -0.999998569, 1.19133176e-007, 0.999998569, 0.00169407704))
959
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(1.20000005, 0.200000271, 3.60000038))
960
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(6.64672661, -0.319740295, 6.71153259, -1.49010674e-007, -0.965943158, 0.258754343, 1, -1.37425829e-007, 6.28593853e-008, -2.51590695e-008, 0.258754343, 0.965943217))
961
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.39999938, 0.400021255, 0.400000006))
962
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000175476074, 1.89885712, 0.0156496763, 1, -5.96036465e-008, 1.4898605e-008, 1.49867816e-008, 0.00147968298, -0.999998927, 5.95815379e-008, 0.999998927, 0.00147968309))
963
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.39999938, 12.200017, 0.200000003))
964
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000259399414, -1.20265961, -0.277392983, 1, -5.96036465e-008, 1.4898605e-008, 1.49865258e-008, 0.00147536665, -0.999998927, 5.95816019e-008, 0.999998927, 0.00147536665))
965
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
966
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.40220642, -0.339752197, -1.96429634, -6.7053584e-008, -0.258818865, 0.965925932, 1, -1.20999317e-007, 3.69973279e-008, 1.07300764e-007, 0.965925872, 0.258818835))
967
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
968
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(1.20000005, 0.200000271, 3.60000038))
969
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(6.64637566, 0.320261002, 6.71100616, -4.47039312e-008, -0.965927541, 0.258812845, 1, -3.71759228e-008, 3.39808679e-008, -2.32014479e-008, 0.258812845, 0.965927541))
970
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.400000006, 0.400021255, 0.400000036))
971
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000144958496, 7.89817047, 0.00817203522, 1, -1.19209076e-007, 4.47013271e-008, 4.48658213e-008, 0.00138024637, -0.999999046, 1.19147266e-007, 0.999999046, 0.00138024637))
972
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.39999938, 0.200019345, 0.600000024))
973
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000267028809, -0.808837891, -0.0789266825, 1, -1.49011782e-007, 1.19208131e-007, 1.19401165e-007, 0.00129613746, -0.999999166, 1.4885714e-007, 0.999999166, 0.00129613746))
974
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.600000024, 0.200000271, 4.5999999))
975
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.4032135, -0.309745789, -0.264072418, -3.72516631e-008, -0.258819014, 0.965925872, 1, -1.20990833e-007, 6.14636386e-009, 1.15277373e-007, 0.965925872, 0.258818984))
976
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.39999938, 0.200019345, 0.600000024))
977
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.00025177002, -4.00882721, -0.074775219, 1, -1.49011782e-007, 1.19208131e-007, 1.19401165e-007, 0.00129615236, -0.999999166, 1.48857154e-007, 0.999999166, 0.00129615236))
978
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.200000003, 0.400000036, 3.89000034))
979
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.130329132, 3.28823376, -5.64214325, 1, -9.53684548e-007, 4.64922141e-006, -5.19986472e-008, -0.981745541, -0.190198928, 4.74574244e-006, 0.190198958, -0.981745601))
980
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
981
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 1.00000024, 1.19999993))
982
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.3203125, -5.2211442, -6.02006531, -1, 1.19209076e-007, -4.47013271e-008, 1.19207854e-007, 1, 2.74369886e-005, 4.4704592e-008, 2.74369886e-005, -1))
983
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
984
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.20000029, 0.640000463, 3.82000041))
985
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.60221863, 0.00025177002, -0.674562454, -3.72516631e-008, -0.258819014, 0.965925872, 1, -1.20990833e-007, 6.14636386e-009, 1.15277373e-007, 0.965925872, 0.258818984))
986
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.20000041, 2.00000024, 0.400000751))
987
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.00805044174, -9.8965683, 0.0198116302, -1.78812996e-007, -1, -2.60661e-005, 9.18402918e-008, -2.60661e-005, 1, -1, 1.78810609e-007, 9.1844953e-008))
988
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=1033714",Vector3.new(0, 0, 0),Vector3.new(0.486000061, 2.70200038, 0.234000027))
989
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 1.00000024, 1.19999993))
990
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.319747925, -5.23132992, -6.02177429, -1, 1.19209076e-007, -4.47013271e-008, 1.19205289e-007, 1, 8.46573894e-005, 4.47114168e-008, 8.46573894e-005, -1))
991
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
992
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.400000006, 0.800021231, 0.800000012))
993
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000129699707, 7.29879761, 0.00948095322, 1, -1.19209076e-007, 4.47013271e-008, 4.48690756e-008, 0.0014075588, -0.999999046, 1.19146044e-007, 0.999999046, 0.00140755891))
994
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1, 0.200000271, 0.799999952))
995
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.40219879, -0.329719543, -1.96434212, -1.04305997e-007, -0.258814603, 0.965927064, 1, -1.49004592e-007, 6.80604515e-008, 1.26312528e-007, 0.965927064, 0.258814603))
996
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
997
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.400000006, 0.800021231, 1.20000005))
998
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.000144958496, 8.49656677, 0.00763309002, 1, -1.19209076e-007, 4.47013271e-008, 4.48658888e-008, 0.0013808267, -0.999999046, 1.19147238e-007, 0.999999046, 0.0013808267))
999
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.439999968, 0.849999964, 3.90000057))
1000
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(-0.000289916992, -3.91264629, -5.64580536, -1, 1.19209076e-007, -4.47013271e-008, 1.08530877e-007, 0.98174566, 0.190198451, 6.65587194e-008, 0.190198481, -0.98174572))
1001
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1002
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.200000003, 0.200000003, 0.400000006))
1003
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.40220642, 0.350257874, -1.9643116, -6.7053584e-008, -0.258818865, 0.965925932, 1, -1.20999317e-007, 3.69973279e-008, 1.07300764e-007, 0.965925872, 0.258818835))
1004
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1005
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,color,"Part",Vector3.new(0.600000024, 0.200000271, 4.5999999))
1006
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.40222931, 0.320251465, -0.264352798, -3.72516631e-008, -0.258819014, 0.965925872, 1, -1.20990833e-007, 6.14636386e-009, 1.15277373e-007, 0.965925872, 0.258818984))
1007
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1, 0.200000271, 0.799999952))
1008
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(8.40221405, 0.340270996, -1.96434784, -1.11756485e-007, -0.258814663, 0.965927064, 1, -1.50931754e-007, 7.52573754e-008, 1.26311349e-007, 0.965927064, 0.258814663))
1009
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1010
Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Dark stone grey","Hitbox",Vector3.new(0.39999938, 3.00000024, 11.4000025))
1011
Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 1, -1.19209076e-007, 4.47013271e-008, 4.48972415e-008, 0.00164393289, -0.999998689, 1.19135436e-007, 0.999998689, 0.00164393289),CFrame.new(0.00016784668, -8.39911652, 2.29857397, 1, -1.19209076e-007, 4.47013271e-008, 4.49000481e-008, 0.00166750455, -0.999998689, 1.19134377e-007, 0.999998689, 0.00166750455))
1012
end)
1013
1014
function attackone()
1015
        attack=true
1016
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1017
        for i=0,1,0.1 do
1018
                swait()
1019
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(80)),.3)
1020
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(10),math.rad(-70)),.3)
1021
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(90), math.rad(90)), 0.3)
1022
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(80), math.rad(-70), math.rad(0)), 0.3)
1023
RH.C0=clerp(RH.C0,cf(1,-1,0.2)*angles(math.rad(0),math.rad(40),math.rad(20)),.3)
1024
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1025
handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1026
        end
1027
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.6) 
1028
so("http://roblox.com/asset/?id=231917871",Hitbox,1,0.8) 
1029
 for i=0,1,0.1 do
1030
                swait()
1031
 local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1032
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1033
local h = 5
1034
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1035
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1036
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1037
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1038
scfr = blcf
1039
elseif not scfr then
1040
scfr = blcf
1041
end
1042
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(-80)),.3)
1043
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(5),math.rad(70)),.3)
1044
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0.5) * angles(math.rad(0), math.rad(-70), math.rad(90)), 0.3)
1045
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(70), math.rad(-70), math.rad(0)), 0.3)
1046
RH.C0=clerp(RH.C0,cf(1,-1,0.2)*angles(math.rad(0),math.rad(40),math.rad(20)),.3)
1047
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1048
handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1049
        end
1050
        attack=false
1051
con1:disconnect()
1052
end
1053
1054
function attacktwo()
1055
        attack=true
1056
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1057
        for i=0,1,0.1 do
1058
                swait()
1059
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(90)),.2)
1060
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(-80)),.3)
1061
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(90),math.rad(90)),.1)
1062
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(70), math.rad(-70), math.rad(0)), 0.3)
1063
1064
        end
1065
1066
for i=0,1,1 do
1067
swait()
1068
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.7) 
1069
so("http://www.roblox.com/asset/?id=234365573",Hitbox,1,0.7)
1070
for i=0,1,0.1 do
1071
swait()
1072
 local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1073
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1074
local h = 5
1075
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1076
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1077
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1078
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1079
scfr = blcf
1080
elseif not scfr then
1081
scfr = blcf
1082
end
1083
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(-50)),.3)
1084
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-10),math.rad(110)),.1)
1085
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-60)), 0.3)
1086
handleweld.C0=clerp(handleweld.C0,cf(0,-0,0)*angles(math.rad(-50),math.rad(10),math.rad(0)),.3)
1087
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*euler(0,0,-6*i),.3)
1088
end
1089
end
1090
con1:disconnect()
1091
attack=false
1092
end
1093
1094
function attackthree()
1095
        attack=true
1096
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1097
        for i=0,1,0.1 do
1098
swait()
1099
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-10),math.rad(0),math.rad(00)),.3)
1100
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(-5),math.rad(00)),.3)
1101
RW.C0=clerp(RW.C0,cf(1,0.8,-1)*angles(math.rad(150),math.rad(0),math.rad(-50)),.3)
1102
LW.C0=clerp(LW.C0,cf(-1,0.8,-1)*angles(math.rad(150),math.rad(0),math.rad(50)),.3)
1103
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1104
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1105
handleweld.C0=clerp(handleweld.C0,cf(-1,0,-.2)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.3)
1106
        end
1107
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.4) 
1108
so("http://www.roblox.com/asset/?id=234365549",Hitbox,1,0.6)
1109
for i=0,1,.1 do
1110
swait()
1111
 local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1112
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1113
local h = 5
1114
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1115
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1116
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1117
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1118
scfr = blcf
1119
elseif not scfr then
1120
scfr = blcf
1121
end
1122
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1123
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(-5),math.rad(00)),.3)
1124
RW.C0=clerp(RW.C0,cf(1,0.2,-.5)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
1125
LW.C0=clerp(LW.C0,cf(-1,0.2,-.5)*angles(math.rad(10),math.rad(0),math.rad(50)),.3)
1126
RH.C0=clerp(RH.C0,cf(1,-1,.2)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
1127
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(0)),.3)
1128
handleweld.C0=clerp(handleweld.C0,cf(-1,0,-.2)*angles(math.rad(-20),math.rad(-20),math.rad(50)),.3)
1129
        end
1130
attack=false
1131
con1:disconnect()
1132
end
1133
1134
function CrimsonMoon()
1135
attack=true
1136
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,10000000,10000000,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1137
for i=0,1,0.1 do
1138
swait()
1139
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(120),math.rad(80)),.3)
1140
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-10),math.rad(0),math.rad(-10)),.3)
1141
handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-30),math.rad(-5),math.rad(0)),.3)
1142
end
1143
for i=0,1,0.15 do
1144
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.5) 
1145
so("http://roblox.com/asset/?id=28144425",Torso,1,0.8)
1146
swait()
1147
for i=0,1,0.1 do
1148
swait()
1149
local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1150
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1151
local h = 5
1152
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1153
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1154
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1155
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1156
scfr = blcf
1157
elseif not scfr then
1158
scfr = blcf
1159
end
1160
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(-40),math.rad(90)),.3)
1161
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(-20),math.rad(0),math.rad(-60)),.3)
1162
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,5)*euler(0,-1.5,-6*i),.3)
1163
handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-30),math.rad(-5),math.rad(0)),.3)
1164
end
1165
end
1166
attack=false
1167
con1:disconnect()
1168
end
1169
1170
function BreakEffect(brickcolor,cframe,x1,y1,z1)
1171
local prt=part("Custom",workspace,"SmoothPlastic",0,0,"Really red","Effect",vt(0.5,0.5,0.5))
1172
prt.Anchored=true
1173
prt.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
1174
local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1))
1175
coroutine.resume(coroutine.create(function(Part,CF,Numbb,randnumb) 
1176
CF=Part.CFrame
1177
Numbb=0
1178
randnumb=math.random()-math.random()
1179
for i=0,1,0.05 do
1180
wait()
1181
CF=CF*cf(0,1,0)
1182
--Part.CFrame=Part.CFrame*euler(0.5,0,0)*cf(0,1,0)
1183
Part.CFrame=CF*euler(Numbb,0,0)
1184
Part.Transparency=i
1185
Numbb=Numbb+randnumb
1186
end
1187
Part.Parent=nil
1188
end),prt,CF,Numbb,randnumb)
1189
end
1190
1191
function Execution() --HEUAHUEHAUEHAUHUEAHUAEHUAHEUAHEUH
1192
attack=true
1193
con1=Hitbox.Touched:connect(function(hit) Damagefunc(hit,999999999,999999999,math.random(10,20),"Knockdown",RootPart,.2,1) end) 
1194
Humanoid.WalkSpeed = 0
1195
for i=0,1,0.03 do
1196
swait()
1197
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(60)),.1)
1198
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-60)),.1)
1199
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(90),math.rad(120)),.1)
1200
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(100), math.rad(0), math.rad(0)), 0.1)
1201
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.1)
1202
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1203
handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(0),math.rad(10),math.rad(0)),.1)
1204
end
1205
so("http://roblox.com/asset/?id=92597369",Hitbox,1,0.5) 
1206
so("http://roblox.com/asset/?id=28144425",Torso,1,0.5)
1207
 hitconasdf = Hitbox.Touched:connect(function(hit)
1208
                local hum12 = hit.Parent:FindFirstChild("Humanoid")
1209
                if hum12 and not hum12:IsDescendantOf(Character) then
1210
                        so('http://roblox.com/asset/?id=154965973',Hitbox,1,0.8)
1211
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1212
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1213
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1214
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1215
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1216
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1217
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1218
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1219
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1220
                        BreakEffect(BrickColor.new("Really red"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1221
                        hitconasdf:disconnect()
1222
                end
1223
        end)
1224
for i=0,1,0.03 do
1225
swait()
1226
local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1227
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1228
local h = 5
1229
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1230
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1231
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1232
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1233
scfr = blcf
1234
elseif not scfr then
1235
scfr = blcf
1236
end
1237
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-90)),.2)
1238
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(60)),.2)
1239
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-20),math.rad(70)),.2)
1240
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(0), math.rad(0), math.rad(-40)), 0.2)
1241
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.2)
1242
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0)),.2)
1243
handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(0),math.rad(10),math.rad(0)),.2)
1244
end
1245
attack=false
1246
con1:disconnect()
1247
Humanoid.WalkSpeed= 16
1248
pcall(function()
1249
        hitconasdf:disconnect()
1250
        end)
1251
end
1252
1253
mouse.Button1Down:connect(function()
1254
        if attack==false then
1255
                if attacktype==1 then
1256
                        attack=true
1257
                        attacktype=2
1258
                        attackone()
1259
                elseif attacktype==2 then
1260
                        attack=true
1261
                        attacktype=3
1262
                        attacktwo()
1263
               elseif attacktype==3 then
1264
                        attack=true
1265
                        attacktype=1
1266
                        attackthree()
1267
                end
1268
        end
1269
end)
1270
1271
mouse.KeyDown:connect(function(k)
1272
	k=k:lower()
1273
	if k=='q' then
1274
		if attack==false then
1275
			CrimsonMoon()
1276
		end
1277
		elseif k=='e' then
1278
		if attack==false then
1279
			Execution()
1280
		end
1281
	end
1282
end)
1283
1284
1285
local sine = 0
1286
local change = 1
1287
local val = 0
1288
1289
while true do
1290
swait()
1291
sine = sine + change
1292
local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude 
1293
local velderp=RootPart.Velocity.y
1294
hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
1295
if equipped==true or equipped==false then
1296
if attack==false then
1297
idle=idle+1
1298
else
1299
idle=0
1300
end
1301
if idle>=500 then
1302
if attack==false then
1303
--Sheath()
1304
end
1305
end
1306
if RootPart.Velocity.y > 1 and hitfloor==nil then 
1307
Anim="Jump"
1308
if attack==false then
1309
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1310
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
1311
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(10)), 0.3)
1312
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-30)), 0.3)
1313
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
1314
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1315
handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(10),math.rad(0)),.3)
1316
end
1317
elseif RootPart.Velocity.y < -1 and hitfloor==nil then 
1318
Anim="Fall"
1319
if attack==false then
1320
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(5),math.rad(0),math.rad(0)),.3)
1321
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(10),math.rad(0),math.rad(0)),.3)
1322
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(30), math.rad(0), math.rad(20)), 0.3)
1323
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-40)), 0.3)
1324
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
1325
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1326
handleweld.C0=clerp(handleweld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(10),math.rad(0)),.3)
1327
end
1328
elseif torvel<1 and hitfloor~=nil then
1329
Anim="Idle"
1330
if attack==false then
1331
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(60)),.3)
1332
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(5),math.rad(-50)),.3)
1333
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(70), math.rad(100), math.rad(0)), 0.3)
1334
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(-70), math.rad(0)), 0.3)
1335
RH.C0=clerp(RH.C0,cf(1,-1,0.2)*angles(math.rad(0),math.rad(40),math.rad(20)),.3)
1336
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(0)),.3)
1337
handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1338
end
1339
elseif torvel>2 and torvel<22 and hitfloor~=nil then
1340
Anim="Walk"
1341
if attack==false then
1342
change=3
1343
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(60)),.3)
1344
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(10),math.rad(-50)),.3)
1345
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(70), math.rad(100), math.rad(0)), 0.3)
1346
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(-70), math.rad(0)), 0.3)
1347
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(80),math.rad(20)),.3)
1348
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-100),math.rad(0)),.3)
1349
handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1350
end
1351
elseif torvel>=22 and hitfloor~=nil then
1352
Anim="Run"
1353
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(60)),.3)
1354
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(10),math.rad(-50)),.3)
1355
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(70), math.rad(100), math.rad(0)), 0.3)
1356
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(50), math.rad(-70), math.rad(0)), 0.3)
1357
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(80),math.rad(20)),.3)
1358
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-100),math.rad(0)),.3)
1359
handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(-5),math.rad(0)),.3)
1360
end
1361
end
1362
end