View difference between Paste ID: v22AUpyd and SDeiksG9
SHOW: | | - or go back to the newest paste.
1
-- This script has been converted to FE by iPxter
2
 
3
4
if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
5
local Player,Mouse,mouse,UserInputService,ContextActionService = owner
6
do
7
    print("FE Compatibility code by Mokiros | Translated to FE by iPxter")
8-
local p = game.Players.LocalPlayer
8+
    script.Parent = Player.Character
9
 
10-
local mouse = p:GetMouse()
10+
    --RemoteEvent for communicatinglocalpl
11
    local Event = Instance.new("RemoteEvent")
12
    Event.Name = "UserInput_Event"
13
 
14
    --Fake event to make stuff like Mouse.KeyDown work
15
    local function fakeEvent()
16
        local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
17
        t.connect = t.Connect
18
        return t
19
    end
20
 
21
    --Creating fake input objects with fake variables
22
    local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
23-
local rs = game:GetService("RunService").RenderStepped
23+
    local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
24
    local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
25
        CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
26
    end}
27
    --Merged 2 functions into one by checking amount of arguments
28
    CAS.UnbindAction = CAS.BindAction
29
 
30
    --This function will trigger the events that have been :Connect()'ed
31
    local function te(self,ev,...)
32
        local t = m[ev]
33
        if t and t._fakeEvent and t.Function then
34
            t.Function(...)
35
        end
36
    end
37
    m.TrigEvent = te
38
    UIS.TrigEvent = te
39
 
40
    Event.OnServerEvent:Connect(function(plr,io)
41
        if plr~=Player then return end
42
        if io.isMouse then
43
            m.Target = io.Target
44
            m.Hit = io.Hit
45
        else
46
            local b = io.UserInputState == Enum.UserInputState.Begin
47
            if io.UserInputType == Enum.UserInputType.MouseButton1 then
48
                return m:TrigEvent(b and "Button1Down" or "Button1Up")
49
            end
50
            for _,t in pairs(CAS.Actions) do
51
                for _,k in pairs(t.Keys) do
52
                    if k==io.KeyCode then
53
                        t.Function(t.Name,io.UserInputState,io)
54
                    end
55
                end
56
            end
57
            m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
58
            UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
59
        end
60
    end)
61
    Event.Parent = NLS([==[
62
    local Player = game:GetService("Players").LocalPlayer
63
    local Event = script:WaitForChild("UserInput_Event")
64
 
65
    local UIS = game:GetService("UserInputService")
66
    local input = function(io,a)
67
        if a then return end
68
        --Since InputObject is a client-side instance, we create and pass table instead
69
        Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState})
70
    end
71
    UIS.InputBegan:Connect(input)
72
    UIS.InputEnded:Connect(input)
73
 
74
    local Mouse = Player:GetMouse()
75
    local h,t
76
    --Give the server mouse data 30 times every second, but only if the values changed
77
    --If player is not moving their mouse, client won't fire events
78
    while wait(1/500000000000000) do
79
        if h~=Mouse.Hit or t~=Mouse.Target then
80
            h,t=Mouse.Hit,Mouse.Target
81
            Event:FireServer({isMouse=true,Target=t,Hit=h})
82
        end
83
    end]==],Player.Character)
84
    Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS
