View difference between Paste ID: zpXEPDhv and N2iBnG1s
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;print("FE Compatibility: by WaverlyCole");InternalData = {}
2
do
3
    script.Parent = owner.Character
4
    local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
5
    local function NewFakeEvent()
6
        local Bind = Instance.new("BindableEvent")
7
        local Fake;Fake = {Connections = {},
8
        fakeEvent=true;
9
        Connect=function(self,Func)
10
            Bind.Event:connect(Func)
11
            self.Connections[Bind] = true
12
            return setmetatable({Connected = true},{
13
            __index = function (self,Index)
14
                if Index:lower() == "disconnect" then
15
                    return function() Fake.Connections[Bind] = false;self.Connected = false end
16
                end
17
                return Fake[Index]
18
            end;
19
            __tostring = function() return "Connection" end;
20
        })
21
        end}
22
        Fake.connect = Fake.Connect;return Fake;
23
    end
24
    local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
25
    local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
26
    local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
27
        self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
28
    end};ContextActionService.UnBindAction = ContextActionService.BindAction
29
    local function TriggerEvent(self,Event,...)
30
        local Trigger = Mouse[Event]
31
        if Trigger and Trigger.fakeEvent and Trigger.Connections then
32
            for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
33
        end
34
    end
35
    Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
36
    Event.OnServerEvent:Connect(function(FiredBy,Input)
37
        if FiredBy.Name ~= owner.Name then return end
38
        if Input.MouseEvent then
39
            Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
40
        else
41
            local Begin = Input.UserInputState == Enum.UserInputState.Begin
42
            if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
43
            for _,Action in pairs(ContextActionService.Actions) do
44
                for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
45
            end
46
            Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
47
            UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
48
        end
49
    end)
50
    InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
51
    Event.Parent = NLS([[
52
        local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
53
        local Input = function(Input,gameProcessedEvent)
54
            if gameProcessedEvent then return end
55
            Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
56
        end
57
        UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
58
        local Hit,Target
59
        while wait(1/30) do
60
            if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
61
                Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
62
            end
63
        end
64
    ]],owner.Character)
65
end
66
RealGame = game;game = setmetatable({},{
67
    __index = function (self,Index)
68
        local Sandbox = function (Thing)
69
            if Thing:IsA("Player") then
70
                local RealPlayer = Thing
71
                return setmetatable({},{
72
                    __index = function (self,Index)
73
                        local Type = type(RealPlayer[Index])
74
                        if Type == "function" then
75
                            if Index:lower() == "getmouse" or Index:lower() == "mouse" then
76
                                return function (self)return InternalData["Mouse"] end
77
                            end
78
                            return function (self,...)return RealPlayer[Index](RealPlayer,...) end
79
                        end
80
                        return RealPlayer[Index]
81
                    end;
82
                    __tostring = function(self) return RealPlayer.Name end
83
                })
84
            end
85
        end
86
        if RealGame[Index] then
87
            local Type = type(RealGame[Index])
88
            if Type == "function" then
89
                if Index:lower() == "getservice" or Index:lower() == "service" then
90
                    return function (self,Service)
91
                        local FakeServices = {
92
                            ["players"] = function()
93
                                return setmetatable({},{
94
                                    __index = function (self2,Index2)
95
                                        local RealService = RealGame:GetService(Service)
96
                                        local Type2 = type(Index2)
97
                                        if Type2 == "function" then
98
                                            return function (self,...) return RealService[Index2](RealService,...)end
99
                                        else
100
                                            if Index2:lower() == "localplayer" then return Sandbox(owner) end
101
                                            return RealService[Index2]
102
                                        end
103
                                    end;
104
                                    __tostring = function(self) return RealGame:GetService(Service).Name end
105
                                })
106
                            end;
107
                            ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
108
                            ["userinputservice"] = function() return InternalData["UserInputService"] end;
109
                            ["runservice"] = function()
110
                                return setmetatable({},{
111
                                    __index = function(self2,Index2)
112
                                        local RealService = RealGame:GetService(Service)
113
                                        local Type2 = type(Index2)
114
                                        if Type2 == "function" then
115
                                            return function (self,...) return RealService[Index2](RealService,...) end
116
                                        else
117
                                            local RunServices = {
118
                                                ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
119
                                                ["renderstepped"] = function() return RealService["Stepped"] end
120
                                            }
121
                                            if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
122
                                            return RealService[Index2]
123
                                        end
124
                                    end
125
                                })
126
                            end
127
                        }
128
                        if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
129
                        return RealGame:GetService(Service)
130
                    end
131
                end
132
                return function (self,...) return RealGame[Index](RealGame,...) end
133
            else
134
                if game:GetService(Index) then return game:GetService(Index) end
135
                return RealGame[Index]
136
            end
137
        end
138
        return nil
139
    end
140
});Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
141
 
142
--Raw paste link for current version : https://gist.githubusercontent.com/anonymous/943de42400f4bf3503daccef2e658f18/raw/5a824d715ff27d8b86c98195345b4e2ca0f48e34/gistfile1.txt
143
Player=game:GetService("Players").LocalPlayer
144
Character=Player.Character 
145
PlayerGui=Player.PlayerGui
146
Backpack=Player.Backpack 
147
Torso=Character.Torso 
148
Character.Head.face.Texture = "rbxassetid://0"
149
Head=Character.Head 
150
Humanoid=Character.Humanoid
151
m=Instance.new('Model',Character)
152
LeftArm=Character["Left Arm"] 
153
LeftLeg=Character["Left Leg"] 
154
RightArm=Character["Right Arm"] 
155
RightLeg=Character["Right Leg"] 
156
LS=Torso["Left Shoulder"] 
157
LH=Torso["Left Hip"] 
158
RS=Torso["Right Shoulder"] 
159
RH=Torso["Right Hip"] 
160
Face = Head.face
161
Neck=Torso.Neck
162
it=Instance.new
163
attacktype=1
164
vt=Vector3.new
165
cf=CFrame.new
166
euler=CFrame.fromEulerAnglesXYZ
167
angles=CFrame.Angles
168
cloaked=false
169
necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
170
necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
171
LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
172
LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
173
RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
174
RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
175
RootPart=Character.HumanoidRootPart
176
RootJoint=RootPart.RootJoint
177
RootCF=euler(-1.57,0,3.14)
178
attack = false 
179
attackdebounce = false 
180
deb=false
181
equipped=true
182
hand=false
183
MMouse=nil
184
combo=0
185
mana=0
186
trispeed=.2
187
attackmode='none'
188
local idle=0
189
local Anim="Idle"
190
local Effects={}
191
local gun=false
192
local shoot=false
193
player=nil 
194
mana=0
195
char = Character
196
for i,v in ipairs(Character:children'') do
197
    if v:IsA("Hat") then
198
        v:Remove()
199
    end
200
	if v.ClassName == 'Hat' then
201
		v:Remove()
202
	end
203
	if v.ClassName == 'Accessory' then
204
		v:Remove()
205
	end
206
	if v:IsA'Accessory' then
207
		v:Remove()
208
	end
209
end
210
for i,v in pairs(char:children'') do
211
if v:IsA'Shirt' then
212
v:Remove()
213
end
214
if v:IsA'Pants' then
215
v:Remove()
216
end
217
char:WaitForChild'Body Colors'
218
char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
219
char["Body Colors"].TorsoColor = BrickColor.new("Really black")
220
char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
221
char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
222
char["Body Colors"].LeftLegColor = BrickColor.new("Really black")
223
char["Body Colors"].RightLegColor = BrickColor.new("Really black")
224
Hat = Instance.new("Model")
225
Hat.Parent = Character
226
Hat.Name = "Hat"
227
rh = Instance.new("Part")
228
rh.Parent = Hat
229
rh.BrickColor = BrickColor.new("Really black")
230
rh.Locked = true
231
rh.CanCollide = false
232
mesh = Instance.new("SpecialMesh")
233
rh.formFactor =  "Symmetric"
234
mesh.MeshType = "FileMesh"
235
mesh.MeshId = "rbxassetid://167549828"
236
mesh.Parent = rh
237
local weld = Instance.new("Weld")
238
weld.Parent = rh
239
weld.Part0 = rh
240
weld.Part1 =Character.Head
241
weld.C0 = CFrame.new(0, -0.35, 0)*CFrame.Angles(0, 0, 0)
242
mesh.Scale = Vector3.new(1.0,1.0, 1.0)
243
Hat1 = Instance.new("Model")
244
Hat1.Parent = Character
245
Hat1.Name = "Hat"
246
rh1 = Instance.new("Part")
247
rh1.Parent = Hat1
248
rh1.BrickColor = BrickColor.new("Really black")
249
rh1.Locked = true
250
rh1.CanCollide = false
251
mesh1 = Instance.new("SpecialMesh")
252
rh1.formFactor =  "Symmetric"
253
mesh1.MeshType = "FileMesh"
254
mesh1.MeshId = "rbxassetid://167549828"
255
mesh1.Parent = rh1
256
local weld1 = Instance.new("Weld")
257
weld1.Parent = rh1
258
weld1.Part0 = rh1
259
weld1.Part1 =Character.Head
260
weld1.C0 = CFrame.new(0, -0.3, 0)*CFrame.Angles(0, 0, 0)
261
mesh1.Scale = Vector3.new(1.0,1.0, 1.0)
262
local CurrentMode = "Unsheathed"
263
mouse=Player:GetMouse()
264
--save shoulders 
265
RSH, LSH=nil, nil 
266
--welds 
267
RW, LW=Instance.new("Weld"), Instance.new("Weld") 
268
RW.Name="Right Shoulder" LW.Name="Left Shoulder"
269
LH=Torso["Left Hip"]
270
RH=Torso["Right Hip"]
271
TorsoColor=Torso.BrickColor
272
function NoOutline(Part)
273
Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
274
end
275
player=Player 
276
ch=Character
277
RSH=ch.Torso["Right Shoulder"] 
278
LSH=ch.Torso["Left Shoulder"] 
279
-- 
280
RSH.Parent=nil 
281
LSH.Parent=nil 
282
-- 
283
RW.Name="Right Shoulder"
284
RW.Part0=ch.Torso 
285
RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5) 
286
RW.C1=cf(0, 0.5, 0) 
287
RW.Part1=ch["Right Arm"] 
288
RW.Parent=ch.Torso 
289
-- 
290
LW.Name="Left Shoulder"
291
LW.Part0=ch.Torso 
292
LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8) 
293
LW.C1=cf(0, 0.5, 0) 
294
LW.Part1=ch["Left Arm"] 
295
LW.Parent=ch.Torso 
296
297
        local function weldBetween(a, b)
298
            local weldd = Instance.new("ManualWeld")
299
            weldd.Part0 = a
300
            weldd.Part1 = b
301
            weldd.C0 = CFrame.new()
302
            weldd.C1 = b.CFrame:inverse() * a.CFrame
303
            weldd.Parent = a
304
            return weldd
305
        end
306
307
        function nooutline(part)
308
                part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
309
        end
310
        
311
        function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
312
                local fp=it("Part")
313
                fp.formFactor=formfactor
314
                fp.Parent=parent
315
                fp.Reflectance=reflectance
316
                fp.Transparency=transparency
317
                fp.CanCollide=false
318
                fp.Locked=true
319
                fp.BrickColor=BrickColor.new(tostring(brickcolor))
320
                fp.Name=name
321
                fp.Size=size
322
                fp.Position=Character.Torso.Position
323
                nooutline(fp)
324
                fp.Material=material
325
                fp:BreakJoints()
326
                return fp
327
        end
328
        
329
        function swait(num)
330
    if num==0 or num==nil then
331
    game:service'RunService'.Heartbeat:wait(0)
332
    else
333
    for i=0,num do
334
    game:service'RunService'.Heartbeat:wait(0)
335
    end
336
    end
337
    end
338
        
339
        function mesh(Mesh,part,meshtype,meshid,offset,scale)
340
                local mesh=it(Mesh)
341
                mesh.Parent=part
342
                if Mesh=="SpecialMesh" then
343
                        mesh.MeshType=meshtype
344
                        mesh.MeshId=meshid
345
                end
346
                mesh.Offset=offset
347
                mesh.Scale=scale
348
                return mesh
349
        end
350
        
351
        function weld(parent,part0,part1,c0,c1)
352
                local weld=it("Weld")
353
                weld.Parent=parent
354
                weld.Part0=part0
355
                weld.Part1=part1
356
                weld.C0=c0
357
                weld.C1=c1
358
                return weld
359
        end
360
        
361
        
362
local function CFrameFromTopBack(at, top, back)
363
local right = top:Cross(back)
364
return CFrame.new(at.x, at.y, at.z,
365
right.x, top.x, back.x,
366
right.y, top.y, back.y,
367
right.z, top.z, back.z)
368
end
369
370
function Triangle(a, b, c)
371
local edg1 = (c-a):Dot((b-a).unit)
372
local edg2 = (a-b):Dot((c-b).unit)
373
local edg3 = (b-c):Dot((a-c).unit)
374
if edg1 <= (b-a).magnitude and edg1 >= 0 then
375
a, b, c = a, b, c
376
elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
377
a, b, c = b, c, a
378
elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
379
a, b, c = c, a, b
380
else
381
assert(false, "unreachable")
382
end
383
 
384
local len1 = (c-a):Dot((b-a).unit)
385
local len2 = (b-a).magnitude - len1
386
local width = (a + (b-a).unit*len1 - c).magnitude
387
 
388
local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
389
 
390
local list = {}
391
 
392
if len1 > 0.01 then
393
local w1 = Instance.new('WedgePart', m)
394
game:GetService("Debris"):AddItem(w1,5)
395
w1.Material = "SmoothPlastic"
396
w1.FormFactor = 'Custom'
397
w1.BrickColor = BrickColor.new("White")
398
w1.Transparency = 0
399
w1.Reflectance = 0
400
w1.Material = "Neon"
401
w1.CanCollide = false
402
NoOutline(w1)
403
local sz = Vector3.new(0.2, width, len1)
404
w1.Size = sz
405
local sp = Instance.new("SpecialMesh",w1)
406
sp.MeshType = "Wedge"
407
sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
408
w1:BreakJoints()
409
w1.Anchored = true
410
w1.Parent = workspace
411
w1.Transparency = 0.3
412
table.insert(Effects,{w1,"Disappear",.03})
413
w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
414
table.insert(list,w1)
415
end
416
if len2 > 0.01 then
417
local w2 = Instance.new('WedgePart', m)
418
game:GetService("Debris"):AddItem(w2,5)
419
w2.Material = "SmoothPlastic"
420
w2.FormFactor = 'Custom'
421
w2.BrickColor = BrickColor.new("White")
422
w2.Transparency = 0
423
w2.Reflectance = 0
424
w2.Material = "Neon"
425
w2.CanCollide = false
426
NoOutline(w2)
427
local sz = Vector3.new(0.2, width, len2)
428
w2.Size = sz
429
local sp = Instance.new("SpecialMesh",w2)
430
sp.MeshType = "Wedge"
431
sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
432
w2:BreakJoints()
433
w2.Anchored = true
434
w2.Parent = workspace
435
w2.Transparency = 0.3
436
table.insert(Effects,{w2,"Disappear",.03})
437
w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
438
table.insert(list,w2)
439
end
440
return unpack(list)
441
end
442
        
