View difference between Paste ID: fm5URWn0 and SDeiksG9
SHOW: | | - or go back to the newest paste.
1
--			[[Created by: TheDarkRevenant - Edited by N3xul.
2
3
--			         Script: Celestial Titan
4
5
--                      Last Updated: 15:42 2017-07-22
6
7
-------------------------------------------------------------------------------------
8-
local p = game.Players.LocalPlayer
8+
9
-- This script has been converted to FE by iPxter
10-
local mouse = p:GetMouse()
10+
11
12
if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
13
local Player,Mouse,mouse,UserInputService,ContextActionService = owner
14
do
15
	print("FE Compatibility code by Mokiros | Translated to FE by iPxter")
16
	script.Parent = Player.Character
17
18
	--RemoteEvent for communicating
19
	local Event = Instance.new("RemoteEvent")
20
	Event.Name = "UserInput_Event"
21
22
	--Fake event to make stuff like Mouse.KeyDown work
23
	local function fakeEvent()
24
		local t = {_fakeEvent=true,Connect=function(self,f)self.Function=f end}
25
		t.connect = t.Connect
26
		return t
27
	end
28
29
	--Creating fake input objects with fake variables
30
    local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
31
	local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
32
	local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
33
		CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
34
	end}
35
	--Merged 2 functions into one by checking amount of arguments
36
	CAS.UnbindAction = CAS.BindAction
37
38
	--This function will trigger the events that have been :Connect()'ed
39
	local function te(self,ev,...)
40
		local t = m[ev]
41
		if t and t._fakeEvent and t.Function then
42
			t.Function(...)
43
		end
44
	end
45
	m.TrigEvent = te
46
	UIS.TrigEvent = te
47
48
	Event.OnServerEvent:Connect(function(plr,io)
49
	    if plr~=Player then return end
50
		if io.isMouse then
51
			m.Target = io.Target
52
			m.Hit = io.Hit
53
		else
54
			local b = io.UserInputState == Enum.UserInputState.Begin
55
			if io.UserInputType == Enum.UserInputType.MouseButton1 then
56
				return m:TrigEvent(b and "Button1Down" or "Button1Up")
57
			end
58
			for _,t in pairs(CAS.Actions) do
59
				for _,k in pairs(t.Keys) do
60
					if k==io.KeyCode then
61
						t.Function(t.Name,io.UserInputState,io)
62
					end
63
				end
64
			end
65
			m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
66
			UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
67
	    end
68
	end)
69
	Event.Parent = NLS([==[
70
	local Player = game:GetService("Players").LocalPlayer
71
	local Event = script:WaitForChild("UserInput_Event")
72
73
	local UIS = game:GetService("UserInputService")
74
	local input = function(io,a)
75
		if a then return end
76
		--Since InputObject is a client-side instance, we create and pass table instead
77
		Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState})
78
	end
79
	UIS.InputBegan:Connect(input)
80
	UIS.InputEnded:Connect(input)
81
82
	local Mouse = Player:GetMouse()
83
	local h,t
84
	--Give the server mouse data 30 times every second, but only if the values changed
85
	--If player is not moving their mouse, client won't fire events
86
	while wait(1/30) do
87
		if h~=Mouse.Hit or t~=Mouse.Target then
88
			h,t=Mouse.Hit,Mouse.Target
89
			Event:FireServer({isMouse=true,Target=t,Hit=h})
90
		end
91
	end]==],Player.Character)
92
	Mouse,mouse,UserInputService,ContextActionService = m,m,UIS,CAS
93
end
94
95
local p = owner
96
local char = p.Character
97
local larm = char["Left Arm"]
98
local rarm = char["Right Arm"]
99
local lleg = char["Left Leg"]
100
local rleg = char["Right Leg"]
101
local hed = char.Head
102
local torso = char.Torso
103
local hum = char.Humanoid
104
local cam = game.Workspace.CurrentCamera
105
local root = char.HumanoidRootPart
106
local deb = false
107
local shot = 0
108
local l = game:GetService("Lighting")
109
local rs = game:GetService("RunService").RenderStepped
110
local debris=game:service"Debris"
111
local stanceToggle = "Normal"
112
math.randomseed(os.time())
113
hum.WalkSpeed = 7
114
char.Health:Destroy()
115
hum.MaxHealth = 10000
116
wait(0.1)
117
hum.Health = 10000
118
----------------------------------------------------
119
ypcall(function()
120
char.Shirt:Destroy()
121
char.Pants:Destroy()
122
shirt = Instance.new("Shirt", char)
123
shirt.Name = "Shirt"
124
pants = Instance.new("Pants", char)
125
pants.Name = "Pants"
126
char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=131708604"
127
char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=131708657"
128
end)
129
----------------------------------------------------
130
Debounces = {
131
on = false;
132
ks = false;
133
CanAttack = true;
134
CanJoke = true;
135
NoIdl = false;
136
Slashing = false;
137
Slashed = false;
138
Grabbing = false;
139
Grabbed = false;
140
}
141
local Touche = {char.Name, }
142
----------------------------------------------------
143
function lerp(a, b, t) -- Linear interpolation
144
    return a + (b - a)*t
145
end
146
 
147
function slerp(a, b, t) --Spherical interpolation
148
    dot = a:Dot(b)
149
    if dot > 0.99999 or dot < -0.99999 then
150
        return t <= 0.5 and a or b
151
    else
152
        r = math.acos(dot)
153
        return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
154
    end
155
end
156
 
157
function matrixInterpolate(a, b, t)
158
    local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
159
    local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
160
    local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
161
    local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
162
    local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
163
    local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
164
    local t = v1:Dot(v2)
165
    if not (t < 0 or t == 0 or t > 0) then     -- Failsafe
166
        return CFrame.new()
167
    end
168
    return CFrame.new(
169
    v0.x, v0.y, v0.z,
170
    v1.x, v1.y, v1.z,
171
    v2.x, v2.y, v2.z,
172
    v3.x, v3.y, v3.z)
173
end
174
----------------------------------------------------
175
function genWeld(a,b)
176
    local w = Instance.new("Weld",a)
177
    w.Part0 = a
178
    w.Part1 = b
179
    return w
180
end
181
function weld(a, b)
182
    local weld = Instance.new("Weld")
183
    weld.Name = "W"
184
    weld.Part0 = a
185
    weld.Part1 = b
186
    weld.C0 = a.CFrame:inverse() * b.CFrame
187
    weld.Parent = a
188
    return weld;
189
end
190
----------------------------------------------------
191
function Lerp(c1,c2,al)
192
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
193
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
194
for i,v in pairs(com1) do 
195
com1[i] = v+(com2[i]-v)*al
196
end
197
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
198
end
199
----------------------------------------------------
200
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
201
local wld = Instance.new("Weld", wp1)
202
wld.Part0 = wp0
203
wld.Part1 = wp1
204
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
205
end
206
----------------------------------------------------
207
function Tween(a,b,c)
208
return a+(b-a)*c
209
end
210
----------------------------------------------------
211
function nwPrt(prnt,siz,cf,col)
212
local prt=Instance.new("Part")
213
prt.Parent=prnt
214
prt.FormFactor=3
215
prt.Name="Part"
216
prt.Size=siz
217
prt.CanCollide=false
218
prt.Anchored=true
219
prt.Locked=true
220
prt.TopSurface=10
221
prt.BottomSurface=10
222
prt.FrontSurface=10
223
prt.BackSurface=10
224
prt.LeftSurface=10
225
prt.RightSurface=10
226
prt:BreakJoints()
227
prt.CFrame=cf or CFrame.new(30,10,30)
228
prt.Material="Neon"
229
prt.BrickColor=BrickColor.new(col)
230
m=Instance.new("SpecialMesh",prt)
231
m.MeshType=6
232
return prt
233
end
234
----------------------------------------------------
235
function nwSnd(prnt,pch,vol,id)
236
        local s=Instance.new("Sound",prnt)
237
        s.Pitch=pch
238
        s.Volume=vol
239
        s.SoundId="rbxassetid://"..id
240
        s.PlayOnRemove=true
241
        return s
242
end
243
----------------------------------------------------
244
function newRay(start,face,range,wat)
245
        local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
246
        hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
247
        return rey,hit,pos
248
end
249
----------------------------------------------------
250
for i,v in pairs(char:children()) do
251
    if v:IsA("Hat") then
252
        v:Destroy()
253
    end
254
end
255
for i,v in pairs(hed:children()) do
256
    if v:IsA("Sound") then
257
        v:Destroy()
258
    end