85
end
86
--			[[Created by: TheDarkRevenant - Edited by N3xul.
87
88
--			         Script: Celestial Titan
89
90
--                      Last Updated: 15:42 2017-07-22
91
92
-------------------------------------------------------------------------------------
93
local p = owner
94
local char = p.Character
95
local larm = char["Left Arm"]
96
local rarm = char["Right Arm"]
97
local lleg = char["Left Leg"]
98
local rleg = char["Right Leg"]
99
local hed = char.Head
100
local torso = char.Torso
101
local hum = char.Humanoid
102
local cam = game.Workspace.CurrentCamera
103
local root = char.HumanoidRootPart
104
local deb = false
105
local shot = 0
106
local l = game:GetService("Lighting")
107
local rs = game:GetService("RunService").Heartbeat
108
local debris=game:service"Debris"
109
local stanceToggle = "Normal"
110
math.randomseed(os.time())
111
hum.WalkSpeed = 7
112
char.Health:Destroy()
113
hum.MaxHealth = 10000
114
wait(0.1)
115
hum.Health = 10000
116
----------------------------------------------------
117
ypcall(function()
118
char.Shirt:Destroy()
119
char.Pants:Destroy()
120
shirt = Instance.new("Shirt", char)
121
shirt.Name = "Shirt"
122
pants = Instance.new("Pants", char)
123
pants.Name = "Pants"
124
char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=131708604"
125
char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=131708657"
126
end)
127
----------------------------------------------------
128
Debounces = {
129
on = false;
130
ks = false;
131
CanAttack = true;
132
CanJoke = true;
133
NoIdl = false;
134
Slashing = false;
135
Slashed = false;
136
Grabbing = false;
137
Grabbed = false;
138
}
139
local Touche = {char.Name, }
140
----------------------------------------------------
141
function lerp(a, b, t) -- Linear interpolation
142
    return a + (b - a)*t
143
end
144
 
145
function slerp(a, b, t) --Spherical interpolation
146
    dot = a:Dot(b)
147
    if dot > 0.99999 or dot < -0.99999 then
148
        return t <= 0.5 and a or b
149
    else
150
        r = math.acos(dot)
151
        return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
152
    end
153
end
154
 
155
function matrixInterpolate(a, b, t)
156
    local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
157
    local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
158
    local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
159
    local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
160
    local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
161
    local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
162
    local t = v1:Dot(v2)
163
    if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
164
        return CFrame.new()
165
    end
166
    return CFrame.new(
167
    v0.x, v0.y, v0.z,
168
    v1.x, v1.y, v1.z,
169
    v2.x, v2.y, v2.z,
170
    v3.x, v3.y, v3.z)
171
end
172
----------------------------------------------------
173
function genWeld(a,b)
174
    local w = Instance.new("Weld",a)
175
    w.Part0 = a
176
    w.Part1 = b
177
    return w
178
end
179
function weld(a, b)
180
    local weld = Instance.new("Weld")
181
    weld.Name = "W"
182
    weld.Part0 = a
183
    weld.Part1 = b
184
    weld.C0 = a.CFrame:inverse() * b.CFrame
185
    weld.Parent = a
186
    return weld;
187
end
188
----------------------------------------------------
189
function Lerp(c1,c2,al)
190
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
191
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
192
for i,v in pairs(com1) do 
193
com1[i] = v+(com2[i]-v)*al
194
end
195
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
196
end
197
----------------------------------------------------
198
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
199
local wld = Instance.new("Weld", wp1)
200
wld.Part0 = wp0
201
wld.Part1 = wp1
202
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
203
end
204
----------------------------------------------------
205
function Tween(a,b,c)
206
return a+(b-a)*c
207
end
208
----------------------------------------------------
209
function nwPrt(prnt,siz,cf,col)
210
local prt=Instance.new("Part")
211
prt.Parent=prnt
212
prt.FormFactor=3
213
prt.Name="Part"
214
prt.Size=siz
215
prt.CanCollide=false
216
prt.Anchored=true
217
prt.Locked=true
218
prt.TopSurface=10
219
prt.BottomSurface=10
220
prt.FrontSurface=10
221
prt.BackSurface=10
222
prt.LeftSurface=10
223
prt.RightSurface=10
224
prt:BreakJoints()
225
prt.CFrame=cf or CFrame.new(30,10,30)
226
prt.Material="Neon"
227
prt.BrickColor=BrickColor.new(col)
228
m=Instance.new("SpecialMesh",prt)
229
m.MeshType=6
230
return prt
231
end
232
----------------------------------------------------
233
function nwSnd(prnt,pch,vol,id)
234
        local s=Instance.new("Sound",prnt)
235
        s.Pitch=pch
236
        s.Volume=vol
237
        s.SoundId="rbxassetid://"..id
238
        s.PlayOnRemove=true
239
        return s
240
end
241
----------------------------------------------------
242
function newRay(start,face,range,wat)
243
        local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
244
        hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
245
        return rey,hit,pos
246
end
247
----------------------------------------------------
248
for i,v in pairs(char:children()) do
249
    if v:IsA("Hat") then
250
        v:Destroy()
251
    end
252
end
253
for i,v in pairs(hed:children()) do
254
    if v:IsA("Sound") then
255
        v:Destroy()
256
    end
257
end
258
----------------------------------------------------
259
function HasntTouched(plrname)
260
local ret = true
261
for _, v in pairs(Touche) do
262
if v == plrname then
263
ret = false
264
end
265
end
266
return ret
267
end
268
----------------------------------------------------
269
larm.Size = larm.Size * 2
270
rarm.Size = rarm.Size * 2
271
lleg.Size = lleg.Size * 2
272
rleg.Size = rleg.Size * 2
273
torso.Size = torso.Size * 2
274
hed.Size = hed.Size * 2
275
root.Size = root.Size * 2
276
----------------------------------------------------
277
newWeld(torso, larm, -1.5, 0.5, 0)
278
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
279
newWeld(torso, rarm, 1.5, 0.5, 0)
280
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
281
newWeld(torso, hed, 0, 1.5, 0)
282
newWeld(torso, lleg, -0.5, -1, 0)
283
lleg.Weld.C1 = CFrame.new(0, 1, 0)
284
newWeld(torso, rleg, 0.5, -1, 0)
285
rleg.Weld.C1 = CFrame.new(0, 1, 0)
286
newWeld(root, torso, 0, -1, 0)
287
torso.Weld.C1 = CFrame.new(0, -1, 0)
288
----------------------------------------------------
289
hed.face.Texture = "rbxassetid://629947734"
290
z=Instance.new('Decal',hed)
291
z.Face = 'Front'
292
z.Texture='rbxassetid://99174105'
293
z1=Instance.new('Decal',hed)
294
z1.Face = 'Right'
295
hed.BrickColor = BrickColor.new("Really black")
296
lite = Instance.new("PointLight", torso)
297
lite.Brightness = 14
298
lite.Range = 10
299
lite.Color = Color3.new(170, 0, 255)
300
--[[local hed2 = hed:Clone()
301
hed2.CanCollide = false
302
hed2.Parent = char
303
hed2:ClearAllChildren()
304
hed2.Transparency = 1
305
hed2.Name = "DARP"
306
local w = Instance.new("Weld",hed2)
307
w.Part0 = hed
308
w.Part1 = hed2
309
w.C0 = CFrame.new(0,0,-0.175)
310
z=Instance.new("SurfaceGui",hed2)
311
z.Enabled = true
312
z.Face = "Front"
313
z.Adornee = hed2
314
z.CanvasSize = Vector2.new(100,100)
315
local face = Instance.new("ImageLabel",z)
316
face.Size = UDim2.new(1,-30,1,0)
317
face.Position = UDim2.new(0,15,0,0)
318
face.BackgroundTransparency = 1
319
face.Image='rbxassetid://46282671']]--
320
----------------------------------------------------
321
z = Instance.new("Sound", char)
322
z.SoundId = "rbxassetid://695312907"--242463565
323
z.Looped = true
324
z.Pitch = .6
325
z.Volume = 1
326
wait(.01)
327
z:Play()
328
----------------------------------------------------
329
local l = game.Lighting
330
local sky = Instance.new("Sky",l)
331
sky.CelestialBodiesShown = true
332
sky.SkyboxBk = "http://www.roblox.com/asset/?id=159454299"
333
sky.SkyboxDn = "http://www.roblox.com/asset/?id=159454296"
334
sky.SkyboxFt = "http://www.roblox.com/asset/?id=159454293"
335
sky.SkyboxLf = "http://www.roblox.com/asset/?id=159454286"
336
sky.SkyboxRt = "http://www.roblox.com/asset/?id=159454300"
337
sky.SkyboxUp = "http://www.roblox.com/asset/?id=159454288"
338
sky.StarCount = 100
339
sky.Name = "N3xul Sky"
340
----------------------------------------------------
341
local m = Instance.new("Model")
342
m.Name = "Absolution"
343
p1 = Instance.new("Part", m)
344
p1.BrickColor = BrickColor.new("Royal purple")
345
p1.Material = "Neon"
346
p1.FormFactor = Enum.FormFactor.Custom
347
p1.Size = Vector3.new(1, 0.600000024, 1.5)
348
p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
349
p1.CanCollide = false
350
p1.Locked = true
351
p1.Elasticity = 0
352
p1.BottomSurface = Enum.SurfaceType.Smooth
353
p1.TopSurface = Enum.SurfaceType.Smooth
354
b1 = Instance.new("SpecialMesh", p1)
355
b1.MeshType = Enum.MeshType.Wedge
356
b1.Name = "Mesh"
357
b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
358
p2 = Instance.new("Part", m)
359
p2.BrickColor = BrickColor.new("Really black")
360
p2.FormFactor = Enum.FormFactor.Custom
361
p2.Size = Vector3.new(1, 2.9000001, 1)
362
p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
363
p2.CanCollide = false
364
p2.Locked = true
365
p2.Elasticity = 0
366
p2.BottomSurface = Enum.SurfaceType.Smooth
367
p2.TopSurface = Enum.SurfaceType.Smooth
368
b2 = Instance.new("BlockMesh", p2)
369
b2.Name = "Mesh"
370
b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
371
p3 = Instance.new("Part", m)
372
p3.BrickColor = BrickColor.new("Royal purple")
373
p3.Material = "Neon"
374
p3.FormFactor = Enum.FormFactor.Custom
375
p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
376
p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
377
p3.CanCollide = false
378
p3.Locked = true
379
p3.Elasticity = 0
380
p3.BottomSurface = Enum.SurfaceType.Smooth
381
p3.TopSurface = Enum.SurfaceType.Smooth
382
b3 = Instance.new("SpecialMesh", p3)
383
b3.MeshType = Enum.MeshType.Wedge
384
b3.Name = "Mesh"
385
b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
386
p4 = Instance.new("Part", m)
387
p4.BrickColor = BrickColor.new("Royal purple")
388
p4.Material = "Neon"
389
p4.FormFactor = Enum.FormFactor.Custom
390
p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
391
p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
392
p4.CanCollide = false
393
p4.Locked = true
394
p4.Elasticity = 0
395
p4.BottomSurface = Enum.SurfaceType.Smooth
396
p4.TopSurface = Enum.SurfaceType.Smooth
397
b4 = Instance.new("SpecialMesh", p4)
398
b4.MeshType = Enum.MeshType.Wedge
399
b4.Name = "Mesh"
400
b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
401
p5 = Instance.new("Part", m)
402
p5.BrickColor = BrickColor.new("Royal purple")
403
p5.Material = "Neon"
404
p5.FormFactor = Enum.FormFactor.Custom
405
p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
406
p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
407
p5.CanCollide = false
408
p5.Locked = true
409
p5.Elasticity = 0
410
p5.BottomSurface = Enum.SurfaceType.Smooth
411
p5.TopSurface = Enum.SurfaceType.Smooth
412
b5 = Instance.new("SpecialMesh", p5)
413
b5.MeshType = Enum.MeshType.Wedge
414
b5.Name = "Mesh"
415
b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
416
p6 = Instance.new("Part", m)
417
p6.Name = "Handle"
418
p6.BrickColor = BrickColor.new("Really black")
419
p6.FormFactor = Enum.FormFactor.Custom
420
p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
421
p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
422
p6.CanCollide = false
423
p6.Locked = true
424
p6.Elasticity = 0
425
p6.BottomSurface = Enum.SurfaceType.Smooth
426
p6.TopSurface = Enum.SurfaceType.Smooth
427
b6 = Instance.new("BlockMesh", p6)
428
b6.Name = "Mesh"
429
b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
430
p7 = Instance.new("Part", m)
431
p7.BrickColor = BrickColor.new("Royal purple")
432
p7.Material = "Neon"
433
p7.FormFactor = Enum.FormFactor.Custom
434
p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
435
p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
436
p7.CanCollide = false
437
p7.Locked = true
438
p7.Elasticity = 0
439
p7.BottomSurface = Enum.SurfaceType.Smooth
440
p7.TopSurface = Enum.SurfaceType.Smooth
441
b7 = Instance.new("SpecialMesh", p7)
442
b7.MeshType = Enum.MeshType.Wedge
443
b7.Name = "Mesh"
444
b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
445
p8 = Instance.new("Part", m)
446
p8.BrickColor = BrickColor.new("Royal purple")
447
p8.Material = "Neon"
448
p8.FormFactor = Enum.FormFactor.Custom
449
p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
450
p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
451
p8.CanCollide = false
452
p8.Locked = true
453
p8.Elasticity = 0
454
p8.BottomSurface = Enum.SurfaceType.Smooth
455
p8.TopSurface = Enum.SurfaceType.Smooth
456
b8 = Instance.new("SpecialMesh", p8)
457
b8.MeshType = Enum.MeshType.Wedge
458
b8.Name = "Mesh"
459
b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
460
p9 = Instance.new("Part", m)
461
p9.BrickColor = BrickColor.new("Really black")
462
p9.FormFactor = Enum.FormFactor.Custom
463
p9.Size = Vector3.new(1, 1.07999957, 1)
464
p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
465
p9.CanCollide = false
466
p9.Locked = true
467
p9.Elasticity = 0
468
p9.BottomSurface = Enum.SurfaceType.Smooth
469
p9.TopSurface = Enum.SurfaceType.Smooth
470
b9 = Instance.new("BlockMesh", p9)
471
b9.Name = "Mesh"
472
b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
473
p10 = Instance.new("Part", m)
474
p10.BrickColor = BrickColor.new("Really black")
475
p10.FormFactor = Enum.FormFactor.Custom
476
p10.Size = Vector3.new(1, 1.41999948, 1)
477
p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
478
p10.CanCollide = false
479
p10.Locked = true
480
p10.Elasticity = 0
481
p10.BottomSurface = Enum.SurfaceType.Smooth
482
p10.TopSurface = Enum.SurfaceType.Smooth
483
b10 = Instance.new("BlockMesh", p10)
484
b10.Name = "Mesh"
485
b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
486
p11 = Instance.new("Part", m)
487
p11.BrickColor = BrickColor.new("Really black")
488
p11.FormFactor = Enum.FormFactor.Custom
489
p11.Size = Vector3.new(1, 1.50999951, 1)
490
p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
491
p11.CanCollide = false
492
p11.Locked = true
493
p11.Elasticity = 0
494
p11.BottomSurface = Enum.SurfaceType.Smooth
495
p11.TopSurface = Enum.SurfaceType.Smooth
496
b11 = Instance.new("BlockMesh", p11)
497
b11.Name = "Mesh"
498
b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
499
p12 = Instance.new("Part", m)
500
p12.Name = "BladeCenter"
501
p12.BrickColor = BrickColor.new("Royal purple")
502
p12.Material = Enum.Material.Neon
503
p12.FormFactor = Enum.FormFactor.Symmetric
504
p12.Size = Vector3.new(1, 2, 2)
505
p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
506
p12.CanCollide = false
507
p12.Locked = true
508
p12.BottomSurface = Enum.SurfaceType.Smooth
509
p12.TopSurface = Enum.SurfaceType.Smooth
510
b12 = Instance.new("SpecialMesh", p12)
511
b12.MeshType = Enum.MeshType.Brick
512
b12.Name = "Mesh"
513
b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
514
p13 = Instance.new("Part", m)
515
p13.BrickColor = BrickColor.new("Really black")
516
p13.FormFactor = Enum.FormFactor.Custom
517
p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
518
p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
519
p13.CanCollide = false
520
p13.Locked = true
521
p13.Elasticity = 0
522
p13.BottomSurface = Enum.SurfaceType.Smooth
523
p13.TopSurface = Enum.SurfaceType.Smooth
524
b13 = Instance.new("BlockMesh", p13)
525
b13.Name = "Mesh"
526
b13.Scale = Vector3.new(1, 1, 0.400000006)
527
p14 = Instance.new("Part", m)
528
p14.BrickColor = BrickColor.new("Really black")
529
p14.FormFactor = Enum.FormFactor.Custom
530
p14.Size = Vector3.new(2.5, 2.17999935, 1)
531
p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
532
p14.CanCollide = false
533
p14.Locked = true
534
p14.Elasticity = 0
535
p14.BottomSurface = Enum.SurfaceType.Smooth
536
p14.TopSurface = Enum.SurfaceType.Smooth
537
b14 = Instance.new("BlockMesh", p14)
538
b14.Name = "Mesh"
539
b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
540
p15 = Instance.new("Part", m)
541
p15.BrickColor = BrickColor.new("Really black")
542
p15.FormFactor = Enum.FormFactor.Custom
543
p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
544
p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
545
p15.CanCollide = false
546
p15.Locked = true
547
p15.Elasticity = 0
548
p15.BottomSurface = Enum.SurfaceType.Smooth
549
p15.TopSurface = Enum.SurfaceType.Smooth
550
b15 = Instance.new("BlockMesh", p15)
551
b15.Name = "Mesh"
552
b15.Scale = Vector3.new(1, 1, 0.400000006)
553
p16 = Instance.new("Part", m)
554
p16.BrickColor = BrickColor.new("Really black")
555
p16.FormFactor = Enum.FormFactor.Custom
556
p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
557
p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
558
p16.CanCollide = false
559
p16.Locked = true
560
p16.Elasticity = 0
561
p16.BottomSurface = Enum.SurfaceType.Smooth
562
p16.TopSurface = Enum.SurfaceType.Smooth
563
b16 = Instance.new("BlockMesh", p16)
564
b16.Name = "Mesh"
565
b16.Scale = Vector3.new(1, 1, 0.400000006)
566
p17 = Instance.new("Part", m)
567
p17.BrickColor = BrickColor.new("Really black")
568
p17.FormFactor = Enum.FormFactor.Custom
569
p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
570
p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
571
p17.CanCollide = false
572
p17.Locked = true
573
p17.Elasticity = 0
574
p17.BottomSurface = Enum.SurfaceType.Smooth
575
p17.TopSurface = Enum.SurfaceType.Smooth
576
b17 = Instance.new("BlockMesh", p17)
577
b17.Name = "Mesh"
578
b17.Scale = Vector3.new(1, 1, 0.400000006)
579
p18 = Instance.new("WedgePart", m)
580
p18.BrickColor = BrickColor.new("Royal purple")
581
p18.Name = "BladePart1"
582
p18.Material = Enum.Material.Neon
583
p18.Name = "Wedge"
584
p18.FormFactor = Enum.FormFactor.Symmetric
585
p18.Size = Vector3.new(1, 4, 2)
586
p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
587
p18.CanCollide = false
588
p18.Locked = true
589
p18.BottomSurface = Enum.SurfaceType.Smooth
590
p18.TopSurface = Enum.SurfaceType.Smooth
591
b18 = Instance.new("SpecialMesh", p18)
592
b18.MeshType = Enum.MeshType.Wedge
593
b18.Name = "Mesh"
594
b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
595
p19 = Instance.new("WedgePart", m)
596
p19.BrickColor = BrickColor.new("Royal purple")
597
p19.Name = "BladePart2"
598
p19.Material = Enum.Material.Neon
599
p19.Name = "Wedge"
600
p19.FormFactor = Enum.FormFactor.Symmetric
601
p19.Size = Vector3.new(1, 4, 2)
602
p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
603
p19.CanCollide = false
604
p19.Locked = true
605
p19.BottomSurface = Enum.SurfaceType.Smooth
606
p19.TopSurface = Enum.SurfaceType.Smooth
607
b19 = Instance.new("SpecialMesh", p19)
608
b19.MeshType = Enum.MeshType.Wedge
609
b19.Name = "Mesh"
610
b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
611
p20 = Instance.new("Part", m)
612
p20.BrickColor = BrickColor.new("Really black")
613
p20.FormFactor = Enum.FormFactor.Custom
614
p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
615
p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
616
p20.CanCollide = false
617
p20.Locked = true
618
p20.Elasticity = 0
619
p20.BottomSurface = Enum.SurfaceType.Smooth
620
p20.TopSurface = Enum.SurfaceType.Smooth
621
b20 = Instance.new("BlockMesh", p20)
622
b20.Name = "Mesh"
623
b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
624
p21 = Instance.new("Part", m)
625
p21.BrickColor = BrickColor.new("Royal purple")
626
p21.Material = "Neon"
627
p21.FormFactor = Enum.FormFactor.Custom
628
p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
629
p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
630
p21.CanCollide = false
631
p21.Locked = true
632
p21.Elasticity = 0
633
p21.BottomSurface = Enum.SurfaceType.Smooth
634
p21.TopSurface = Enum.SurfaceType.Smooth
635
b21 = Instance.new("SpecialMesh", p21)
636
b21.MeshType = Enum.MeshType.Wedge
637
b21.Name = "Mesh"
638
b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
639
w1 = Instance.new("Weld", p1)
640
w1.Name = "Part_Weld"
641
w1.Part0 = p1
642
w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
643
w1.Part1 = p2
644
w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
645
w2 = Instance.new("Weld", p2)
646
w2.Name = "Part_Weld"
647
w2.Part0 = p2
648
w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
649
w2.Part1 = p3
650
w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
651
w3 = Instance.new("Weld", p3)
652
w3.Name = "Part_Weld"
653
w3.Part0 = p3
654
w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
655
w3.Part1 = p4
656
w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
657
w4 = Instance.new("Weld", p4)
658
w4.Name = "Part_Weld"
659
w4.Part0 = p4
660
w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
661
w4.Part1 = p5
662
w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
663
w5 = Instance.new("Weld", p5)
664
w5.Name = "Part_Weld"
665
w5.Part0 = p5
666
w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
667
w5.Part1 = p6
668
w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
669
w6 = Instance.new("Weld", p6)
670
w6.Name = "Part_Weld"
671
w6.Part0 = p6
672
w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
673
w6.Part1 = p7
674
w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
675
w7 = Instance.new("Weld", p7)
676
w7.Name = "Part_Weld"
677
w7.Part0 = p7
678
w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
679
w7.Part1 = p8
680
w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
681
w8 = Instance.new("Weld", p8)
682
w8.Name = "Part_Weld"
683
w8.Part0 = p8
684
w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
685
w8.Part1 = p9
686
w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
687
w9 = Instance.new("Weld", p9)
688
w9.Name = "Part_Weld"
689
w9.Part0 = p9
690
w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
691
w9.Part1 = p10
692
w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
693
w10 = Instance.new("Weld", p10)
694
w10.Name = "Part_Weld"
695
w10.Part0 = p10
696
w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
697
w10.Part1 = p11
698
w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
699
w11 = Instance.new("Weld", p11)
700
w11.Name = "Part_Weld"
701
w11.Part0 = p11
702
w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
703
w11.Part1 = p12
704
w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
705
w12 = Instance.new("Weld", p12)
706
w12.Name = "Part_Weld"
707
w12.Part0 = p12
708
w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
709
w12.Part1 = p13
710
w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
711
w13 = Instance.new("Weld", p13)
712
w13.Name = "Part_Weld"
713
w13.Part0 = p13
714
w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
715
w13.Part1 = p14
716
w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
717
w14 = Instance.new("Weld", p14)
718
w14.Name = "Part_Weld"
719
w14.Part0 = p14
720
w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
721
w14.Part1 = p15
722
w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
723
w15 = Instance.new("Weld", p15)
724
w15.Name = "Part_Weld"
725
w15.Part0 = p15
726
w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
727
w15.Part1 = p16
728
w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
729
w16 = Instance.new("Weld", p16)
730
w16.Name = "Part_Weld"
731
w16.Part0 = p16
732
w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
733
w16.Part1 = p17
734
w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
735
w17 = Instance.new("Weld", p17)
736
w17.Name = "Wedge_Weld"
737
w17.Part0 = p17
738
w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
739
w17.Part1 = p18
740
w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
741
w18 = Instance.new("Weld", p18)
742
w18.Name = "Wedge_Weld"
743
w18.Part0 = p18
744
w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
745
w18.Part1 = p19
746
w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
747
w19 = Instance.new("Weld", p19)
748
w19.Name = "Part_Weld"
749
w19.Part0 = p19
750
w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
751
w19.Part1 = p20
752
w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
753
w20 = Instance.new("Weld", p20)
754
w20.Name = "Part_Weld"
755
w20.Part0 = p20
756
w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
757
w20.Part1 = p21
758
w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
759
m.Parent = char
760
m:MakeJoints()
761
----------------------------------------------------
762
local cor = Instance.new("Part", char.Absolution)
763
cor.Name = "Thingy"
764
cor.Locked = true
765
cor.BottomSurface = 0
766
cor.CanCollide = false
767
cor.Size = Vector3.new(1, 13, 1)
768
cor.Transparency = 1
769
cor.TopSurface = 0
770
corw = Instance.new("Weld", cor)
771
corw.Part0 = rarm
772
corw.Part1 = cor
773
corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
774
corw.C1 = CFrame.new(0, 0, 0)
775
weld1 = Instance.new("Weld", char.Absolution)
776
weld1.Part0 = cor
777
weld1.Part1 = p6
778
weld1.C0 = CFrame.new(0, 0, 0)
779
----------------------------------------------------
780
hitb = Instance.new("Part", char.Absolution)
781
hitb.Name = "Thingy2"
782
hitb.Locked = true
783
hitb.BottomSurface = 0
784
hitb.CanCollide = false
785
hitb.Size = Vector3.new(0, 8, 6)
786
hitb.Transparency = 1
787
hitb.TopSurface = 0
788
weld2 = Instance.new("Weld", char.Absolution)
789
weld2.Part0 = hitb
790
weld2.Part1 = p12
791
weld2.C0 = CFrame.new(0, .6, 1)
792
----------------------------------------------------
793
local m = Instance.new("Model")
794
m.Name = "Claw"
795
p1 = Instance.new("Part", m)
796
p1.BrickColor = BrickColor.new("Really black")
797
p1.FormFactor = Enum.FormFactor.Custom
798
p1.Size = Vector3.new(1.5, 0.5, 0.5)
799
p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
800
p1.CanCollide = false
801
p1.Locked = true
802
p1.BottomSurface = Enum.SurfaceType.Smooth
803
p1.TopSurface = Enum.SurfaceType.Smooth
804
b1 = Instance.new("BlockMesh", p1)
805
b1.Name = "Mesh"
806
p2 = Instance.new("WedgePart", m)
807
p2.BrickColor = BrickColor.new("Really black")
808
p2.Name = "Wedge"
809
p2.FormFactor = Enum.FormFactor.Custom
810
p2.Size = Vector3.new(3, 1, 0.5)
811
p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
812
p2.CanCollide = false
813
p2.Locked = true
814
p2.BottomSurface = Enum.SurfaceType.Smooth
815
p2.TopSurface = Enum.SurfaceType.Smooth
816
p3 = Instance.new("Part", m)
817
p3.BrickColor = BrickColor.new("Really black")
818
p3.FormFactor = Enum.FormFactor.Custom
819
p3.Size = Vector3.new(1.5, 0.5, 0.5)
820
p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
821
p3.CanCollide = false
822
p3.Locked = true
823
p3.BottomSurface = Enum.SurfaceType.Smooth
824
p3.TopSurface = Enum.SurfaceType.Smooth
825
b2 = Instance.new("BlockMesh", p3)
826
b2.Name = "Mesh"
827
p4 = Instance.new("WedgePart", m)
828
p4.BrickColor = BrickColor.new("Really black")
829
p4.Name = "Wedge"
830
p4.FormFactor = Enum.FormFactor.Custom
831
p4.Size = Vector3.new(3, 1, 0.5)
832
p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
833
p4.CanCollide = false
834
p4.Locked = true
835
p4.BottomSurface = Enum.SurfaceType.Smooth
836
p4.TopSurface = Enum.SurfaceType.Smooth
837
p5 = Instance.new("Part", m)
838
p5.BrickColor = BrickColor.new("Really black")
839
p5.FormFactor = Enum.FormFactor.Custom
840
p5.Size = Vector3.new(1.5, 0.5, 0.5)
841
p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
842
p5.CanCollide = false
843
p5.Locked = true
844
p5.BottomSurface = Enum.SurfaceType.Smooth
845
p5.TopSurface = Enum.SurfaceType.Smooth
846
b3 = Instance.new("BlockMesh", p5)
847
b3.Name = "Mesh"
848
p6 = Instance.new("Part", m)
849
p6.BrickColor = BrickColor.new("Really black")
850
p6.FormFactor = Enum.FormFactor.Custom
851
p6.Size = Vector3.new(1.5, 0.5, 0.5)
852
p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
853
p6.CanCollide = false
854
p6.Locked = true
855
p6.BottomSurface = Enum.SurfaceType.Smooth
856
p6.TopSurface = Enum.SurfaceType.Smooth
857
b4 = Instance.new("BlockMesh", p6)
858
b4.Name = "Mesh"
859
p7 = Instance.new("Part", m)
860
p7.BrickColor = BrickColor.new("Really black")
861
p7.FormFactor = Enum.FormFactor.Custom
862
p7.Size = Vector3.new(3, 1, 1.20000005)
863
p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
864
p7.CanCollide = false
865
p7.Locked = true
866
p7.BottomSurface = Enum.SurfaceType.Smooth
867
p7.TopSurface = Enum.SurfaceType.Smooth
868
b5 = Instance.new("BlockMesh", p7)
869
b5.Name = "Mesh"
870
p8 = Instance.new("Part", m)
871
p8.BrickColor = BrickColor.new("Royal purple")
872
p8.Material = "Neon"
873
p8.FormFactor = Enum.FormFactor.Symmetric
874
p8.Size = Vector3.new(1, 1, 1)
875
p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
876
p8.CanCollide = false
877
p8.Locked = true
878
b6 = Instance.new("SpecialMesh", p8)
879
b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
880
b6.TextureId = ""
881
b6.MeshType = Enum.MeshType.FileMesh
882
b6.Name = "Mesh"
883
b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
884
p9 = Instance.new("Part", m)
885
p9.BrickColor = BrickColor.new("Really black")
886
p9.FormFactor = Enum.FormFactor.Custom
887
p9.Size = Vector3.new(1.5, 0.5, 0.5)
888
p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
889
p9.CanCollide = false
890
p9.Locked = true
891
p9.BottomSurface = Enum.SurfaceType.Smooth
892
p9.TopSurface = Enum.SurfaceType.Smooth
893
b7 = Instance.new("BlockMesh", p9)
894
b7.Name = "Mesh"
895
p10 = Instance.new("Part", m)
896
p10.BrickColor = BrickColor.new("Royal purple")
897
p10.Material = "Neon"
898
p10.FormFactor = Enum.FormFactor.Symmetric
899
p10.Size = Vector3.new(1, 1, 1)
900
p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
901
p10.CanCollide = false
902
p10.Locked = true
903
b8 = Instance.new("SpecialMesh", p10)
904
b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
905
b8.TextureId = ""
906
b8.MeshType = Enum.MeshType.FileMesh
907
b8.Name = "Mesh"
908
b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
909
p11 = Instance.new("Part", m)
910
p11.BrickColor = BrickColor.new("Really black")
911
p11.FormFactor = Enum.FormFactor.Custom
912
p11.Size = Vector3.new(1.5, 0.5, 0.5)
913
p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
914
p11.CanCollide = false
915
p11.Locked = true
916
p11.BottomSurface = Enum.SurfaceType.Smooth
917
p11.TopSurface = Enum.SurfaceType.Smooth
918
b9 = Instance.new("BlockMesh", p11)
919
b9.Name = "Mesh"
920
p12 = Instance.new("Part", m)
921
p12.BrickColor = BrickColor.new("Really black")
922
p12.FormFactor = Enum.FormFactor.Custom
923
p12.Size = Vector3.new(1.5, 0.5, 0.5)
924
p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
925
p12.CanCollide = false
926
p12.Locked = true
927
p12.BottomSurface = Enum.SurfaceType.Smooth
928
p12.TopSurface = Enum.SurfaceType.Smooth
929
b10 = Instance.new("BlockMesh", p12)
930
b10.Name = "Mesh"
931
p13 = Instance.new("Part", m)
932
p13.BrickColor = BrickColor.new("Really black")
933
p13.FormFactor = Enum.FormFactor.Custom
934
p13.Size = Vector3.new(1.5, 0.5, 0.5)
935
p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
936
p13.CanCollide = false
937
p13.Locked = true
938
p13.BottomSurface = Enum.SurfaceType.Smooth
939
p13.TopSurface = Enum.SurfaceType.Smooth
940
b11 = Instance.new("BlockMesh", p13)
941
b11.Name = "Mesh"
942
p14 = Instance.new("Part", m)
943
p14.BrickColor = BrickColor.new("Royal purple")
944
p14.Material = "Neon"
945
p14.FormFactor = Enum.FormFactor.Symmetric
946
p14.Size = Vector3.new(1, 1, 1)
947
p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
948
p14.CanCollide = false
949
p14.Locked = true
950
b12 = Instance.new("SpecialMesh", p14)
951
b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
952
b12.TextureId = ""
953
b12.MeshType = Enum.MeshType.FileMesh
954
b12.Name = "Mesh"
955
b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
956
p15 = Instance.new("Part", m)
957
p15.BrickColor = BrickColor.new("Royal purple")
958
p15.Transparency = 1
959
p15.Name = "ArmPart"
960
p15.FormFactor = Enum.FormFactor.Custom
961
p15.Size = Vector3.new(2, 1, 1)
962
p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
963
p15.CanCollide = false
964
p15.Locked = true
965
p15.BottomSurface = Enum.SurfaceType.Smooth
966
p15.TopSurface = Enum.SurfaceType.Smooth
967
b13 = Instance.new("BlockMesh", p15)
968
b13.Name = "Mesh"
969
p16 = Instance.new("Part", m)
970
p16.BrickColor = BrickColor.new("Really black")
971
p16.FormFactor = Enum.FormFactor.Custom
972
p16.Size = Vector3.new(3, 1, 2.4000001)
973
p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
974
p16.CanCollide = false
975
p16.Locked = true
976
p16.BottomSurface = Enum.SurfaceType.Smooth
977
p16.TopSurface = Enum.SurfaceType.Smooth
978
b14 = Instance.new("BlockMesh", p16)
979
b14.Name = "Mesh"
980
p17 = Instance.new("Part", m)
981
p17.BrickColor = BrickColor.new("Really black")
982
p17.FormFactor = Enum.FormFactor.Custom
983
p17.Size = Vector3.new(1.5, 0.5, 0.5)
984
p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
985
p17.CanCollide = false
986
p17.Locked = true
987
p17.BottomSurface = Enum.SurfaceType.Smooth
988
p17.TopSurface = Enum.SurfaceType.Smooth
989
b15 = Instance.new("BlockMesh", p17)
990
b15.Name = "Mesh"
991
p18 = Instance.new("Part", m)
992
p18.BrickColor = BrickColor.new("Royal purple")
993
p18.Material = "Neon"
994
p18.FormFactor = Enum.FormFactor.Symmetric
995
p18.Size = Vector3.new(1, 1, 1)
996
p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
997
p18.CanCollide = false
998
p18.Locked = true
999
b16 = Instance.new("SpecialMesh", p18)
1000
b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
1001
b16.TextureId = ""
1002
b16.MeshType = Enum.MeshType.FileMesh
1003
b16.Name = "Mesh"
1004
b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
1005
p19 = Instance.new("Part", m)
1006
p19.BrickColor = BrickColor.new("Royal purple")
1007
p19.Material = "Neon"
1008
p19.FormFactor = Enum.FormFactor.Symmetric
1009
p19.Size = Vector3.new(1, 1, 1)
1010
p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
1011
p19.CanCollide = false
1012
p19.Locked = true
1013
b17 = Instance.new("SpecialMesh", p19)
1014
b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
1015
b17.TextureId = ""
1016
b17.MeshType = Enum.MeshType.FileMesh
1017
b17.Name = "Mesh"
1018
b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
1019
p20 = Instance.new("Part", m)
1020
p20.BrickColor = BrickColor.new("Really black")
1021
p20.FormFactor = Enum.FormFactor.Custom
1022
p20.Size = Vector3.new(3, 1, 2.4000001)
1023
p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
1024
p20.CanCollide = false
1025
p20.Locked = true
1026
p20.BottomSurface = Enum.SurfaceType.Smooth
1027
p20.TopSurface = Enum.SurfaceType.Smooth
1028
b18 = Instance.new("BlockMesh", p20)
1029
b18.Name = "Mesh"
1030
p21 = Instance.new("Part", m)
1031
p21.BrickColor = BrickColor.new("Really black")
1032
p21.FormFactor = Enum.FormFactor.Custom
1033
p21.Size = Vector3.new(3, 1, 1.19999993)
1034
p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
1035
p21.CanCollide = false
1036
p21.Locked = true
1037
p21.BottomSurface = Enum.SurfaceType.Smooth
1038
p21.TopSurface = Enum.SurfaceType.Smooth
1039
b19 = Instance.new("BlockMesh", p21)
1040
b19.Name = "Mesh"
1041
p22 = Instance.new("WedgePart", m)
1042
p22.BrickColor = BrickColor.new("Really black")
1043
p22.Name = "Wedge"
1044
p22.FormFactor = Enum.FormFactor.Custom
1045
p22.Size = Vector3.new(3, 1, 0.5)
1046
p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
1047
p22.CanCollide = false
1048
p22.Locked = true
1049
p22.BottomSurface = Enum.SurfaceType.Smooth
1050
p22.TopSurface = Enum.SurfaceType.Smooth
1051
p23 = Instance.new("Part", m)
1052
p23.BrickColor = BrickColor.new("Really black")
1053
p23.FormFactor = Enum.FormFactor.Custom
1054
p23.Size = Vector3.new(1.5, 0.5, 0.5)
1055
p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
1056
p23.CanCollide = false
1057
p23.Locked = true
1058
p23.BottomSurface = Enum.SurfaceType.Smooth
1059
p23.TopSurface = Enum.SurfaceType.Smooth
1060
b20 = Instance.new("BlockMesh", p23)
1061
b20.Name = "Mesh"
1062
p24 = Instance.new("WedgePart", m)
1063
p24.BrickColor = BrickColor.new("Really black")
1064
p24.Name = "Wedge"
1065
p24.FormFactor = Enum.FormFactor.Custom
1066
p24.Size = Vector3.new(3, 1, 0.5)
1067
p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
1068
p24.CanCollide = false
1069
p24.Locked = true
1070
p24.BottomSurface = Enum.SurfaceType.Smooth
1071
p24.TopSurface = Enum.SurfaceType.Smooth
1072
p25 = Instance.new("Part", m)
1073
p25.BrickColor = BrickColor.new("Royal purple")
1074
p25.Material = "Neon"
1075
p25.FormFactor = Enum.FormFactor.Symmetric
1076
p25.Size = Vector3.new(1, 1, 1)
1077
p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
1078
p25.CanCollide = false
1079
p25.Locked = true
1080
p25.BottomSurface = Enum.SurfaceType.Smooth
1081
p25.TopSurface = Enum.SurfaceType.Smooth
1082
b21 = Instance.new("SpecialMesh", p25)
1083
b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
1084
b21.TextureId = ""
1085
b21.MeshType = Enum.MeshType.FileMesh
1086
b21.Name = "Mesh"
1087
b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
1088
p26 = Instance.new("Part", m)
1089
p26.BrickColor = BrickColor.new("Really black")
1090
p26.FormFactor = Enum.FormFactor.Symmetric
1091
p26.Size = Vector3.new(1, 1, 1)
1092
p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
1093
p26.CanCollide = false
1094
p26.Locked = true
1095
p26.BottomSurface = Enum.SurfaceType.Smooth
1096
p26.TopSurface = Enum.SurfaceType.Smooth
1097
b22 = Instance.new("SpecialMesh", p26)
1098
b22.MeshType = Enum.MeshType.Brick
1099
b22.Name = "Mesh"
1100
w1 = Instance.new("Weld", p1)
1101
w1.Name = "Wedge_Weld"
1102
w1.Part0 = p1
1103
w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
1104
w1.Part1 = p2
1105
w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
1106
w2 = Instance.new("Weld", p2)
1107
w2.Name = "Part_Weld"
1108
w2.Part0 = p2
1109
w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
1110
w2.Part1 = p3
1111
w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
1112
w3 = Instance.new("Weld", p3)
1113
w3.Name = "Wedge_Weld"
1114
w3.Part0 = p3
1115
w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
1116
w3.Part1 = p4
1117
w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
1118
w4 = Instance.new("Weld", p4)
1119
w4.Name = "Part_Weld"
1120
w4.Part0 = p4
1121
w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
1122
w4.Part1 = p5
1123
w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
1124
w5 = Instance.new("Weld", p5)
1125
w5.Name = "Part_Weld"
1126
w5.Part0 = p5
1127
w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
1128
w5.Part1 = p6
1129
w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
1130
w6 = Instance.new("Weld", p6)
1131
w6.Name = "Part_Weld"
1132
w6.Part0 = p6
1133
w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
1134
w6.Part1 = p7
1135
w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
1136
w7 = Instance.new("Weld", p7)
1137
w7.Name = "Part_Weld"
1138
w7.Part0 = p7
1139
w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
1140
w7.Part1 = p8
1141
w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
1142
w8 = Instance.new("Weld", p8)
1143
w8.Name = "Part_Weld"
1144
w8.Part0 = p8
1145
w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
1146
w8.Part1 = p9
1147
w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
1148
w9 = Instance.new("Weld", p9)
1149
w9.Name = "Part_Weld"
1150
w9.Part0 = p9
1151
w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
1152
w9.Part1 = p10
1153
w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
1154
w10 = Instance.new("Weld", p10)
1155
w10.Name = "Part_Weld"
1156
w10.Part0 = p10
1157
w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
1158
w10.Part1 = p11
1159
w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
1160
w11 = Instance.new("Weld", p11)
1161
w11.Name = "Part_Weld"
1162
w11.Part0 = p11
1163
w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
1164
w11.Part1 = p12
1165
w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
1166
w12 = Instance.new("Weld", p12)
1167
w12.Name = "Part_Weld"
1168
w12.Part0 = p12
1169
w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
1170
w12.Part1 = p13
1171
w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
1172
w13 = Instance.new("Weld", p13)
1173
w13.Name = "Part_Weld"
1174
w13.Part0 = p13
1175
w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
1176
w13.Part1 = p14
1177
w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
1178
w14 = Instance.new("Weld", p14)
1179
w14.Name = "ArmPart_Weld"
1180
w14.Part0 = p14
1181
w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
1182
w14.Part1 = p15
1183
w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
1184
w15 = Instance.new("Weld", p15)
1185
w15.Name = "Part_Weld"
1186
w15.Part0 = p15
1187
w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
1188
w15.Part1 = p16
1189
w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
1190
w16 = Instance.new("Weld", p16)
1191
w16.Name = "Part_Weld"
1192
w16.Part0 = p16
1193
w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
1194
w16.Part1 = p17
1195
w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
1196
w17 = Instance.new("Weld", p17)
1197
w17.Name = "Part_Weld"
1198
w17.Part0 = p17
1199
w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
1200
w17.Part1 = p18
1201
w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
1202
w18 = Instance.new("Weld", p18)
1203
w18.Name = "Part_Weld"
1204
w18.Part0 = p18
1205
w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
1206
w18.Part1 = p19
1207
w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
1208
w19 = Instance.new("Weld", p19)
1209
w19.Name = "Part_Weld"
1210
w19.Part0 = p19
1211
w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
1212
w19.Part1 = p20
1213
w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
1214
w20 = Instance.new("Weld", p20)
1215
w20.Name = "Part_Weld"
1216
w20.Part0 = p20
1217
w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
1218
w20.Part1 = p21
1219
w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
1220
w21 = Instance.new("Weld", p21)
1221
w21.Name = "Wedge_Weld"
1222
w21.Part0 = p21
1223
w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
1224
w21.Part1 = p22
1225
w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
1226
w22 = Instance.new("Weld", p22)
1227
w22.Name = "Part_Weld"
1228
w22.Part0 = p22
1229
w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
1230
w22.Part1 = p23
1231
w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
1232
w23 = Instance.new("Weld", p23)
1233
w23.Name = "Wedge_Weld"
1234
w23.Part0 = p23
1235
w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
1236
w23.Part1 = p24
1237
w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
1238
w24 = Instance.new("Weld", p24)
1239
w24.Name = "Part_Weld"
1240
w24.Part0 = p24
1241
w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
1242
w24.Part1 = p25
1243
w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
1244
w25 = Instance.new("Weld", p25)
1245
w25.Name = "Part_Weld"
1246
w25.Part0 = p25
1247
w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
1248
w25.Part1 = p26
1249
w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
1250
m.Parent = char
1251
m:MakeJoints()
1252
----------------------------------------------------
1253
local cor2 = Instance.new("Part", char.Claw)
1254
cor2.Name = "Thingy"
1255
cor2.Locked = true
1256
cor2.BottomSurface = 0
1257
cor2.CanCollide = false
1258
cor2.Size = Vector3.new(2, 1, 1)
1259
cor2.Transparency = 1
1260
cor2.TopSurface = 0
1261
corw2 = Instance.new("Weld", cor2)
1262
corw2.Part0 = larm
1263
corw2.Part1 = cor2
1264
corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
1265
corw2.C1 = CFrame.new(0, 0, 0)
1266
weld2 = Instance.new("Weld", char.Claw)
1267
weld2.Part0 = cor2
1268
weld2.Part1 = char.Claw.ArmPart
1269
weld2.C0 = CFrame.new(0, 0, 0)
1270
----------------------------------------------------
1271
local m = Instance.new("Model")
1272
m.Name = "LeftArm"
1273
p1 = Instance.new("WedgePart", m)
1274
p1.BrickColor = BrickColor.new("Royal purple")
1275
p1.Material = Enum.Material.Neon
1276
p1.Name = "Wedge"
1277
p1.FormFactor = Enum.FormFactor.Custom
1278
p1.Size = Vector3.new(1, 1.19999981, 4)
1279
p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
1280
p1.CanCollide = false
1281
p1.Locked = true
1282
p1.TopSurface = Enum.SurfaceType.Smooth
1283
b1 = Instance.new("SpecialMesh", p1)
1284
b1.MeshType = Enum.MeshType.Wedge
1285
b1.Name = "Mesh"
1286
b1.Scale = Vector3.new(0.200000003, 1, 1)
1287
p2 = Instance.new("WedgePart", m)
1288
p2.BrickColor = BrickColor.new("Royal purple")
1289
p2.Material = Enum.Material.Neon
1290
p2.Name = "Wedge"
1291
p2.FormFactor = Enum.FormFactor.Custom
1292
p2.Size = Vector3.new(1, 1.19999981, 4)
1293
p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
1294
p2.CanCollide = false
1295
p2.Locked = true
1296
p2.TopSurface = Enum.SurfaceType.Smooth
1297
b2 = Instance.new("SpecialMesh", p2)
1298
b2.MeshType = Enum.MeshType.Wedge
1299
b2.Name = "Mesh"
1300
b2.Scale = Vector3.new(0.200000003, 1, 1)
1301
p3 = Instance.new("WedgePart", m)
1302
p3.BrickColor = BrickColor.new("Royal purple")
1303
p3.Material = Enum.Material.Neon
1304
p3.Name = "Wedge"
1305
p3.FormFactor = Enum.FormFactor.Custom
1306
p3.Size = Vector3.new(1, 1.19999981, 4)
1307
p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
1308
p3.CanCollide = false
1309
p3.Locked = true
1310
p3.TopSurface = Enum.SurfaceType.Smooth
1311
b3 = Instance.new("SpecialMesh", p3)
1312
b3.MeshType = Enum.MeshType.Wedge
1313
b3.Name = "Mesh"
1314
b3.Scale = Vector3.new(0.200000003, 1, 1)
1315
p4 = Instance.new("WedgePart", m)
1316
p4.BrickColor = BrickColor.new("Royal purple")
1317
p4.Material = Enum.Material.Neon
1318
p4.Name = "Wedge"
1319
p4.FormFactor = Enum.FormFactor.Custom
1320
p4.Size = Vector3.new(1, 1.19999981, 4)
1321
p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
1322
p4.CanCollide = false
1323
p4.Locked = true
1324
p4.TopSurface = Enum.SurfaceType.Smooth
1325
b4 = Instance.new("SpecialMesh", p4)
1326
b4.MeshType = Enum.MeshType.Wedge
1327
b4.Name = "Mesh"
1328
b4.Scale = Vector3.new(0.200000003, 1, 1)
1329
p5 = Instance.new("WedgePart", m)
1330
p5.BrickColor = BrickColor.new("Royal purple")
1331
p5.Material = Enum.Material.Neon
1332
p5.Name = "Wedge"
1333
p5.FormFactor = Enum.FormFactor.Custom
1334
p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
1335
p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
1336
p5.CanCollide = false
1337
p5.Locked = true
1338
p5.TopSurface = Enum.SurfaceType.Smooth
1339
b5 = Instance.new("SpecialMesh", p5)
1340
b5.MeshType = Enum.MeshType.Wedge
1341
b5.Name = "Mesh"
1342
b5.Scale = Vector3.new(0.200000003, 1, 1)
1343
p6 = Instance.new("WedgePart", m)
1344
p6.BrickColor = BrickColor.new("Royal purple")
1345
p6.Material = Enum.Material.Neon
1346
p6.Name = "Wedge"
1347
p6.FormFactor = Enum.FormFactor.Custom
1348
p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
1349
p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
1350
p6.CanCollide = false
1351
p6.Locked = true
1352
p6.TopSurface = Enum.SurfaceType.Smooth
1353
b6 = Instance.new("SpecialMesh", p6)
1354
b6.MeshType = Enum.MeshType.Wedge
1355
b6.Name = "Mesh"
1356
b6.Scale = Vector3.new(0.200000003, 1, 1)
1357
p7 = Instance.new("WedgePart", m)
1358
p7.BrickColor = BrickColor.new("Royal purple")
1359
p7.Material = Enum.Material.Neon
1360
p7.Name = "Wedge"
1361
p7.FormFactor = Enum.FormFactor.Custom
1362
p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
1363
p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
1364
p7.CanCollide = false
1365
p7.Locked = true
1366
p7.TopSurface = Enum.SurfaceType.Smooth
1367
b7 = Instance.new("SpecialMesh", p7)
1368
b7.MeshType = Enum.MeshType.Wedge
1369
b7.Name = "Mesh"
1370
b7.Scale = Vector3.new(0.200000003, 1, 1)
1371
p8 = Instance.new("Part", m)
1372
p8.BrickColor = BrickColor.new("Really black")
1373
p8.Material = Enum.Material.Neon
1374
p8.FormFactor = Enum.FormFactor.Custom
1375
p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1376
p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
1377
p8.CanCollide = false
1378
p8.Locked = true
1379
p8.BottomSurface = Enum.SurfaceType.Smooth
1380
p8.TopSurface = Enum.SurfaceType.Smooth
1381
b8 = Instance.new("SpecialMesh", p8)
1382
b8.MeshType = Enum.MeshType.Sphere
1383
b8.Name = "Mesh"
1384
p9 = Instance.new("Part", m)
1385
p9.BrickColor = BrickColor.new("Really black")
1386
p9.Material = Enum.Material.Neon
1387
p9.FormFactor = Enum.FormFactor.Custom
1388
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1389
p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
1390
p9.CanCollide = false
1391
p9.Locked = true
1392
p9.BottomSurface = Enum.SurfaceType.Smooth
1393
p9.TopSurface = Enum.SurfaceType.Smooth
1394
b9 = Instance.new("SpecialMesh", p9)
1395
b9.MeshType = Enum.MeshType.Sphere
1396
b9.Name = "Mesh"
1397
p10 = Instance.new("Part", m)
1398
p10.BrickColor = BrickColor.new("Royal purple")
1399
p10.Material = Enum.Material.Neon
1400
p10.FormFactor = Enum.FormFactor.Custom
1401
p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
1402
p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
1403
p10.CanCollide = false
1404
p10.Locked = true
1405
p10.BottomSurface = Enum.SurfaceType.Smooth
1406
p10.TopSurface = Enum.SurfaceType.Smooth
1407
p11 = Instance.new("Part", m)
1408
p11.BrickColor = BrickColor.new("Royal purple")
1409
p11.Material = Enum.Material.Neon
1410
p11.FormFactor = Enum.FormFactor.Custom
1411
p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
1412
p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
1413
p11.CanCollide = false
1414
p11.Locked = true
1415
p11.BottomSurface = Enum.SurfaceType.Smooth
1416
p11.TopSurface = Enum.SurfaceType.Smooth
1417
p12 = Instance.new("Part", m)
1418
p12.BrickColor = BrickColor.new("Really black")
1419
p12.Material = Enum.Material.Neon
1420
p12.FormFactor = Enum.FormFactor.Custom
1421
p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1422
p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
1423
p12.CanCollide = false
1424
p12.Locked = true
1425
p12.BottomSurface = Enum.SurfaceType.Smooth
1426
p12.TopSurface = Enum.SurfaceType.Smooth
1427
b10 = Instance.new("SpecialMesh", p12)
1428
b10.MeshType = Enum.MeshType.Sphere
1429
b10.Name = "Mesh"
1430
p13 = Instance.new("Part", m)
1431
p13.BrickColor = BrickColor.new("Royal purple")
1432
p13.Material = Enum.Material.Neon
1433
p13.FormFactor = Enum.FormFactor.Custom
1434
p13.Size = Vector3.new(1.5, 1.5, 1.5)
1435
p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
1436
p13.CanCollide = false
1437
p13.Locked = true
1438
p13.BottomSurface = Enum.SurfaceType.Smooth
1439
p13.TopSurface = Enum.SurfaceType.Smooth
1440
b11 = Instance.new("SpecialMesh", p13)
1441
b11.MeshType = Enum.MeshType.Sphere
1442
b11.Name = "Mesh"
1443
p14 = Instance.new("Part", m)
1444
p14.BrickColor = BrickColor.new("Really black")
1445
p14.Material = Enum.Material.Neon
1446
p14.FormFactor = Enum.FormFactor.Custom
1447
p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1448
p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
1449
p14.CanCollide = false
1450
p14.Locked = true
1451
p14.BottomSurface = Enum.SurfaceType.Smooth
1452
p14.TopSurface = Enum.SurfaceType.Smooth
1453
b12 = Instance.new("SpecialMesh", p14)
1454
b12.MeshType = Enum.MeshType.Sphere
1455
b12.Name = "Mesh"
1456
p15 = Instance.new("Part", m)
1457
p15.BrickColor = BrickColor.new("Really black")
1458
p15.Material = Enum.Material.Metal
1459
p15.Name = "Main"
1460
p15.FormFactor = Enum.FormFactor.Custom
1461
p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
1462
p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
1463
p15.CanCollide = false
1464
p15.Locked = true
1465
p15.BottomSurface = Enum.SurfaceType.Smooth
1466
p15.TopSurface = Enum.SurfaceType.Smooth
1467
p16 = Instance.new("Part", m)
1468
p16.BrickColor = BrickColor.new("Really black")
1469
p16.Material = Enum.Material.Neon
1470
p16.FormFactor = Enum.FormFactor.Custom
1471
p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1472
p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
1473
p16.CanCollide = false
1474
p16.Locked = true
1475
p16.BottomSurface = Enum.SurfaceType.Smooth
1476
p16.TopSurface = Enum.SurfaceType.Smooth
1477
b13 = Instance.new("SpecialMesh", p16)
1478
b13.MeshType = Enum.MeshType.Sphere
1479
b13.Name = "Mesh"
1480
p17 = Instance.new("Part", m)
1481
p17.BrickColor = BrickColor.new("Royal purple")
1482
p17.Material = Enum.Material.Neon
1483
p17.FormFactor = Enum.FormFactor.Custom
1484
p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
1485
p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
1486
p17.CanCollide = false
1487
p17.Locked = true
1488
p17.BottomSurface = Enum.SurfaceType.Smooth
1489
p17.TopSurface = Enum.SurfaceType.Smooth
1490
p18 = Instance.new("Part", m)
1491
p18.BrickColor = BrickColor.new("Royal purple")
1492
p18.Material = Enum.Material.Neon
1493
p18.FormFactor = Enum.FormFactor.Custom
1494
p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
1495
p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
1496
p18.CanCollide = false
1497
p18.Locked = true
1498
p18.BottomSurface = Enum.SurfaceType.Smooth
1499
p18.TopSurface = Enum.SurfaceType.Smooth
1500
p19 = Instance.new("Part", m)
1501
p19.BrickColor = BrickColor.new("Royal purple")
1502
p19.Material = Enum.Material.Neon
1503
p19.FormFactor = Enum.FormFactor.Custom
1504
p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
1505
p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
1506
p19.CanCollide = false
1507
p19.Locked = true
1508
p19.BottomSurface = Enum.SurfaceType.Smooth
1509
p19.TopSurface = Enum.SurfaceType.Smooth
1510
p20 = Instance.new("Part", m)
1511
p20.BrickColor = BrickColor.new("Royal purple")
1512
p20.Material = Enum.Material.Neon
1513
p20.FormFactor = Enum.FormFactor.Custom
1514
p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
1515
p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
1516
p20.CanCollide = false
1517
p20.Locked = true
1518
p20.BottomSurface = Enum.SurfaceType.Smooth
1519
p20.TopSurface = Enum.SurfaceType.Smooth
1520
p21 = Instance.new("Part", m)
1521
p21.BrickColor = BrickColor.new("Royal purple")
1522
p21.Material = Enum.Material.Neon
1523
p21.FormFactor = Enum.FormFactor.Custom
1524
p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
1525
p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
1526
p21.CanCollide = false
1527
p21.Locked = true
1528
p21.BottomSurface = Enum.SurfaceType.Smooth
1529
p21.TopSurface = Enum.SurfaceType.Smooth
1530
p22 = Instance.new("Part", m)
1531
p22.BrickColor = BrickColor.new("Really black")
1532
p22.Material = Enum.Material.Neon
1533
p22.FormFactor = Enum.FormFactor.Custom
1534
p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1535
p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
1536
p22.CanCollide = false
1537
p22.Locked = true
1538
p22.BottomSurface = Enum.SurfaceType.Smooth
1539
p22.TopSurface = Enum.SurfaceType.Smooth
1540
b14 = Instance.new("SpecialMesh", p22)
1541
b14.MeshType = Enum.MeshType.Sphere
1542
b14.Name = "Mesh"
1543
p23 = Instance.new("Part", m)
1544
p23.BrickColor = BrickColor.new("Really black")
1545
p23.Material = Enum.Material.Neon
1546
p23.FormFactor = Enum.FormFactor.Custom
1547
p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1548
p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
1549
p23.CanCollide = false
1550
p23.Locked = true
1551
p23.BottomSurface = Enum.SurfaceType.Smooth
1552
p23.TopSurface = Enum.SurfaceType.Smooth
1553
b15 = Instance.new("SpecialMesh", p23)
1554
b15.MeshType = Enum.MeshType.Sphere
1555
b15.Name = "Mesh"
1556
p24 = Instance.new("Part", m)
1557
p24.BrickColor = BrickColor.new("Really black")
1558
p24.Material = Enum.Material.Neon
1559
p24.FormFactor = Enum.FormFactor.Custom
1560
p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1561
p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
1562
p24.CanCollide = false
1563
p24.Locked = true
1564
p24.BottomSurface = Enum.SurfaceType.Smooth
1565
p24.TopSurface = Enum.SurfaceType.Smooth
1566
b16 = Instance.new("SpecialMesh", p24)
1567
b16.MeshType = Enum.MeshType.Sphere
1568
b16.Name = "Mesh"
1569
w1 = Instance.new("Weld", p1)
1570
w1.Name = "Wedge_Weld"
1571
w1.Part0 = p1
1572
w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
1573
w1.Part1 = p2
1574
w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
1575
w2 = Instance.new("Weld", p2)
1576
w2.Name = "Wedge_Weld"
1577
w2.Part0 = p2
1578
w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
1579
w2.Part1 = p3
1580
w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
1581
w3 = Instance.new("Weld", p3)
1582
w3.Name = "Wedge_Weld"
1583
w3.Part0 = p3
1584
w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
1585
w3.Part1 = p4
1586
w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
1587
w4 = Instance.new("Weld", p4)
1588
w4.Name = "Wedge_Weld"
1589
w4.Part0 = p4
1590
w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
1591
w4.Part1 = p5
1592
w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
1593
w5 = Instance.new("Weld", p5)
1594
w5.Name = "Wedge_Weld"
1595
w5.Part0 = p5
1596
w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
1597
w5.Part1 = p6
1598
w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
1599
w6 = Instance.new("Weld", p6)
1600
w6.Name = "Wedge_Weld"
1601
w6.Part0 = p6
1602
w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
1603
w6.Part1 = p7
1604
w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
1605
w7 = Instance.new("Weld", p7)
1606
w7.Name = "Part_Weld"
1607
w7.Part0 = p7
1608
w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
1609
w7.Part1 = p8
1610
w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
1611
w8 = Instance.new("Weld", p8)
1612
w8.Name = "Part_Weld"
1613
w8.Part0 = p8
1614
w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
1615
w8.Part1 = p9
1616
w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
1617
w9 = Instance.new("Weld", p9)
1618
w9.Name = "Part_Weld"
1619
w9.Part0 = p9
1620
w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
1621
w9.Part1 = p10
1622
w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
1623
w10 = Instance.new("Weld", p10)
1624
w10.Name = "Part_Weld"
1625
w10.Part0 = p10
1626
w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
1627
w10.Part1 = p11
1628
w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
1629
w11 = Instance.new("Weld", p11)
1630
w11.Name = "Part_Weld"
1631
w11.Part0 = p11
1632
w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
1633
w11.Part1 = p12
1634
w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
1635
w12 = Instance.new("Weld", p12)
1636
w12.Name = "Part_Weld"
1637
w12.Part0 = p12
1638
w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
1639
w12.Part1 = p13
1640
w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
1641
w13 = Instance.new("Weld", p13)
1642
w13.Name = "Part_Weld"
1643
w13.Part0 = p13
1644
w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
1645
w13.Part1 = p14
1646
w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
1647
w14 = Instance.new("Weld", p14)
1648
w14.Name = "Part_Weld"
1649
w14.Part0 = p14
1650
w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
1651
w14.Part1 = p15
1652
w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
1653
w15 = Instance.new("Weld", p15)
1654
w15.Name = "Part_Weld"
1655
w15.Part0 = p15
1656
w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
1657
w15.Part1 = p16
1658
w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
1659
w16 = Instance.new("Weld", p16)
1660
w16.Name = "Part_Weld"
1661
w16.Part0 = p16
1662
w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
1663
w16.Part1 = p17
1664
w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
1665
w17 = Instance.new("Weld", p17)
1666
w17.Name = "Part_Weld"
1667
w17.Part0 = p17
1668
w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
1669
w17.Part1 = p18
1670
w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
1671
w18 = Instance.new("Weld", p18)
1672
w18.Name = "Part_Weld"
1673
w18.Part0 = p18
1674
w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
1675
w18.Part1 = p19
1676
w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
1677
w19 = Instance.new("Weld", p19)
1678
w19.Name = "Part_Weld"
1679
w19.Part0 = p19
1680
w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
1681
w19.Part1 = p20
1682
w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
1683
w20 = Instance.new("Weld", p20)
1684
w20.Name = "Part_Weld"
1685
w20.Part0 = p20
1686
w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
1687
w20.Part1 = p21
1688
w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
1689
w21 = Instance.new("Weld", p21)
1690
w21.Name = "Part_Weld"
1691
w21.Part0 = p21
1692
w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
1693
w21.Part1 = p22
1694
w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
1695
w22 = Instance.new("Weld", p22)
1696
w22.Name = "Part_Weld"
1697
w22.Part0 = p22
1698
w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
1699
w22.Part1 = p23
1700
w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
1701
w23 = Instance.new("Weld", p23)
1702
w23.Name = "Part_Weld"
1703
w23.Part0 = p23
1704
w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
1705
w23.Part1 = p24
1706
w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
1707
w24 = Instance.new("Weld", p24)
1708
w24.Name = "Part_Weld"
1709
w24.Part0 = p24
1710
w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
1711
m.Parent = larm
1712
m:MakeJoints()
1713
----------------------------------------------------
1714
local cor3 = Instance.new("Part", larm.LeftArm)
1715
cor3.Name = "Thingy"
1716
cor3.Locked = true
1717
cor3.BottomSurface = 0
1718
cor3.CanCollide = false
1719
cor3.Size = Vector3.new(2, 1, 1)
1720
cor3.Transparency = 1
1721
cor3.TopSurface = 0
1722
corw2 = Instance.new("Weld", cor3)
1723
corw2.Part0 = larm
1724
corw2.Part1 = cor3
1725
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1726
corw2.C1 = CFrame.new(0, 0, 0)
1727
weld2 = Instance.new("Weld", larm.LeftArm)
1728
weld2.Part0 = cor3
1729
weld2.Part1 = p15
1730
weld2.C0 = CFrame.new(0, 0, 0)
1731
----------------------------------------------------
1732
local m = Instance.new("Model")
1733
m.Name = "RightArm"
1734
p1 = Instance.new("WedgePart", m)
1735
p1.BrickColor = BrickColor.new("Royal purple")
1736
p1.Material = Enum.Material.Neon
1737
p1.Name = "Wedge"
1738
p1.FormFactor = Enum.FormFactor.Custom
1739
p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
1740
p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
1741
p1.CanCollide = false
1742
p1.Locked = true
1743
p1.TopSurface = Enum.SurfaceType.Smooth
1744
b1 = Instance.new("SpecialMesh", p1)
1745
b1.MeshType = Enum.MeshType.Wedge
1746
b1.Name = "Mesh"
1747
b1.Scale = Vector3.new(0.200000003, 1, 1)
1748
p2 = Instance.new("WedgePart", m)
1749
p2.BrickColor = BrickColor.new("Royal purple")
1750
p2.Material = Enum.Material.Neon
1751
p2.Name = "Wedge"
1752
p2.FormFactor = Enum.FormFactor.Custom
1753
p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
1754
p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
1755
p2.CanCollide = false
1756
p2.Locked = true
1757
p2.TopSurface = Enum.SurfaceType.Smooth
1758
b2 = Instance.new("SpecialMesh", p2)
1759
b2.MeshType = Enum.MeshType.Wedge
1760
b2.Name = "Mesh"
1761
b2.Scale = Vector3.new(0.200000003, 1, 1)
1762
p3 = Instance.new("WedgePart", m)
1763
p3.BrickColor = BrickColor.new("Royal purple")
1764
p3.Material = Enum.Material.Neon
1765
p3.Name = "Wedge"
1766
p3.FormFactor = Enum.FormFactor.Custom
1767
p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
1768
p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
1769
p3.CanCollide = false
1770
p3.Locked = true
1771
p3.TopSurface = Enum.SurfaceType.Smooth
1772
b3 = Instance.new("SpecialMesh", p3)
1773
b3.MeshType = Enum.MeshType.Wedge
1774
b3.Name = "Mesh"
1775
b3.Scale = Vector3.new(0.200000003, 1, 1)
1776
p4 = Instance.new("WedgePart", m)
1777
p4.BrickColor = BrickColor.new("Royal purple")
1778
p4.Material = Enum.Material.Neon
1779
p4.Name = "Wedge"
1780
p4.FormFactor = Enum.FormFactor.Custom
1781
p4.Size = Vector3.new(1, 1.19999981, 4)
1782
p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
1783
p4.CanCollide = false
1784
p4.Locked = true
1785
p4.TopSurface = Enum.SurfaceType.Smooth
1786
b4 = Instance.new("SpecialMesh", p4)
1787
b4.MeshType = Enum.MeshType.Wedge
1788
b4.Name = "Mesh"
1789
b4.Scale = Vector3.new(0.200000003, 1, 1)
1790
p5 = Instance.new("WedgePart", m)
1791
p5.BrickColor = BrickColor.new("Royal purple")
1792
p5.Material = Enum.Material.Neon
1793
p5.Name = "Wedge"
1794
p5.FormFactor = Enum.FormFactor.Custom
1795
p5.Size = Vector3.new(1, 1.19999981, 4)
1796
p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
1797
p5.CanCollide = false
1798
p5.Locked = true
1799
p5.TopSurface = Enum.SurfaceType.Smooth
1800
b5 = Instance.new("SpecialMesh", p5)
1801
b5.MeshType = Enum.MeshType.Wedge
1802
b5.Name = "Mesh"
1803
b5.Scale = Vector3.new(0.200000003, 1, 1)
1804
p6 = Instance.new("WedgePart", m)
1805
p6.BrickColor = BrickColor.new("Royal purple")
1806
p6.Material = Enum.Material.Neon
1807
p6.Name = "Wedge"
1808
p6.FormFactor = Enum.FormFactor.Custom
1809
p6.Size = Vector3.new(1, 1.19999981, 4)
1810
p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
1811
p6.CanCollide = false
1812
p6.Locked = true
1813
p6.TopSurface = Enum.SurfaceType.Smooth
1814
b6 = Instance.new("SpecialMesh", p6)
1815
b6.MeshType = Enum.MeshType.Wedge
1816
b6.Name = "Mesh"
1817
b6.Scale = Vector3.new(0.200000003, 1, 1)
1818
p7 = Instance.new("Part", m)
1819
p7.BrickColor = BrickColor.new("Really black")
1820
p7.Material = Enum.Material.Neon
1821
p7.FormFactor = Enum.FormFactor.Custom
1822
p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1823
p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
1824
p7.CanCollide = false
1825
p7.Locked = true
1826
p7.BottomSurface = Enum.SurfaceType.Smooth
1827
p7.TopSurface = Enum.SurfaceType.Smooth
1828
b7 = Instance.new("SpecialMesh", p7)
1829
b7.MeshType = Enum.MeshType.Sphere
1830
b7.Name = "Mesh"
1831
p8 = Instance.new("Part", m)
1832
p8.BrickColor = BrickColor.new("Royal purple")
1833
p8.Material = Enum.Material.Neon
1834
p8.FormFactor = Enum.FormFactor.Custom
1835
p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
1836
p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
1837
p8.CanCollide = false
1838
p8.Locked = true
1839
p8.BottomSurface = Enum.SurfaceType.Smooth
1840
p8.TopSurface = Enum.SurfaceType.Smooth
1841
p9 = Instance.new("Part", m)
1842
p9.BrickColor = BrickColor.new("Really black")
1843
p9.Material = Enum.Material.Neon
1844
p9.FormFactor = Enum.FormFactor.Custom
1845
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1846
p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
1847
p9.CanCollide = false
1848
p9.Locked = true
1849
p9.BottomSurface = Enum.SurfaceType.Smooth
1850
p9.TopSurface = Enum.SurfaceType.Smooth
1851
b8 = Instance.new("SpecialMesh", p9)
1852
b8.MeshType = Enum.MeshType.Sphere
1853
b8.Name = "Mesh"
1854
p10 = Instance.new("Part", m)
1855
p10.BrickColor = BrickColor.new("Really black")
1856
p10.Material = Enum.Material.Neon
1857
p10.FormFactor = Enum.FormFactor.Custom
1858
p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1859
p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
1860
p10.CanCollide = false
1861
p10.Locked = true
1862
p10.BottomSurface = Enum.SurfaceType.Smooth
1863
p10.TopSurface = Enum.SurfaceType.Smooth
1864
b9 = Instance.new("SpecialMesh", p10)
1865
b9.MeshType = Enum.MeshType.Sphere
1866
b9.Name = "Mesh"
1867
p11 = Instance.new("Part", m)
1868
p11.BrickColor = BrickColor.new("Royal purple")
1869
p11.Material = Enum.Material.Neon
1870
p11.FormFactor = Enum.FormFactor.Custom
1871
p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
1872
p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
1873
p11.CanCollide = false
1874
p11.Locked = true
1875
p11.BottomSurface = Enum.SurfaceType.Smooth
1876
p11.TopSurface = Enum.SurfaceType.Smooth
1877
p12 = Instance.new("Part", m)
1878
p12.BrickColor = BrickColor.new("Royal purple")
1879
p12.Material = Enum.Material.Neon
1880
p12.FormFactor = Enum.FormFactor.Custom
1881
p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
1882
p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
1883
p12.CanCollide = false
1884
p12.Locked = true
1885
p12.BottomSurface = Enum.SurfaceType.Smooth
1886
p12.TopSurface = Enum.SurfaceType.Smooth
1887
p13 = Instance.new("Part", m)
1888
p13.BrickColor = BrickColor.new("Royal purple")
1889
p13.Material = Enum.Material.Neon
1890
p13.FormFactor = Enum.FormFactor.Custom
1891
p13.Size = Vector3.new(1.5, 1.5, 1.5)
1892
p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
1893
p13.CanCollide = false
1894
p13.Locked = true
1895
p13.BottomSurface = Enum.SurfaceType.Smooth
1896
p13.TopSurface = Enum.SurfaceType.Smooth
1897
b10 = Instance.new("SpecialMesh", p13)
1898
b10.MeshType = Enum.MeshType.Sphere
1899
b10.Name = "Mesh"
1900
p14 = Instance.new("Part", m)
1901
p14.BrickColor = BrickColor.new("Really black")
1902
p14.Material = Enum.Material.Metal
1903
p14.Name = "Main"
1904
p14.FormFactor = Enum.FormFactor.Custom
1905
p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
1906
p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
1907
p14.CanCollide = false
1908
p14.Locked = true
1909
p14.BottomSurface = Enum.SurfaceType.Smooth
1910
p14.TopSurface = Enum.SurfaceType.Smooth
1911
p15 = Instance.new("Part", m)
1912
p15.BrickColor = BrickColor.new("Really black")
1913
p15.Material = Enum.Material.Neon
1914
p15.FormFactor = Enum.FormFactor.Custom
1915
p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1916
p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
1917
p15.CanCollide = false
1918
p15.Locked = true
1919
p15.BottomSurface = Enum.SurfaceType.Smooth
1920
p15.TopSurface = Enum.SurfaceType.Smooth
1921
b11 = Instance.new("SpecialMesh", p15)
1922
b11.MeshType = Enum.MeshType.Sphere
1923
b11.Name = "Mesh"
1924
p16 = Instance.new("Part", m)
1925
p16.BrickColor = BrickColor.new("Royal purple")
1926
p16.Material = Enum.Material.Neon
1927
p16.FormFactor = Enum.FormFactor.Custom
1928
p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
1929
p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
1930
p16.CanCollide = false
1931
p16.Locked = true
1932
p16.BottomSurface = Enum.SurfaceType.Smooth
1933
p16.TopSurface = Enum.SurfaceType.Smooth
1934
p17 = Instance.new("Part", m)
1935
p17.BrickColor = BrickColor.new("Royal purple")
1936
p17.Material = Enum.Material.Neon
1937
p17.FormFactor = Enum.FormFactor.Custom
1938
p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
1939
p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
1940
p17.CanCollide = false
1941
p17.Locked = true
1942
p17.BottomSurface = Enum.SurfaceType.Smooth
1943
p17.TopSurface = Enum.SurfaceType.Smooth
1944
p18 = Instance.new("Part", m)
1945
p18.BrickColor = BrickColor.new("Really black")
1946
p18.Material = Enum.Material.Neon
1947
p18.FormFactor = Enum.FormFactor.Custom
1948
p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1949
p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
1950
p18.CanCollide = false
1951
p18.Locked = true
1952
p18.BottomSurface = Enum.SurfaceType.Smooth
1953
p18.TopSurface = Enum.SurfaceType.Smooth
1954
b12 = Instance.new("SpecialMesh", p18)
1955
b12.MeshType = Enum.MeshType.Sphere
1956
b12.Name = "Mesh"
1957
p19 = Instance.new("Part", m)
1958
p19.BrickColor = BrickColor.new("Really black")
1959
p19.Material = Enum.Material.Neon
1960
p19.FormFactor = Enum.FormFactor.Custom
1961
p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1962
p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
1963
p19.CanCollide = false
1964
p19.Locked = true
1965
p19.BottomSurface = Enum.SurfaceType.Smooth
1966
p19.TopSurface = Enum.SurfaceType.Smooth
1967
b13 = Instance.new("SpecialMesh", p19)
1968
b13.MeshType = Enum.MeshType.Sphere
1969
b13.Name = "Mesh"
1970
w1 = Instance.new("Weld", p1)
1971
w1.Name = "Wedge_Weld"
1972
w1.Part0 = p1
1973
w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
1974
w1.Part1 = p2
1975
w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
1976
w2 = Instance.new("Weld", p2)
1977
w2.Name = "Wedge_Weld"
1978
w2.Part0 = p2
1979
w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
1980
w2.Part1 = p3
1981
w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
1982
w3 = Instance.new("Weld", p3)
1983
w3.Name = "Wedge_Weld"
1984
w3.Part0 = p3
1985
w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
1986
w3.Part1 = p4
1987
w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
1988
w4 = Instance.new("Weld", p4)
1989
w4.Name = "Wedge_Weld"
1990
w4.Part0 = p4
1991
w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
1992
w4.Part1 = p5
1993
w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
1994
w5 = Instance.new("Weld", p5)
1995
w5.Name = "Wedge_Weld"
1996
w5.Part0 = p5
1997
w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
1998
w5.Part1 = p6
1999
w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
2000
w6 = Instance.new("Weld", p6)
2001
w6.Name = "Part_Weld"
2002
w6.Part0 = p6
2003
w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
2004
w6.Part1 = p7
2005
w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
2006
w7 = Instance.new("Weld", p7)
2007
w7.Name = "Part_Weld"
2008
w7.Part0 = p7
2009
w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
2010
w7.Part1 = p8
2011
w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
2012
w8 = Instance.new("Weld", p8)
2013
w8.Name = "Part_Weld"
2014
w8.Part0 = p8
2015
w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
2016
w8.Part1 = p9
2017
w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
2018
w9 = Instance.new("Weld", p9)
2019
w9.Name = "Part_Weld"
2020
w9.Part0 = p9
2021
w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
2022
w9.Part1 = p10
2023
w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
2024
w10 = Instance.new("Weld", p10)
2025
w10.Name = "Part_Weld"
2026
w10.Part0 = p10
2027
w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
2028
w10.Part1 = p11
2029
w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
2030
w11 = Instance.new("Weld", p11)
2031
w11.Name = "Part_Weld"
2032
w11.Part0 = p11
2033
w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
2034
w11.Part1 = p12
2035
w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
2036
w12 = Instance.new("Weld", p12)
2037
w12.Name = "Part_Weld"
2038
w12.Part0 = p12
2039
w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
2040
w12.Part1 = p13
2041
w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2042
w13 = Instance.new("Weld", p13)
2043
w13.Name = "Part_Weld"
2044
w13.Part0 = p13
2045
w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2046
w13.Part1 = p14
2047
w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2048
w14 = Instance.new("Weld", p14)
2049
w14.Name = "Part_Weld"
2050
w14.Part0 = p14
2051
w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2052
w14.Part1 = p15
2053
w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
2054
w15 = Instance.new("Weld", p15)
2055
w15.Name = "Part_Weld"
2056
w15.Part0 = p15
2057
w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
2058
w15.Part1 = p16
2059
w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
2060
w16 = Instance.new("Weld", p16)
2061
w16.Name = "Part_Weld"
2062
w16.Part0 = p16
2063
w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
2064
w16.Part1 = p17
2065
w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
2066
w17 = Instance.new("Weld", p17)
2067
w17.Name = "Part_Weld"
2068
w17.Part0 = p17
2069
w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
2070
w17.Part1 = p18
2071
w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
2072
w18 = Instance.new("Weld", p18)
2073
w18.Name = "Part_Weld"
2074
w18.Part0 = p18
2075
w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
2076
w18.Part1 = p19
2077
w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
2078
w19 = Instance.new("Weld", p19)
2079
w19.Name = "Wedge_Weld"
2080
w19.Part0 = p19
2081
w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
2082
m.Parent = rarm
2083
m:MakeJoints()
2084
----------------------------------------------------
2085
local cor4 = Instance.new("Part", rarm.RightArm)
2086
cor4.Name = "Thingy"
2087
cor4.Locked = true
2088
cor4.BottomSurface = 0
2089
cor4.CanCollide = false
2090
cor4.Size = Vector3.new(2, 1, 1)
2091
cor4.Transparency = 1
2092
cor4.TopSurface = 0
2093
corw2 = Instance.new("Weld", cor4)
2094
corw2.Part0 = rarm
2095
corw2.Part1 = cor4
2096
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2097
corw2.C1 = CFrame.new(0, 0, 0)
2098
weld2 = Instance.new("Weld", rarm.RightArm)
2099
weld2.Part0 = cor4
2100
weld2.Part1 = p14
2101
weld2.C0 = CFrame.new(0, 0, 0)
2102
----------------------------------------------------
2103
local m = Instance.new("Model")
2104
m.Name = "Torso"
2105
p1 = Instance.new("Part", m)
2106
p1.BrickColor = BrickColor.new("Really black")
2107
p1.Material = Enum.Material.Neon
2108
p1.FormFactor = Enum.FormFactor.Custom
2109
p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2110
p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
2111
p1.CanCollide = false
2112
p1.Locked = true
2113
p1.BottomSurface = Enum.SurfaceType.Smooth
2114
p1.TopSurface = Enum.SurfaceType.Smooth
2115
b1 = Instance.new("SpecialMesh", p1)
2116
b1.MeshType = Enum.MeshType.Sphere
2117
b1.Name = "Mesh"
2118
p2 = Instance.new("Part", m)
2119
p2.BrickColor = BrickColor.new("Really black")
2120
p2.Material = Enum.Material.Neon
2121
p2.FormFactor = Enum.FormFactor.Custom
2122
p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2123
p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
2124
p2.CanCollide = false
2125
p2.Locked = true
2126
p2.BottomSurface = Enum.SurfaceType.Smooth
2127
p2.TopSurface = Enum.SurfaceType.Smooth
2128
b2 = Instance.new("SpecialMesh", p2)
2129
b2.MeshType = Enum.MeshType.Sphere
2130
b2.Name = "Mesh"
2131
p3 = Instance.new("Part", m)
2132
p3.BrickColor = BrickColor.new("Royal purple")
2133
p3.Material = Enum.Material.Neon
2134
p3.FormFactor = Enum.FormFactor.Custom
2135
p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
2136
p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
2137
p3.CanCollide = false
2138
p3.Locked = true
2139
p3.BottomSurface = Enum.SurfaceType.Smooth
2140
p3.TopSurface = Enum.SurfaceType.Smooth
2141
p4 = Instance.new("Part", m)
2142
p4.BrickColor = BrickColor.new("Royal purple")
2143
p4.Material = Enum.Material.Neon
2144
p4.FormFactor = Enum.FormFactor.Custom
2145
p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
2146
p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
2147
p4.CanCollide = false
2148
p4.Locked = true
2149
p4.BottomSurface = Enum.SurfaceType.Smooth
2150
p4.TopSurface = Enum.SurfaceType.Smooth
2151
p5 = Instance.new("Part", m)
2152
p5.BrickColor = BrickColor.new("Royal purple")
2153
p5.Material = Enum.Material.Neon
2154
p5.FormFactor = Enum.FormFactor.Custom
2155
p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
2156
p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
2157
p5.CanCollide = false
2158
p5.Locked = true
2159
p5.BottomSurface = Enum.SurfaceType.Smooth
2160
p5.TopSurface = Enum.SurfaceType.Smooth
2161
p6 = Instance.new("Part", m)
2162
p6.BrickColor = BrickColor.new("Royal purple")
2163
p6.Material = Enum.Material.Neon
2164
p6.FormFactor = Enum.FormFactor.Custom
2165
p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
2166
p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
2167
p6.CanCollide = false
2168
p6.Locked = true
2169
p6.BottomSurface = Enum.SurfaceType.Smooth
2170
p6.TopSurface = Enum.SurfaceType.Smooth
2171
p7 = Instance.new("Part", m)
2172
p7.BrickColor = BrickColor.new("Really black")
2173
p7.Material = Enum.Material.Neon
2174
p7.FormFactor = Enum.FormFactor.Custom
2175
p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2176
p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
2177
p7.CanCollide = false
2178
p7.Locked = true
2179
p7.BottomSurface = Enum.SurfaceType.Smooth
2180
p7.TopSurface = Enum.SurfaceType.Smooth
2181
b3 = Instance.new("SpecialMesh", p7)
2182
b3.MeshType = Enum.MeshType.Sphere
2183
b3.Name = "Mesh"
2184
p8 = Instance.new("Part", m)
2185
p8.BrickColor = BrickColor.new("Really black")
2186
p8.Material = Enum.Material.Neon
2187
p8.FormFactor = Enum.FormFactor.Custom
2188
p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2189
p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
2190
p8.CanCollide = false
2191
p8.Locked = true
2192
p8.BottomSurface = Enum.SurfaceType.Smooth
2193
p8.TopSurface = Enum.SurfaceType.Smooth
2194
b4 = Instance.new("SpecialMesh", p8)
2195
b4.MeshType = Enum.MeshType.Sphere
2196
b4.Name = "Mesh"
2197
p9 = Instance.new("Part", m)
2198
p9.BrickColor = BrickColor.new("Really black")
2199
p9.Material = Enum.Material.Neon
2200
p9.FormFactor = Enum.FormFactor.Custom
2201
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2202
p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
2203
p9.CanCollide = false
2204
p9.Locked = true
2205
p9.BottomSurface = Enum.SurfaceType.Smooth
2206
p9.TopSurface = Enum.SurfaceType.Smooth
2207
b5 = Instance.new("SpecialMesh", p9)
2208
b5.MeshType = Enum.MeshType.Sphere
2209
b5.Name = "Mesh"
2210
p10 = Instance.new("Part", m)
2211
p10.BrickColor = BrickColor.new("Royal purple")
2212
p10.Material = Enum.Material.Neon
2213
p10.FormFactor = Enum.FormFactor.Custom
2214
p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
2215
p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
2216
p10.CanCollide = false
2217
p10.Locked = true
2218
p10.BottomSurface = Enum.SurfaceType.Smooth
2219
p10.TopSurface = Enum.SurfaceType.Smooth
2220
p11 = Instance.new("Part", m)
2221
p11.BrickColor = BrickColor.new("Really black")
2222
p11.Material = Enum.Material.Metal
2223
p11.Name = "Main"
2224
p11.FormFactor = Enum.FormFactor.Custom
2225
p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
2226
p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
2227
p11.CanCollide = false
2228
p11.Locked = true
2229
p11.BottomSurface = Enum.SurfaceType.Smooth
2230
p11.TopSurface = Enum.SurfaceType.Smooth
2231
p12 = Instance.new("Part", m)
2232
p12.BrickColor = BrickColor.new("Really black")
2233
p12.Material = Enum.Material.Neon
2234
p12.FormFactor = Enum.FormFactor.Custom
2235
p12.Size = Vector3.new(3, 3, 2)
2236
p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
2237
p12.CanCollide = false
2238
p12.Locked = true
2239
p12.BottomSurface = Enum.SurfaceType.Smooth
2240
p12.TopSurface = Enum.SurfaceType.Smooth
2241
b6 = Instance.new("SpecialMesh", p12)
2242
b6.MeshType = Enum.MeshType.Sphere
2243
b6.Name = "Mesh"
2244
p13 = Instance.new("Part", m)
2245
p13.BrickColor = BrickColor.new("Royal purple")
2246
p13.Material = Enum.Material.Neon
2247
p13.FormFactor = Enum.FormFactor.Custom
2248
p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
2249
p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
2250
p13.CanCollide = false
2251
p13.Locked = true
2252
p13.BottomSurface = Enum.SurfaceType.Smooth
2253
p13.TopSurface = Enum.SurfaceType.Smooth
2254
p14 = Instance.new("Part", m)
2255
p14.BrickColor = BrickColor.new("Royal purple")
2256
p14.Material = Enum.Material.Neon
2257
p14.FormFactor = Enum.FormFactor.Custom
2258
p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
2259
p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
2260
p14.CanCollide = false
2261
p14.Locked = true
2262
p14.BottomSurface = Enum.SurfaceType.Smooth
2263
p14.TopSurface = Enum.SurfaceType.Smooth
2264
p15 = Instance.new("Part", m)
2265
p15.BrickColor = BrickColor.new("Royal purple")
2266
p15.Material = Enum.Material.Neon
2267
p15.FormFactor = Enum.FormFactor.Custom
2268
p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
2269
p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
2270
p15.CanCollide = false
2271
p15.Locked = true
2272
p15.BottomSurface = Enum.SurfaceType.Smooth
2273
p15.TopSurface = Enum.SurfaceType.Smooth
2274
p16 = Instance.new("Part", m)
2275
p16.BrickColor = BrickColor.new("Royal purple")
2276
p16.Material = Enum.Material.Neon
2277
p16.FormFactor = Enum.FormFactor.Custom
2278
p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
2279
p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
2280
p16.CanCollide = false
2281
p16.Locked = true
2282
p16.BottomSurface = Enum.SurfaceType.Smooth
2283
p16.TopSurface = Enum.SurfaceType.Smooth
2284
p17 = Instance.new("Part", m)
2285
p17.BrickColor = BrickColor.new("Royal purple")
2286
p17.Material = Enum.Material.Neon
2287
p17.FormFactor = Enum.FormFactor.Custom
2288
p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
2289
p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
2290
p17.CanCollide = false
2291
p17.Locked = true
2292
p17.BottomSurface = Enum.SurfaceType.Smooth
2293
p17.TopSurface = Enum.SurfaceType.Smooth
2294
p18 = Instance.new("Part", m)
2295
p18.BrickColor = BrickColor.new("Royal purple")
2296
p18.Material = Enum.Material.Neon
2297
p18.FormFactor = Enum.FormFactor.Custom
2298
p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
2299
p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
2300
p18.CanCollide = false
2301
p18.Locked = true
2302
p18.BottomSurface = Enum.SurfaceType.Smooth
2303
p18.TopSurface = Enum.SurfaceType.Smooth
2304
p19 = Instance.new("Part", m)
2305
p19.BrickColor = BrickColor.new("Really black")
2306
p19.Material = Enum.Material.Neon
2307
p19.FormFactor = Enum.FormFactor.Custom
2308
p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2309
p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
2310
p19.CanCollide = false
2311
p19.Locked = true
2312
p19.BottomSurface = Enum.SurfaceType.Smooth
2313
p19.TopSurface = Enum.SurfaceType.Smooth
2314
b7 = Instance.new("SpecialMesh", p19)
2315
b7.MeshType = Enum.MeshType.Sphere
2316
b7.Name = "Mesh"
2317
p20 = Instance.new("Part", m)
2318
p20.BrickColor = BrickColor.new("Really black")
2319
p20.Material = Enum.Material.Neon
2320
p20.FormFactor = Enum.FormFactor.Custom
2321
p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2322
p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
2323
p20.CanCollide = false
2324
p20.Locked = true
2325
p20.BottomSurface = Enum.SurfaceType.Smooth
2326
p20.TopSurface = Enum.SurfaceType.Smooth
2327
b8 = Instance.new("SpecialMesh", p20)
2328
b8.MeshType = Enum.MeshType.Sphere
2329
b8.Name = "Mesh"
2330
p21 = Instance.new("Part", m)
2331
p21.BrickColor = BrickColor.new("Royal purple")
2332
p21.Material = Enum.Material.Neon
2333
p21.FormFactor = Enum.FormFactor.Custom
2334
p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
2335
p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
2336
p21.CanCollide = false
2337
p21.Locked = true
2338
p21.BottomSurface = Enum.SurfaceType.Smooth
2339
p21.TopSurface = Enum.SurfaceType.Smooth
2340
p22 = Instance.new("Part", m)
2341
p22.BrickColor = BrickColor.new("Really black")
2342
p22.Material = Enum.Material.Neon
2343
p22.FormFactor = Enum.FormFactor.Custom
2344
p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2345
p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
2346
p22.CanCollide = false
2347
p22.Locked = true
2348
p22.BottomSurface = Enum.SurfaceType.Smooth
2349
p22.TopSurface = Enum.SurfaceType.Smooth
2350
b9 = Instance.new("SpecialMesh", p22)
2351
b9.MeshType = Enum.MeshType.Sphere
2352
b9.Name = "Mesh"
2353
w1 = Instance.new("Weld", p1)
2354
w1.Name = "Part_Weld"
2355
w1.Part0 = p1
2356
w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
2357
w1.Part1 = p2
2358
w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
2359
w2 = Instance.new("Weld", p2)
2360
w2.Name = "Part_Weld"
2361
w2.Part0 = p2
2362
w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
2363
w2.Part1 = p3
2364
w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
2365
w3 = Instance.new("Weld", p3)
2366
w3.Name = "Part_Weld"
2367
w3.Part0 = p3
2368
w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
2369
w3.Part1 = p4
2370
w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
2371
w4 = Instance.new("Weld", p4)
2372
w4.Name = "Part_Weld"
2373
w4.Part0 = p4
2374
w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
2375
w4.Part1 = p5
2376
w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
2377
w5 = Instance.new("Weld", p5)
2378
w5.Name = "Part_Weld"
2379
w5.Part0 = p5
2380
w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
2381
w5.Part1 = p6
2382
w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
2383
w6 = Instance.new("Weld", p6)
2384
w6.Name = "Part_Weld"
2385
w6.Part0 = p6
2386
w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
2387
w6.Part1 = p7
2388
w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
2389
w7 = Instance.new("Weld", p7)
2390
w7.Name = "Part_Weld"
2391
w7.Part0 = p7
2392
w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
2393
w7.Part1 = p8
2394
w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
2395
w8 = Instance.new("Weld", p8)
2396
w8.Name = "Part_Weld"
2397
w8.Part0 = p8
2398
w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
2399
w8.Part1 = p9
2400
w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
2401
w9 = Instance.new("Weld", p9)
2402
w9.Name = "Part_Weld"
2403
w9.Part0 = p9
2404
w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
2405
w9.Part1 = p10
2406
w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
2407
w10 = Instance.new("Weld", p10)
2408
w10.Name = "Main_Weld"
2409
w10.Part0 = p10
2410
w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
2411
w10.Part1 = p11
2412
w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2413
w11 = Instance.new("Weld", p11)
2414
w11.Name = "Part_Weld"
2415
w11.Part0 = p11
2416
w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2417
w11.Part1 = p12
2418
w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
2419
w12 = Instance.new("Weld", p12)
2420
w12.Name = "Part_Weld"
2421
w12.Part0 = p12
2422
w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
2423
w12.Part1 = p13
2424
w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
2425
w13 = Instance.new("Weld", p13)
2426
w13.Name = "Part_Weld"
2427
w13.Part0 = p13
2428
w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
2429
w13.Part1 = p14
2430
w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2431
w14 = Instance.new("Weld", p14)
2432
w14.Name = "Part_Weld"
2433
w14.Part0 = p14
2434
w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2435
w14.Part1 = p15
2436
w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2437
w15 = Instance.new("Weld", p15)
2438
w15.Name = "Part_Weld"
2439
w15.Part0 = p15
2440
w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
2441
w15.Part1 = p16
2442
w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
2443
w16 = Instance.new("Weld", p16)
2444
w16.Name = "Part_Weld"
2445
w16.Part0 = p16
2446
w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
2447
w16.Part1 = p17
2448
w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
2449
w17 = Instance.new("Weld", p17)
2450
w17.Name = "Part_Weld"
2451
w17.Part0 = p17
2452
w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
2453
w17.Part1 = p18
2454
w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2455
w18 = Instance.new("Weld", p18)
2456
w18.Name = "Part_Weld"
2457
w18.Part0 = p18
2458
w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2459
w18.Part1 = p19
2460
w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2461
w19 = Instance.new("Weld", p19)
2462
w19.Name = "Part_Weld"
2463
w19.Part0 = p19
2464
w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2465
w19.Part1 = p20
2466
w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2467
w20 = Instance.new("Weld", p20)
2468
w20.Name = "Part_Weld"
2469
w20.Part0 = p20
2470
w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2471
w20.Part1 = p21
2472
w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2473
w21 = Instance.new("Weld", p21)
2474
w21.Name = "Part_Weld"
2475
w21.Part0 = p21
2476
w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2477
w21.Part1 = p22
2478
w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2479
w22 = Instance.new("Weld", p22)
2480
w22.Name = "Wedge_Weld"
2481
w22.Part0 = p22
2482
w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2483
m.Parent = torso
2484
m:MakeJoints()
2485
----------------------------------------------------
2486
local cor5 = Instance.new("Part", torso.Torso)
2487
cor5.Name = "Thingy"
2488
cor5.Locked = true
2489
cor5.BottomSurface = 0
2490
cor5.CanCollide = false
2491
cor5.Size = Vector3.new(2, 1, 1)
2492
cor5.Transparency = 1
2493
cor5.TopSurface = 0
2494
corw2 = Instance.new("Weld", cor5)
2495
corw2.Part0 = torso
2496
corw2.Part1 = cor5
2497
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2498
corw2.C1 = CFrame.new(0, 0, 0)
2499
weld2 = Instance.new("Weld", torso.Torso)
2500
weld2.Part0 = cor5
2501
weld2.Part1 = p11
2502
weld2.C0 = CFrame.new(0, 0, 0)
2503
----------------------------------------------------
2504
local m = Instance.new("Model")
2505
m.Name = "RightLeg"
2506
p1 = Instance.new("Part", m)
2507
p1.BrickColor = BrickColor.new("Really black")
2508
p1.Material = Enum.Material.Neon
2509
p1.FormFactor = Enum.FormFactor.Custom
2510
p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2511
p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
2512
p1.CanCollide = false
2513
p1.Locked = true
2514
p1.BottomSurface = Enum.SurfaceType.Smooth
2515
p1.TopSurface = Enum.SurfaceType.Smooth
2516
b1 = Instance.new("SpecialMesh", p1)
2517
b1.MeshType = Enum.MeshType.Sphere
2518
b1.Name = "Mesh"
2519
p2 = Instance.new("Part", m)
2520
p2.BrickColor = BrickColor.new("Really black")
2521
p2.Material = Enum.Material.Neon
2522
p2.FormFactor = Enum.FormFactor.Custom
2523
p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2524
p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
2525
p2.CanCollide = false
2526
p2.Locked = true
2527
p2.BottomSurface = Enum.SurfaceType.Smooth
2528
p2.TopSurface = Enum.SurfaceType.Smooth
2529
b2 = Instance.new("SpecialMesh", p2)
2530
b2.MeshType = Enum.MeshType.Sphere
2531
b2.Name = "Mesh"
2532
p3 = Instance.new("Part", m)
2533
p3.BrickColor = BrickColor.new("Royal purple")
2534
p3.Material = Enum.Material.Neon
2535
p3.FormFactor = Enum.FormFactor.Custom
2536
p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
2537
p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
2538
p3.CanCollide = false
2539
p3.Locked = true
2540
p3.BottomSurface = Enum.SurfaceType.Smooth
2541
p3.TopSurface = Enum.SurfaceType.Smooth
2542
p4 = Instance.new("Part", m)
2543
p4.BrickColor = BrickColor.new("Really black")
2544
p4.Material = Enum.Material.Neon
2545
p4.FormFactor = Enum.FormFactor.Custom
2546
p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2547
p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
2548
p4.CanCollide = false
2549
p4.Locked = true
2550
p4.BottomSurface = Enum.SurfaceType.Smooth
2551
p4.TopSurface = Enum.SurfaceType.Smooth
2552
b3 = Instance.new("SpecialMesh", p4)
2553
b3.MeshType = Enum.MeshType.Sphere
2554
b3.Name = "Mesh"
2555
p5 = Instance.new("Part", m)
2556
p5.BrickColor = BrickColor.new("Royal purple")
2557
p5.Material = Enum.Material.Neon
2558
p5.FormFactor = Enum.FormFactor.Custom
2559
p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
2560
p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
2561
p5.CanCollide = false
2562
p5.Locked = true
2563
p5.BottomSurface = Enum.SurfaceType.Smooth
2564
p5.TopSurface = Enum.SurfaceType.Smooth
2565
p6 = Instance.new("Part", m)
2566
p6.BrickColor = BrickColor.new("Royal purple")
2567
p6.Material = Enum.Material.Neon
2568
p6.FormFactor = Enum.FormFactor.Custom
2569
p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
2570
p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
2571
p6.CanCollide = false
2572
p6.Locked = true
2573
p6.BottomSurface = Enum.SurfaceType.Smooth
2574
p6.TopSurface = Enum.SurfaceType.Smooth
2575
p7 = Instance.new("Part", m)
2576
p7.BrickColor = BrickColor.new("Really black")
2577
p7.Material = Enum.Material.Metal
2578
p7.Name = "Main"
2579
p7.FormFactor = Enum.FormFactor.Custom
2580
p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
2581
p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
2582
p7.CanCollide = false
2583
p7.Locked = true
2584
p7.BottomSurface = Enum.SurfaceType.Smooth
2585
p7.TopSurface = Enum.SurfaceType.Smooth
2586
p8 = Instance.new("Part", m)
2587
p8.BrickColor = BrickColor.new("Royal purple")
2588
p8.Material = Enum.Material.Neon
2589
p8.FormFactor = Enum.FormFactor.Custom
2590
p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
2591
p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
2592
p8.CanCollide = false
2593
p8.Locked = true
2594
p8.BottomSurface = Enum.SurfaceType.Smooth
2595
p8.TopSurface = Enum.SurfaceType.Smooth
2596
p9 = Instance.new("WedgePart", m)
2597
p9.BrickColor = BrickColor.new("Royal purple")
2598
p9.Material = Enum.Material.Neon
2599
p9.Name = "Wedge"
2600
p9.FormFactor = Enum.FormFactor.Custom
2601
p9.Size = Vector3.new(1, 1.19999981, 4)
2602
p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
2603
p9.CanCollide = false
2604
p9.Locked = true
2605
p9.TopSurface = Enum.SurfaceType.Smooth
2606
b4 = Instance.new("SpecialMesh", p9)
2607
b4.MeshType = Enum.MeshType.Wedge
2608
b4.Name = "Mesh"
2609
b4.Scale = Vector3.new(0.600000024, 1, 1)
2610
p10 = Instance.new("Part", m)
2611
p10.BrickColor = BrickColor.new("Really black")
2612
p10.Material = Enum.Material.Neon
2613
p10.FormFactor = Enum.FormFactor.Custom
2614
p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2615
p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
2616
p10.CanCollide = false
2617
p10.Locked = true
2618
p10.BottomSurface = Enum.SurfaceType.Smooth
2619
p10.TopSurface = Enum.SurfaceType.Smooth
2620
b5 = Instance.new("SpecialMesh", p10)
2621
b5.MeshType = Enum.MeshType.Sphere
2622
b5.Name = "Mesh"
2623
p11 = Instance.new("Part", m)
2624
p11.BrickColor = BrickColor.new("Really black")
2625
p11.Material = Enum.Material.Neon
2626
p11.FormFactor = Enum.FormFactor.Custom
2627
p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2628
p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
2629
p11.CanCollide = false
2630
p11.Locked = true
2631
p11.BottomSurface = Enum.SurfaceType.Smooth
2632
p11.TopSurface = Enum.SurfaceType.Smooth
2633
b6 = Instance.new("SpecialMesh", p11)
2634
b6.MeshType = Enum.MeshType.Sphere
2635
b6.Name = "Mesh"
2636
p12 = Instance.new("Part", m)
2637
p12.BrickColor = BrickColor.new("Royal purple")
2638
p12.Material = Enum.Material.Neon
2639
p12.FormFactor = Enum.FormFactor.Custom
2640
p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
2641
p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
2642
p12.CanCollide = false
2643
p12.Locked = true
2644
p12.BottomSurface = Enum.SurfaceType.Smooth
2645
p12.TopSurface = Enum.SurfaceType.Smooth
2646
p13 = Instance.new("Part", m)
2647
p13.BrickColor = BrickColor.new("Really black")
2648
p13.Material = Enum.Material.Neon
2649
p13.FormFactor = Enum.FormFactor.Custom
2650
p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2651
p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
2652
p13.CanCollide = false
2653
p13.Locked = true
2654
p13.BottomSurface = Enum.SurfaceType.Smooth
2655
p13.TopSurface = Enum.SurfaceType.Smooth
2656
b7 = Instance.new("SpecialMesh", p13)
2657
b7.MeshType = Enum.MeshType.Sphere
2658
b7.Name = "Mesh"
2659
p14 = Instance.new("WedgePart", m)
2660
p14.BrickColor = BrickColor.new("Royal purple")
2661
p14.Material = Enum.Material.Neon
2662
p14.Name = "Wedge"
2663
p14.FormFactor = Enum.FormFactor.Custom
2664
p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
2665
p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
2666
p14.CanCollide = false
2667
p14.Locked = true
2668
p14.TopSurface = Enum.SurfaceType.Smooth
2669
b8 = Instance.new("SpecialMesh", p14)
2670
b8.MeshType = Enum.MeshType.Wedge
2671
b8.Name = "Mesh"
2672
b8.Scale = Vector3.new(0.200000003, 1, 1)
2673
p15 = Instance.new("WedgePart", m)
2674
p15.BrickColor = BrickColor.new("Royal purple")
2675
p15.Material = Enum.Material.Neon
2676
p15.Name = "Wedge"
2677
p15.FormFactor = Enum.FormFactor.Custom
2678
p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
2679
p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
2680
p15.CanCollide = false
2681
p15.Locked = true
2682
p15.TopSurface = Enum.SurfaceType.Smooth
2683
b9 = Instance.new("SpecialMesh", p15)
2684
b9.MeshType = Enum.MeshType.Wedge
2685
b9.Name = "Mesh"
2686
b9.Scale = Vector3.new(0.200000003, 1, 1)
2687
p16 = Instance.new("WedgePart", m)
2688
p16.BrickColor = BrickColor.new("Royal purple")
2689
p16.Material = Enum.Material.Neon
2690
p16.Name = "Wedge"
2691
p16.FormFactor = Enum.FormFactor.Custom
2692
p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
2693
p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
2694
p16.CanCollide = false
2695
p16.Locked = true
2696
p16.TopSurface = Enum.SurfaceType.Smooth
2697
b10 = Instance.new("SpecialMesh", p16)
2698
b10.MeshType = Enum.MeshType.Wedge
2699
b10.Name = "Mesh"
2700
b10.Scale = Vector3.new(0.200000003, 1, 1)
2701
w1 = Instance.new("Weld", p1)
2702
w1.Name = "Part_Weld"
2703
w1.Part0 = p1
2704
w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
2705
w1.Part1 = p2
2706
w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2707
w2 = Instance.new("Weld", p2)
2708
w2.Name = "Part_Weld"
2709
w2.Part0 = p2
2710
w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2711
w2.Part1 = p3
2712
w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
2713
w3 = Instance.new("Weld", p3)
2714
w3.Name = "Part_Weld"
2715
w3.Part0 = p3
2716
w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
2717
w3.Part1 = p4
2718
w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
2719
w4 = Instance.new("Weld", p4)
2720
w4.Name = "Part_Weld"
2721
w4.Part0 = p4
2722
w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
2723
w4.Part1 = p5
2724
w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2725
w5 = Instance.new("Weld", p5)
2726
w5.Name = "Part_Weld"
2727
w5.Part0 = p5
2728
w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2729
w5.Part1 = p6
2730
w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
2731
w6 = Instance.new("Weld", p6)
2732
w6.Name = "Part_Weld"
2733
w6.Part0 = p6
2734
w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
2735
w6.Part1 = p7
2736
w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
2737
w7 = Instance.new("Weld", p7)
2738
w7.Name = "Part_Weld"
2739
w7.Part0 = p7
2740
w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
2741
w7.Part1 = p8
2742
w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2743
w8 = Instance.new("Weld", p8)
2744
w8.Name = "Wedge_Weld"
2745
w8.Part0 = p8
2746
w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2747
w8.Part1 = p9
2748
w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
2749
w9 = Instance.new("Weld", p9)
2750
w9.Name = "Part_Weld"
2751
w9.Part0 = p9
2752
w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
2753
w9.Part1 = p10
2754
w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2755
w10 = Instance.new("Weld", p10)
2756
w10.Name = "Part_Weld"
2757
w10.Part0 = p10
2758
w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2759
w10.Part1 = p11
2760
w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2761
w11 = Instance.new("Weld", p11)
2762
w11.Name = "Part_Weld"
2763
w11.Part0 = p11
2764
w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
2765
w11.Part1 = p12
2766
w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
2767
w12 = Instance.new("Weld", p12)
2768
w12.Name = "Part_Weld"
2769
w12.Part0 = p12
2770
w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
2771
w12.Part1 = p13
2772
w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
2773
w13 = Instance.new("Weld", p13)
2774
w13.Name = "Wedge_Weld"
2775
w13.Part0 = p13
2776
w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
2777
w13.Part1 = p14
2778
w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
2779
w14 = Instance.new("Weld", p14)
2780
w14.Name = "Wedge_Weld"
2781
w14.Part0 = p14
2782
w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
2783
w14.Part1 = p15
2784
w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
2785
w15 = Instance.new("Weld", p15)
2786
w15.Name = "Wedge_Weld"
2787
w15.Part0 = p15
2788
w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
2789
w15.Part1 = p16
2790
w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
2791
m.Parent = rleg
2792
m:MakeJoints()
2793
----------------------------------------------------
2794
local cor6 = Instance.new("Part", rleg.RightLeg)
2795
cor6.Name = "Thingy"
2796
cor6.Locked = true
2797
cor6.BottomSurface = 0
2798
cor6.CanCollide = false
2799
cor6.Size = Vector3.new(2, 1, 1)
2800
cor6.Transparency = 1
2801
cor6.TopSurface = 0
2802
corw2 = Instance.new("Weld", cor6)
2803
corw2.Part0 = rleg
2804
corw2.Part1 = cor6
2805
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2806
corw2.C1 = CFrame.new(0, 0, 0)
2807
weld2 = Instance.new("Weld", rleg.RightLeg)
2808
weld2.Part0 = cor6
2809
weld2.Part1 = p7
2810
weld2.C0 = CFrame.new(0, 0, 0)
2811
----------------------------------------------------
2812
local m = Instance.new("Model")
2813
m.Name = "LeftLeg"
2814
p1 = Instance.new("WedgePart", m)
2815
p1.BrickColor = BrickColor.new("Royal purple")
2816
p1.Material = Enum.Material.Neon
2817
p1.Name = "Wedge"
2818
p1.FormFactor = Enum.FormFactor.Custom
2819
p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
2820
p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
2821
p1.CanCollide = false
2822
p1.Locked = true
2823
p1.TopSurface = Enum.SurfaceType.Smooth
2824
b1 = Instance.new("SpecialMesh", p1)
2825
b1.MeshType = Enum.MeshType.Wedge
2826
b1.Name = "Mesh"
2827
b1.Scale = Vector3.new(0.200000003, 1, 1)
2828
p2 = Instance.new("WedgePart", m)
2829
p2.BrickColor = BrickColor.new("Royal purple")
2830
p2.Material = Enum.Material.Neon
2831
p2.Name = "Wedge"
2832
p2.FormFactor = Enum.FormFactor.Custom
2833
p2.Size = Vector3.new(1, 1.19999981, 4)
2834
p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
2835
p2.CanCollide = false
2836
p2.Locked = true
2837
p2.TopSurface = Enum.SurfaceType.Smooth
2838
b2 = Instance.new("SpecialMesh", p2)
2839
b2.MeshType = Enum.MeshType.Wedge
2840
b2.Name = "Mesh"
2841
b2.Scale = Vector3.new(0.600000024, 1, 1)
2842
p3 = Instance.new("Part", m)
2843
p3.BrickColor = BrickColor.new("Really black")
2844
p3.Material = Enum.Material.Metal
2845
p3.Name = "Main"
2846
p3.FormFactor = Enum.FormFactor.Custom
2847
p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
2848
p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
2849
p3.CanCollide = false
2850
p3.Locked = true
2851
p3.BottomSurface = Enum.SurfaceType.Smooth
2852
p3.TopSurface = Enum.SurfaceType.Smooth
2853
p4 = Instance.new("Part", m)
2854
p4.BrickColor = BrickColor.new("Really black")
2855
p4.Material = Enum.Material.Neon
2856
p4.FormFactor = Enum.FormFactor.Custom
2857
p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2858
p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
2859
p4.CanCollide = false
2860
p4.Locked = true
2861
p4.BottomSurface = Enum.SurfaceType.Smooth
2862
p4.TopSurface = Enum.SurfaceType.Smooth
2863
b3 = Instance.new("SpecialMesh", p4)
2864
b3.MeshType = Enum.MeshType.Sphere
2865
b3.Name = "Mesh"
2866
p5 = Instance.new("WedgePart", m)
2867
p5.BrickColor = BrickColor.new("Royal purple")
2868
p5.Material = Enum.Material.Neon
2869
p5.Name = "Wedge"
2870
p5.FormFactor = Enum.FormFactor.Custom
2871
p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
2872
p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
2873
p5.CanCollide = false
2874
p5.Locked = true
2875
p5.TopSurface = Enum.SurfaceType.Smooth
2876
b4 = Instance.new("SpecialMesh", p5)
2877
b4.MeshType = Enum.MeshType.Wedge
2878
b4.Name = "Mesh"
2879
b4.Scale = Vector3.new(0.200000003, 1, 1)
2880
p6 = Instance.new("Part", m)
2881
p6.BrickColor = BrickColor.new("Royal purple")
2882
p6.Material = Enum.Material.Neon
2883
p6.FormFactor = Enum.FormFactor.Custom
2884
p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
2885
p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
2886
p6.CanCollide = false
2887
p6.Locked = true
2888
p6.BottomSurface = Enum.SurfaceType.Smooth
2889
p6.TopSurface = Enum.SurfaceType.Smooth
2890
p7 = Instance.new("Part", m)
2891
p7.BrickColor = BrickColor.new("Royal purple")
2892
p7.Material = Enum.Material.Neon
2893
p7.FormFactor = Enum.FormFactor.Custom
2894
p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
2895
p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
2896
p7.CanCollide = false
2897
p7.Locked = true
2898
p7.BottomSurface = Enum.SurfaceType.Smooth
2899
p7.TopSurface = Enum.SurfaceType.Smooth
2900
p8 = Instance.new("Part", m)
2901
p8.BrickColor = BrickColor.new("Really black")
2902
p8.Material = Enum.Material.Neon
2903
p8.FormFactor = Enum.FormFactor.Custom
2904
p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2905
p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
2906
p8.CanCollide = false
2907
p8.Locked = true
2908
p8.BottomSurface = Enum.SurfaceType.Smooth
2909
p8.TopSurface = Enum.SurfaceType.Smooth
2910
b5 = Instance.new("SpecialMesh", p8)
2911
b5.MeshType = Enum.MeshType.Sphere
2912
b5.Name = "Mesh"
2913
p9 = Instance.new("Part", m)
2914
p9.BrickColor = BrickColor.new("Really black")
2915
p9.Material = Enum.Material.Neon
2916
p9.FormFactor = Enum.FormFactor.Custom
2917
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2918
p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
2919
p9.CanCollide = false
2920
p9.Locked = true
2921
p9.BottomSurface = Enum.SurfaceType.Smooth
2922
p9.TopSurface = Enum.SurfaceType.Smooth
2923
b6 = Instance.new("SpecialMesh", p9)
2924
b6.MeshType = Enum.MeshType.Sphere
2925
b6.Name = "Mesh"
2926
p10 = Instance.new("Part", m)
2927
p10.BrickColor = BrickColor.new("Royal purple")
2928
p10.Material = Enum.Material.Neon
2929
p10.FormFactor = Enum.FormFactor.Custom
2930
p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
2931
p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
2932
p10.CanCollide = false
2933
p10.Locked = true
2934
p10.BottomSurface = Enum.SurfaceType.Smooth
2935
p10.TopSurface = Enum.SurfaceType.Smooth
2936
p11 = Instance.new("Part", m)
2937
p11.BrickColor = BrickColor.new("Royal purple")
2938
p11.Material = Enum.Material.Neon
2939
p11.FormFactor = Enum.FormFactor.Custom
2940
p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
2941
p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
2942
p11.CanCollide = false
2943
p11.Locked = true
2944
p11.BottomSurface = Enum.SurfaceType.Smooth
2945
p11.TopSurface = Enum.SurfaceType.Smooth
2946
p12 = Instance.new("WedgePart", m)
2947
p12.BrickColor = BrickColor.new("Royal purple")
2948
p12.Material = Enum.Material.Neon
2949
p12.Name = "Wedge"
2950
p12.FormFactor = Enum.FormFactor.Custom
2951
p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
2952
p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
2953
p12.CanCollide = false
2954
p12.Locked = true
2955
p12.TopSurface = Enum.SurfaceType.Smooth
2956
b7 = Instance.new("SpecialMesh", p12)
2957
b7.MeshType = Enum.MeshType.Wedge
2958
b7.Name = "Mesh"
2959
b7.Scale = Vector3.new(0.200000003, 1, 1)
2960
p13 = Instance.new("Part", m)
2961
p13.BrickColor = BrickColor.new("Really black")
2962
p13.Material = Enum.Material.Neon
2963
p13.FormFactor = Enum.FormFactor.Custom
2964
p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2965
p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
2966
p13.CanCollide = false
2967
p13.Locked = true
2968
p13.BottomSurface = Enum.SurfaceType.Smooth
2969
p13.TopSurface = Enum.SurfaceType.Smooth
2970
b8 = Instance.new("SpecialMesh", p13)
2971
b8.MeshType = Enum.MeshType.Sphere
2972
b8.Name = "Mesh"
2973
p14 = Instance.new("Part", m)
2974
p14.BrickColor = BrickColor.new("Really black")
2975
p14.Material = Enum.Material.Neon
2976
p14.FormFactor = Enum.FormFactor.Custom
2977
p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2978
p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
2979
p14.CanCollide = false
2980
p14.Locked = true
2981
p14.BottomSurface = Enum.SurfaceType.Smooth
2982
p14.TopSurface = Enum.SurfaceType.Smooth
2983
b9 = Instance.new("SpecialMesh", p14)
2984
b9.MeshType = Enum.MeshType.Sphere
2985
b9.Name = "Mesh"
2986
w1 = Instance.new("Weld", p1)
2987
w1.Name = "Wedge_Weld"
2988
w1.Part0 = p1
2989
w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
2990
w1.Part1 = p2
2991
w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
2992
w2 = Instance.new("Weld", p2)
2993
w2.Name = "Part_Weld"
2994
w2.Part0 = p2
2995
w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
2996
w2.Part1 = p3
2997
w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
2998
w3 = Instance.new("Weld", p3)
2999
w3.Name = "Part_Weld"
3000
w3.Part0 = p3
3001
w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
3002
w3.Part1 = p4
3003
w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3004
w4 = Instance.new("Weld", p4)
3005
w4.Name = "Wedge_Weld"
3006
w4.Part0 = p4
3007
w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3008
w4.Part1 = p5
3009
w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
3010
w5 = Instance.new("Weld", p5)
3011
w5.Name = "Part_Weld"
3012
w5.Part0 = p5
3013
w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
3014
w5.Part1 = p6
3015
w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
3016
w6 = Instance.new("Weld", p6)
3017
w6.Name = "Part_Weld"
3018
w6.Part0 = p6
3019
w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
3020
w6.Part1 = p7
3021
w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
3022
w7 = Instance.new("Weld", p7)
3023
w7.Name = "Part_Weld"
3024
w7.Part0 = p7
3025
w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
3026
w7.Part1 = p8
3027
w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3028
w8 = Instance.new("Weld", p8)
3029
w8.Name = "Part_Weld"
3030
w8.Part0 = p8
3031
w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3032
w8.Part1 = p9
3033
w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
3034
w9 = Instance.new("Weld", p9)
3035
w9.Name = "Part_Weld"
3036
w9.Part0 = p9
3037
w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
3038
w9.Part1 = p10
3039
w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3040
w10 = Instance.new("Weld", p10)
3041
w10.Name = "Part_Weld"
3042
w10.Part0 = p10
3043
w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3044
w10.Part1 = p11
3045
w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3046
w11 = Instance.new("Weld", p11)
3047
w11.Name = "Wedge_Weld"
3048
w11.Part0 = p11
3049
w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3050
w11.Part1 = p12
3051
w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
3052
w12 = Instance.new("Weld", p12)
3053
w12.Name = "Part_Weld"
3054
w12.Part0 = p12
3055
w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
3056
w12.Part1 = p13
3057
w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3058
w13 = Instance.new("Weld", p13)
3059
w13.Name = "Part_Weld"
3060
w13.Part0 = p13
3061
w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3062
w13.Part1 = p14
3063
w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3064
w14 = Instance.new("Weld", p14)
3065
w14.Name = "Wedge_Weld"
3066
w14.Part0 = p14
3067
w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
3068
m.Parent = lleg
3069
m:MakeJoints()
3070
----------------------------------------------------
3071
local cor7 = Instance.new("Part", lleg.LeftLeg)
3072
cor7.Name = "Thingy"
3073
cor7.Locked = true
3074
cor7.BottomSurface = 0
3075
cor7.CanCollide = false
3076
cor7.Size = Vector3.new(2, 1, 1)
3077
cor7.Transparency = 1
3078
cor7.TopSurface = 0
3079
corw2 = Instance.new("Weld", cor7)
3080
corw2.Part0 = lleg
3081
corw2.Part1 = cor7
3082
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3083
corw2.C1 = CFrame.new(0, 0, 0)
3084
weld2 = Instance.new("Weld", lleg.LeftLeg)
3085
weld2.Part0 = cor7
3086
weld2.Part1 = p3
3087
weld2.C0 = CFrame.new(0, 0, 0)
3088
----------------------------------------------------
3089
function weld5(part0, part1, c0, c1)
3090
    weeld=Instance.new("Weld", part0)
3091
    weeld.Part0=part0
3092
    weeld.Part1=part1
3093
    weeld.C0=c0
3094
    weeld.C1=c1
3095
    return weeld
3096
end
3097
----------------------------------------------------
3098
function newRay(start,face,range,wat)
3099
        local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
3100
        hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
3101
        return rey,hit,pos
3102
end
3103
----------------------------------------------------
3104
mod5 = Instance.new("Model",char)
3105
3106
function FindNearestTorso(Position,Distance,SinglePlayer)
3107
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
3108
        local List = {}
3109
        for i,v in pairs(workspace:GetChildren())do
3110
            if v:IsA("Model")then
3111
                if v:findFirstChild("Torso")then
3112
                    if v ~= char then
3113
                        if(v.Torso.Position -Position).magnitude <= Distance then
3114
                            table.insert(List,v)
3115
                        end 
3116
                    end 
3117
                end 
3118
            end 
3119
        end
3120
    return List
3121
end
3122
3123
function Landing()
3124
    part=Instance.new('Part',mod5)
3125
    part.Anchored=true
3126
    part.CanCollide=false
3127
    part.FormFactor='Custom'
3128
    part.Size=Vector3.new(.2,.2,.2)
3129
    part.CFrame=root.CFrame*CFrame.new(0,-2,0)
3130
    part.Transparency=.7
3131
    part.BrickColor=BrickColor.new('Really black')
3132
        part2=part:clone()
3133
        part2.Parent = mod5
3134
        part2.BrickColor=BrickColor.new('Royal purple')
3135
    mesh=Instance.new('SpecialMesh',part)
3136
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
3137
    mesh.Scale=Vector3.new(10,5,10)
3138
        mesh2=mesh:clone()
3139
        mesh2.Parent=part2
3140
        mesh2.Scale=Vector3.new(12, 6, 12)
3141
3142
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
3143
        if v:FindFirstChild('Humanoid') then
3144
            v.Humanoid:TakeDamage(math.random(20,30))
3145
            v.Humanoid.PlatformStand = true
3146
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
3147
        end
3148
    end
3149
3150
    coroutine.resume(coroutine.create(function() 
3151
        for i=0,3.8,0.05 do
3152
            wait()
3153
            part.CFrame=part.CFrame
3154
            part.Transparency=i
3155
                        part2.CFrame=part2.CFrame
3156
                        part2.Transparency=i
3157
            mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
3158
                        mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
3159
            end
3160
        part.Parent = nil
3161
    end))
3162
end
3163
----------------------------------------------------
3164
mod4 = Instance.new("Model",char)
3165
3166
ptez = {0.7, 0.8, 0.9, 1}
3167
3168
function FindNearestTorso(Position,Distance,SinglePlayer)
3169
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
3170
        local List = {}
3171
        for i,v in pairs(workspace:GetChildren())do
3172
            if v:IsA("Model")then
3173
                if v:findFirstChild("Torso")then
3174
                    if v ~= char then
3175
                        if(v.Torso.Position -Position).magnitude <= Distance then
3176
                            table.insert(List,v)
3177
                        end 
3178
                    end 
3179
                end 
3180
            end 
3181
        end
3182
    return List
3183
end
3184
3185
function GroundPound()
3186
    part=Instance.new('Part',mod4)
3187
    part.Anchored=true
3188
    part.CanCollide=false
3189
    part.FormFactor='Custom'
3190
    part.Size=Vector3.new(.2,.2,.2)
3191
    part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
3192
    part.Transparency=.7
3193
    part.BrickColor=BrickColor.new('Really black')
3194
    mesh=Instance.new('SpecialMesh',part)
3195
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
3196
    mesh.Scale=Vector3.new(3,3,3)
3197
    part2=Instance.new('Part',mod4)
3198
    part2.Anchored=true
3199
    part2.CanCollide=false
3200
    part2.FormFactor='Custom'
3201
    part2.Size=Vector3.new(.2,.2,.2)
3202
    part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
3203
    part2.Transparency=.7
3204
    part2.BrickColor=BrickColor.new('Royal purple')
3205
    mesh2=Instance.new('SpecialMesh',part2)
3206
    mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
3207
    mesh2.Scale=Vector3.new(3,1.5,3)
3208
    x = Instance.new("Sound",char)
3209
    x.SoundId = "http://www.roblox.com/asset/?id=157878578"
3210
    x.Pitch = ptez[math.random(1,#ptez)]
3211
    x.Volume = 1
3212
    wait(.1)
3213
    x:Play()
3214
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
3215
        if v:FindFirstChild('Humanoid') then
3216
            v.Humanoid:TakeDamage(math.random(8,15))
3217
        end
3218
    end
3219
    coroutine.resume(coroutine.create(function() 
3220
        for i=0,0.62,0.13 do
3221
            wait()
3222
            part.CFrame=part.CFrame
3223
            part.Transparency=i
3224
            mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
3225
            part2.CFrame=part2.CFrame
3226
            part2.Transparency=i
3227
            mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
3228
            end
3229
        part.Parent=nil
3230
        part2.Parent=nil
3231
        x:Destroy()
3232
    end))
3233
end
3234
----------------------------------------------------
3235
mod=Instance.new('Model',char)
3236
3237
function charge()
3238
    hed.Velocity=hed.CFrame.lookVector*200
3239
    part=Instance.new('Part',mod)
3240
    part.Anchored=true
3241
    part.CanCollide=false
3242
    part.FormFactor='Custom'
3243
    part.Size=Vector3.new(.2,.2,.2)
3244
    part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
3245
    part.Transparency=.7
3246
    part.BrickColor=BrickColor.new('Black')
3247
    mesh=Instance.new('SpecialMesh',part)
3248
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
3249
    mesh.Scale=Vector3.new(10,5,10)
3250
    part2=part:clone()
3251
    part2.Parent=mod
3252
    part2.BrickColor=BrickColor.new('Royal purple')
3253
    mesh2=mesh:clone()
3254
    mesh2.Parent=part2
3255
    mesh2.Scale=Vector3.new(20,10,20)
3256
    part3=part2:clone()
3257
    part3.Parent = mod
3258
    part3.BrickColor=BrickColor.new('Really black')
3259
    mesh3=mesh2:clone()
3260
    mesh2.Parent=part3
3261
    mesh3.Scale=Vector3.new(30,15,30)
3262
    coroutine.resume(coroutine.create(function() 
3263
        for i=0,1,0.1 do
3264
            wait()
3265
            part.CFrame=part.CFrame
3266
            part.Transparency=i
3267
            mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
3268
            part2.CFrame=part2.CFrame
3269
            part2.Transparency=i
3270
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
3271
            part3.CFrame=part3.CFrame
3272
            part3.Transparency=i
3273
            mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
3274
            end
3275
        part.Parent=nil
3276
        part2.Parent=nil
3277
        part3.Parent = nil
3278
    end))
3279
end
3280
----------------------------------------------------
3281
function FindNearestTorso(Position,Distance,SinglePlayer)
3282
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
3283
        local List = {}
3284
        for i,v in pairs(workspace:GetChildren())do
3285
            if v:IsA("Model")then
3286
                if v:findFirstChild("Torso")then
3287
                    if v ~= char then
3288
                        if(v.Torso.Position -Position).magnitude <= Distance then
3289
                            table.insert(List,v)
3290
                        end 
3291
                    end 
3292
                end 
3293
            end 
3294
        end
3295
    return List
3296
end
3297
3298
mod3 = Instance.new("Model",rleg)
3299
3300
function Stomp()
3301
    part=Instance.new('Part',mod3)
3302
    part.Anchored=true
3303
    part.CanCollide=false
3304
    part.FormFactor='Custom'
3305
    part.Size=Vector3.new(.2,.2,.2)
3306
    part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
3307
    part.Transparency=.7
3308
    part.BrickColor=BrickColor.new('Bright green')
3309
    mesh=Instance.new('SpecialMesh',part)
3310
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
3311
    mesh.Scale=Vector3.new(25,25,25)
3312
    part2=part:clone()
3313
    part2.Parent=mod3
3314
    part2.BrickColor=BrickColor.new('Bright green')
3315
    mesh2=mesh:clone()
3316
    mesh2.Parent=part2
3317
    mesh2.Scale=Vector3.new(15,15,15)
3318
    part3=part:clone()
3319
    part3.Parent=mod3
3320
    part3.TopSurface=0
3321
    part3.BottomSurface=0
3322
    part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
3323
    mesh3=Instance.new('SpecialMesh',part3)
3324
    mesh3.MeshType = 3
3325
    mesh3.Scale=Vector3.new(12,12,12)
3326
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
3327
        if v:FindFirstChild('Humanoid') then
3328
            v.Humanoid:TakeDamage(math.random(20,60))
3329
            v.Humanoid.PlatformStand = true
3330
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
3331
        end
3332
    end 
3333
    coroutine.resume(coroutine.create(function() 
3334
        for i=0,3.8,0.05 do
3335
            wait()
3336
            part.CFrame=part.CFrame
3337
            part.Transparency=i
3338
            mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
3339
            part2.CFrame=part2.CFrame
3340
            part2.Transparency=i
3341
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
3342
            part3.CFrame=part3.CFrame
3343
            part3.Transparency=i
3344
            mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
3345
        end
3346
    end))
3347
end
3348
----------------------------------------------------
3349
3350
local acos = math.acos
3351
local sqrt = math.sqrt
3352
local Vec3 = Vector3.new
3353
local fromAxisAngle = CFrame.fromAxisAngle
3354
3355
local function toAxisAngle(CFr)
3356
        local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
3357
        local Angle = math.acos((R00+R11+R22-1)/2)
3358
        local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
3359
        A = A == 0 and 0.00001 or A
3360
        local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
3361
        B = B == 0 and 0.00001 or B
3362
        local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
3363
        C = C == 0 and 0.00001 or C
3364
        local x = (R21-R12)/sqrt(A)
3365
        local y = (R02-R20)/sqrt(B)
3366
        local z = (R10-R01)/sqrt(C)
3367-
    if key == "r" then
3367+
3368
end
3369
3370
function ApplyTrig(Num,Func)
3371
        local Min,Max = Func(0),Func(1)
3372
        local i = Func(Num)
3373
        return (i-Min)/(Max-Min)
3374-
to = char.Absolution.Thingy2.Touched:connect(function(ht)
3374+
3375
                return (math.sin((1-Num)*math.pi)+1)/2
3376
        elseif Func == "cos" then
3377
                return (math.cos((1-Num)*math.pi)+1)/2
3378
        end]]
3379
end
3380
3381
function LerpCFrame(CFrame1,CFrame2,Num)
3382
        local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
3383
        return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
3384
end
3385
3386
function Crater(Torso,Radius)
3387
        Spawn(function()
3388
        local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
3389
        local Ignore = {}
3390
        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
3391
                if v.Character ~= nil then
3392
                        Ignore[#Ignore+1] = v.Character
3393
                end
3394
        end
3395
        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
3396
        if Hit == nil then return end
3397
        local Parts = {}
3398
        for i = 1,360,10 do
3399
                local P = Instance.new("Part",Torso.Parent)
3400
                P.Anchored = true
3401
                P.FormFactor = "Custom"
3402
                P.BrickColor = Hit.BrickColor
3403
                P.Material = Hit.Material
3404
                P.TopSurface = "Smooth"
3405
                P.BottomSurface = "Smooth"
3406
                P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
3407
                P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
3408
                Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
3409
                if math.random(0,5) == 0 then -- rubble
3410
                        local P = Instance.new("Part",Torso.Parent)
3411
                        P.Anchored = true
3412
                        P.FormFactor = "Custom"
3413
                        P.BrickColor = Hit.BrickColor
3414
                        P.Material = Hit.Material
3415
                        P.TopSurface = "Smooth"
3416
                        P.BottomSurface = "Smooth"
3417
                        P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
3418
                        P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
3419
                        Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
3420
                end
3421
        end
3422
        for i = 0,1,0.05 do
3423
                for i2,v in pairs(Parts) do
3424
                        v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
3425
                end
3426
                wait(0.02)
3427
        end
3428
        for i,v in pairs(Parts) do
3429
                if v[1].Size.X > 2.1 then
3430
                        v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
3431
                end
3432
                v[1].Anchored = false
3433
        end
3434
        for i = 0,1,0.05 do
3435
                for i2,v in pairs(Parts) do
3436
                        v[1].Transparency = i
3437
                        if i == 1 then
3438
                                v[1]:Destroy()
3439
                        elseif i >= 0.25 then
3440
                                v[1].CanCollide = false
3441
                        end
3442
                end
3443
                wait(0.02)
3444
        end
3445
        Parts = nil
3446
        end)
3447
end
3448
3449
----------------------------------------------------
3450
----------------------------------------------------
3451
Sit = false
3452
----------------------------------------------------
3453
sidz = {"231917888", "231917845", "231917806"}
3454
ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
3455
----------------------------------------------------
3456
pt = {0.7, 0.8, 0.9}
3457
----------------------------------------------------
3458
local orbt={}
3459
local stlt={}
3460
local chot={}
3461
local cfxt={}
3462
local pfxt={}
3463
local cns=0
3464
local cnOrb=nil
3465
Grab = false
3466
----------------------------------------------------
3467
mouse.KeyUp:connect(function(key)
3468
    if string.byte(key) == 52 then
3469
        char.Humanoid.WalkSpeed = 5
3470
    end
3471
end)
3472
----------------------------------------------------
3473
Change = false
3474
mouse.KeyDown:connect(function(key)
3475
	    if string.byte(key) == 52 then
3476-
to = char.Absolution.Thingy2.Touched:connect(function(ht)
3476+
3477
    end
3478
    if key == "n" then
3479
        if Change == false then
3480
            Change = true
3481
        stanceToggle = "Normal2"
3482
    elseif Change == true then
3483
        Change = false
3484
        stanceToggle = "Normal"
3485
        end
3486
    end
3487
if key == "v" then
3488
        if Sit == false then
3489
            Sit = true
3490
            hum.WalkSpeed = 0.001
3491
        stanceToggle = "Sitting"
3492
    elseif Sit == true then
3493
        Sit = false
3494
            hum.WalkSpeed = 7
3495
        stanceToggle = "Normal"
3496
        end
3497
    end
3498
if key == "t" then
3499
        if Debounces.CanAttack == true then
3500
        Debounces.CanAttack = false
3501
        Debounces.on = true
3502
        Debounces.NoIdl = true
3503
        for i = 1, 20 do
3504
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
3505
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) *  CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
3506
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
3507
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
3508
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
3509
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
3510
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
3511
            if Debounces.on == false then break end
3512
            rs:wait(2.6)
3513
        end
3514
        Spawn(function()
3515
            local Parts = {}
3516
            for Y = -5,5 do
3517
                local P = Instance.new("Part",char)
3518
                P.Anchored = true
3519
                P.FormFactor = "Custom"
3520
                P.CanCollide = false
3521
                P.Size = Vector3.new(1,2,1)
3522
                P.TopSurface = "SmoothNoOutlines"
3523
                P.BottomSurface = "SmoothNoOutlines"
3524
                P.BrickColor = BrickColor.new("Really black")
3525
                P.Name = tostring(Y)
3526
                local i = (Y+5)/(10)
3527
                i = 1-math.cos(math.pi*i-(math.pi/2))
3528
                P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
3529
                --[[P.Touched:connect(function(ht)
3530
                    local hit = ht.Parent
3531
                    if hit:FindFirstChild("Humanoid") then
3532
                        hit.Humanoid:TakeDamage(math.random(20,50))
3533
                    end
3534
                end)]]--
3535
        s = Instance.new("Sound",P)
3536
        s.SoundId = "rbxassetid://228343271"
3537
        s.Volume = .7
3538
        s.Pitch = 0.9
3539
        s:Play()
3540
P.Touched:connect(function(ht)
3541
        hit = ht.Parent
3542
        if ht and hit:IsA("Model") then
3543
                if hit:FindFirstChild("Humanoid") then
3544
                    if hit.Name ~= p.Name then
3545
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3546
                                Debounces.Slashed = true]]--
3547
                                    hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
3548
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
3549
                                wait(1)
3550
                                --Debounces.Slashed = false
3551
                        --end
3552
                end
3553
                end
3554
        elseif ht and hit:IsA("Hat") then
3555
            if hit.Parent.Name ~= p.Name then
3556
                if hit.Parent:FindFirstChild("Humanoid") then
3557
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3558
                                Debounces.Slashed = true]]--
3559
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
3560
                                hit:FindFirstChild("Humanoid").PlatformStand = true
3561
                                wait(1)
3562
                    --Debounces.Slashed = false
3563
                --end
3564
            end
3565
        end
3566
    end
3567
end)
3568
                Parts[#Parts+1] = P
3569
            end
3570
            local BREAKIT = false
3571
            local CParts = {}
3572
            local Rocks = {}
3573
            local LastPos = nil
3574
            for i = 1,70 do
3575
                for i2,v in pairs(Parts) do
3576
                    v.CFrame = v.CFrame*CFrame.new(0,0,-4)
3577
                    local cf = v.CFrame
3578
                    v.Size = v.Size+Vector3.new(0.4,0.35,0)
3579
                    v.CFrame = cf
3580
                    v.Transparency = v.Transparency+0.02
3581-
    if key == "v" then
3581+
3582
                    if v.Name == "0" then
3583
                        local Ignore = {}
3584
                        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
3585
                            if v.Character ~= nil then
3586
                                Ignore[#Ignore+1] = v.Character
3587
                            end
3588
                        end
3589
                        local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
3590
                        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
3591
                        if Hit ~= nil then
3592
                            if #Rocks == 0 then
3593
                                for i = 1,5 do
3594
                                    local P = Instance.new("Part",char)
3595-
    if key == "t" then
3595+
3596
                                    P.Anchored = true
3597
                                    P.FormFactor = "Custom"
3598
                                    P.BrickColor = Hit.BrickColor
3599
                                    P.Material = Hit.Material
3600
                                    P.TopSurface = "Smooth"
3601
                                    P.BottomSurface = "Smooth"
3602
                                    P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
3603
                                end
3604
                            end
3605
                            for i,P in pairs(Rocks) do
3606
                                P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
3607
                            end
3608
                            local P = Instance.new("Part",char)
3609
                            CParts[#CParts+1] = {P,tick()}
3610
                            P.Anchored = true
3611
                            P.FormFactor = "Custom"
3612
                            P.BrickColor = Hit.BrickColor
3613
                            P.Material = Hit.Material
3614
                            P.TopSurface = "Smooth"
3615
                            P.BottomSurface = "Smooth"
3616
                            P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
3617
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
3618
                            Pos = Pos.p
3619
                            P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
3620
                            local P = P:Clone()
3621
                            CParts[#CParts+1] = {P,tick()}
3622
                            P.Parent = char
3623
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
3624
                            Pos = Pos.p
3625
                            P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
3626
                            if LastPos ~= nil then
3627
                                local P = P:Clone()
3628
                                CParts[#CParts+1] = {P,tick()}
3629
                                P.Parent = char
3630
                                P.BrickColor = BrickColor.new("Really black")
3631
                                Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
3632
                                Pos = Pos.p
3633
                                local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
3634
                                P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
3635
                                --P.Velocity = Vector3.new(0,-1000,0)
3636
                                P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
3637
                            end
3638
                            LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
3639
                        end
3640
                    end
3641
                end
3642
                if BREAKIT then break end
3643
                wait(0.002)
3644
            end
3645
            for i,v in pairs(Rocks) do
3646
                CParts[#CParts+1] = {v,tick()}
3647
            end
3648
            for i,v in pairs(Parts) do
3649
                v:Destroy()
3650
            end
3651
            Parts = nil
3652
            while true do
3653
                local t = tick()
3654
                local p = nil
3655
                for i,v in pairs(CParts) do
3656
                    if t-v[2] > 4 then
3657
                        v[1].Transparency = v[1].Transparency+0.05
3658
                        if v[1].Transparency >= 1 then
3659
                            v[1]:Destroy()
3660
                            CParts[i] = nil
3661
                        end
3662
                    end
3663
                    p = v
3664
                end
3665
                if p == nil then break end
3666
                wait(0.002)
3667
            end
3668
            for i,v in pairs(CParts) do
3669
                v:Destroy()
3670
            end
3671
            CParts = {}
3672
        end)
3673
        for i = 1, 20 do
3674
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
3675
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) *   CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
3676
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
3677
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
3678
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
3679
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
3680
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
3681
            if Debounces.on == false then break end
3682
            rs:wait(2)
3683
        end
3684
    if Debounces.CanAttack == false then
3685
        Debounces.CanAttack = true
3686
        Debounces.on = false
3687
        Debounces.NoIdl = false
3688
            end
3689
        end
3690
    end
3691
if key == "e" then
3692
    larm.BrickColor = BrickColor.new("Royal purple")
3693
    rarm.BrickColor = BrickColor.new("Royal purple")
3694
        if Debounces.CanAttack == true then
3695
        Debounces.CanAttack = false
3696
        Debounces.on = true
3697
        Debounces.NoIdl = true
3698
        for i = 1, 18 do
3699
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
3700
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
3701
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
3702
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
3703
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
3704
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
3705
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
3706
        if Debounces.on == false then break end
3707
            rs:wait(4)
3708
        end
3709
        local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
3710
        local rng = Instance.new("Part", char.Absolution.Handle)
3711
        rng.Anchored = true
3712
        rng.BrickColor = BrickColor.new("Really black")
3713
        rng.CanCollide = true
3714
        rng.FormFactor = 3
3715
        rng.Name = "Ring"
3716
        rng.Size = Vector3.new(1, 1, 1)
3717
        rng.CanCollide = false
3718
        rng.Transparency = 0.35
3719
        rng.TopSurface = 0
3720
        rng.BottomSurface = 0
3721
        rng.CFrame = HandCF
3722
        local rngm = Instance.new("SpecialMesh", rng)
3723
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
3724
        rngm.Scale = Vector3.new(1, 1, 2)
3725
            x = Instance.new("Sound", hed)
3726
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
3727
            x.Looped = false
3728
            x.Pitch = .7
3729
            x.Volume = 1
3730
            x1 = Instance.new("Sound", hed)
3731
            x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
3732
            x1.Looped = false
3733
            x1.Pitch = .7
3734
            x1.Volume = 1
3735
            x:Play()
3736
            x1:Play()
3737
            rngto = rng.Touched:connect(function(ht)
3738
            hit = ht.Parent
3739
            if ht and hit:IsA("Model") then
3740
                    if hit:FindFirstChild("Humanoid") then
3741
                        if hit.Name ~= p.Name then
3742
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3743
                                    Debounces.Slashed = true]]--
3744
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
3745
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
3746
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
3747
                                    --Debounces.Slashed = false
3748
                            --end
3749
                        end
3750
                    end
3751
            elseif ht and hit:IsA("Hat") then
3752
                if hit.Parent.Name ~= p.Name then
3753
                    if hit.Parent:FindFirstChild("Humanoid") then
3754
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
3755
                                    Debounces.Slashed = true]]--
3756
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
3757
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
3758
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
3759
                        --Debounces.Slashed = false
3760
                    end
3761
                end
3762
            end    
3763
        end)
3764
                coroutine.wrap(function()
3765
                for i = 1, 60, 2 do
3766
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
3767
                rng.Size = rngm.Scale
3768
                rng.CFrame = HandCF
3769
                rng.Transparency = i/60
3770
                wait()
3771
                end
3772
                wait()
3773
                rng:Destroy()
3774
                end)()
3775
        for i = 1, 18 do
3776
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
3777
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
3778
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
3779
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
3780
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
3781
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
3782
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
3783
        if Debounces.on == false then break end
3784
            rs:wait(2.4)
3785
        end
3786
        larm.BrickColor = BrickColor.new("Really black")
3787
        rarm.BrickColor = BrickColor.new("Really black")
3788
        x:Destroy()
3789
        x1:Destroy()
3790
    if Debounces.CanAttack == false then
3791-
    if key == "e" then
3791+
3792
        Debounces.on = false
3793
        Debounces.NoIdl = false
3794
            end
3795
        end
3796
    end
3797
if key == "y" then
3798
                if Debounces.CanAttack == true then
3799
            Debounces.CanAttack = false
3800
            Debounces.on = true
3801
            Debounces.NoIdl = true
3802
                                for i = 1, 15 do
3803
                                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
3804
                                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
3805
                                        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
3806
                                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
3807
                                        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
3808
                                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
3809
                                        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
3810
                    if Debounces.on == false then break end
3811
                    rs:wait(2.7)
3812
                end
3813
                                x = Instance.new("Sound",char)
3814
                                x.SoundId = "rbxassetid://228343271"
3815
                                x.Pitch = 1
3816
                                x.Volume = .8
3817
                                wait(.1)
3818
                                x:Play()
3819
                                Debounces.on = false
3820
                                Debounces.Here = false
3821
                                shot = shot + 1
3822
local rng = Instance.new("Part", char)
3823
rng.Anchored = true
3824
rng.BrickColor = BrickColor.new("Royal purple")
3825
rng.CanCollide = false
3826
rng.FormFactor = 3
3827
rng.Name = "Ring"
3828
rng.Size = Vector3.new(1, 1, 1)
3829
rng.Transparency = 0.35
3830
rng.TopSurface = 0
3831
rng.BottomSurface = 0
3832
rng2 = rng:clone()
3833
rng3 = rng2:clone()
3834
rng4 = rng2:clone()
3835
local rngm = Instance.new("SpecialMesh", rng)
3836
rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
3837
rngm.Scale = Vector3.new(10, 10, 1)
3838
rngm2 = rngm:clone()
3839
rngm2.Scale = Vector3.new(5, 5, 3)
3840
rngm3=rngm2:clone()
3841
rngm3.Parent = rng3
3842
rngm3.Scale = Vector3.new(8, 8, 1)
3843
rngm4 = rngm2:clone()
3844
rngm4.Parent = rng4
3845
rngm4.Scale = Vector3.new(6, 6, 1)
3846
local bem = Instance.new("Part", char)
3847
bem.Anchored = true
3848
bem.BrickColor = BrickColor.new("Really black")
3849
bem.CanCollide = false
3850
bem.FormFactor = 3
3851
bem.Name = "Beam" .. shot
3852
bem.Size = Vector3.new(1, 1, 1)
3853
bem.Transparency = 0.35
3854
bem.TopSurface = 0
3855
bem.BottomSurface = 0
3856
local bemm = Instance.new("SpecialMesh", bem)
3857
bemm.MeshType = 4
3858
bemm.Scale = Vector3.new(1, 4, 4)
3859
local out = Instance.new("Part", char)
3860
out.Anchored = true
3861
out.BrickColor = BrickColor.new("Really black")
3862
out.CanCollide = false
3863
out.FormFactor = 3
3864
out.Name = "Out"
3865
out.Size = Vector3.new(4, 4, 4)
3866
out.Transparency = 0.35
3867
out.TopSurface = 0
3868
out.BottomSurface = 0
3869
local outm = Instance.new("SpecialMesh", out)
3870
outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
3871
outm.Scale = Vector3.new(4, 4, 4)
3872
local bnd = Instance.new("Part", char)
3873
bnd.Anchored = true
3874
bnd.BrickColor = BrickColor.new("Royal purple")
3875
bnd.CanCollide = false
3876
bnd.FormFactor = 3
3877
bnd.Name = "Bend"
3878
bnd.Size = Vector3.new(1, 1, 1)
3879
bnd.Transparency = 1
3880
bnd.TopSurface = 0
3881
bnd.BottomSurface = 0
3882
local bndm = Instance.new("SpecialMesh", bnd)
3883
bndm.MeshType = 3
3884
bndm.Scale = Vector3.new(8, 8, 8)
3885
out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
3886
bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
3887
bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
3888
rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
3889
rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
3890
rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
3891
Debounces.Shewt = true
3892
coroutine.wrap(function()
3893
for i = 1, 20, 0.2 do
3894
rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
3895
rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
3896
rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
3897
rng.Transparency = i/20
3898
rng3.Transparency = 1/24
3899
rng4.Transparency = i/26
3900-
        if key == "y" then
3900+
3901
end
3902
wait()
3903
rng:Destroy()
3904
end)()
3905
if Debounces.Shewt == true then
3906
char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
3907
hit = ht.Parent
3908
if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
3909
if HasntTouched(hit.Name) == true and deb == false then
3910
deb = true
3911
coroutine.wrap(function()
3912
hit:FindFirstChild("Humanoid").PlatformStand = true
3913
hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
3914
hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
3915
end)()
3916
table.insert(Touche, hit.Name)
3917
deb = false
3918
end
3919
elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
3920
if HasntTouched(hit.Parent.Name) == true and deb == false then
3921
deb = true
3922
coroutine.wrap(function()
3923
hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
3924
hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
3925
wait(1)
3926
hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
3927
end)()
3928
table.insert(Touche, hit.Parent.Name)
3929
deb = false
3930
for i, v in pairs(Touche) do
3931
print(v)
3932
end
3933
end
3934
end
3935
end)
3936
end
3937
for i = 0, 260, 8 do
3938
bem.Size = Vector3.new(i, 2, 2)
3939
bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
3940
bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
3941
bnd.Size = Vector3.new(1,1,1)
3942
bndm.Scale = Vector3.new(8,8,8)
3943
if i % 10 == 0 then
3944
local newRng = rng2:Clone()
3945
newRng.Parent = char
3946
newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
3947
local newRngm = rngm2:clone()
3948
newRngm.Parent=newRng
3949
coroutine.wrap(function()
3950
for i = 1, 10, 0.2 do
3951
newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
3952
newRng.Transparency = i/10
3953
wait()
3954
end
3955
wait()
3956
newRng:Destroy()
3957
end)()
3958
end
3959
wait()
3960
end
3961
wait()
3962
Debounces.Shewt = false
3963
bem:Destroy()
3964
out:Destroy()
3965
bnd:Destroy()
3966
Debounces.Ready = false
3967
for i, v in pairs(Touche) do
3968
table.remove(Touche, i)
3969
end
3970
wait()
3971
table.insert(Touche, char.Name)
3972
Debounces.NoIdl = false
3973
if Debounces.CanAttack == false then
3974
Debounces.CanAttack = true
3975
end
3976
end
3977
end
3978
if key == "f" then
3979
    larm.BrickColor = BrickColor.new("Royal purple")
3980
    rarm.BrickColor = BrickColor.new("Royal purple")
3981
        if Debounces.CanAttack == true then
3982
            Debounces.CanAttack = false
3983
            Debounces.on = true
3984
            Debounces.NoIdl = true
3985
                for i = 1, 20 do
3986
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
3987
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
3988
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
3989
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
3990
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
3991
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
3992
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
3993
                    if Debounces.on == false then break end
3994
                    rs:wait(6)
3995
                end
3996
                z = Instance.new("Sound",char)
3997
                z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
3998
                z.Pitch = ptz[math.random(1,#ptz)]
3999
                z.Volume = 1
4000
                z1 = Instance.new("Sound",char)
4001
                z1.SoundId = z.SoundId
4002
                z1.Pitch = z.Pitch
4003
                z1.Volume = 1
4004
                z:Play()
4005
                z1:Play()
4006
                Stomp()
4007
                for i = 1, 20 do
4008
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
4009
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
4010
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
4011
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
4012
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
4013
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
4014
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
4015
                    if Debounces.on == false then break end
4016
                    rs:wait(2.5)
4017
                end
4018
        if Debounces.CanAttack == false then
4019
            Debounces.CanAttack = true
4020
            Debounces.on = false
4021
            Debounces.NoIdl = false
4022
            larm.BrickColor = BrickColor.new("Really black")
4023
            rarm.BrickColor = BrickColor.new("Really black")
4024
            end
4025
        end
4026
    end
4027
if key == "g" then
4028
    larm.BrickColor = BrickColor.new("Royal purple")
4029
    rarm.BrickColor = BrickColor.new("Royal purple")
4030
        if Debounces.CanAttack == true then
4031
        Debounces.CanAttack = false
4032
        Debounces.on = true
4033
        Debounces.NoIdl = true
4034
        chrg = lleg.Touched:connect(function(ht)
4035
        hit = ht.Parent
4036
            if ht and hit:IsA("Model") then
4037
                    if hit:FindFirstChild("Humanoid") then
4038
                        if hit.Name ~= p.Name then
4039
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
4040
                                    Debounces.Slashed = true]]--
4041
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
4042
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4043
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4044
                                    --Debounces.Slashed = false
4045
                            --end
4046
                        end
4047
                    end
4048
            elseif ht and hit:IsA("Hat") then
4049
                if hit.Parent.Name ~= p.Name then
4050
                    if hit.Parent:FindFirstChild("Humanoid") then
4051
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
4052
                                    Debounces.Slashed = true]]--