443
        
444
so = function(id,par,vol,pit) 
445
coroutine.resume(coroutine.create(function()
446
local sou = Instance.new("Sound",par or workspace)
447
sou.Volume=vol
448
sou.Pitch=pit or 1
449
sou.SoundId=id
450
swait() 
451
sou:play() 
452
game:GetService("Debris"):AddItem(sou,6)
453
end))
454
end
455
 
456
function clerp(a,b,t) 
457
local qa = {QuaternionFromCFrame(a)}
458
local qb = {QuaternionFromCFrame(b)} 
459
local ax, ay, az = a.x, a.y, a.z 
460
local bx, by, bz = b.x, b.y, b.z
461
local _t = 1-t
462
return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) 
463
end 
464
 
465
function QuaternionFromCFrame(cf) 
466
local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() 
467
local trace = m00 + m11 + m22 
468
if trace > 0 then 
469
local s = math.sqrt(1 + trace) 
470
local recip = 0.5/s 
471
return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 
472
else 
473
local i = 0 
474
if m11 > m00 then
475
i = 1
476
end
477
if m22 > (i == 0 and m00 or m11) then 
478
i = 2 
479
end 
480
if i == 0 then 
481
local s = math.sqrt(m00-m11-m22+1) 
482
local recip = 0.5/s 
483
return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip 
484
elseif i == 1 then 
485
local s = math.sqrt(m11-m22-m00+1) 
486
local recip = 0.5/s 
487
return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip 
488
elseif i == 2 then 
489
local s = math.sqrt(m22-m00-m11+1) 
490
local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip 
491
end 
492
end 
493
end
494
 
495
function QuaternionToCFrame(px, py, pz, x, y, z, w) 
496
local xs, ys, zs = x + x, y + y, z + z 
497
local wx, wy, wz = w*xs, w*ys, w*zs 
498
local xx = x*xs 
499
local xy = x*ys 
500
local xz = x*zs 
501
local yy = y*ys 
502
local yz = y*zs 
503
local zz = z*zs 
504
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)) 
505
end
506
 
507
function QuaternionSlerp(a, b, t) 
508
local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] 
509
local startInterp, finishInterp; 
510
if cosTheta >= 0.0001 then 
511
if (1 - cosTheta) > 0.0001 then 
512
local theta = math.acos(cosTheta) 
513
local invSinTheta = 1/math.sin(theta) 
514
startInterp = math.sin((1-t)*theta)*invSinTheta 
515
finishInterp = math.sin(t*theta)*invSinTheta  
516
else 
517
startInterp = 1-t 
518
finishInterp = t 
519
end 
520
else 
521
if (1+cosTheta) > 0.0001 then 
522
local theta = math.acos(-cosTheta) 
523
local invSinTheta = 1/math.sin(theta) 
524
startInterp = math.sin((t-1)*theta)*invSinTheta 
525
finishInterp = math.sin(t*theta)*invSinTheta 
526
else 
527
startInterp = t-1 
528
finishInterp = t 
529
end 
530
end 
531
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 
532
end
533
534
function rayCast(Pos, Dir, Max, Ignore)  -- Origin Position , Direction, MaxDistance , IgnoreDescendants
535
return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore) 
536
end 
537
538
Damagefunc=function(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
539
        if hit.Parent==nil then
540
                return
541
        end
542
        local h=hit.Parent:FindFirstChild("Humanoid")
543
        for _,v in pairs(hit.Parent:children()) do
544
        if v:IsA("Humanoid") then
545
        h=v
546
        end
547
        end
548
        if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
549
        h=hit.Parent.Parent:FindFirstChild("Humanoid")
550
        end
551
        if hit.Parent.className=="Hat" then
552
        hit=hit.Parent.Parent:findFirstChild("Head")
553
        end
554
        if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
555
        if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
556
        --[[                if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
557
                        return
558
                end]]
559
--                        hs(hit,1.2) 
560
                        local c=Instance.new("ObjectValue")
561
                        c.Name="creator"
562
                        c.Value=game:service("Players").LocalPlayer
563
                        c.Parent=h
564
                        game:GetService("Debris"):AddItem(c,.5)
565
                local Damage=math.random(minim,maxim)
566
--                h:TakeDamage(Damage)
567
                local  blocked=false
568
                local  block=hit.Parent:findFirstChild("Block")
569
                if block~=nil then
570
                print(block.className)
571
                if block.className=="NumberValue" then
572
                if block.Value>0 then
573
                blocked=true
574
                if decreaseblock==nil then
575
                block.Value=block.Value-1
576
                end
577
                end
578
                end
579
                if block.className=="IntValue" then
580
                if block.Value>0 then
581
                blocked=true
582
                if decreaseblock~=nil then
583
                block.Value=block.Value-1
584
                end
585
                end
586
                end
587
                end
588
                if blocked==false then
589
--                h:TakeDamage(Damage)
590
                h.Health=h.Health-Damage
591
                ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
592
                else
593
                h.Health=h.Health-(Damage/2)
594
                ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Bright blue").Color)
595
                end
596
                if Type=="Knockdown" then
597
                local hum=hit.Parent.Humanoid
598
hum.PlatformStand=true
599
coroutine.resume(coroutine.create(function(HHumanoid)
600
swait(1)
601
HHumanoid.PlatformStand=false
602
end),hum)
603
                local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
604
--hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
605
local bodvol=Instance.new("BodyVelocity")
606
bodvol.velocity=angle*knockback
607
bodvol.P=5000
608
bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
609
bodvol.Parent=hit
610
local rl=Instance.new("BodyAngularVelocity")
611
rl.P=3000
612
rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
613
rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
614
rl.Parent=hit
615
game:GetService("Debris"):AddItem(bodvol,.5)
616
game:GetService("Debris"):AddItem(rl,.5)
617
                elseif Type=="Normal" then
618
                local vp=Instance.new("BodyVelocity")
619
                vp.P=500
620
                vp.maxForce=Vector3.new(math.huge,0,math.huge)
621
--                vp.velocity=Character.Torso.CFrame.lookVector*Knockback
622
                if KnockbackType==1 then
623
                vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
624
                elseif KnockbackType==2 then
625
                vp.velocity=Property.CFrame.lookVector*knockback
626
                end
627
                if knockback>0 then
628
                        vp.Parent=hit.Parent.Torso
629
                end
630
                game:GetService("Debris"):AddItem(vp,.5)
631
                elseif Type=="Up" then
632
                local bodyVelocity=Instance.new("BodyVelocity")
633
                bodyVelocity.velocity=vt(0,60,0)
634
                bodyVelocity.P=5000
635
                bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
636
                bodyVelocity.Parent=hit
637
                game:GetService("Debris"):AddItem(bodyVelocity,1)
638
                local rl=Instance.new("BodyAngularVelocity")
639
                rl.P=3000
640
                rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
641
                rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
642
                rl.Parent=hit
643
                game:GetService("Debris"):AddItem(rl,.5)
644
                elseif Type=="Snare" then
645
                local bp=Instance.new("BodyPosition")
646
                bp.P=2000
647
                bp.D=100
648
                bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
649
                bp.position=hit.Parent.Torso.Position
650
                bp.Parent=hit.Parent.Torso
651
                game:GetService("Debris"):AddItem(bp,1)
652
                elseif Type=="Target" then
653
	            local Targetting = false
654
                if Targetting==false then
655
                ZTarget=hit.Parent.Torso
656
                coroutine.resume(coroutine.create(function(Part) 
657
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
658
                swait(5)
659
                so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5) 
660
                end),ZTarget)
661
                local TargHum=ZTarget.Parent:findFirstChild("Humanoid")
662
                local  targetgui=Instance.new("BillboardGui")
663
                targetgui.Parent=ZTarget
664
                targetgui.Size=UDim2.new(10,100,10,100)
665
                local targ=Instance.new("ImageLabel")
666
                targ.Parent=targetgui
667
                targ.BackgroundTransparency=1
668
                targ.Image="rbxassetid://4834067"
669
                targ.Size=UDim2.new(1,0,1,0)
670
                cam.CameraType="Scriptable"
671
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
672
                local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
673
                workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
674
                Targetting=true
675
                RocketTarget=ZTarget
676
                for i=1,Property do
677
                --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
678
                if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
679
                swait()
680
                end
681
                --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
682
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
683
                dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
684
                cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
685
                end
686
                Targetting=false
687
                RocketTarget=nil
688
                targetgui.Parent=nil
689
                cam.CameraType="Custom"
690
                end
691
                end
692
                        local debounce=Instance.new("BoolValue")
693
                        debounce.Name="DebounceHit"
694
                        debounce.Parent=hit.Parent
695
                        debounce.Value=true
696
                        game:GetService("Debris"):AddItem(debounce,Delay)
697
                        c=Instance.new("ObjectValue")
698
                        c.Name="creator"
699
                        c.Value=Player
700
                        c.Parent=h
701
                        game:GetService("Debris"):AddItem(c,.5)
702
        end
703
end
704
705
706
function ShowDamage(Pos, Text, Time, Color)
707
	local Rate = (1 / 30)
708
	local Pos = (Pos or Vector3.new(0, 0, 0))
709
	local Text = (Text or "")
710
	local Time = (Time or 2)
711
	local Color = (Color or Color3.new(1, 0, 0))
712
	local EffectPart = part("Custom",workspace,"SmoothPlastic",0,1,BrickColor.new(Color),"Effect",vt(0,0,0))
713
	EffectPart.Anchored = true
714
	local BillboardGui = Instance.new("BillboardGui")
715
	BillboardGui.Size = UDim2.new(3, 0, 3, 0)
716
	BillboardGui.Adornee = EffectPart
717
	local TextLabel = Instance.new("TextLabel")
718
	TextLabel.BackgroundTransparency = 1
719
	TextLabel.Size = UDim2.new(1, 0, 1, 0)
720
	TextLabel.Text = Text
721
	TextLabel.TextColor3 = Color
722
	TextLabel.TextScaled = true
723
	TextLabel.Font = Enum.Font.ArialBold
724
	TextLabel.Parent = BillboardGui
725
	BillboardGui.Parent = EffectPart
726
	game.Debris:AddItem(EffectPart, (Time + 0.1))
727
	EffectPart.Parent = game:GetService("Workspace")
728
	Delay(0, function()
729
		local Frames = (Time / Rate)
730
		for Frame = 1, Frames do
731
			wait(Rate)
732
			local Percent = (Frame / Frames)
733
			EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
734
			TextLabel.TextTransparency = Percent
735
		end
736
		if EffectPart and EffectPart.Parent then
737
			EffectPart:Destroy()
738
		end
739
	end)