259
end
260
----------------------------------------------------
261
function HasntTouched(plrname)
262
local ret = true
263
for _, v in pairs(Touche) do
264
if v == plrname then
265
ret = false
266
end
267
end
268
return ret
269
end
270
----------------------------------------------------
271
larm.Size = larm.Size * 2
272
rarm.Size = rarm.Size * 2
273
lleg.Size = lleg.Size * 2
274
rleg.Size = rleg.Size * 2
275
torso.Size = torso.Size * 2
276
hed.Size = hed.Size * 2
277
root.Size = root.Size * 2
278
----------------------------------------------------
279
newWeld(torso, larm, -1.5, 0.5, 0)
280
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
281
newWeld(torso, rarm, 1.5, 0.5, 0)
282
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
283
newWeld(torso, hed, 0, 1.5, 0)
284
newWeld(torso, lleg, -0.5, -1, 0)
285
lleg.Weld.C1 = CFrame.new(0, 1, 0)
286
newWeld(torso, rleg, 0.5, -1, 0)
287
rleg.Weld.C1 = CFrame.new(0, 1, 0)
288
newWeld(root, torso, 0, -1, 0)
289
torso.Weld.C1 = CFrame.new(0, -1, 0)
290
----------------------------------------------------
291
hed.face.Texture = "rbxassetid://629947734"
292
z=Instance.new('Decal',hed)
293
z.Face = 'Front'
294
z.Texture='rbxassetid://99174105'
295
z1=Instance.new('Decal',hed)
296
z1.Face = 'Right'
297
hed.BrickColor = BrickColor.new("Really black")
298
lite = Instance.new("PointLight", torso)
299
lite.Brightness = 14
300
lite.Range = 10
301
lite.Color = Color3.new(170, 0, 255)
302
--[[local hed2 = hed:Clone()
303
hed2.CanCollide = false
304
hed2.Parent = char
305
hed2:ClearAllChildren()
306
hed2.Transparency = 1
307
hed2.Name = "DARP"
308
local w = Instance.new("Weld",hed2)
309
w.Part0 = hed
310
w.Part1 = hed2
311
w.C0 = CFrame.new(0,0,-0.175)
312
z=Instance.new("SurfaceGui",hed2)
313
z.Enabled = true
314
z.Face = "Front"
315
z.Adornee = hed2
316
z.CanvasSize = Vector2.new(100,100)
317
local face = Instance.new("ImageLabel",z)
318
face.Size = UDim2.new(1,-30,1,0)
319
face.Position = UDim2.new(0,15,0,0)
320
face.BackgroundTransparency = 1
321
face.Image='rbxassetid://46282671']]--
322
----------------------------------------------------
323
z = Instance.new("Sound", char)
324
z.SoundId = "rbxassetid://695312907"--242463565
325
z.Looped = true
326
z.Pitch = .6
327
z.Volume = 1
328
wait(.01)
329
z:Play()
330
----------------------------------------------------
331
local l = game.Lighting
332
local sky = Instance.new("Sky",l)
333
sky.CelestialBodiesShown = true
334
sky.SkyboxBk = "http://www.roblox.com/asset/?id=159454299"
335
sky.SkyboxDn = "http://www.roblox.com/asset/?id=159454296"
336
sky.SkyboxFt = "http://www.roblox.com/asset/?id=159454293"
337
sky.SkyboxLf = "http://www.roblox.com/asset/?id=159454286"
338
sky.SkyboxRt = "http://www.roblox.com/asset/?id=159454300"
339
sky.SkyboxUp = "http://www.roblox.com/asset/?id=159454288"
340
sky.StarCount = 100
341
sky.Name = "N3xul Sky"
342
----------------------------------------------------
343
local m = Instance.new("Model")
344
m.Name = "Absolution"
345
p1 = Instance.new("Part", m)
346
p1.BrickColor = BrickColor.new("Royal purple")
347
p1.Material = "Neon"
348
p1.FormFactor = Enum.FormFactor.Custom
349
p1.Size = Vector3.new(1, 0.600000024, 1.5)
350
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)
351
p1.CanCollide = false
352
p1.Locked = true
353
p1.Elasticity = 0
354
p1.BottomSurface = Enum.SurfaceType.Smooth
355
p1.TopSurface = Enum.SurfaceType.Smooth
356
b1 = Instance.new("SpecialMesh", p1)
357
b1.MeshType = Enum.MeshType.Wedge
358
b1.Name = "Mesh"
359
b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
360
p2 = Instance.new("Part", m)
361
p2.BrickColor = BrickColor.new("Really black")
362
p2.FormFactor = Enum.FormFactor.Custom
363
p2.Size = Vector3.new(1, 2.9000001, 1)
364
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)
365
p2.CanCollide = false
366
p2.Locked = true
367
p2.Elasticity = 0
368
p2.BottomSurface = Enum.SurfaceType.Smooth
369
p2.TopSurface = Enum.SurfaceType.Smooth
370
b2 = Instance.new("BlockMesh", p2)
371
b2.Name = "Mesh"
372
b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
373
p3 = Instance.new("Part", m)
374
p3.BrickColor = BrickColor.new("Royal purple")
375
p3.Material = "Neon"
376
p3.FormFactor = Enum.FormFactor.Custom
377
p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
378
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)
379
p3.CanCollide = false
380
p3.Locked = true
381
p3.Elasticity = 0
382
p3.BottomSurface = Enum.SurfaceType.Smooth
383
p3.TopSurface = Enum.SurfaceType.Smooth
384
b3 = Instance.new("SpecialMesh", p3)
385
b3.MeshType = Enum.MeshType.Wedge
386
b3.Name = "Mesh"
387
b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
388
p4 = Instance.new("Part", m)
389
p4.BrickColor = BrickColor.new("Royal purple")
390
p4.Material = "Neon"
391
p4.FormFactor = Enum.FormFactor.Custom
392
p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
393
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)
394
p4.CanCollide = false
395
p4.Locked = true
396
p4.Elasticity = 0
397
p4.BottomSurface = Enum.SurfaceType.Smooth
398
p4.TopSurface = Enum.SurfaceType.Smooth
399
b4 = Instance.new("SpecialMesh", p4)
400
b4.MeshType = Enum.MeshType.Wedge
401
b4.Name = "Mesh"
402
b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
403
p5 = Instance.new("Part", m)
404
p5.BrickColor = BrickColor.new("Royal purple")
405
p5.Material = "Neon"
406
p5.FormFactor = Enum.FormFactor.Custom
407
p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
408
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)
409
p5.CanCollide = false
410
p5.Locked = true
411
p5.Elasticity = 0
412
p5.BottomSurface = Enum.SurfaceType.Smooth
413
p5.TopSurface = Enum.SurfaceType.Smooth
414
b5 = Instance.new("SpecialMesh", p5)
415
b5.MeshType = Enum.MeshType.Wedge
416
b5.Name = "Mesh"
417
b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
418
p6 = Instance.new("Part", m)
419
p6.Name = "Handle"
420
p6.BrickColor = BrickColor.new("Really black")
421
p6.FormFactor = Enum.FormFactor.Custom
422
p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
423
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)
424
p6.CanCollide = false
425
p6.Locked = true
426
p6.Elasticity = 0
427
p6.BottomSurface = Enum.SurfaceType.Smooth
428
p6.TopSurface = Enum.SurfaceType.Smooth
429
b6 = Instance.new("BlockMesh", p6)
430
b6.Name = "Mesh"
431
b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
432
p7 = Instance.new("Part", m)
433
p7.BrickColor = BrickColor.new("Royal purple")
434
p7.Material = "Neon"
435
p7.FormFactor = Enum.FormFactor.Custom
436
p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
437
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)
438
p7.CanCollide = false
439
p7.Locked = true
440
p7.Elasticity = 0
441
p7.BottomSurface = Enum.SurfaceType.Smooth
442
p7.TopSurface = Enum.SurfaceType.Smooth
443
b7 = Instance.new("SpecialMesh", p7)
444
b7.MeshType = Enum.MeshType.Wedge
445
b7.Name = "Mesh"
446
b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
447
p8 = Instance.new("Part", m)
448
p8.BrickColor = BrickColor.new("Royal purple")
449
p8.Material = "Neon"
450
p8.FormFactor = Enum.FormFactor.Custom
451
p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
452
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)
453
p8.CanCollide = false
454
p8.Locked = true
455
p8.Elasticity = 0
456
p8.BottomSurface = Enum.SurfaceType.Smooth
457
p8.TopSurface = Enum.SurfaceType.Smooth
458
b8 = Instance.new("SpecialMesh", p8)
459
b8.MeshType = Enum.MeshType.Wedge
460
b8.Name = "Mesh"
461
b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
462
p9 = Instance.new("Part", m)
463
p9.BrickColor = BrickColor.new("Really black")
464
p9.FormFactor = Enum.FormFactor.Custom
465
p9.Size = Vector3.new(1, 1.07999957, 1)
466
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)
467
p9.CanCollide = false
468
p9.Locked = true
469
p9.Elasticity = 0
470
p9.BottomSurface = Enum.SurfaceType.Smooth
471
p9.TopSurface = Enum.SurfaceType.Smooth
472
b9 = Instance.new("BlockMesh", p9)
473
b9.Name = "Mesh"
474
b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
475
p10 = Instance.new("Part", m)
476
p10.BrickColor = BrickColor.new("Really black")
477
p10.FormFactor = Enum.FormFactor.Custom
478
p10.Size = Vector3.new(1, 1.41999948, 1)
479
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)
480
p10.CanCollide = false
481
p10.Locked = true
482
p10.Elasticity = 0
483
p10.BottomSurface = Enum.SurfaceType.Smooth
484
p10.TopSurface = Enum.SurfaceType.Smooth
485
b10 = Instance.new("BlockMesh", p10)
486
b10.Name = "Mesh"
487
b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
488
p11 = Instance.new("Part", m)
489
p11.BrickColor = BrickColor.new("Really black")
490
p11.FormFactor = Enum.FormFactor.Custom
491
p11.Size = Vector3.new(1, 1.50999951, 1)
492
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)
493
p11.CanCollide = false
494
p11.Locked = true
495
p11.Elasticity = 0
496
p11.BottomSurface = Enum.SurfaceType.Smooth
497
p11.TopSurface = Enum.SurfaceType.Smooth
498
b11 = Instance.new("BlockMesh", p11)
499
b11.Name = "Mesh"
500
b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
501
p12 = Instance.new("Part", m)
502
p12.Name = "BladeCenter"
503
p12.BrickColor = BrickColor.new("Royal purple")
504
p12.Material = Enum.Material.Neon
505
p12.FormFactor = Enum.FormFactor.Symmetric
506
p12.Size = Vector3.new(1, 2, 2)
507
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)
508
p12.CanCollide = false
509
p12.Locked = true
510
p12.BottomSurface = Enum.SurfaceType.Smooth
511
p12.TopSurface = Enum.SurfaceType.Smooth
512
b12 = Instance.new("SpecialMesh", p12)
513
b12.MeshType = Enum.MeshType.Brick
514
b12.Name = "Mesh"
515
b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
516
p13 = Instance.new("Part", m)
517
p13.BrickColor = BrickColor.new("Really black")
518
p13.FormFactor = Enum.FormFactor.Custom
519
p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
520
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)
521
p13.CanCollide = false
522
p13.Locked = true
523
p13.Elasticity = 0
524
p13.BottomSurface = Enum.SurfaceType.Smooth
525
p13.TopSurface = Enum.SurfaceType.Smooth
526
b13 = Instance.new("BlockMesh", p13)
527
b13.Name = "Mesh"
528
b13.Scale = Vector3.new(1, 1, 0.400000006)
529
p14 = Instance.new("Part", m)
530
p14.BrickColor = BrickColor.new("Really black")
531
p14.FormFactor = Enum.FormFactor.Custom
532
p14.Size = Vector3.new(2.5, 2.17999935, 1)
533
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)
534
p14.CanCollide = false
535
p14.Locked = true
536
p14.Elasticity = 0
537
p14.BottomSurface = Enum.SurfaceType.Smooth
538
p14.TopSurface = Enum.SurfaceType.Smooth
539
b14 = Instance.new("BlockMesh", p14)
540
b14.Name = "Mesh"
541
b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
542
p15 = Instance.new("Part", m)
543
p15.BrickColor = BrickColor.new("Really black")
544
p15.FormFactor = Enum.FormFactor.Custom
545
p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
546
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)
547
p15.CanCollide = false
548
p15.Locked = true
549
p15.Elasticity = 0
550
p15.BottomSurface = Enum.SurfaceType.Smooth
551
p15.TopSurface = Enum.SurfaceType.Smooth
552
b15 = Instance.new("BlockMesh", p15)
553
b15.Name = "Mesh"
554
b15.Scale = Vector3.new(1, 1, 0.400000006)
555
p16 = Instance.new("Part", m)
556
p16.BrickColor = BrickColor.new("Really black")
557
p16.FormFactor = Enum.FormFactor.Custom
558
p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
559
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)
560
p16.CanCollide = false
561
p16.Locked = true
562
p16.Elasticity = 0
563
p16.BottomSurface = Enum.SurfaceType.Smooth
564
p16.TopSurface = Enum.SurfaceType.Smooth
565
b16 = Instance.new("BlockMesh", p16)
566
b16.Name = "Mesh"
567
b16.Scale = Vector3.new(1, 1, 0.400000006)
568
p17 = Instance.new("Part", m)
569
p17.BrickColor = BrickColor.new("Really black")
570
p17.FormFactor = Enum.FormFactor.Custom
571
p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
572
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)
573
p17.CanCollide = false
574
p17.Locked = true
575
p17.Elasticity = 0
576
p17.BottomSurface = Enum.SurfaceType.Smooth
577
p17.TopSurface = Enum.SurfaceType.Smooth
578
b17 = Instance.new("BlockMesh", p17)
579
b17.Name = "Mesh"
580
b17.Scale = Vector3.new(1, 1, 0.400000006)
581
p18 = Instance.new("WedgePart", m)
582
p18.BrickColor = BrickColor.new("Royal purple")
583
p18.Name = "BladePart1"
584
p18.Material = Enum.Material.Neon
585
p18.Name = "Wedge"
586
p18.FormFactor = Enum.FormFactor.Symmetric
587
p18.Size = Vector3.new(1, 4, 2)
588
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)
589
p18.CanCollide = false
590
p18.Locked = true
591
p18.BottomSurface = Enum.SurfaceType.Smooth
592
p18.TopSurface = Enum.SurfaceType.Smooth
593
b18 = Instance.new("SpecialMesh", p18)
594
b18.MeshType = Enum.MeshType.Wedge
595
b18.Name = "Mesh"
596
b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
597
p19 = Instance.new("WedgePart", m)
598
p19.BrickColor = BrickColor.new("Royal purple")
599
p19.Name = "BladePart2"
600
p19.Material = Enum.Material.Neon
601
p19.Name = "Wedge"
602
p19.FormFactor = Enum.FormFactor.Symmetric
603
p19.Size = Vector3.new(1, 4, 2)
604
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)
605
p19.CanCollide = false
606
p19.Locked = true
607
p19.BottomSurface = Enum.SurfaceType.Smooth
608
p19.TopSurface = Enum.SurfaceType.Smooth
609
b19 = Instance.new("SpecialMesh", p19)
610
b19.MeshType = Enum.MeshType.Wedge
611
b19.Name = "Mesh"
612
b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
613
p20 = Instance.new("Part", m)
614
p20.BrickColor = BrickColor.new("Really black")
615
p20.FormFactor = Enum.FormFactor.Custom
616
p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
617
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)
618
p20.CanCollide = false
619
p20.Locked = true
620
p20.Elasticity = 0
621
p20.BottomSurface = Enum.SurfaceType.Smooth
622
p20.TopSurface = Enum.SurfaceType.Smooth
623
b20 = Instance.new("BlockMesh", p20)
624
b20.Name = "Mesh"
625
b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
626
p21 = Instance.new("Part", m)
627
p21.BrickColor = BrickColor.new("Royal purple")
628
p21.Material = "Neon"
629
p21.FormFactor = Enum.FormFactor.Custom
630
p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
631
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)
632
p21.CanCollide = false
633
p21.Locked = true
634
p21.Elasticity = 0
635
p21.BottomSurface = Enum.SurfaceType.Smooth
636
p21.TopSurface = Enum.SurfaceType.Smooth
637
b21 = Instance.new("SpecialMesh", p21)
638
b21.MeshType = Enum.MeshType.Wedge
639
b21.Name = "Mesh"
640
b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
641
w1 = Instance.new("Weld", p1)
642
w1.Name = "Part_Weld"
643
w1.Part0 = p1
644
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)
645
w1.Part1 = p2
646
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)
647
w2 = Instance.new("Weld", p2)
648
w2.Name = "Part_Weld"
649
w2.Part0 = p2
650
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)
651
w2.Part1 = p3
652
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)
653
w3 = Instance.new("Weld", p3)
654
w3.Name = "Part_Weld"
655
w3.Part0 = p3
656
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)
657
w3.Part1 = p4
658
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)
659
w4 = Instance.new("Weld", p4)
660
w4.Name = "Part_Weld"
661
w4.Part0 = p4
662
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)
663
w4.Part1 = p5
664
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)
665
w5 = Instance.new("Weld", p5)
666
w5.Name = "Part_Weld"
667
w5.Part0 = p5
668
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)
669
w5.Part1 = p6
670
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)
671
w6 = Instance.new("Weld", p6)
672
w6.Name = "Part_Weld"
673
w6.Part0 = p6
674
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)
675
w6.Part1 = p7
676
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)
677
w7 = Instance.new("Weld", p7)
678
w7.Name = "Part_Weld"
679
w7.Part0 = p7
680
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)
681
w7.Part1 = p8
682
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)
683
w8 = Instance.new("Weld", p8)
684
w8.Name = "Part_Weld"
685
w8.Part0 = p8
686
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)
687
w8.Part1 = p9
688
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)
689
w9 = Instance.new("Weld", p9)
690
w9.Name = "Part_Weld"
691
w9.Part0 = p9
692
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)
693
w9.Part1 = p10
694
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)
695
w10 = Instance.new("Weld", p10)
696
w10.Name = "Part_Weld"
697
w10.Part0 = p10
698
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)
699
w10.Part1 = p11
700
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)
701
w11 = Instance.new("Weld", p11)
702
w11.Name = "Part_Weld"
703
w11.Part0 = p11
704
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)
705
w11.Part1 = p12
706
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)
707
w12 = Instance.new("Weld", p12)
708
w12.Name = "Part_Weld"
709
w12.Part0 = p12
710
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)
711
w12.Part1 = p13
712
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)
713
w13 = Instance.new("Weld", p13)
714
w13.Name = "Part_Weld"
715
w13.Part0 = p13
716
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)
717
w13.Part1 = p14
718
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)
719
w14 = Instance.new("Weld", p14)
720
w14.Name = "Part_Weld"
721
w14.Part0 = p14
722
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)
723
w14.Part1 = p15
724
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)
725
w15 = Instance.new("Weld", p15)
726
w15.Name = "Part_Weld"
727
w15.Part0 = p15
728
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)
729
w15.Part1 = p16
730
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)
731
w16 = Instance.new("Weld", p16)
732
w16.Name = "Part_Weld"
733
w16.Part0 = p16
734
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)
735
w16.Part1 = p17
736
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)
737
w17 = Instance.new("Weld", p17)
738
w17.Name = "Wedge_Weld"
739
w17.Part0 = p17
740
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)
741
w17.Part1 = p18
742
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)
743
w18 = Instance.new("Weld", p18)
744
w18.Name = "Wedge_Weld"
745
w18.Part0 = p18
746
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)
747
w18.Part1 = p19
748
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)
749
w19 = Instance.new("Weld", p19)
750
w19.Name = "Part_Weld"
751
w19.Part0 = p19
752
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)
753
w19.Part1 = p20
754
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)
755
w20 = Instance.new("Weld", p20)
756
w20.Name = "Part_Weld"
757
w20.Part0 = p20
758
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)
759
w20.Part1 = p21
760
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)
761
m.Parent = char
762
m:MakeJoints()
763
----------------------------------------------------
764
local cor = Instance.new("Part", char.Absolution)
765
cor.Name = "Thingy"
766
cor.Locked = true
767
cor.BottomSurface = 0
768
cor.CanCollide = false
769
cor.Size = Vector3.new(1, 13, 1)
770
cor.Transparency = 1
771
cor.TopSurface = 0
772
corw = Instance.new("Weld", cor)
773
corw.Part0 = rarm
774
corw.Part1 = cor
775
corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
776
corw.C1 = CFrame.new(0, 0, 0)
777
weld1 = Instance.new("Weld", char.Absolution)
778
weld1.Part0 = cor
779
weld1.Part1 = p6
780
weld1.C0 = CFrame.new(0, 0, 0)
781
----------------------------------------------------
782
hitb = Instance.new("Part", char.Absolution)
783
hitb.Name = "Thingy2"
784
hitb.Locked = true
785
hitb.BottomSurface = 0
786
hitb.CanCollide = false
787
hitb.Size = Vector3.new(0, 8, 6)
788
hitb.Transparency = 1
789
hitb.TopSurface = 0
790
weld2 = Instance.new("Weld", char.Absolution)
791
weld2.Part0 = hitb
792
weld2.Part1 = p12
793
weld2.C0 = CFrame.new(0, .6, 1)
794
----------------------------------------------------
795
local m = Instance.new("Model")
796
m.Name = "Claw"
797
p1 = Instance.new("Part", m)
798
p1.BrickColor = BrickColor.new("Really black")
799
p1.FormFactor = Enum.FormFactor.Custom
800
p1.Size = Vector3.new(1.5, 0.5, 0.5)
801
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)
802
p1.CanCollide = false
803
p1.Locked = true
804
p1.BottomSurface = Enum.SurfaceType.Smooth
805
p1.TopSurface = Enum.SurfaceType.Smooth
806
b1 = Instance.new("BlockMesh", p1)
807
b1.Name = "Mesh"
808
p2 = Instance.new("WedgePart", m)
809
p2.BrickColor = BrickColor.new("Really black")
810
p2.Name = "Wedge"
811
p2.FormFactor = Enum.FormFactor.Custom
812
p2.Size = Vector3.new(3, 1, 0.5)
813
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)
814
p2.CanCollide = false
815
p2.Locked = true
816
p2.BottomSurface = Enum.SurfaceType.Smooth
817
p2.TopSurface = Enum.SurfaceType.Smooth
818
p3 = Instance.new("Part", m)
819
p3.BrickColor = BrickColor.new("Really black")
820
p3.FormFactor = Enum.FormFactor.Custom
821
p3.Size = Vector3.new(1.5, 0.5, 0.5)
822
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)
823
p3.CanCollide = false
824
p3.Locked = true
825
p3.BottomSurface = Enum.SurfaceType.Smooth
826
p3.TopSurface = Enum.SurfaceType.Smooth
827
b2 = Instance.new("BlockMesh", p3)
828
b2.Name = "Mesh"
829
p4 = Instance.new("WedgePart", m)
830
p4.BrickColor = BrickColor.new("Really black")
831
p4.Name = "Wedge"
832
p4.FormFactor = Enum.FormFactor.Custom
833
p4.Size = Vector3.new(3, 1, 0.5)
834
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)
835
p4.CanCollide = false
836
p4.Locked = true
837
p4.BottomSurface = Enum.SurfaceType.Smooth
838
p4.TopSurface = Enum.SurfaceType.Smooth
839
p5 = Instance.new("Part", m)
840
p5.BrickColor = BrickColor.new("Really black")
841
p5.FormFactor = Enum.FormFactor.Custom
842
p5.Size = Vector3.new(1.5, 0.5, 0.5)
843
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)
844
p5.CanCollide = false
845
p5.Locked = true
846
p5.BottomSurface = Enum.SurfaceType.Smooth
847
p5.TopSurface = Enum.SurfaceType.Smooth
848
b3 = Instance.new("BlockMesh", p5)
849
b3.Name = "Mesh"
850
p6 = Instance.new("Part", m)
851
p6.BrickColor = BrickColor.new("Really black")
852
p6.FormFactor = Enum.FormFactor.Custom
853
p6.Size = Vector3.new(1.5, 0.5, 0.5)
854
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)
855
p6.CanCollide = false
856
p6.Locked = true
857
p6.BottomSurface = Enum.SurfaceType.Smooth
858
p6.TopSurface = Enum.SurfaceType.Smooth
859
b4 = Instance.new("BlockMesh", p6)
860
b4.Name = "Mesh"
861
p7 = Instance.new("Part", m)
862
p7.BrickColor = BrickColor.new("Really black")
863
p7.FormFactor = Enum.FormFactor.Custom
864
p7.Size = Vector3.new(3, 1, 1.20000005)
865
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)
866
p7.CanCollide = false
867
p7.Locked = true
868
p7.BottomSurface = Enum.SurfaceType.Smooth
869
p7.TopSurface = Enum.SurfaceType.Smooth
870
b5 = Instance.new("BlockMesh", p7)
871
b5.Name = "Mesh"
872
p8 = Instance.new("Part", m)
873
p8.BrickColor = BrickColor.new("Royal purple")
874
p8.Material = "Neon"
875
p8.FormFactor = Enum.FormFactor.Symmetric
876
p8.Size = Vector3.new(1, 1, 1)
877
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)
878
p8.CanCollide = false
879
p8.Locked = true
880
b6 = Instance.new("SpecialMesh", p8)
881
b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
882
b6.TextureId = ""
883
b6.MeshType = Enum.MeshType.FileMesh
884
b6.Name = "Mesh"
885
b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
886
p9 = Instance.new("Part", m)
887
p9.BrickColor = BrickColor.new("Really black")
888
p9.FormFactor = Enum.FormFactor.Custom
889
p9.Size = Vector3.new(1.5, 0.5, 0.5)
890
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)
891
p9.CanCollide = false
892
p9.Locked = true
893
p9.BottomSurface = Enum.SurfaceType.Smooth
894
p9.TopSurface = Enum.SurfaceType.Smooth
895
b7 = Instance.new("BlockMesh", p9)
896
b7.Name = "Mesh"
897
p10 = Instance.new("Part", m)
898
p10.BrickColor = BrickColor.new("Royal purple")
899
p10.Material = "Neon"
900
p10.FormFactor = Enum.FormFactor.Symmetric
901
p10.Size = Vector3.new(1, 1, 1)
902
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)
903
p10.CanCollide = false
904
p10.Locked = true
905
b8 = Instance.new("SpecialMesh", p10)
906
b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
907
b8.TextureId = ""
908
b8.MeshType = Enum.MeshType.FileMesh
909
b8.Name = "Mesh"
910
b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
911
p11 = Instance.new("Part", m)
912
p11.BrickColor = BrickColor.new("Really black")
913
p11.FormFactor = Enum.FormFactor.Custom
914
p11.Size = Vector3.new(1.5, 0.5, 0.5)
915
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)
916
p11.CanCollide = false
917
p11.Locked = true
918
p11.BottomSurface = Enum.SurfaceType.Smooth
919
p11.TopSurface = Enum.SurfaceType.Smooth
920
b9 = Instance.new("BlockMesh", p11)
921
b9.Name = "Mesh"
922
p12 = Instance.new("Part", m)
923
p12.BrickColor = BrickColor.new("Really black")
924
p12.FormFactor = Enum.FormFactor.Custom
925
p12.Size = Vector3.new(1.5, 0.5, 0.5)
926
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)
927
p12.CanCollide = false
928
p12.Locked = true
929
p12.BottomSurface = Enum.SurfaceType.Smooth
930
p12.TopSurface = Enum.SurfaceType.Smooth
931
b10 = Instance.new("BlockMesh", p12)
932
b10.Name = "Mesh"
933
p13 = Instance.new("Part", m)
934
p13.BrickColor = BrickColor.new("Really black")
935
p13.FormFactor = Enum.FormFactor.Custom
936
p13.Size = Vector3.new(1.5, 0.5, 0.5)
937
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)
938
p13.CanCollide = false
939
p13.Locked = true
940
p13.BottomSurface = Enum.SurfaceType.Smooth
941
p13.TopSurface = Enum.SurfaceType.Smooth
942
b11 = Instance.new("BlockMesh", p13)
943
b11.Name = "Mesh"
944
p14 = Instance.new("Part", m)
945
p14.BrickColor = BrickColor.new("Royal purple")
946
p14.Material = "Neon"
947
p14.FormFactor = Enum.FormFactor.Symmetric
948
p14.Size = Vector3.new(1, 1, 1)
949
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)
950
p14.CanCollide = false
951
p14.Locked = true
952
b12 = Instance.new("SpecialMesh", p14)
953
b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
954
b12.TextureId = ""
955
b12.MeshType = Enum.MeshType.FileMesh
956
b12.Name = "Mesh"
957
b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
958
p15 = Instance.new("Part", m)
959
p15.BrickColor = BrickColor.new("Royal purple")
960
p15.Transparency = 1
961
p15.Name = "ArmPart"
962
p15.FormFactor = Enum.FormFactor.Custom
963
p15.Size = Vector3.new(2, 1, 1)
964
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)
965
p15.CanCollide = false
966
p15.Locked = true
967
p15.BottomSurface = Enum.SurfaceType.Smooth
968
p15.TopSurface = Enum.SurfaceType.Smooth
969
b13 = Instance.new("BlockMesh", p15)
970
b13.Name = "Mesh"
971
p16 = Instance.new("Part", m)
972
p16.BrickColor = BrickColor.new("Really black")
973
p16.FormFactor = Enum.FormFactor.Custom
974
p16.Size = Vector3.new(3, 1, 2.4000001)
975
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)
976
p16.CanCollide = false
977
p16.Locked = true
978
p16.BottomSurface = Enum.SurfaceType.Smooth
979
p16.TopSurface = Enum.SurfaceType.Smooth
980
b14 = Instance.new("BlockMesh", p16)
981
b14.Name = "Mesh"
982
p17 = Instance.new("Part", m)
983
p17.BrickColor = BrickColor.new("Really black")
984
p17.FormFactor = Enum.FormFactor.Custom
985
p17.Size = Vector3.new(1.5, 0.5, 0.5)
986
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)
987
p17.CanCollide = false
988
p17.Locked = true
989
p17.BottomSurface = Enum.SurfaceType.Smooth
990
p17.TopSurface = Enum.SurfaceType.Smooth
991
b15 = Instance.new("BlockMesh", p17)
992
b15.Name = "Mesh"
993
p18 = Instance.new("Part", m)
994
p18.BrickColor = BrickColor.new("Royal purple")
995
p18.Material = "Neon"
996
p18.FormFactor = Enum.FormFactor.Symmetric
997
p18.Size = Vector3.new(1, 1, 1)
998
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)
999
p18.CanCollide = false
1000
p18.Locked = true
1001
b16 = Instance.new("SpecialMesh", p18)
1002
b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
1003
b16.TextureId = ""
1004
b16.MeshType = Enum.MeshType.FileMesh
1005
b16.Name = "Mesh"
1006
b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
1007
p19 = Instance.new("Part", m)
1008
p19.BrickColor = BrickColor.new("Royal purple")
1009
p19.Material = "Neon"
1010
p19.FormFactor = Enum.FormFactor.Symmetric
1011
p19.Size = Vector3.new(1, 1, 1)
1012
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)
1013
p19.CanCollide = false
1014
p19.Locked = true
1015
b17 = Instance.new("SpecialMesh", p19)
1016
b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
1017
b17.TextureId = ""
1018
b17.MeshType = Enum.MeshType.FileMesh
1019
b17.Name = "Mesh"
1020
b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
1021
p20 = Instance.new("Part", m)
1022
p20.BrickColor = BrickColor.new("Really black")
1023
p20.FormFactor = Enum.FormFactor.Custom
1024
p20.Size = Vector3.new(3, 1, 2.4000001)
1025
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)
1026
p20.CanCollide = false
1027
p20.Locked = true
1028
p20.BottomSurface = Enum.SurfaceType.Smooth
1029
p20.TopSurface = Enum.SurfaceType.Smooth
1030
b18 = Instance.new("BlockMesh", p20)
1031
b18.Name = "Mesh"
1032
p21 = Instance.new("Part", m)
1033
p21.BrickColor = BrickColor.new("Really black")
1034
p21.FormFactor = Enum.FormFactor.Custom
1035
p21.Size = Vector3.new(3, 1, 1.19999993)
1036
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)
1037
p21.CanCollide = false
1038
p21.Locked = true
1039
p21.BottomSurface = Enum.SurfaceType.Smooth
1040
p21.TopSurface = Enum.SurfaceType.Smooth
1041
b19 = Instance.new("BlockMesh", p21)
1042
b19.Name = "Mesh"
1043
p22 = Instance.new("WedgePart", m)
1044
p22.BrickColor = BrickColor.new("Really black")
1045
p22.Name = "Wedge"
1046
p22.FormFactor = Enum.FormFactor.Custom
1047
p22.Size = Vector3.new(3, 1, 0.5)
1048
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)
1049
p22.CanCollide = false
1050
p22.Locked = true
1051
p22.BottomSurface = Enum.SurfaceType.Smooth
1052
p22.TopSurface = Enum.SurfaceType.Smooth
1053
p23 = Instance.new("Part", m)
1054
p23.BrickColor = BrickColor.new("Really black")
1055
p23.FormFactor = Enum.FormFactor.Custom
1056
p23.Size = Vector3.new(1.5, 0.5, 0.5)
1057
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)
1058
p23.CanCollide = false
1059
p23.Locked = true
1060
p23.BottomSurface = Enum.SurfaceType.Smooth
1061
p23.TopSurface = Enum.SurfaceType.Smooth
1062
b20 = Instance.new("BlockMesh", p23)
1063
b20.Name = "Mesh"
1064
p24 = Instance.new("WedgePart", m)
1065
p24.BrickColor = BrickColor.new("Really black")
1066
p24.Name = "Wedge"
1067
p24.FormFactor = Enum.FormFactor.Custom
1068
p24.Size = Vector3.new(3, 1, 0.5)
1069
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)
1070
p24.CanCollide = false
1071
p24.Locked = true
1072
p24.BottomSurface = Enum.SurfaceType.Smooth
1073
p24.TopSurface = Enum.SurfaceType.Smooth
1074
p25 = Instance.new("Part", m)
1075
p25.BrickColor = BrickColor.new("Royal purple")
1076
p25.Material = "Neon"
1077
p25.FormFactor = Enum.FormFactor.Symmetric
1078
p25.Size = Vector3.new(1, 1, 1)
1079
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)
1080
p25.CanCollide = false
1081
p25.Locked = true
1082
p25.BottomSurface = Enum.SurfaceType.Smooth
1083
p25.TopSurface = Enum.SurfaceType.Smooth
1084
b21 = Instance.new("SpecialMesh", p25)
1085
b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
1086
b21.TextureId = ""
1087
b21.MeshType = Enum.MeshType.FileMesh
1088
b21.Name = "Mesh"
1089
b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
1090
p26 = Instance.new("Part", m)
1091
p26.BrickColor = BrickColor.new("Really black")
1092
p26.FormFactor = Enum.FormFactor.Symmetric
1093
p26.Size = Vector3.new(1, 1, 1)
1094
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)
1095
p26.CanCollide = false
1096
p26.Locked = true
1097
p26.BottomSurface = Enum.SurfaceType.Smooth
1098
p26.TopSurface = Enum.SurfaceType.Smooth
1099
b22 = Instance.new("SpecialMesh", p26)
1100
b22.MeshType = Enum.MeshType.Brick
1101
b22.Name = "Mesh"
1102
w1 = Instance.new("Weld", p1)
1103
w1.Name = "Wedge_Weld"
1104
w1.Part0 = p1
1105
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)
1106
w1.Part1 = p2
1107
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)
1108
w2 = Instance.new("Weld", p2)
1109
w2.Name = "Part_Weld"
1110
w2.Part0 = p2
1111
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)
1112
w2.Part1 = p3
1113
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)
1114
w3 = Instance.new("Weld", p3)
1115
w3.Name = "Wedge_Weld"
1116
w3.Part0 = p3
1117
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)
1118
w3.Part1 = p4
1119
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)
1120
w4 = Instance.new("Weld", p4)
1121
w4.Name = "Part_Weld"
1122
w4.Part0 = p4
1123
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)
1124
w4.Part1 = p5
1125
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)
1126
w5 = Instance.new("Weld", p5)
1127
w5.Name = "Part_Weld"
1128
w5.Part0 = p5
1129
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)
1130
w5.Part1 = p6
1131
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)
1132
w6 = Instance.new("Weld", p6)
1133
w6.Name = "Part_Weld"
1134
w6.Part0 = p6
1135
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)
1136
w6.Part1 = p7
1137
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)
1138
w7 = Instance.new("Weld", p7)
1139
w7.Name = "Part_Weld"
1140
w7.Part0 = p7
1141
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)
1142
w7.Part1 = p8
1143
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)
1144
w8 = Instance.new("Weld", p8)
1145
w8.Name = "Part_Weld"
1146
w8.Part0 = p8
1147
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)
1148
w8.Part1 = p9
1149
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)
1150
w9 = Instance.new("Weld", p9)
1151
w9.Name = "Part_Weld"
1152
w9.Part0 = p9
1153
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)
1154
w9.Part1 = p10
1155
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)
1156
w10 = Instance.new("Weld", p10)
1157
w10.Name = "Part_Weld"
1158
w10.Part0 = p10
1159
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)
1160
w10.Part1 = p11
1161
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)
1162
w11 = Instance.new("Weld", p11)
1163
w11.Name = "Part_Weld"
1164
w11.Part0 = p11
1165
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)
1166
w11.Part1 = p12
1167
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)
1168
w12 = Instance.new("Weld", p12)
1169
w12.Name = "Part_Weld"
1170
w12.Part0 = p12
1171
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)
1172
w12.Part1 = p13
1173
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)
1174
w13 = Instance.new("Weld", p13)
1175
w13.Name = "Part_Weld"
1176
w13.Part0 = p13
1177
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)
1178
w13.Part1 = p14
1179
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)
1180
w14 = Instance.new("Weld", p14)
1181
w14.Name = "ArmPart_Weld"
1182
w14.Part0 = p14
1183
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)
1184
w14.Part1 = p15
1185
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)
1186
w15 = Instance.new("Weld", p15)
1187
w15.Name = "Part_Weld"
1188
w15.Part0 = p15
1189
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)
1190
w15.Part1 = p16
1191
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)
1192
w16 = Instance.new("Weld", p16)
1193
w16.Name = "Part_Weld"
1194
w16.Part0 = p16
1195
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)
1196
w16.Part1 = p17
1197
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)
1198
w17 = Instance.new("Weld", p17)
1199
w17.Name = "Part_Weld"
1200
w17.Part0 = p17
1201
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)
1202
w17.Part1 = p18
1203
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)
1204
w18 = Instance.new("Weld", p18)
1205
w18.Name = "Part_Weld"
1206
w18.Part0 = p18
1207
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)
1208
w18.Part1 = p19
1209
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)
1210
w19 = Instance.new("Weld", p19)
1211
w19.Name = "Part_Weld"
1212
w19.Part0 = p19
1213
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)
1214
w19.Part1 = p20
1215
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)
1216
w20 = Instance.new("Weld", p20)
1217
w20.Name = "Part_Weld"
1218
w20.Part0 = p20
1219
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)
1220
w20.Part1 = p21
1221
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)
1222
w21 = Instance.new("Weld", p21)
1223
w21.Name = "Wedge_Weld"
1224
w21.Part0 = p21
1225
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)
1226
w21.Part1 = p22
1227
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)
1228
w22 = Instance.new("Weld", p22)
1229
w22.Name = "Part_Weld"
1230
w22.Part0 = p22
1231
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)
1232
w22.Part1 = p23
1233
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)
1234
w23 = Instance.new("Weld", p23)
1235
w23.Name = "Wedge_Weld"
1236
w23.Part0 = p23
1237
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)
1238
w23.Part1 = p24
1239
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)
1240
w24 = Instance.new("Weld", p24)
1241
w24.Name = "Part_Weld"
1242
w24.Part0 = p24
1243
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)
1244
w24.Part1 = p25
1245
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)
1246
w25 = Instance.new("Weld", p25)
1247
w25.Name = "Part_Weld"
1248
w25.Part0 = p25
1249
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)
1250
w25.Part1 = p26
1251
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)
1252
m.Parent = char
1253
m:MakeJoints()
1254
----------------------------------------------------
1255
local cor2 = Instance.new("Part", char.Claw)
1256
cor2.Name = "Thingy"
1257
cor2.Locked = true
1258
cor2.BottomSurface = 0
1259
cor2.CanCollide = false
1260
cor2.Size = Vector3.new(2, 1, 1)
1261
cor2.Transparency = 1
1262
cor2.TopSurface = 0
1263
corw2 = Instance.new("Weld", cor2)
1264
corw2.Part0 = larm
1265
corw2.Part1 = cor2
1266
corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
1267
corw2.C1 = CFrame.new(0, 0, 0)
1268
weld2 = Instance.new("Weld", char.Claw)
1269
weld2.Part0 = cor2
1270
weld2.Part1 = char.Claw.ArmPart
1271
weld2.C0 = CFrame.new(0, 0, 0)
1272
----------------------------------------------------
1273
local m = Instance.new("Model")
1274
m.Name = "LeftArm"
1275
p1 = Instance.new("WedgePart", m)
1276
p1.BrickColor = BrickColor.new("Royal purple")
1277
p1.Material = Enum.Material.Neon
1278
p1.Name = "Wedge"
1279
p1.FormFactor = Enum.FormFactor.Custom
1280
p1.Size = Vector3.new(1, 1.19999981, 4)
1281
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)
1282
p1.CanCollide = false
1283
p1.Locked = true
1284
p1.TopSurface = Enum.SurfaceType.Smooth
1285
b1 = Instance.new("SpecialMesh", p1)
1286
b1.MeshType = Enum.MeshType.Wedge
1287
b1.Name = "Mesh"
1288
b1.Scale = Vector3.new(0.200000003, 1, 1)
1289
p2 = Instance.new("WedgePart", m)
1290
p2.BrickColor = BrickColor.new("Royal purple")
1291
p2.Material = Enum.Material.Neon
1292
p2.Name = "Wedge"
1293
p2.FormFactor = Enum.FormFactor.Custom
1294
p2.Size = Vector3.new(1, 1.19999981, 4)
1295
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)
1296
p2.CanCollide = false
1297
p2.Locked = true
1298
p2.TopSurface = Enum.SurfaceType.Smooth
1299
b2 = Instance.new("SpecialMesh", p2)
1300
b2.MeshType = Enum.MeshType.Wedge
1301
b2.Name = "Mesh"
1302
b2.Scale = Vector3.new(0.200000003, 1, 1)
1303
p3 = Instance.new("WedgePart", m)
1304
p3.BrickColor = BrickColor.new("Royal purple")
1305
p3.Material = Enum.Material.Neon
1306
p3.Name = "Wedge"
1307
p3.FormFactor = Enum.FormFactor.Custom
1308
p3.Size = Vector3.new(1, 1.19999981, 4)
1309
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)
1310
p3.CanCollide = false
1311
p3.Locked = true
1312
p3.TopSurface = Enum.SurfaceType.Smooth
1313
b3 = Instance.new("SpecialMesh", p3)
1314
b3.MeshType = Enum.MeshType.Wedge
1315
b3.Name = "Mesh"
1316
b3.Scale = Vector3.new(0.200000003, 1, 1)
1317
p4 = Instance.new("WedgePart", m)
1318
p4.BrickColor = BrickColor.new("Royal purple")
1319
p4.Material = Enum.Material.Neon
1320
p4.Name = "Wedge"
1321
p4.FormFactor = Enum.FormFactor.Custom
1322
p4.Size = Vector3.new(1, 1.19999981, 4)
1323
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)
1324
p4.CanCollide = false
1325
p4.Locked = true
1326
p4.TopSurface = Enum.SurfaceType.Smooth
1327
b4 = Instance.new("SpecialMesh", p4)
1328
b4.MeshType = Enum.MeshType.Wedge
1329
b4.Name = "Mesh"
1330
b4.Scale = Vector3.new(0.200000003, 1, 1)
1331
p5 = Instance.new("WedgePart", m)
1332
p5.BrickColor = BrickColor.new("Royal purple")
1333
p5.Material = Enum.Material.Neon
1334
p5.Name = "Wedge"
1335
p5.FormFactor = Enum.FormFactor.Custom
1336
p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
1337
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)
1338
p5.CanCollide = false
1339
p5.Locked = true
1340
p5.TopSurface = Enum.SurfaceType.Smooth
1341
b5 = Instance.new("SpecialMesh", p5)
1342
b5.MeshType = Enum.MeshType.Wedge
1343
b5.Name = "Mesh"
1344
b5.Scale = Vector3.new(0.200000003, 1, 1)
1345
p6 = Instance.new("WedgePart", m)
1346
p6.BrickColor = BrickColor.new("Royal purple")
1347
p6.Material = Enum.Material.Neon
1348
p6.Name = "Wedge"
1349
p6.FormFactor = Enum.FormFactor.Custom
1350
p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
1351
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)
1352
p6.CanCollide = false
1353
p6.Locked = true
1354
p6.TopSurface = Enum.SurfaceType.Smooth
1355
b6 = Instance.new("SpecialMesh", p6)
1356
b6.MeshType = Enum.MeshType.Wedge
1357
b6.Name = "Mesh"
1358
b6.Scale = Vector3.new(0.200000003, 1, 1)
1359
p7 = Instance.new("WedgePart", m)
1360
p7.BrickColor = BrickColor.new("Royal purple")
1361
p7.Material = Enum.Material.Neon
1362
p7.Name = "Wedge"
1363
p7.FormFactor = Enum.FormFactor.Custom
1364
p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
1365
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)
1366
p7.CanCollide = false
1367
p7.Locked = true
1368
p7.TopSurface = Enum.SurfaceType.Smooth
1369
b7 = Instance.new("SpecialMesh", p7)
1370
b7.MeshType = Enum.MeshType.Wedge
1371
b7.Name = "Mesh"
1372
b7.Scale = Vector3.new(0.200000003, 1, 1)
1373
p8 = Instance.new("Part", m)
1374
p8.BrickColor = BrickColor.new("Really black")
1375
p8.Material = Enum.Material.Neon
1376
p8.FormFactor = Enum.FormFactor.Custom
1377
p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1378
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)
1379
p8.CanCollide = false
1380
p8.Locked = true
1381
p8.BottomSurface = Enum.SurfaceType.Smooth
1382
p8.TopSurface = Enum.SurfaceType.Smooth
1383
b8 = Instance.new("SpecialMesh", p8)
1384
b8.MeshType = Enum.MeshType.Sphere
1385
b8.Name = "Mesh"
1386
p9 = Instance.new("Part", m)
1387
p9.BrickColor = BrickColor.new("Really black")
1388
p9.Material = Enum.Material.Neon
1389
p9.FormFactor = Enum.FormFactor.Custom
1390
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1391
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)
1392
p9.CanCollide = false
1393
p9.Locked = true
1394
p9.BottomSurface = Enum.SurfaceType.Smooth
1395
p9.TopSurface = Enum.SurfaceType.Smooth
1396
b9 = Instance.new("SpecialMesh", p9)
1397
b9.MeshType = Enum.MeshType.Sphere
1398
b9.Name = "Mesh"
1399
p10 = Instance.new("Part", m)
1400
p10.BrickColor = BrickColor.new("Royal purple")
1401
p10.Material = Enum.Material.Neon
1402
p10.FormFactor = Enum.FormFactor.Custom
1403
p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
1404
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)
1405
p10.CanCollide = false
1406
p10.Locked = true
1407
p10.BottomSurface = Enum.SurfaceType.Smooth
1408
p10.TopSurface = Enum.SurfaceType.Smooth
1409
p11 = Instance.new("Part", m)
1410
p11.BrickColor = BrickColor.new("Royal purple")
1411
p11.Material = Enum.Material.Neon
1412
p11.FormFactor = Enum.FormFactor.Custom
1413
p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
1414
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)
1415
p11.CanCollide = false
1416
p11.Locked = true
1417
p11.BottomSurface = Enum.SurfaceType.Smooth
1418
p11.TopSurface = Enum.SurfaceType.Smooth
1419
p12 = Instance.new("Part", m)
1420
p12.BrickColor = BrickColor.new("Really black")
1421
p12.Material = Enum.Material.Neon
1422
p12.FormFactor = Enum.FormFactor.Custom
1423
p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1424
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)
1425
p12.CanCollide = false
1426
p12.Locked = true
1427
p12.BottomSurface = Enum.SurfaceType.Smooth
1428
p12.TopSurface = Enum.SurfaceType.Smooth
1429
b10 = Instance.new("SpecialMesh", p12)
1430
b10.MeshType = Enum.MeshType.Sphere
1431
b10.Name = "Mesh"
1432
p13 = Instance.new("Part", m)
1433
p13.BrickColor = BrickColor.new("Royal purple")
1434
p13.Material = Enum.Material.Neon
1435
p13.FormFactor = Enum.FormFactor.Custom
1436
p13.Size = Vector3.new(1.5, 1.5, 1.5)
1437
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)
1438
p13.CanCollide = false
1439
p13.Locked = true
1440
p13.BottomSurface = Enum.SurfaceType.Smooth
1441
p13.TopSurface = Enum.SurfaceType.Smooth
1442
b11 = Instance.new("SpecialMesh", p13)
1443
b11.MeshType = Enum.MeshType.Sphere
1444
b11.Name = "Mesh"
1445
p14 = Instance.new("Part", m)
1446
p14.BrickColor = BrickColor.new("Really black")
1447
p14.Material = Enum.Material.Neon
1448
p14.FormFactor = Enum.FormFactor.Custom
1449
p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1450
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)
1451
p14.CanCollide = false
1452
p14.Locked = true
1453
p14.BottomSurface = Enum.SurfaceType.Smooth
1454
p14.TopSurface = Enum.SurfaceType.Smooth
1455
b12 = Instance.new("SpecialMesh", p14)
1456
b12.MeshType = Enum.MeshType.Sphere
1457
b12.Name = "Mesh"
1458
p15 = Instance.new("Part", m)
1459
p15.BrickColor = BrickColor.new("Really black")
1460
p15.Material = Enum.Material.Metal
1461
p15.Name = "Main"
1462
p15.FormFactor = Enum.FormFactor.Custom
1463
p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
1464
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)
1465
p15.CanCollide = false
1466
p15.Locked = true
1467
p15.BottomSurface = Enum.SurfaceType.Smooth
1468
p15.TopSurface = Enum.SurfaceType.Smooth
1469
p16 = Instance.new("Part", m)
1470
p16.BrickColor = BrickColor.new("Really black")
1471
p16.Material = Enum.Material.Neon
1472
p16.FormFactor = Enum.FormFactor.Custom
1473
p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1474
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)
1475
p16.CanCollide = false
1476
p16.Locked = true
1477
p16.BottomSurface = Enum.SurfaceType.Smooth
1478
p16.TopSurface = Enum.SurfaceType.Smooth
1479
b13 = Instance.new("SpecialMesh", p16)
1480
b13.MeshType = Enum.MeshType.Sphere
1481
b13.Name = "Mesh"
1482
p17 = Instance.new("Part", m)
1483
p17.BrickColor = BrickColor.new("Royal purple")
1484
p17.Material = Enum.Material.Neon
1485
p17.FormFactor = Enum.FormFactor.Custom
1486
p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
1487
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)
1488
p17.CanCollide = false
1489
p17.Locked = true
1490
p17.BottomSurface = Enum.SurfaceType.Smooth
1491
p17.TopSurface = Enum.SurfaceType.Smooth
1492
p18 = Instance.new("Part", m)
1493
p18.BrickColor = BrickColor.new("Royal purple")
1494
p18.Material = Enum.Material.Neon
1495
p18.FormFactor = Enum.FormFactor.Custom
1496
p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
1497
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)
1498
p18.CanCollide = false
1499
p18.Locked = true
1500
p18.BottomSurface = Enum.SurfaceType.Smooth
1501
p18.TopSurface = Enum.SurfaceType.Smooth
1502
p19 = Instance.new("Part", m)
1503
p19.BrickColor = BrickColor.new("Royal purple")
1504
p19.Material = Enum.Material.Neon
1505
p19.FormFactor = Enum.FormFactor.Custom
1506
p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
1507
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)
1508
p19.CanCollide = false
1509
p19.Locked = true
1510
p19.BottomSurface = Enum.SurfaceType.Smooth
1511
p19.TopSurface = Enum.SurfaceType.Smooth
1512
p20 = Instance.new("Part", m)
1513
p20.BrickColor = BrickColor.new("Royal purple")
1514
p20.Material = Enum.Material.Neon
1515
p20.FormFactor = Enum.FormFactor.Custom
1516
p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
1517
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)
1518
p20.CanCollide = false
1519
p20.Locked = true
1520
p20.BottomSurface = Enum.SurfaceType.Smooth
1521
p20.TopSurface = Enum.SurfaceType.Smooth
1522
p21 = Instance.new("Part", m)
1523
p21.BrickColor = BrickColor.new("Royal purple")
1524
p21.Material = Enum.Material.Neon
1525
p21.FormFactor = Enum.FormFactor.Custom
1526
p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
1527
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)
1528
p21.CanCollide = false
1529
p21.Locked = true
1530
p21.BottomSurface = Enum.SurfaceType.Smooth
1531
p21.TopSurface = Enum.SurfaceType.Smooth
1532
p22 = Instance.new("Part", m)
1533
p22.BrickColor = BrickColor.new("Really black")
1534
p22.Material = Enum.Material.Neon
1535
p22.FormFactor = Enum.FormFactor.Custom
1536
p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1537
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)
1538
p22.CanCollide = false
1539
p22.Locked = true
1540
p22.BottomSurface = Enum.SurfaceType.Smooth
1541
p22.TopSurface = Enum.SurfaceType.Smooth
1542
b14 = Instance.new("SpecialMesh", p22)
1543
b14.MeshType = Enum.MeshType.Sphere
1544
b14.Name = "Mesh"
1545
p23 = Instance.new("Part", m)
1546
p23.BrickColor = BrickColor.new("Really black")
1547
p23.Material = Enum.Material.Neon
1548
p23.FormFactor = Enum.FormFactor.Custom
1549
p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1550
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)
1551
p23.CanCollide = false
1552
p23.Locked = true
1553
p23.BottomSurface = Enum.SurfaceType.Smooth
1554
p23.TopSurface = Enum.SurfaceType.Smooth
1555
b15 = Instance.new("SpecialMesh", p23)
1556
b15.MeshType = Enum.MeshType.Sphere
1557
b15.Name = "Mesh"
1558
p24 = Instance.new("Part", m)
1559
p24.BrickColor = BrickColor.new("Really black")
1560
p24.Material = Enum.Material.Neon
1561
p24.FormFactor = Enum.FormFactor.Custom
1562
p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1563
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)
1564
p24.CanCollide = false
1565
p24.Locked = true
1566
p24.BottomSurface = Enum.SurfaceType.Smooth
1567
p24.TopSurface = Enum.SurfaceType.Smooth
1568
b16 = Instance.new("SpecialMesh", p24)
1569
b16.MeshType = Enum.MeshType.Sphere
1570
b16.Name = "Mesh"
1571
w1 = Instance.new("Weld", p1)
1572
w1.Name = "Wedge_Weld"
1573
w1.Part0 = p1
1574
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)
1575
w1.Part1 = p2
1576
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)
1577
w2 = Instance.new("Weld", p2)
1578
w2.Name = "Wedge_Weld"
1579
w2.Part0 = p2
1580
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)
1581
w2.Part1 = p3
1582
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)
1583
w3 = Instance.new("Weld", p3)
1584
w3.Name = "Wedge_Weld"
1585
w3.Part0 = p3
1586
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)
1587
w3.Part1 = p4
1588
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)
1589
w4 = Instance.new("Weld", p4)
1590
w4.Name = "Wedge_Weld"
1591
w4.Part0 = p4
1592
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)
1593
w4.Part1 = p5
1594
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)
1595
w5 = Instance.new("Weld", p5)
1596
w5.Name = "Wedge_Weld"
1597
w5.Part0 = p5
1598
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)
1599
w5.Part1 = p6
1600
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)
1601
w6 = Instance.new("Weld", p6)
1602
w6.Name = "Wedge_Weld"
1603
w6.Part0 = p6
1604
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)
1605
w6.Part1 = p7
1606
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)
1607
w7 = Instance.new("Weld", p7)
1608
w7.Name = "Part_Weld"
1609
w7.Part0 = p7
1610
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)
1611
w7.Part1 = p8
1612
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)
1613
w8 = Instance.new("Weld", p8)
1614
w8.Name = "Part_Weld"
1615
w8.Part0 = p8
1616
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)
1617
w8.Part1 = p9
1618
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)
1619
w9 = Instance.new("Weld", p9)
1620
w9.Name = "Part_Weld"
1621
w9.Part0 = p9
1622
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)
1623
w9.Part1 = p10
1624
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)
1625
w10 = Instance.new("Weld", p10)
1626
w10.Name = "Part_Weld"
1627
w10.Part0 = p10
1628
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)
1629
w10.Part1 = p11
1630
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)
1631
w11 = Instance.new("Weld", p11)
1632
w11.Name = "Part_Weld"
1633
w11.Part0 = p11
1634
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)
1635
w11.Part1 = p12
1636
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)
1637
w12 = Instance.new("Weld", p12)
1638
w12.Name = "Part_Weld"
1639
w12.Part0 = p12
1640
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)
1641
w12.Part1 = p13
1642
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)
1643
w13 = Instance.new("Weld", p13)
1644
w13.Name = "Part_Weld"
1645
w13.Part0 = p13
1646
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)
1647
w13.Part1 = p14
1648
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)
1649
w14 = Instance.new("Weld", p14)
1650
w14.Name = "Part_Weld"
1651
w14.Part0 = p14
1652
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)
1653
w14.Part1 = p15
1654
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)
1655
w15 = Instance.new("Weld", p15)
1656
w15.Name = "Part_Weld"
1657
w15.Part0 = p15
1658
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)
1659
w15.Part1 = p16
1660
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)
1661
w16 = Instance.new("Weld", p16)
1662
w16.Name = "Part_Weld"
1663
w16.Part0 = p16
1664
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)
1665
w16.Part1 = p17
1666
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)
1667
w17 = Instance.new("Weld", p17)
1668
w17.Name = "Part_Weld"
1669
w17.Part0 = p17
1670
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)
1671
w17.Part1 = p18
1672
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)
1673
w18 = Instance.new("Weld", p18)
1674
w18.Name = "Part_Weld"
1675
w18.Part0 = p18
1676
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)
1677
w18.Part1 = p19
1678
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)
1679
w19 = Instance.new("Weld", p19)
1680
w19.Name = "Part_Weld"
1681
w19.Part0 = p19
1682
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)
1683
w19.Part1 = p20
1684
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)
1685
w20 = Instance.new("Weld", p20)
1686
w20.Name = "Part_Weld"
1687
w20.Part0 = p20
1688
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)
1689
w20.Part1 = p21
1690
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)
1691
w21 = Instance.new("Weld", p21)
1692
w21.Name = "Part_Weld"
1693
w21.Part0 = p21
1694
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)
1695
w21.Part1 = p22
1696
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)
1697
w22 = Instance.new("Weld", p22)
1698
w22.Name = "Part_Weld"
1699
w22.Part0 = p22
1700
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)
1701
w22.Part1 = p23
1702
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)
1703
w23 = Instance.new("Weld", p23)
1704
w23.Name = "Part_Weld"
1705
w23.Part0 = p23
1706
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)
1707
w23.Part1 = p24
1708
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)
1709
w24 = Instance.new("Weld", p24)
1710
w24.Name = "Part_Weld"
1711
w24.Part0 = p24
1712
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)
1713
m.Parent = larm
1714
m:MakeJoints()
1715
----------------------------------------------------
1716
local cor3 = Instance.new("Part", larm.LeftArm)
1717
cor3.Name = "Thingy"
1718
cor3.Locked = true
1719
cor3.BottomSurface = 0
1720
cor3.CanCollide = false
1721
cor3.Size = Vector3.new(2, 1, 1)
1722
cor3.Transparency = 1
1723
cor3.TopSurface = 0
1724
corw2 = Instance.new("Weld", cor3)
1725
corw2.Part0 = larm
1726
corw2.Part1 = cor3
1727
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
1728
corw2.C1 = CFrame.new(0, 0, 0)
1729
weld2 = Instance.new("Weld", larm.LeftArm)
1730
weld2.Part0 = cor3
1731
weld2.Part1 = p15
1732
weld2.C0 = CFrame.new(0, 0, 0)
1733
----------------------------------------------------
1734
local m = Instance.new("Model")
1735
m.Name = "RightArm"
1736
p1 = Instance.new("WedgePart", m)
1737
p1.BrickColor = BrickColor.new("Royal purple")
1738
p1.Material = Enum.Material.Neon
1739
p1.Name = "Wedge"
1740
p1.FormFactor = Enum.FormFactor.Custom
1741
p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
1742
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)
1743
p1.CanCollide = false
1744
p1.Locked = true
1745
p1.TopSurface = Enum.SurfaceType.Smooth
1746
b1 = Instance.new("SpecialMesh", p1)
1747
b1.MeshType = Enum.MeshType.Wedge
1748
b1.Name = "Mesh"
1749
b1.Scale = Vector3.new(0.200000003, 1, 1)
1750
p2 = Instance.new("WedgePart", m)
1751
p2.BrickColor = BrickColor.new("Royal purple")
1752
p2.Material = Enum.Material.Neon
1753
p2.Name = "Wedge"
1754
p2.FormFactor = Enum.FormFactor.Custom
1755
p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
1756
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)
1757
p2.CanCollide = false
1758
p2.Locked = true
1759
p2.TopSurface = Enum.SurfaceType.Smooth
1760
b2 = Instance.new("SpecialMesh", p2)
1761
b2.MeshType = Enum.MeshType.Wedge
1762
b2.Name = "Mesh"
1763
b2.Scale = Vector3.new(0.200000003, 1, 1)
1764
p3 = Instance.new("WedgePart", m)
1765
p3.BrickColor = BrickColor.new("Royal purple")
1766
p3.Material = Enum.Material.Neon
1767
p3.Name = "Wedge"
1768
p3.FormFactor = Enum.FormFactor.Custom
1769
p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
1770
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)
1771
p3.CanCollide = false
1772
p3.Locked = true
1773
p3.TopSurface = Enum.SurfaceType.Smooth
1774
b3 = Instance.new("SpecialMesh", p3)
1775
b3.MeshType = Enum.MeshType.Wedge
1776
b3.Name = "Mesh"
1777
b3.Scale = Vector3.new(0.200000003, 1, 1)
1778
p4 = Instance.new("WedgePart", m)
1779
p4.BrickColor = BrickColor.new("Royal purple")
1780
p4.Material = Enum.Material.Neon
1781
p4.Name = "Wedge"
1782
p4.FormFactor = Enum.FormFactor.Custom
1783
p4.Size = Vector3.new(1, 1.19999981, 4)
1784
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)
1785
p4.CanCollide = false
1786
p4.Locked = true
1787
p4.TopSurface = Enum.SurfaceType.Smooth
1788
b4 = Instance.new("SpecialMesh", p4)
1789
b4.MeshType = Enum.MeshType.Wedge
1790
b4.Name = "Mesh"
1791
b4.Scale = Vector3.new(0.200000003, 1, 1)
1792
p5 = Instance.new("WedgePart", m)
1793
p5.BrickColor = BrickColor.new("Royal purple")
1794
p5.Material = Enum.Material.Neon
1795
p5.Name = "Wedge"
1796
p5.FormFactor = Enum.FormFactor.Custom
1797
p5.Size = Vector3.new(1, 1.19999981, 4)
1798
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)
1799
p5.CanCollide = false
1800
p5.Locked = true
1801
p5.TopSurface = Enum.SurfaceType.Smooth
1802
b5 = Instance.new("SpecialMesh", p5)
1803
b5.MeshType = Enum.MeshType.Wedge
1804
b5.Name = "Mesh"
1805
b5.Scale = Vector3.new(0.200000003, 1, 1)
1806
p6 = Instance.new("WedgePart", m)
1807
p6.BrickColor = BrickColor.new("Royal purple")
1808
p6.Material = Enum.Material.Neon
1809
p6.Name = "Wedge"
1810
p6.FormFactor = Enum.FormFactor.Custom
1811
p6.Size = Vector3.new(1, 1.19999981, 4)
1812
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)
1813
p6.CanCollide = false
1814
p6.Locked = true
1815
p6.TopSurface = Enum.SurfaceType.Smooth
1816
b6 = Instance.new("SpecialMesh", p6)
1817
b6.MeshType = Enum.MeshType.Wedge
1818
b6.Name = "Mesh"
1819
b6.Scale = Vector3.new(0.200000003, 1, 1)
1820
p7 = Instance.new("Part", m)
1821
p7.BrickColor = BrickColor.new("Really black")
1822
p7.Material = Enum.Material.Neon
1823
p7.FormFactor = Enum.FormFactor.Custom
1824
p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1825
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)
1826
p7.CanCollide = false
1827
p7.Locked = true
1828
p7.BottomSurface = Enum.SurfaceType.Smooth
1829
p7.TopSurface = Enum.SurfaceType.Smooth
1830
b7 = Instance.new("SpecialMesh", p7)
1831
b7.MeshType = Enum.MeshType.Sphere
1832
b7.Name = "Mesh"
1833
p8 = Instance.new("Part", m)
1834
p8.BrickColor = BrickColor.new("Royal purple")
1835
p8.Material = Enum.Material.Neon
1836
p8.FormFactor = Enum.FormFactor.Custom
1837
p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
1838
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)
1839
p8.CanCollide = false
1840
p8.Locked = true
1841
p8.BottomSurface = Enum.SurfaceType.Smooth
1842
p8.TopSurface = Enum.SurfaceType.Smooth
1843
p9 = Instance.new("Part", m)
1844
p9.BrickColor = BrickColor.new("Really black")
1845
p9.Material = Enum.Material.Neon
1846
p9.FormFactor = Enum.FormFactor.Custom
1847
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1848
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)
1849
p9.CanCollide = false
1850
p9.Locked = true
1851
p9.BottomSurface = Enum.SurfaceType.Smooth
1852
p9.TopSurface = Enum.SurfaceType.Smooth
1853
b8 = Instance.new("SpecialMesh", p9)
1854
b8.MeshType = Enum.MeshType.Sphere
1855
b8.Name = "Mesh"
1856
p10 = Instance.new("Part", m)
1857
p10.BrickColor = BrickColor.new("Really black")
1858
p10.Material = Enum.Material.Neon
1859
p10.FormFactor = Enum.FormFactor.Custom
1860
p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1861
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)
1862
p10.CanCollide = false
1863
p10.Locked = true
1864
p10.BottomSurface = Enum.SurfaceType.Smooth
1865
p10.TopSurface = Enum.SurfaceType.Smooth
1866
b9 = Instance.new("SpecialMesh", p10)
1867
b9.MeshType = Enum.MeshType.Sphere
1868
b9.Name = "Mesh"
1869
p11 = Instance.new("Part", m)
1870
p11.BrickColor = BrickColor.new("Royal purple")
1871
p11.Material = Enum.Material.Neon
1872
p11.FormFactor = Enum.FormFactor.Custom
1873
p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
1874
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)
1875
p11.CanCollide = false
1876
p11.Locked = true
1877
p11.BottomSurface = Enum.SurfaceType.Smooth
1878
p11.TopSurface = Enum.SurfaceType.Smooth
1879
p12 = Instance.new("Part", m)
1880
p12.BrickColor = BrickColor.new("Royal purple")
1881
p12.Material = Enum.Material.Neon
1882
p12.FormFactor = Enum.FormFactor.Custom
1883
p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
1884
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)
1885
p12.CanCollide = false
1886
p12.Locked = true
1887
p12.BottomSurface = Enum.SurfaceType.Smooth
1888
p12.TopSurface = Enum.SurfaceType.Smooth
1889
p13 = Instance.new("Part", m)
1890
p13.BrickColor = BrickColor.new("Royal purple")
1891
p13.Material = Enum.Material.Neon
1892
p13.FormFactor = Enum.FormFactor.Custom
1893
p13.Size = Vector3.new(1.5, 1.5, 1.5)
1894
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)
1895
p13.CanCollide = false
1896
p13.Locked = true
1897
p13.BottomSurface = Enum.SurfaceType.Smooth
1898
p13.TopSurface = Enum.SurfaceType.Smooth
1899
b10 = Instance.new("SpecialMesh", p13)
1900
b10.MeshType = Enum.MeshType.Sphere
1901
b10.Name = "Mesh"
1902
p14 = Instance.new("Part", m)
1903
p14.BrickColor = BrickColor.new("Really black")
1904
p14.Material = Enum.Material.Metal
1905
p14.Name = "Main"
1906
p14.FormFactor = Enum.FormFactor.Custom
1907
p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
1908
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)
1909
p14.CanCollide = false
1910
p14.Locked = true
1911
p14.BottomSurface = Enum.SurfaceType.Smooth
1912
p14.TopSurface = Enum.SurfaceType.Smooth
1913
p15 = Instance.new("Part", m)
1914
p15.BrickColor = BrickColor.new("Really black")
1915
p15.Material = Enum.Material.Neon
1916
p15.FormFactor = Enum.FormFactor.Custom
1917
p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1918
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)
1919
p15.CanCollide = false
1920
p15.Locked = true
1921
p15.BottomSurface = Enum.SurfaceType.Smooth
1922
p15.TopSurface = Enum.SurfaceType.Smooth
1923
b11 = Instance.new("SpecialMesh", p15)
1924
b11.MeshType = Enum.MeshType.Sphere
1925
b11.Name = "Mesh"
1926
p16 = Instance.new("Part", m)
1927
p16.BrickColor = BrickColor.new("Royal purple")
1928
p16.Material = Enum.Material.Neon
1929
p16.FormFactor = Enum.FormFactor.Custom
1930
p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
1931
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)
1932
p16.CanCollide = false
1933
p16.Locked = true
1934
p16.BottomSurface = Enum.SurfaceType.Smooth
1935
p16.TopSurface = Enum.SurfaceType.Smooth
1936
p17 = Instance.new("Part", m)
1937
p17.BrickColor = BrickColor.new("Royal purple")
1938
p17.Material = Enum.Material.Neon
1939
p17.FormFactor = Enum.FormFactor.Custom
1940
p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
1941
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)
1942
p17.CanCollide = false
1943
p17.Locked = true
1944
p17.BottomSurface = Enum.SurfaceType.Smooth
1945
p17.TopSurface = Enum.SurfaceType.Smooth
1946
p18 = Instance.new("Part", m)
1947
p18.BrickColor = BrickColor.new("Really black")
1948
p18.Material = Enum.Material.Neon
1949
p18.FormFactor = Enum.FormFactor.Custom
1950
p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1951
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)
1952
p18.CanCollide = false
1953
p18.Locked = true
1954
p18.BottomSurface = Enum.SurfaceType.Smooth
1955
p18.TopSurface = Enum.SurfaceType.Smooth
1956
b12 = Instance.new("SpecialMesh", p18)
1957
b12.MeshType = Enum.MeshType.Sphere
1958
b12.Name = "Mesh"
1959
p19 = Instance.new("Part", m)
1960
p19.BrickColor = BrickColor.new("Really black")
1961
p19.Material = Enum.Material.Neon
1962
p19.FormFactor = Enum.FormFactor.Custom
1963
p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
1964
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)
1965
p19.CanCollide = false
1966
p19.Locked = true
1967
p19.BottomSurface = Enum.SurfaceType.Smooth
1968
p19.TopSurface = Enum.SurfaceType.Smooth
1969
b13 = Instance.new("SpecialMesh", p19)
1970
b13.MeshType = Enum.MeshType.Sphere
1971
b13.Name = "Mesh"
1972
w1 = Instance.new("Weld", p1)
1973
w1.Name = "Wedge_Weld"
1974
w1.Part0 = p1
1975
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)
1976
w1.Part1 = p2
1977
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)
1978
w2 = Instance.new("Weld", p2)
1979
w2.Name = "Wedge_Weld"
1980
w2.Part0 = p2
1981
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)
1982
w2.Part1 = p3
1983
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)
1984
w3 = Instance.new("Weld", p3)
1985
w3.Name = "Wedge_Weld"
1986
w3.Part0 = p3
1987
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)
1988
w3.Part1 = p4
1989
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)
1990
w4 = Instance.new("Weld", p4)
1991
w4.Name = "Wedge_Weld"
1992
w4.Part0 = p4
1993
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)
1994
w4.Part1 = p5
1995
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)
1996
w5 = Instance.new("Weld", p5)
1997
w5.Name = "Wedge_Weld"
1998
w5.Part0 = p5
1999
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)
2000
w5.Part1 = p6
2001
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)
2002
w6 = Instance.new("Weld", p6)
2003
w6.Name = "Part_Weld"
2004
w6.Part0 = p6
2005
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)
2006
w6.Part1 = p7
2007
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)
2008
w7 = Instance.new("Weld", p7)
2009
w7.Name = "Part_Weld"
2010
w7.Part0 = p7
2011
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)
2012
w7.Part1 = p8
2013
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)
2014
w8 = Instance.new("Weld", p8)
2015
w8.Name = "Part_Weld"
2016
w8.Part0 = p8
2017
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)
2018
w8.Part1 = p9
2019
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)
2020
w9 = Instance.new("Weld", p9)
2021
w9.Name = "Part_Weld"
2022
w9.Part0 = p9
2023
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)
2024
w9.Part1 = p10
2025
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)
2026
w10 = Instance.new("Weld", p10)
2027
w10.Name = "Part_Weld"
2028
w10.Part0 = p10
2029
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)
2030
w10.Part1 = p11
2031
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)
2032
w11 = Instance.new("Weld", p11)
2033
w11.Name = "Part_Weld"
2034
w11.Part0 = p11
2035
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)
2036
w11.Part1 = p12
2037
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)
2038
w12 = Instance.new("Weld", p12)
2039
w12.Name = "Part_Weld"
2040
w12.Part0 = p12
2041
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)
2042
w12.Part1 = p13
2043
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)
2044
w13 = Instance.new("Weld", p13)
2045
w13.Name = "Part_Weld"
2046
w13.Part0 = p13
2047
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)
2048
w13.Part1 = p14
2049
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)
2050
w14 = Instance.new("Weld", p14)
2051
w14.Name = "Part_Weld"
2052
w14.Part0 = p14
2053
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)
2054
w14.Part1 = p15
2055
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)
2056
w15 = Instance.new("Weld", p15)
2057
w15.Name = "Part_Weld"
2058
w15.Part0 = p15
2059
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)
2060
w15.Part1 = p16
2061
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)
2062
w16 = Instance.new("Weld", p16)
2063
w16.Name = "Part_Weld"
2064
w16.Part0 = p16
2065
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)
2066
w16.Part1 = p17
2067
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)
2068
w17 = Instance.new("Weld", p17)
2069
w17.Name = "Part_Weld"
2070
w17.Part0 = p17
2071
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)
2072
w17.Part1 = p18
2073
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)
2074
w18 = Instance.new("Weld", p18)
2075
w18.Name = "Part_Weld"
2076
w18.Part0 = p18
2077
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)
2078
w18.Part1 = p19
2079
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)
2080
w19 = Instance.new("Weld", p19)
2081
w19.Name = "Wedge_Weld"
2082
w19.Part0 = p19
2083
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)
2084
m.Parent = rarm
2085
m:MakeJoints()
2086
----------------------------------------------------
2087
local cor4 = Instance.new("Part", rarm.RightArm)
2088
cor4.Name = "Thingy"
2089
cor4.Locked = true
2090
cor4.BottomSurface = 0
2091
cor4.CanCollide = false
2092
cor4.Size = Vector3.new(2, 1, 1)
2093
cor4.Transparency = 1
2094
cor4.TopSurface = 0
2095
corw2 = Instance.new("Weld", cor4)
2096
corw2.Part0 = rarm
2097
corw2.Part1 = cor4
2098
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2099
corw2.C1 = CFrame.new(0, 0, 0)
2100
weld2 = Instance.new("Weld", rarm.RightArm)
2101
weld2.Part0 = cor4
2102
weld2.Part1 = p14
2103
weld2.C0 = CFrame.new(0, 0, 0)
2104
----------------------------------------------------
2105
local m = Instance.new("Model")
2106
m.Name = "Torso"
2107
p1 = Instance.new("Part", m)
2108
p1.BrickColor = BrickColor.new("Really black")
2109
p1.Material = Enum.Material.Neon
2110
p1.FormFactor = Enum.FormFactor.Custom
2111
p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2112
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)
2113
p1.CanCollide = false
2114
p1.Locked = true
2115
p1.BottomSurface = Enum.SurfaceType.Smooth
2116
p1.TopSurface = Enum.SurfaceType.Smooth
2117
b1 = Instance.new("SpecialMesh", p1)
2118
b1.MeshType = Enum.MeshType.Sphere
2119
b1.Name = "Mesh"
2120
p2 = Instance.new("Part", m)
2121
p2.BrickColor = BrickColor.new("Really black")
2122
p2.Material = Enum.Material.Neon
2123
p2.FormFactor = Enum.FormFactor.Custom
2124
p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2125
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)
2126
p2.CanCollide = false
2127
p2.Locked = true
2128
p2.BottomSurface = Enum.SurfaceType.Smooth
2129
p2.TopSurface = Enum.SurfaceType.Smooth
2130
b2 = Instance.new("SpecialMesh", p2)
2131
b2.MeshType = Enum.MeshType.Sphere
2132
b2.Name = "Mesh"
2133
p3 = Instance.new("Part", m)
2134
p3.BrickColor = BrickColor.new("Royal purple")
2135
p3.Material = Enum.Material.Neon
2136
p3.FormFactor = Enum.FormFactor.Custom
2137
p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
2138
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)
2139
p3.CanCollide = false
2140
p3.Locked = true
2141
p3.BottomSurface = Enum.SurfaceType.Smooth
2142
p3.TopSurface = Enum.SurfaceType.Smooth
2143
p4 = Instance.new("Part", m)
2144
p4.BrickColor = BrickColor.new("Royal purple")
2145
p4.Material = Enum.Material.Neon
2146
p4.FormFactor = Enum.FormFactor.Custom
2147
p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
2148
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)
2149
p4.CanCollide = false
2150
p4.Locked = true
2151
p4.BottomSurface = Enum.SurfaceType.Smooth
2152
p4.TopSurface = Enum.SurfaceType.Smooth
2153
p5 = Instance.new("Part", m)
2154
p5.BrickColor = BrickColor.new("Royal purple")
2155
p5.Material = Enum.Material.Neon
2156
p5.FormFactor = Enum.FormFactor.Custom
2157
p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
2158
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)
2159
p5.CanCollide = false
2160
p5.Locked = true
2161
p5.BottomSurface = Enum.SurfaceType.Smooth
2162
p5.TopSurface = Enum.SurfaceType.Smooth
2163
p6 = Instance.new("Part", m)
2164
p6.BrickColor = BrickColor.new("Royal purple")
2165
p6.Material = Enum.Material.Neon
2166
p6.FormFactor = Enum.FormFactor.Custom
2167
p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
2168
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)
2169
p6.CanCollide = false
2170
p6.Locked = true
2171
p6.BottomSurface = Enum.SurfaceType.Smooth
2172
p6.TopSurface = Enum.SurfaceType.Smooth
2173
p7 = Instance.new("Part", m)
2174
p7.BrickColor = BrickColor.new("Really black")
2175
p7.Material = Enum.Material.Neon
2176
p7.FormFactor = Enum.FormFactor.Custom
2177
p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2178
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)
2179
p7.CanCollide = false
2180
p7.Locked = true
2181
p7.BottomSurface = Enum.SurfaceType.Smooth
2182
p7.TopSurface = Enum.SurfaceType.Smooth
2183
b3 = Instance.new("SpecialMesh", p7)
2184
b3.MeshType = Enum.MeshType.Sphere
2185
b3.Name = "Mesh"
2186
p8 = Instance.new("Part", m)
2187
p8.BrickColor = BrickColor.new("Really black")
2188
p8.Material = Enum.Material.Neon
2189
p8.FormFactor = Enum.FormFactor.Custom
2190
p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2191
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)
2192
p8.CanCollide = false
2193
p8.Locked = true
2194
p8.BottomSurface = Enum.SurfaceType.Smooth
2195
p8.TopSurface = Enum.SurfaceType.Smooth
2196
b4 = Instance.new("SpecialMesh", p8)
2197
b4.MeshType = Enum.MeshType.Sphere
2198
b4.Name = "Mesh"
2199
p9 = Instance.new("Part", m)
2200
p9.BrickColor = BrickColor.new("Really black")
2201
p9.Material = Enum.Material.Neon
2202
p9.FormFactor = Enum.FormFactor.Custom
2203
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2204
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)
2205
p9.CanCollide = false
2206
p9.Locked = true
2207
p9.BottomSurface = Enum.SurfaceType.Smooth
2208
p9.TopSurface = Enum.SurfaceType.Smooth
2209
b5 = Instance.new("SpecialMesh", p9)
2210
b5.MeshType = Enum.MeshType.Sphere
2211
b5.Name = "Mesh"
2212
p10 = Instance.new("Part", m)
2213
p10.BrickColor = BrickColor.new("Royal purple")
2214
p10.Material = Enum.Material.Neon
2215
p10.FormFactor = Enum.FormFactor.Custom
2216
p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
2217
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)
2218
p10.CanCollide = false
2219
p10.Locked = true
2220
p10.BottomSurface = Enum.SurfaceType.Smooth
2221
p10.TopSurface = Enum.SurfaceType.Smooth
2222
p11 = Instance.new("Part", m)
2223
p11.BrickColor = BrickColor.new("Really black")
2224
p11.Material = Enum.Material.Metal
2225
p11.Name = "Main"
2226
p11.FormFactor = Enum.FormFactor.Custom
2227
p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
2228
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)
2229
p11.CanCollide = false
2230
p11.Locked = true
2231
p11.BottomSurface = Enum.SurfaceType.Smooth
2232
p11.TopSurface = Enum.SurfaceType.Smooth
2233
p12 = Instance.new("Part", m)
2234
p12.BrickColor = BrickColor.new("Really black")
2235
p12.Material = Enum.Material.Neon
2236
p12.FormFactor = Enum.FormFactor.Custom
2237
p12.Size = Vector3.new(3, 3, 2)
2238
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)
2239
p12.CanCollide = false
2240
p12.Locked = true
2241
p12.BottomSurface = Enum.SurfaceType.Smooth
2242
p12.TopSurface = Enum.SurfaceType.Smooth
2243
b6 = Instance.new("SpecialMesh", p12)
2244
b6.MeshType = Enum.MeshType.Sphere
2245
b6.Name = "Mesh"
2246
p13 = Instance.new("Part", m)
2247
p13.BrickColor = BrickColor.new("Royal purple")
2248
p13.Material = Enum.Material.Neon
2249
p13.FormFactor = Enum.FormFactor.Custom
2250
p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
2251
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)
2252
p13.CanCollide = false
2253
p13.Locked = true
2254
p13.BottomSurface = Enum.SurfaceType.Smooth
2255
p13.TopSurface = Enum.SurfaceType.Smooth
2256
p14 = Instance.new("Part", m)
2257
p14.BrickColor = BrickColor.new("Royal purple")
2258
p14.Material = Enum.Material.Neon
2259
p14.FormFactor = Enum.FormFactor.Custom
2260
p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
2261
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)
2262
p14.CanCollide = false
2263
p14.Locked = true
2264
p14.BottomSurface = Enum.SurfaceType.Smooth
2265
p14.TopSurface = Enum.SurfaceType.Smooth
2266
p15 = Instance.new("Part", m)
2267
p15.BrickColor = BrickColor.new("Royal purple")
2268
p15.Material = Enum.Material.Neon
2269
p15.FormFactor = Enum.FormFactor.Custom
2270
p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
2271
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)
2272
p15.CanCollide = false
2273
p15.Locked = true
2274
p15.BottomSurface = Enum.SurfaceType.Smooth
2275
p15.TopSurface = Enum.SurfaceType.Smooth
2276
p16 = Instance.new("Part", m)
2277
p16.BrickColor = BrickColor.new("Royal purple")
2278
p16.Material = Enum.Material.Neon
2279
p16.FormFactor = Enum.FormFactor.Custom
2280
p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
2281
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)
2282
p16.CanCollide = false
2283
p16.Locked = true
2284
p16.BottomSurface = Enum.SurfaceType.Smooth
2285
p16.TopSurface = Enum.SurfaceType.Smooth
2286
p17 = Instance.new("Part", m)
2287
p17.BrickColor = BrickColor.new("Royal purple")
2288
p17.Material = Enum.Material.Neon
2289
p17.FormFactor = Enum.FormFactor.Custom
2290
p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
2291
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)
2292
p17.CanCollide = false
2293
p17.Locked = true
2294
p17.BottomSurface = Enum.SurfaceType.Smooth
2295
p17.TopSurface = Enum.SurfaceType.Smooth
2296
p18 = Instance.new("Part", m)
2297
p18.BrickColor = BrickColor.new("Royal purple")
2298
p18.Material = Enum.Material.Neon
2299
p18.FormFactor = Enum.FormFactor.Custom
2300
p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
2301
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)
2302
p18.CanCollide = false
2303
p18.Locked = true
2304
p18.BottomSurface = Enum.SurfaceType.Smooth
2305
p18.TopSurface = Enum.SurfaceType.Smooth
2306
p19 = Instance.new("Part", m)
2307
p19.BrickColor = BrickColor.new("Really black")
2308
p19.Material = Enum.Material.Neon
2309
p19.FormFactor = Enum.FormFactor.Custom
2310
p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2311
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)
2312
p19.CanCollide = false
2313
p19.Locked = true
2314
p19.BottomSurface = Enum.SurfaceType.Smooth
2315
p19.TopSurface = Enum.SurfaceType.Smooth
2316
b7 = Instance.new("SpecialMesh", p19)
2317
b7.MeshType = Enum.MeshType.Sphere
2318
b7.Name = "Mesh"
2319
p20 = Instance.new("Part", m)
2320
p20.BrickColor = BrickColor.new("Really black")
2321
p20.Material = Enum.Material.Neon
2322
p20.FormFactor = Enum.FormFactor.Custom
2323
p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2324
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)
2325
p20.CanCollide = false
2326
p20.Locked = true
2327
p20.BottomSurface = Enum.SurfaceType.Smooth
2328
p20.TopSurface = Enum.SurfaceType.Smooth
2329
b8 = Instance.new("SpecialMesh", p20)
2330
b8.MeshType = Enum.MeshType.Sphere
2331
b8.Name = "Mesh"
2332
p21 = Instance.new("Part", m)
2333
p21.BrickColor = BrickColor.new("Royal purple")
2334
p21.Material = Enum.Material.Neon
2335
p21.FormFactor = Enum.FormFactor.Custom
2336
p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
2337
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)
2338
p21.CanCollide = false
2339
p21.Locked = true
2340
p21.BottomSurface = Enum.SurfaceType.Smooth
2341
p21.TopSurface = Enum.SurfaceType.Smooth
2342
p22 = Instance.new("Part", m)
2343
p22.BrickColor = BrickColor.new("Really black")
2344
p22.Material = Enum.Material.Neon
2345
p22.FormFactor = Enum.FormFactor.Custom
2346
p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2347
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)
2348
p22.CanCollide = false
2349
p22.Locked = true
2350
p22.BottomSurface = Enum.SurfaceType.Smooth
2351
p22.TopSurface = Enum.SurfaceType.Smooth
2352
b9 = Instance.new("SpecialMesh", p22)
2353
b9.MeshType = Enum.MeshType.Sphere
2354
b9.Name = "Mesh"
2355
w1 = Instance.new("Weld", p1)
2356
w1.Name = "Part_Weld"
2357
w1.Part0 = p1
2358
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)
2359
w1.Part1 = p2
2360
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)
2361
w2 = Instance.new("Weld", p2)
2362
w2.Name = "Part_Weld"
2363
w2.Part0 = p2
2364
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)
2365
w2.Part1 = p3
2366
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)
2367
w3 = Instance.new("Weld", p3)
2368
w3.Name = "Part_Weld"
2369
w3.Part0 = p3
2370
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)
2371
w3.Part1 = p4
2372
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)
2373
w4 = Instance.new("Weld", p4)
2374
w4.Name = "Part_Weld"
2375
w4.Part0 = p4
2376
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)
2377
w4.Part1 = p5
2378
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)
2379
w5 = Instance.new("Weld", p5)
2380
w5.Name = "Part_Weld"
2381
w5.Part0 = p5
2382
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)
2383
w5.Part1 = p6
2384
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)
2385
w6 = Instance.new("Weld", p6)
2386
w6.Name = "Part_Weld"
2387
w6.Part0 = p6
2388
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)
2389
w6.Part1 = p7
2390
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)
2391
w7 = Instance.new("Weld", p7)
2392
w7.Name = "Part_Weld"
2393
w7.Part0 = p7
2394
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)
2395
w7.Part1 = p8
2396
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)
2397
w8 = Instance.new("Weld", p8)
2398
w8.Name = "Part_Weld"
2399
w8.Part0 = p8
2400
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)
2401
w8.Part1 = p9
2402
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)
2403
w9 = Instance.new("Weld", p9)
2404
w9.Name = "Part_Weld"
2405
w9.Part0 = p9
2406
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)
2407
w9.Part1 = p10
2408
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)
2409
w10 = Instance.new("Weld", p10)
2410
w10.Name = "Main_Weld"
2411
w10.Part0 = p10
2412
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)
2413
w10.Part1 = p11
2414
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)
2415
w11 = Instance.new("Weld", p11)
2416
w11.Name = "Part_Weld"
2417
w11.Part0 = p11
2418
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)
2419
w11.Part1 = p12
2420
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)
2421
w12 = Instance.new("Weld", p12)
2422
w12.Name = "Part_Weld"
2423
w12.Part0 = p12
2424
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)
2425
w12.Part1 = p13
2426
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)
2427
w13 = Instance.new("Weld", p13)
2428
w13.Name = "Part_Weld"
2429
w13.Part0 = p13
2430
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)
2431
w13.Part1 = p14
2432
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)
2433
w14 = Instance.new("Weld", p14)
2434
w14.Name = "Part_Weld"
2435
w14.Part0 = p14
2436
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)
2437
w14.Part1 = p15
2438
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)
2439
w15 = Instance.new("Weld", p15)
2440
w15.Name = "Part_Weld"
2441
w15.Part0 = p15
2442
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)
2443
w15.Part1 = p16
2444
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)
2445
w16 = Instance.new("Weld", p16)
2446
w16.Name = "Part_Weld"
2447
w16.Part0 = p16
2448
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)
2449
w16.Part1 = p17
2450
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)
2451
w17 = Instance.new("Weld", p17)
2452
w17.Name = "Part_Weld"
2453
w17.Part0 = p17
2454
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)
2455
w17.Part1 = p18
2456
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)
2457
w18 = Instance.new("Weld", p18)
2458
w18.Name = "Part_Weld"
2459
w18.Part0 = p18
2460
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)
2461
w18.Part1 = p19
2462
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)
2463
w19 = Instance.new("Weld", p19)
2464
w19.Name = "Part_Weld"
2465
w19.Part0 = p19
2466
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)
2467
w19.Part1 = p20
2468
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)
2469
w20 = Instance.new("Weld", p20)
2470
w20.Name = "Part_Weld"
2471
w20.Part0 = p20
2472
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)
2473
w20.Part1 = p21
2474
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)
2475
w21 = Instance.new("Weld", p21)
2476
w21.Name = "Part_Weld"
2477
w21.Part0 = p21
2478
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)
2479
w21.Part1 = p22
2480
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)
2481
w22 = Instance.new("Weld", p22)
2482
w22.Name = "Wedge_Weld"
2483
w22.Part0 = p22
2484
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)
2485
m.Parent = torso
2486
m:MakeJoints()
2487
----------------------------------------------------
2488
local cor5 = Instance.new("Part", torso.Torso)
2489
cor5.Name = "Thingy"
2490
cor5.Locked = true
2491
cor5.BottomSurface = 0
2492
cor5.CanCollide = false
2493
cor5.Size = Vector3.new(2, 1, 1)
2494
cor5.Transparency = 1
2495
cor5.TopSurface = 0
2496
corw2 = Instance.new("Weld", cor5)
2497
corw2.Part0 = torso
2498
corw2.Part1 = cor5
2499
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2500
corw2.C1 = CFrame.new(0, 0, 0)
2501
weld2 = Instance.new("Weld", torso.Torso)
2502
weld2.Part0 = cor5
2503
weld2.Part1 = p11
2504
weld2.C0 = CFrame.new(0, 0, 0)
2505
----------------------------------------------------
2506
local m = Instance.new("Model")
2507
m.Name = "RightLeg"
2508
p1 = Instance.new("Part", m)
2509
p1.BrickColor = BrickColor.new("Really black")
2510
p1.Material = Enum.Material.Neon
2511
p1.FormFactor = Enum.FormFactor.Custom
2512
p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2513
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)
2514
p1.CanCollide = false
2515
p1.Locked = true
2516
p1.BottomSurface = Enum.SurfaceType.Smooth
2517
p1.TopSurface = Enum.SurfaceType.Smooth
2518
b1 = Instance.new("SpecialMesh", p1)
2519
b1.MeshType = Enum.MeshType.Sphere
2520
b1.Name = "Mesh"
2521
p2 = Instance.new("Part", m)
2522
p2.BrickColor = BrickColor.new("Really black")
2523
p2.Material = Enum.Material.Neon
2524
p2.FormFactor = Enum.FormFactor.Custom
2525
p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2526
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)
2527
p2.CanCollide = false
2528
p2.Locked = true
2529
p2.BottomSurface = Enum.SurfaceType.Smooth
2530
p2.TopSurface = Enum.SurfaceType.Smooth
2531
b2 = Instance.new("SpecialMesh", p2)
2532
b2.MeshType = Enum.MeshType.Sphere
2533
b2.Name = "Mesh"
2534
p3 = Instance.new("Part", m)
2535
p3.BrickColor = BrickColor.new("Royal purple")
2536
p3.Material = Enum.Material.Neon
2537
p3.FormFactor = Enum.FormFactor.Custom
2538
p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
2539
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)
2540
p3.CanCollide = false
2541
p3.Locked = true
2542
p3.BottomSurface = Enum.SurfaceType.Smooth
2543
p3.TopSurface = Enum.SurfaceType.Smooth
2544
p4 = Instance.new("Part", m)
2545
p4.BrickColor = BrickColor.new("Really black")
2546
p4.Material = Enum.Material.Neon
2547
p4.FormFactor = Enum.FormFactor.Custom
2548
p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2549
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)
2550
p4.CanCollide = false
2551
p4.Locked = true
2552
p4.BottomSurface = Enum.SurfaceType.Smooth
2553
p4.TopSurface = Enum.SurfaceType.Smooth
2554
b3 = Instance.new("SpecialMesh", p4)
2555
b3.MeshType = Enum.MeshType.Sphere
2556
b3.Name = "Mesh"
2557
p5 = Instance.new("Part", m)
2558
p5.BrickColor = BrickColor.new("Royal purple")
2559
p5.Material = Enum.Material.Neon
2560
p5.FormFactor = Enum.FormFactor.Custom
2561
p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
2562
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)
2563
p5.CanCollide = false
2564
p5.Locked = true
2565
p5.BottomSurface = Enum.SurfaceType.Smooth
2566
p5.TopSurface = Enum.SurfaceType.Smooth
2567
p6 = Instance.new("Part", m)
2568
p6.BrickColor = BrickColor.new("Royal purple")
2569
p6.Material = Enum.Material.Neon
2570
p6.FormFactor = Enum.FormFactor.Custom
2571
p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
2572
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)
2573
p6.CanCollide = false
2574
p6.Locked = true
2575
p6.BottomSurface = Enum.SurfaceType.Smooth
2576
p6.TopSurface = Enum.SurfaceType.Smooth
2577
p7 = Instance.new("Part", m)
2578
p7.BrickColor = BrickColor.new("Really black")
2579
p7.Material = Enum.Material.Metal
2580
p7.Name = "Main"
2581
p7.FormFactor = Enum.FormFactor.Custom
2582
p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
2583
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)
2584
p7.CanCollide = false
2585
p7.Locked = true
2586
p7.BottomSurface = Enum.SurfaceType.Smooth
2587
p7.TopSurface = Enum.SurfaceType.Smooth
2588
p8 = Instance.new("Part", m)
2589
p8.BrickColor = BrickColor.new("Royal purple")
2590
p8.Material = Enum.Material.Neon
2591
p8.FormFactor = Enum.FormFactor.Custom
2592
p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
2593
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)
2594
p8.CanCollide = false
2595
p8.Locked = true
2596
p8.BottomSurface = Enum.SurfaceType.Smooth
2597
p8.TopSurface = Enum.SurfaceType.Smooth
2598
p9 = Instance.new("WedgePart", m)
2599
p9.BrickColor = BrickColor.new("Royal purple")
2600
p9.Material = Enum.Material.Neon
2601
p9.Name = "Wedge"
2602
p9.FormFactor = Enum.FormFactor.Custom
2603
p9.Size = Vector3.new(1, 1.19999981, 4)
2604
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)
2605
p9.CanCollide = false
2606
p9.Locked = true
2607
p9.TopSurface = Enum.SurfaceType.Smooth
2608
b4 = Instance.new("SpecialMesh", p9)
2609
b4.MeshType = Enum.MeshType.Wedge
2610
b4.Name = "Mesh"
2611
b4.Scale = Vector3.new(0.600000024, 1, 1)
2612
p10 = Instance.new("Part", m)
2613
p10.BrickColor = BrickColor.new("Really black")
2614
p10.Material = Enum.Material.Neon
2615
p10.FormFactor = Enum.FormFactor.Custom
2616
p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2617
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)
2618
p10.CanCollide = false
2619
p10.Locked = true
2620
p10.BottomSurface = Enum.SurfaceType.Smooth
2621
p10.TopSurface = Enum.SurfaceType.Smooth
2622
b5 = Instance.new("SpecialMesh", p10)
2623
b5.MeshType = Enum.MeshType.Sphere
2624
b5.Name = "Mesh"
2625
p11 = Instance.new("Part", m)
2626
p11.BrickColor = BrickColor.new("Really black")
2627
p11.Material = Enum.Material.Neon
2628
p11.FormFactor = Enum.FormFactor.Custom
2629
p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2630
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)
2631
p11.CanCollide = false
2632
p11.Locked = true
2633
p11.BottomSurface = Enum.SurfaceType.Smooth
2634
p11.TopSurface = Enum.SurfaceType.Smooth
2635
b6 = Instance.new("SpecialMesh", p11)
2636
b6.MeshType = Enum.MeshType.Sphere
2637
b6.Name = "Mesh"
2638
p12 = Instance.new("Part", m)
2639
p12.BrickColor = BrickColor.new("Royal purple")
2640
p12.Material = Enum.Material.Neon
2641
p12.FormFactor = Enum.FormFactor.Custom
2642
p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
2643
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)
2644
p12.CanCollide = false
2645
p12.Locked = true
2646
p12.BottomSurface = Enum.SurfaceType.Smooth
2647
p12.TopSurface = Enum.SurfaceType.Smooth
2648
p13 = Instance.new("Part", m)
2649
p13.BrickColor = BrickColor.new("Really black")
2650
p13.Material = Enum.Material.Neon
2651
p13.FormFactor = Enum.FormFactor.Custom
2652
p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2653
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)
2654
p13.CanCollide = false
2655
p13.Locked = true
2656
p13.BottomSurface = Enum.SurfaceType.Smooth
2657
p13.TopSurface = Enum.SurfaceType.Smooth
2658
b7 = Instance.new("SpecialMesh", p13)
2659
b7.MeshType = Enum.MeshType.Sphere
2660
b7.Name = "Mesh"
2661
p14 = Instance.new("WedgePart", m)
2662
p14.BrickColor = BrickColor.new("Royal purple")
2663
p14.Material = Enum.Material.Neon
2664
p14.Name = "Wedge"
2665
p14.FormFactor = Enum.FormFactor.Custom
2666
p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
2667
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)
2668
p14.CanCollide = false
2669
p14.Locked = true
2670
p14.TopSurface = Enum.SurfaceType.Smooth
2671
b8 = Instance.new("SpecialMesh", p14)
2672
b8.MeshType = Enum.MeshType.Wedge
2673
b8.Name = "Mesh"
2674
b8.Scale = Vector3.new(0.200000003, 1, 1)
2675
p15 = Instance.new("WedgePart", m)
2676
p15.BrickColor = BrickColor.new("Royal purple")
2677
p15.Material = Enum.Material.Neon
2678
p15.Name = "Wedge"
2679
p15.FormFactor = Enum.FormFactor.Custom
2680
p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
2681
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)
2682
p15.CanCollide = false
2683
p15.Locked = true
2684
p15.TopSurface = Enum.SurfaceType.Smooth
2685
b9 = Instance.new("SpecialMesh", p15)
2686
b9.MeshType = Enum.MeshType.Wedge
2687
b9.Name = "Mesh"
2688
b9.Scale = Vector3.new(0.200000003, 1, 1)
2689
p16 = Instance.new("WedgePart", m)
2690
p16.BrickColor = BrickColor.new("Royal purple")
2691
p16.Material = Enum.Material.Neon
2692
p16.Name = "Wedge"
2693
p16.FormFactor = Enum.FormFactor.Custom
2694
p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
2695
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)
2696
p16.CanCollide = false
2697
p16.Locked = true
2698
p16.TopSurface = Enum.SurfaceType.Smooth
2699
b10 = Instance.new("SpecialMesh", p16)
2700
b10.MeshType = Enum.MeshType.Wedge
2701
b10.Name = "Mesh"
2702
b10.Scale = Vector3.new(0.200000003, 1, 1)
2703
w1 = Instance.new("Weld", p1)
2704
w1.Name = "Part_Weld"
2705
w1.Part0 = p1
2706
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)
2707
w1.Part1 = p2
2708
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)
2709
w2 = Instance.new("Weld", p2)
2710
w2.Name = "Part_Weld"
2711
w2.Part0 = p2
2712
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)
2713
w2.Part1 = p3
2714
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)
2715
w3 = Instance.new("Weld", p3)
2716
w3.Name = "Part_Weld"
2717
w3.Part0 = p3
2718
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)
2719
w3.Part1 = p4
2720
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)
2721
w4 = Instance.new("Weld", p4)
2722
w4.Name = "Part_Weld"
2723
w4.Part0 = p4
2724
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)
2725
w4.Part1 = p5
2726
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)
2727
w5 = Instance.new("Weld", p5)
2728
w5.Name = "Part_Weld"
2729
w5.Part0 = p5
2730
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)
2731
w5.Part1 = p6
2732
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)
2733
w6 = Instance.new("Weld", p6)
2734
w6.Name = "Part_Weld"
2735
w6.Part0 = p6
2736
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)
2737
w6.Part1 = p7
2738
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)
2739
w7 = Instance.new("Weld", p7)
2740
w7.Name = "Part_Weld"
2741
w7.Part0 = p7
2742
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)
2743
w7.Part1 = p8
2744
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)
2745
w8 = Instance.new("Weld", p8)
2746
w8.Name = "Wedge_Weld"
2747
w8.Part0 = p8
2748
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)
2749
w8.Part1 = p9
2750
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)
2751
w9 = Instance.new("Weld", p9)
2752
w9.Name = "Part_Weld"
2753
w9.Part0 = p9
2754
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)
2755
w9.Part1 = p10
2756
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)
2757
w10 = Instance.new("Weld", p10)
2758
w10.Name = "Part_Weld"
2759
w10.Part0 = p10
2760
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)
2761
w10.Part1 = p11
2762
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)
2763
w11 = Instance.new("Weld", p11)
2764
w11.Name = "Part_Weld"
2765
w11.Part0 = p11
2766
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)
2767
w11.Part1 = p12
2768
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)
2769
w12 = Instance.new("Weld", p12)
2770
w12.Name = "Part_Weld"
2771
w12.Part0 = p12
2772
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)
2773
w12.Part1 = p13
2774
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)
2775
w13 = Instance.new("Weld", p13)
2776
w13.Name = "Wedge_Weld"
2777
w13.Part0 = p13
2778
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)
2779
w13.Part1 = p14
2780
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)
2781
w14 = Instance.new("Weld", p14)
2782
w14.Name = "Wedge_Weld"
2783
w14.Part0 = p14
2784
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)
2785
w14.Part1 = p15
2786
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)
2787
w15 = Instance.new("Weld", p15)
2788
w15.Name = "Wedge_Weld"
2789
w15.Part0 = p15
2790
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)
2791
w15.Part1 = p16
2792
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)
2793
m.Parent = rleg
2794
m:MakeJoints()
2795
----------------------------------------------------
2796
local cor6 = Instance.new("Part", rleg.RightLeg)
2797
cor6.Name = "Thingy"
2798
cor6.Locked = true
2799
cor6.BottomSurface = 0
2800
cor6.CanCollide = false
2801
cor6.Size = Vector3.new(2, 1, 1)
2802
cor6.Transparency = 1
2803
cor6.TopSurface = 0
2804
corw2 = Instance.new("Weld", cor6)
2805
corw2.Part0 = rleg
2806
corw2.Part1 = cor6
2807
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
2808
corw2.C1 = CFrame.new(0, 0, 0)
2809
weld2 = Instance.new("Weld", rleg.RightLeg)
2810
weld2.Part0 = cor6
2811
weld2.Part1 = p7
2812
weld2.C0 = CFrame.new(0, 0, 0)
2813
----------------------------------------------------
2814
local m = Instance.new("Model")
2815
m.Name = "LeftLeg"
2816
p1 = Instance.new("WedgePart", m)
2817
p1.BrickColor = BrickColor.new("Royal purple")
2818
p1.Material = Enum.Material.Neon
2819
p1.Name = "Wedge"
2820
p1.FormFactor = Enum.FormFactor.Custom
2821
p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
2822
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)
2823
p1.CanCollide = false
2824
p1.Locked = true
2825
p1.TopSurface = Enum.SurfaceType.Smooth
2826
b1 = Instance.new("SpecialMesh", p1)
2827
b1.MeshType = Enum.MeshType.Wedge
2828
b1.Name = "Mesh"
2829
b1.Scale = Vector3.new(0.200000003, 1, 1)
2830
p2 = Instance.new("WedgePart", m)
2831
p2.BrickColor = BrickColor.new("Royal purple")
2832
p2.Material = Enum.Material.Neon
2833
p2.Name = "Wedge"
2834
p2.FormFactor = Enum.FormFactor.Custom
2835
p2.Size = Vector3.new(1, 1.19999981, 4)
2836
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)
2837
p2.CanCollide = false
2838
p2.Locked = true
2839
p2.TopSurface = Enum.SurfaceType.Smooth
2840
b2 = Instance.new("SpecialMesh", p2)
2841
b2.MeshType = Enum.MeshType.Wedge
2842
b2.Name = "Mesh"
2843
b2.Scale = Vector3.new(0.600000024, 1, 1)
2844
p3 = Instance.new("Part", m)
2845
p3.BrickColor = BrickColor.new("Really black")
2846
p3.Material = Enum.Material.Metal
2847
p3.Name = "Main"
2848
p3.FormFactor = Enum.FormFactor.Custom
2849
p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
2850
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)
2851
p3.CanCollide = false
2852
p3.Locked = true
2853
p3.BottomSurface = Enum.SurfaceType.Smooth
2854
p3.TopSurface = Enum.SurfaceType.Smooth
2855
p4 = Instance.new("Part", m)
2856
p4.BrickColor = BrickColor.new("Really black")
2857
p4.Material = Enum.Material.Neon
2858
p4.FormFactor = Enum.FormFactor.Custom
2859
p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2860
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)
2861
p4.CanCollide = false
2862
p4.Locked = true
2863
p4.BottomSurface = Enum.SurfaceType.Smooth
2864
p4.TopSurface = Enum.SurfaceType.Smooth
2865
b3 = Instance.new("SpecialMesh", p4)
2866
b3.MeshType = Enum.MeshType.Sphere
2867
b3.Name = "Mesh"
2868
p5 = Instance.new("WedgePart", m)
2869
p5.BrickColor = BrickColor.new("Royal purple")
2870
p5.Material = Enum.Material.Neon
2871
p5.Name = "Wedge"
2872
p5.FormFactor = Enum.FormFactor.Custom
2873
p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
2874
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)
2875
p5.CanCollide = false
2876
p5.Locked = true
2877
p5.TopSurface = Enum.SurfaceType.Smooth
2878
b4 = Instance.new("SpecialMesh", p5)
2879
b4.MeshType = Enum.MeshType.Wedge
2880
b4.Name = "Mesh"
2881
b4.Scale = Vector3.new(0.200000003, 1, 1)
2882
p6 = Instance.new("Part", m)
2883
p6.BrickColor = BrickColor.new("Royal purple")
2884
p6.Material = Enum.Material.Neon
2885
p6.FormFactor = Enum.FormFactor.Custom
2886
p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
2887
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)
2888
p6.CanCollide = false
2889
p6.Locked = true
2890
p6.BottomSurface = Enum.SurfaceType.Smooth
2891
p6.TopSurface = Enum.SurfaceType.Smooth
2892
p7 = Instance.new("Part", m)
2893
p7.BrickColor = BrickColor.new("Royal purple")
2894
p7.Material = Enum.Material.Neon
2895
p7.FormFactor = Enum.FormFactor.Custom
2896
p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
2897
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)
2898
p7.CanCollide = false
2899
p7.Locked = true
2900
p7.BottomSurface = Enum.SurfaceType.Smooth
2901
p7.TopSurface = Enum.SurfaceType.Smooth
2902
p8 = Instance.new("Part", m)
2903
p8.BrickColor = BrickColor.new("Really black")
2904
p8.Material = Enum.Material.Neon
2905
p8.FormFactor = Enum.FormFactor.Custom
2906
p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2907
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)
2908
p8.CanCollide = false
2909
p8.Locked = true
2910
p8.BottomSurface = Enum.SurfaceType.Smooth
2911
p8.TopSurface = Enum.SurfaceType.Smooth
2912
b5 = Instance.new("SpecialMesh", p8)
2913
b5.MeshType = Enum.MeshType.Sphere
2914
b5.Name = "Mesh"
2915
p9 = Instance.new("Part", m)
2916
p9.BrickColor = BrickColor.new("Really black")
2917
p9.Material = Enum.Material.Neon
2918
p9.FormFactor = Enum.FormFactor.Custom
2919
p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2920
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)
2921
p9.CanCollide = false
2922
p9.Locked = true
2923
p9.BottomSurface = Enum.SurfaceType.Smooth
2924
p9.TopSurface = Enum.SurfaceType.Smooth
2925
b6 = Instance.new("SpecialMesh", p9)
2926
b6.MeshType = Enum.MeshType.Sphere
2927
b6.Name = "Mesh"
2928
p10 = Instance.new("Part", m)
2929
p10.BrickColor = BrickColor.new("Royal purple")
2930
p10.Material = Enum.Material.Neon
2931
p10.FormFactor = Enum.FormFactor.Custom
2932
p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
2933
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)
2934
p10.CanCollide = false
2935
p10.Locked = true
2936
p10.BottomSurface = Enum.SurfaceType.Smooth
2937
p10.TopSurface = Enum.SurfaceType.Smooth
2938
p11 = Instance.new("Part", m)
2939
p11.BrickColor = BrickColor.new("Royal purple")
2940
p11.Material = Enum.Material.Neon
2941
p11.FormFactor = Enum.FormFactor.Custom
2942
p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
2943
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)
2944
p11.CanCollide = false
2945
p11.Locked = true
2946
p11.BottomSurface = Enum.SurfaceType.Smooth
2947
p11.TopSurface = Enum.SurfaceType.Smooth
2948
p12 = Instance.new("WedgePart", m)
2949
p12.BrickColor = BrickColor.new("Royal purple")
2950
p12.Material = Enum.Material.Neon
2951
p12.Name = "Wedge"
2952
p12.FormFactor = Enum.FormFactor.Custom
2953
p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
2954
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)
2955
p12.CanCollide = false
2956
p12.Locked = true
2957
p12.TopSurface = Enum.SurfaceType.Smooth
2958
b7 = Instance.new("SpecialMesh", p12)
2959
b7.MeshType = Enum.MeshType.Wedge
2960
b7.Name = "Mesh"
2961
b7.Scale = Vector3.new(0.200000003, 1, 1)
2962
p13 = Instance.new("Part", m)
2963
p13.BrickColor = BrickColor.new("Really black")
2964
p13.Material = Enum.Material.Neon
2965
p13.FormFactor = Enum.FormFactor.Custom
2966
p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2967
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)
2968
p13.CanCollide = false
2969
p13.Locked = true
2970
p13.BottomSurface = Enum.SurfaceType.Smooth
2971
p13.TopSurface = Enum.SurfaceType.Smooth
2972
b8 = Instance.new("SpecialMesh", p13)
2973
b8.MeshType = Enum.MeshType.Sphere
2974
b8.Name = "Mesh"
2975
p14 = Instance.new("Part", m)
2976
p14.BrickColor = BrickColor.new("Really black")
2977
p14.Material = Enum.Material.Neon
2978
p14.FormFactor = Enum.FormFactor.Custom
2979
p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
2980
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)
2981
p14.CanCollide = false
2982
p14.Locked = true
2983
p14.BottomSurface = Enum.SurfaceType.Smooth
2984
p14.TopSurface = Enum.SurfaceType.Smooth
2985
b9 = Instance.new("SpecialMesh", p14)
2986
b9.MeshType = Enum.MeshType.Sphere
2987
b9.Name = "Mesh"
2988
w1 = Instance.new("Weld", p1)
2989
w1.Name = "Wedge_Weld"
2990
w1.Part0 = p1
2991
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)
2992
w1.Part1 = p2
2993
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)
2994
w2 = Instance.new("Weld", p2)
2995
w2.Name = "Part_Weld"
2996
w2.Part0 = p2
2997
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)
2998
w2.Part1 = p3
2999
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)
3000
w3 = Instance.new("Weld", p3)
3001
w3.Name = "Part_Weld"
3002
w3.Part0 = p3
3003
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)
3004
w3.Part1 = p4
3005
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)
3006
w4 = Instance.new("Weld", p4)
3007
w4.Name = "Wedge_Weld"
3008
w4.Part0 = p4
3009
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)
3010
w4.Part1 = p5
3011
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)
3012
w5 = Instance.new("Weld", p5)
3013
w5.Name = "Part_Weld"
3014
w5.Part0 = p5
3015
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)
3016
w5.Part1 = p6
3017
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)
3018
w6 = Instance.new("Weld", p6)
3019
w6.Name = "Part_Weld"
3020
w6.Part0 = p6
3021
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)
3022
w6.Part1 = p7
3023
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)
3024
w7 = Instance.new("Weld", p7)
3025
w7.Name = "Part_Weld"
3026
w7.Part0 = p7
3027
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)
3028
w7.Part1 = p8
3029
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)
3030
w8 = Instance.new("Weld", p8)
3031
w8.Name = "Part_Weld"
3032
w8.Part0 = p8
3033
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)
3034
w8.Part1 = p9
3035
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)
3036
w9 = Instance.new("Weld", p9)
3037
w9.Name = "Part_Weld"
3038
w9.Part0 = p9
3039
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)
3040
w9.Part1 = p10
3041
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)
3042
w10 = Instance.new("Weld", p10)
3043
w10.Name = "Part_Weld"
3044
w10.Part0 = p10
3045
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)
3046
w10.Part1 = p11
3047
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)
3048
w11 = Instance.new("Weld", p11)
3049
w11.Name = "Wedge_Weld"
3050
w11.Part0 = p11
3051
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)
3052
w11.Part1 = p12
3053
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)
3054
w12 = Instance.new("Weld", p12)
3055
w12.Name = "Part_Weld"
3056
w12.Part0 = p12
3057
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)
3058
w12.Part1 = p13
3059
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)
3060
w13 = Instance.new("Weld", p13)
3061
w13.Name = "Part_Weld"
3062
w13.Part0 = p13
3063
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)
3064
w13.Part1 = p14
3065
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)
3066
w14 = Instance.new("Weld", p14)
3067
w14.Name = "Wedge_Weld"
3068
w14.Part0 = p14
3069
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)
3070
m.Parent = lleg
3071
m:MakeJoints()
3072
----------------------------------------------------
3073
local cor7 = Instance.new("Part", lleg.LeftLeg)
3074
cor7.Name = "Thingy"
3075
cor7.Locked = true
3076
cor7.BottomSurface = 0
3077
cor7.CanCollide = false
3078
cor7.Size = Vector3.new(2, 1, 1)
3079
cor7.Transparency = 1
3080
cor7.TopSurface = 0
3081
corw2 = Instance.new("Weld", cor7)
3082
corw2.Part0 = lleg
3083
corw2.Part1 = cor7
3084
corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
3085
corw2.C1 = CFrame.new(0, 0, 0)
3086
weld2 = Instance.new("Weld", lleg.LeftLeg)
3087
weld2.Part0 = cor7
3088
weld2.Part1 = p3
3089
weld2.C0 = CFrame.new(0, 0, 0)
3090
----------------------------------------------------
3091
function weld5(part0, part1, c0, c1)
3092
    weeld=Instance.new("Weld", part0)