4053
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
4054
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4055
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4056
                        --Debounces.Slashed = false
4057
                    end
4058
                end
4059
            end    
4060
        end)
4061
        for i = 1, 14 do
4062
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
4063
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.2)
4064
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
4065
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2)
4066
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
4067
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
4068
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
4069
            if Debounces.on == false then break end
4070
            rs:wait(3)
4071
        end
4072
        charge()
4073
        z = Instance.new("Sound",char)
4074
        z.SoundId = "rbxassetid://200632875"
4075
        z.Volume = 1
4076
        z.Pitch = .8
4077
        z1 = Instance.new("Sound",char)
4078
        z1.SoundId = "rbxassetid://200632875"
4079
        z1.Volume = 1
4080
        z1.Pitch = .9
4081
        z:Play()
4082
        z1:Play()
4083
        wait(1)
4084
        z:Destroy()
4085
        z1:Destroy()
4086-
    if key == "f" then
4086+
4087
        if Debounces.CanAttack == false then
4088
            Debounces.CanAttack = true
4089
            Debounces.on = false
4090
            Debounces.NoIdl = false
4091
            larm.BrickColor = BrickColor.new("Really black")
4092
            rarm.BrickColor = BrickColor.new("Really black")
4093
            end
4094
        end
4095
    end