740
end
741
742
Handle=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","HandleHoodie",Vector3.new(0.310000032, 0.200000003, 0.300000042))
743
HandleWeld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.97002399, -0.112449646, -0.0639343262, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
744
mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.900000453, 1))
745
Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Mid gray","Hitbox",Vector3.new(0.75, 6.57999992, 0.200000003))
746
Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.0166996717, -4.50009918, -0.00540161133, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
747
mesh("BlockMesh",Hitbox,"","",Vector3.new(0, 0, 0),Vector3.new(0.0500000045, 1, 0.450000018))
748
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
749
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.49980164, -0.40812397, -0.00491333008, -0.00187699974, -0.167490989, -0.985871851, 0.0110449996, 0.985809922, -0.167501494, 0.999937236, -0.0112033542, -4.27065089e-007))
750
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
751
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
752
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.0747818947, -1.37517548, -0.00484466553, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
753
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
754
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.200000003, 1.09050035, 0.330000013))
755
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-5.96046448e-006, -2.19963837, -0.00484466553, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
756
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.950000048, 1, 1))
757
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.390000015, 1.5600003, 0.200000003))
758
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-4.88758087e-005, -1.89990234, 0.00514221191, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
759
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.550000012))
760
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 0.330000013))
761
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-5.78761101e-005, -0.804878235, -0.00492095947, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
762
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0500000045, 0.800000072, 1))
763
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
764
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.271591187, -1.29917908, -0.00495147705, -0.0108060027, -0.964178264, -0.265035063, 0.00296599395, 0.265018493, -0.964238763, 0.999937236, -0.0112056592, -4.04378807e-006))
765
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
766
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
767
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.695175171, -1.43777466, -0.00491333008, -0.00966699515, -0.862497568, -0.50596875, 0.00567400036, 0.50593698, -0.862551808, 0.999937236, -0.0112091517, 2.92123309e-006))
768
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.250000089, 0.102501623, 1))
769
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
770
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.338888168, 1.12273407, -0.00486755371, 0.0105040008, 0.937348127, 0.348236024, -0.00390800135, -0.34821412, 0.937406957, 0.999937236, -0.0112074288, 5.51621315e-006))
771
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
772
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
773
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.170578, -0.297786713, -0.00492095947, -0.00187699974, -0.167490989, -0.985871851, 0.0110449996, 0.985809922, -0.167501494, 0.999937236, -0.0112033542, -4.27065089e-007))
774
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
775
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
776
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.46807861, -0.316619873, -0.00495147705, -0.00295399921, -0.263803929, 0.964571774, -0.0108070029, -0.964511275, -0.263820499, 0.999937236, -0.0112034548, -1.76409844e-006))
777
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.650000095, 0.102501623, 1))
778
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
779
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.624176025, -1.47100067, -0.00497436523, -0.0105540035, -0.941333354, 0.337313116, -0.00377799966, -0.337291986, -0.941392481, 0.999937236, -0.0112098297, 3.42376143e-006))
780
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.250000089, 0.102501623, 1))
781
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
782
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.30181885, 0.605491638, -0.00490570068, 0.00564600015, 0.504061997, -0.863649011, 0.00968299713, 0.86359477, 0.504093647, 0.999937236, -0.0112088239, -4.97478322e-006))
783
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000072, 0.102501623, 1))
784
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
785
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.46491241, -0.482786179, -0.00492858887, -0.00389000098, -0.346705079, 0.937966228, -0.0105110034, -0.937907279, -0.346726865, 0.999937236, -0.0112077333, 4.24194832e-006))
786
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.550000072, 0.102501623, 1))
787
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
788
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.45322418, -0.0240330696, -0.00489807129, -0.000451999833, -0.0406189859, 0.999174654, -0.0111929988, -0.999111891, -0.0406215005, 0.999937356, -0.0112021221, -3.04984246e-006))
789
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
790
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.33099997))
791
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.0749446154, -1.37520599, -0.00492095947, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
792
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
793
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
794
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.48498535, 0.115077972, -0.00492858887, 0.00200100034, 0.178939015, -0.983858109, 0.0110300034, 0.983796358, 0.178950205, 0.999937236, -0.0112100393, -5.12103907e-006))
795
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000072, 0.102501623, 1))
796
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
797
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.626190186, -1.140625, -0.00494384766, -0.0091329962, -0.815072715, -0.579286814, 0.00649200473, 0.579250395, -0.815123856, 0.999937236, -0.0112052551, 1.16453998e-006))
798
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
799
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.390000045, 0.210000321, 0.330000013))
800
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-4.7981739e-005, -1.54994965, -0.00490570068, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
801
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
802
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.07263184, -0.692550659, -0.00494384766, -0.00553899957, -0.493982941, -0.869453907, 0.00974900275, 0.86939925, -0.494014025, 0.999937236, -0.0112126535, 2.38510097e-007))
803
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
804
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
805
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.266874313, -1.31082916, 0.00490570068, 0.0108429994, 0.967194855, -0.253803968, -0.00284600025, -0.253787994, -0.967255652, -0.999937236, 0.0112102805, 8.13836039e-007))
806
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
807
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
808
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.634695053, -1.47774506, 0.00492858887, 0.0105040008, 0.937348127, 0.348236024, 0.00390800135, 0.34821412, -0.937406957, -0.999937236, 0.0112074288, -5.51621315e-006))
809
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.250000089, 0.102501623, 1))
810
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
811
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.46351624, -0.0169992447, 0.00492858887, 0.000327999849, 0.0289949868, 0.999579549, 0.0112029975, 0.999516785, -0.028996842, -0.999937236, 0.0112077976, 3.01058731e-006))
812
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
813
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
814
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.49613953, 0.109327316, 0.00490570068, -0.00187699974, -0.167490989, -0.985871851, -0.0110449996, -0.985809922, 0.167501494, -0.999937236, 0.0112033542, 4.27065089e-007))
815
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000072, 0.102501623, 1))
816
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
817
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.31421661, 0.603988647, 0.00489044189, -0.00553899957, -0.493982941, -0.869453907, -0.00974900275, -0.86939925, 0.494014025, -0.999937236, 0.0112126535, -2.38510097e-007))
818
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000072, 0.102501623, 1))
819
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
820
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.07759094, -0.704029083, 0.00489807129, 0.00564600015, 0.504061997, -0.863649011, -0.00968299713, -0.86359477, -0.504093647, -0.999937236, 0.0112088239, 4.97478322e-006))
821
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
822
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
823
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.20773315, 0.238894463, -0.00493621826, 0.00187699974, 0.167490989, 0.985871851, -0.0110449996, -0.985809922, 0.167501494, 0.999937236, -0.0112033542, -4.27065089e-007))
824
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.550000072, 0.102501623, 1))
825
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
826
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.47679138, -0.479194641, 0.0048828125, 0.00376700051, 0.335774034, 0.941935122, 0.0105509991, 0.941875935, -0.335795164, -0.999937236, 0.0112032965, 5.29573617e-006))
827
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.550000072, 0.102501623, 1))
828
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
829
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.50836945, -0.41729641, 0.00489807129, 0.00200000033, 0.178939015, -0.983858109, -0.0110290041, -0.983796358, -0.178950191, -0.999937236, 0.011208876, 5.92614379e-006))
830
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
831
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
832
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.17913818, -0.30697155, 0.00497436523, 0.00200000033, 0.178939015, -0.983858109, -0.0110290041, -0.983796358, -0.178950191, -0.999937236, 0.011208876, 5.92614379e-006))
833
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
834
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
835
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.693664551, -1.45023346, 0.00494384766, 0.00973600149, 0.868322194, -0.495905131, -0.00555100059, -0.495874017, -0.868376732, -0.999937236, 0.0112072863, -7.77313653e-006))
836
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.250000089, 0.102501623, 1))
837
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
838
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.47976685, -0.311849594, 0.00495910645, 0.00283199991, 0.252568007, 0.967575014, 0.0108430041, 0.967514277, -0.252583891, -0.999937236, 0.0112067368, 1.40442944e-006))
839
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.650000095, 0.102501623, 1))
840
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
841
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.625782013, -1.15318298, 0.0048828125, 0.00921000168, 0.821751177, -0.569772124, -0.00638900371, -0.569736302, -0.821802735, -0.999937236, 0.0112090809, 2.89875129e-006))
842
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000066, 0.102501623, 1))
843
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
844
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.335258484, 1.13473511, 0.00492858887, -0.0105530024, -0.941335261, 0.337308079, 0.00377899874, 0.33728689, 0.941394389, -0.999937236, 0.0112092234, -2.08482766e-006))
845
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000095, 0.102501623, 1))
846
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark taupe","Part",Vector3.new(0.200000003, 0.200000003, 0.331))
847
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.21631622, 0.247975349, 0.00493621826, -0.00200100034, -0.178939015, 0.983858109, 0.0110300034, 0.983796358, 0.178950205, -0.999937236, 0.0112100393, 5.12103907e-006))
848
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.550000072, 0.102501623, 1))
849
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(3.93000007, 0.200000003, 0.200000003))
850
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(4.64488983, 0.00505065918, -0.144644618, -6.60000078e-005, -0.00581800053, 0.999983132, 0.999937356, -0.0112010082, 8.28419559e-007, 0.0112008126, 0.999920368, 0.00581837492))
851
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.550000012, 0.5))
852
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 3.93000031, 0.200000003))
853
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-5.1856041e-006, -4.64490509, 0.00463867188, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
854
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.949999988, 1, 0.349999994))
855
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 3.76000023, 0.200000003))
856
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-5.96046448e-005, -4.77989197, 0.0046005249, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
857
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0500000045, 1, 0.450000018))
858
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(3.93000007, 0.200000003, 0.200000003))
859
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(4.6448822, 0.00508117676, 0.144792438, -6.60000078e-005, -0.00581800053, 0.999983132, 0.999937356, -0.0112010082, 8.28419559e-007, 0.0112008126, 0.999920368, 0.00581837492))
860
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.550000012, 0.5))
861
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.430000037, 0.490000337, 0.330000013))
862
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-3.40938568e-005, -1.1999054, -0.00494384766, -0.0112070041, -0.999920368, -0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, 0.999937236, -0.0112072034, 1.81473285e-006))
863
Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Dark stone grey","Part",Vector3.new(0.320000023, 0.36500001, 0.320000023))
864
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.0049854517, -1.20753479, -3.05175781e-005, -0.0112070041, -0.999920368, -0.00581600191, -6.69957008e-005, -0.00581561634, 0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
865
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=1033714",Vector3.new(0, 0, 0),Vector3.new(0.159500003, 0.5, 0.159500003))
866
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 0.594999969))
867
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00507354736, 0.0474830866, -6.31235504, -0.999937356, 0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
868
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.475000054, 1))
869
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 0.594999969))
870
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00509643555, 0.0473840833, -6.3123703, 0.999937356, -0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
871
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.475000054, 1))
872
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 1.26499999))
873
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.005027771, -0.0972285271, 7.24234772, 0.999937356, -0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
874
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.975000024, 1))
875
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 0.545000017))
876
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00507354736, -0.284388721, 1.66242218, -0.999937356, 0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
877
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.899999976, 1))
878
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 0.545000017))
879
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.0051651001, -0.284405589, 1.66241455, 0.999937356, -0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
880
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.899999976, 1))
881
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 0.265000015))
882
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00510406494, -0.28442055, -1.25741577, 0.999937356, -0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
883
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.899999976, 1))
884
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
885
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00492095947, -0.144849539, 1.71743774, -0.999937356, 0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
886
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.49999994, 0.624999821))
887
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 1.26499999))
888
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00508117676, -0.0974233747, 7.24232483, -0.999937356, 0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
889
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.975000024, 1))
890
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Mid gray","Part",Vector3.new(0.200000003, 0.200000003, 0.265000015))
891
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00505828857, -0.28437078, -1.25744629, -0.999937356, 0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
892
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.550000012, 0.899999976, 1))
893
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.329999983, 0.200000003, 0.435000002))
894
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00485992432, -0.0473880172, 2.96239471, 0.999937356, -0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
895
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.474999994, 1))
896
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.329999983, 0.200000003, 0.435000002))
897
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00489044189, -0.0475103259, 2.96240997, -0.999937356, 0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
898
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.474999994, 1))
899
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
900
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00492858887, -0.0448739529, -0.817398071, -0.999937356, 0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
901
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.399999946, 0.674999893))
902
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
903
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00495910645, -0.159652472, -0.922431946, -0.999937356, 0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
904
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.549999952, 0.324999839))
905
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
906
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00489807129, -0.20469892, 1.48241425, -0.999937356, 0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
907
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.0999999717, 0.374999821))
908
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
909
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00490570068, -0.204542756, 1.48241425, 0.999937356, -0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
910
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.0999999717, 0.374999821))
911
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
912
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00490570068, -0.144648492, 1.71740723, 0.999937356, -0.0112010036, 0, 0.0112008126, 0.999920368, 0.00581600191, -6.51450609e-005, -0.0058156373, 0.999983132))
913
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.49999997, 0.624999821))
914
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
915
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00495910645, -0.0450550318, -0.817436218, 0.999937356, -0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
916
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.399999946, 0.674999893))
917
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.330000013, 0.200000003, 0.200000003))
918
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00494384766, -0.1597929, -0.922409058, 0.999937356, -0.0112010036, 0, -0.0112008126, -0.999920368, -0.00581600191, 6.51450609e-005, 0.0058156373, -0.999983132))
919
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.549999952, 0.324999839))
920
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.200000003, 0.33100003, 0.200000003))
921
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-3.55243683e-005, -0.00493621826, 2.16444397, -0.0112070041, -0.999920368, -0.00581600191, 0.999937236, -0.0112071931, -1.10498133e-009, -6.51799492e-005, -0.00581563683, 0.999983132))
922
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.25, 1, 0.200000018))
923
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.200000003, 0.33100003, 0.200000003))
924
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.00497984886, -0.00492095947, 2.69940948, -0.0112070041, -0.999920368, -0.00581600191, 0.999937236, -0.0112071931, -1.10498133e-009, -6.51799492e-005, -0.00581563683, 0.999983132))
925
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.200000018, 1, 0.25))
926
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.200000003, 0.33100003, 0.200000003))
927
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.0648363233, -0.00489807129, 1.73441315, -0.0112070041, -0.999920368, -0.00581600191, 0.999937236, -0.0112071931, -1.10498133e-009, -6.51799492e-005, -0.00581563683, 0.999983132))
928
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000009, 1, 0.100000009))
929
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.200000003, 0.33100006, 0.200000003))
930
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-4.13060188e-005, -0.00489044189, 1.37493896, -0.0112070041, -0.999920368, -0.00581600191, 0.999937236, -0.0112071931, -1.10498133e-009, -6.51799492e-005, -0.00581563683, 0.999983132))
931
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.25, 1, 0.200000018))
932
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.200000003, 0.33100003, 0.200000003))
933
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.1920929e-005, -0.00492095947, 0.964866638, -0.0112070041, -0.999920368, -0.00581600191, 0.999937236, -0.0112071931, -1.10498133e-009, -6.51799492e-005, -0.00581563683, 0.999983132))
934
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.25, 1, 0.200000018))
935
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.270000041, 0.330000013, 0.270000041))
936
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-6.42538071e-005, -0.00492858887, 0.959884644, -0.0112070041, -0.999920368, -0.00581600191, 0.999937236, -0.0112071931, -1.10498133e-009, -6.51799492e-005, -0.00581563683, 0.999983132))
937
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
938
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.200000003, 0.33100003, 0.200000003))
939
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.0649956465, -0.00493621826, 1.73440552, -0.0112070041, -0.999920368, -0.00581600191, 0.999937236, -0.0112071931, -1.10498133e-009, -6.51799492e-005, -0.00581563683, 0.999983132))
940
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000009, 1, 0.100000009))
941
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.340000004, 0.200000003, 0.340000063))
942
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.788146973, -1.25549316, 4.57763672e-005, -0.0029529992, -0.263803929, 0.964571774, -0.0108090024, -0.964511275, -0.263820499, 0.999937236, -0.0112051209, -3.25649921e-006))
943
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000036, 1))
944
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.290000051, 0.200000003, 0.280000061))
945
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(3.44514847e-005, -0.124908447, -8.39233398e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
946
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.35000053, 1))
947
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.290000051, 0.200000003, 0.280000061))
948
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(2.02655792e-006, 0.125030518, -8.39233398e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
949
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.35000053, 1))
950
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.340000004, 0.200000003, 0.320000023))
951
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-0.00495165586, 0.960098267, -3.05175781e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
952
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000381, 1))
953
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.320000023, 0.370000035, 0.340000063))
954
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.537696838, -1.25259781, 5.34057617e-005, -0.00564600015, -0.504061997, 0.863649011, -0.00968299713, -0.86359477, -0.504093647, 0.999937236, -0.0112088239, -4.97478322e-006))
955
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
956
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.340000004, 0.200000003, 0.340000063))
957
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.904251099, -1.25561905, 7.62939453e-005, -0.0029529992, -0.263803929, 0.964571774, -0.0108090024, -0.964511275, -0.263820499, 0.999937236, -0.0112051209, -3.25649921e-006))
958
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000036, 1))
959
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.320000023, 0.949999928, 0.320000052))
960
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.96988678, -5.96046448e-006, 8.39233398e-005, -6.60000078e-005, -0.00581800053, 0.999983132, -0.0112070041, -0.999920368, -0.00581837492, 0.999937236, -0.0112071978, 7.92397316e-007))
961
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
962
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.340000004, 0.200000003, 0.340000033))
963
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.969909668, -0.513656318, 0, -6.60000078e-005, -0.00581800053, 0.999983132, -0.0112070041, -0.999920368, -0.00581837492, 0.999937236, -0.0112071978, 7.92397316e-007))
964
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.399999231, 1))
965
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.290000051, 0.200000003, 0.280000061))
966
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.2755394e-005, -0.624900818, -3.81469727e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
967
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.35000053, 1))
968
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.310000032, 0.240000114, 0.300000042))
969
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-1.66893005e-006, 0.780014038, -3.81469727e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
970
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
971
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.290000051, 0.200000003, 0.280000061))
972
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(2.95639038e-005, 0.625053406, -6.10351563e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
973
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.35000053, 1))
974
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.310000032, 0.200000003, 0.300000042))
975
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(4.91142273e-005, -0.499900818, -6.10351563e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
976
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.900000453, 1))
977
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.290000051, 0.200000003, 0.280000061))
978
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.53183937e-005, 0.375061035, -3.81469727e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
979
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.35000053, 1))
980
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.290000051, 0.200000003, 0.280000061))
981
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(3.46302986e-005, -0.374931335, -9.91821289e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
982
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.35000053, 1))
983
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.310000032, 0.200000003, 0.300000042))
984
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(-2.49147415e-005, 0.250038147, -9.15527344e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
985
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.900000453, 1))
986
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.310000032, 0.26000008, 0.300000042))
987
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(1.85966492e-005, -0.789901733, -6.86645508e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
988
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
989
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.340000004, 0.200000003, 0.340000033))
990
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.96987915, 0.513498425, 4.57763672e-005, -6.60000078e-005, -0.00581800053, 0.999983132, -0.0112070041, -0.999920368, -0.00581837492, 0.999937236, -0.0112071978, 7.92397316e-007))
991
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.399999231, 1))
992
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.320000023, 0.5, 0.340000063))
993
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.795562744, -0.985153198, 1.52587891e-005, -0.0029529992, -0.263803929, 0.964571774, -0.0108090024, -0.964511275, -0.263820499, 0.999937236, -0.0112051209, -3.25649921e-006))
994
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
995
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.310000032, 0.200000003, 0.300000042))
996
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(7.39097595e-006, -0.249954224, 2.28881836e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
997
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.900000453, 1))
998
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(0.310000032, 0.200000003, 0.300000042))
999
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(7.56978989e-005, 0.500045776, -6.86645508e-005, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006))
1000
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.900000453, 1))
1001
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.320000023, 0.370000035, 0.340000063))
1002
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.537612915, -1.25212479, -2.28881836e-005, 0.00553899957, 0.493982941, 0.869453907, 0.00974900275, 0.86939925, -0.494014025, -0.999937236, 0.0112126535, -2.38510097e-007))
1003
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1004
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.340000004, 0.200000003, 0.340000063))
1005
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.90397644, -1.25537109, -5.34057617e-005, 0.00283199991, 0.252568007, 0.967575014, 0.0108430041, 0.967514277, -0.252583891, -0.999937236, 0.0112067368, 1.40442944e-006))
1006
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000036, 1))
1007
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.340000004, 0.200000003, 0.340000063))
1008
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.787818909, -1.25536346, -6.86645508e-005, 0.00283199991, 0.252568007, 0.967575014, 0.0108430041, 0.967514277, -0.252583891, -0.999937236, 0.0112067368, 1.40442944e-006))
1009
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000036, 1))
1010
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.320000023, 0.5, 0.340000063))
1011
Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.0112070041, 0.999920368, 0.00581600191, 6.69957008e-005, 0.00581561634, -0.999983132, -0.999937236, 0.0112072034, -1.81473285e-006),CFrame.new(0.795379639, -0.984666824, -7.62939453e-005, 0.00283199991, 0.252568007, 0.967575014, 0.0108430041, 0.967514277, -0.252583891, -0.999937236, 0.0112067368, 1.40442944e-006))
1012
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1013
1014
HandleArm=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","HandleArm",Vector3.new(1.04999995, 0.400000006, 1.04999995))
1015
HandleArmweld=weld(m,Character["Right Arm"],HandleArm,CFrame.new(0, 0, 0, 0, 0, -1, 0, 0.999993801, 0, 1, 0, 0),CFrame.new(-0.0193786621, 0.988277435, -0.0015411377, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1016
mesh("SpecialMesh",HandleArm,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1017
Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","Hitbox",Vector3.new(1.04999995, 0.480000019, 1.04999995))
1018
Hitboxweld=weld(m,HandleArm,Hitbox,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.00234222412, 0.740032196, 0.00495147705, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1019
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"White","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1020
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.150016785, 0.270523071, -0.425022125, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1021
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
1022
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.07000005, 0.400000006, 1.07000005))
1023
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-1.52587891e-005, -0.800033569, 7.62939453e-006, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1024
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1025
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.449999988, 1.04999995))
1026
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(7.62939453e-006, -0.42502594, 3.81469727e-006, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1027
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1028
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.850000024, 0.600000024))
1029
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(7.62939453e-006, -0.425014496, -0.225013733, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1030
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1031
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"White","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1032
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.435020447, 0.270511627, -0.424991608, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1033
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
1034
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"White","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1035
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.149978638, 0.270496368, -0.425022125, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1036
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
1037
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"White","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1038
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.439987183, 0.270507813, -0.425048828, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1039
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.850000024, 0.850000024, 0.850000024))
1040
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1041
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.517841339, -0.199775696, 3.81469727e-005, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1042
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset?ID=9756362",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.300000012, 0.200000003))
1043
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1044
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.5, -0.799793243, -0.300029755, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1045
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1046
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1047
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.499992371, -0.799812317, -0.300060272, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1048
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1049
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1050
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.500045776, -0.799800873, 2.67028809e-005, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1051
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1052
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1053
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.499992371, -0.799823761, 0.300041199, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1054
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1055
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1056
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.499984741, -0.799808502, -1.90734863e-005, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1057
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1058
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
1059
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(7.62939453e-006, -0.199756622, -0.500049591, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1060
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=3270017",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.5, 0.600000024))
1061
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1062
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.5, -0.799850464, 0.299995422, -1, 0.000116995056, 0.000173001972, 0.000116479503, 1.00000489, -0.00299002789, -0.000173352149, -0.00299000763, -1.00000489))
1063
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1064
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1065
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.500068665, -0.799812317, 0.300010681, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1066
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1067
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1068
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.500019073, -0.799770355, 0.30002594, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1069
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1070
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1071
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.500061035, -0.799808502, -0.299942017, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1072
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1073
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1074
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.499977112, -0.799823761, -0.299972534, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1075
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1076
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1077
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(0.500053406, -0.799842834, -7.62939453e-006, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1078
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1079
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.300000012, 0.300000012, 0.300000012))
1080
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.500034332, -0.799797058, 2.28881836e-005, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005))
1081
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.699999988, 0.699999988))
1082
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1.04999995, 0.200000003, 1.04999995))
1083
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(2.67028809e-005, -0.250026703, 7.62939453e-006, -0.000171573163, -0.00294177281, -1.00000501, -0.000121731515, -1.00000501, 0.00294179446, -1, 0.000122233527, 0.000171213178))
1084
mesh("SpecialMesh",Part,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
1085
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 1.04999995))
1086
Partweld=weld(m,HandleArm,Part,CFrame.new(0, 0, 0, -9.19426748e-005, -0.00299816253, -1.00000489, 0.00014506001, 1.00000489, -0.0029981758, 1, -0.000145333048, -9.15054843e-005),CFrame.new(-0.424980164, 0.200485229, 0, -0.000171573134, -0.00294178538, -1.00000501, 0.000121701836, 1.00000501, -0.0029418068, 1, -0.000122203841, -0.000171213236))
1087
mesh("SpecialMesh",Part,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1088
1089
HandleHoodie=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","HandleHoodie",Vector3.new(0.800999999, 1.39999998, 0.201000005))
1090
HandleHoodieweld=weld(m,Character["Torso"],HandleHoodie,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00750732422, 0.279974461, 0.401000977, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1091
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.601000011, 2, 1.00999999))
1092
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.699958801, -0.300000429, -0.400093079, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1093
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.601000011, 2, 1.00999999))
1094
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.700019836, -0.299941063, -0.399993896, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1095
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.800999999, 2, 0.201000005))
1096
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-8.39233398e-005, -0.299940348, -0.800018311, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1097
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.800000012))
1098
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.270521164, -1.09639359, 0.510871887, 0.553595603, 0.826745868, -0.10011597, -0.182960913, 0.238023147, 0.953871548, 0.812439263, -0.509741485, 0.283030361))
1099
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.399999976, 1.00999999))
1100
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.498023987, 0.795139313, -0.86643219, 0.96592927, 0.258806258, -5.6550416e-005, 0.164087191, -0.612583697, -0.773186624, -0.200140134, 0.746833742, -0.634178698))
1101
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.399999976, 1.00999999))
1102
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.498008728, 0.795150757, -0.86643219, 0.965937078, -0.258777231, 0.000100893376, -0.164033279, -0.612588584, -0.773194134, 0.200146809, 0.746839643, -0.634169579))
1103
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.800000012))
1104
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.357299805, -1.5111618, 0.0340995789, 0.553601563, -0.665902972, 0.500098169, 0.182908967, 0.683077991, 0.707071066, -0.812446833, -0.299962848, 0.499952525))
1105
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(2.00099993, 0.300000012, 1.00999999))
1106
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(1.52587891e-005, 0.600009441, -0.399986267, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1107
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.99000001))
1108
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Light blue","Part",Vector3.new(0.400000006, 0.200000003, 0.601999998))
1109
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.398994446, -0.0108947754, -0.732954025, 1, 5.82439752e-005, 8.27250478e-005, 8.2729166e-005, -7.11692337e-005, -1, -5.82381072e-005, 1, -7.04315171e-005))
1110
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.150000006, 1.04999995, 1))
1111
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.399999976, 1.00999999))
1112
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.498031616, -1.47087097, -0.399986267, 0.965941608, -0.258760303, 9.9245568e-005, 0.258760303, 0.965941608, -5.15231586e-005, -8.253329e-005, 7.6191689e-005, 1))
1113
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.800000012))
1114
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.357570648, -1.51124954, 0.0344924927, 0.553604424, 0.665919662, -0.500072718, -0.182961851, 0.683072448, 0.707062781, 0.812432885, -0.29993853, 0.499989629))
1115
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.399999976, 1.00999999))
1116
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.498542786, -1.47100449, -0.399971008, 0.9659338, 0.258789301, -5.48517273e-005, -0.258789301, 0.965933859, -6.33935779e-005, 3.65775559e-005, 7.6171571e-005, 1))
1117
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Fossil","Part",Vector3.new(0.400999784, 0.700000048, 0.200000003))
1118
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(7.62939453e-006, 0.26002121, 0.0050201416, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1119
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 1.01999998, 1.60000002))
1120
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.400000036, 0.800000012))
1121
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.00187683105, -0.325012207, 1.03645325, -1, -1.5030394e-005, -2.29256439e-005, -8.58415297e-006, 0.965920687, -0.25883767, 2.60348024e-005, -0.258838326, -0.965920925))
1122
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.800000012, 0.400000036, 0.600000024))
1123
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.00188446045, 0.464420319, 1.50968552, -1, -1.50005926e-005, -2.29405487e-005, 5.61492561e-006, 0.707092345, -0.707120836, 2.68283256e-005, -0.707121253, -0.707092762))
1124
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 0.202000007))
1125
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.400993347, -0.0109100342, -0.999987364, 1, 5.82439752e-005, 8.27250478e-005, 8.2729166e-005, -7.11692337e-005, -1, -5.82381072e-005, 1, -7.04315171e-005))
1126
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.600000024))
1127
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200999975, 0.600000024, 0.601000011))
1128
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-7.62939453e-006, -0.999970913, -0.0999908447, 8.28435441e-005, -6.97089054e-005, -1, -5.74407677e-005, 1, -6.89711524e-005, 1, 5.74465157e-005, 8.2839586e-005))
1129
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1130
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 0.202000007))
1131
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.399002075, -0.0109024048, -0.999991894, 1, 5.82439752e-005, 8.27250478e-005, 8.2729166e-005, -7.11692337e-005, -1, -5.82381072e-005, 1, -7.04315171e-005))
1132
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.600000024))
1133
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Light blue","Part",Vector3.new(0.400000006, 0.200000003, 0.801999986))
1134
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.400985718, -0.0108795166, -0.632958889, 1, 5.82439752e-005, 8.27250478e-005, 8.2729166e-005, -7.11692337e-005, -1, -5.82381072e-005, 1, -7.04315171e-005))
1135
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.150000006, 1.04999995, 1))
1136
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.600000024))
1137
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.498504639, -1.5112381, 0.228591919, 0.9659338, 0.258789182, -5.45537077e-005, -0.18296428, 0.683065951, 0.707068503, 0.183018938, -0.682970822, 0.707145214))
1138
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.600000024))
1139
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-0.498046875, -1.51114655, 0.228500366, 0.965941608, -0.258760184, 9.89500695e-005, 0.182911232, 0.683071315, 0.707076907, -0.183030948, -0.682976425, 0.70713675))
1140
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Fossil","Part",Vector3.new(0.400000006, 1.60000002, 0.202000007))
1141
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.00100708008, -0.0999929905, -1.52587891e-005, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1142
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 1, 1))
1143
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.800000012))
1144
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(0.270786285, -1.09629059, 0.510475159, 0.55361563, -0.826729298, 0.100141421, 0.182910204, 0.238028854, 0.953879774, -0.812436819, -0.509765625, 0.282993376))
1145
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200999975, 0.600000024, 0.601000011))
1146
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(-1.52587891e-005, -0.999972343, -0.100013733, -8.27392359e-005, 7.12586625e-005, 1, -5.78878098e-005, 1, -7.05209022e-005, -1, -5.78936742e-005, -8.27351469e-005))
1147
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1148
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1.60099983, 0.700000048, 0.200000003))
1149
Partweld=weld(m,HandleHoodie,Part,CFrame.new(0, 0, 0, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1),CFrame.new(7.62939453e-006, 0.26002121, 0.0050201416, 1, 5.82735956e-005, 8.2680097e-005, -5.82672583e-005, 1, -7.62090931e-005, -8.26845426e-005, 7.69467879e-005, 1))
1150
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.5))
1151
1152
HandleLeg1=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Really black","HandleGlove2",Vector3.new(1, 2, 1))
1153
HandleLeg1weld=weld(m,Character["Left Leg"],HandleLeg1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.000116348267, 0.0199642777, -0.00973415375, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1154
mesh("BlockMesh",HandleLeg1,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1155
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1, 1.60000014, 1))
1156
Partweld=weld(m,HandleLeg1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.200037062, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1157
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.02499998, 1, 1.02499998))
1158
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1, 0.200000003, 1))
1159
Partweld=weld(m,HandleLeg1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.500080049, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1160
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.03499997, 0.5, 1.03499997))
1161
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1, 0.200000003, 1))
1162
Partweld=weld(m,HandleLeg1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.300009072, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1163
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.03499997, 0.5, 1.03499997))
1164
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Grime","Part",Vector3.new(0.200000003, 0.800000012, 1))
1165
Partweld=weld(m,HandleLeg1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.600021362, -0.400018156, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1166
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.03499997, 1, 1))
1167
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.00000012, 0.400000006, 1))
1168
Partweld=weld(m,HandleLeg1,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.799949765, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1169
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.02499998, 1.04999995, 1.02499998))
1170
1171
HandleLeg2=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Really black","HandleGlove2",Vector3.new(1, 2, 1))
1172
HandleLeg2weld=weld(m,Character["Right Leg"],HandleLeg2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.000116348267, 0.0199642777, -0.00973415375, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1173
mesh("BlockMesh",HandleLeg2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1174
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1, 1.60000014, 1))
1175
Partweld=weld(m,HandleLeg2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.200037062, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1176
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.02499998, 1, 1.02499998))
1177
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1, 0.200000003, 1))
1178
Partweld=weld(m,HandleLeg2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.500080049, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1179
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.03499997, 0.5, 1.03499997))
1180
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Medium stone grey","Part",Vector3.new(0.200000003, 0.200000003, 2))
1181
Partweld=weld(m,HandleLeg2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.190002441, -0.600006104, -0.0999948382, 1.49011612e-008, 1.86855686e-008, -0.999999404, 0.999999762, 4.52335946e-011, 2.98023224e-008, 4.52255733e-011, -0.999999702, -1.86855669e-008))
1182
mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=20719463",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.699999988, 0.5))
1183
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1, 0.200000003, 1))
1184
Partweld=weld(m,HandleLeg2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.300009072, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1185
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.03499997, 0.5, 1.03499997))
1186
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(1.00000012, 0.400000006, 1))
1187
Partweld=weld(m,HandleLeg2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.799949765, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1188
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.02499998, 1.04999995, 1.02499998))
1189
1190
HandleGlove2=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","HandleGlove2",Vector3.new(1, 0.200000003, 1))
1191
HandleGlove2weld=weld(m,Character["Right Arm"],HandleGlove2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.000104904175, 0.719071865, -0.00973415375, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1192
mesh("BlockMesh",HandleGlove2,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.00999999, 1.04999995))
1193
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(0.800000012, 0.200000003, 0.800000012))
1194
Partweld=weld(m,HandleGlove2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.100002289, 0.20014596, -0.100006104, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1195
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.00999999, 1.04999995))
1196
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(0.600000024, 0.200000003, 0.200000003))
1197
Partweld=weld(m,HandleGlove2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.200016022, 0.20014596, 0.399993896, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1198
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.00999999, 1.04999995))
1199
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,0,"Light orange","Part",Vector3.new(1, 2, 1))
1200
Partweld=weld(m,HandleGlove2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.700212955, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1201
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1202
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1, 1.4000001, 1))
1203
Partweld=weld(m,HandleGlove2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -1.00029683, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1204
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.04999995, 1.04999995))
1205
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1, 0.200000003, 1))
1206
Partweld=weld(m,HandleGlove2,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.400226831, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1207
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.07500005, 1.17499995, 1.07500005))
1208
1209
HandleGlove1=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","HandleGlove2",Vector3.new(1, 0.200000003, 1))
1210
HandleGlove1weld=weld(m,Character["Left Arm"],HandleGlove1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(-0.000131607056, 0.719071865, 0.00973415375, -1, 0, 0, 0, 1, 0, 0, 0, -1))
1211
mesh("BlockMesh",HandleGlove1,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.00999999, 1.04999995))
1212
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1, 0.200000003, 1))
1213
Partweld=weld(m,HandleGlove1,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),CFrame.new(0, -0.400226831, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1214
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.07500005, 1.17499995, 1.07500005))
1215
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(0.800000012, 0.200000003, 0.800000012))
1216
Partweld=weld(m,HandleGlove1,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),CFrame.new(-0.100006104, 0.20014596, 0.100006104, -1, 0, 0, 0, 1, 0, 0, 0, -1))
1217
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.00999999, 1.04999995))
1218
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Black","Part",Vector3.new(0.600000024, 0.200000003, 0.200000003))
1219
Partweld=weld(m,HandleGlove1,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),CFrame.new(-0.200012207, 0.20014596, -0.399993896, -1, 0, 0, 0, 1, 0, 0, 0, -1))
1220
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.00999999, 1.04999995))
1221
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(1, 1.4000001, 1))
1222
Partweld=weld(m,HandleGlove1,Part,CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),CFrame.new(0, -1.00029683, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
1223
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 1.04999995, 1.04999995))
1224
1225
HandleSheathe=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Dark stone grey","HandleSheathe",Vector3.new(0.355113864, 0.458988994, 5.29751778))
1226
HandleSheatheweld=weld(m,Character["Torso"],HandleSheathe,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999998927, 0, 0, 0, 1),CFrame.new(-0.434928894, 0.0603027344, -0.12845993, -0.00960100349, 0.00576700177, 0.999937356, -0.854420841, 0.519460857, -0.0111997295, -0.519492865, -0.854474843, -5.98986517e-005))
1227
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.385113865, 0.222962931, 0.222962931))
1228
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(0.015127182, -0.438583374, -2.7062149, 0.00958700199, -0.00579600129, -0.999937236, -0.854421198, 0.519460142, -0.0112028327, 0.519492507, 0.854474962, 2.78390507e-005))
1229
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.428872705, 0.514649093))
1230
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.325113863, 0.222962931, 0.222962931))
1231
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(0.0149669647, -0.303909302, 2.97821808, -0.00960100349, 0.00576700177, 0.999937356, -0.854420841, 0.519460857, -0.0111997295, -0.519492865, -0.854474843, -5.98986517e-005))
1232
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.781195462, 0.89628309))
1233
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.370000005, 0.222962931, 0.222962931))
1234
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(-0.00747871399, -0.453826904, -2.70616531, -0.00960100349, 0.00576700177, 0.999937356, 0.854420841, -0.519460857, 0.0111997295, 0.519492865, 0.854474843, 5.98986517e-005))
1235
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.428872705, 0.514649093))
1236
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.375113845, 0.222962931, 0.222962931))
1237
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(0.0100440979, -0.453842163, 2.82097244, 0.00960100349, -0.00576700177, -0.999937356, 0.854420841, -0.519460857, 0.0111997295, -0.519492865, -0.854474843, -5.98986517e-005))
1238
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.428872705, 0.514649093))
1239
Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Dark stone grey","Part",Vector3.new(0.355113864, 0.222962931, 1.60646737))
1240
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(-4.00543213e-005, -0.124313354, 3.4520607, 0.00960100349, -0.00576700177, -0.999937356, -0.854420841, 0.519460857, -0.0111997295, 0.519492865, 0.854474843, 5.98986517e-005))
1241
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.94352001, 1))
1242
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.324875206, 0.222962931, 0.554613769))
1243
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(-0.0147743225, -0.304618835, -2.37171936, 0.00959500205, -0.0057840012, -0.999937236, -0.854421198, 0.519460142, -0.0112034352, 0.519492388, 0.854475141, 4.22480443e-005))
1244
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.771970809, 1))
1245
Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Dark stone grey","Part",Vector3.new(0.355113894, 0.24861905, 1.60646737))
1246
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(3.6239624e-005, -0.105186462, 3.45211792, -0.00960100349, 0.00576700177, 0.999937356, 0.854420841, -0.519460857, 0.0111997295, 0.519492865, 0.854474843, 5.98986517e-005))
1247
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.375113845, 0.222962931, 0.222962931))
1248
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(-0.0100326538, -2.97826004, 0.312530518, -0.00960100349, 0.00576700177, 0.999937356, 0.519492865, 0.854474843, 5.98985025e-005, -0.8544209, 0.519460857, -0.0111997314))
1249
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.896402597, 0.846648455))
1250
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.375113875, 0.222962931, 0.222962931))
1251
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(-0.0101318359, -0.43862915, 2.820961, -0.00958600361, 0.00579500198, 0.999937356, -0.854420841, 0.519460857, -0.011201459, -0.519493163, -0.854474664, -2.81830635e-005))
1252
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.428872705, 0.514649093))
1253
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.325113863, 0.222962931, 0.535489142))
1254
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(0.0149383545, -0.310386658, -2.38103485, -0.00959400367, 0.00578300189, 0.999937356, 0.854420841, -0.519460857, 0.0112020615, 0.519493043, 0.854474723, 4.25915787e-005))
1255
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.857745409, 1))
1256
Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.375113845, 0.79677403, 0.229495347))
1257
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(-0.0100383759, 0.00759887695, 2.76353455, -0.00960100349, 0.00576700177, 0.999937356, -0.854420841, 0.519460857, -0.0111997295, -0.519492865, -0.854474843, -5.98986517e-005))
1258
Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Pine Cone","Part",Vector3.new(0.200000003, 2.82868099, 0.877077281))
1259
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(-0.0813369751, -0.0992736816, 0.58121109, 0.865089893, -0.501616955, 0, 0.501616955, 0.865089893, 0, 0, 0, 1))
1260
Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Pine Cone","Part",Vector3.new(0.5, 0.828999996, 0.620000005))
1261
Partweld=weld(m,HandleSheathe,Part,CFrame.new(0, 0, 0, -0.00960100349, 0.00576698966, 0.999937356, -0.854420841, 0.519459784, -0.0111997295, -0.519492865, -0.854473054, -5.98986517e-005),CFrame.new(0.0516910553, -0.603843689, 0.0957794189, -0.00974400342, 0.00550700165, 0.999937356, 0.496315986, 0.868142009, 5.52486781e-005, -0.868087292, 0.496285409, -0.0111923916))
1262
1263
HandlePet2=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really black","HandlePet2",Vector3.new(0.720000029, 0.300000012, 0.209999993))
1264
HandlePet2weld=weld(m,Character["Head"],HandlePet2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999992132, 0, 0, 0, 1),CFrame.new(1.13534546, -5.77979279, -2.20617676, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764))
1265
mesh("SpecialMesh",HandlePet2,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1266
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0.30000001192093,0.5,"Really black","Part",Vector3.new(2.20000005, 0.800000012, 1.20000017))
1267
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.929176331, -0.2304039, -0.495742798, -8.49999706e-005, -0.328891873, -0.944367647, 1.2999998e-005, -0.944367647, 0.328891903, -1, 1.56790211e-005, 8.45468021e-005))
1268
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1269
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really black","Part",Vector3.new(0.720000029, 0.300000012, 0.209999993))
1270
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.584487915, 0.218208313, 0.769832611, 0.582706869, -0.292106926, -0.758370817, 0.224107683, 0.954744279, -0.195548579, 0.781171262, -0.0560092144, 0.621799469))
1271
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1272
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.800000012, 0.400000036, 0.200000003))
1273
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(7.62939453e-005, -0.0013923645, 0.0578308105, -0.600738287, -0.29334873, -0.74368, -0.299304605, 0.945117712, -0.131031305, 0.741303086, 0.143871397, -0.655569017))
1274
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1275
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(0.800000012, 0.400000036, 0.200000003))
1276
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.584213257, 0.229740143, 0.719974518, 0.582706869, -0.292106926, -0.758370817, 0.224107668, 0.95474422, -0.195548594, 0.781171203, -0.056009233, 0.621799409))
1277
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1278
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
1279
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(-1.19508362, -0.230371475, -0.829162598, -0.999995232, 0, 6.89996741e-005, 2.26945922e-005, -0.944362342, 0.328907132, 6.51606897e-005, 0.328905553, 0.944357812))
1280
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1281
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.600000024, 0.200000003, 0.400000006))
1282
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.22916412, 1.19509888, -0.230369568, -6.51610026e-005, -0.328907073, -0.944362342, 1, -1.86962072e-013, -6.90000015e-005, 2.26945886e-005, -0.944362342, 0.328907073))
1283
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.400000036, 1, 0.200000003))
1284
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.0327949524, 0.892177582, -0.234695435, 5.59803266e-005, 0.900335252, 0.435197026, -0.258899093, 0.420371801, -0.869631469, -0.965904474, -0.112623431, 0.233119518))
1285
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1286
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.400000036, 1, 0.200000003))
1287
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.0327949524, 1.14883423, -0.723075867, 5.73393918e-005, 0.900332987, 0.435201854, 0.258736849, 0.420368999, -0.86968112, -0.965948045, 0.112652637, -0.232925206))
1288
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1289
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.400000036, 1, 0.200000003))
1290
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(-0.532897949, 1.64347076, -0.383506775, 5.73393918e-005, 0.900332987, 0.435201854, 0.258736849, 0.420368999, -0.86968112, -0.965948045, 0.112652637, -0.232925206))
1291
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1292
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.400000036, 1, 0.200000003))
1293
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(-0.532901764, 1.38682175, -0.574295044, 5.59803266e-005, 0.900335252, 0.435197026, -0.258899093, 0.420371801, -0.869631469, -0.965904474, -0.112623431, 0.233119518))
1294
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1295
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(2.5999999, 1.60000002, 1.60000002))
1296
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.929016113, -0.23043251, -0.495773315, -9.9375844e-005, -0.328916311, -0.944359004, 2.18451023e-005, -0.944359183, 0.328916281, -1.00000012, 1.20326877e-005, 0.000100925565))
1297
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1298
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.800000012))
1299
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.204330444, -0.0695495605, 1.32424927, -1, -3.6334086e-008, 9.20768944e-005, -3.0323743e-005, 0.94434458, -0.328958005, -8.69403666e-005, -0.328958005, -0.94434458))
1300
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1301
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.230000004, 0.200000003, 0.719999969))
1302
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(-0.204269409, -0.500398636, 1.29953766, 1, -3.10208321e-008, -9.21796673e-005, 3.02939206e-005, -0.944344699, 0.328957766, -8.70595686e-005, -0.328957766, -0.944344699))
1303
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 0.899999976, 1))
1304
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.899999857, 0.230000004, 0.719999969))
1305
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.94380188, -0.20425415, -0.230461121, -8.69999712e-005, -0.328957886, -0.94434464, 1, -3.95619892e-008, -9.21135725e-005, 3.02641256e-005, -0.94434464, 0.328957886))
1306
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.899999976, 1))
1307
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.719999909, 0.229999989, 0.360000014))
1308
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.29953003, -0.204238892, -0.230438232, -8.69999712e-005, -0.328957886, -0.94434464, 1, -3.95640427e-008, -9.21135725e-005, 3.02641238e-005, -0.94434464, 0.328957886))
1309
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.899999976, 1))
1310
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.799999952, 0.200000003, 0.400000036))
1311
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.3243866, -0.204269409, -0.230438232, -8.69999712e-005, -0.328957886, -0.94434464, 1, -3.95618898e-008, -9.21135725e-005, 3.02641256e-005, -0.94434464, 0.328957886))
1312
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.230000004, 0.200000003, 0.719999969))
1313
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.204299927, -0.0395488739, 1.29947662, -1.00000477, -3.63365693e-008, 9.20773309e-005, -3.03237466e-005, 0.94434458, -0.328958005, -8.69407813e-005, -0.328959584, -0.94434911))
1314
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 0.899999976, 1))
1315
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.800000012))
1316
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(-0.204299927, -0.5303936, 1.3243103, 1, -3.10217274e-008, -9.21796673e-005, 3.02939206e-005, -0.944344699, 0.328957766, -8.70595686e-005, -0.328957766, -0.944344699))
1317
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1318
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.999999881, 0.200000003, 0.800000012))
1319
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.929046631, -0.204284668, -0.230461121, -8.70002477e-005, -0.328958958, -0.94434768, 1.00000322, -3.95621171e-008, -9.21138708e-005, 3.02641256e-005, -0.94434464, 0.328957886))
1320
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1321
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.200000003, 0.400000006, 0.200000003))
1322
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.204879761, -0.230371475, -0.828964233, -0.999995232, 0, 6.89996741e-005, 2.26945922e-005, -0.944362342, 0.328907132, 6.51606897e-005, 0.328905553, 0.944357812))
1323
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1324
Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.600000024, 0.200000003, 0.400000006))
1325
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.22896576, -0.204879761, -0.230371475, -6.51610026e-005, -0.328907073, -0.944362342, 1, -1.86962072e-013, -6.90000015e-005, 2.26945886e-005, -0.944362342, 0.328907073))
1326
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.800000012))
1327
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(-1.19561768, -0.0695724487, 1.32424164, -1, -3.6334086e-008, 9.20768944e-005, -3.0323743e-005, 0.94434458, -0.328958005, -8.69403666e-005, -0.328958005, -0.94434458))
1328
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1329
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.999999881, 0.200000003, 0.800000012))
1330
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.929039001, 1.19567871, -0.230438232, -8.70002477e-005, -0.328958958, -0.94434768, 1.00000322, -3.95621171e-008, -9.21138708e-005, 3.02641256e-005, -0.94434464, 0.328957886))
1331
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1332
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.799999952, 0.200000003, 0.400000036))
1333
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.32437897, 1.19567871, -0.230415344, -8.69999712e-005, -0.328957886, -0.94434464, 1, -3.95618898e-008, -9.21135725e-005, 3.02641256e-005, -0.94434464, 0.328957886))
1334
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.200000003, 0.200000003, 0.800000012))
1335
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.19564819, -0.530370712, 1.3243103, 1, -3.10217274e-008, -9.21796673e-005, 3.02939206e-005, -0.944344699, 0.328957766, -8.70595686e-005, -0.328957766, -0.944344699))
1336
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1337
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.230000004, 0.200000003, 0.719999969))
1338
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.19567871, -0.500375748, 1.29953003, 1, -3.10208321e-008, -9.21796673e-005, 3.02939206e-005, -0.944344699, 0.328957766, -8.70595686e-005, -0.328957766, -0.944344699))
1339
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 0.899999976, 1))
1340
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.899999857, 0.230000004, 0.719999969))
1341
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.94379425, 1.19569397, -0.230438232, -8.69999712e-005, -0.328957886, -0.94434464, 1, -3.95619892e-008, -9.21135725e-005, 3.02641256e-005, -0.94434464, 0.328957886))
1342
mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.899999976, 1))
1343
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.719999909, 0.229999989, 0.360000014))
1344
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(1.2995224, 1.19570923, -0.230417252, -8.69999712e-005, -0.328957886, -0.94434464, 1, -3.95640427e-008, -9.21135725e-005, 3.02641238e-005, -0.94434464, 0.328957886))
1345
mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.899999976, 1))
1346
Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0.30000001192093,0,"Really black","Part",Vector3.new(0.230000004, 0.200000003, 0.719999969))
1347
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(-1.19566345, -0.0395736694, 1.29946899, -1.00000477, -3.63365693e-008, 9.20773309e-005, -3.03237466e-005, 0.94434458, -0.328958005, -8.69407813e-005, -0.328959584, -0.94434911))
1348
mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 0.899999976, 1))
1349
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.400000036, 1, 0.200000003))
1350
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.25428772, 0.614953995, -0.160369873, -8.89404182e-005, 0.435169071, -0.900348902, -0.258838594, -0.869675577, -0.420317948, -0.965920568, 0.233007655, 0.112715855))
1351
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1352
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(0.400000036, 1, 0.200000003))
1353
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.254295349, 0.871566772, -0.797325134, -8.76002377e-005, 0.43517381, -0.900346518, 0.258797228, -0.869663477, -0.420368433, -0.965931773, -0.233044088, -0.112545617))
1354
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1355
Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0.30000001192093,0,"Institutional white","Part",Vector3.new(2.59999967, 1.59999979, 1.59999979))
1356
Partweld=weld(m,HandlePet2,Part,CFrame.new(0, 0, 0, -0.600704908, -0.293308944, -0.743722796, -0.299319774, 0.945120692, -0.130975559, 0.741324067, 0.143933266, -0.655531764),CFrame.new(0.929077148, 0.230449677, 0.495742798, -8.00788403e-005, -0.328945756, -0.944348812, -4.73707914e-005, 0.944348931, -0.328945845, 0.99999994, 1.84476376e-005, -9.11578536e-005))
1357
mesh("SpecialMesh",Part,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
1358
1359
local Lite = it("PointLight",Torso)
1360
Lite.Color = Color3.new(255, 255, 0)
1361
Lite.Range = 5
1362
Lite.Brightness = 5
1363
Lite.Shadows = true
1364
1365
asd = Instance.new("Sound", HandlePet2)
1366
asd.Name = 'asd'
1367
asd.SoundId = "rbxassetid://525721279"
1368
asd.Looped = true
1369
asd.Volume = 0.5
1370
wait(.1)
1371
asd:Play()
1372
1373
local plr=game.Players.LocalPlayer
1374
local runDummyScript = function(f,scri)
1375
local oldenv = getfenv(f)
1376
local newenv = setmetatable({}, {
1377
__index = function(_, k)
1378
if k:lower() == 'script' then
1379
return scri
1380
else
1381
return oldenv[k]
1382
end
1383
end
1384
})
1385
setfenv(f, newenv)
1386
ypcall(function() f() end)
1387
end
1388
cors = {}
1389
mas = Instance.new("Model",game:GetService("Lighting")) 
1390
mas.Name = "CompiledModel"
1391
o1 = Instance.new("Model")
1392
o1.Name = "Soundbar"
1393
o1.Parent = mas
1394
o2 = Instance.new("Part")
1395
o2.Name = "0"
1396
o2.Parent = o1
1397
o2.Position = Vector3.new(9.5, 0.200000018, 0)
1398
o2.Anchored = true
1399
o2.CFrame = CFrame.new(9.5, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1400
o2.CanCollide = false
1401
o2.Size = Vector3.new(0.5, 0.200000003, 0.5)
1402
o2.BottomSurface = Enum.SurfaceType.Smooth
1403
o2.TopSurface = Enum.SurfaceType.Smooth
1404
o3 = Instance.new("SpecialMesh")
1405
o3.Parent = o2
1406
o3.MeshId = "rbxassetid://9856898"
1407
o3.Scale = Vector3.new(1, 0.400000006, 1)
1408
o3.TextureId = "rbxassetid://2114473"
1409
o3.MeshType = Enum.MeshType.FileMesh
1410
o4 = Instance.new("Part")
1411
o4.Name = "1"
1412
o4.Parent = o1
1413
o4.Position = Vector3.new(5, 0.200000018, 0)
1414
o4.Anchored = true
1415
o4.CFrame = CFrame.new(5, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1416
o4.CanCollide = false
1417
o4.Size = Vector3.new(0.5, 0.200000003, 0.5)
1418
o4.BottomSurface = Enum.SurfaceType.Smooth
1419
o4.TopSurface = Enum.SurfaceType.Smooth
1420
o5 = Instance.new("SpecialMesh")
1421
o5.Parent = o4
1422
o5.MeshId = "rbxassetid://9856898"
1423
o5.Scale = Vector3.new(1, 0.400000006, 1)
1424
o5.TextureId = "rbxassetid://2114473"
1425
o5.MeshType = Enum.MeshType.FileMesh
1426
o6 = Instance.new("Part")
1427
o6.Name = "2"
1428
o6.Parent = o1
1429
o6.Position = Vector3.new(4.5, 0.200000018, 0)
1430
o6.Anchored = true
1431
o6.CFrame = CFrame.new(4.5, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1432
o6.CanCollide = false
1433
o6.Size = Vector3.new(0.5, 0.200000003, 0.5)
1434
o6.BottomSurface = Enum.SurfaceType.Smooth
1435
o6.TopSurface = Enum.SurfaceType.Smooth
1436
o7 = Instance.new("SpecialMesh")
1437
o7.Parent = o6
1438
o7.MeshId = "rbxassetid://9856898"
1439
o7.Scale = Vector3.new(1, 0.400000006, 1)
1440
o7.TextureId = "rbxassetid://2114473"
1441
o7.MeshType = Enum.MeshType.FileMesh
1442
o8 = Instance.new("Part")
1443
o8.Name = "3"
1444
o8.Parent = o1
1445
o8.Position = Vector3.new(4, 0.200000018, 0)
1446
o8.Anchored = true
1447
o8.CFrame = CFrame.new(4, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1448
o8.CanCollide = false
1449
o8.Size = Vector3.new(0.5, 0.200000003, 0.5)
1450
o8.BottomSurface = Enum.SurfaceType.Smooth
1451
o8.TopSurface = Enum.SurfaceType.Smooth
1452
o9 = Instance.new("SpecialMesh")
1453
o9.Parent = o8
1454
o9.MeshId = "rbxassetid://9856898"
1455
o9.Scale = Vector3.new(1, 0.400000006, 1)
1456
o9.TextureId = "rbxassetid://2114473"
1457
o9.MeshType = Enum.MeshType.FileMesh
1458
o10 = Instance.new("Part")
1459
o10.Name = "4"
1460
o10.Parent = o1
1461
o10.Position = Vector3.new(3.5, 0.200000018, 0)
1462
o10.Anchored = true
1463
o10.CFrame = CFrame.new(3.5, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1464
o10.CanCollide = false
1465
o10.Size = Vector3.new(0.5, 0.200000003, 0.5)
1466
o10.BottomSurface = Enum.SurfaceType.Smooth
1467
o10.TopSurface = Enum.SurfaceType.Smooth
1468
o11 = Instance.new("SpecialMesh")
1469
o11.Parent = o10
1470
o11.MeshId = "rbxassetid://9856898"
1471
o11.Scale = Vector3.new(1, 0.400000006, 1)
1472
o11.TextureId = "rbxassetid://2114473"
1473
o11.MeshType = Enum.MeshType.FileMesh
1474
o12 = Instance.new("Part")
1475
o12.Name = "5"
1476
o12.Parent = o1
1477
o12.Position = Vector3.new(3, 0.200000018, 0)
1478
o12.Anchored = true
1479
o12.CFrame = CFrame.new(3, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1480
o12.CanCollide = false
1481
o12.Size = Vector3.new(0.5, 0.200000003, 0.5)
1482
o12.BottomSurface = Enum.SurfaceType.Smooth
1483
o12.TopSurface = Enum.SurfaceType.Smooth
1484
o13 = Instance.new("SpecialMesh")
1485
o13.Parent = o12
1486
o13.MeshId = "rbxassetid://9856898"
1487
o13.Scale = Vector3.new(1, 0.400000006, 1)
1488
o13.TextureId = "rbxassetid://2114473"
1489
o13.MeshType = Enum.MeshType.FileMesh
1490
o14 = Instance.new("Part")
1491
o14.Name = "6"
1492
o14.Parent = o1
1493
o14.Position = Vector3.new(9, 0.200000018, 0)
1494
o14.Anchored = true
1495
o14.CFrame = CFrame.new(9, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1496
o14.CanCollide = false
1497
o14.Size = Vector3.new(0.5, 0.200000003, 0.5)
1498
o14.BottomSurface = Enum.SurfaceType.Smooth
1499
o14.TopSurface = Enum.SurfaceType.Smooth
1500
o15 = Instance.new("SpecialMesh")
1501
o15.Parent = o14
1502
o15.MeshId = "rbxassetid://9856898"
1503
o15.Scale = Vector3.new(1, 0.400000006, 1)
1504
o15.TextureId = "rbxassetid://2114473"
1505
o15.MeshType = Enum.MeshType.FileMesh
1506
o16 = Instance.new("Part")
1507
o16.Name = "7"
1508
o16.Parent = o1
1509
o16.Position = Vector3.new(0, 0.200000018, 0)
1510
o16.Anchored = true
1511
o16.CFrame = CFrame.new(0, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1512
o16.CanCollide = false
1513
o16.Size = Vector3.new(0.5, 0.200000003, 0.5)
1514
o16.BottomSurface = Enum.SurfaceType.Smooth
1515
o16.TopSurface = Enum.SurfaceType.Smooth
1516
o17 = Instance.new("SpecialMesh")
1517
o17.Parent = o16
1518
o17.MeshId = "rbxassetid://9856898"
1519
o17.Scale = Vector3.new(1, 0.400000006, 1)
1520
o17.TextureId = "rbxassetid://2114473"
1521
o17.MeshType = Enum.MeshType.FileMesh
1522
o18 = Instance.new("Part")
1523
o18.Name = "8"
1524
o18.Parent = o1
1525
o18.Position = Vector3.new(-0.5, 0.200000018, 0)
1526
o18.Anchored = true
1527
o18.CFrame = CFrame.new(-0.5, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1528
o18.CanCollide = false
1529
o18.Size = Vector3.new(0.5, 0.200000003, 0.5)
1530
o18.BottomSurface = Enum.SurfaceType.Smooth
1531
o18.TopSurface = Enum.SurfaceType.Smooth
1532
o19 = Instance.new("SpecialMesh")
1533
o19.Parent = o18
1534
o19.MeshId = "rbxassetid://9856898"
1535
o19.Scale = Vector3.new(1, 0.400000006, 1)
1536
o19.TextureId = "rbxassetid://2114473"
1537
o19.MeshType = Enum.MeshType.FileMesh
1538
o20 = Instance.new("Part")
1539
o20.Name = "9"
1540
o20.Parent = o1
1541
o20.Position = Vector3.new(-1, 0.200000018, 0)
1542
o20.Anchored = true
1543
o20.CFrame = CFrame.new(-1, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1544
o20.CanCollide = false
1545
o20.Size = Vector3.new(0.5, 0.200000003, 0.5)
1546
o20.BottomSurface = Enum.SurfaceType.Smooth
1547
o20.TopSurface = Enum.SurfaceType.Smooth
1548
o21 = Instance.new("SpecialMesh")
1549
o21.Parent = o20
1550
o21.MeshId = "rbxassetid://9856898"
1551
o21.Scale = Vector3.new(1, 0.400000006, 1)
1552
o21.TextureId = "rbxassetid://2114473"
1553
o21.MeshType = Enum.MeshType.FileMesh
1554
o22 = Instance.new("Part")
1555
o22.Name = "10"
1556
o22.Parent = o1
1557
o22.Position = Vector3.new(-1.5, 0.200000018, 0)
1558
o22.Anchored = true
1559
o22.CFrame = CFrame.new(-1.5, 0.200000018, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
1560
o22.CanCollide = false
1561
o22.Size = Vector3.new(0.5, 0.200000003, 0.5)
1562
o22.BottomSurface = Enum.SurfaceType.Smooth
1563
o22.TopSurface = Enum.SurfaceType.Smooth
1564
o23 = Instance.new("SpecialMesh")
1565
o23.Parent = o22
1566
o23.MeshId = "rbxassetid://9856898"
1567
o23.Scale = Vector3.new(1, 0.400000006, 1)
1568
o23.TextureId = "rbxassetid://2114473"
1569
o23.MeshType = Enum.MeshType.FileMesh
1570
1571
1572
mas.Parent = plr.Character
1573
mas:MakeJoints()
1574
local mas1 = mas:GetChildren()
1575
for i=1,#mas1 do
1576
	mas1[i].Parent = plr.Character
1577
	ypcall(function() mas1[i]:MakeJoints() end)
1578
end
1579
mas:Destroy()
1580
for i=1,#cors do
1581
coroutine.resume(cors[i])
1582
end
1583
1584
local Height=10 -- Max height of the bars
1585
1586
1587
local Soundbar=plr.Character.Soundbar
1588
local Sound=asd
1589
local Bars={}	for i,v in next,Soundbar:children() do
1590
					if v:IsA'BasePart' then
1591
						table.insert(Bars,v)
1592
					end
1593
				end Height=Height*2
1594
local nBars,Tweens=#Bars-1,{}
1595
1596
-- EASING FUNCTIONS --
1597
local function quadIn(t,b,c,d) t=t/d; return c*t*t+b; end;
1598
local function quadOut(t,b,c,d) t=t/d; return -c*t*(t-2)+b; end;
1599
local function Quad(obj,val,ease,d)
1600
	local t,f,con,nt,st,sd=tick()
1601
	Tweens[obj]=t -- Set identifier
1602
	st=obj.Scale.Y -- Start Value
1603
	sd=val-st -- Change in Value
1604
	f=ease=='In' and quadIn or quadOut -- Choose between Out/In
1605
	con=game:GetService'RunService'.RenderStepped:connect(function() nt=tick()-t
1606
		if Tweens[obj]~=t then -- Check for override
1607
			con:disconnect()
1608
			return
1609
		end
1610
		local nv=math.max(.2,f(math.min(d,nt),st,sd,d)) -- New Value
1611
		obj.Scale=Vector3.new(.9,nv,.9)
1612
		obj.Offset=Vector3.new(0,nv/4,0)
1613
		obj.VertexColor=Vector3.new(0,0,0):lerp(Vector3.new(1,1,1),nv/Height)
1614
		if nt>d then -- Easing done?
1615
			con:disconnect()
1616
			if ease~='In' then
1617
				Quad(obj,.2,'In',.3) -- Drop the bar
1618
			end
1619
		end
1620
	end)
1621
end
1622
1623
-- BAR MANIPULATION --
1624
local function CheckSet(N,S,D) -- Number, Scale, Direction
1625
	local nS=Soundbar[tostring(N)].Mesh.Scale.Y
1626
	if S>nS then
1627
		Set(N,nS+(S-nS)/3,D)
1628
	end
1629
end
1630
1631
function Set(N,S,D) -- Number, Scale, Direction
1632
	Quad(Soundbar[tostring(N)].Mesh,S,'Out',.1) -- Grabs the bar and tweens
1633
	if N>0 and D~=1 then -- Checks left for smaller bars to manipulate
1634
		CheckSet(N-1,S,-1)
1635
	end
1636
	if N<nBars and D~=-1 then -- Checks right...
1637
		CheckSet(N+1,S,1)
1638
	end
1639
end
1640
1641
-- RENDER LOOP --
1642
local MPL,PL,curr=0 curr=Sound.SoundId
1643
spawn(function()
1644
game:service'RunService'.RenderStepped:connect(function()
1645
	PL=Sound.PlaybackLoudness
1646
	if Sound.IsPlaying and PL==PL then -- Sound is playing & PlaybackLoudness is not undefined
1647
		if curr~=Sound.SoundId then MPL=0 -- Reset the relative Max PlaybackLoudness on song change
1648
			curr=Sound.SoundId
1649
		end
1650
		MPL=math.max(PL,MPL) PL=PL/MPL -- Normalize PL based on relative Max PlaybackLoudness
1651
		if PL==PL then
1652
			Set(math.floor(PL*nBars),PL*Height) -- Modify bar relative to PlaybackLoudness
1653
		end
1654
	end
1655
end)
1656
end)
1657
1658
local Locked
1659
1660
1661
local CRot = 1
1662
local Rotation = {0,Event=nil}
1663
local Y = 0;
1664
local Z = 0;
1665
Y = math.sin(Rotation[1] * 300);
1666
local rad,sin,ceil=math.rad,math.sin,math.ceil
1667
1668
	
1669
Sound:Play()
1670
1671
local Parts = {}
1672
for Index,v in pairs(o1:children'') do
1673
	if v:IsA'Part' then
1674
		table.insert(Parts,v)
1675
	end
1676
end
1677
1678
	spawn(function()
1679
game:service'RunService'.RenderStepped:connect(function()
1680
	CRot = CRot + .003
1681
	for Index,v in pairs(o1:children'') do
1682
		if v:IsA'Part' then
1683
v.CFrame = CFrame.new(plr.Character.Torso.Position+Vector3.new(0,7,0))
1684
								*CFrame.Angles(0, ((((360)/(#Parts))*(Index))+(Rotation[1]/2*ceil(Index*#Parts)))+CRot, 0)
1685
								*CFrame.new(8 +(Index)+(#Parts*0), Y, 0)
1686
								*CFrame.Angles(0,90+CRot,0)
1687
								*CFrame.Angles(sin(tick()/2), sin(tick()/2), sin(tick()/2))
1688
							end
1689
				end
1690
		end)
1691
end)
1692
1693
function BreakEffect(brickcolor,cframe,x1,y1,z1)
1694
local prt=part("Custom",workspace,"Neon",0,0,"White","Effect",vt(0.5,0.5,0.5))
1695
prt.Anchored=true
1696
prt.CFrame=cframe*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
1697
local msh=mesh("SpecialMesh",prt,"Sphere","",vt(0,0,0),vt(x1,y1,z1))
1698
coroutine.resume(coroutine.create(function(Part,CF,Numbb,randnumb) 
1699
CF=Part.CFrame
1700
Numbb=0
1701
randnumb=math.random()-math.random()
1702
for i=0,1,0.05 do
1703
wait()
1704
CF=CF*cf(0,1,0)
1705
--Part.CFrame=Part.CFrame*euler(0.5,0,0)*cf(0,1,0)
1706
Part.CFrame=CF*euler(Numbb,0,0)
1707
Part.Transparency=i
1708
Numbb=Numbb+randnumb
1709
end
1710
Part.Parent=nil
1711
end),prt)
1712
end
1713
--BreakEffect(BrickColor.new("White"),Hitbox.CFrame,0.5,math.random(5,20),0.5)
1714
1715
function attackone()
1716
        attack=true
1717
        local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,15,30,math.random(10,20),"Normal",RootPart,.2,1) end) 
1718
        for i=0,1,0.1 do
1719
                swait()
1720
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(120),math.rad(0),math.rad(20)),.3)
1721
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-90)),.3)
1722
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-50),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1723
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(120),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1724
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(70),math.rad(-10),math.rad(0)),.3)
1725
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
1726
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(50)),.3)
1727
        end
1728
        so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1) 
1729
        so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1) 
1730
        hitconasdf = Hitbox.Touched:connect(function(hit)
1731
                local hum12 = hit.Parent:FindFirstChild("Humanoid")
1732
                if hum12 and not hum12:IsDescendantOf(Character) then
1733
                        so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
1734
                        for i = 1,10 do
1735
                        BreakEffect(BrickColor.new("Institutional white"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1736
                        end
1737
                        hitconasdf:disconnect()
1738
                end
1739
        end)
1740
                for i=0,1,0.1 do
1741
                swait()
1742
                local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
1743
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1744
local h = 5
1745
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1746
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1747
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1748
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1749
scfr = blcf
1750
elseif not scfr then
1751
scfr = blcf
1752
end
1753
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(110),math.rad(-90),math.rad(20)),.3)
1754
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-50)),.3)
1755
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-120),math.rad(5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1756
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1757
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,0)*angles(math.rad(-60),math.rad(-10),math.rad(0)),.3)
1758
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
1759
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(-50)),.3)
1760
        end