3093
    weeld.Part0=part0
3094
    weeld.Part1=part1
3095
    weeld.C0=c0
3096
    weeld.C1=c1
3097
    return weeld
3098
end
3099
----------------------------------------------------
3100
function newRay(start,face,range,wat)
3101
        local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
3102
        hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
3103
        return rey,hit,pos
3104
end
3105
----------------------------------------------------
3106
mod5 = Instance.new("Model",char)
3107
3108
function FindNearestTorso(Position,Distance,SinglePlayer)
3109
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
3110
        local List = {}
3111
        for i,v in pairs(workspace:GetChildren())do
3112
            if v:IsA("Model")then
3113
                if v:findFirstChild("Torso")then
3114
                    if v ~= char then
3115
                        if(v.Torso.Position -Position).magnitude <= Distance then
3116
                            table.insert(List,v)
3117
                        end 
3118
                    end 
3119
                end 
3120
            end 
3121
        end
3122
    return List
3123
end
3124
3125
function Landing()
3126
    part=Instance.new('Part',mod5)
3127
    part.Anchored=true
3128
    part.CanCollide=false
3129
    part.FormFactor='Custom'
3130
    part.Size=Vector3.new(.2,.2,.2)
3131
    part.CFrame=root.CFrame*CFrame.new(0,-2,0)