4096
if key == "h" then
4097
        if Debounces.CanJoke == true then
4098
            Debounces.CanJoke = false
4099
            u = Instance.new("Sound")
4100
            u.SoundId = "http://www.roblox.com/asset/?id=138199573"
4101
            u.Parent = char
4102
            u.Looped = false
4103
            u.Pitch = pt[math.random(1,#pt)]
4104
            u.Volume = 1
4105
            u2 = Instance.new("Sound")
4106
            u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
4107
            u2.Parent = char
4108
            u2.Looped = false
4109
            u2.Pitch = u.Pitch
4110
            u2.Volume = 1
4111
            wait(.01)
4112
            u:Play()
4113
            u2:Play()
4114
            wait(6)
4115
            u:Destroy()
4116
            u2:Destroy()
4117
            if Debounces.CanJoke == false then
4118
                Debounces.CanJoke = true
4119
            end
4120
        end
4121
    end
4122
if key == "j" then
4123
                        if Debounces.CanJoke == true then
4124
                                Debounces.CanJoke = false
4125
                z = Instance.new("Sound",char)
4126
                z.SoundId = "rbxassetid://135017755"
4127
                z.Pitch = .76
4128
                z.Volume = 1
4129
                                wait()
4130
                                z:Play()
4131
                                wait(6)
4132
                                z:Destroy()
4133
                        if Debounces.CanJoke == false then
4134
                                Debounces.CanJoke = true
4135-
end)    
4135+
4136
                end
4137
        end
4138-
    if key == "g" then
4138+
if key == "k" then
4139
                        if Debounces.CanJoke == true then
4140
                                Debounces.CanJoke = false
4141
                z = Instance.new("Sound",char)
4142
                z.SoundId = "rbxassetid://135017578"
4143
                z.Pitch = .76
4144
                z.Volume = 1
4145
                                wait()
4146
                                z:Play()
4147
                                wait(4)
4148
                                z:Destroy()
4149
                        if Debounces.CanJoke == false then
4150
                                Debounces.CanJoke = true
4151
                        end
4152
                end
4153
        end
4154
if key == "x" then
4155
        if Debounces.CanAttack == true then
4156
            Debounces.CanAttack = false
4157
            Debounces.NoIdl = true
4158
            Debounces.on = true
4159
            Debounces.ks = true
4160
        for i = 1, 10 do
4161
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
4162
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.2)
4163
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
4164
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
4165
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
4166
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.2)
4167
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4168
            if Debounces.on == false then break end