1761
        attack=false
1762
        con:disconnect()
1763
        scfr = nil
1764
        pcall(function()
1765
        hitconasdf:disconnect()
1766
        end)
1767
end
1768
1769
function attacktwo()
1770
        attack = true
1771
local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,25,50,math.random(10,20),"Normal",RootPart,.2,1) end) 
1772
for i = 0,1,0.1 do
1773
swait()
1774
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(20),math.rad(0),math.rad(50)),.3)
1775
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-10),math.rad(10),math.rad(-50)),.3)
1776
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, -0.5) * angles(math.rad(0), math.rad(120), math.rad(120)), 0.3)
1777
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0.5) * angles(math.rad(-50), math.rad(0), math.rad(-10)), 0.3)
1778
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(-5),math.rad(60),math.rad(20))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1779
LH.C0=clerp(LH.C0,cf(-.8,-1,-.5)*angles(math.rad(0),math.rad(-140),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1780
HandleWeld.C0 = clerp(HandleWeld.C0,cf(0,0,0)* angles(math.rad(4),math.rad(0),math.rad(0)),.3)
1781
end
1782
so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1)
1783
for i = 0,1,0.1 do
1784
swait()
1785
local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1786
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1787
local h = 5
1788
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1789
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1790
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1791
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1792
scfr = blcf
1793
elseif not scfr then
1794
scfr = blcf
1795
end
1796
RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,-0.5)* angles(math.rad(30),math.rad(0),math.rad(-50)),.3)
1797
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(50)),.3)
1798
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-20), math.rad(90)), 0.3)
1799
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-50), math.rad(0), math.rad(-20)), 0.3)
1800
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(-5),math.rad(140),math.rad(-20))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1801
LH.C0=clerp(LH.C0,cf(-1,-0.4,0)*angles(math.rad(0),math.rad(-60),math.rad(-30))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1802
HandleWeld.C0 = clerp(HandleWeld.C0,cf(0,0,0)* angles(math.rad(30),math.rad(0),math.rad(0)),.3)
1803
Torso.Velocity=Head.CFrame.lookVector*50
1804
end
1805
Humanoid.Jump = true
1806
for i=0,0.6,.5 do
1807
swait()
1808
so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1) 
1809
for i=0,1,0.1 do
1810
swait()
1811
local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
1812
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1813
local h = 5
1814
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1815
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1816
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1817
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1818
scfr = blcf
1819
elseif not scfr then
1820
scfr = blcf
1821
end
1822
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,4)*euler(0,1,-6*i), .3)
1823
Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(0),math.rad(0),math.rad(0)),.3)
1824
RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(70), math.rad(90)), 0.3)
1825
LW.C0 = clerp(LW.C0, CFrame.new(.5, 0.5, -.8) * angles(math.rad(0), math.rad(-170), math.rad(-90)), 0.3)
1826
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(-5),math.rad(80),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1827
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-80),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1828
HandleWeld.C0 = clerp(HandleWeld.C0,cf(0,0,0)* angles(math.rad(50),math.rad(0),math.rad(0)),.3)
1829
end
1830
end
1831
attack = false
1832
scfr = nil
1833
con:disconnect()
1834
end
1835
1836
function Stab()
1837
attack=true
1838
local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,50,75,math.random(10,20),"Normal",RootPart,.2,1) end) 
1839
for i=0,1,0.1 do
1840
swait()
1841
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
1842
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(60)),.3)
1843
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(20),math.rad(90)),.3)
1844
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(-20),math.rad(-90)),.3)
1845
LH.C0=clerp(LH.C0,cf(-1,-.9,0)*angles(math.rad(0),math.rad(-60),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1846
RH.C0=clerp(RH.C0,cf(1,-.9,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1847
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
1848
end
1849
hitconasdf = Hitbox.Touched:connect(function(hit)
1850
                local hum12 = hit.Parent:FindFirstChild("Humanoid")
1851
                if hum12 and not hum12:IsDescendantOf(Character) then
1852
                        so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
1853
                        for i = 1,10 do
1854
                        BreakEffect(BrickColor.new("White"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1855
                        end
1856
                        hitconasdf:disconnect()
1857
                end
1858
        end)
1859
so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9)
1860
so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9) 
1861
for i=0,1,0.1 do
1862
swait()
1863
local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
1864
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1865
local h = 5
1866
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1867
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1868
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1869
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1870
scfr = blcf
1871
elseif not scfr then
1872
scfr = blcf
1873
end
1874
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4)
1875
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(-80)),.4)
1876
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.4)
1877
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(-20),math.rad(-30)),.4)
1878
LH.C0=clerp(LH.C0,cf(-1,-.9,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.4)
1879
RH.C0=clerp(RH.C0,cf(1,-.9,0)*angles(math.rad(0),math.rad(60),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.4)
1880
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.4)
1881
end
1882
con:disconnect()
1883
attack=false
1884
scfr = nil
1885
pcall(function()
1886
        hitconasdf:disconnect()
1887
        end)
1888
end
1889
1890
function Spin()
1891
attack=true
1892
local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,20,30,math.random(10,20),"Normal",RootPart,.2,1) end)
1893
hitconasdf = Hitbox.Touched:connect(function(hit)
1894
                local hum12 = hit.Parent:FindFirstChild("Humanoid")
1895
                if hum12 and not hum12:IsDescendantOf(Character) then
1896
                        so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
1897
                        for i = 1,10 do
1898
                        BreakEffect(BrickColor.new("White"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1899
                        end
1900
                        hitconasdf:disconnect()
1901
                end
1902
        end) 
1903
for i=0,1,1 do
1904
so("http://roblox.com/asset/?id=260433850",Hitbox,1,1)
1905
so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1) 
1906
swait()
1907
for i=0,1,0.1 do
1908
swait()
1909
local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
1910
if scfr and (Hitbox.Position-scfr.p).magnitude > .1  then
1911
local h = 5
1912
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1913
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1914
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1915
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1916
scfr = blcf
1917
elseif not scfr then
1918
scfr = blcf
1919
end
1920
RW.C0=clerp(RW.C0,cf(1,0.5,-.5)*angles(math.rad(90),math.rad(0),math.rad(-50)),.3)
1921
LW.C0=clerp(LW.C0,cf(-1,0.5,-.5)*angles(math.rad(90),math.rad(0),math.rad(50)),.3)
1922
LH.C0=clerp(LH.C0,cf(-1,-.5,-1)*angles(math.rad(-20),math.rad(-90),math.rad(0)),.3)
1923
RH.C0=clerp(RH.C0,cf(1,-.5,-1)*angles(math.rad(-20),math.rad(90),math.rad(0)),.3)
1924
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,5)*euler(6*i,0,0),.5)
1925
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(30)),1)
1926
end
1927
end
1928
attack=false
1929
con:disconnect()
1930
scfr = nil
1931
pcall(function()
1932
        hitconasdf:disconnect()
1933
        end)