3132
    part.Transparency=.7
3133
    part.BrickColor=BrickColor.new('Really black')
3134
        part2=part:clone()
3135
        part2.Parent = mod5
3136
        part2.BrickColor=BrickColor.new('Royal purple')
3137
    mesh=Instance.new('SpecialMesh',part)
3138
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
3139
    mesh.Scale=Vector3.new(10,5,10)
3140
        mesh2=mesh:clone()
3141
        mesh2.Parent=part2
3142
        mesh2.Scale=Vector3.new(12, 6, 12)
3143
3144
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
3145
        if v:FindFirstChild('Humanoid') then
3146
            v.Humanoid:TakeDamage(math.random(20,30))
3147
            v.Humanoid.PlatformStand = true
3148
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
3149
        end
3150
    end
3151
3152
    coroutine.resume(coroutine.create(function() 
3153
        for i=0,3.8,0.05 do
3154
            wait()
3155
            part.CFrame=part.CFrame
3156
            part.Transparency=i
3157
                        part2.CFrame=part2.CFrame
3158
                        part2.Transparency=i
3159
            mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
3160
                        mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
3161
            end
3162
        part.Parent = nil
3163
    end))
3164
end
3165
----------------------------------------------------
3166
mod4 = Instance.new("Model",char)
3167
3168
ptez = {0.7, 0.8, 0.9, 1}
3169
3170
function FindNearestTorso(Position,Distance,SinglePlayer)
3171
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
3172
        local List = {}
3173
        for i,v in pairs(workspace:GetChildren())do
3174
            if v:IsA("Model")then
3175
                if v:findFirstChild("Torso")then
3176
                    if v ~= char then
3177
                        if(v.Torso.Position -Position).magnitude <= Distance then
3178
                            table.insert(List,v)
3179
                        end 
3180
                    end 
3181
                end 
3182
            end 
3183
        end
3184
    return List