4169
            rs:wait(1)
4170
        end
4171
        z = Instance.new("Sound",hed)
4172
        z.SoundId = "rbxassetid://169445092"
4173
        z.Volume = 1
4174
        wait(0.1)
4175
        z:Play()
4176
        kik = rleg.Touched:connect(function(ht)
4177
        hit = ht.Parent
4178
            if ht and hit:IsA("Model") then
4179
                    if hit:FindFirstChild("Humanoid") then
4180
                        if hit.Name ~= p.Name then
4181
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
4182
                                    Debounces.Slashed = true]]--
4183
                                    if Debounces.ks==true then
4184
                                    z = Instance.new("Sound",hed)
4185
                                    z.SoundId = "rbxassetid://169380525"
4186
                                    z.Volume = 1
4187
                                    z:Play()
4188
                                    Debounces.ks=false
4189
                                    end
4190
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
4191
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4192
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4193
                            --Debounces.Slashed = false
4194
                        --end
4195
                    end
4196
                end
4197
            elseif ht and hit:IsA("Hat") then
4198
                if hit.Parent.Name ~= p.Name then
4199
                    if hit.Parent:FindFirstChild("Humanoid") then
4200
                           --[[if Debounces.Slashing == true and Debounces.Slashed == false then
4201
                                    Debounces.Slashed = true]]--
4202
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
4203
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4204
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4205
                            --Debounces.Slashed = false
4206
                        --end
4207
                    end
4208
                end
4209
            end    
4210
        end)
4211-
    if key == "h" then
4211+
4212
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
4213
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
4214
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
4215
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
4216
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
4217
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.3)
4218
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4219
            if Debounces.on == false then break end
4220
            rs:wait(.7)
4221
        end
4222
        kik:disconnect()
4223
        if Debounces.CanAttack == false then
4224
            Debounces.CanAttack = true
4225
            Debounces.on = false
4226
            Debounces.NoIdl = false
4227
            end
4228
        end
4229
    end
4230
if key == "c" then
4231
        if Debounces.CanAttack == true then
4232
            Debounces.CanAttack = false
4233
            Debounces.NoIdl = true
4234
            Debounces.on = true
4235
            SIDZ = {"231917744", "231917742"}
4236
            PTZ = {0.7, 0.8, 0.9, 1}
4237
                for i = 1, 20 do
4238
                    wait()
4239
                        for i,v in pairs(char.Absolution:children()) do
4240-
    if key == "j" then
4240+
4241
                        v.Transparency = v.Transparency + 0.05
4242
                        end
4243
                    end
4244
                end
4245
                function FindNearestTorso(Position,Distance,SinglePlayer)
4246
                    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