1934
end
1935
1936
function ContAttack()
1937
        attack=true
1938
        local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,20,30,math.random(10,20),"Normal",RootPart,.2,1) end) 
1939
        hitconasdf = Hitbox.Touched:connect(function(hit)
1940
                local hum12 = hit.Parent:FindFirstChild("Humanoid")
1941
                if hum12 and not hum12:IsDescendantOf(Character) then
1942
                        so('http://roblox.com/asset/?id=220833976',Hitbox,1,1)
1943
                        for i = 1,10 do
1944
                        BreakEffect(BrickColor.new("White"),hit.Parent.Torso.CFrame,0.5,math.random(5,20),0.5)
1945
                        end
1946
                        hitconasdf:disconnect()
1947
                end
1948
        end) 
1949
        for i=1,4 do
1950
	    swait()
1951
        for i=0,1,0.2 do
1952
                swait()
1953
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(120),math.rad(0),math.rad(20)),.3)
1954
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-90)),.3)
1955
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-50),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1956
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(120),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1957
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(70),math.rad(-10),math.rad(0)),.3)
1958
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
1959
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(50)),.3)
1960
        end
1961
        so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1) 
1962
        so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,1) 
1963
for i=0,1,0.2 do
1964
swait()
1965
local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
1966
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
1967
local h = 5
1968
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
1969
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1970
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
1971
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
1972
scfr = blcf
1973
elseif not scfr then
1974
scfr = blcf
1975
end
1976
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(110),math.rad(-90),math.rad(20)),.3)
1977
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-50)),.3)
1978
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-120),math.rad(5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1979
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1980
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,0)*angles(math.rad(-60),math.rad(-10),math.rad(0)),.3)
1981
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
1982
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(-50)),.3)
1983
        end
