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