4247
                        local List = {}
4248
                        for i,v in pairs(workspace:GetChildren())do
4249
                            if v:IsA("Model")then
4250
                                if v:findFirstChild("Torso")then
4251
                                    if v ~= char then
4252
                                        if(v.Torso.Position -Position).magnitude <= Distance then
4253
                                            table.insert(List,v)
4254
                                        end 
4255
                                    end 
4256
                                end 
4257
                            end 
4258
                        end
4259-
    if key == "k" then
4259+
4260
                end
4261
                GroundPound()
4262
                for i = 1, 11 do
4263
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
4264
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
4265
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
4266
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
4267
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
4268
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4269
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4270
                    if Debounces.on == false then break end
4271
                    rs:wait(1.4)
4272
                end
4273
                GroundPound()
4274
                for i = 1, 11 do
4275
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
4276
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
4277
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
4278-
    if key == "x" then
4278+
4279
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4280
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
4281
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4282
                    if Debounces.on == false then break end
4283
                    rs:wait(1.4)
4284
                end
4285
                GroundPound()
4286
                for i = 1, 11 do
4287
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
4288
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
4289
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
4290
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
4291
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
4292
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4293
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4294
                    if Debounces.on == false then break end
4295
                    rs:wait(1.4)
4296
                end
4297
                GroundPound()
4298
                for i = 1, 11 do
4299
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
4300
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
4301
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
4302
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
4303
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4304
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
4305
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4306
                    if Debounces.on == false then break end
4307
                    rs:wait(1.4)
4308
                end
4309
                GroundPound()
4310
                for i = 1, 11 do
4311
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
4312
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
4313
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
4314
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
4315
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
4316
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4317
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4318
                    if Debounces.on == false then break end
4319
                    rs:wait(1.4)
4320
                end
4321
                GroundPound()
4322
                for i = 1, 11 do
4323
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
4324
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
4325
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
4326
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
4327
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4328
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
4329
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
4330
                    if Debounces.on == false then break end
4331
                    rs:wait(1.4)
4332
                end
4333
                for i = 1, 24 do
4334
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.2)
4335
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.2)
4336
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
4337
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
4338
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
4339
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
4340
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
4341
                    if Debounces.on == false then break end
4342
                    rs:wait(3)
4343
                end
4344
                for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
4345
                    if v:FindFirstChild('Humanoid') then
4346
                        v.Humanoid:TakeDamage(math.random(20,60))
4347
                        v.Humanoid.PlatformStand = true
4348
                        v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
4349
                    end
4350
                end
4351
                x = Instance.new("Sound",char)
4352
                x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
4353
                x.Pitch = PTZ[math.random(1,#PTZ)]
4354
                x.Volume = 1
4355
                wait(0.1)
4356
                x:Play()
4357-
    if key == "c" then
4357+
4358
                for i = 1, 20 do
4359
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
4360
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
4361
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
4362
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
4363
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
4364
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
4365
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
4366
                    if Debounces.on == false then break end
4367
                    rs:wait(2)
4368
                end
4369
            if Debounces.CanAttack == false then
4370
                Debounces.CanAttack = true
4371
                Debounces.on = false
4372
                Debounces.NoIdl = false
4373
                for i = 1, 20 do
4374
                    wait()
4375
                        for i,v in pairs(char.Absolution:children()) do
4376
                    if v:IsA("Part") or v:IsA("WedgePart") then
4377
                        v.Transparency = v.Transparency - 0.05
4378
                        end
4379
                    end
4380
                end
4381
            end
4382
        end
4383
    end
4384
if key == "b" then
4385
        hum.WalkSpeed = 0.01
4386
        if Debounces.CanAttack == true then
4387
            Debounces.CanAttack = false
4388
            Debounces.NoIdl = true
4389
            Debounces.on = true
4390
                for i = 1, 30 do
4391
                    rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
4392
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
4393
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
4394
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
4395
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
4396
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
4397
                    cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
4398
                    if Debounces.on == false then break end
4399
                    rs:wait(6)
4400
                end
4401
        v = Instance.new("Sound")
4402
        v.SoundId = "rbxassetid://181384451"
4403
        v.Parent = char
4404
        v.Looped = false
4405
        v.Pitch = .94
4406
        v.Volume = 1
4407
        wait(.01)
4408
        v:Play()
4409
        
4410
        if Daytime == true then
4411
            Daytime = false
4412
            l.TimeOfDay = 24
4413
        else
4414
            Daytime = true
4415
            l.TimeOfDay = 12
4416
            l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
4417
        end
4418
        
4419
            local Shockwave = function()
4420
                local rng1 = Instance.new("Part", char)
4421
                rng1.Anchored = true
4422
                rng1.BrickColor = BrickColor.new("Really black")
4423
                rng1.CanCollide = false
4424
                rng1.FormFactor = 3
4425
                rng1.Name = "Ring"
4426
                rng1.Size = Vector3.new(1, 1, 1)
4427
                rng1.Transparency = 0.35
4428
                rng1.TopSurface = 0
4429
                rng1.BottomSurface = 0
4430
                local rngm1 = Instance.new("SpecialMesh", rng)
4431
                rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
4432
                rngm1.Scale = Vector3.new(10, 10, 1)
4433
                rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
4434
                local Wave = Instance.new("Part", game.Workspace--[[?]])
4435
                Wave.Name = "Shockwave"
4436
                Wave.BrickColor = BrickColor.new("Really black")
4437
                Wave.Size = Vector3.new(1, 1, 1)
4438
                Wave.Shape = "Ball"
4439
                Wave.CanCollide = false
4440
                Wave.Anchored = true
4441
                Wave.TopSurface = 0
4442
                Wave.BottomSurface = 0
4443
                Wave.Touched:connect(function(hit)
4444
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
4445
                        local Occlude = true
4446
                        local NotOccludes = {
4447
                            char.Name;
4448
                            "Wings";
4449
                            "Scythe";
4450
                            "Thingy";
4451
                            "Thingy2"; -- put all of the names in a table pls
4452
                        }
4453
                        for i,v in pairs(NotOccludes) do
4454
                            if hit.Parent.Name == v then
4455
                                Occlude = false
4456
                            end
4457
                        end
4458
                        --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name     ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and     hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
4459
                        if Occlude then
4460
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
4461
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
4462
                        end
4463
                    end
4464
                end)
4465
                
4466
                Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
4467
                
4468
                coroutine.wrap(function()
4469
                    for i = 1, 20, 0.2 do
4470
                        rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
4471
                        rng1.Transparency = i/20
4472
                    wait()
4473
                    end
4474
                    wait()
4475
                    rng1:Destroy()
4476
                end)()
4477
                
4478
                Delay(0, function()
4479
4480
                    if Daytime == false then
4481
                       for i = 1, 50, 1 do
4482
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4483
                            Wave.CFrame = char.Torso.CFrame
4484
                            local t = i / 50
4485
                            Wave.Transparency = t
4486
                            wait()
4487
                        end
4488
                    else
4489
                        for i = 1, 50, 1 do
4490
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4491
                            Wave.CFrame = char.Torso.CFrame
4492
                            local t = i / 50
4493
                            Wave.Transparency = t
4494
                            wait()
4495
                        end
4496
                    end
4497
                    Wave:Destroy()
4498
                end)
4499
                Delay(0, function()
4500
                    while wait() do
4501
                        if Wave ~= nil then
4502
                            Wave.CFrame = char.Torso.CFrame
4503
                        else
4504
                            break
4505
                        end
4506
                    end
4507
                end)
4508
            end
4509
        Shockwave() 
4510
                for i = 1, 30 do
4511
                        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
4512-
----------------------------------------------------176349813
4512+
4513
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
4514-
    if key == "b" then
4514+
4515
                        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
4516
                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
4517
                        if Debounces.on == false then break end
4518
                        rs:wait()
4519
                end
4520
        wait(2.4)
4521
        Debounces.NoIdl = false
4522
        hum.WalkSpeed = 5
4523
        Debounces.on = false
4524
        wait()
4525
        if Debounces.CanAttack == false then
4526
            Debounces.CanAttack = true
4527
            v:Destroy()
4528
            end
4529
        end
4530
    end
4531
if key == "l" then
4532
                for i = 1, 20 do
4533
                        wait()
4534
                for i,v in pairs(char.Absolution:children()) do
4535
                        if v:IsA("Part") or v:IsA("WedgePart") then
4536
                                v.Transparency = v.Transparency + 0.05
4537
                        end
4538
                end
4539
        end
4540
        if Debounces.CanAttack == true then
4541
            Debounces.CanAttack = false
4542
            Debounces.NoIdl = true
4543
            Debounces.on = true
4544
                bv = Instance.new("BodyVelocity",torso)
4545
        bv.maxForce = Vector3.new(0,200000,0)
4546
        bv.P = 100000
4547
                bv.velocity = Vector3.new(0,500,0)
4548
                wait(2)
4549
                bv:Destroy()
4550
if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
4551
    for i = 1, 20 do
4552
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
4553
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
4554
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
4555
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
4556
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
4557
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
4558
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
4559
        if Debounces.on == false then break end
4560
        wait()
4561
        end
4562
        for i = 1, 360, 20 do wait()
4563
                torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
4564
        end
4565
end
4566
torso.Weld.C1 = CFrame.new(0,-1.2,0)
4567
local ry,ht,ps=nil,nil,nil
4568
while ht==nil do
4569
        ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
4570
        wait()
4571
end
4572
z = Instance.new("Sound",char)
4573
z.SoundId = "rbxassetid://245537790"
4574
z.Pitch = 1
4575
z.Volume = 1
4576
wait(0.1)
4577
z:Play()
4578
        local sp = Instance.new("Part", char)
4579
                sp.Name = "Energy"
4580
                sp.BrickColor = BrickColor.new("Really black")
4581
                sp.Size = Vector3.new(1, 1, 1)
4582
                sp.Shape = "Ball"
4583
                sp.CanCollide = false
4584
                sp.Anchored = true
4585
                sp.TopSurface = 0
4586
                sp.BottomSurface = 0
4587
        local spm = Instance.new("SpecialMesh",sp)
4588
                spm.MeshId = "rbxassetid://9982590"
4589
                spm.Scale = Vector3.new(3,3,3)
4590
        local sp2 = Instance.new("Part", char)
4591
                sp2.Name = "Energy2"
4592
                sp2.BrickColor = BrickColor.new("Really black")
4593
                sp2.Size = Vector3.new(1, 1, 1)
4594
                sp2.Shape = "Ball"
4595
                sp2.CanCollide = false
4596
                sp2.Anchored = true
4597
                sp2.TopSurface = 0
4598
                sp2.BottomSurface = 0
4599
        local spm2 = Instance.new("SpecialMesh",sp2)
4600
                spm2.MeshId = "rbxassetid://9982590"
4601
                spm2.Scale = Vector3.new(3,3,3)
4602
                sp.Touched:connect(function(hit)
4603
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
4604
                        local Occlude = true
4605
                        local NotOccludes = {
4606
                            char.Name;
4607
                            "Wings";
4608
                            "Scythe";
4609
                            "Thingy";
4610
                            "Thingy2"; -- put all of the names in a table pls
4611
                        }
4612
                        for i,v in pairs(NotOccludes) do
4613
                            if hit.Parent.Name == v then
4614
                                Occlude = false
4615
                            end
4616
                        end
4617
                        --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name     ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and     hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
4618
                        if Occlude then
4619
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
4620
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
4621
                        end
4622
                    end
4623
                end)
4624
                sp2.Touched:connect(function(hit)
4625
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
4626
                        local Occlude = true
4627
                        local NotOccludes = {
4628
                            char.Name;
4629
                            "Wings";
4630
                            "Scythe";
4631
                            "Thingy";
4632
                            "Thingy2"; -- put all of the names in a table pls
4633
                        }
4634
                        for i,v in pairs(NotOccludes) do
4635
                            if hit.Parent.Name == v then
4636
                                Occlude = false
4637
                            end
4638
                        end
4639
                        --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name     ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and     hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
4640
                        if Occlude then
4641
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
4642
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
4643
                        end
4644
                    end
4645
                end)
4646
        for i = 1, 100, 1 do
4647
                sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4648
                sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4649
                sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
4650
                sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
4651
                spm.Scale = sp.Size
4652
                spm2.Scale = sp2.Size
4653
                local t = i / 100
4654
                sp.Transparency = t
4655
                sp2.Transparency = t
4656
                wait()
4657
        end
4658
                sp:Destroy()
4659
                sp2:Destroy()
4660
                z:Destroy()
4661
                for i = 1, 20 do
4662
                        wait()
4663
                for i,v in pairs(char.Absolution:children()) do
4664-
    if key == "l" then
4664+
4665
                                v.Transparency = v.Transparency - 0.05
4666
                        end
4667
                end
4668
        end
4669
        if Debounces.CanAttack == false then
4670
            Debounces.CanAttack = true
4671
                        Debounces.NoIdl = false
4672
                        Debounces.on = false
4673
            end
4674
        end
4675
    end
4676
if key == "u" then
4677
        if Debounces.CanAttack == true then
4678
            Debounces.CanAttack = false
4679
            Debounces.NoIdl = true
4680
            Debounces.on = true
4681
                        orbt={}
4682
                        stlt={}
4683
                        chot={}
4684
                        cfxt={}
4685
                for i = 1, 20 do
4686
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
4687
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
4688
                        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
4689
                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
4690
                        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
4691
                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
4692
                        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
4693
                        if Debounces.on == false then end
4694
                        rs:wait()
4695
                    end
4696
                z = Instance.new("Sound",char)
4697
                z.SoundId = "rbxassetid://170053944"
4698
                z.Pitch = 1.07
4699
                z.Volume = 1
4700
                wait(0.1)
4701
                z:Play()
4702
                cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
4703
                debris:AddItem(cnOrb,50)
4704
                cnOrb.Mesh.MeshType=3
4705
                table.insert(orbt,cnOrb)
4706
                table.insert(stlt,cnOrb)
4707
                local nt=0
4708
                for i=0,5,0.02 do
4709
                        nt=nt+1
4710
                        cns=i
4711
                        if nt>=2 then
4712
                                nt=0
4713
                                local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Really black")
4714
                                debris:AddItem(cho,1)
4715
                                cho.Mesh.MeshType=3
4716
                                table.insert(chot,cho)
4717
                        end
4718
                        cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
4719
                        cnOrb.Mesh.Scale=Vector3.new(i,i,i)
4720
                        wait()
4721
                end
4722
                for i = 1, 14 do
4723
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
4724
                        if Debounces.on == false then end
4725
                        rs:wait()
4726
                    end
4727
                coroutine.wrap(function()
4728
                for i = 1, 20 do
4729
                        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
4730
                        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
4731
                        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
4732
                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
4733
                        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
4734
                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
4735
                        if Debounces.on == false then end
4736
                        rs:wait()
4737
                    end
4738
                end)()
4739
                wait(0.1)
4740
                stlt={}
4741
                local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
4742
                cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
4743
                local nt=0
4744
                for i=0,160,3 do
4745
                                        cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
4746
                                        nt=nt+1
4747
                                        if nt>=6 then
4748
                        nt=0
4749
                        local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black")
4750
                        cfx.Mesh.MeshId="rbxassetid://20329976"
4751
                        cfx.Transparency=0.4
4752
                        table.insert(cfxt,cfx)
4753
                        debris:AddItem(cfx,1)
4754
                    end
4755
                                                if (cnOrb.Position-ps).magnitude<6 then
4756
                                                        break
4757
                                                end
4758
                                wait()
4759
                        end
4760
                        orbt={}
4761
                        
4762
                        for i=0,1,0.1 do
4763
                                local cs=cnOrb.Mesh.Scale
4764
                                cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
4765
                                wait()
4766
                        end
4767
                        local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
4768
                        ofx.Transparency=0.5
4769
                        ofx.Mesh.MeshType=3
4770
                        ofx.Mesh.Scale=Vector3.new(30,30,30)
4771
                        for _,v in pairs(game:service"Players":GetChildren()) do
4772
                                pcall(function()
4773
                                        for _,c in pairs(v.Character:GetChildren()) do
4774
                                                if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>15 then
4775
                                                        local hrp=v.Character:FindFirstChild("HumanoidRootPart")
4776
                                                        hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
4777
                                                end
4778
                                        end
4779
                                end)
4780
                        end
4781
                        for i=0,1,0.05 do
4782
                                local cs=cnOrb.Mesh.Scale
4783
                                cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
4784
                                local ofs=ofx.Mesh.Scale
4785
                                ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
4786
                                ofx.Transparency=Tween(ofx.Transparency,1,i)
4787
                                wait()
4788
                        end
4789
                        ofx:Destroy()
4790
                        cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
4791
                        local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
4792
                        cnfx.Mesh.MeshType=3
4793
                        cnOrb.Transparency=0.05
4794
                        local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
4795
                        cnr.Mesh.MeshType=3
4796
                        local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
4797
                        rn1.Transparency=1
4798
                        rn1.Mesh.MeshId="rbxassetid://3270017"
4799
                        local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
4800
                        rn2.Transparency=1
4801
                        rn2.Mesh.MeshId="rbxassetid://3270017"
4802
                        local nt=0
4803
                        local cs=nil
4804
                        for i=0,1,0.05 do
4805
                                cs=cnOrb.Mesh.Scale
4806
                                cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
4807
                                local fs=cnfx.Mesh.Scale
4808
                                cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
4809
                                cnfx.Transparency=cnfx.Transparency+0.05
4810
                                rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
4811
                                rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
4812
                                rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
4813
                                rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
4814
                                rn1.Transparency=Tween(rn1.Transparency,0.8,i)
4815
                                rn2.Transparency=Tween(rn2.Transparency,0.8,i)
4816
                                local rs=cnr.Mesh.Scale
4817
                                cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
4818
                                nt=nt+1
4819-
    if key == "u" then
4819+
4820
                                        local pls={}
4821
                                        for _,v in pairs(game.Players:GetChildren()) do
4822
                                                table.insert(pls,v)
4823
                                        end
4824
                                        local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
4825
                                        local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
4826
                                        pffx.Mesh.MeshId="rbxassetid://20329976"
4827
                                        pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
4828
                                        debris:AddItem(pffx,2)
4829
                                        table.insert(pfxt,pffx)
4830
                                        nt=0
4831
                                end
4832
                                wait()
4833
                        end
4834
                        local int=0
4835
                        coroutine.wrap(function()
4836
                        for i=1,500 do
4837
                                rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
4838
                                rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
4839
                                nt=nt+1
4840
                                int=int+1
4841
                                local htd={p}
4842
                                for _,v in pairs(game:service"Players":GetChildren()) do
4843
                                        pcall(function()
4844
                                                for _,c in pairs(v.Character:GetChildren()) do
4845
                                                        if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
4846
                                                                v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
4847
                                                                v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
4848
                                                                table.insert(htd,v)
4849
                                                        end
4850
                                                end
4851
                                        end)
4852
                                end
4853
                                htd={p}
4854
                                if int>=6 then
4855
                                for _,v in pairs(game:service"Players":GetChildren()) do
4856
                                        pcall(function()
4857
                                                for _,c in pairs(v.Character:GetChildren()) do
4858
                                                        if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
4859
                                                                table.insert(htd,v)
4860
                                                                local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Really black")
4861
                                                                hfx.Mesh.Scale=Vector3.new(2,2,2)
4862
                                                                hfx.Mesh.MeshType=3
4863
                                                                debris:AddItem(hfx,2)
4864
                                                                coroutine.wrap(function()
4865
                                                                        pcall(function()
4866
                                                                                for i=0,1,0.05 do
4867
                                                                                        pcall(function()
4868
                                                                                        local hs=hfx.Mesh.Scale
4869
                                                                                        hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
4870
                                                                                        hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
4871
                                                                                        end)
4872
                                                                                        wait()
4873
                                                                                end
4874
                                                                                hfx:Destroy()
4875
                                                                        end)
4876
                                                                end)()
4877
                                                        end
4878
                                                end
4879
                                        end)
4880
                                end
4881
                                int=0
4882
                                end
4883
                                if nt>=4 then
4884
                                        local pls={}
4885
                                        for _,v in pairs(game.Players:GetChildren()) do
4886
                                                table.insert(pls,v)
4887
                                        end
4888
                                        local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
4889
                                        local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
4890
                                        pffx.Transparency=0.4
4891
                                        pffx.Mesh.MeshId="rbxassetid://20329976"
4892
                                        pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
4893
                                        debris:AddItem(pffx,2)
4894
                                        table.insert(pfxt,pffx)
4895
                                        nt=0
4896
                                end
4897
                                wait()
4898
                        end
4899
                        cnOrb:Destroy()
4900
                        cnfx:Destroy()
4901
                        for _,v in pairs(mod3:GetChildren()) do
4902
                                v:Destroy()
4903
                        end
4904
                        orbt={}
4905
                        stlt={}
4906
                        chot={}
4907
                        cfxt={}
4908
                        pfxt={}
4909
                        end)()
4910
                        if Debounces.CanAttack == false then
4911
                                Debounces.CanAttack = true
4912
                                Debounces.NoIdl = false
4913
                                Debounces.on = false
4914
            end
4915
        end
4916
    end
4917
if key == "m" then
4918
        if Debounces.CanAttack == true then
4919
        Debounces.CanAttack = false
4920
        Debounces.on = true
4921
        Debounces.NoIdl = true
4922
            --[[x = Instance.new("Sound",char)
4923
            x.SoundId = "http://www.roblox.com/asset/?id=169445572"
4924
            x.Looped = false
4925
            x.Pitch = 1.1
4926
            x.Volume = 1
4927
            x:Play()
4928
            x2 = Instance.new("Sound",char)
4929
            x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
4930
            x2.Looped = false
4931
            x2.Pitch = .7
4932
            x2.Volume = 1
4933
            wait(.1)
4934
            x:Play()
4935
            x2:Play()
4936
        for i = 1, 20 do
4937
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad    (45),math.rad(0),math.rad(32)), 0.2)
4938
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad     (0),math.rad(0),math.rad(-20)), 0.2)
4939
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (-    8),math.rad(-40), math.rad(-8)),0.2)
4940
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles  (math.rad    (-50), math.rad(40), math.rad(0)), 0.2)
4941
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles  (math.rad    (30), 0, math.rad(20)), 0.2)
4942
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles  (math.rad(-    10), math.rad(-40), math.rad(0)), 0.2)
4943
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
4944
            if Debounces.on == false then break end
4945
                wait()
4946
            x:Destroy()
4947
            x2:Destroy()
4948
            end
4949
            wait(1)]]--
4950
        local rng = Instance.new("Part", char)
4951
        rng.Anchored = true
4952
        rng.BrickColor = BrickColor.new("Really black")
4953
        rng.CanCollide = false
4954
        rng.FormFactor = 3
4955
        rng.Name = "Ring"
4956
        rng.Size = Vector3.new(1, 1, 1)
4957
        rng.Transparency = 0.35
4958
        rng.TopSurface = 0
4959
        rng.BottomSurface = 0
4960
        rng.Position = torso.Position - Vector3.new(0,5,0)
4961
        rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
4962
        local rngm = Instance.new("SpecialMesh", rng)
4963
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
4964
        rngm.Scale = Vector3.new(1, 1, 2)
4965
            x = Instance.new("Sound",char)
4966
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
4967
            x.Looped = false
4968
            x.Pitch = .7
4969
            x.Volume = 1
4970
            x:Play()
4971
                coroutine.wrap(function()
4972
                for i = 1, 60, 2 do
4973
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
4974
                rng.Transparency = i/60
4975
                wait()
4976
                end
4977
                wait()
4978
                rng:Destroy()
4979
                end)()
4980
            hum.WalkSpeed = 100
4981
        BV = Instance.new("BodyVelocity", torso)
4982
        BV.maxForce = Vector3.new(0,200000,0)
4983
        BV.P = 240000
4984
        BV.velocity = Vector3.new(0,700,0)
4985
    for i = 1, 20 do
4986
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0),     math.rad(0)),0.7)
4987
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16),     math.rad(0), math.rad(0)), 0.7)
4988
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
4989
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40),     math.rad(0), math.rad(20)), 0.7)
4990
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
4991
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
4992
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
4993
        if Debounces.on == false then break end
4994
        wait()
4995
    end
4996
x:Destroy()
4997
BV:Destroy()
4998
    --[[for i = 1, 30 doc
4999
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0),     math.rad(0)),0.3)
5000
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad    (0), math.rad(0)), 0.3)
5001
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(-10)), 0.3)
5002
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0),     math.rad(0), math.rad(10)), 0.3)
5003
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
5004
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
5005
        if Debounces.on == false then break end
5006
        wait()
5007
    end]]--
5008
if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
5009
    for i = 1, 30 do
5010
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
5011
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
5012
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
5013
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
5014
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
5015
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
5016
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5017
        if Debounces.on == false then break end
5018
        wait()
5019
    end
5020
end
5021
Debounces.on = false
5022
Debounces.NoIdl = false
5023
local ry,ht,ps=nil,nil,nil
5024
while ht==nil do
5025
        ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
5026
        wait()
5027
end
5028
z = Instance.new("Sound",char)
5029
z.SoundId = "rbxassetid://142070127"
5030
z.Volume = 1
5031
wait(.1)
5032
z:Play()
5033
Landing()
5034
hum.WalkSpeed = 8
5035
if Debounces.CanAttack == false then
5036
Debounces.CanAttack = true
5037
end
5038
end
5039
end
5040
if key == "z" then
5041
        Debounces.on = true
5042
        Debounces.NoIdl = true
5043
        if Grab == false then
5044
        gp = nil
5045
        con1=larm.Touched:connect(function(hit) -- this is grab
5046
            ht = hit.Parent
5047
            hum1=ht:FindFirstChild('Humanoid')
5048
            if hum1 ~= nil then
5049
                hum1.PlatformStand=true
5050
                gp = ht
5051
                Grab = true
5052
                asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
5053
                asd.Parent = larm
5054
                asd.Name = "asd"
5055
                asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
5056
                                con1:disconnect()
5057
            elseif hum1 ~= nil then
5058
                con1:disconnect()
5059
                wait() return
5060
            end
5061
        end)
5062
        for i = 1, 18 do
5063-
    if key == "m" then
5063+
5064
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
5065
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
5066
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
5067
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
5068
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
5069
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
5070
            if Debounces.on == false then break end
5071
            wait()
5072
        end
5073
    con1:disconnect()
5074
    Debounces.on = false
5075
    Debounces.NoIdl = false
5076
    elseif Grab == true then
5077
        Grab = false
5078
    for i = 1, 20 do
5079
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
5080
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
5081
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
5082
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
5083
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
5084
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
5085
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
5086
        if Debounces.on == false then end
5087
        wait()
5088
    end
5089
        if gp ~= nil then
5090
        for i,v in pairs(larm:GetChildren()) do
5091
            if v.Name == "asd" and v:IsA("Weld") then
5092
                v:Remove()
5093
            end
5094
        end
5095
        bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
5096
        bv.maxForce = Vector3.new(400000, 400000, 400000)
5097
        bv.P = 125000
5098
        bv.velocity = char.Head.CFrame.lookVector * 200
5099
        for i = 1, 12 do
5100
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
5101
            if Debounces.on == false then end
5102
            wait()
5103
        end--
5104
        ht=nil
5105
        Spawn(function()
5106
            wait(0.5)
5107
            bv:Destroy()
5108
        end)
5109
        Debounces.on = false
5110
        Debounces.NoIdl = false
5111
        elseif ht == nil then wait()
5112
        Grab = false
5113
        Debounces.on = false
5114
        Debounces.NoIdl = false
5115
            end
5116
        end
5117
    end
5118
if key == "r" then
5119
        larm.BrickColor = BrickColor.new("Royal purple")
5120
        rarm.BrickColor = BrickColor.new("Royal purple")
5121
        if Debounces.CanAttack == true then
5122
        Debounces.CanAttack = false
5123
        Debounces.on = true
5124
        Debounces.NoIdl = true
5125
		to = char.Absolution.Thingy2.Touched:connect(function(ht)
5126
        hit = ht.Parent
5127
        if ht and hit:IsA("Model") then
5128
                if hit:FindFirstChild("Humanoid") then
5129
                    if hit.Name ~= p.Name then
5130
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
5131
                                Debounces.Slashed = true]]--
5132
                                    hit:FindFirstChild("Humanoid"):TakeDamage(10)
5133
                                wait(1)
5134
                                --Debounces.Slashed = false
5135
                        --end
5136
                    end
5137
                end
5138
        elseif ht and hit:IsA("Hat") then
5139
            if hit.Parent.Name ~= p.Name then
5140
                if hit.Parent:FindFirstChild("Humanoid") then
5141
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
5142
                                Debounces.Slashed = true]]--
5143
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
5144
                                wait(1)
5145
                    --Debounces.Slashed = false
5146
                end
5147
            end
5148
        end    
5149
    end)
5150
q = Instance.new("Sound",hed)
5151
q.SoundId = "http://www.roblox.com/asset/?id=134012322"
5152
q.Pitch = 0.85
5153
q.Looped = false
5154
q1 = Instance.new("Sound",hed)
5155
q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
5156
q1.Pitch = 0.85
5157
q1.Looped = false
5158
q:Play()
5159
q1:Play()
5160
    for i = 1,20 do
5161
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
5162
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
5163
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
5164
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
5165
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
5166
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
5167
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.25)
5168
        if Debounces.on == false then break end
5169
    rs:wait(.6)
5170
end
5171
n = Instance.new("Sound",hed)
5172
n.SoundId = "http://www.roblox.com/asset/?id=165969964"
5173
n.Pitch = 0.94
5174
n.Looped = false
5175
n1 = Instance.new("Sound",hed)
5176
n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
5177
n1.Pitch = 0.94
5178
n1.Looped = false
5179
n:Play()
5180
n1:Play()
5181
b = Instance.new("Sound",hed)
5182
b.SoundId = "http://www.roblox.com/asset/?id=168586586"
5183
b.Pitch = 0.94
5184
b.Looped = false
5185
b1 = Instance.new("Sound",hed)
5186
b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
5187
b1.Pitch = 0.94
5188
b1.Looped = false
5189
b:Play()
5190-
    if key == "z" then
5190+
5191
    for i = 1,26 do
5192
        rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.25)
5193
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.25)
5194
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
5195
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
5196
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
5197
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
5198
        cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.25)
5199
        if Debounces.on == false then break end
5200
    rs:wait(1)
5201
end
5202
wait(.5)
5203
to:disconnect()
5204
q:Destroy()
5205
q1:Destroy()
5206
n:Destroy()
5207
n1:Destroy()
5208
larm.BrickColor = BrickColor.new("Really black")
5209
rarm.BrickColor = BrickColor.new("Really black")
5210
    if Debounces.CanAttack == false then
5211
        Debounces.CanAttack = true
5212
        Debounces.on = false
5213
        Debounces.NoIdl = false
5214
            end
5215
        end
5216
    end
5217
----------------------------------------------------
5218
    if key == "q" then
5219
        larm.BrickColor = BrickColor.new("Royal purple")
5220
        rarm.BrickColor = BrickColor.new("Royal purple")
5221
        if Debounces.CanAttack == true then
5222
        Debounces.CanAttack = false
5223
        Debounces.on = true
5224
        Debounces.NoIdl = true
5225
		to = char.Absolution.Thingy2.Touched:connect(function(ht)
5226
        hit = ht.Parent
5227
        if ht and hit:IsA("Model") then
5228
                if hit:FindFirstChild("Humanoid") then
5229
                    if hit.Name ~= p.Name then
5230
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
5231
                                Debounces.Slashed = true]]--
5232
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
5233
                                wait(1)
5234
                                --Debounces.Slashed = false
5235
                        --end
5236
                    end
5237
                end
5238
        elseif ht and hit:IsA("Hat") then
5239
            if hit.Parent.Name ~= p.Name then
5240
                if hit.Parent:FindFirstChild("Humanoid") then
5241
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
5242
                                Debounces.Slashed = true]]--
5243
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
5244
                                wait(1)
5245
                    --Debounces.Slashed = false
5246
                end
5247
            end
5248
        end    
5249
    end)
5250
        for i = 1, 20 do
5251
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
5252
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
5253
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
5254
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
5255
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
5256
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
5257
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5258
        if Debounces.on == false then break end
5259
        rs:wait(2)
5260
    end
5261
    z = Instance.new("Sound",hed)
5262
    z.SoundId = "rbxassetid://160069154"
5263
    z.Looped = false
5264
    z.Pitch = .9
5265
    z1 = Instance.new("Sound",hed)
5266
    z1.SoundId = "rbxassetid://160069154"
5267
    z1.Looped = false
5268
    z1.Pitch = .9
5269
    wait(0.01)
5270
    z:Play()
5271
    z1:Play()
5272
        for i = 1, 20 do
5273
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
5274
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
5275
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
5276
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
5277
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
5278
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
5279
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5280
        if Debounces.on == false then break end
5281
        rs:wait(2)
5282
    end
5283
        for i = 1, 20 do
5284
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
5285
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
5286
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
5287
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
5288
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
5289
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
5290
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5291
        if Debounces.on == false then break end