1984
        for i=0,1,0.2 do
1985
                swait()
1986
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(90),math.rad(90)),.3)
1987
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-50)),.3)
1988
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-130),math.rad(5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1989
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(50),math.rad(10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
1990
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,0)*angles(math.rad(-30),math.rad(-10),math.rad(0)),.3)
1991
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(70)),.3)
1992
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(-50)),.3)
1993
        end
1994
        so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9) 
1995
        so("http://www.roblox.com/asset/?id=260433850",Hitbox,1,.9) 
1996
for i=0,1,0.2 do
1997
swait()
1998
local blcf = Hitbox.CFrame*CFrame.new(0,.3,0)
1999
if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
2000
local h = 5
2001
local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
2002
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
2003
local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
2004
if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
2005
scfr = blcf
2006
elseif not scfr then
2007
scfr = blcf
2008
end
2009
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-50),math.rad(90)),.3)
2010
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(-20),math.rad(-90)),.3)
2011
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-50),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2012
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(130),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2013
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,0)*angles(math.rad(-50),math.rad(10),math.rad(0)),.3)
2014
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
2015
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-0),math.rad(0),math.rad(50)),.3)
2016
        end
2017
        end
2018
        attack=false
2019
        con:disconnect()
2020
        scfr = nil
2021
        pcall(function()
2022
        hitconasdf:disconnect()
2023
        end)