3185
end
3186
3187
function GroundPound()
3188
    part=Instance.new('Part',mod4)
3189
    part.Anchored=true
3190
    part.CanCollide=false
3191
    part.FormFactor='Custom'
3192
    part.Size=Vector3.new(.2,.2,.2)
3193
    part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
3194
    part.Transparency=.7
3195
    part.BrickColor=BrickColor.new('Really black')
3196
    mesh=Instance.new('SpecialMesh',part)
3197
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
3198
    mesh.Scale=Vector3.new(3,3,3)
3199
    part2=Instance.new('Part',mod4)
3200
    part2.Anchored=true
3201
    part2.CanCollide=false
3202
    part2.FormFactor='Custom'
3203
    part2.Size=Vector3.new(.2,.2,.2)
3204
    part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
3205
    part2.Transparency=.7
3206
    part2.BrickColor=BrickColor.new('Royal purple')
3207
    mesh2=Instance.new('SpecialMesh',part2)
3208
    mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
3209
    mesh2.Scale=Vector3.new(3,1.5,3)
3210
    x = Instance.new("Sound",char)
3211
    x.SoundId = "http://www.roblox.com/asset/?id=157878578"
3212
    x.Pitch = ptez[math.random(1,#ptez)]
3213
    x.Volume = 1
3214
    wait(.1)
3215
    x:Play()
3216
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
3217
        if v:FindFirstChild('Humanoid') then
3218
            v.Humanoid:TakeDamage(math.random(8,15))
3219
        end
3220
    end
3221
    coroutine.resume(coroutine.create(function() 
3222
        for i=0,0.62,0.13 do
3223
            wait()
3224
            part.CFrame=part.CFrame
3225
            part.Transparency=i
3226
            mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
3227
            part2.CFrame=part2.CFrame
3228
            part2.Transparency=i
3229
            mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
3230
            end
3231
        part.Parent=nil
3232
        part2.Parent=nil
3233
        x:Destroy()
3234
    end))
3235
end
3236
----------------------------------------------------
3237
mod=Instance.new('Model',char)
3238
3239
function charge()
3240
    hed.Velocity=hed.CFrame.lookVector*200
3241
    part=Instance.new('Part',mod)
3242
    part.Anchored=true
3243
    part.CanCollide=false
3244
    part.FormFactor='Custom'
3245
    part.Size=Vector3.new(.2,.2,.2)
3246
    part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
3247
    part.Transparency=.7
3248
    part.BrickColor=BrickColor.new('Black')
3249
    mesh=Instance.new('SpecialMesh',part)
3250
    mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
3251
    mesh.Scale=Vector3.new(10,5,10)
3252
    part2=part:clone()
3253
    part2.Parent=mod
3254
    part2.BrickColor=BrickColor.new('Royal purple')
3255
    mesh2=mesh:clone()
3256
    mesh2.Parent=part2
3257
    mesh2.Scale=Vector3.new(20,10,20)
3258
    part3=part2:clone()
3259
    part3.Parent = mod
3260
    part3.BrickColor=BrickColor.new('Really black')
3261
    mesh3=mesh2:clone()
3262
    mesh2.Parent=part3
3263
    mesh3.Scale=Vector3.new(30,15,30)
3264
    coroutine.resume(coroutine.create(function() 
3265
        for i=0,1,0.1 do
3266
            wait()
3267
            part.CFrame=part.CFrame
3268
            part.Transparency=i
3269
            mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
3270
            part2.CFrame=part2.CFrame
3271
            part2.Transparency=i
3272
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
3273
            part3.CFrame=part3.CFrame
3274
            part3.Transparency=i
3275
            mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
3276
            end
3277
        part.Parent=nil
3278
        part2.Parent=nil
3279
        part3.Parent = nil
3280
    end))
3281
end
3282
----------------------------------------------------
3283
function FindNearestTorso(Position,Distance,SinglePlayer)
3284
    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
3285
        local List = {}
3286
        for i,v in pairs(workspace:GetChildren())do
3287
            if v:IsA("Model")then
3288
                if v:findFirstChild("Torso")then
3289
                    if v ~= char then
3290
                        if(v.Torso.Position -Position).magnitude <= Distance then
3291
                            table.insert(List,v)
3292
                        end 
3293
                    end 
3294
                end 
3295
            end 
3296
        end
3297
    return List
3298
end
3299
3300
mod3 = Instance.new("Model",rleg)
3301
3302
function Stomp()
3303
    part=Instance.new('Part',mod3)
3304
    part.Anchored=true
3305
    part.CanCollide=false
3306
    part.FormFactor='Custom'
3307
    part.Size=Vector3.new(.2,.2,.2)
3308
    part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
3309
    part.Transparency=.7
3310
    part.BrickColor=BrickColor.new('Bright green')
3311
    mesh=Instance.new('SpecialMesh',part)
3312
    mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
3313
    mesh.Scale=Vector3.new(25,25,25)
3314
    part2=part:clone()
3315
    part2.Parent=mod3
3316
    part2.BrickColor=BrickColor.new('Bright green')
3317
    mesh2=mesh:clone()
3318
    mesh2.Parent=part2
3319
    mesh2.Scale=Vector3.new(15,15,15)
3320
    part3=part:clone()
3321
    part3.Parent=mod3
3322
    part3.TopSurface=0
3323
    part3.BottomSurface=0
3324
    part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
3325
    mesh3=Instance.new('SpecialMesh',part3)
3326
    mesh3.MeshType = 3
3327
    mesh3.Scale=Vector3.new(12,12,12)
3328
    for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
3329
        if v:FindFirstChild('Humanoid') then
3330
            v.Humanoid:TakeDamage(math.random(20,60))
3331
            v.Humanoid.PlatformStand = true
3332
            v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
3333
        end
3334
    end 
3335
    coroutine.resume(coroutine.create(function() 
3336
        for i=0,3.8,0.05 do
3337
            wait()
3338
            part.CFrame=part.CFrame
3339
            part.Transparency=i
3340
            mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
3341
            part2.CFrame=part2.CFrame
3342
            part2.Transparency=i
3343
            mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
3344
            part3.CFrame=part3.CFrame
3345
            part3.Transparency=i
3346
            mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
3347
        end
3348
    end))
3349
end
3350
----------------------------------------------------
3351
3352
local acos = math.acos
3353
local sqrt = math.sqrt
3354
local Vec3 = Vector3.new
3355
local fromAxisAngle = CFrame.fromAxisAngle
3356
3357
local function toAxisAngle(CFr)
3358
        local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
3359
        local Angle = math.acos((R00+R11+R22-1)/2)
3360
        local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
3361
        A = A == 0 and 0.00001 or A
3362
        local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
3363
        B = B == 0 and 0.00001 or B
3364
        local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
3365
        C = C == 0 and 0.00001 or C
3366
        local x = (R21-R12)/sqrt(A)
3367
        local y = (R02-R20)/sqrt(B)
3368
        local z = (R10-R01)/sqrt(C)
3369
        return Vec3(x,y,z),Angle
3370
end
3371
3372
function ApplyTrig(Num,Func)
3373
        local Min,Max = Func(0),Func(1)
3374
        local i = Func(Num)
3375
        return (i-Min)/(Max-Min)
3376
        --[[if Func == "sin" then
3377
                return (math.sin((1-Num)*math.pi)+1)/2
3378
        elseif Func == "cos" then
3379
                return (math.cos((1-Num)*math.pi)+1)/2
3380
        end]]
3381
end
3382
3383
function LerpCFrame(CFrame1,CFrame2,Num)
3384
        local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
3385
        return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
3386
end
3387
3388
function Crater(Torso,Radius)
3389
        Spawn(function()
3390
        local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
3391
        local Ignore = {}
3392
        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
3393
                if v.Character ~= nil then
3394
                        Ignore[#Ignore+1] = v.Character
3395
                end
3396
        end
3397
        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
3398
        if Hit == nil then return end
3399
        local Parts = {}
3400
        for i = 1,360,10 do
3401
                local P = Instance.new("Part",Torso.Parent)
3402
                P.Anchored = true
3403
                P.FormFactor = "Custom"
3404
                P.BrickColor = Hit.BrickColor
3405
                P.Material = Hit.Material
3406
                P.TopSurface = "Smooth"
3407
                P.BottomSurface = "Smooth"
3408
                P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
3409
                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)))
3410
                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}
3411
                if math.random(0,5) == 0 then -- rubble
3412
                        local P = Instance.new("Part",Torso.Parent)
3413
                        P.Anchored = true
3414
                        P.FormFactor = "Custom"
3415
                        P.BrickColor = Hit.BrickColor
3416
                        P.Material = Hit.Material
3417
                        P.TopSurface = "Smooth"
3418
                        P.BottomSurface = "Smooth"
3419
                        P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
3420
                        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)))
3421
                        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}
3422
                end
3423
        end
3424
        for i = 0,1,0.05 do
3425
                for i2,v in pairs(Parts) do
3426
                        v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
3427
                end
3428
                wait(0.02)
3429
        end
3430
        for i,v in pairs(Parts) do
3431
                if v[1].Size.X > 2.1 then
3432
                        v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
3433
                end
3434
                v[1].Anchored = false
3435
        end
3436
        for i = 0,1,0.05 do
3437
                for i2,v in pairs(Parts) do
3438
                        v[1].Transparency = i
3439
                        if i == 1 then
3440
                                v[1]:Destroy()
3441
                        elseif i >= 0.25 then
3442
                                v[1].CanCollide = false
3443
                        end
3444
                end
3445
                wait(0.02)
3446
        end
3447
        Parts = nil
3448
        end)
3449
end
3450
3451
----------------------------------------------------
3452
mouse.KeyDown:connect(function(key)
3453
    if key == "r" then
3454
        larm.BrickColor = BrickColor.new("Royal purple")
3455
        rarm.BrickColor = BrickColor.new("Royal purple")
3456
        if Debounces.CanAttack == true then
3457
        Debounces.CanAttack = false
3458
        Debounces.on = true
3459
        Debounces.NoIdl = true
3460
to = char.Absolution.Thingy2.Touched:connect(function(ht)
3461
        hit = ht.Parent
3462
        if ht and hit:IsA("Model") then
3463
                if hit:FindFirstChild("Humanoid") then
3464
                    if hit.Name ~= p.Name then
3465
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3466
                                Debounces.Slashed = true]]--
3467
                                    hit:FindFirstChild("Humanoid"):TakeDamage(10)
3468
                                wait(1)
3469
                                --Debounces.Slashed = false
3470
                        --end
3471
                    end
3472
                end
3473
        elseif ht and hit:IsA("Hat") then
3474
            if hit.Parent.Name ~= p.Name then
3475
                if hit.Parent:FindFirstChild("Humanoid") then
3476
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
3477
                                Debounces.Slashed = true]]--
3478
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
3479
                                wait(1)
3480
                    --Debounces.Slashed = false
3481
                end
3482
            end
3483
        end    
3484
    end)
3485
q = Instance.new("Sound",hed)
3486
q.SoundId = "http://www.roblox.com/asset/?id=134012322"
3487
q.Pitch = 0.85
3488
q.Looped = false
3489
q1 = Instance.new("Sound",hed)
3490
q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
3491
q1.Pitch = 0.85
3492
q1.Looped = false
3493
q:Play()
3494
q1:Play()
3495
    for i = 1,20 do
3496
        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)
3497
        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)
3498
        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)
3499
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
3500
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
3501
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
3502
        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)
3503
        if Debounces.on == false then break end
3504
    rs:wait(.6)
3505
end
3506
n = Instance.new("Sound",hed)
3507
n.SoundId = "http://www.roblox.com/asset/?id=165969964"
3508
n.Pitch = 0.94
3509
n.Looped = false
3510
n1 = Instance.new("Sound",hed)
3511
n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
3512
n1.Pitch = 0.94
3513
n1.Looped = false
3514
n:Play()
3515
n1:Play()
3516
b = Instance.new("Sound",hed)
3517
b.SoundId = "http://www.roblox.com/asset/?id=168586586"
3518
b.Pitch = 0.94
3519
b.Looped = false
3520
b1 = Instance.new("Sound",hed)
3521
b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
3522
b1.Pitch = 0.94
3523
b1.Looped = false
3524
b:Play()
3525
b1:Play()
3526
    for i = 1,26 do
3527
        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)
3528
        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)
3529
        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)
3530
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
3531
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
3532
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
3533
        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)
3534
        if Debounces.on == false then break end
3535
    rs:wait(1)
3536
end
3537
wait(.5)
3538
to:disconnect()
3539
q:Destroy()
3540
q1:Destroy()
3541
n:Destroy()
3542
n1:Destroy()
3543
larm.BrickColor = BrickColor.new("Really black")
3544
rarm.BrickColor = BrickColor.new("Really black")
3545
    if Debounces.CanAttack == false then
3546
        Debounces.CanAttack = true
3547
        Debounces.on = false
3548
        Debounces.NoIdl = false
3549
            end
3550
        end
3551
    end
3552
end)
3553
----------------------------------------------------
3554
mouse.KeyDown:connect(function(key)
3555
    if key == "q" then
3556
        larm.BrickColor = BrickColor.new("Royal purple")
3557
        rarm.BrickColor = BrickColor.new("Royal purple")
3558
        if Debounces.CanAttack == true then
3559
        Debounces.CanAttack = false
3560
        Debounces.on = true
3561
        Debounces.NoIdl = true
3562
to = char.Absolution.Thingy2.Touched:connect(function(ht)
3563
        hit = ht.Parent
3564
        if ht and hit:IsA("Model") then
3565
                if hit:FindFirstChild("Humanoid") then
3566
                    if hit.Name ~= p.Name then
3567
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3568
                                Debounces.Slashed = true]]--
3569
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
3570
                                wait(1)
3571
                                --Debounces.Slashed = false
3572
                        --end
3573
                    end
3574
                end
3575
        elseif ht and hit:IsA("Hat") then
3576
            if hit.Parent.Name ~= p.Name then
3577
                if hit.Parent:FindFirstChild("Humanoid") then
3578
                       --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
3579
                                Debounces.Slashed = true]]--
3580
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
3581
                                wait(1)
3582
                    --Debounces.Slashed = false
3583
                end
3584
            end
3585
        end    
3586
    end)
3587
        for i = 1, 20 do
3588
            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)
3589
            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)
3590
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
3591
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
3592
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
3593
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
3594
            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)
3595
        if Debounces.on == false then break end
3596
        rs:wait(2)
3597
    end
3598
    z = Instance.new("Sound",hed)
3599
    z.SoundId = "rbxassetid://160069154"
3600
    z.Looped = false
3601
    z.Pitch = .9
3602
    z1 = Instance.new("Sound",hed)
3603
    z1.SoundId = "rbxassetid://160069154"
3604
    z1.Looped = false
3605
    z1.Pitch = .9
3606
    wait(0.01)
3607
    z:Play()
3608
    z1:Play()
3609
        for i = 1, 20 do
3610
            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)
3611
            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)
3612
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
3613
            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)
3614
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
3615
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
3616
            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)
3617
        if Debounces.on == false then break end
3618
        rs:wait(2)
3619
    end
3620
        for i = 1, 20 do
3621
            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)
3622
            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)
3623
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
3624
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
3625
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
3626
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
3627
            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)
3628
        if Debounces.on == false then break end
3629
        rs:wait(2)
3630
    end
3631
    z = Instance.new("Sound",hed)
3632
    z.SoundId = "rbxassetid://168586621"
3633
    z.Looped = false
3634
    z.Pitch = 1
3635
    z1 = Instance.new("Sound",hed)
3636
    z1.SoundId = "rbxassetid://168586621"
3637
    z1.Looped = false
3638
    z1.Pitch = 1
3639
    wait(0.01)
3640
    z:Play()
3641
    z1:Play()
3642
        for i = 1, 20 do
3643
            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)
3644
            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)
3645
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
3646
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
3647
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
3648
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
3649
            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)
3650
        if Debounces.on == false then break end
3651
        rs:wait(2)
3652
    end
3653
to:disconnect()
3654
larm.BrickColor = BrickColor.new("Really black")
3655
rarm.BrickColor = BrickColor.new("Really black")
3656
    if Debounces.CanAttack == false then
3657
        Debounces.CanAttack = true
3658
        Debounces.on = false
3659
        Debounces.NoIdl = false
3660
            end
3661
        end
3662
    end
3663
end)
3664
----------------------------------------------------
3665
Sit = false
3666
mouse.KeyDown:connect(function(key)
3667
    if key == "v" then
3668
        if Sit == false then
3669
            Sit = true
3670
            hum.WalkSpeed = 0.001
3671
        stanceToggle = "Sitting"
3672
    elseif Sit == true then
3673
        Sit = false
3674
            hum.WalkSpeed = 7
3675
        stanceToggle = "Normal"
3676
        end
3677
    end
3678
end)
3679
----------------------------------------------------
3680
mouse.KeyDown:connect(function(key)
3681
    if key == "t" then
3682
        if Debounces.CanAttack == true then
3683
        Debounces.CanAttack = false
3684
        Debounces.on = true
3685
        Debounces.NoIdl = true
3686
        for i = 1, 20 do
3687
        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)
3688
        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)
3689
        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)
3690
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
3691
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
3692
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
3693
        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)
3694
            if Debounces.on == false then break end
3695
            rs:wait(2.6)
3696
        end
3697
        Spawn(function()
3698
            local Parts = {}
3699
            for Y = -5,5 do
3700
                local P = Instance.new("Part",char)
3701
                P.Anchored = true
3702
                P.FormFactor = "Custom"
3703
                P.CanCollide = false
3704
                P.Size = Vector3.new(1,2,1)
3705
                P.TopSurface = "SmoothNoOutlines"
3706
                P.BottomSurface = "SmoothNoOutlines"
3707
                P.BrickColor = BrickColor.new("Really black")
3708
                P.Name = tostring(Y)
3709
                local i = (Y+5)/(10)
3710
                i = 1-math.cos(math.pi*i-(math.pi/2))
3711
                P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
3712
                --[[P.Touched:connect(function(ht)
3713
                    local hit = ht.Parent
3714
                    if hit:FindFirstChild("Humanoid") then
3715
                        hit.Humanoid:TakeDamage(math.random(20,50))
3716
                    end
3717
                end)]]--
3718
        s = Instance.new("Sound",P)
3719
        s.SoundId = "rbxassetid://228343271"
3720
        s.Volume = .7
3721
        s.Pitch = 0.9
3722
        s:Play()
3723
P.Touched:connect(function(ht)
3724
        hit = ht.Parent
3725
        if ht and hit:IsA("Model") then
3726
                if hit:FindFirstChild("Humanoid") then
3727
                    if hit.Name ~= p.Name then
3728
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3729
                                Debounces.Slashed = true]]--
3730
                                    hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
3731
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
3732
                                wait(1)
3733
                                --Debounces.Slashed = false
3734
                        --end
3735
                end
3736
                end
3737
        elseif ht and hit:IsA("Hat") then
3738
            if hit.Parent.Name ~= p.Name then
3739
                if hit.Parent:FindFirstChild("Humanoid") then
3740
                        --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3741
                                Debounces.Slashed = true]]--
3742
                                hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
3743
                                hit:FindFirstChild("Humanoid").PlatformStand = true
3744
                                wait(1)
3745
                    --Debounces.Slashed = false
3746
                --end
3747
            end
3748
        end
3749
    end
3750
end)
3751
                Parts[#Parts+1] = P
3752
            end
3753
            local BREAKIT = false
3754
            local CParts = {}
3755
            local Rocks = {}
3756
            local LastPos = nil
3757
            for i = 1,70 do
3758
                for i2,v in pairs(Parts) do
3759
                    v.CFrame = v.CFrame*CFrame.new(0,0,-4)
3760
                    local cf = v.CFrame
3761
                    v.Size = v.Size+Vector3.new(0.4,0.35,0)
3762
                    v.CFrame = cf
3763
                    v.Transparency = v.Transparency+0.02
3764
                    if v.Transparency >= 0.975 then BREAKIT = true end
3765
                    if v.Name == "0" then
3766
                        local Ignore = {}
3767
                        for i,v in pairs(game:GetService("Players"):GetPlayers()) do
3768
                            if v.Character ~= nil then
3769
                                Ignore[#Ignore+1] = v.Character
3770
                            end
3771
                        end
3772
                        local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
3773
                        local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
3774
                        if Hit ~= nil then
3775
                            if #Rocks == 0 then
3776
                                for i = 1,5 do
3777
                                    local P = Instance.new("Part",char)
3778
                                    Rocks[#Rocks+1] = P
3779
                                    P.Anchored = true
3780
                                    P.FormFactor = "Custom"
3781
                                    P.BrickColor = Hit.BrickColor
3782
                                    P.Material = Hit.Material
3783
                                    P.TopSurface = "Smooth"
3784
                                    P.BottomSurface = "Smooth"
3785
                                    P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
3786
                                end
3787
                            end
3788
                            for i,P in pairs(Rocks) do
3789
                                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)))
3790
                            end
3791
                            local P = Instance.new("Part",char)
3792
                            CParts[#CParts+1] = {P,tick()}
3793
                            P.Anchored = true
3794
                            P.FormFactor = "Custom"
3795
                            P.BrickColor = Hit.BrickColor
3796
                            P.Material = Hit.Material
3797
                            P.TopSurface = "Smooth"
3798
                            P.BottomSurface = "Smooth"
3799
                            P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
3800
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
3801
                            Pos = Pos.p
3802
                            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)))
3803
                            local P = P:Clone()
3804
                            CParts[#CParts+1] = {P,tick()}
3805
                            P.Parent = char
3806
                            Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
3807
                            Pos = Pos.p
3808
                            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)))
3809
                            if LastPos ~= nil then
3810
                                local P = P:Clone()
3811
                                CParts[#CParts+1] = {P,tick()}
3812
                                P.Parent = char
3813
                                P.BrickColor = BrickColor.new("Really black")
3814
                                Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
3815
                                Pos = Pos.p
3816
                                local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
3817
                                P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
3818
                                --P.Velocity = Vector3.new(0,-1000,0)
3819
                                P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
3820
                            end
3821
                            LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
3822
                        end
3823
                    end
3824
                end
3825
                if BREAKIT then break end
3826
                wait(0.002)
3827
            end
3828
            for i,v in pairs(Rocks) do
3829
                CParts[#CParts+1] = {v,tick()}
3830
            end
3831
            for i,v in pairs(Parts) do
3832
                v:Destroy()
3833
            end
3834
            Parts = nil
3835
            while true do
3836
                local t = tick()
3837
                local p = nil
3838
                for i,v in pairs(CParts) do
3839
                    if t-v[2] > 4 then
3840
                        v[1].Transparency = v[1].Transparency+0.05
3841
                        if v[1].Transparency >= 1 then
3842
                            v[1]:Destroy()
3843
                            CParts[i] = nil
3844
                        end
3845
                    end
3846
                    p = v
3847
                end
3848
                if p == nil then break end
3849
                wait(0.002)
3850
            end
3851
            for i,v in pairs(CParts) do
3852
                v:Destroy()
3853
            end
3854
            CParts = {}
3855
        end)
3856
        for i = 1, 20 do
3857
        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)
3858
        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)
3859
        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)
3860
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
3861
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
3862
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
3863
        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)
3864
            if Debounces.on == false then break end
3865
            rs:wait(2)
3866
        end
3867
    if Debounces.CanAttack == false then
3868
        Debounces.CanAttack = true
3869
        Debounces.on = false
3870
        Debounces.NoIdl = false
3871
            end
3872
        end
3873
    end
3874
end)
3875
----------------------------------------------------
3876
mouse.KeyDown:connect(function(key)
3877
    if key == "e" then
3878
    larm.BrickColor = BrickColor.new("Royal purple")
3879
    rarm.BrickColor = BrickColor.new("Royal purple")
3880
        if Debounces.CanAttack == true then
3881
        Debounces.CanAttack = false
3882
        Debounces.on = true
3883
        Debounces.NoIdl = true
3884
        for i = 1, 18 do
3885
            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)
3886
            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)
3887
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
3888
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
3889
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
3890
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
3891
            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)
3892
        if Debounces.on == false then break end
3893
            rs:wait(4)
3894
        end
3895
        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))
3896
        local rng = Instance.new("Part", char.Absolution.Handle)
3897
        rng.Anchored = true
3898
        rng.BrickColor = BrickColor.new("Really black")
3899
        rng.CanCollide = true
3900
        rng.FormFactor = 3
3901
        rng.Name = "Ring"
3902
        rng.Size = Vector3.new(1, 1, 1)
3903
        rng.CanCollide = false
3904
        rng.Transparency = 0.35
3905
        rng.TopSurface = 0
3906
        rng.BottomSurface = 0
3907
        rng.CFrame = HandCF
3908
        local rngm = Instance.new("SpecialMesh", rng)
3909
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
3910
        rngm.Scale = Vector3.new(1, 1, 2)
3911
            x = Instance.new("Sound", hed)
3912
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
3913
            x.Looped = false
3914
            x.Pitch = .7
3915
            x.Volume = 1
3916
            x1 = Instance.new("Sound", hed)
3917
            x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
3918
            x1.Looped = false
3919
            x1.Pitch = .7
3920
            x1.Volume = 1
3921
            x:Play()
3922
            x1:Play()
3923
            rngto = rng.Touched:connect(function(ht)
3924
            hit = ht.Parent
3925
            if ht and hit:IsA("Model") then
3926
                    if hit:FindFirstChild("Humanoid") then
3927
                        if hit.Name ~= p.Name then
3928
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
3929
                                    Debounces.Slashed = true]]--
3930
                                    hit:FindFirstChild("Humanoid"):TakeDamage(4)
3931
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
3932
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
3933
                                    --Debounces.Slashed = false
3934
                            --end
3935
                        end
3936
                    end
3937
            elseif ht and hit:IsA("Hat") then
3938
                if hit.Parent.Name ~= p.Name then
3939
                    if hit.Parent:FindFirstChild("Humanoid") then
3940
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
3941
                                    Debounces.Slashed = true]]--
3942
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
3943
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
3944
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
3945
                        --Debounces.Slashed = false
3946
                    end
3947
                end
3948
            end    
3949
        end)
3950
                coroutine.wrap(function()
3951
                for i = 1, 60, 2 do
3952
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
3953
                rng.Size = rngm.Scale
3954
                rng.CFrame = HandCF
3955
                rng.Transparency = i/60
3956
                wait()
3957
                end
3958
                wait()
3959
                rng:Destroy()
3960
                end)()
3961
        for i = 1, 18 do
3962
            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)
3963
            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)
3964
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
3965
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
3966
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
3967
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
3968
            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)
3969
        if Debounces.on == false then break end
3970
            rs:wait(2.4)
3971
        end
3972
        larm.BrickColor = BrickColor.new("Really black")
3973
        rarm.BrickColor = BrickColor.new("Really black")
3974
        x:Destroy()
3975
        x1:Destroy()
3976
    if Debounces.CanAttack == false then
3977
        Debounces.CanAttack = true
3978
        Debounces.on = false
3979
        Debounces.NoIdl = false
3980
            end
3981
        end
3982
    end
3983
end)
3984
----------------------------------------------------
3985
mouse.KeyDown:connect(function(key)
3986
        if key == "y" then
3987
                if Debounces.CanAttack == true then
3988
            Debounces.CanAttack = false
3989
            Debounces.on = true
3990
            Debounces.NoIdl = true
3991
                                for i = 1, 15 do
3992
                                        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)
3993
                                        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)
3994
                                        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
3995
                                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
3996
                                        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
3997
                                        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
3998
                                        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)
3999
                    if Debounces.on == false then break end
4000
                    rs:wait(2.7)
4001
                end
4002
                                x = Instance.new("Sound",char)
4003
                                x.SoundId = "rbxassetid://228343271"
4004
                                x.Pitch = 1
4005
                                x.Volume = .8
4006
                                wait(.1)
4007
                                x:Play()
4008
                                Debounces.on = false
4009
                                Debounces.Here = false
4010
                                shot = shot + 1
4011
local rng = Instance.new("Part", char)
4012
rng.Anchored = true
4013
rng.BrickColor = BrickColor.new("Royal purple")
4014
rng.CanCollide = false
4015
rng.FormFactor = 3
4016
rng.Name = "Ring"
4017
rng.Size = Vector3.new(1, 1, 1)
4018
rng.Transparency = 0.35
4019
rng.TopSurface = 0
4020
rng.BottomSurface = 0
4021
rng2 = rng:clone()
4022
rng3 = rng2:clone()
4023
rng4 = rng2:clone()
4024
local rngm = Instance.new("SpecialMesh", rng)
4025
rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
4026
rngm.Scale = Vector3.new(10, 10, 1)
4027
rngm2 = rngm:clone()
4028
rngm2.Scale = Vector3.new(5, 5, 3)
4029
rngm3=rngm2:clone()
4030
rngm3.Parent = rng3
4031
rngm3.Scale = Vector3.new(8, 8, 1)
4032
rngm4 = rngm2:clone()
4033
rngm4.Parent = rng4
4034
rngm4.Scale = Vector3.new(6, 6, 1)
4035
local bem = Instance.new("Part", char)
4036
bem.Anchored = true
4037
bem.BrickColor = BrickColor.new("Really black")
4038
bem.CanCollide = false
4039
bem.FormFactor = 3
4040
bem.Name = "Beam" .. shot
4041
bem.Size = Vector3.new(1, 1, 1)
4042
bem.Transparency = 0.35
4043
bem.TopSurface = 0
4044
bem.BottomSurface = 0
4045
local bemm = Instance.new("SpecialMesh", bem)
4046
bemm.MeshType = 4
4047
bemm.Scale = Vector3.new(1, 4, 4)
4048
local out = Instance.new("Part", char)
4049
out.Anchored = true
4050
out.BrickColor = BrickColor.new("Really black")
4051
out.CanCollide = false
4052
out.FormFactor = 3
4053
out.Name = "Out"
4054
out.Size = Vector3.new(4, 4, 4)
4055
out.Transparency = 0.35
4056
out.TopSurface = 0
4057
out.BottomSurface = 0
4058
local outm = Instance.new("SpecialMesh", out)
4059
outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
4060
outm.Scale = Vector3.new(4, 4, 4)
4061
local bnd = Instance.new("Part", char)
4062
bnd.Anchored = true
4063
bnd.BrickColor = BrickColor.new("Royal purple")
4064
bnd.CanCollide = false
4065
bnd.FormFactor = 3
4066
bnd.Name = "Bend"
4067
bnd.Size = Vector3.new(1, 1, 1)
4068
bnd.Transparency = 1
4069
bnd.TopSurface = 0
4070
bnd.BottomSurface = 0
4071
local bndm = Instance.new("SpecialMesh", bnd)
4072
bndm.MeshType = 3
4073
bndm.Scale = Vector3.new(8, 8, 8)
4074
out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
4075
bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
4076
bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
4077
rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
4078
rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
4079
rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
4080
Debounces.Shewt = true
4081
coroutine.wrap(function()
4082
for i = 1, 20, 0.2 do
4083
rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
4084
rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
4085
rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
4086
rng.Transparency = i/20
4087
rng3.Transparency = 1/24
4088
rng4.Transparency = i/26
4089
wait()
4090
end
4091
wait()
4092
rng:Destroy()
4093
end)()
4094
if Debounces.Shewt == true then
4095
char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
4096
hit = ht.Parent
4097
if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
4098
if HasntTouched(hit.Name) == true and deb == false then
4099
deb = true
4100
coroutine.wrap(function()
4101
hit:FindFirstChild("Humanoid").PlatformStand = true
4102
hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
4103
hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
4104
end)()
4105
table.insert(Touche, hit.Name)
4106
deb = false
4107
end
4108
elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
4109
if HasntTouched(hit.Parent.Name) == true and deb == false then
4110
deb = true
4111
coroutine.wrap(function()
4112
hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
4113
hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
4114
wait(1)
4115
hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
4116
end)()
4117
table.insert(Touche, hit.Parent.Name)
4118
deb = false
4119
for i, v in pairs(Touche) do
4120
print(v)
4121
end
4122
end
4123
end
4124
end)
4125
end
4126
for i = 0, 260, 8 do
4127
bem.Size = Vector3.new(i, 2, 2)
4128
bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
4129
bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
4130
bnd.Size = Vector3.new(1,1,1)
4131
bndm.Scale = Vector3.new(8,8,8)
4132
if i % 10 == 0 then
4133
local newRng = rng2:Clone()
4134
newRng.Parent = char
4135
newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
4136
local newRngm = rngm2:clone()
4137
newRngm.Parent=newRng
4138
coroutine.wrap(function()
4139
for i = 1, 10, 0.2 do
4140
newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
4141
newRng.Transparency = i/10
4142
wait()
4143
end
4144
wait()
4145
newRng:Destroy()
4146
end)()
4147
end
4148
wait()
4149
end
4150
wait()
4151
Debounces.Shewt = false
4152
bem:Destroy()
4153
out:Destroy()
4154
bnd:Destroy()
4155
Debounces.Ready = false
4156
for i, v in pairs(Touche) do
4157
table.remove(Touche, i)
4158
end
4159
wait()
4160
table.insert(Touche, char.Name)
4161
Debounces.NoIdl = false
4162
if Debounces.CanAttack == false then
4163
Debounces.CanAttack = true
4164
end
4165
end
4166
end
4167
end)
4168
----------------------------------------------------
4169
sidz = {"231917888", "231917845", "231917806"}
4170
ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
4171
mouse.KeyDown:connect(function(key)
4172
    if key == "f" then
4173
    larm.BrickColor = BrickColor.new("Royal purple")
4174
    rarm.BrickColor = BrickColor.new("Royal purple")
4175
        if Debounces.CanAttack == true then
4176
            Debounces.CanAttack = false
4177
            Debounces.on = true
4178
            Debounces.NoIdl = true
4179
                for i = 1, 20 do
4180
                    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)