5292
        rs:wait(2)
5293
    end
5294
    z = Instance.new("Sound",hed)
5295
    z.SoundId = "rbxassetid://168586621"
5296
    z.Looped = false
5297
    z.Pitch = 1
5298
    z1 = Instance.new("Sound",hed)
5299
    z1.SoundId = "rbxassetid://168586621"
5300
    z1.Looped = false
5301
    z1.Pitch = 1
5302-
game:GetService("RunService").RenderStepped:connect(function()
5302+
5303
    z:Play()
5304
    z1:Play()
5305
        for i = 1, 20 do
5306
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
5307
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
5308
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
5309
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
5310
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
5311
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
5312
            cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
5313
        if Debounces.on == false then break end
5314
        rs:wait(2)
5315
    end
5316
to:disconnect()
5317
larm.BrickColor = BrickColor.new("Really black")
5318
rarm.BrickColor = BrickColor.new("Really black")
5319
    if Debounces.CanAttack == false then
5320
        Debounces.CanAttack = true
5321
        Debounces.on = false
5322
        Debounces.NoIdl = false
5323
            end
5324
        end
5325
    end
5326
end)
5327
----------------------------------------------------
5328
local animpose = "Idle"
5329
local lastanimpose = "Idle"
5330
local sine = 0
5331
local change = 1
5332
local val = 0
5333
local ffing = false
5334
local och = 0
5335
----------------------------------------------------
5336
game:GetService("RunService").Heartbeat:connect(function()
5337
--[[if char.Humanoid.Jump == true then
5338
jump = true
5339
else
5340
jump = false
5341
end]]
5342
char.Humanoid.FreeFalling:connect(function(f)
5343
if f then
5344
ffing = true
5345
else
5346
ffing = false
5347
end
5348
end)
5349
sine = sine + change
5350
if jumpn == true then
5351
animpose = "Jumping"
5352
elseif ffing == true then
5353
animpose = "Freefalling"
5354
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
5355
animpose = "Idle"
5356
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
5357
animpose = "Walking"
5358
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
5359
animpose = "Running"
5360
end
5361
if animpose ~= lastanimpose then
5362
sine = 0
5363
if Debounces.NoIdl == false then
5364
if animpose == "Idle" then
5365
for i = 1, 2 do
5366
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
5367
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
5368
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
5369
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
5370
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
5371
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
5372
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
5373
end
5374
elseif animpose == "Walking" then
5375
for i = 1, 2 do
5376
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
5377
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
5378
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
5379
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
5380
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
5381
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
5382
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
5383
end
5384
elseif animpose == "Running" then
5385
for i = 1, 2 do
5386
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
5387
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
5388
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
5389
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
5390
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
5391
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
5392
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5393
end
5394
rs:wait(2)
5395
end
5396
else
5397
end
5398
end
5399
lastanimpose = animpose
5400
if Debounces.NoIdl == false then
5401
if animpose == "Idle" then
5402
if stanceToggle == "Normal" then
5403
change = 0.5
5404
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
5405
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
5406
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
5407
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
5408
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
5409
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
5410
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
5411
elseif stanceToggle == "Sitting" then
5412
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
5413
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
5414
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
5415
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
5416
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
5417
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
5418
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5419
elseif stanceToggle == "Normal2" then
5420
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
5421
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
5422
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
5423
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
5424
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
5425
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
5426
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5427
end
5428
elseif animpose == "Walking" then
5429
if stanceToggle == "Normal" then
5430
change = 1
5431
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
5432
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
5433
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
5434
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
5435
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
5436
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
5437
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
5438
elseif stanceToggle == "Normal2" then
5439
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
5440
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
5441
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
5442
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
5443
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
5444
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
5445
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5446
end
5447
elseif animpose == "Running" then
5448
change = 1
5449
rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
5450
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
5451
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
5452
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
5453
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
5454
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
5455
cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
5456
end
5457
end
5458
och=och+1
5459
for _,v in pairs(orbt) do
5460
        pcall(function()
5461
                v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
5462
        end)
5463
end
5464
for _,v in pairs(stlt) do
5465
        pcall(function()
5466
                v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
5467
        end)
5468
end
5469
for _,v in pairs(chot) do
5470
        pcall(function()
5471
                v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
5472
                v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
5473
        end)
5474
end
5475
for _,v in pairs(cfxt) do
5476
        pcall(function()
5477
                local vs=v.Mesh.Scale
5478
                v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
5479
                v.Transparency=v.Transparency+0.05
5480
        end)
5481
end
5482
for _,v in pairs(pfxt) do
5483
        pcall(function()
5484
                local vs=v.Mesh.Scale
5485
                v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
5486
                v.Transparency=v.Transparency+0.025
5487
        end)
5488
end
5489
end)
5490
--N3xul Animated Sky
5491
local runDummyScript = function(f,scri)
5492
local oldenv = getfenv(f)
5493
local newenv = setmetatable({}, {
5494
__index = function(_, k)
5495
if k:lower() == 'script' then
5496
return scri
5497
else
5498
return oldenv[k]
5499
end
5500
end
5501
})
5502
setfenv(f, newenv)
5503
ypcall(function() f() end)
5504
end
5505
cors = {}
5506
mas = Instance.new("Model",game:GetService("Lighting")) 
5507
mas.Name = "CompiledModel"
5508
o1 = Instance.new("Model")
5509
o2 = Instance.new("Model")
5510
o3 = Instance.new("Part")
5511
o4 = Instance.new("SpecialMesh")
5512
o5 = Instance.new("Part")
5513
o6 = Instance.new("SpecialMesh")
5514
o7 = Instance.new("Part")
5515
o8 = Instance.new("SpecialMesh")
5516
o9 = Instance.new("Part")
5517
o10 = Instance.new("SpecialMesh")
5518
o11 = Instance.new("Part")
5519
o12 = Instance.new("SpecialMesh")
5520
o13 = Instance.new("Part")
5521
o14 = Instance.new("SpecialMesh")
5522
o15 = Instance.new("Part")
5523
o16 = Instance.new("SpecialMesh")
5524
o17 = Instance.new("Part")
5525
o18 = Instance.new("SpecialMesh")
5526
o19 = Instance.new("Part")
5527
o20 = Instance.new("SpecialMesh")
5528
o21 = Instance.new("Part")
5529
o22 = Instance.new("SpecialMesh")
5530
o23 = Instance.new("Part")
5531
o24 = Instance.new("SpecialMesh")
5532
o25 = Instance.new("Part")
5533
o26 = Instance.new("SpecialMesh")
5534
o27 = Instance.new("Part")
5535
o28 = Instance.new("SpecialMesh")
5536
o29 = Instance.new("Part")
5537
o30 = Instance.new("SpecialMesh")
5538
o31 = Instance.new("Part")
5539
o32 = Instance.new("SpecialMesh")
5540
o33 = Instance.new("Part")
5541
o34 = Instance.new("SpecialMesh")
5542
o35 = Instance.new("Part")
5543
o36 = Instance.new("SpecialMesh")
5544
o37 = Instance.new("Part")
5545
o38 = Instance.new("SpecialMesh")
5546
o39 = Instance.new("Part")
5547
o40 = Instance.new("SpecialMesh")
5548
o41 = Instance.new("Part")
5549
o42 = Instance.new("SpecialMesh")
5550
o43 = Instance.new("Part")
5551
o44 = Instance.new("SpecialMesh")
5552
o45 = Instance.new("Part")
5553
o46 = Instance.new("SpecialMesh")
5554
o47 = Instance.new("Part")
5555
o48 = Instance.new("SpecialMesh")
5556
o49 = Instance.new("Part")
5557
o50 = Instance.new("SpecialMesh")
5558
o51 = Instance.new("Part")
5559
o52 = Instance.new("SpecialMesh")
5560
o53 = Instance.new("Part")
5561
o54 = Instance.new("SpecialMesh")
5562
o55 = Instance.new("Part")
5563
o56 = Instance.new("SpecialMesh")
5564
o57 = Instance.new("Part")
5565
o58 = Instance.new("SpecialMesh")
5566
o59 = Instance.new("Part")
5567
o60 = Instance.new("SpecialMesh")
5568
o61 = Instance.new("Part")
5569
o62 = Instance.new("SpecialMesh")
5570
o63 = Instance.new("Part")
5571
o64 = Instance.new("SpecialMesh")
5572
o65 = Instance.new("Part")
5573
o66 = Instance.new("SpecialMesh")
5574
o67 = Instance.new("Script")
5575
o1.Name = "$_N3xul Sky"
5576
o1.Parent = mas
5577
o2.Name = "SKY IS DA LIMIT"
5578
o2.Parent = o1
5579
o3.Name = "Brick"
5580
o3.Parent = o2
5581
o3.Material = Enum.Material.Neon
5582
o3.BrickColor = BrickColor.new("Royal purple")
5583
o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
5584
o3.Rotation = Vector3.new(96.8799973, 29.4200001, 64.2200012)
5585
o3.Anchored = true
5586
o3.CanCollide = false
5587
o3.Size = Vector3.new(1, 2.4000001, 1)
5588
o3.CFrame = CFrame.new(3.5, 1.66253495, -1.5, 0.378833085, -0.784395874, 0.49113974, 0.104257114, -0.491143882, -0.864818215, 0.919577479, 0.378825694, -0.104285136)
5589
o3.BottomSurface = Enum.SurfaceType.Smooth
5590
o3.TopSurface = Enum.SurfaceType.Smooth
5591
o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
5592
o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
5593
o3.Orientation = Vector3.new(59.8600006, 101.989998, 168.020004)
5594
o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
5595
o4.Parent = o3
5596
o4.MeshId = "http://www.roblox.com/asset/?id=1125478"
5597
o4.Offset = Vector3.new(2, 2, 2)
5598
o4.Scale = Vector3.new(1000, 1000, 1000)
5599
o4.VertexColor = Vector3.new(0.300000012, 4, 9)
5600
o4.MeshType = Enum.MeshType.FileMesh
5601
o4.Scale = Vector3.new(1000, 1000, 1000)
5602
o5.Name = "Brick"
5603
o5.Parent = o2
5604
o5.Material = Enum.Material.Neon
5605
o5.BrickColor = BrickColor.new("Royal purple")
5606
o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
5607
o5.Rotation = Vector3.new(55.5499992, -81.6699982, 96.1299973)
5608
o5.Anchored = true
5609
o5.CanCollide = false
5610
o5.Size = Vector3.new(1, 2.4000001, 1)
5611
o5.CFrame = CFrame.new(3.618927, 3.53207898, -2.67700195, -0.0154758478, -0.144104496, -0.989441693, 0.649552941, 0.750867248, -0.119519472, 0.760160863, -0.644543171, 0.0819826573)
5612
o5.BottomSurface = Enum.SurfaceType.Smooth
5613
o5.TopSurface = Enum.SurfaceType.Smooth
5614
o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
5615
o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
5616
o5.Orientation = Vector3.new(6.86000013, -85.2600021, 40.8600006)
5617
o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
5618
o6.Parent = o5
5619
o6.MeshId = "http://www.roblox.com/asset/?id=1125478"
5620
o6.Offset = Vector3.new(2, 2, 2)
5621
o6.Scale = Vector3.new(1000, 1000, 1000)
5622
o6.VertexColor = Vector3.new(0.300000012, 4, 9)
5623
o6.MeshType = Enum.MeshType.FileMesh
5624
o6.Scale = Vector3.new(1000, 1000, 1000)
5625
o7.Name = "Brick"
5626
o7.Parent = o2
5627
o7.Material = Enum.Material.Neon
5628
o7.BrickColor = BrickColor.new("Royal purple")
5629
o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
5630
o7.Rotation = Vector3.new(60.2599983, -71.0599976, 96.9499969)
5631
o7.Anchored = true
5632
o7.CanCollide = false
5633
o7.Size = Vector3.new(1, 2.4000001, 1)
5634
o7.CFrame = CFrame.new(3.41925001, 3.46374989, -2.55004907, -0.0392630808, -0.322262198, -0.945838571, 0.591747701, 0.755236924, -0.281889617, 0.80517143, -0.570765078, 0.161043555)
5635
o7.BottomSurface = Enum.SurfaceType.Smooth
5636
o7.TopSurface = Enum.SurfaceType.Smooth
5637
o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
5638
o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
5639
o7.Orientation = Vector3.new(16.3700008, -80.3399963, 38.0800018)
5640
o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
5641
o8.Parent = o7
5642
o8.MeshId = "http://www.roblox.com/asset/?id=1125478"
5643
o8.Offset = Vector3.new(2, 2, 2)
5644
o8.Scale = Vector3.new(1000, 1000, 1000)
5645
o8.VertexColor = Vector3.new(0.300000012, 4, 9)
5646
o8.MeshType = Enum.MeshType.FileMesh
5647
o8.Scale = Vector3.new(1000, 1000, 1000)
5648
o9.Name = "Brick"
5649
o9.Parent = o2
5650
o9.Material = Enum.Material.Neon
5651
o9.BrickColor = BrickColor.new("Royal purple")
5652
o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
5653
o9.Rotation = Vector3.new(63.0400009, -60.4500008, 95.7099991)
5654
o9.Anchored = true
5655
o9.CanCollide = false
5656
o9.Size = Vector3.new(1, 2.4000001, 1)
5657
o9.CFrame = CFrame.new(3.24560499, 3.35655093, -2.41162109, -0.0490314811, -0.490668416, -0.86996752, 0.528260767, 0.726481915, -0.439518034, 0.847669482, -0.481119365, 0.223578453)
5658
o9.BottomSurface = Enum.SurfaceType.Smooth
5659
o9.TopSurface = Enum.SurfaceType.Smooth
5660
o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
5661
o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
5662
o9.Orientation = Vector3.new(26.0699997, -75.5899963, 36.0200005)
5663
o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
5664
o10.Parent = o9
5665
o10.MeshId = "http://www.roblox.com/asset/?id=1125478"
5666
o10.Offset = Vector3.new(2, 2, 2)
5667
o10.Scale = Vector3.new(1000, 1000, 1000)
5668
o10.VertexColor = Vector3.new(0.300000012, 4, 9)
5669
o10.MeshType = Enum.MeshType.FileMesh
5670
o10.Scale = Vector3.new(1000, 1000, 1000)
5671
o11.Name = "Brick"
5672
o11.Parent = o2
5673
o11.Material = Enum.Material.Neon
5674
o11.BrickColor = BrickColor.new("Royal purple")
5675
o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
5676
o11.Rotation = Vector3.new(84.7699966, 11.3299999, 76.1299973)
5677
o11.Anchored = true
5678
o11.CanCollide = false
5679
o11.Size = Vector3.new(1, 2.4000001, 1)
5680
o11.CFrame = CFrame.new(3.16018701, 2.01041889, -1.56359899, 0.234984711, -0.951925099, 0.196545079, 0.135413677, -0.168172807, -0.976414025, 0.962523997, 0.256055504, 0.0893825442)
5681
o11.BottomSurface = Enum.SurfaceType.Smooth
5682
o11.TopSurface = Enum.SurfaceType.Smooth
5683
o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
5684
o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
5685
o11.Orientation = Vector3.new(77.5299988, 65.5500031, 141.160004)
5686
o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
5687
o12.Parent = o11
5688
o12.MeshId = "http://www.roblox.com/asset/?id=1125478"
5689
o12.Offset = Vector3.new(2, 2, 2)
5690
o12.Scale = Vector3.new(1000, 1000, 1000)
5691
o12.VertexColor = Vector3.new(0.300000012, 4, 9)
5692
o12.MeshType = Enum.MeshType.FileMesh
5693
o12.Scale = Vector3.new(1000, 1000, 1000)
5694
o13.Name = "Brick"
5695
o13.Parent = o2
5696
o13.Material = Enum.Material.Neon
5697
o13.BrickColor = BrickColor.new("Royal purple")
5698
o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
5699
o13.Rotation = Vector3.new(90.1399994, 20.6700001, 70.8600006)
5700
o13.Anchored = true
5701
o13.CanCollide = false
5702
o13.Size = Vector3.new(1, 2.4000001, 1)
5703
o13.CFrame = CFrame.new(3.31469703, 1.82450104, -1.51757801, 0.306727529, -0.883943498, 0.352943659, 0.113343202, -0.334257245, -0.935642958, 0.945028484, 0.32698974, -0.00233911769)
5704
o13.BottomSurface = Enum.SurfaceType.Smooth
5705
o13.TopSurface = Enum.SurfaceType.Smooth
5706
o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
5707
o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
5708
o13.Orientation = Vector3.new(69.3300018, 90.3799973, 161.270004)
5709
o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
5710
o14.Parent = o13
5711
o14.MeshId = "http://www.roblox.com/asset/?id=1125478"
5712
o14.Offset = Vector3.new(2, 2, 2)
5713
o14.Scale = Vector3.new(1000, 1000, 1000)
5714
o14.VertexColor = Vector3.new(0.300000012, 4, 9)
5715
o14.MeshType = Enum.MeshType.FileMesh
5716
o14.Scale = Vector3.new(1000, 1000, 1000)
5717
o15.Name = "Brick"
5718
o15.Parent = o2
5719
o15.Material = Enum.Material.Neon
5720
o15.BrickColor = BrickColor.new("Royal purple")
5721
o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
5722
o15.Rotation = Vector3.new(160.410004, 49.5999985, 1.05999994)
5723
o15.Anchored = true
5724
o15.CanCollide = false
5725
o15.Size = Vector3.new(1, 2.4000001, 1)
5726
o15.CFrame = CFrame.new(4.57440186, 1.39447999, -1.79949903, 0.64802295, -0.0120393187, 0.761527359, 0.237799332, -0.946695745, -0.217319146, 0.7235502, 0.321917951, -0.610618293)
5727
o15.BottomSurface = Enum.SurfaceType.Smooth
5728
o15.TopSurface = Enum.SurfaceType.Smooth
5729
o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
5730
o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
5731
o15.Orientation = Vector3.new(12.5500002, 128.720001, 165.899994)
5732
o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
5733
o16.Parent = o15
5734
o16.MeshId = "http://www.roblox.com/asset/?id=1125478"
5735
o16.Offset = Vector3.new(2, 2, 2)
5736
o16.Scale = Vector3.new(1000, 1000, 1000)
5737
o16.VertexColor = Vector3.new(0.300000012, 4, 9)
5738
o16.MeshType = Enum.MeshType.FileMesh
5739
o16.Scale = Vector3.new(1000, 1000, 1000)
5740
o17.Name = "Brick"
5741
o17.Parent = o2
5742
o17.Material = Enum.Material.Neon
5743
o17.BrickColor = BrickColor.new("Royal purple")
5744
o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
5745
o17.Rotation = Vector3.new(70.6100006, -28.9300003, 89.6299973)
5746
o17.Anchored = true
5747
o17.CanCollide = false
5748
o17.Size = Vector3.new(1, 2.4000001, 1)
5749
o17.CFrame = CFrame.new(2.94677711, 2.85119104, -1.97851598, 0.00562491454, -0.875205159, -0.483721107, 0.328991413, 0.458422065, -0.825601816, 0.944317937, -0.154494658, 0.290510803)
5750
o17.BottomSurface = Enum.SurfaceType.Smooth
5751
o17.TopSurface = Enum.SurfaceType.Smooth
5752
o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
5753
o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
5754
o17.Orientation = Vector3.new(55.6500015, -59.0099983, 35.6699982)
5755
o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
5756
o18.Parent = o17
5757
o18.MeshId = "http://www.roblox.com/asset/?id=1125478"
5758
o18.Offset = Vector3.new(2, 2, 2)
5759
o18.Scale = Vector3.new(1000, 1000, 1000)
5760
o18.VertexColor = Vector3.new(0.300000012, 4, 9)
5761
o18.MeshType = Enum.MeshType.FileMesh
5762
o18.Scale = Vector3.new(1000, 1000, 1000)
5763
o19.Name = "Brick"
5764
o19.Parent = o2
5765
o19.Material = Enum.Material.Neon
5766
o19.BrickColor = BrickColor.new("Royal purple")
5767
o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
5768
o19.Rotation = Vector3.new(68, -39.3699989, 91.9400024)
5769
o19.Anchored = true
5770
o19.CanCollide = false
5771
o19.Size = Vector3.new(1, 2.4000001, 1)
5772
o19.CFrame = CFrame.new(3.00463891, 3.044065, -2.12027001, -0.0261950977, -0.772609949, -0.634342492, 0.394283026, 0.575135231, -0.716777742, 0.918619871, -0.26888746, 0.289558738)
5773
o19.BottomSurface = Enum.SurfaceType.Smooth
5774
o19.TopSurface = Enum.SurfaceType.Smooth
5775
o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
5776
o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
5777
o19.Orientation = Vector3.new(45.7900009, -65.4599991, 34.4300003)
5778
o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
5779
o20.Parent = o19
5780
o20.MeshId = "http://www.roblox.com/asset/?id=1125478"
5781
o20.Offset = Vector3.new(2, 2, 2)
5782
o20.Scale = Vector3.new(1000, 1000, 1000)
5783
o20.VertexColor = Vector3.new(0.300000012, 4, 9)
5784
o20.MeshType = Enum.MeshType.FileMesh
5785
o20.Scale = Vector3.new(1000, 1000, 1000)
5786
o21.Name = "Brick"
5787
o21.Parent = o2
5788
o21.Material = Enum.Material.Neon
5789
o21.BrickColor = BrickColor.new("Royal purple")
5790
o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
5791
o21.Rotation = Vector3.new(65.5299988, -49.8899994, 93.9800034)
5792
o21.Anchored = true
5793
o21.CanCollide = false
5794
o21.Size = Vector3.new(1, 2.4000001, 1)
5795
o21.CFrame = CFrame.new(3.10595703, 3.21490192, -2.26617408, -0.0446844138, -0.642767787, -0.764757931, 0.46155408, 0.665641308, -0.586429715, 0.88599056, -0.37918207, 0.26692614)
5796
o21.BottomSurface = Enum.SurfaceType.Smooth
5797
o21.TopSurface = Enum.SurfaceType.Smooth
5798
o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
5799
o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
5800
o21.Orientation = Vector3.new(35.9000015, -70.7600021, 34.7400017)
5801
o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
5802
o22.Parent = o21
5803
o22.MeshId = "http://www.roblox.com/asset/?id=1125478"
5804
o22.Offset = Vector3.new(2, 2, 2)
5805
o22.Scale = Vector3.new(1000, 1000, 1000)
5806
o22.VertexColor = Vector3.new(0.300000012, 4, 9)
5807
o22.MeshType = Enum.MeshType.FileMesh
5808
o22.Scale = Vector3.new(1000, 1000, 1000)
5809
o23.Name = "Brick"
5810
o23.Parent = o2
5811
o23.Material = Enum.Material.Neon
5812
o23.BrickColor = BrickColor.new("Royal purple")
5813
o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
5814
o23.Rotation = Vector3.new(73.4700012, -18.5900002, 87.0100021)
5815
o23.Anchored = true
5816
o23.CanCollide = false
5817
o23.Size = Vector3.new(1, 2.4000001, 1)
5818
o23.CFrame = CFrame.new(2.93334889, 2.64311099, -1.84747303, 0.0495064296, -0.946529031, -0.318804532, 0.268211812, 0.320073038, -0.908636391, 0.962090611, -0.0405250117, 0.269712627)
5819
o23.BottomSurface = Enum.SurfaceType.Smooth
5820
o23.TopSurface = Enum.SurfaceType.Smooth
5821
o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
5822
o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
5823
o23.Orientation = Vector3.new(65.3199997, -49.7700005, 39.9599991)
5824
o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
5825
o24.Parent = o23
5826
o24.MeshId = "http://www.roblox.com/asset/?id=1125478"
5827
o24.Offset = Vector3.new(2, 2, 2)
5828
o24.Scale = Vector3.new(1000, 1000, 1000)
5829
o24.VertexColor = Vector3.new(0.300000012, 4, 9)
5830
o24.MeshType = Enum.MeshType.FileMesh
5831
o24.Scale = Vector3.new(1000, 1000, 1000)
5832
o25.Name = "Brick"
5833
o25.Parent = o2
5834
o25.Material = Enum.Material.Neon
5835
o25.BrickColor = BrickColor.new("Royal purple")
5836
o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
5837
o25.Rotation = Vector3.new(76.6699982, -8.39000034, 83.9700012)
5838
o25.Anchored = true
5839
o25.CanCollide = false
5840
o25.Size = Vector3.new(1, 2.4000001, 1)
5841
o25.CFrame = CFrame.new(2.965698, 2.42810798, -1.73171997, 0.103865072, -0.983827293, -0.14595513, 0.214386716, 0.165448487, -0.962637901, 0.971214116, 0.0686925501, 0.22809954)
5842
o25.BottomSurface = Enum.SurfaceType.Smooth
5843
o25.TopSurface = Enum.SurfaceType.Smooth
5844
o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
5845
o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
5846
o25.Orientation = Vector3.new(74.2900009, -32.6100006, 52.3400002)
5847
o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
5848
o26.Parent = o25
5849
o26.MeshId = "http://www.roblox.com/asset/?id=1125478"
5850
o26.Offset = Vector3.new(2, 2, 2)
5851
o26.Scale = Vector3.new(1000, 1000, 1000)
5852
o26.VertexColor = Vector3.new(0.300000012, 4, 9)
5853
o26.MeshType = Enum.MeshType.FileMesh
5854
o26.Scale = Vector3.new(1000, 1000, 1000)
5855
o27.Name = "Brick"
5856
o27.Parent = o2
5857
o27.Material = Enum.Material.Neon
5858
o27.BrickColor = BrickColor.new("Royal purple")
5859
o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
5860
o27.Rotation = Vector3.new(80.3700027, 1.61000001, 80.4100037)
5861
o27.Anchored = true
5862
o27.CanCollide = false
5863
o27.Size = Vector3.new(1, 2.4000001, 1)
5864
o27.CFrame = CFrame.new(3.04232788, 2.21434498, -1.63577294, 0.166501582, -0.985645115, 0.0280937776, 0.169498622, 0.000545704737, -0.985533655, 0.971367121, 0.168852925, 0.167152837)
5865
o27.BottomSurface = Enum.SurfaceType.Smooth
5866
o27.TopSurface = Enum.SurfaceType.Smooth
5867
o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
5868
o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
5869
o27.Orientation = Vector3.new(80.2399979, 9.53999996, 89.8199997)
5870
o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
5871
o28.Parent = o27
5872
o28.MeshId = "http://www.roblox.com/asset/?id=1125478"
5873
o28.Offset = Vector3.new(2, 2, 2)
5874
o28.Scale = Vector3.new(1000, 1000, 1000)
5875
o28.VertexColor = Vector3.new(0.300000012, 4, 9)
5876
o28.MeshType = Enum.MeshType.FileMesh
5877
o28.Scale = Vector3.new(1000, 1000, 1000)
5878
o29.Name = "Brick"
5879
o29.Parent = o2
5880
o29.Material = Enum.Material.Neon
5881
o29.BrickColor = BrickColor.new("Royal purple")
5882
o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
5883
o29.Rotation = Vector3.new(-133.990005, -24.3700008, -63.5200005)
5884
o29.Anchored = true
5885
o29.CanCollide = false
5886
o29.Size = Vector3.new(1, 2.4000001, 1)
5887
o29.CFrame = CFrame.new(5.06256104, 2.90255404, -2.91796899, 0.406100124, 0.815340042, -0.412699133, 0.754046142, -0.0438508503, 0.655360699, 0.516244054, -0.577332199, -0.632607102)
5888
o29.BottomSurface = Enum.SurfaceType.Smooth
5889
o29.TopSurface = Enum.SurfaceType.Smooth
5890
o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
5891
o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
5892
o29.Orientation = Vector3.new(-40.9500008, -146.880005, 93.3300018)
5893
o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
5894
o30.Parent = o29
5895
o30.MeshId = "http://www.roblox.com/asset/?id=1125478"
5896
o30.Offset = Vector3.new(2, 2, 2)
5897
o30.Scale = Vector3.new(1000, 1000, 1000)
5898
o30.VertexColor = Vector3.new(0.300000012, 4, 9)
5899
o30.MeshType = Enum.MeshType.FileMesh
5900
o30.Scale = Vector3.new(1000, 1000, 1000)
5901
o31.Name = "Brick"
5902
o31.Parent = o2
5903
o31.Material = Enum.Material.Neon
5904
o31.BrickColor = BrickColor.new("Royal purple")
5905
o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
5906
o31.Rotation = Vector3.new(-131.279999, -34.7700005, -65.9599991)
5907
o31.Anchored = true
5908
o31.CanCollide = false
5909
o31.Size = Vector3.new(1, 2.4000001, 1)
5910
o31.CFrame = CFrame.new(4.91119385, 3.09106302, -2.96588111, 0.334565103, 0.75018847, -0.570341349, 0.777153254, 0.122676805, 0.61724031, 0.533016145, -0.649748385, -0.541965544)
5911
o31.BottomSurface = Enum.SurfaceType.Smooth
5912
o31.TopSurface = Enum.SurfaceType.Smooth
5913
o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
5914
o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
5915
o31.Orientation = Vector3.new(-38.1100006, -133.539993, 81.0299988)
5916
o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
5917
o32.Parent = o31
5918
o32.MeshId = "http://www.roblox.com/asset/?id=1125478"
5919
o32.Offset = Vector3.new(2, 2, 2)
5920
o32.Scale = Vector3.new(1000, 1000, 1000)
5921
o32.VertexColor = Vector3.new(0.300000012, 4, 9)
5922
o32.MeshType = Enum.MeshType.FileMesh
5923
o32.Scale = Vector3.new(1000, 1000, 1000)
5924
o33.Name = "Brick"
5925
o33.Parent = o2
5926
o33.Material = Enum.Material.Neon
5927
o33.BrickColor = BrickColor.new("Royal purple")
5928
o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
5929
o33.Rotation = Vector3.new(-128.759995, -45.2599983, -68.1200027)
5930
o33.Anchored = true
5931
o33.CanCollide = false
5932
o33.Size = Vector3.new(1, 2.4000001, 1)
5933
o33.CFrame = CFrame.new(4.72817993, 3.2543149, -2.98629689, 0.262331456, 0.653153419, -0.71034348, 0.78741014, 0.280647159, 0.548841178, 0.557832479, -0.703308582, -0.440674037)
5934
o33.BottomSurface = Enum.SurfaceType.Smooth
5935
o33.TopSurface = Enum.SurfaceType.Smooth
5936
o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
5937
o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
5938
o33.Orientation = Vector3.new(-33.2900009, -121.809998, 70.3799973)
5939
o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
5940
o34.Parent = o33
5941
o34.MeshId = "http://www.roblox.com/asset/?id=1125478"
5942
o34.Offset = Vector3.new(2, 2, 2)
5943
o34.Scale = Vector3.new(1000, 1000, 1000)
5944
o34.VertexColor = Vector3.new(0.300000012, 4, 9)
5945
o34.MeshType = Enum.MeshType.FileMesh
5946
o34.Scale = Vector3.new(1000, 1000, 1000)
5947
o35.Name = "Brick"
5948
o35.Parent = o2
5949
o35.Material = Enum.Material.Neon
5950
o35.BrickColor = BrickColor.new("Royal purple")
5951
o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
5952
o35.Rotation = Vector3.new(-126.300003, -55.8100014, -69.9899979)
5953
o35.Anchored = true
5954
o35.CanCollide = false
5955
o35.Size = Vector3.new(1, 2.4000001, 1)
5956
o35.CFrame = CFrame.new(4.52124023, 3.38793397, -2.97735596, 0.192273602, 0.528050721, -0.8271662, 0.784404039, 0.42380619, 0.452882349, 0.589703321, -0.735906541, -0.332716405)
5957
o35.BottomSurface = Enum.SurfaceType.Smooth
5958
o35.TopSurface = Enum.SurfaceType.Smooth
5959
o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
5960
o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
5961
o35.Orientation = Vector3.new(-26.9300003, -111.910004, 61.6199989)
5962
o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
5963
o36.Parent = o35
5964
o36.MeshId = "http://www.roblox.com/asset/?id=1125478"
5965
o36.Offset = Vector3.new(2, 2, 2)
5966
o36.Scale = Vector3.new(1000, 1000, 1000)
5967
o36.VertexColor = Vector3.new(0.300000012, 4, 9)
5968
o36.MeshType = Enum.MeshType.FileMesh
5969
o36.Scale = Vector3.new(1000, 1000, 1000)
5970
o37.Name = "Brick"
5971
o37.Parent = o2
5972
o37.Material = Enum.Material.Neon
5973
o37.BrickColor = BrickColor.new("Royal purple")
5974
o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
5975
o37.Rotation = Vector3.new(-123.709999, -66.4000015, -71.4899979)
5976
o37.Anchored = true
5977
o37.CanCollide = false
5978
o37.Size = Vector3.new(1, 2.4000001, 1)
5979
o37.CFrame = CFrame.new(4.29772902, 3.48497605, -2.94018507, 0.12711224, 0.379692227, -0.916344583, 0.768234134, 0.546692252, 0.333088756, 0.627428651, -0.746304989, -0.222200081)
5980
o37.BottomSurface = Enum.SurfaceType.Smooth
5981
o37.TopSurface = Enum.SurfaceType.Smooth
5982
o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
5983
o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
5984
o37.Orientation = Vector3.new(-19.4599991, -103.629997, 54.5600014)
5985
o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
5986
o38.Parent = o37
5987
o38.MeshId = "http://www.roblox.com/asset/?id=1125478"
5988
o38.Offset = Vector3.new(2, 2, 2)
5989
o38.Scale = Vector3.new(1000, 1000, 1000)
5990
o38.VertexColor = Vector3.new(0.300000012, 4, 9)
5991
o38.MeshType = Enum.MeshType.FileMesh
5992
o38.Scale = Vector3.new(1000, 1000, 1000)
5993
o39.Name = "Brick"
5994
o39.Parent = o2
5995
o39.Material = Enum.Material.Neon
5996
o39.BrickColor = BrickColor.new("Royal purple")
5997
o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
5998
o39.Rotation = Vector3.new(-120.32, -77.0100021, -72.0400009)
5999
o39.Anchored = true
6000
o39.CanCollide = false
6001
o39.Size = Vector3.new(1, 2.4000001, 1)
6002
o39.CFrame = CFrame.new(4.06726122, 3.54251599, -2.87588501, 0.0693322793, 0.213873416, -0.974402368, 0.739563346, 0.644502819, 0.194081604, 0.669512689, -0.734086096, -0.113487378)
6003
o39.BottomSurface = Enum.SurfaceType.Smooth
6004
o39.TopSurface = Enum.SurfaceType.Smooth
6005
o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
6006
o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
6007
o39.Orientation = Vector3.new(-11.1899996, -96.6399994, 48.9300003)
6008
o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
6009
o40.Parent = o39
6010
o40.MeshId = "http://www.roblox.com/asset/?id=1125478"
6011
o40.Offset = Vector3.new(2, 2, 2)
6012
o40.Scale = Vector3.new(1000, 1000, 1000)
6013
o40.VertexColor = Vector3.new(0.300000012, 4, 9)
6014
o40.MeshType = Enum.MeshType.FileMesh
6015
o40.Scale = Vector3.new(1000, 1000, 1000)
6016
o41.Name = "Brick"
6017
o41.Parent = o2
6018
o41.Material = Enum.Material.Neon
6019
o41.BrickColor = BrickColor.new("Royal purple")
6020
o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
6021
o41.Rotation = Vector3.new(-104.620003, -87.5599976, -60.2000008)
6022
o41.Anchored = true
6023
o41.CanCollide = false
6024
o41.Size = Vector3.new(1, 2.4000001, 1)
6025
o41.CFrame = CFrame.new(3.83755493, 3.5582931, -2.78716993, 0.0211498551, 0.0369331241, -0.999094546, 0.6994735, 0.713474691, 0.0411797762, 0.714347363, -0.699709892, -0.0107443864)
6026
o41.BottomSurface = Enum.SurfaceType.Smooth
6027
o41.TopSurface = Enum.SurfaceType.Smooth
6028
o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
6029
o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
6030
o41.Orientation = Vector3.new(-2.3599999, -90.6200027, 44.4300003)
6031
o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
6032
o42.Parent = o41
6033
o42.MeshId = "http://www.roblox.com/asset/?id=1125478"
6034
o42.Offset = Vector3.new(2, 2, 2)
6035
o42.Scale = Vector3.new(1000, 1000, 1000)
6036
o42.VertexColor = Vector3.new(0.300000012, 4, 9)
6037
o42.MeshType = Enum.MeshType.FileMesh
6038
o42.Scale = Vector3.new(1000, 1000, 1000)
6039
o43.Name = "Brick"
6040
o43.Parent = o2
6041
o43.Material = Enum.Material.Neon
6042
o43.BrickColor = BrickColor.new("Royal purple")
6043
o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
6044
o43.Rotation = Vector3.new(105.5, 37.2799988, 55.6800003)
6045
o43.Anchored = true
6046
o43.CanCollide = false
6047
o43.Size = Vector3.new(1, 2.4000001, 1)
6048
o43.CFrame = CFrame.new(3.70880103, 1.53280604, -1.51110804, 0.448593676, -0.657117724, 0.605777919, 0.108368672, -0.632810354, -0.766686857, 0.887145698, 0.409578443, -0.21266529)
6049
o43.BottomSurface = Enum.SurfaceType.Smooth
6050
o43.TopSurface = Enum.SurfaceType.Smooth
6051
o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
6052
o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
6053
o43.Orientation = Vector3.new(50.0600014, 109.339996, 170.279999)
6054
o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
6055
o44.Parent = o43
6056
o44.MeshId = "http://www.roblox.com/asset/?id=1125478"
6057
o44.Offset = Vector3.new(2, 2, 2)
6058
o44.Scale = Vector3.new(1000, 1000, 1000)
6059
o44.VertexColor = Vector3.new(0.300000012, 4, 9)
6060
o44.MeshType = Enum.MeshType.FileMesh
6061
o44.Scale = Vector3.new(1000, 1000, 1000)
6062
o45.Name = "Brick"
6063
o45.Parent = o2
6064
o45.Material = Enum.Material.Neon
6065
o45.BrickColor = BrickColor.new("Royal purple")
6066
o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
6067
o45.Rotation = Vector3.new(116.610001, 43.8199997, 44.6500015)
6068
o45.Anchored = true
6069
o45.CanCollide = false
6070
o45.Size = Vector3.new(1, 2.4000001, 1)
6071
o45.CFrame = CFrame.new(3.9332881, 1.43899, -1.55038404, 0.513256431, -0.507025182, 0.692457318, 0.125652671, -0.753752112, -0.645036459, 0.848991394, 0.418078154, -0.323159516)
6072
o45.BottomSurface = Enum.SurfaceType.Smooth
6073
o45.TopSurface = Enum.SurfaceType.Smooth
6074
o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
6075
o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
6076
o45.Orientation = Vector3.new(40.1699982, 115.019997, 170.539993)
6077
o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
6078
o46.Parent = o45
6079
o46.MeshId = "http://www.roblox.com/asset/?id=1125478"
6080
o46.Offset = Vector3.new(2, 2, 2)
6081
o46.Scale = Vector3.new(1000, 1000, 1000)
6082
o46.VertexColor = Vector3.new(0.300000012, 4, 9)
6083
o46.MeshType = Enum.MeshType.FileMesh
6084
o46.Scale = Vector3.new(1000, 1000, 1000)
6085
o47.Name = "Brick"
6086
o47.Parent = o2
6087
o47.Material = Enum.Material.Neon
6088
o47.BrickColor = BrickColor.new("Royal purple")
6089
o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
6090
o47.Rotation = Vector3.new(130.539993, 48.4000015, 30.7999992)
6091
o47.Anchored = true
6092
o47.CanCollide = false
6093
o47.Size = Vector3.new(1, 2.4000001, 1)
6094
o47.CFrame = CFrame.new(4.16439819, 1.38474405, -1.61688197, 0.570331037, -0.339972913, 0.747757614, 0.155332476, -0.849266231, -0.504599333, 0.806594849, 0.403941095, -0.43155393)
6095
o47.BottomSurface = Enum.SurfaceType.Smooth
6096
o47.TopSurface = Enum.SurfaceType.Smooth
6097
o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
6098
o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
6099
o47.Orientation = Vector3.new(30.2999992, 119.989998, 169.639999)
6100
o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
6101
o48.Parent = o47
6102
o48.MeshId = "http://www.roblox.com/asset/?id=1125478"
6103
o48.Offset = Vector3.new(2, 2, 2)
6104
o48.Scale = Vector3.new(1000, 1000, 1000)
6105
o48.VertexColor = Vector3.new(0.300000012, 4, 9)
6106
o48.MeshType = Enum.MeshType.FileMesh
6107
o48.Scale = Vector3.new(1000, 1000, 1000)
6108
o49.Name = "Brick"
6109
o49.Parent = o2
6110
o49.Material = Enum.Material.Neon
6111
o49.BrickColor = BrickColor.new("Royal purple")
6112
o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
6113
o49.Rotation = Vector3.new(146.669998, 50.3100014, 14.7399998)
6114
o49.Anchored = true
6115
o49.CanCollide = false
6116
o49.Size = Vector3.new(1, 2.4000001, 1)
6117
o49.CFrame = CFrame.new(4.39288282, 1.37233901, -1.70782495, 0.617577851, -0.162517488, 0.769542575, 0.196282297, -0.915626526, -0.35088259, 0.76163286, 0.367743611, -0.533573449)
6118
o49.BottomSurface = Enum.SurfaceType.Smooth
6119
o49.TopSurface = Enum.SurfaceType.Smooth
6120
o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
6121
o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
6122
o49.Orientation = Vector3.new(20.5400009, 124.739998, 167.899994)
6123
o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
6124
o50.Parent = o49
6125
o50.MeshId = "http://www.roblox.com/asset/?id=1125478"
6126
o50.Offset = Vector3.new(2, 2, 2)
6127
o50.Scale = Vector3.new(1000, 1000, 1000)
6128
o50.VertexColor = Vector3.new(0.300000012, 4, 9)
6129
o50.MeshType = Enum.MeshType.FileMesh
6130
o50.Scale = Vector3.new(1000, 1000, 1000)
6131
o51.Name = "Brick"
6132
o51.Parent = o2
6133
o51.Material = Enum.Material.Neon
6134
o51.BrickColor = BrickColor.new("Royal purple")
6135
o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
6136
o51.Rotation = Vector3.new(175.460007, 46.1100006, -13.9099998)
6137
o51.Anchored = true
6138
o51.CanCollide = false
6139
o51.Size = Vector3.new(1, 2.4000001, 1)
6140
o51.CFrame = CFrame.new(4.77636719, 1.45922303, -1.92498803, 0.672873378, 0.16669859, 0.720732152, 0.295064241, -0.953904152, -0.0548422486, 0.678368092, 0.249565676, -0.691042304)
6141
o51.BottomSurface = Enum.SurfaceType.Smooth
6142
o51.TopSurface = Enum.SurfaceType.Smooth
6143
o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
6144
o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
6145
o51.Orientation = Vector3.new(3.1400001, 133.800003, 162.809998)
6146
o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
6147
o52.Parent = o51
6148
o52.MeshId = "http://www.roblox.com/asset/?id=1125478"
6149
o52.Offset = Vector3.new(2, 2, 2)
6150
o52.Scale = Vector3.new(1000, 1000, 1000)
6151
o52.VertexColor = Vector3.new(0.300000012, 4, 9)
6152
o52.MeshType = Enum.MeshType.FileMesh
6153
o52.Scale = Vector3.new(1000, 1000, 1000)
6154
o53.Name = "Brick"
6155
o53.Parent = o2
6156
o53.Material = Enum.Material.Neon
6157
o53.BrickColor = BrickColor.new("Royal purple")
6158
o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
6159
o53.Rotation = Vector3.new(-172.199997, 40.3600006, -26.1700001)
6160
o53.Anchored = true
6161
o53.CanCollide = false
6162
o53.Size = Vector3.new(1, 2.4000001, 1)
6163
o53.CFrame = CFrame.new(4.95245314, 1.56303596, -2.06259108, 0.68390286, 0.33614102, 0.64752382, 0.358143985, -0.927920341, 0.103433087, 0.635619402, 0.161170885, -0.754993856)
6164
o53.BottomSurface = Enum.SurfaceType.Smooth
6165
o53.TopSurface = Enum.SurfaceType.Smooth
6166
o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
6167
o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
6168
o53.Orientation = Vector3.new(-5.94000006, 139.380005, 158.899994)
6169
o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
6170
o54.Parent = o53
6171
o54.MeshId = "http://www.roblox.com/asset/?id=1125478"
6172
o54.Offset = Vector3.new(2, 2, 2)
6173
o54.Scale = Vector3.new(1000, 1000, 1000)
6174
o54.VertexColor = Vector3.new(0.300000012, 4, 9)
6175
o54.MeshType = Enum.MeshType.FileMesh
6176
o54.Scale = Vector3.new(1000, 1000, 1000)
6177
o55.Name = "Brick"
6178
o55.Parent = o2
6179
o55.Material = Enum.Material.Neon
6180
o55.BrickColor = BrickColor.new("Royal purple")
6181
o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
6182
o55.Rotation = Vector3.new(-162.550003, 33, -35.7400017)
6183
o55.Anchored = true
6184
o55.CanCollide = false
6185
o55.Size = Vector3.new(1, 2.4000001, 1)
6186
o55.CFrame = CFrame.new(5.09490919, 1.70155895, -2.20797706, 0.680727184, 0.489860028, 0.544654846, 0.424662501, -0.869728863, 0.251472116, 0.596890628, 0.0601115078, -0.80007118)
6187
o55.BottomSurface = Enum.SurfaceType.Smooth
6188
o55.TopSurface = Enum.SurfaceType.Smooth
6189
o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
6190
o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
6191
o55.Orientation = Vector3.new(-14.5600004, 145.75, 153.979996)
6192
o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
6193
o56.Parent = o55
6194
o56.MeshId = "http://www.roblox.com/asset/?id=1125478"
6195
o56.Offset = Vector3.new(2, 2, 2)
6196
o56.Scale = Vector3.new(1000, 1000, 1000)
6197
o56.VertexColor = Vector3.new(0.300000012, 4, 9)
6198
o56.MeshType = Enum.MeshType.FileMesh
6199
o56.Scale = Vector3.new(1000, 1000, 1000)
6200
o57.Name = "Brick"
6201
o57.Parent = o2
6202
o57.Material = Enum.Material.Neon
6203
o57.BrickColor = BrickColor.new("Royal purple")
6204
o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
6205
o57.Rotation = Vector3.new(-155.059998, 24.5900002, -43.1399994)
6206
o57.Anchored = true
6207
o57.CanCollide = false
6208
o57.Size = Vector3.new(1, 2.4000001, 1)
6209
o57.CFrame = CFrame.new(5.19952393, 1.86994803, -2.35424805, 0.663467348, 0.621792495, 0.416159749, 0.492012411, -0.781613827, 0.383423984, 0.563687682, -0.0496326238, -0.824503481)
6210
o57.BottomSurface = Enum.SurfaceType.Smooth
6211
o57.TopSurface = Enum.SurfaceType.Smooth
6212
o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
6213
o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
6214
o57.Orientation = Vector3.new(-22.5499992, 153.220001, 147.809998)
6215
o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
6216
o58.Parent = o57
6217
o58.MeshId = "http://www.roblox.com/asset/?id=1125478"
6218
o58.Offset = Vector3.new(2, 2, 2)
6219
o58.Scale = Vector3.new(1000, 1000, 1000)
6220
o58.VertexColor = Vector3.new(0.300000012, 4, 9)
6221
o58.MeshType = Enum.MeshType.FileMesh
6222
o58.Scale = Vector3.new(1000, 1000, 1000)
6223
o59.Name = "Brick"
6224
o59.Parent = o2
6225
o59.Material = Enum.Material.Neon
6226
o59.BrickColor = BrickColor.new("Royal purple")
6227
o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
6228
o59.Rotation = Vector3.new(-149.139999, 15.4899998, -48.9599991)
6229
o59.Anchored = true
6230
o59.CanCollide = false
6231
o59.Size = Vector3.new(1, 2.4000001, 1)
6232
o59.CFrame = CFrame.new(5.2615962, 2.06174994, -2.49609399, 0.632684767, 0.726892948, 0.267095983, 0.557561934, -0.666930854, 0.49429667, 0.53743577, -0.163808867, -0.827243149)
6233
o59.BottomSurface = Enum.SurfaceType.Smooth
6234
o59.TopSurface = Enum.SurfaceType.Smooth
6235
o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
6236
o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
6237
o59.Orientation = Vector3.new(-29.6200008, 162.110001, 140.100006)
6238
o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
6239
o60.Parent = o59
6240
o60.MeshId = "http://www.roblox.com/asset/?id=1125478"
6241
o60.Offset = Vector3.new(2, 2, 2)
6242
o60.Scale = Vector3.new(1000, 1000, 1000)
6243
o60.VertexColor = Vector3.new(0.300000012, 4, 9)
6244
o60.MeshType = Enum.MeshType.FileMesh
6245
o60.Scale = Vector3.new(1000, 1000, 1000)
6246
o61.Name = "Brick"
6247
o61.Parent = o2
6248
o61.Material = Enum.Material.Neon
6249
o61.BrickColor = BrickColor.new("Royal purple")
6250
o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
6251
o61.Rotation = Vector3.new(-144.360001, 5.92000008, -53.6399994)
6252
o61.Anchored = true
6253
o61.CanCollide = false
6254
o61.Size = Vector3.new(1, 2.4000001, 1)
6255
o61.CFrame = CFrame.new(5.27862501, 2.26872897, -2.62854004, 0.589739919, 0.800988555, 0.103097625, 0.618806839, -0.530213952, 0.579620779, 0.518933594, -0.278024584, -0.808341324)
6256
o61.BottomSurface = Enum.SurfaceType.Smooth
6257
o61.TopSurface = Enum.SurfaceType.Smooth
6258
o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
6259
o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
6260
o61.Orientation = Vector3.new(-35.4199982, 172.729996, 130.589996)
6261
o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
6262
o62.Parent = o61
6263
o62.MeshId = "http://www.roblox.com/asset/?id=1125478"
6264
o62.Offset = Vector3.new(2, 2, 2)
6265
o62.Scale = Vector3.new(1000, 1000, 1000)
6266
o62.VertexColor = Vector3.new(0.300000012, 4, 9)
6267
o62.MeshType = Enum.MeshType.FileMesh
6268
o62.Scale = Vector3.new(1000, 1000, 1000)
6269
o63.Name = "Brick"
6270
o63.Parent = o2
6271
o63.Material = Enum.Material.Neon
6272
o63.BrickColor = BrickColor.new("Royal purple")
6273
o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
6274
o63.Rotation = Vector3.new(-140.380005, -3.97000003, -57.4799995)
6275
o63.Anchored = true
6276
o63.CanCollide = false
6277
o63.Size = Vector3.new(1, 2.4000001, 1)
6278
o63.CFrame = CFrame.new(5.25003004, 2.4836719, -2.74575806, 0.536248684, 0.841212153, -0.0692981035, 0.673294485, -0.376801223, 0.636157036, 0.5090307, -0.387795955, -0.768441141)
6279
o63.BottomSurface = Enum.SurfaceType.Smooth
6280
o63.TopSurface = Enum.SurfaceType.Smooth
6281
o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
6282
o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
6283
o63.Orientation = Vector3.new(-39.5099983, -174.850006, 119.230003)
6284
o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
6285
o64.Parent = o63
6286
o64.MeshId = "http://www.roblox.com/asset/?id=1125478"
6287
o64.Offset = Vector3.new(2, 2, 2)
6288
o64.Scale = Vector3.new(1000, 1000, 1000)
6289
o64.VertexColor = Vector3.new(0.300000012, 4, 9)
6290
o64.MeshType = Enum.MeshType.FileMesh
6291
o64.Scale = Vector3.new(1000, 1000, 1000)
6292
o65.Name = "Brick"
6293
o65.Parent = o2
6294
o65.Material = Enum.Material.Neon
6295
o65.BrickColor = BrickColor.new("Royal purple")
6296
o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
6297
o65.Rotation = Vector3.new(-136.979996, -14.0900002, -60.7299995)
6298
o65.Anchored = true
6299
o65.CanCollide = false
6300
o65.Size = Vector3.new(1, 2.4000001, 1)
6301
o65.CFrame = CFrame.new(5.17730713, 2.697891, -2.84332299, 0.474191397, 0.846081197, -0.243520409, 0.718994558, -0.212507248, 0.661735475, 0.508131981, -0.488876581, -0.709092855)
6302
o65.BottomSurface = Enum.SurfaceType.Smooth
6303
o65.TopSurface = Enum.SurfaceType.Smooth
6304
o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
6305
o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
6306
o65.Orientation = Vector3.new(-41.4300003, -161.050003, 106.470001)
6307
o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
6308
o66.Parent = o65
6309
o66.MeshId = "http://www.roblox.com/asset/?id=1125478"
6310
o66.Offset = Vector3.new(2, 2, 2)
6311
o66.Scale = Vector3.new(1000, 1000, 1000)
6312
o66.VertexColor = Vector3.new(0.300000012, 4, 9)
6313
o66.MeshType = Enum.MeshType.FileMesh
6314
o66.Scale = Vector3.new(1000, 1000, 1000)
6315
o67.Parent = o2
6316
table.insert(cors,coroutine.create(function()
6317
wait()
6318-
local Player = game:service'Players'.LocalPlayer
6318+
6319
--Time
6320
l = script.Parent
6321
while true do
6322
wait()
6323
local h = l:GetChildren()
6324
for i = 1, #h do
6325
if h[i].Name == "Brick" then
6326
h[i].CFrame = h[i].CFrame * CFrame.fromEulerAnglesXYZ(0.02,0.01,0.02)
6327
end
6328
end
6329
end
6330
end,o67)
6331
end))
6332
mas.Parent = workspace
6333
mas:MakeJoints()
6334
local mas1 = mas:GetChildren()
6335
for i=1,#mas1 do
6336
	mas1[i].Parent = workspace 