2024
end
2025
2026
2027
function Sheathe()
2028
attack = true
2029
so("http://www.roblox.com/asset/?id=130785407",Hitbox,1,.9) 
2030
CurrentMode = "Sheathed"
2031
for i = 0,1,0.1 do
2032
swait()
2033
HandleWeld.Part0 = Torso
2034
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
2035
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(-20)),.3)
2036
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(190),math.rad(0),math.rad(0)),.3)
2037
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-10),math.rad(20),math.rad(-10)),.3)
2038
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2039
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2040
HandleWeld.C0=clerp(HandleWeld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
2041
end
2042
attack = false
2043
end
2044
2045
function Unsheathe()
2046
attack = true
2047
CurrentMode = "Unsheathed"
2048
so("http://www.roblox.com/asset/?id=130785407",Hitbox,1,.9) 
2049
for i = 0,1,0.1 do
2050
swait()
2051
HandleWeld.Part0 = RightArm
2052
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
2053
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(60)),.3)
2054
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(200),math.rad(0),math.rad(0)),.3)
2055
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(-30),math.rad(-30)),.3)
2056
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2057
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2058
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(0),math.rad(30),math.rad(0)),.3)
2059
end
2060
scfr = nil
2061
attack = false
2062
end
2063
2064
local Sit = false
2065
2066
mouse.Button1Down:connect(function()
2067
        if attack==false then
2068
                if attacktype==1 and CurrentMode == "Unsheathed" then
2069
                        attack=true
2070
                        attacktype=2
2071
                        attackone()
2072
                elseif attacktype==2 and CurrentMode == "Unsheathed" then
2073
                        attack=true
2074
                        attacktype=1
2075
                        attacktwo()
2076
                end
2077
        end
2078
end)
2079
2080
2081
mouse.KeyDown:connect(function(k)
2082
        k=k:lower()
2083
        if k=='q' then
2084
                if attack==false and CurrentMode == "Unsheathed" then
2085
                        Stab()
2086
                end
2087
                elseif k=='e' then
2088
                if attack==false and CurrentMode == "Unsheathed" then
2089
                        Spin()
2090
                end
2091
                elseif k=='r' then
2092
                if attack==false and CurrentMode == "Unsheathed" then
2093
                        ContAttack()
2094
                end
2095
                elseif k=='f' then
2096
                if attack==false and CurrentMode == "Unsheathed" then
2097
                        Sheathe()
2098
                        Character.Animate.Disabled = false
2099
                elseif k=='f' then
2100
                if attack==false and Sit == false and CurrentMode == "Sheathed" then
2101
                        Unsheathe()
2102
                        Character.Animate.Disabled = true
2103
                end
2104
                end
2105
                elseif k=='t' then
2106
                if attack==false and Sit == false and CurrentMode == "Sheathed" then
2107
                Sit = true
2108
                Humanoid.WalkSpeed = 0
2109
                elseif k=='t' then
2110
                if attack==false and Sit == true and CurrentMode == "Sheathed" then
2111
                Sit = false
2112
                Humanoid.WalkSpeed = 16
2113
                end
2114
                end
2115
2116
        end
2117
end)
2118
2119
2120
local sine = 0
2121
local change = 1
2122
local val = 0
2123
local RHCF = CFrame.fromEulerAnglesXYZ(0, 1.6, 0)
2124
local LHCF = (CFrame.fromEulerAnglesXYZ(0, -1.6, 0))
2125
local cn = CFrame.new
2126
local NeckCF = cn(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
2127
2128
while true do
2129
swait()
2130
sine = sine + change
2131
local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude 
2132
local velderp=RootPart.Velocity.y
2133
hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
2134
if equipped==true or equipped==false then
2135
if attack==false then
2136
idle=idle+1
2137
else
2138
idle=0
2139
end
2140
if idle>=500 then
2141
if attack==false then
2142
end
2143
end
2144
if RootPart.Velocity.y > 1 and hitfloor==nil then 
2145
Anim="Jump"
2146
if attack==false and Sit == false and CurrentMode == "Unsheathed" then
2147
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
2148
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
2149
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(50),math.rad(0),math.rad(30)),.3)
2150
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-40),math.rad(5),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2151
LH.C0=clerp(LH.C0,cf(-1,-.5,-1)*angles(math.rad(-20),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2152
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(-10),math.rad(0)),.3)
2153
end
2154
if attack==false and Sit == false and CurrentMode == "Sheathed" then
2155
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
2156
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
2157
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(30)),.3)
2158
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(-30)),.3)
2159
LH.C0=clerp(LH.C0,cf(-1,-1,-.2)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
2160
RH.C0=clerp(RH.C0,cf(1,-1,-.2)*angles(math.rad(0),math.rad(90),math.rad(5))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
2161
HandleWeld.C0=clerp(HandleWeld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
2162
end
2163
elseif RootPart.Velocity.y < -1 and hitfloor==nil then 
2164
Anim="Fall"
2165
if attack==false and Sit == false and CurrentMode == "Unsheathed" then
2166
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
2167
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
2168
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(-5),math.rad(0),math.rad(20)),.3)
2169
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(-40),math.rad(5),math.rad(-10))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2170
LH.C0=clerp(LH.C0,cf(-1,-.5,-1)*angles(math.rad(-20),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2171
HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-0,.4)*angles(math.rad(85),math.rad(-10),math.rad(0)),.3)
2172
end
2173
if attack==false and Sit == false and CurrentMode == "Sheathed" then
2174
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
2175
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
2176
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(50)),.3)
2177
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(0),math.rad(-50)),.3)
2178
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
2179
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-75),math.rad(-10)),.3)
2180
HandleWeld.C0=clerp(HandleWeld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
2181
end
2182
elseif torvel<1 and hitfloor~=nil then
2183
Anim="Idle"
2184
if attack==false and Sit == false and CurrentMode == "Unsheathed" then
2185
change = 2
2186
				RootJoint.C0 = clerp(RootJoint.C0, RootCF * cn(0, 0, -.1 + .1 * math.cos(sine / 40)) * angles(math.rad(0), math.rad(0), math.rad(-30)), .3)
2187
				Torso.Neck.C0 = clerp(Torso.Neck.C0, NeckCF * angles(math.rad(5 - 2 * math.cos(sine / 40)), math.rad(5), math.rad(30)), .3)
2188
				RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-15), math.rad(0), math.rad(10 + 3 * math.cos(sine / 40))), .3)