4181
                    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)
4182
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
4183
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
4184
                    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)
4185
                    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)
4186
                    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)
4187
                    if Debounces.on == false then break end
4188
                    rs:wait(6)
4189
                end
4190
                z = Instance.new("Sound",char)
4191
                z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
4192
                z.Pitch = ptz[math.random(1,#ptz)]
4193
                z.Volume = 1
4194
                z1 = Instance.new("Sound",char)
4195
                z1.SoundId = z.SoundId
4196
                z1.Pitch = z.Pitch
4197
                z1.Volume = 1
4198
                z:Play()
4199
                z1:Play()
4200
                Stomp()
4201
                for i = 1, 20 do
4202
                    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)
4203
                    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)
4204
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
4205
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
4206
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
4207
                    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)
4208
                    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)
4209
                    if Debounces.on == false then break end
4210
                    rs:wait(2.5)
4211
                end
4212
        if Debounces.CanAttack == false then
4213
            Debounces.CanAttack = true
4214
            Debounces.on = false
4215
            Debounces.NoIdl = false
4216
            larm.BrickColor = BrickColor.new("Really black")
4217
            rarm.BrickColor = BrickColor.new("Really black")
4218
            end
4219
        end
4220
    end
4221
end)    
4222
----------------------------------------------------
4223
mouse.KeyDown:connect(function(key)
4224
    if key == "g" then
4225
    larm.BrickColor = BrickColor.new("Royal purple")
4226
    rarm.BrickColor = BrickColor.new("Royal purple")
4227
        if Debounces.CanAttack == true then
4228
        Debounces.CanAttack = false
4229
        Debounces.on = true
4230
        Debounces.NoIdl = true
4231
        chrg = lleg.Touched:connect(function(ht)
4232
        hit = ht.Parent
4233
            if ht and hit:IsA("Model") then
4234
                    if hit:FindFirstChild("Humanoid") then
4235
                        if hit.Name ~= p.Name then
4236
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
4237
                                    Debounces.Slashed = true]]--
4238
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
4239
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4240
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4241
                                    --Debounces.Slashed = false
4242
                            --end
4243
                        end
4244
                    end
4245
            elseif ht and hit:IsA("Hat") then
4246
                if hit.Parent.Name ~= p.Name then
4247
                    if hit.Parent:FindFirstChild("Humanoid") then
4248
                           --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
4249
                                    Debounces.Slashed = true]]--
4250
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
4251
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4252
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4253
                        --Debounces.Slashed = false
4254
                    end
4255
                end
4256
            end    
4257
        end)
4258
        for i = 1, 14 do
4259
            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)
4260
            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)
4261
            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)
4262
            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)
4263
            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)
4264
            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)
4265
            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)
4266
            if Debounces.on == false then break end
4267
            rs:wait(3)
4268
        end
4269
        charge()
4270
        z = Instance.new("Sound",char)
4271
        z.SoundId = "rbxassetid://200632875"
4272
        z.Volume = 1
4273
        z.Pitch = .8
4274
        z1 = Instance.new("Sound",char)
4275
        z1.SoundId = "rbxassetid://200632875"
4276
        z1.Volume = 1
4277
        z1.Pitch = .9
4278
        z:Play()
4279
        z1:Play()
4280
        wait(1)
4281
        z:Destroy()
4282
        z1:Destroy()
4283
        chrg:disconnect()
4284
        if Debounces.CanAttack == false then
4285
            Debounces.CanAttack = true
4286
            Debounces.on = false
4287
            Debounces.NoIdl = false
4288
            larm.BrickColor = BrickColor.new("Really black")
4289
            rarm.BrickColor = BrickColor.new("Really black")
4290
            end
4291
        end
4292
    end
4293
end)
4294
----------------------------------------------------
4295
pt = {0.7, 0.8, 0.9}
4296
mouse.KeyDown:connect(function(key)
4297
    if key == "h" then
4298
        if Debounces.CanJoke == true then
4299
            Debounces.CanJoke = false
4300
            u = Instance.new("Sound")
4301
            u.SoundId = "http://www.roblox.com/asset/?id=138199573"
4302
            u.Parent = char
4303
            u.Looped = false
4304
            u.Pitch = pt[math.random(1,#pt)]
4305
            u.Volume = 1
4306
            u2 = Instance.new("Sound")
4307
            u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
4308
            u2.Parent = char
4309
            u2.Looped = false
4310
            u2.Pitch = u.Pitch
4311
            u2.Volume = 1
4312
            wait(.01)
4313
            u:Play()
4314
            u2:Play()
4315
            wait(6)
4316
            u:Destroy()
4317
            u2:Destroy()
4318
            if Debounces.CanJoke == false then
4319
                Debounces.CanJoke = true
4320
            end
4321
        end
4322
    end
4323
end)
4324
----------------------------------------------------
4325
mouse.KeyDown:connect(function(key)
4326
    if key == "j" then
4327
                        if Debounces.CanJoke == true then
4328
                                Debounces.CanJoke = false
4329
                z = Instance.new("Sound",char)
4330
                z.SoundId = "rbxassetid://135017755"
4331
                z.Pitch = .76
4332
                z.Volume = 1
4333
                                wait()
4334
                                z:Play()
4335
                                wait(6)
4336
                                z:Destroy()
4337
                        if Debounces.CanJoke == false then
4338
                                Debounces.CanJoke = true
4339
                        end
4340
                end
4341
        end
4342
end)
4343
----------------------------------------------------
4344
mouse.KeyDown:connect(function(key)
4345
    if key == "k" then
4346
                        if Debounces.CanJoke == true then
4347
                                Debounces.CanJoke = false
4348
                z = Instance.new("Sound",char)
4349
                z.SoundId = "rbxassetid://135017578"
4350
                z.Pitch = .76
4351
                z.Volume = 1
4352
                                wait()
4353
                                z:Play()
4354
                                wait(4)
4355
                                z:Destroy()
4356
                        if Debounces.CanJoke == false then
4357
                                Debounces.CanJoke = true
4358
                        end
4359
                end
4360
        end
4361
end)
4362
----------------------------------------------------
4363
mouse.KeyDown:connect(function(key)
4364
    if key == "x" then
4365
        if Debounces.CanAttack == true then
4366
            Debounces.CanAttack = false
4367
            Debounces.NoIdl = true
4368
            Debounces.on = true
4369
            Debounces.ks = true
4370
        for i = 1, 10 do
4371
            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)
4372
            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)
4373
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
4374
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
4375
            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)
4376
            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)
4377
            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)
4378
            if Debounces.on == false then break end
4379
            rs:wait(1)
4380
        end
4381
        z = Instance.new("Sound",hed)
4382
        z.SoundId = "rbxassetid://169445092"
4383
        z.Volume = 1
4384
        wait(0.1)
4385
        z:Play()
4386
        kik = rleg.Touched:connect(function(ht)
4387
        hit = ht.Parent
4388
            if ht and hit:IsA("Model") then
4389
                    if hit:FindFirstChild("Humanoid") then
4390
                        if hit.Name ~= p.Name then
4391
                            --[[if Debounces.Slashing == true and Debounces.Slashed == false then
4392
                                    Debounces.Slashed = true]]--
4393
                                    if Debounces.ks==true then
4394
                                    z = Instance.new("Sound",hed)
4395
                                    z.SoundId = "rbxassetid://169380525"
4396
                                    z.Volume = 1
4397
                                    z:Play()
4398
                                    Debounces.ks=false
4399
                                    end
4400
                                    hit:FindFirstChild("Humanoid"):TakeDamage(2)
4401
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4402
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4403
                            --Debounces.Slashed = false
4404
                        --end
4405
                    end
4406
                end
4407
            elseif ht and hit:IsA("Hat") then
4408
                if hit.Parent.Name ~= p.Name then
4409
                    if hit.Parent:FindFirstChild("Humanoid") then
4410
                           --[[if Debounces.Slashing == true and Debounces.Slashed == false then
4411
                                    Debounces.Slashed = true]]--
4412
                                    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
4413
                                    hit:FindFirstChild("Humanoid").PlatformStand = true
4414
                                    hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
4415
                            --Debounces.Slashed = false
4416
                        --end
4417
                    end
4418
                end
4419
            end    
4420
        end)
4421
        for i = 1, 8 do
4422
            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)
4423
            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)
4424
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
4425
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
4426
            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)
4427
            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)
4428
            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)
4429
            if Debounces.on == false then break end
4430
            rs:wait(.7)
4431
        end
4432
        kik:disconnect()
4433
        if Debounces.CanAttack == false then
4434
            Debounces.CanAttack = true
4435
            Debounces.on = false
4436
            Debounces.NoIdl = false
4437
            end
4438
        end
4439
    end
4440
end)
4441
----------------------------------------------------
4442
mouse.KeyDown:connect(function(key)
4443
    if key == "c" then
4444
        if Debounces.CanAttack == true then
4445
            Debounces.CanAttack = false
4446
            Debounces.NoIdl = true
4447
            Debounces.on = true
4448
            SIDZ = {"231917744", "231917742"}
4449
            PTZ = {0.7, 0.8, 0.9, 1}
4450
                for i = 1, 20 do
4451
                    wait()
4452
                        for i,v in pairs(char.Absolution:children()) do
4453
                    if v:IsA("Part") or v:IsA("WedgePart") then
4454
                        v.Transparency = v.Transparency + 0.05
4455
                        end
4456
                    end
4457
                end
4458
                function FindNearestTorso(Position,Distance,SinglePlayer)
4459
                    if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
4460
                        local List = {}
4461
                        for i,v in pairs(workspace:GetChildren())do
4462
                            if v:IsA("Model")then
4463
                                if v:findFirstChild("Torso")then
4464
                                    if v ~= char then
4465
                                        if(v.Torso.Position -Position).magnitude <= Distance then
4466
                                            table.insert(List,v)
4467
                                        end 
4468
                                    end 
4469
                                end 
4470
                            end 
4471
                        end
4472
                    return List
4473
                end
4474
                GroundPound()
4475
                for i = 1, 11 do
4476
                    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)
4477
                    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)
4478
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
4479
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
4480
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
4481
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4482
                    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)
4483
                    if Debounces.on == false then break end
4484
                    rs:wait(1.4)
4485
                end
4486
                GroundPound()
4487
                for i = 1, 11 do
4488
                    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)
4489
                    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)
4490
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
4491
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
4492
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4493
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
4494
                    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)
4495
                    if Debounces.on == false then break end
4496
                    rs:wait(1.4)
4497
                end
4498
                GroundPound()
4499
                for i = 1, 11 do
4500
                    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)
4501
                    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)
4502
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
4503
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
4504
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
4505
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4506
                    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)
4507
                    if Debounces.on == false then break end
4508
                    rs:wait(1.4)
4509
                end
4510
                GroundPound()
4511
                for i = 1, 11 do
4512
                    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)
4513
                    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)
4514
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
4515
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
4516
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4517
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
4518
                    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)
4519
                    if Debounces.on == false then break end
4520
                    rs:wait(1.4)
4521
                end
4522
                GroundPound()
4523
                for i = 1, 11 do
4524
                    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)
4525
                    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)
4526
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
4527
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
4528
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
4529
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4530
                    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)
4531
                    if Debounces.on == false then break end
4532
                    rs:wait(1.4)
4533
                end
4534
                GroundPound()
4535
                for i = 1, 11 do
4536
                    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)
4537
                    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)
4538
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
4539
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
4540
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
4541
                    rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
4542
                    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)
4543
                    if Debounces.on == false then break end
4544
                    rs:wait(1.4)
4545
                end
4546
                for i = 1, 24 do
4547
                    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)
4548
                    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)
4549
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
4550
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
4551
                    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)
4552
                    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)
4553
                    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)
4554
                    if Debounces.on == false then break end
4555
                    rs:wait(3)
4556
                end
4557
                for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
4558
                    if v:FindFirstChild('Humanoid') then
4559
                        v.Humanoid:TakeDamage(math.random(20,60))
4560
                        v.Humanoid.PlatformStand = true
4561
                        v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
4562
                    end
4563
                end
4564
                x = Instance.new("Sound",char)
4565
                x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
4566
                x.Pitch = PTZ[math.random(1,#PTZ)]
4567
                x.Volume = 1
4568
                wait(0.1)
4569
                x:Play()
4570
                Crater(hed,20)
4571
                for i = 1, 20 do
4572
                    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)
4573
                    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)
4574
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
4575
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
4576
                    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)
4577
                    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)
4578
                    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)
4579
                    if Debounces.on == false then break end
4580
                    rs:wait(2)
4581
                end
4582
            if Debounces.CanAttack == false then
4583
                Debounces.CanAttack = true
4584
                Debounces.on = false
4585
                Debounces.NoIdl = false
4586
                for i = 1, 20 do
4587
                    wait()
4588
                        for i,v in pairs(char.Absolution:children()) do
4589
                    if v:IsA("Part") or v:IsA("WedgePart") then
4590
                        v.Transparency = v.Transparency - 0.05
4591
                        end
4592
                    end
4593
                end
4594
            end
4595
        end
4596
    end
4597
end)
4598
----------------------------------------------------176349813
4599
mouse.KeyDown:connect(function(key)
4600
    if key == "b" then
4601
        hum.WalkSpeed = 0.01
4602
        if Debounces.CanAttack == true then
4603
            Debounces.CanAttack = false
4604
            Debounces.NoIdl = true
4605
            Debounces.on = true
4606
                for i = 1, 30 do
4607
                    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)
4608
                    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)
4609
                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
4610
                    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
4611
                    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)
4612
                    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)
4613
                    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)
4614
                    if Debounces.on == false then break end
4615
                    rs:wait(6)
4616
                end
4617
        v = Instance.new("Sound")
4618
        v.SoundId = "rbxassetid://181384451"
4619
        v.Parent = char
4620
        v.Looped = false
4621
        v.Pitch = .94
4622
        v.Volume = 1
4623
        wait(.01)
4624
        v:Play()
4625
        
4626
        if Daytime == true then
4627
            Daytime = false
4628
            l.TimeOfDay = 24
4629
        else
4630
            Daytime = true
4631
            l.TimeOfDay = 12
4632
            l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
4633
        end
4634
        
4635
            local Shockwave = function()
4636
                local rng1 = Instance.new("Part", char)
4637
                rng1.Anchored = true
4638
                rng1.BrickColor = BrickColor.new("Really black")
4639
                rng1.CanCollide = false
4640
                rng1.FormFactor = 3
4641
                rng1.Name = "Ring"
4642
                rng1.Size = Vector3.new(1, 1, 1)
4643
                rng1.Transparency = 0.35
4644
                rng1.TopSurface = 0
4645
                rng1.BottomSurface = 0
4646
                local rngm1 = Instance.new("SpecialMesh", rng)
4647
                rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
4648
                rngm1.Scale = Vector3.new(10, 10, 1)
4649
                rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
4650
                local Wave = Instance.new("Part", game.Workspace--[[?]])
4651
                Wave.Name = "Shockwave"
4652
                Wave.BrickColor = BrickColor.new("Really black")
4653
                Wave.Size = Vector3.new(1, 1, 1)
4654
                Wave.Shape = "Ball"
4655
                Wave.CanCollide = false
4656
                Wave.Anchored = true
4657
                Wave.TopSurface = 0
4658
                Wave.BottomSurface = 0
4659
                Wave.Touched:connect(function(hit)
4660
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
4661
                        local Occlude = true
4662
                        local NotOccludes = {
4663
                            char.Name;
4664
                            "Wings";
4665
                            "Scythe";
4666
                            "Thingy";
4667
                            "Thingy2"; -- put all of the names in a table pls
4668
                        }
4669
                        for i,v in pairs(NotOccludes) do
4670
                            if hit.Parent.Name == v then
4671
                                Occlude = false
4672
                            end
4673
                        end
4674
                        --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
4675
                        if Occlude then
4676
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
4677
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
4678
                        end
4679
                    end
4680
                end)
4681
                
4682
                Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
4683
                
4684
                coroutine.wrap(function()
4685
                    for i = 1, 20, 0.2 do
4686
                        rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
4687
                        rng1.Transparency = i/20
4688
                    wait()
4689
                    end
4690
                    wait()
4691
                    rng1:Destroy()
4692
                end)()
4693
                
4694
                Delay(0, function()
4695
4696
                    if Daytime == false then
4697
                       for i = 1, 50, 1 do
4698
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4699
                            Wave.CFrame = char.Torso.CFrame
4700
                            local t = i / 50
4701
                            Wave.Transparency = t
4702
                            wait()
4703
                        end
4704
                    else
4705
                        for i = 1, 50, 1 do
4706
                            Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4707
                            Wave.CFrame = char.Torso.CFrame
4708
                            local t = i / 50
4709
                            Wave.Transparency = t
4710
                            wait()
4711
                        end
4712
                    end
4713
                    Wave:Destroy()
4714
                end)
4715
                Delay(0, function()
4716
                    while wait() do
4717
                        if Wave ~= nil then
4718
                            Wave.CFrame = char.Torso.CFrame
4719
                        else
4720
                            break
4721
                        end
4722
                    end
4723
                end)
4724
            end
4725
        Shockwave() 
4726
                for i = 1, 30 do
4727
                        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)
4728
                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
4729
            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)
4730
            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)
4731
                        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)
4732
                        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)
4733
                        if Debounces.on == false then break end
4734
                        rs:wait()
4735
                end
4736
        wait(2.4)
4737
        Debounces.NoIdl = false
4738
        hum.WalkSpeed = 5
4739
        Debounces.on = false
4740
        wait()
4741
        if Debounces.CanAttack == false then
4742
            Debounces.CanAttack = true
4743
            v:Destroy()
4744
            end
4745
        end
4746
    end
4747
end)
4748
----------------------------------------------------
4749
mouse.KeyDown:connect(function(key)
4750
    if key == "l" then
4751
                for i = 1, 20 do
4752
                        wait()
4753
                for i,v in pairs(char.Absolution:children()) do
4754
                        if v:IsA("Part") or v:IsA("WedgePart") then
4755
                                v.Transparency = v.Transparency + 0.05
4756
                        end
4757
                end
4758
        end
4759
        if Debounces.CanAttack == true then
4760
            Debounces.CanAttack = false
4761
            Debounces.NoIdl = true
4762
            Debounces.on = true
4763
                bv = Instance.new("BodyVelocity",torso)
4764
        bv.maxForce = Vector3.new(0,200000,0)
4765
        bv.P = 100000
4766
                bv.velocity = Vector3.new(0,500,0)
4767
                wait(2)
4768
                bv:Destroy()
4769
if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
4770
    for i = 1, 20 do
4771
        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)
4772
        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)
4773
        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)
4774
        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)
4775
        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)
4776
        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)
4777
        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)
4778
        if Debounces.on == false then break end
4779
        wait()
4780
        end
4781
        for i = 1, 360, 20 do wait()
4782
                torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
4783
        end
4784
end
4785
torso.Weld.C1 = CFrame.new(0,-1.2,0)
4786
local ry,ht,ps=nil,nil,nil
4787
while ht==nil do
4788
        ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
4789
        wait()
4790
end
4791
z = Instance.new("Sound",char)
4792
z.SoundId = "rbxassetid://245537790"
4793
z.Pitch = 1
4794
z.Volume = 1
4795
wait(0.1)
4796
z:Play()
4797
        local sp = Instance.new("Part", char)
4798
                sp.Name = "Energy"
4799
                sp.BrickColor = BrickColor.new("Really black")
4800
                sp.Size = Vector3.new(1, 1, 1)
4801
                sp.Shape = "Ball"
4802
                sp.CanCollide = false
4803
                sp.Anchored = true
4804
                sp.TopSurface = 0
4805
                sp.BottomSurface = 0
4806
        local spm = Instance.new("SpecialMesh",sp)
4807
                spm.MeshId = "rbxassetid://9982590"
4808
                spm.Scale = Vector3.new(3,3,3)
4809
        local sp2 = Instance.new("Part", char)
4810
                sp2.Name = "Energy2"
4811
                sp2.BrickColor = BrickColor.new("Really black")
4812
                sp2.Size = Vector3.new(1, 1, 1)
4813
                sp2.Shape = "Ball"
4814
                sp2.CanCollide = false
4815
                sp2.Anchored = true
4816
                sp2.TopSurface = 0
4817
                sp2.BottomSurface = 0
4818
        local spm2 = Instance.new("SpecialMesh",sp2)
4819
                spm2.MeshId = "rbxassetid://9982590"
4820
                spm2.Scale = Vector3.new(3,3,3)
4821
                sp.Touched:connect(function(hit)
4822
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
4823
                        local Occlude = true
4824
                        local NotOccludes = {
4825
                            char.Name;
4826
                            "Wings";
4827
                            "Scythe";
4828
                            "Thingy";
4829
                            "Thingy2"; -- put all of the names in a table pls
4830
                        }
4831
                        for i,v in pairs(NotOccludes) do
4832
                            if hit.Parent.Name == v then
4833
                                Occlude = false
4834
                            end
4835
                        end
4836
                        --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
4837
                        if Occlude then
4838
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
4839
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
4840
                        end
4841
                    end
4842
                end)
4843
                sp2.Touched:connect(function(hit)
4844
                    if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
4845
                        local Occlude = true
4846
                        local NotOccludes = {
4847
                            char.Name;
4848
                            "Wings";
4849
                            "Scythe";
4850
                            "Thingy";
4851
                            "Thingy2"; -- put all of the names in a table pls
4852
                        }
4853
                        for i,v in pairs(NotOccludes) do
4854
                            if hit.Parent.Name == v then
4855
                                Occlude = false
4856
                            end
4857
                        end
4858
                        --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
4859
                        if Occlude then
4860
                            hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
4861
                            hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
4862
                        end
4863
                    end
4864
                end)
4865
        for i = 1, 100, 1 do
4866
                sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4867
                sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
4868
                sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
4869
                sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
4870
                spm.Scale = sp.Size
4871
                spm2.Scale = sp2.Size
4872
                local t = i / 100
4873
                sp.Transparency = t
4874
                sp2.Transparency = t
4875
                wait()
4876
        end
4877
                sp:Destroy()
4878
                sp2:Destroy()
4879
                z:Destroy()
4880
                for i = 1, 20 do
4881
                        wait()
4882
                for i,v in pairs(char.Absolution:children()) do
4883
                        if v:IsA("Part") or v:IsA("WedgePart") then
4884
                                v.Transparency = v.Transparency - 0.05
4885
                        end
4886
                end
4887
        end
4888
        if Debounces.CanAttack == false then
4889
            Debounces.CanAttack = true
4890
                        Debounces.NoIdl = false
4891
                        Debounces.on = false
4892
            end
4893
        end
4894
    end
4895
end)
4896
----------------------------------------------------
4897
local orbt={}
4898
local stlt={}
4899
local chot={}
4900
local cfxt={}
4901
local pfxt={}
4902
local cns=0
4903
local cnOrb=nil
4904
mouse.KeyDown:connect(function(key)
4905
    if key == "u" then
4906
        if Debounces.CanAttack == true then
4907
            Debounces.CanAttack = false
4908
            Debounces.NoIdl = true
4909
            Debounces.on = true
4910
                        orbt={}
4911
                        stlt={}
4912
                        chot={}
4913
                        cfxt={}
4914
                for i = 1, 20 do
4915
                        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)
4916
                        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)
4917
                        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
4918
                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
4919
                        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)
4920
                        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)
4921
                        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)
4922
                        if Debounces.on == false then end
4923
                        rs:wait()
4924
                    end
4925
                z = Instance.new("Sound",char)
4926
                z.SoundId = "rbxassetid://170053944"
4927
                z.Pitch = 1.07
4928
                z.Volume = 1
4929
                wait(0.1)
4930
                z:Play()
4931
                cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
4932
                debris:AddItem(cnOrb,50)
4933
                cnOrb.Mesh.MeshType=3
4934
                table.insert(orbt,cnOrb)
4935
                table.insert(stlt,cnOrb)
4936
                local nt=0
4937
                for i=0,5,0.02 do
4938
                        nt=nt+1
4939
                        cns=i
4940
                        if nt>=2 then
4941
                                nt=0
4942
                                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")
4943
                                debris:AddItem(cho,1)
4944
                                cho.Mesh.MeshType=3
4945
                                table.insert(chot,cho)
4946
                        end
4947
                        cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
4948
                        cnOrb.Mesh.Scale=Vector3.new(i,i,i)
4949
                        wait()
4950
                end
4951
                for i = 1, 14 do
4952
                        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)
4953
                        if Debounces.on == false then end
4954
                        rs:wait()
4955
                    end
4956
                coroutine.wrap(function()
4957
                for i = 1, 20 do
4958
                        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)
4959
                        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)
4960
                        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
4961
                        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
4962
                        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)
4963
                        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)
4964
                        if Debounces.on == false then end
4965
                        rs:wait()
4966
                    end
4967
                end)()
4968
                wait(0.1)
4969
                stlt={}
4970
                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})
4971
                cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
4972
                local nt=0
4973
                for i=0,160,3 do
4974
                                        cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
4975
                                        nt=nt+1
4976
                                        if nt>=6 then
4977
                        nt=0
4978
                        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")
4979
                        cfx.Mesh.MeshId="rbxassetid://20329976"
4980
                        cfx.Transparency=0.4
4981
                        table.insert(cfxt,cfx)
4982
                        debris:AddItem(cfx,1)
4983
                    end
4984
                                                if (cnOrb.Position-ps).magnitude<6 then
4985
                                                        break
4986
                                                end
4987
                                wait()
4988
                        end
4989
                        orbt={}
4990
                        
4991
                        for i=0,1,0.1 do
4992
                                local cs=cnOrb.Mesh.Scale
4993
                                cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
4994
                                wait()
4995
                        end
4996
                        local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
4997
                        ofx.Transparency=0.5
4998
                        ofx.Mesh.MeshType=3
4999
                        ofx.Mesh.Scale=Vector3.new(30,30,30)
5000
                        for _,v in pairs(game:service"Players":GetChildren()) do
5001
                                pcall(function()
5002
                                        for _,c in pairs(v.Character:GetChildren()) do
5003
                                                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
5004
                                                        local hrp=v.Character:FindFirstChild("HumanoidRootPart")
5005
                                                        hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
5006
                                                end
5007
                                        end
5008
                                end)
5009
                        end
5010
                        for i=0,1,0.05 do
5011
                                local cs=cnOrb.Mesh.Scale
5012
                                cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
5013
                                local ofs=ofx.Mesh.Scale
5014
                                ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
5015
                                ofx.Transparency=Tween(ofx.Transparency,1,i)
5016
                                wait()
5017
                        end
5018
                        ofx:Destroy()
5019
                        cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
5020
                        local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
5021
                        cnfx.Mesh.MeshType=3
5022
                        cnOrb.Transparency=0.05
5023
                        local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
5024
                        cnr.Mesh.MeshType=3
5025
                        local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
5026
                        rn1.Transparency=1
5027
                        rn1.Mesh.MeshId="rbxassetid://3270017"
5028
                        local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
5029
                        rn2.Transparency=1
5030
                        rn2.Mesh.MeshId="rbxassetid://3270017"
5031
                        local nt=0
5032
                        local cs=nil
5033
                        for i=0,1,0.05 do
5034
                                cs=cnOrb.Mesh.Scale
5035
                                cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
5036
                                local fs=cnfx.Mesh.Scale
5037
                                cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
5038
                                cnfx.Transparency=cnfx.Transparency+0.05
5039
                                rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
5040
                                rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
5041
                                rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
5042
                                rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
5043
                                rn1.Transparency=Tween(rn1.Transparency,0.8,i)
5044
                                rn2.Transparency=Tween(rn2.Transparency,0.8,i)
5045
                                local rs=cnr.Mesh.Scale
5046
                                cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
5047
                                nt=nt+1
5048
                                if nt>=6 then
5049
                                        local pls={}
5050
                                        for _,v in pairs(game.Players:GetChildren()) do
5051
                                                table.insert(pls,v)
5052
                                        end
5053
                                        local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
5054
                                        local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
5055
                                        pffx.Mesh.MeshId="rbxassetid://20329976"
5056
                                        pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
5057
                                        debris:AddItem(pffx,2)
5058
                                        table.insert(pfxt,pffx)
5059
                                        nt=0
5060
                                end
5061
                                wait()
5062
                        end
5063
                        local int=0
5064
                        coroutine.wrap(function()
5065
                        for i=1,500 do
5066
                                rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
5067
                                rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
5068
                                nt=nt+1
5069
                                int=int+1
5070
                                local htd={p}
5071
                                for _,v in pairs(game:service"Players":GetChildren()) do
5072
                                        pcall(function()
5073
                                                for _,c in pairs(v.Character:GetChildren()) do
5074
                                                        if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
5075
                                                                v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
5076
                                                                v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
5077
                                                                table.insert(htd,v)
5078
                                                        end
5079
                                                end
5080
                                        end)
5081
                                end
5082
                                htd={p}
5083
                                if int>=6 then
5084
                                for _,v in pairs(game:service"Players":GetChildren()) do
5085
                                        pcall(function()
5086
                                                for _,c in pairs(v.Character:GetChildren()) do
5087
                                                        if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
5088
                                                                table.insert(htd,v)
5089
                                                                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")
5090
                                                                hfx.Mesh.Scale=Vector3.new(2,2,2)
5091
                                                                hfx.Mesh.MeshType=3
5092
                                                                debris:AddItem(hfx,2)
5093
                                                                coroutine.wrap(function()
5094
                                                                        pcall(function()
5095
                                                                                for i=0,1,0.05 do
5096
                                                                                        pcall(function()
5097
                                                                                        local hs=hfx.Mesh.Scale
5098
                                                                                        hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
5099
                                                                                        hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
5100
                                                                                        end)
5101
                                                                                        wait()
5102
                                                                                end
5103
                                                                                hfx:Destroy()
5104
                                                                        end)
5105
                                                                end)()
5106
                                                        end
5107
                                                end
5108
                                        end)
5109
                                end
5110
                                int=0
5111
                                end
5112
                                if nt>=4 then
5113
                                        local pls={}
5114
                                        for _,v in pairs(game.Players:GetChildren()) do
5115
                                                table.insert(pls,v)
5116
                                        end
5117
                                        local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
5118
                                        local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
5119
                                        pffx.Transparency=0.4
5120
                                        pffx.Mesh.MeshId="rbxassetid://20329976"
5121
                                        pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
5122
                                        debris:AddItem(pffx,2)
5123
                                        table.insert(pfxt,pffx)
5124
                                        nt=0
5125
                                end
5126
                                wait()
5127
                        end
5128
                        cnOrb:Destroy()
5129
                        cnfx:Destroy()
5130
                        for _,v in pairs(mod3:GetChildren()) do
5131
                                v:Destroy()
5132
                        end
5133
                        orbt={}
5134
                        stlt={}
5135
                        chot={}
5136
                        cfxt={}
5137
                        pfxt={}
5138
                        end)()
5139
                        if Debounces.CanAttack == false then
5140
                                Debounces.CanAttack = true