6337
	ypcall(function() mas1[i]:MakeJoints() end)
6338
end
6339
mas:Destroy()
6340
for i=1,#cors do
6341
coroutine.resume(cors[i])
6342
end
6343
--Wings
6344
local Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
6345
6346
local Num = 0.5
6347
6348
local Num2 = 4 -------------Wings Parameters-------------------------------------
6349
local Size = 0.8
6350
local Rate = 300
6351
-------------------------------------------------------------------------------------
6352
local Player = owner
6353
local Character = Player.Character
6354
Torso = Character:WaitForChild'Torso'
6355
6356
local Wing1 = Instance.new("Part",Character)
6357
Wing1.FormFactor = Enum.FormFactor.Custom
6358
Wing1.Size = Vector3.new(.2, .2, .2)
6359
Wing1.Name = "WIng_1"
6360
6361
local fire = Instance.new("ParticleEmitter", Wing1)
6362
fire.VelocitySpread = 0
6363
fire.Lifetime = NumberRange.new(2)
6364-
local Player = game:service'Players'.LocalPlayer
6364+
6365
fire.RotSpeed = NumberRange.new(10)
6366
fire.Rate = Rate
6367
fire.Rotation = NumberRange.new(151515)
6368
fire.Name = "Fire"
6369
fire.LightEmission = 0.78
6370
fire.LockedToPart = true
6371
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6372
fire.Color = Color
6373
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6374
6375
local Wing2 = Wing1:Clone()
6376
Wing2.Parent = Torso
6377
local x,y,z = 0,-1,-6
6378
6379
Wld = function(a,b,cf)
6380
local Weld = Instance.new('Weld',a)
6381
Weld.Part0 = a
6382
Weld.Part1 = b
6383
Weld.C1 = cf
6384
return Weld
6385
end
6386
6387
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
6388
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
6389
6390
6391
game:service'RunService'.Stepped:connect(function()
6392
--z = 6+math.sin(tick()*2)
6393
y = -1+math.sin(tick()*Num)*Num2
6394
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6395
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6396
end)
6397
------------------------------------------------------------------------------------------------
6398
local Player = owner
6399
local Character = Player.Character
6400
Torso = Character:WaitForChild'Torso'
6401
6402
local Wing1 = Instance.new("Part",Character)
6403
Wing1.FormFactor = Enum.FormFactor.Custom
6404
Wing1.Size = Vector3.new(.2, .2, .2)
6405
Wing1.Name = "WIng_1"
6406
6407
local fire = Instance.new("ParticleEmitter", Wing1)
6408
fire.VelocitySpread = 0
6409
fire.Lifetime = NumberRange.new(2.5)
6410
fire.Acceleration = Vector3.new(0, 4, 4)
6411
fire.RotSpeed = NumberRange.new(10)
6412-
local Player = game:service'Players'.LocalPlayer
6412+
6413
fire.Rotation = NumberRange.new(151515)
6414
fire.Name = "Fire"
6415
fire.LightEmission = 0.78
6416
fire.LockedToPart = true
6417
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6418
fire.Color = Color
6419
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6420
6421
local Wing2 = Wing1:Clone()
6422
Wing2.Parent = Torso
6423
local x,y,z = 0,-1,-6
6424
6425
Wld = function(a,b,cf)
6426
local Weld = Instance.new('Weld',a)
6427
Weld.Part0 = a
6428
Weld.Part1 = b
6429
Weld.C1 = cf
6430
return Weld
6431
end
6432
6433
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
6434
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
6435
6436
print'Loaded'
6437
6438
game:service'RunService'.Stepped:connect(function()
6439
--z = 6+math.sin(tick()*2)
6440
y = -1+math.sin(tick()*Num)*Num2
6441
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6442
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6443
end)
6444
6445
------------------------------------------------------------------------------------------------
6446
local Player = owner
6447
local Character = Player.Character
6448
Torso = Character:WaitForChild'Torso'
6449
6450
local Wing1 = Instance.new("Part",Character)
6451
Wing1.FormFactor = Enum.FormFactor.Custom
6452
Wing1.Size = Vector3.new(.2, .2, .2)
6453
Wing1.Name = "WIng_1"
6454
6455
local fire = Instance.new("ParticleEmitter", Wing1)
6456
fire.VelocitySpread = 0
6457
fire.Lifetime = NumberRange.new(2.8)
6458
fire.Acceleration = Vector3.new(0, 4, 4)
6459
fire.RotSpeed = NumberRange.new(10)
6460-
local Player = game:service'Players'.LocalPlayer
6460+
6461
fire.Rotation = NumberRange.new(151515)
6462
fire.Name = "Fire"
6463
fire.LightEmission = 0.78
6464
fire.LockedToPart = true
6465
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6466
fire.Color = Color
6467
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6468
6469
local Wing2 = Wing1:Clone()
6470
Wing2.Parent = Torso
6471
local x,y,z = 0,-1,-6
6472
6473
Wld = function(a,b,cf)
6474
local Weld = Instance.new('Weld',a)
6475
Weld.Part0 = a
6476
Weld.Part1 = b
6477
Weld.C1 = cf
6478
return Weld
6479
end
6480
6481
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
6482
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
6483
6484
print'Loaded'
6485
6486
game:service'RunService'.Stepped:connect(function()
6487
--z = 6+math.sin(tick()*2)
6488
y = -1+math.sin(tick()*Num)*Num2
6489
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6490
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6491
end)
6492
6493
------------------------------------------------------------------------------------------------
6494
local Player = owner
6495
local Character = Player.Character
6496
Torso = Character:WaitForChild'Torso'
6497
6498
local Wing1 = Instance.new("Part",Character)
6499
Wing1.FormFactor = Enum.FormFactor.Custom
6500
Wing1.Size = Vector3.new(.2, .2, .2)
6501
Wing1.Name = "WIng_1"
6502
6503
local fire = Instance.new("ParticleEmitter", Wing1)
6504
fire.VelocitySpread = 0
6505
fire.Lifetime = NumberRange.new(3)
6506
fire.Acceleration = Vector3.new(0, 4, 4)
6507
fire.RotSpeed = NumberRange.new(10)
6508-
local Player = game:service'Players'.LocalPlayer
6508+
6509
fire.Rotation = NumberRange.new(151515)
6510
fire.Name = "Fire"
6511
fire.LightEmission = 0.78
6512
fire.LockedToPart = true
6513
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6514
fire.Color = Color
6515
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6516
6517
local Wing2 = Wing1:Clone()
6518
Wing2.Parent = Torso
6519
local x,y,z = 0,-1,-6
6520
6521
Wld = function(a,b,cf)
6522
local Weld = Instance.new('Weld',a)
6523
Weld.Part0 = a
6524
Weld.Part1 = b
6525
Weld.C1 = cf
6526
return Weld
6527
end
6528
6529
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
6530
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
6531
6532
print'Loaded'
6533
6534
game:service'RunService'.Stepped:connect(function()
6535
--z = 6+math.sin(tick()*2)
6536
y = -1+math.sin(tick()*Num)*Num2
6537
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6538
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6539
end)
6540
6541
------------------------------------------------------------------------------------------------
6542
local Player = owner
6543
local Character = Player.Character
6544
Torso = Character:WaitForChild'Torso'
6545
6546
local Wing1 = Instance.new("Part",Character)
6547
Wing1.FormFactor = Enum.FormFactor.Custom
6548
Wing1.Size = Vector3.new(.2, .2, .2)
6549
Wing1.Name = "WIng_1"
6550
6551
local fire = Instance.new("ParticleEmitter", Wing1)
6552
fire.VelocitySpread = 0
6553
fire.Lifetime = NumberRange.new(3.1)
6554
fire.Acceleration = Vector3.new(0, 4, 4)
6555
fire.RotSpeed = NumberRange.new(10)
6556-
o1:MoveTo(game.Players.LocalPlayer.Character.Head.Position)
6556+
6557
fire.Rotation = NumberRange.new(151515)
6558
fire.Name = "Fire"
6559
fire.LightEmission = 0.78
6560
fire.LockedToPart = true
6561
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6562
fire.Color = Color
6563
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6564
6565
local Wing2 = Wing1:Clone()
6566
Wing2.Parent = Torso
6567
local x,y,z = 0,-1,-6
6568
6569
Wld = function(a,b,cf)
6570
local Weld = Instance.new('Weld',a)
6571
Weld.Part0 = a
6572
Weld.Part1 = b
6573
Weld.C1 = cf
6574
return Weld
6575
end
6576
6577
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
6578
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
6579
6580
print'Loaded'
6581
6582
game:service'RunService'.Stepped:connect(function()
6583
--z = 6+math.sin(tick()*2)
6584
y = -1+math.sin(tick()*Num)*Num2
6585
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6586
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6587
end)
6588
--Teleport Sky to Player
6589
o1:MakeJoints()
6590
o1:MoveTo(owner.Character.Head.Position)
6591
--Hat
6592
hed.Mesh.MeshId="http://www.roblox.com/asset/?id=21057410"
6593
hed.Mesh.Scale=Vector3.new(2,2,2)
6594
hed.face:Destroy()
6595
--Lighting Effect
6596
function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
6597
    --[[Part0 = Vector3 (Start pos)
6598
		Part1 = Vector3 (End pos)
6599
		Times = number (Amount of lightning parts)
6600
		Offset = number (Offset)
6601
		Color = color (brickcolor value)
6602
		Thickness = number (thickness)
6603
		Trans = number (transparency)
6604
    ]]--
6605
    local magz = (Part0 - Part1).magnitude
6606
    local curpos = Part0
6607
    local trz = {-Offset,Offset}
6608
    for i=1,Times do
6609
        local li = Instance.new("Part", torso)
6610
		li.Name = "Lightning"
6611
		li.TopSurface =0
6612
		li.Material = "Neon"
6613
		li.BottomSurface = 0
6614
		li.Anchored = true
6615
		li.Locked = true
6616
		li.Transparency = Trans or 0.4
6617
		li.BrickColor = BrickColor.new(Color)
6618
		li.formFactor = "Custom"
6619
		li.CanCollide = false
6620
		li.Size = Vector3.new(Thickness,Thickness,magz/Times)
6621
        local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
6622
        local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
6623
        if Times == i then
6624
        local magz2 = (curpos - Part1).magnitude
6625
        li.Size = Vector3.new(Thickness,Thickness,magz2)
6626
        li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
6627
        else
6628
        li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
6629
        end
6630
        curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
6631
        game.Debris:AddItem(li,.1)
6632
    end
6633
end
6634
6635
BodyParts = {} -- Parts to emit lightning effects from
6636
for _, v in pairs(char:GetChildren()) do
6637
    if v:IsA("Part") then
6638
        table.insert(BodyParts, v)
6639
    end
6640
end
6641
6642
Bounding = {} -- Calculate the bounding boxes
6643
for _, v in pairs(BodyParts) do
6644
	local temp = {X=nil, Y=nil, Z=nil}
6645
	temp.X = v.Size.X/2 * 35
6646
	temp.Y = v.Size.Y/2 * 35
6647
	temp.Z = v.Size.Z/2 * 35
6648
	Bounding[v.Name] = temp
6649
	--table.insert(Bounding, v.Name, temp)
6650
end
6651
6652
while wait(0) do -- Emit the Lightning effects randomly
6653
	local Body1 = BodyParts[math.random(#BodyParts)]
6654
	local Body2 = BodyParts[math.random(#BodyParts)]
6655
	local Pos1 = Vector3.new(
6656
		math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/35,
6657
		math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/35,
6658
		math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/35
6659
)
6660
	local Pos2 = Vector3.new(
6661
		math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/35,
6662
		math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/35,
6663
		math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/35
6664
)
6665
	local SPos1 = Body1.Position + Pos1
6666
	local SPos2 = Body2.Position + Pos2
6667
	Lightning(SPos1, SPos2, 4, 3, "Alder", .3, .56)
6668
end