2189
				LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(5), math.rad(0), math.rad(-8 - 2 * math.cos(sine / 40))), .3)
2190
				RH.C0 = clerp(RH.C0, cn(1, -.9 - .1 * math.cos(sine / 40), 0) * RHCF * angles(math.rad(-3.5 - 1 * math.cos(sine / 40)), math.rad(20), math.rad(0)), .3)
2191
				LH.C0 = clerp(LH.C0, cn(-1, -.9 - .1 * math.cos(sine / 40), 0) * LHCF * angles(math.rad(-3.5 - 1 * math.cos(sine / 40)), math.rad(20), math.rad(0)), .3)
2192
				HandleWeld.C0 = clerp(HandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(10), math.rad(0), math.rad(13)), .3)
2193
end
2194
if attack==false and Sit == false and CurrentMode == "Sheathed" then
2195
RootJoint.C0=clerp(RootJoint.C0,RootCF*angles(math.rad(0),math.rad(0),math.rad(-45)),.3)
2196
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(0),math.rad(0),math.rad(45)),.3)
2197
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-2),math.rad(-25),math.rad(15)),.3)
2198
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(0),math.rad(0),math.rad(-5)),.3)
2199
RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2200
LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(0)),.3)
2201
HandleWeld.C0=clerp(HandleWeld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
2202
end
2203
if attack==false and Sit == true and CurrentMode == "Sheathed" then
2204
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,-2)*angles(math.rad(-10),math.rad(0),math.rad(0)),.3)
2205
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(10),math.rad(0),math.rad(0)),.3)
2206
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(-10),math.rad(0),math.rad(5)),.3)
2207
LW.C0=clerp(LW.C0,cf(-1.3,0.5,0)*euler(math.rad(90),math.rad(0),math.rad(30)),.3)
2208
LH.C0=clerp(LH.C0,cf(-1,.7,-.5)*angles(math.rad(0),math.rad(-90),math.rad(-10))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
2209
RH.C0=clerp(RH.C0,cf(1,-.5,-.5)*angles(math.rad(0),math.rad(90),math.rad(70))*angles(math.rad(-3),math.rad(0),math.rad(0)),.3)
2210
HandleWeld.C0=clerp(HandleWeld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
2211
end
2212
elseif torvel>2 and hitfloor~=nil then
2213
Anim="Walk"
2214
if attack==false and Sit == false and CurrentMode == "Unsheathed" then
2215
change=2
2216
RootJoint.C0 = clerp(RootJoint.C0, RootCF * cn(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(2 * math.cos((sine) / 7))), 0.3)
2217
Torso.Neck.C0 = clerp(Torso.Neck.C0, NeckCF * angles(math.rad(5 + 3 * math.cos((sine) / 23)), math.rad(0), math.rad(-2 * math.cos((sine) / 7))), 0.3)
2218
RW.C0 = clerp(RW.C0, CFrame.new(1.4, 0.7, 0) * angles(math.rad(0), math.rad(110), math.rad(205)), 0.3)
2219
LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-30 * math.cos((sine) / 10)), math.rad(0), math.rad(-5)), 0.3)
2220
RH.C0 = clerp(RH.C0, cn(1, -1 - 0.3 * math.cos((sine) / 8) / 2, -0.03 + math.sin((sine) / 8) / 2) * RHCF * angles(math.rad(-2), math.rad(0), math.rad(-10) - math.sin((sine) / 8)), 0.3)
2221
LH.C0 = clerp(LH.C0, cn(-1, -1 + 0.3 * math.cos((sine) / 8) / 2, -0.03 - math.sin((sine) / 8) / 2) * LHCF * angles(math.rad(-2), math.rad(0), math.rad(10) - math.sin((sine) / 8)), 0.3)
2222
HandleWeld.C0 = clerp(HandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(23), math.rad(-20), math.rad(0)), 0.3)
2223
end
2224
if attack==false and Sit == false and CurrentMode == "Sheathed" then
2225
idleanim=-1
2226
RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*euler(0.4,0,0),.3)
2227
Torso.Neck.C0=clerp(Torso.Neck.C0,necko*euler(-0.2,0,0),.3)
2228
RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*euler(math.rad(0),math.rad(-35),math.rad(45)),.3)
2229
LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*euler(math.rad(0),math.rad(35),math.rad(-45)),.3)
2230
RH.C0=clerp(RH.C0,cf(1,-1,0)*euler(0.2,1.57,0),.3)
2231
LH.C0=clerp(LH.C0,cf(-1,-1,0)*euler(0.5,-1.57,0)*euler(0,0,0),.3)
2232
HandleWeld.C0=clerp(HandleWeld.C0,cf(3,3,0.5)*angles(math.rad(90),math.rad(150),math.rad(90)),.3)
2233
end
2234
end
2235
end
2236
if #Effects>0 then
2237
for e=1,#Effects do
2238
if Effects[e]~=nil then
2239
local Thing=Effects[e]
2240
if Thing~=nil then
2241
local Part=Thing[1]
2242
local Mode=Thing[2]
2243
local Delay=Thing[3]
2244
local IncX=Thing[4]
2245
local IncY=Thing[5]
2246
local IncZ=Thing[6]
2247
if Thing[1].Transparency<=1 then
2248
if Thing[2]=="Block1" then
2249
Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
2250
Mesh=Thing[1].Mesh
2251
Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
2252
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2253
elseif Thing[2]=="Cylinder" then
2254
Mesh=Thing[1].Mesh
2255
Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
2256
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2257
elseif Thing[2]=="Blood" then
2258
Mesh=Thing[7]
2259
Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
2260
Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
2261
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2262
elseif Thing[2]=="Elec" then
2263
Mesh=Thing[1].Mesh
2264
Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
2265
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2266
elseif Thing[2]=="Disappear" then
2267
Thing[1].Transparency=Thing[1].Transparency+Thing[3]
2268
end
2269
else
2270
Part.Parent=nil
2271
table.remove(Effects,e)
2272
end
2273
end
2274
end
2275
end
2276
end
2277
end
2278
end