5141
                                Debounces.NoIdl = false
5142
                                Debounces.on = false
5143
            end
5144
        end
5145
    end
5146
end)
5147
----------------------------------------------------
5148
mouse.KeyDown:connect(function(key)
5149
    if key == "m" then
5150
        if Debounces.CanAttack == true then
5151
        Debounces.CanAttack = false
5152
        Debounces.on = true
5153
        Debounces.NoIdl = true
5154
            --[[x = Instance.new("Sound",char)
5155
            x.SoundId = "http://www.roblox.com/asset/?id=169445572"
5156
            x.Looped = false
5157
            x.Pitch = 1.1
5158
            x.Volume = 1
5159
            x:Play()
5160
            x2 = Instance.new("Sound",char)
5161
            x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
5162
            x2.Looped = false
5163
            x2.Pitch = .7
5164
            x2.Volume = 1
5165
            wait(.1)
5166
            x:Play()
5167
            x2:Play()
5168
        for i = 1, 20 do
5169
            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)
5170
            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)
5171
            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)
5172
            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)
5173
            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)
5174
            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)
5175
            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)
5176
            if Debounces.on == false then break end
5177
                wait()
5178
            x:Destroy()
5179
            x2:Destroy()
5180
            end
5181
            wait(1)]]--
5182
        local rng = Instance.new("Part", char)
5183
        rng.Anchored = true
5184
        rng.BrickColor = BrickColor.new("Really black")
5185
        rng.CanCollide = false
5186
        rng.FormFactor = 3
5187
        rng.Name = "Ring"
5188
        rng.Size = Vector3.new(1, 1, 1)
5189
        rng.Transparency = 0.35
5190
        rng.TopSurface = 0
5191
        rng.BottomSurface = 0
5192
        rng.Position = torso.Position - Vector3.new(0,5,0)
5193
        rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
5194
        local rngm = Instance.new("SpecialMesh", rng)
5195
        rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
5196
        rngm.Scale = Vector3.new(1, 1, 2)
5197
            x = Instance.new("Sound",char)
5198
            x.SoundId = "http://www.roblox.com/asset/?id=169445602"
5199
            x.Looped = false
5200
            x.Pitch = .7
5201
            x.Volume = 1
5202
            x:Play()
5203
                coroutine.wrap(function()
5204
                for i = 1, 60, 2 do
5205
                rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
5206
                rng.Transparency = i/60
5207
                wait()
5208
                end
5209
                wait()
5210
                rng:Destroy()
5211
                end)()
5212
            hum.WalkSpeed = 100
5213
        BV = Instance.new("BodyVelocity", torso)
5214
        BV.maxForce = Vector3.new(0,200000,0)
5215
        BV.P = 240000
5216
        BV.velocity = Vector3.new(0,700,0)
5217
    for i = 1, 20 do
5218
        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)
5219
        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)
5220
        larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0,     math.rad(-20)), 0.7)
5221
        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)
5222
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
5223
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
5224
        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)
5225
        if Debounces.on == false then break end
5226
        wait()
5227
    end
5228
x:Destroy()
5229
BV:Destroy()
5230
    --[[for i = 1, 30 doc
5231
        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)
5232
        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)
5233
        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)
5234
        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)
5235
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
5236
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0),     0.3)
5237
        if Debounces.on == false then break end
5238
        wait()
5239
    end]]--
5240
if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
5241
    for i = 1, 30 do
5242
        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)
5243
        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)
5244
        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)
5245
        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)
5246
        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)
5247
        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)
5248
        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)
5249
        if Debounces.on == false then break end
5250
        wait()
5251
    end
5252
end
5253
Debounces.on = false
5254
Debounces.NoIdl = false
5255
local ry,ht,ps=nil,nil,nil
5256
while ht==nil do
5257
        ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
5258
        wait()
5259
end
5260
z = Instance.new("Sound",char)
5261
z.SoundId = "rbxassetid://142070127"
5262
z.Volume = 1
5263
wait(.1)
5264
z:Play()
5265
Landing()
5266
hum.WalkSpeed = 8
5267
if Debounces.CanAttack == false then
5268
Debounces.CanAttack = true
5269
end
5270
end
5271
end
5272
end)
5273
----------------------------------------------------
5274
Grab = false
5275
mouse.KeyDown:connect(function(key)
5276
    if key == "z" then
5277
        Debounces.on = true
5278
        Debounces.NoIdl = true
5279
        if Grab == false then
5280
        gp = nil
5281
        con1=larm.Touched:connect(function(hit) -- this is grab
5282
            ht = hit.Parent
5283
            hum1=ht:FindFirstChild('Humanoid')
5284
            if hum1 ~= nil then
5285
                hum1.PlatformStand=true
5286
                gp = ht
5287
                Grab = true
5288
                asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
5289
                asd.Parent = larm
5290
                asd.Name = "asd"
5291
                asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
5292
                                con1:disconnect()
5293
            elseif hum1 ~= nil then
5294
                con1:disconnect()
5295
                wait() return
5296
            end
5297
        end)
5298
        for i = 1, 18 do
5299
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
5300
            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)
5301
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
5302
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
5303
            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)
5304
            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)
5305
            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)
5306
            if Debounces.on == false then break end
5307
            wait()
5308
        end
5309
    con1:disconnect()
5310
    Debounces.on = false
5311
    Debounces.NoIdl = false
5312
    elseif Grab == true then
5313
        Grab = false
5314
    for i = 1, 20 do
5315
        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)
5316
        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)
5317
        hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
5318
        torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
5319
        lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
5320
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
5321
        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)
5322
        if Debounces.on == false then end
5323
        wait()
5324
    end
5325
        if gp ~= nil then
5326
        for i,v in pairs(larm:GetChildren()) do
5327
            if v.Name == "asd" and v:IsA("Weld") then
5328
                v:Remove()
5329
            end
5330
        end
5331
        bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
5332
        bv.maxForce = Vector3.new(400000, 400000, 400000)
5333
        bv.P = 125000
5334
        bv.velocity = char.Head.CFrame.lookVector * 200
5335
        for i = 1, 12 do
5336
            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)
5337
            if Debounces.on == false then end
5338
            wait()
5339
        end--
5340
        ht=nil
5341
        Spawn(function()
5342
            wait(0.5)
5343
            bv:Destroy()
5344
        end)
5345
        Debounces.on = false
5346
        Debounces.NoIdl = false
5347
        elseif ht == nil then wait()
5348
        Grab = false
5349
        Debounces.on = false
5350
        Debounces.NoIdl = false
5351
            end
5352
        end
5353
    end
5354
end)
5355
----------------------------------------------------
5356
mouse.KeyDown:connect(function(key)
5357
    if string.byte(key) == 52 then
5358
        char.Humanoid.WalkSpeed = 21
5359
    end
5360
end)
5361
mouse.KeyUp:connect(function(key)
5362
    if string.byte(key) == 52 then
5363
        char.Humanoid.WalkSpeed = 5
5364
    end
5365
end)
5366
----------------------------------------------------
5367
Change = false
5368
mouse.KeyDown:connect(function(key)
5369
    if key == "n" then
5370
        if Change == false then
5371
            Change = true
5372
        stanceToggle = "Normal2"
5373
    elseif Change == true then
5374
        Change = false
5375
        stanceToggle = "Normal"
5376
        end
5377
    end
5378
end)
5379
----------------------------------------------------
5380
local animpose = "Idle"
5381
local lastanimpose = "Idle"
5382
local sine = 0
5383
local change = 1
5384
local val = 0
5385
local ffing = false
5386
local och = 0
5387
----------------------------------------------------
5388
game:GetService("RunService").RenderStepped:connect(function()
5389
--[[if char.Humanoid.Jump == true then
5390
jump = true
5391
else
5392
jump = false
5393
end]]
5394
char.Humanoid.FreeFalling:connect(function(f)
5395
if f then
5396
ffing = true
5397
else
5398
ffing = false
5399
end
5400
end)
5401
sine = sine + change
5402
if jumpn == true then
5403
animpose = "Jumping"
5404
elseif ffing == true then
5405
animpose = "Freefalling"
5406
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
5407
animpose = "Idle"
5408
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
5409
animpose = "Walking"
5410
elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
5411
animpose = "Running"
5412
end
5413
if animpose ~= lastanimpose then
5414
sine = 0
5415
if Debounces.NoIdl == false then
5416
if animpose == "Idle" then
5417
for i = 1, 2 do
5418
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)
5419
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)
5420
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
5421
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
5422
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
5423
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
5424
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)
5425
end
5426
elseif animpose == "Walking" then
5427
for i = 1, 2 do
5428
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)
5429
larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
5430
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)
5431
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
5432
lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
5433
rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
5434
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)
5435
end
5436
elseif animpose == "Running" then
5437
for i = 1, 2 do
5438
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)
5439
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)
5440
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)
5441
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)
5442
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)
5443
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)
5444
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)
5445
end
5446
rs:wait(2)
5447
end
5448
else
5449
end
5450
end
5451
lastanimpose = animpose
5452
if Debounces.NoIdl == false then
5453
if animpose == "Idle" then
5454
if stanceToggle == "Normal" then
5455
change = 0.5
5456
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)
5457
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)
5458
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)
5459
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
5460
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)
5461
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)
5462
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)
5463
elseif stanceToggle == "Sitting" then
5464
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)
5465
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)
5466
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)
5467
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)
5468
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)
5469
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)
5470
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)
5471
elseif stanceToggle == "Normal2" then
5472
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)
5473
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)
5474
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)
5475
torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
5476
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)
5477
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)
5478
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)
5479
end
5480
elseif animpose == "Walking" then
5481
if stanceToggle == "Normal" then
5482
change = 1
5483
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)
5484
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)
5485
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)
5486
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)
5487
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)
5488
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)
5489
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)
5490
elseif stanceToggle == "Normal2" then
5491
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)
5492
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)
5493
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)
5494
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)
5495
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)
5496
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)
5497
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)
5498
end
5499
elseif animpose == "Running" then
5500
change = 1
5501
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)
5502
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)
5503
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)
5504
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)
5505
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)
5506
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)
5507
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)
5508
end
5509
end
5510
och=och+1
5511
for _,v in pairs(orbt) do
5512
        pcall(function()
5513
                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)))
5514
        end)
5515
end
5516
for _,v in pairs(stlt) do
5517
        pcall(function()
5518
                v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
5519
        end)
5520
end
5521
for _,v in pairs(chot) do
5522
        pcall(function()
5523
                v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
5524
                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))
5525
        end)
5526
end
5527
for _,v in pairs(cfxt) do
5528
        pcall(function()
5529
                local vs=v.Mesh.Scale
5530
                v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
5531
                v.Transparency=v.Transparency+0.05
5532
        end)
5533
end
5534
for _,v in pairs(pfxt) do
5535
        pcall(function()
5536
                local vs=v.Mesh.Scale
5537
                v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
5538
                v.Transparency=v.Transparency+0.025
5539
        end)
5540
end
5541
end)
5542
--N3xul Animated Sky
5543
local runDummyScript = function(f,scri)
5544
local oldenv = getfenv(f)
5545
local newenv = setmetatable({}, {
5546
__index = function(_, k)
5547
if k:lower() == 'script' then
5548
return scri
5549
else
5550
return oldenv[k]
5551
end
5552
end
5553
})
5554
setfenv(f, newenv)
5555
ypcall(function() f() end)
5556
end
5557
cors = {}
5558
mas = Instance.new("Model",game:GetService("Lighting")) 
5559
mas.Name = "CompiledModel"
5560
o1 = Instance.new("Model")
5561
o2 = Instance.new("Model")
5562
o3 = Instance.new("Part")
5563
o4 = Instance.new("SpecialMesh")
5564
o5 = Instance.new("Part")
5565
o6 = Instance.new("SpecialMesh")
5566
o7 = Instance.new("Part")
5567
o8 = Instance.new("SpecialMesh")
5568
o9 = Instance.new("Part")
5569
o10 = Instance.new("SpecialMesh")
5570
o11 = Instance.new("Part")
5571
o12 = Instance.new("SpecialMesh")
5572
o13 = Instance.new("Part")
5573
o14 = Instance.new("SpecialMesh")
5574
o15 = Instance.new("Part")
5575
o16 = Instance.new("SpecialMesh")
5576
o17 = Instance.new("Part")
5577
o18 = Instance.new("SpecialMesh")
5578
o19 = Instance.new("Part")
5579
o20 = Instance.new("SpecialMesh")
5580
o21 = Instance.new("Part")
5581
o22 = Instance.new("SpecialMesh")
5582
o23 = Instance.new("Part")
5583
o24 = Instance.new("SpecialMesh")
5584
o25 = Instance.new("Part")
5585
o26 = Instance.new("SpecialMesh")
5586
o27 = Instance.new("Part")
5587
o28 = Instance.new("SpecialMesh")
5588
o29 = Instance.new("Part")
5589
o30 = Instance.new("SpecialMesh")
5590
o31 = Instance.new("Part")
5591
o32 = Instance.new("SpecialMesh")
5592
o33 = Instance.new("Part")
5593
o34 = Instance.new("SpecialMesh")
5594
o35 = Instance.new("Part")
5595
o36 = Instance.new("SpecialMesh")
5596
o37 = Instance.new("Part")
5597
o38 = Instance.new("SpecialMesh")
5598
o39 = Instance.new("Part")
5599
o40 = Instance.new("SpecialMesh")
5600
o41 = Instance.new("Part")
5601
o42 = Instance.new("SpecialMesh")
5602
o43 = Instance.new("Part")
5603
o44 = Instance.new("SpecialMesh")
5604
o45 = Instance.new("Part")
5605
o46 = Instance.new("SpecialMesh")
5606
o47 = Instance.new("Part")
5607
o48 = Instance.new("SpecialMesh")
5608
o49 = Instance.new("Part")
5609
o50 = Instance.new("SpecialMesh")
5610
o51 = Instance.new("Part")
5611
o52 = Instance.new("SpecialMesh")
5612
o53 = Instance.new("Part")
5613
o54 = Instance.new("SpecialMesh")
5614
o55 = Instance.new("Part")
5615
o56 = Instance.new("SpecialMesh")
5616
o57 = Instance.new("Part")
5617
o58 = Instance.new("SpecialMesh")
5618
o59 = Instance.new("Part")
5619
o60 = Instance.new("SpecialMesh")
5620
o61 = Instance.new("Part")
5621
o62 = Instance.new("SpecialMesh")
5622
o63 = Instance.new("Part")
5623
o64 = Instance.new("SpecialMesh")
5624
o65 = Instance.new("Part")
5625
o66 = Instance.new("SpecialMesh")
5626
o67 = Instance.new("Script")
5627
o1.Name = "$_N3xul Sky"
5628
o1.Parent = mas
5629
o2.Name = "SKY IS DA LIMIT"
5630
o2.Parent = o1
5631
o3.Name = "Brick"
5632
o3.Parent = o2
5633
o3.Material = Enum.Material.Neon
5634
o3.BrickColor = BrickColor.new("Royal purple")
5635
o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
5636
o3.Rotation = Vector3.new(96.8799973, 29.4200001, 64.2200012)
5637
o3.Anchored = true
5638
o3.CanCollide = false
5639
o3.Size = Vector3.new(1, 2.4000001, 1)
5640
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)
5641
o3.BottomSurface = Enum.SurfaceType.Smooth
5642
o3.TopSurface = Enum.SurfaceType.Smooth
5643
o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
5644
o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
5645
o3.Orientation = Vector3.new(59.8600006, 101.989998, 168.020004)
5646
o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
5647
o4.Parent = o3
5648
o4.MeshId = "http://www.roblox.com/asset/?id=1125478"
5649
o4.Offset = Vector3.new(2, 2, 2)
5650
o4.Scale = Vector3.new(1000, 1000, 1000)
5651
o4.VertexColor = Vector3.new(0.300000012, 4, 9)
5652
o4.MeshType = Enum.MeshType.FileMesh
5653
o4.Scale = Vector3.new(1000, 1000, 1000)
5654
o5.Name = "Brick"
5655
o5.Parent = o2
5656
o5.Material = Enum.Material.Neon
5657
o5.BrickColor = BrickColor.new("Royal purple")
5658
o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
5659
o5.Rotation = Vector3.new(55.5499992, -81.6699982, 96.1299973)
5660
o5.Anchored = true
5661
o5.CanCollide = false
5662
o5.Size = Vector3.new(1, 2.4000001, 1)
5663
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)
5664
o5.BottomSurface = Enum.SurfaceType.Smooth
5665
o5.TopSurface = Enum.SurfaceType.Smooth
5666
o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
5667
o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
5668
o5.Orientation = Vector3.new(6.86000013, -85.2600021, 40.8600006)
5669
o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
5670
o6.Parent = o5
5671
o6.MeshId = "http://www.roblox.com/asset/?id=1125478"
5672
o6.Offset = Vector3.new(2, 2, 2)
5673
o6.Scale = Vector3.new(1000, 1000, 1000)
5674
o6.VertexColor = Vector3.new(0.300000012, 4, 9)
5675
o6.MeshType = Enum.MeshType.FileMesh
5676
o6.Scale = Vector3.new(1000, 1000, 1000)
5677
o7.Name = "Brick"
5678
o7.Parent = o2
5679
o7.Material = Enum.Material.Neon
5680
o7.BrickColor = BrickColor.new("Royal purple")
5681
o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
5682
o7.Rotation = Vector3.new(60.2599983, -71.0599976, 96.9499969)
5683
o7.Anchored = true
5684
o7.CanCollide = false
5685
o7.Size = Vector3.new(1, 2.4000001, 1)
5686
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)
5687
o7.BottomSurface = Enum.SurfaceType.Smooth
5688
o7.TopSurface = Enum.SurfaceType.Smooth
5689
o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
5690
o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
5691
o7.Orientation = Vector3.new(16.3700008, -80.3399963, 38.0800018)
5692
o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
5693
o8.Parent = o7
5694
o8.MeshId = "http://www.roblox.com/asset/?id=1125478"
5695
o8.Offset = Vector3.new(2, 2, 2)
5696
o8.Scale = Vector3.new(1000, 1000, 1000)
5697
o8.VertexColor = Vector3.new(0.300000012, 4, 9)
5698
o8.MeshType = Enum.MeshType.FileMesh
5699
o8.Scale = Vector3.new(1000, 1000, 1000)
5700
o9.Name = "Brick"
5701
o9.Parent = o2
5702
o9.Material = Enum.Material.Neon
5703
o9.BrickColor = BrickColor.new("Royal purple")
5704
o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
5705
o9.Rotation = Vector3.new(63.0400009, -60.4500008, 95.7099991)
5706
o9.Anchored = true
5707
o9.CanCollide = false
5708
o9.Size = Vector3.new(1, 2.4000001, 1)
5709
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)
5710
o9.BottomSurface = Enum.SurfaceType.Smooth
5711
o9.TopSurface = Enum.SurfaceType.Smooth
5712
o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
5713
o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
5714
o9.Orientation = Vector3.new(26.0699997, -75.5899963, 36.0200005)
5715
o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
5716
o10.Parent = o9
5717
o10.MeshId = "http://www.roblox.com/asset/?id=1125478"
5718
o10.Offset = Vector3.new(2, 2, 2)
5719
o10.Scale = Vector3.new(1000, 1000, 1000)
5720
o10.VertexColor = Vector3.new(0.300000012, 4, 9)
5721
o10.MeshType = Enum.MeshType.FileMesh
5722
o10.Scale = Vector3.new(1000, 1000, 1000)
5723
o11.Name = "Brick"
5724
o11.Parent = o2
5725
o11.Material = Enum.Material.Neon
5726
o11.BrickColor = BrickColor.new("Royal purple")
5727
o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
5728
o11.Rotation = Vector3.new(84.7699966, 11.3299999, 76.1299973)
5729
o11.Anchored = true
5730
o11.CanCollide = false
5731
o11.Size = Vector3.new(1, 2.4000001, 1)
5732
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)
5733
o11.BottomSurface = Enum.SurfaceType.Smooth
5734
o11.TopSurface = Enum.SurfaceType.Smooth
5735
o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
5736
o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
5737
o11.Orientation = Vector3.new(77.5299988, 65.5500031, 141.160004)
5738
o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
5739
o12.Parent = o11
5740
o12.MeshId = "http://www.roblox.com/asset/?id=1125478"
5741
o12.Offset = Vector3.new(2, 2, 2)
5742
o12.Scale = Vector3.new(1000, 1000, 1000)
5743
o12.VertexColor = Vector3.new(0.300000012, 4, 9)
5744
o12.MeshType = Enum.MeshType.FileMesh
5745
o12.Scale = Vector3.new(1000, 1000, 1000)
5746
o13.Name = "Brick"
5747
o13.Parent = o2
5748
o13.Material = Enum.Material.Neon
5749
o13.BrickColor = BrickColor.new("Royal purple")
5750
o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
5751
o13.Rotation = Vector3.new(90.1399994, 20.6700001, 70.8600006)
5752
o13.Anchored = true
5753
o13.CanCollide = false
5754
o13.Size = Vector3.new(1, 2.4000001, 1)
5755
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)
5756
o13.BottomSurface = Enum.SurfaceType.Smooth
5757
o13.TopSurface = Enum.SurfaceType.Smooth
5758
o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
5759
o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
5760
o13.Orientation = Vector3.new(69.3300018, 90.3799973, 161.270004)
5761
o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
5762
o14.Parent = o13
5763
o14.MeshId = "http://www.roblox.com/asset/?id=1125478"
5764
o14.Offset = Vector3.new(2, 2, 2)
5765
o14.Scale = Vector3.new(1000, 1000, 1000)
5766
o14.VertexColor = Vector3.new(0.300000012, 4, 9)
5767
o14.MeshType = Enum.MeshType.FileMesh
5768
o14.Scale = Vector3.new(1000, 1000, 1000)
5769
o15.Name = "Brick"
5770
o15.Parent = o2
5771
o15.Material = Enum.Material.Neon
5772
o15.BrickColor = BrickColor.new("Royal purple")
5773
o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
5774
o15.Rotation = Vector3.new(160.410004, 49.5999985, 1.05999994)
5775
o15.Anchored = true
5776
o15.CanCollide = false
5777
o15.Size = Vector3.new(1, 2.4000001, 1)
5778
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)
5779
o15.BottomSurface = Enum.SurfaceType.Smooth
5780
o15.TopSurface = Enum.SurfaceType.Smooth
5781
o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
5782
o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
5783
o15.Orientation = Vector3.new(12.5500002, 128.720001, 165.899994)
5784
o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
5785
o16.Parent = o15
5786
o16.MeshId = "http://www.roblox.com/asset/?id=1125478"
5787
o16.Offset = Vector3.new(2, 2, 2)
5788
o16.Scale = Vector3.new(1000, 1000, 1000)
5789
o16.VertexColor = Vector3.new(0.300000012, 4, 9)
5790
o16.MeshType = Enum.MeshType.FileMesh
5791
o16.Scale = Vector3.new(1000, 1000, 1000)
5792
o17.Name = "Brick"
5793
o17.Parent = o2
5794
o17.Material = Enum.Material.Neon
5795
o17.BrickColor = BrickColor.new("Royal purple")
5796
o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
5797
o17.Rotation = Vector3.new(70.6100006, -28.9300003, 89.6299973)
5798
o17.Anchored = true
5799
o17.CanCollide = false
5800
o17.Size = Vector3.new(1, 2.4000001, 1)
5801
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)
5802
o17.BottomSurface = Enum.SurfaceType.Smooth
5803
o17.TopSurface = Enum.SurfaceType.Smooth
5804
o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
5805
o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
5806
o17.Orientation = Vector3.new(55.6500015, -59.0099983, 35.6699982)
5807
o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
5808
o18.Parent = o17
5809
o18.MeshId = "http://www.roblox.com/asset/?id=1125478"
5810
o18.Offset = Vector3.new(2, 2, 2)
5811
o18.Scale = Vector3.new(1000, 1000, 1000)
5812
o18.VertexColor = Vector3.new(0.300000012, 4, 9)
5813
o18.MeshType = Enum.MeshType.FileMesh
5814
o18.Scale = Vector3.new(1000, 1000, 1000)
5815
o19.Name = "Brick"
5816
o19.Parent = o2
5817
o19.Material = Enum.Material.Neon
5818
o19.BrickColor = BrickColor.new("Royal purple")
5819
o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
5820
o19.Rotation = Vector3.new(68, -39.3699989, 91.9400024)
5821
o19.Anchored = true
5822
o19.CanCollide = false
5823
o19.Size = Vector3.new(1, 2.4000001, 1)
5824
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)
5825
o19.BottomSurface = Enum.SurfaceType.Smooth
5826
o19.TopSurface = Enum.SurfaceType.Smooth
5827
o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
5828
o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
5829
o19.Orientation = Vector3.new(45.7900009, -65.4599991, 34.4300003)
5830
o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
5831
o20.Parent = o19
5832
o20.MeshId = "http://www.roblox.com/asset/?id=1125478"
5833
o20.Offset = Vector3.new(2, 2, 2)
5834
o20.Scale = Vector3.new(1000, 1000, 1000)
5835
o20.VertexColor = Vector3.new(0.300000012, 4, 9)
5836
o20.MeshType = Enum.MeshType.FileMesh
5837
o20.Scale = Vector3.new(1000, 1000, 1000)
5838
o21.Name = "Brick"
5839
o21.Parent = o2
5840
o21.Material = Enum.Material.Neon
5841
o21.BrickColor = BrickColor.new("Royal purple")
5842
o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
5843
o21.Rotation = Vector3.new(65.5299988, -49.8899994, 93.9800034)
5844
o21.Anchored = true
5845
o21.CanCollide = false
5846
o21.Size = Vector3.new(1, 2.4000001, 1)
5847
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)
5848
o21.BottomSurface = Enum.SurfaceType.Smooth
5849
o21.TopSurface = Enum.SurfaceType.Smooth
5850
o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
5851
o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
5852
o21.Orientation = Vector3.new(35.9000015, -70.7600021, 34.7400017)
5853
o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
5854
o22.Parent = o21
5855
o22.MeshId = "http://www.roblox.com/asset/?id=1125478"
5856
o22.Offset = Vector3.new(2, 2, 2)
5857
o22.Scale = Vector3.new(1000, 1000, 1000)
5858
o22.VertexColor = Vector3.new(0.300000012, 4, 9)
5859
o22.MeshType = Enum.MeshType.FileMesh
5860
o22.Scale = Vector3.new(1000, 1000, 1000)
5861
o23.Name = "Brick"
5862
o23.Parent = o2
5863
o23.Material = Enum.Material.Neon
5864
o23.BrickColor = BrickColor.new("Royal purple")
5865
o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
5866
o23.Rotation = Vector3.new(73.4700012, -18.5900002, 87.0100021)
5867
o23.Anchored = true
5868
o23.CanCollide = false
5869
o23.Size = Vector3.new(1, 2.4000001, 1)
5870
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)
5871
o23.BottomSurface = Enum.SurfaceType.Smooth
5872
o23.TopSurface = Enum.SurfaceType.Smooth
5873
o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
5874
o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
5875
o23.Orientation = Vector3.new(65.3199997, -49.7700005, 39.9599991)
5876
o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
5877
o24.Parent = o23
5878
o24.MeshId = "http://www.roblox.com/asset/?id=1125478"
5879
o24.Offset = Vector3.new(2, 2, 2)
5880
o24.Scale = Vector3.new(1000, 1000, 1000)
5881
o24.VertexColor = Vector3.new(0.300000012, 4, 9)
5882
o24.MeshType = Enum.MeshType.FileMesh
5883
o24.Scale = Vector3.new(1000, 1000, 1000)
5884
o25.Name = "Brick"
5885
o25.Parent = o2
5886
o25.Material = Enum.Material.Neon
5887
o25.BrickColor = BrickColor.new("Royal purple")
5888
o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
5889
o25.Rotation = Vector3.new(76.6699982, -8.39000034, 83.9700012)
5890
o25.Anchored = true
5891
o25.CanCollide = false
5892
o25.Size = Vector3.new(1, 2.4000001, 1)
5893
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)
5894
o25.BottomSurface = Enum.SurfaceType.Smooth
5895
o25.TopSurface = Enum.SurfaceType.Smooth
5896
o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
5897
o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
5898
o25.Orientation = Vector3.new(74.2900009, -32.6100006, 52.3400002)
5899
o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
5900
o26.Parent = o25
5901
o26.MeshId = "http://www.roblox.com/asset/?id=1125478"
5902
o26.Offset = Vector3.new(2, 2, 2)
5903
o26.Scale = Vector3.new(1000, 1000, 1000)
5904
o26.VertexColor = Vector3.new(0.300000012, 4, 9)
5905
o26.MeshType = Enum.MeshType.FileMesh
5906
o26.Scale = Vector3.new(1000, 1000, 1000)
5907
o27.Name = "Brick"
5908
o27.Parent = o2
5909
o27.Material = Enum.Material.Neon
5910
o27.BrickColor = BrickColor.new("Royal purple")
5911
o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
5912
o27.Rotation = Vector3.new(80.3700027, 1.61000001, 80.4100037)
5913
o27.Anchored = true
5914
o27.CanCollide = false
5915
o27.Size = Vector3.new(1, 2.4000001, 1)
5916
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)
5917
o27.BottomSurface = Enum.SurfaceType.Smooth
5918
o27.TopSurface = Enum.SurfaceType.Smooth
5919
o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
5920
o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
5921
o27.Orientation = Vector3.new(80.2399979, 9.53999996, 89.8199997)
5922
o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
5923
o28.Parent = o27
5924
o28.MeshId = "http://www.roblox.com/asset/?id=1125478"
5925
o28.Offset = Vector3.new(2, 2, 2)
5926
o28.Scale = Vector3.new(1000, 1000, 1000)
5927
o28.VertexColor = Vector3.new(0.300000012, 4, 9)
5928
o28.MeshType = Enum.MeshType.FileMesh
5929
o28.Scale = Vector3.new(1000, 1000, 1000)
5930
o29.Name = "Brick"
5931
o29.Parent = o2
5932
o29.Material = Enum.Material.Neon
5933
o29.BrickColor = BrickColor.new("Royal purple")
5934
o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
5935
o29.Rotation = Vector3.new(-133.990005, -24.3700008, -63.5200005)
5936
o29.Anchored = true
5937
o29.CanCollide = false
5938
o29.Size = Vector3.new(1, 2.4000001, 1)
5939
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)
5940
o29.BottomSurface = Enum.SurfaceType.Smooth
5941
o29.TopSurface = Enum.SurfaceType.Smooth
5942
o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
5943
o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
5944
o29.Orientation = Vector3.new(-40.9500008, -146.880005, 93.3300018)
5945
o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
5946
o30.Parent = o29
5947
o30.MeshId = "http://www.roblox.com/asset/?id=1125478"
5948
o30.Offset = Vector3.new(2, 2, 2)
5949
o30.Scale = Vector3.new(1000, 1000, 1000)
5950
o30.VertexColor = Vector3.new(0.300000012, 4, 9)
5951
o30.MeshType = Enum.MeshType.FileMesh
5952
o30.Scale = Vector3.new(1000, 1000, 1000)
5953
o31.Name = "Brick"
5954
o31.Parent = o2
5955
o31.Material = Enum.Material.Neon
5956
o31.BrickColor = BrickColor.new("Royal purple")
5957
o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
5958
o31.Rotation = Vector3.new(-131.279999, -34.7700005, -65.9599991)
5959
o31.Anchored = true
5960
o31.CanCollide = false
5961
o31.Size = Vector3.new(1, 2.4000001, 1)
5962
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)
5963
o31.BottomSurface = Enum.SurfaceType.Smooth
5964
o31.TopSurface = Enum.SurfaceType.Smooth
5965
o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
5966
o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
5967
o31.Orientation = Vector3.new(-38.1100006, -133.539993, 81.0299988)
5968
o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
5969
o32.Parent = o31
5970
o32.MeshId = "http://www.roblox.com/asset/?id=1125478"
5971
o32.Offset = Vector3.new(2, 2, 2)
5972
o32.Scale = Vector3.new(1000, 1000, 1000)
5973
o32.VertexColor = Vector3.new(0.300000012, 4, 9)
5974
o32.MeshType = Enum.MeshType.FileMesh
5975
o32.Scale = Vector3.new(1000, 1000, 1000)
5976
o33.Name = "Brick"
5977
o33.Parent = o2
5978
o33.Material = Enum.Material.Neon
5979
o33.BrickColor = BrickColor.new("Royal purple")
5980
o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
5981
o33.Rotation = Vector3.new(-128.759995, -45.2599983, -68.1200027)
5982
o33.Anchored = true
5983
o33.CanCollide = false
5984
o33.Size = Vector3.new(1, 2.4000001, 1)
5985
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)
5986
o33.BottomSurface = Enum.SurfaceType.Smooth
5987
o33.TopSurface = Enum.SurfaceType.Smooth
5988
o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
5989
o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
5990
o33.Orientation = Vector3.new(-33.2900009, -121.809998, 70.3799973)
5991
o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
5992
o34.Parent = o33
5993
o34.MeshId = "http://www.roblox.com/asset/?id=1125478"
5994
o34.Offset = Vector3.new(2, 2, 2)
5995
o34.Scale = Vector3.new(1000, 1000, 1000)
5996
o34.VertexColor = Vector3.new(0.300000012, 4, 9)
5997
o34.MeshType = Enum.MeshType.FileMesh
5998
o34.Scale = Vector3.new(1000, 1000, 1000)
5999
o35.Name = "Brick"
6000
o35.Parent = o2
6001
o35.Material = Enum.Material.Neon
6002
o35.BrickColor = BrickColor.new("Royal purple")
6003
o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
6004
o35.Rotation = Vector3.new(-126.300003, -55.8100014, -69.9899979)
6005
o35.Anchored = true
6006
o35.CanCollide = false
6007
o35.Size = Vector3.new(1, 2.4000001, 1)
6008
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)
6009
o35.BottomSurface = Enum.SurfaceType.Smooth
6010
o35.TopSurface = Enum.SurfaceType.Smooth
6011
o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
6012
o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
6013
o35.Orientation = Vector3.new(-26.9300003, -111.910004, 61.6199989)
6014
o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
6015
o36.Parent = o35
6016
o36.MeshId = "http://www.roblox.com/asset/?id=1125478"
6017
o36.Offset = Vector3.new(2, 2, 2)
6018
o36.Scale = Vector3.new(1000, 1000, 1000)
6019
o36.VertexColor = Vector3.new(0.300000012, 4, 9)
6020
o36.MeshType = Enum.MeshType.FileMesh
6021
o36.Scale = Vector3.new(1000, 1000, 1000)
6022
o37.Name = "Brick"
6023
o37.Parent = o2
6024
o37.Material = Enum.Material.Neon
6025
o37.BrickColor = BrickColor.new("Royal purple")
6026
o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
6027
o37.Rotation = Vector3.new(-123.709999, -66.4000015, -71.4899979)
6028
o37.Anchored = true
6029
o37.CanCollide = false
6030
o37.Size = Vector3.new(1, 2.4000001, 1)
6031
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)
6032
o37.BottomSurface = Enum.SurfaceType.Smooth
6033
o37.TopSurface = Enum.SurfaceType.Smooth
6034
o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
6035
o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
6036
o37.Orientation = Vector3.new(-19.4599991, -103.629997, 54.5600014)
6037
o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
6038
o38.Parent = o37
6039
o38.MeshId = "http://www.roblox.com/asset/?id=1125478"
6040
o38.Offset = Vector3.new(2, 2, 2)
6041
o38.Scale = Vector3.new(1000, 1000, 1000)
6042
o38.VertexColor = Vector3.new(0.300000012, 4, 9)
6043
o38.MeshType = Enum.MeshType.FileMesh
6044
o38.Scale = Vector3.new(1000, 1000, 1000)
6045
o39.Name = "Brick"
6046
o39.Parent = o2
6047
o39.Material = Enum.Material.Neon
6048
o39.BrickColor = BrickColor.new("Royal purple")
6049
o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
6050
o39.Rotation = Vector3.new(-120.32, -77.0100021, -72.0400009)
6051
o39.Anchored = true
6052
o39.CanCollide = false
6053
o39.Size = Vector3.new(1, 2.4000001, 1)
6054
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)
6055
o39.BottomSurface = Enum.SurfaceType.Smooth
6056
o39.TopSurface = Enum.SurfaceType.Smooth
6057
o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
6058
o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
6059
o39.Orientation = Vector3.new(-11.1899996, -96.6399994, 48.9300003)
6060
o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
6061
o40.Parent = o39
6062
o40.MeshId = "http://www.roblox.com/asset/?id=1125478"
6063
o40.Offset = Vector3.new(2, 2, 2)
6064
o40.Scale = Vector3.new(1000, 1000, 1000)
6065
o40.VertexColor = Vector3.new(0.300000012, 4, 9)
6066
o40.MeshType = Enum.MeshType.FileMesh
6067
o40.Scale = Vector3.new(1000, 1000, 1000)
6068
o41.Name = "Brick"
6069
o41.Parent = o2
6070
o41.Material = Enum.Material.Neon
6071
o41.BrickColor = BrickColor.new("Royal purple")
6072
o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
6073
o41.Rotation = Vector3.new(-104.620003, -87.5599976, -60.2000008)
6074
o41.Anchored = true
6075
o41.CanCollide = false
6076
o41.Size = Vector3.new(1, 2.4000001, 1)
6077
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)
6078
o41.BottomSurface = Enum.SurfaceType.Smooth
6079
o41.TopSurface = Enum.SurfaceType.Smooth
6080
o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
6081
o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
6082
o41.Orientation = Vector3.new(-2.3599999, -90.6200027, 44.4300003)
6083
o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
6084
o42.Parent = o41
6085
o42.MeshId = "http://www.roblox.com/asset/?id=1125478"
6086
o42.Offset = Vector3.new(2, 2, 2)
6087
o42.Scale = Vector3.new(1000, 1000, 1000)
6088
o42.VertexColor = Vector3.new(0.300000012, 4, 9)
6089
o42.MeshType = Enum.MeshType.FileMesh
6090
o42.Scale = Vector3.new(1000, 1000, 1000)
6091
o43.Name = "Brick"
6092
o43.Parent = o2
6093
o43.Material = Enum.Material.Neon
6094
o43.BrickColor = BrickColor.new("Royal purple")
6095
o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
6096
o43.Rotation = Vector3.new(105.5, 37.2799988, 55.6800003)
6097
o43.Anchored = true
6098
o43.CanCollide = false
6099
o43.Size = Vector3.new(1, 2.4000001, 1)
6100
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)
6101
o43.BottomSurface = Enum.SurfaceType.Smooth
6102
o43.TopSurface = Enum.SurfaceType.Smooth
6103
o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
6104
o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
6105
o43.Orientation = Vector3.new(50.0600014, 109.339996, 170.279999)
6106
o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
6107
o44.Parent = o43
6108
o44.MeshId = "http://www.roblox.com/asset/?id=1125478"
6109
o44.Offset = Vector3.new(2, 2, 2)
6110
o44.Scale = Vector3.new(1000, 1000, 1000)
6111
o44.VertexColor = Vector3.new(0.300000012, 4, 9)
6112
o44.MeshType = Enum.MeshType.FileMesh
6113
o44.Scale = Vector3.new(1000, 1000, 1000)
6114
o45.Name = "Brick"
6115
o45.Parent = o2
6116
o45.Material = Enum.Material.Neon
6117
o45.BrickColor = BrickColor.new("Royal purple")
6118
o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
6119
o45.Rotation = Vector3.new(116.610001, 43.8199997, 44.6500015)
6120
o45.Anchored = true
6121
o45.CanCollide = false
6122
o45.Size = Vector3.new(1, 2.4000001, 1)
6123
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)
6124
o45.BottomSurface = Enum.SurfaceType.Smooth
6125
o45.TopSurface = Enum.SurfaceType.Smooth
6126
o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
6127
o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
6128
o45.Orientation = Vector3.new(40.1699982, 115.019997, 170.539993)
6129
o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
6130
o46.Parent = o45
6131
o46.MeshId = "http://www.roblox.com/asset/?id=1125478"
6132
o46.Offset = Vector3.new(2, 2, 2)
6133
o46.Scale = Vector3.new(1000, 1000, 1000)
6134
o46.VertexColor = Vector3.new(0.300000012, 4, 9)
6135
o46.MeshType = Enum.MeshType.FileMesh
6136
o46.Scale = Vector3.new(1000, 1000, 1000)
6137
o47.Name = "Brick"
6138
o47.Parent = o2
6139
o47.Material = Enum.Material.Neon
6140
o47.BrickColor = BrickColor.new("Royal purple")
6141
o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
6142
o47.Rotation = Vector3.new(130.539993, 48.4000015, 30.7999992)
6143
o47.Anchored = true
6144
o47.CanCollide = false
6145
o47.Size = Vector3.new(1, 2.4000001, 1)
6146
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)
6147
o47.BottomSurface = Enum.SurfaceType.Smooth
6148
o47.TopSurface = Enum.SurfaceType.Smooth
6149
o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
6150
o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
6151
o47.Orientation = Vector3.new(30.2999992, 119.989998, 169.639999)
6152
o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
6153
o48.Parent = o47
6154
o48.MeshId = "http://www.roblox.com/asset/?id=1125478"
6155
o48.Offset = Vector3.new(2, 2, 2)
6156
o48.Scale = Vector3.new(1000, 1000, 1000)
6157
o48.VertexColor = Vector3.new(0.300000012, 4, 9)
6158
o48.MeshType = Enum.MeshType.FileMesh
6159
o48.Scale = Vector3.new(1000, 1000, 1000)
6160
o49.Name = "Brick"
6161
o49.Parent = o2
6162
o49.Material = Enum.Material.Neon
6163
o49.BrickColor = BrickColor.new("Royal purple")
6164
o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
6165
o49.Rotation = Vector3.new(146.669998, 50.3100014, 14.7399998)
6166
o49.Anchored = true
6167
o49.CanCollide = false
6168
o49.Size = Vector3.new(1, 2.4000001, 1)
6169
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)
6170
o49.BottomSurface = Enum.SurfaceType.Smooth
6171
o49.TopSurface = Enum.SurfaceType.Smooth
6172
o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
6173
o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
6174
o49.Orientation = Vector3.new(20.5400009, 124.739998, 167.899994)
6175
o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
6176
o50.Parent = o49
6177
o50.MeshId = "http://www.roblox.com/asset/?id=1125478"
6178
o50.Offset = Vector3.new(2, 2, 2)
6179
o50.Scale = Vector3.new(1000, 1000, 1000)
6180
o50.VertexColor = Vector3.new(0.300000012, 4, 9)
6181
o50.MeshType = Enum.MeshType.FileMesh
6182
o50.Scale = Vector3.new(1000, 1000, 1000)
6183
o51.Name = "Brick"
6184
o51.Parent = o2
6185
o51.Material = Enum.Material.Neon
6186
o51.BrickColor = BrickColor.new("Royal purple")
6187
o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
6188
o51.Rotation = Vector3.new(175.460007, 46.1100006, -13.9099998)
6189
o51.Anchored = true
6190
o51.CanCollide = false
6191
o51.Size = Vector3.new(1, 2.4000001, 1)
6192
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)
6193
o51.BottomSurface = Enum.SurfaceType.Smooth
6194
o51.TopSurface = Enum.SurfaceType.Smooth
6195
o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
6196
o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
6197
o51.Orientation = Vector3.new(3.1400001, 133.800003, 162.809998)
6198
o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
6199
o52.Parent = o51
6200
o52.MeshId = "http://www.roblox.com/asset/?id=1125478"
6201
o52.Offset = Vector3.new(2, 2, 2)
6202
o52.Scale = Vector3.new(1000, 1000, 1000)
6203
o52.VertexColor = Vector3.new(0.300000012, 4, 9)
6204
o52.MeshType = Enum.MeshType.FileMesh
6205
o52.Scale = Vector3.new(1000, 1000, 1000)
6206
o53.Name = "Brick"
6207
o53.Parent = o2
6208
o53.Material = Enum.Material.Neon
6209
o53.BrickColor = BrickColor.new("Royal purple")
6210
o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
6211
o53.Rotation = Vector3.new(-172.199997, 40.3600006, -26.1700001)
6212
o53.Anchored = true
6213
o53.CanCollide = false
6214
o53.Size = Vector3.new(1, 2.4000001, 1)
6215
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)
6216
o53.BottomSurface = Enum.SurfaceType.Smooth
6217
o53.TopSurface = Enum.SurfaceType.Smooth
6218
o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
6219
o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
6220
o53.Orientation = Vector3.new(-5.94000006, 139.380005, 158.899994)
6221
o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
6222
o54.Parent = o53
6223
o54.MeshId = "http://www.roblox.com/asset/?id=1125478"
6224
o54.Offset = Vector3.new(2, 2, 2)
6225
o54.Scale = Vector3.new(1000, 1000, 1000)
6226
o54.VertexColor = Vector3.new(0.300000012, 4, 9)
6227
o54.MeshType = Enum.MeshType.FileMesh
6228
o54.Scale = Vector3.new(1000, 1000, 1000)
6229
o55.Name = "Brick"
6230
o55.Parent = o2
6231
o55.Material = Enum.Material.Neon
6232
o55.BrickColor = BrickColor.new("Royal purple")
6233
o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
6234
o55.Rotation = Vector3.new(-162.550003, 33, -35.7400017)
6235
o55.Anchored = true
6236
o55.CanCollide = false
6237
o55.Size = Vector3.new(1, 2.4000001, 1)
6238
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)
6239
o55.BottomSurface = Enum.SurfaceType.Smooth
6240
o55.TopSurface = Enum.SurfaceType.Smooth
6241
o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
6242
o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
6243
o55.Orientation = Vector3.new(-14.5600004, 145.75, 153.979996)
6244
o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
6245
o56.Parent = o55
6246
o56.MeshId = "http://www.roblox.com/asset/?id=1125478"
6247
o56.Offset = Vector3.new(2, 2, 2)
6248
o56.Scale = Vector3.new(1000, 1000, 1000)
6249
o56.VertexColor = Vector3.new(0.300000012, 4, 9)
6250
o56.MeshType = Enum.MeshType.FileMesh
6251
o56.Scale = Vector3.new(1000, 1000, 1000)
6252
o57.Name = "Brick"
6253
o57.Parent = o2
6254
o57.Material = Enum.Material.Neon
6255
o57.BrickColor = BrickColor.new("Royal purple")
6256
o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
6257
o57.Rotation = Vector3.new(-155.059998, 24.5900002, -43.1399994)
6258
o57.Anchored = true
6259
o57.CanCollide = false
6260
o57.Size = Vector3.new(1, 2.4000001, 1)
6261
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)
6262
o57.BottomSurface = Enum.SurfaceType.Smooth
6263
o57.TopSurface = Enum.SurfaceType.Smooth
6264
o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
6265
o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
6266
o57.Orientation = Vector3.new(-22.5499992, 153.220001, 147.809998)
6267
o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
6268
o58.Parent = o57
6269
o58.MeshId = "http://www.roblox.com/asset/?id=1125478"
6270
o58.Offset = Vector3.new(2, 2, 2)
6271
o58.Scale = Vector3.new(1000, 1000, 1000)
6272
o58.VertexColor = Vector3.new(0.300000012, 4, 9)
6273
o58.MeshType = Enum.MeshType.FileMesh
6274
o58.Scale = Vector3.new(1000, 1000, 1000)
6275
o59.Name = "Brick"
6276
o59.Parent = o2
6277
o59.Material = Enum.Material.Neon
6278
o59.BrickColor = BrickColor.new("Royal purple")
6279
o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
6280
o59.Rotation = Vector3.new(-149.139999, 15.4899998, -48.9599991)
6281
o59.Anchored = true
6282
o59.CanCollide = false
6283
o59.Size = Vector3.new(1, 2.4000001, 1)
6284
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)
6285
o59.BottomSurface = Enum.SurfaceType.Smooth
6286
o59.TopSurface = Enum.SurfaceType.Smooth
6287
o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
6288
o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
6289
o59.Orientation = Vector3.new(-29.6200008, 162.110001, 140.100006)
6290
o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
6291
o60.Parent = o59
6292
o60.MeshId = "http://www.roblox.com/asset/?id=1125478"
6293
o60.Offset = Vector3.new(2, 2, 2)
6294
o60.Scale = Vector3.new(1000, 1000, 1000)
6295
o60.VertexColor = Vector3.new(0.300000012, 4, 9)
6296
o60.MeshType = Enum.MeshType.FileMesh
6297
o60.Scale = Vector3.new(1000, 1000, 1000)
6298
o61.Name = "Brick"
6299
o61.Parent = o2
6300
o61.Material = Enum.Material.Neon
6301
o61.BrickColor = BrickColor.new("Royal purple")
6302
o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
6303
o61.Rotation = Vector3.new(-144.360001, 5.92000008, -53.6399994)
6304
o61.Anchored = true
6305
o61.CanCollide = false
6306
o61.Size = Vector3.new(1, 2.4000001, 1)
6307
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)
6308
o61.BottomSurface = Enum.SurfaceType.Smooth
6309
o61.TopSurface = Enum.SurfaceType.Smooth
6310
o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
6311
o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
6312
o61.Orientation = Vector3.new(-35.4199982, 172.729996, 130.589996)
6313
o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
6314
o62.Parent = o61
6315
o62.MeshId = "http://www.roblox.com/asset/?id=1125478"
6316
o62.Offset = Vector3.new(2, 2, 2)
6317
o62.Scale = Vector3.new(1000, 1000, 1000)
6318
o62.VertexColor = Vector3.new(0.300000012, 4, 9)
6319
o62.MeshType = Enum.MeshType.FileMesh
6320
o62.Scale = Vector3.new(1000, 1000, 1000)
6321
o63.Name = "Brick"
6322
o63.Parent = o2
6323
o63.Material = Enum.Material.Neon
6324
o63.BrickColor = BrickColor.new("Royal purple")
6325
o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
6326
o63.Rotation = Vector3.new(-140.380005, -3.97000003, -57.4799995)
6327
o63.Anchored = true
6328
o63.CanCollide = false
6329
o63.Size = Vector3.new(1, 2.4000001, 1)
6330
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)
6331
o63.BottomSurface = Enum.SurfaceType.Smooth
6332
o63.TopSurface = Enum.SurfaceType.Smooth
6333
o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
6334
o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
6335
o63.Orientation = Vector3.new(-39.5099983, -174.850006, 119.230003)
6336
o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
6337
o64.Parent = o63
6338
o64.MeshId = "http://www.roblox.com/asset/?id=1125478"
6339
o64.Offset = Vector3.new(2, 2, 2)
6340
o64.Scale = Vector3.new(1000, 1000, 1000)
6341
o64.VertexColor = Vector3.new(0.300000012, 4, 9)
6342
o64.MeshType = Enum.MeshType.FileMesh
6343
o64.Scale = Vector3.new(1000, 1000, 1000)
6344
o65.Name = "Brick"
6345
o65.Parent = o2
6346
o65.Material = Enum.Material.Neon
6347
o65.BrickColor = BrickColor.new("Royal purple")
6348
o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
6349
o65.Rotation = Vector3.new(-136.979996, -14.0900002, -60.7299995)
6350
o65.Anchored = true
6351
o65.CanCollide = false
6352
o65.Size = Vector3.new(1, 2.4000001, 1)
6353
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)
6354
o65.BottomSurface = Enum.SurfaceType.Smooth
6355
o65.TopSurface = Enum.SurfaceType.Smooth
6356
o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
6357
o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
6358
o65.Orientation = Vector3.new(-41.4300003, -161.050003, 106.470001)
6359
o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
6360
o66.Parent = o65
6361
o66.MeshId = "http://www.roblox.com/asset/?id=1125478"
6362
o66.Offset = Vector3.new(2, 2, 2)
6363
o66.Scale = Vector3.new(1000, 1000, 1000)
6364
o66.VertexColor = Vector3.new(0.300000012, 4, 9)
6365
o66.MeshType = Enum.MeshType.FileMesh
6366
o66.Scale = Vector3.new(1000, 1000, 1000)
6367
o67.Parent = o2
6368
table.insert(cors,coroutine.create(function()
6369
wait()
6370
runDummyScript(function()
6371
--Time
6372
l = script.Parent
6373
while true do
6374
wait()
6375
local h = l:GetChildren()
6376
for i = 1, #h do
6377
if h[i].Name == "Brick" then
6378
h[i].CFrame = h[i].CFrame * CFrame.fromEulerAnglesXYZ(0.02,0.01,0.02)
6379
end
6380
end
6381
end
6382
end,o67)
6383
end))
6384
mas.Parent = workspace
6385
mas:MakeJoints()
6386
local mas1 = mas:GetChildren()
6387
for i=1,#mas1 do
6388
	mas1[i].Parent = workspace 
6389
	ypcall(function() mas1[i]:MakeJoints() end)
6390
end
6391
mas:Destroy()
6392
for i=1,#cors do
6393
coroutine.resume(cors[i])
6394
end
6395
--Wings
6396
local Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
6397
6398
local Num = 0.5
6399
6400
local Num2 = 4 -------------Wings Parameters-------------------------------------
6401
local Size = 0.8
6402
local Rate = 300
6403
-------------------------------------------------------------------------------------
6404
local Player = game:service'Players'.LocalPlayer
6405
local Character = Player.Character
6406
Torso = Character:WaitForChild'Torso'
6407
6408
local Wing1 = Instance.new("Part",Character)
6409
Wing1.FormFactor = Enum.FormFactor.Custom
6410
Wing1.Size = Vector3.new(.2, .2, .2)
6411
Wing1.Name = "WIng_1"
6412
6413
local fire = Instance.new("ParticleEmitter", Wing1)
6414
fire.VelocitySpread = 0
6415
fire.Lifetime = NumberRange.new(2)
6416
fire.Acceleration = Vector3.new(0, 2, 2)
6417
fire.RotSpeed = NumberRange.new(10)
6418
fire.Rate = Rate
6419
fire.Rotation = NumberRange.new(151515)
6420
fire.Name = "Fire"
6421
fire.LightEmission = 0.78
6422
fire.LockedToPart = true
6423
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6424
fire.Color = Color
6425
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6426
6427
local Wing2 = Wing1:Clone()
6428
Wing2.Parent = Torso
6429
local x,y,z = 0,-1,-6
6430
6431
Wld = function(a,b,cf)
6432
local Weld = Instance.new('Weld',a)
6433
Weld.Part0 = a
6434
Weld.Part1 = b
6435
Weld.C1 = cf
6436
return Weld
6437
end
6438
6439
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
6440
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
6441
6442
6443
game:service'RunService'.Stepped:connect(function()
6444
--z = 6+math.sin(tick()*2)
6445
y = -1+math.sin(tick()*Num)*Num2
6446
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6447
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6448
end)
6449
------------------------------------------------------------------------------------------------
6450
local Player = game:service'Players'.LocalPlayer
6451
local Character = Player.Character
6452
Torso = Character:WaitForChild'Torso'
6453
6454
local Wing1 = Instance.new("Part",Character)
6455
Wing1.FormFactor = Enum.FormFactor.Custom
6456
Wing1.Size = Vector3.new(.2, .2, .2)
6457
Wing1.Name = "WIng_1"
6458
6459
local fire = Instance.new("ParticleEmitter", Wing1)
6460
fire.VelocitySpread = 0
6461
fire.Lifetime = NumberRange.new(2.5)
6462
fire.Acceleration = Vector3.new(0, 4, 4)
6463
fire.RotSpeed = NumberRange.new(10)
6464
fire.Rate = Rate
6465
fire.Rotation = NumberRange.new(151515)
6466
fire.Name = "Fire"
6467
fire.LightEmission = 0.78
6468
fire.LockedToPart = true
6469
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6470
fire.Color = Color
6471
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6472
6473
local Wing2 = Wing1:Clone()
6474
Wing2.Parent = Torso
6475
local x,y,z = 0,-1,-6
6476
6477
Wld = function(a,b,cf)
6478
local Weld = Instance.new('Weld',a)
6479
Weld.Part0 = a
6480
Weld.Part1 = b
6481
Weld.C1 = cf
6482
return Weld
6483
end
6484
6485
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
6486
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
6487
6488
print'Loaded'
6489
6490
game:service'RunService'.Stepped:connect(function()
6491
--z = 6+math.sin(tick()*2)
6492
y = -1+math.sin(tick()*Num)*Num2
6493
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6494
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6495
end)
6496
6497
------------------------------------------------------------------------------------------------
6498
local Player = game:service'Players'.LocalPlayer
6499
local Character = Player.Character
6500
Torso = Character:WaitForChild'Torso'
6501
6502
local Wing1 = Instance.new("Part",Character)
6503
Wing1.FormFactor = Enum.FormFactor.Custom
6504
Wing1.Size = Vector3.new(.2, .2, .2)
6505
Wing1.Name = "WIng_1"
6506
6507
local fire = Instance.new("ParticleEmitter", Wing1)
6508
fire.VelocitySpread = 0
6509
fire.Lifetime = NumberRange.new(2.8)
6510
fire.Acceleration = Vector3.new(0, 4, 4)
6511
fire.RotSpeed = NumberRange.new(10)
6512
fire.Rate = Rate
6513
fire.Rotation = NumberRange.new(151515)
6514
fire.Name = "Fire"
6515
fire.LightEmission = 0.78
6516
fire.LockedToPart = true
6517
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6518
fire.Color = Color
6519
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6520
6521
local Wing2 = Wing1:Clone()
6522
Wing2.Parent = Torso
6523
local x,y,z = 0,-1,-6
6524
6525
Wld = function(a,b,cf)
6526
local Weld = Instance.new('Weld',a)
6527
Weld.Part0 = a
6528
Weld.Part1 = b
6529
Weld.C1 = cf
6530
return Weld
6531
end
6532
6533
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
6534
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
6535
6536
print'Loaded'
6537
6538
game:service'RunService'.Stepped:connect(function()
6539
--z = 6+math.sin(tick()*2)
6540
y = -1+math.sin(tick()*Num)*Num2
6541
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6542
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6543
end)
6544
6545
------------------------------------------------------------------------------------------------
6546
local Player = game:service'Players'.LocalPlayer
6547
local Character = Player.Character
6548
Torso = Character:WaitForChild'Torso'
6549
6550
local Wing1 = Instance.new("Part",Character)
6551
Wing1.FormFactor = Enum.FormFactor.Custom
6552
Wing1.Size = Vector3.new(.2, .2, .2)
6553
Wing1.Name = "WIng_1"
6554
6555
local fire = Instance.new("ParticleEmitter", Wing1)
6556
fire.VelocitySpread = 0
6557
fire.Lifetime = NumberRange.new(3)
6558
fire.Acceleration = Vector3.new(0, 4, 4)
6559
fire.RotSpeed = NumberRange.new(10)
6560
fire.Rate = Rate
6561
fire.Rotation = NumberRange.new(151515)
6562
fire.Name = "Fire"
6563
fire.LightEmission = 0.78
6564
fire.LockedToPart = true
6565
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6566
fire.Color = Color
6567
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6568
6569
local Wing2 = Wing1:Clone()
6570
Wing2.Parent = Torso
6571
local x,y,z = 0,-1,-6
6572
6573
Wld = function(a,b,cf)
6574
local Weld = Instance.new('Weld',a)
6575
Weld.Part0 = a
6576
Weld.Part1 = b
6577
Weld.C1 = cf
6578
return Weld
6579
end
6580
6581
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
6582
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
6583
6584
print'Loaded'
6585
6586
game:service'RunService'.Stepped:connect(function()
6587
--z = 6+math.sin(tick()*2)
6588
y = -1+math.sin(tick()*Num)*Num2
6589
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6590
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6591
end)
6592
6593
------------------------------------------------------------------------------------------------
6594
local Player = game:service'Players'.LocalPlayer
6595
local Character = Player.Character
6596
Torso = Character:WaitForChild'Torso'
6597
6598
local Wing1 = Instance.new("Part",Character)
6599
Wing1.FormFactor = Enum.FormFactor.Custom
6600
Wing1.Size = Vector3.new(.2, .2, .2)
6601
Wing1.Name = "WIng_1"
6602
6603
local fire = Instance.new("ParticleEmitter", Wing1)
6604
fire.VelocitySpread = 0
6605
fire.Lifetime = NumberRange.new(3.1)
6606
fire.Acceleration = Vector3.new(0, 4, 4)
6607
fire.RotSpeed = NumberRange.new(10)
6608
fire.Rate = Rate
6609
fire.Rotation = NumberRange.new(151515)
6610
fire.Name = "Fire"
6611
fire.LightEmission = 0.78
6612
fire.LockedToPart = true
6613
fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
6614
fire.Color = Color
6615
fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
6616
6617
local Wing2 = Wing1:Clone()
6618
Wing2.Parent = Torso
6619
local x,y,z = 0,-1,-6
6620
6621
Wld = function(a,b,cf)
6622
local Weld = Instance.new('Weld',a)
6623
Weld.Part0 = a
6624
Weld.Part1 = b
6625
Weld.C1 = cf
6626
return Weld
6627
end
6628
6629
local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
6630
local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
6631
6632
print'Loaded'
6633
6634
game:service'RunService'.Stepped:connect(function()
6635
--z = 6+math.sin(tick()*2)
6636
y = -1+math.sin(tick()*Num)*Num2
6637
Wing1.Fire.Acceleration = Vector3.new(x,y,z)
6638
Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
6639
end)
6640
--Teleport Sky to Player
6641
o1:MakeJoints()
6642
o1:MoveTo(game.Players.LocalPlayer.Character.Head.Position)
6643
--Hat
6644
hed.Mesh.MeshId="http://www.roblox.com/asset/?id=21057410"
6645
hed.Mesh.Scale=Vector3.new(2,2,2)
6646
hed.face:Destroy()
6647
--Lighting Effect
6648
function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
6649
    --[[Part0 = Vector3 (Start pos)
6650
		Part1 = Vector3 (End pos)
6651
		Times = number (Amount of lightning parts)
6652
		Offset = number (Offset)
6653
		Color = color (brickcolor value)
6654
		Thickness = number (thickness)
6655
		Trans = number (transparency)
6656
    ]]--
6657
    local magz = (Part0 - Part1).magnitude
6658
    local curpos = Part0
6659
    local trz = {-Offset,Offset}
6660
    for i=1,Times do
6661
        local li = Instance.new("Part", torso)
6662
		li.Name = "Lightning"
6663
		li.TopSurface =0
6664
		li.Material = "Neon"
6665
		li.BottomSurface = 0
6666
		li.Anchored = true
6667
		li.Locked = true
6668
		li.Transparency = Trans or 0.4
6669
		li.BrickColor = BrickColor.new(Color)
6670
		li.formFactor = "Custom"
6671
		li.CanCollide = false
6672
		li.Size = Vector3.new(Thickness,Thickness,magz/Times)
6673
        local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
6674
        local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
6675
        if Times == i then
6676
        local magz2 = (curpos - Part1).magnitude
6677
        li.Size = Vector3.new(Thickness,Thickness,magz2)
6678
        li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
6679
        else
6680
        li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
6681
        end
6682
        curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
6683
        game.Debris:AddItem(li,.1)
6684
    end
6685
end
6686
6687
BodyParts = {} -- Parts to emit lightning effects from
6688
for _, v in pairs(char:GetChildren()) do
6689
    if v:IsA("Part") then
6690
        table.insert(BodyParts, v)
6691
    end
6692
end
6693
6694
Bounding = {} -- Calculate the bounding boxes
6695
for _, v in pairs(BodyParts) do
6696
	local temp = {X=nil, Y=nil, Z=nil}
6697
	temp.X = v.Size.X/2 * 35
6698
	temp.Y = v.Size.Y/2 * 35
6699
	temp.Z = v.Size.Z/2 * 35
6700
	Bounding[v.Name] = temp
6701
	--table.insert(Bounding, v.Name, temp)
6702
end
6703
6704
while wait(0) do -- Emit the Lightning effects randomly
6705
	local Body1 = BodyParts[math.random(#BodyParts)]
6706
	local Body2 = BodyParts[math.random(#BodyParts)]
6707
	local Pos1 = Vector3.new(
6708
		math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/35,
6709
		math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/35,
6710
		math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/35
6711
)
6712
	local Pos2 = Vector3.new(
6713
		math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/35,
6714
		math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/35,
6715
		math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/35
6716
)
6717
	local SPos1 = Body1.Position + Pos1
6718
	local SPos2 = Body2.Position + Pos2
6719
	Lightning(SPos1, SPos2, 4, 3, "Alder", .3, .56)
6720
end