View difference between Paste ID: 2wV1x3sB and UiVV8VDh
SHOW: | | - or go back to the newest paste.
1
local Player = game.Players.LocalPlayer
2
local Character = game.Players.LocalPlayer.Character
3
local Create = LoadLibrary("RbxUtility").Create
4
CFuncs = {	
5
	
6
	
7
	
8
	
9
	["Weld"] = {
10
		Create = function(Parent, Part0, Part1, C0, C1)
11
			local Weld = Create("Weld"){
12
				Parent = Parent,
13
				Part0 = Part0,
14
				Part1 = Part1,
15
				C0 = C0,
16
				C1 = C1,
17
			}
18
			return Weld
19
		end;
20
	};
21
22
	["Sound"] = {
23
		Create = function(id, par, vol, pit) 
24
			coroutine.resume(coroutine.create(function()
25
				local S = Create("Sound"){
26
					Volume = vol,
27
					Pitch = pit or 1,
28
					SoundId = id,
29
					Parent = par or workspace,
30
				}
31
				wait() 
32
				S:play() 
33
				game:GetService("Debris"):AddItem(S, 6)
34
			end))
35
		end;
36
	};
37
	
38
	["ParticleEmitter"] = {
39
		Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
40
			local fp = Create("ParticleEmitter"){
41
				Parent = Parent,
42
				Color = ColorSequence.new(Color1, Color2),
43
				LightEmission = LightEmission,
44
				Size = Size,
45
				Texture = Texture,
46
				Transparency = Transparency,
47
				ZOffset = ZOffset,
48
				Acceleration = Accel,
49
				Drag = Drag,
50
				LockedToPart = LockedToPart,
51
				VelocityInheritance = VelocityInheritance,
52
				EmissionDirection = EmissionDirection,
53
				Enabled = Enabled,
54
				Lifetime = LifeTime,
55
				Rate = Rate,
56
				Rotation = Rotation,
57
				RotSpeed = RotSpeed,
58
				Speed = Speed,
59
				VelocitySpread = VelocitySpread,
60
			}
61
			return fp
62
		end;
63
	};
64
65
	CreateTemplate = {
66
	
67
	};
68
}
69
70
71
72
New = function(Object, Parent, Name, Data)
73
	local Object = Instance.new(Object)
74
	for Index, Value in pairs(Data or {}) do
75
		Object[Index] = Value
76
	end
77
	Object.Parent = Parent
78
	Object.Name = Name
79
	return Object
80
end
81
82
83
CV="Really black"
84
ArtificialHB = Create("BindableEvent", script){
85
	Parent = script,
86
	Name = "Heartbeat",
87
}
88
	
89
function swait(num)
90
	if num == 0 or num == nil then
91
		ArtificialHB.Event:wait()
92
	else
93
		for i = 0, num do
94
			ArtificialHB.Event:wait()
95
		end
96
	end
97
end
98
99
function chatfunc(text)
100
local chat = coroutine.wrap(function()
101
if Character:FindFirstChild("TalkingBillBoard")~= nil then
102
Character:FindFirstChild("TalkingBillBoard"):destroy()
103
end
104
local naeeym2 = Instance.new("BillboardGui",Character)
105
naeeym2.Size = UDim2.new(0,100,0,40)
106
naeeym2.StudsOffset = Vector3.new(0,3,0)
107
naeeym2.Adornee = Character.Head
108
naeeym2.Name = "TalkingBillBoard"
109
local tecks2 = Instance.new("TextLabel",naeeym2)
110
tecks2.BackgroundTransparency = 1
111
tecks2.BorderSizePixel = 0
112
tecks2.Text = ""
113
tecks2.Font = "Fantasy"
114
tecks2.TextSize = 30
115
tecks2.TextStrokeTransparency = 0
116
tecks2.TextColor3 = Color3.new(0,0,0)
117
tecks2.TextStrokeColor3 = Color3.new(0,0,0)
118
tecks2.Size = UDim2.new(1,0,0.5,0)
119
local tecks3 = Instance.new("TextLabel",naeeym2)
120
tecks3.BackgroundTransparency = 1
121
tecks3.BorderSizePixel = 0
122
tecks3.Text = ""
123
tecks3.Font = "Fantasy"
124
tecks3.TextSize = 30
125
tecks3.TextStrokeTransparency = 0
126
tecks3.TextColor3 = Color3.new(0,0,0)
127
tecks3.TextStrokeColor3 = Color3.new(255,255,255)
128
tecks3.Size = UDim2.new(1,0,0.5,0)
129
for i = 1,string.len(text),1 do
130
CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=565939471", Character, 6, .8)
131
tecks2.Text = string.sub(text,1,i)
132
tecks3.Text = string.sub(text,1,i)
133
wait(0.01)
134
end
135
wait(2)
136
for i = 1, 50 do
137
swait()
138
tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
139
tecks2.Rotation = tecks2.Rotation - .8
140
tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
141
tecks2.TextTransparency = tecks2.TextTransparency + .04
142
tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
143
tecks3.Rotation = tecks2.Rotation + .8
144
tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
145
tecks3.TextTransparency = tecks2.TextTransparency + .04
146
end
147
naeeym2:Destroy()
148
end)
149
chat()
150
151
end
152
function onChatted(msg)
153
chatfunc(msg)
154
155
end
156
Player.Chatted:connect(onChatted)
157
158
abss = Instance.new("BillboardGui",Character)
159
abss.Size = UDim2.new(10,0,10,0)
160
abss.Enabled = false
161
abss.Name = "ROCKYMOUNT"
162
imgl = Instance.new("ImageLabel",abss)
163
imgl.Position = UDim2.new(0,0,0,0)
164
imgl.Size = UDim2.new(1,0,1,0)
165
imgl.Image = "rbxassetid://711463989"
166
imgl.BackgroundTransparency = 1
167
imgl.ImageColor3 = Color3.new(0,255,255)
168
img2 = Instance.new("ImageLabel",abss)
169
img2.Position = UDim2.new(0,0,0,0)
170
img2.Size = UDim2.new(1,0,1,0)
171
img2.Image = "rbxassetid://711463989"
172
img2.BackgroundTransparency = 1
173
img2.ImageColor3 = Color3.new(0,255,255)
174
175
176
177
cd2 = true
178
local lolf = true
179
local shake = false
180
local go2 = false
181
local up = 0
182
local grab2 = false
183
local pushed = false
184
	base = Instance.new("Part",workspace)
185
	base.Name = "Base"
186
base.Transparency = 1
187
z42d = Instance.new("Sound",game.Players.LocalPlayer.Character)
188
z42d.Volume = 100
189
z42d.Looped = true
190-
z42d.SoundId = "rbxassetid://681650549"
190+
z42d.SoundId = "rbxassetid://515604325"
191
z42d:Play()
192
local jk = false
193
local kiout = false
194
local rl = true
195
ll = 0
196
local combodamage = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999e+999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
197
local can = 5
198
local lolwait = 3
199
local auracan3 = true
200
local auracan1 = true
201
local darius1 = true
202
local ki = true
203
local darius = true
204
local kamecolor = "Really black"
205
z42 = Instance.new("Sound",game.Players.LocalPlayer.Character)
206
z42.Volume = 20
207
z42.Looped = false
208
z42.SoundId = "rbxassetid://863808186"
209
local clickon = false
210
local beamknockback = 0
211
local beamdamage = 0.001
212
local hited1 = false
213
local hited = false
214
local kamesize = 1
215
local kamehameha  = false
216
local walksound = "rbxassetid://908473722"
217
local moving = false
218
local poon = false
219
220
local v3 = Vector3.new
221
	divine = Instance.new("Part",game.Players.LocalPlayer.Character)
222
	divine.Size = Vector3.new(0.5,0.5,3)
223
	divine.Position = v3(5,50,5)
224
	
225
	divine.BrickColor = BrickColor.new("Really red")
226
	divine.Transparency = 1
227
	divinemesh = Instance.new("SpecialMesh",divine)
228
	divinemesh.MeshType = "Sphere"
229
	divinemesh.Scale = v3(1,1,1)
230
	
231
	
232
	
233
	------------------------------------------------------------------
234
	divine2 = Instance.new("Part",game.Players.LocalPlayer.Character)
235
	divine2.Size = Vector3.new(0.5,0.5,3)
236
	divine2.Position = v3(5,5,5)
237
	
238
	divine2.BrickColor = BrickColor.new("Really red")
239
	divine2.Transparency = 1
240
	divinemesh = Instance.new("SpecialMesh",divine2)
241
	divinemesh.MeshType = "Sphere"
242
	divinemesh.Scale = v3(1,1,1)
243
	
244
	
245
	
246
	------------------------------------------------------------------
247
	divine3 = Instance.new("Part",game.Players.LocalPlayer.Character)
248
	divine3.Size = Vector3.new(0.5,0.5,3)
249
	divine3.Position = v3(5,8,5)
250
	
251
	divine3.BrickColor = BrickColor.new("Really red")
252
	divine3.Transparency = 1
253
	divinemesh = Instance.new("SpecialMesh",divine3)
254
	divinemesh.MeshType = "Sphere"
255
	divinemesh.Scale = v3(1,1,1)
256
	
257
	
258
	
259
	------------------------------------------------------------------
260
	divine4 = Instance.new("Part",game.Players.LocalPlayer.Character)
261
	divine4.Size = Vector3.new(0.5,0.5,3)
262
	divine4.Position = v3(5,3,5)
263
	
264
	divine4.BrickColor = BrickColor.new("Really red")
265
	divine4.Transparency = 1
266
	divinemesh = Instance.new("SpecialMesh",divine4)
267
	divinemesh.MeshType = "Sphere"
268
	divinemesh.Scale = v3(1,1,1)
269
	
270
	
271
	
272
	------------------------------------------------------------------
273
	divine5 = Instance.new("Part",game.Players.LocalPlayer.Character)
274
	divine5.Size = Vector3.new(0.5,0.5,3)
275
	divine5.Position = v3(5,55,5)
276
	
277
	divine5.BrickColor = BrickColor.new("Really red")
278
	divine5.Transparency = 1
279
	divinemesh = Instance.new("SpecialMesh",divine5)
280
	divinemesh.MeshType = "Sphere"
281
	divinemesh.Scale = v3(1,1,1)
282
	
283
	
284
	
285
	------------------------------------------------------------------
286
	divine6 = Instance.new("Part",game.Players.LocalPlayer.Character)
287
	divine6.Size = Vector3.new(0.5,0.5,3)
288
	divine6.Position = v3(5,5,5)
289
	
290
	divine6.BrickColor = BrickColor.new("Really red")
291
	divine6.Transparency = 1
292
	divinemesh = Instance.new("SpecialMesh",divine6)
293
	divinemesh.MeshType = "Sphere"
294
	divinemesh.Scale = v3(1,1,1)
295
296
297
local new=Instance.new
298
local rad=math.rad
299
local cf=CFrame.new
300
local v3=Vector3.new
301
local ang=function(x,y,z)
302
return CFrame.Angles(rad(x),rad(y),rad(z))
303
end
304
local player=game:service'Players'.LocalPlayer
305
local char=player.Character
306
local cam=workspace.Camera
307
local mouse=player:GetMouse()
308
local weld=function(a,b,c0,c1)
309
m=Instance.new('Motor',a)
310
m.Part0=a
311
m.Part1=b
312
m.C0=c0
313
m.C1=c1
314
return m
315
end
316
317
318
beamm=Instance.new('Model',workspace)
319
beamm.Name='beam'
320
321
laser=false
322
323
rs=Instance.new('Part',char)
324
rs.Transparency=1
325
rs.CanCollide=false
326
rs.TopSurface,rs.BottomSurface=0,0
327
rs.FormFactor=3
328
rs.Size=Vector3.new(.5,.5,.5)
329
330
ls=rs:Clone()
331
ls.Parent=char
332
333
334
335
s1=Instance.new('Sound',char)
336
s1.Volume=1
337
s1.Pitch=1
338
s1.Looped=true
339
340
341
particles={}
342
343
local wep=new('Part',char)
344
345
wep.FormFactor=3
346
wep.Transparency = 1
347
wep.CanCollide=false
348
wep.Size=v3(0.1,0.1,0.1)
349
wep.TopSurface,wep.BottomSurface=0,0
350
local wepw=weld(wep,char['Torso'],cf(0,2,0),ang(95,0,0))
351
352
353
local beam1=wep:Clone()
354
beam1:ClearAllChildren()
355
beam1.Material='Neon'
356
beam1.BrickColor=BrickColor.new(kamecolor)
357
beam1.Color = Color3.fromRGB(35,0,53)
358
beam1.Size=Vector3.new(1,1,1)
359
beam1.Transparency=0
360
beam1.Anchored=true
361
local ms=Instance.new('BlockMesh',beam1)
362
local inner1=beam1:Clone()
363
inner1.Transparency=1
364
inner1.Material='SmoothPlastic'
365
inner1.BrickColor=BrickColor.new(kamecolor)
366
inner1.Color = Color3.fromRGB(35,0,53)
367
local ms2=inner1.Mesh
368
369
local expl1=inner1:Clone()
370
expl1.Mesh:Destroy()
371
expl1.Material='Neon'
372
expl1.BrickColor=BrickColor.new(kamecolor)
373
expl1.Color = Color3.fromRGB(35,0,53)
374
expl1.Size=Vector3.new(1,1,1)
375
expl1.Transparency=0
376
pl=Instance.new('PointLight',expl1)
377
pl.Color=expl1.BrickColor.Color
378
pl.Range=pl.Range*2
379
pl.Name='light'
380
local br=pl.Range
381
382
local exa1=expl1:Clone()
383
exa1.Size=Vector3.new(1,1,1)
384
pl2=exa1.light
385
386
local part=exa1:Clone()
387
part.Size=Vector3.new(1.5,1.5,1.5)
388
pl3=part.light
389
pms=Instance.new('BlockMesh',part)
390
391
char.Humanoid.Died:connect(function()
392
laser=false
393
beam1.Parent=nil
394
inner1.Parent=nil
395
expl1.Parent=nil
396
exa1.Parent=nil
397
s1:stop()
398
end)
399
400
401
402
parti=0
403
game:service'RunService'.Stepped:connect(function()
404
parti=parti+1
405
for i,v in pairs(particles) do
406
v.CFrame=v.CFrame*CFrame.new(0,0,-.3)
407
v.Transparency=v.Transparency+.08
408
if v.Transparency >= 1 then
409
v:Destroy()
410
table.remove(particles,i)
411
else
412
v.Parent=beamm
413
end
414
end
415
416
a=cam.CoordinateFrame.p
417
b=mouse.Hit.p
418
mhitr=Ray.new(a,(b-a).unit*999)
419
mhit,ps=workspace:FindPartOnRayWithIgnoreList(mhitr,{char,beamm})
420
421
422
if laser then
423
beamm.Parent=workspace
424
beam1.Parent=beamm
425
inner1.Parent=beamm
426
expl1.Parent=beamm
427
exa1.Parent=beamm
428
s1.Volume=s1.Volume-0.0034
429
430
ray=Ray.new((wep.CFrame*cf(0,-1.5,0)).p,((wep.CFrame*cf(0,-10,0)).p-(wep.CFrame*cf(0,-1.5,0)).p).unit*999)
431
hit,pos=workspace:FindPartOnRayWithIgnoreList(ray,{char,beamm})
432
433
if hit and s1.Volume > .3 and parti/8==math.floor(parti/8) then
434
	
435
	if hit.Parent:IsA("Model") and hit ~= workspace.Base then
436
		hit.Parent:BreakJoints()
437
		
438
		wait()
439
	end
440
	if hit.Parent:IsA("Part") and hit ~= workspace.Base then
441
		hit.Anchored = false
442
		hit.Position = hit.Position + Vector3.new(0,1,0)
443
		block = Instance.new("BodyForce",hit)
444
block.Force = beam1.CFrame.lookVector 
445
s1.Volume=s1.Volume+0.0034
446
447
hit.Position = hit.Position + Vector3.new(0,1,0)
448
		block = Instance.new("BodyForce",hit)
449
block.Force = beam1.CFrame.lookVector
450
451
	end
452
	end
453
454
if hit and hit.Parent==workspace.Terrain or hit==workspace.Terrain and parti/8==math.floor(parti/8) then
455
e=Instance.new('Explosion',workspace)
456
e.Position=pos
457
e.BlastRadius=14
458
e.BlastPressure=1e4
459
end
460
if hit and not hit.Anchored and not (hit:GetMass()>1e4) then
461
hit.Velocity=hit.Velocity+beam1.CFrame.lookVector*(1*s1.Volume*hit:GetMass())
462
end
463
464
if parti==math.floor(parti) then
465
par=part:Clone()
466
table.insert(particles,par)
467
par.Parent=beamm
468
par.Transparency=1-s1.Volume
469
par.light.Range=br*s1.Volume
470
par.CFrame=cf(pos)*ang(math.random(-180,180),math.random(-180,180),math.random(-180,180))*cf(10,10,10)
471
end
472
473
mag=((wep.CFrame*cf(0,-1.5,0)).p-pos).magnitude
474
ms.Scale=v3(s1.Volume,s1.Volume,mag)
475
ms2.Scale=v3(ms.Scale.x/2,ms.Scale.y/2,mag-(.1/mag))
476
beam1.CFrame=cf((wep.CFrame*cf(0,-1.5,0)).p,pos)*cf(0,0,-mag/2)*ang(0,0,math.random(0,180))
477
inner1.CFrame=beam1.CFrame
478
pl.Range=br*s1.Volume
479
pl2.Range=br*s1.Volume
480
481
expl1.Transparency=0
482
expl1.CFrame=cf(pos)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
483
484
exa1.CFrame=wep.CFrame*cf(0,-1.5,0)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
485
486
end
487
end)
488
489
local base = true
490
local ssjr = false
491
local down2 = false
492
local ok = 0
493
local lala = false
494
local walkon = false
495
local idle = true
496
local idle1 = true
497
local canattack = true
498
local nohit = 0
499
local p = game.Players.LocalPlayer
500
local char = p.Character
501
local mouse = p:GetMouse()
502
local larm = char["Left Arm"]
503
local rarm = char["Right Arm"]
504
local lleg = char["Left Leg"]
505
local rleg = char["Right Leg"]
506
local hed = char.Head
507
local torso = char.Torso
508
zwc = Instance.new("Sound",torso)
509
zwc.Volume = 1
510
zwc.Looped = false
511
zwc.SoundId = "rbxassetid://137579113"
512
local hum = char.Humanoid
513
hum.Name = "loldar"
514
local cam = game.Workspace.CurrentCamera
515
local root = char.HumanoidRootPart
516
local deb = false
517
local shot = 0
518
local walk = true
519
local debris=game:service"Debris"
520
local l = game:GetService("Lighting")
521
local rs = game:GetService("RunService").RenderStepped
522
local canattack = true
523
hed.face.Texture = "http://www.roblox.com/asset/?id=1002452110"
524
ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
525
function lerp(a, b, t) -- Linear interpolation
526
        return a + (b - a)*t
527
end
528
529
function slerp(a, b, t) --Spherical interpolation
530
        dot = a:Dot(b)
531
        if dot > 0.99999 or dot < -0.99999 then
532
                return t <= 0.5 and a or b
533
        else
534
                r = math.acos(dot)
535
                return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
536
        end
537
end
538
function matrixInterpolate(a, b, t)
539
        local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
540
        local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
541
        local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
542
        local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
543
        local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
544
        local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
545
        local t = v1:Dot(v2)
546
        if not (t < 0 or t == 0 or t > 0) then         -- Failsafe
547
                return CFrame.new()
548
        end
549
        return CFrame.new(
550
        v0.x, v0.y, v0.z,
551
        v1.x, v1.y, v1.z,
552
        v2.x, v2.y, v2.z,
553
        v3.x, v3.y, v3.z)
554
end
555
----------------------------------------------------
556
function genWeld(a,b)
557
    local w = Instance.new("Weld",a)
558
    w.Part0 = a
559
    w.Part1 = b
560
    return w
561
end
562
function weld(a, b)
563
    local weld = Instance.new("Weld")
564
    weld.Name = "W"
565
    weld.Part0 = a
566
    weld.Part1 = b
567
    weld.C0 = a.CFrame:inverse() * b.CFrame
568
    weld.Parent = a
569
    return weld;
570
end
571
----------------------------------------------------
572
function Lerp(c1,c2,al)
573
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
574
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
575
for i,v in pairs(com1) do
576
com1[i] = v+(com2[i]-v)*al
577
end
578
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
579
end
580
----------------------------------------------------
581
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
582
local wld = Instance.new("Weld", wp1)
583
wld.Part0 = wp0
584
wld.Part1 = wp1
585
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
586
end
587
hum.MaxHealth = math.huge
588
wait()
589
hum.Health = math.huge
590
----------------------------------------------------
591
function weld5(part0, part1, c0, c1)
592
    weeld=Instance.new("Weld", part0)
593
    weeld.Part0=part0
594
    weeld.Part1=part1
595
    weeld.C0=c0
596
    weeld.C1=c1
597
    return weeld
598
end
599
----------------------------------------------------
600
function HasntTouched(plrname)
601
local ret = true
602
for _, v in pairs(Touche) do
603
if v == plrname then
604
ret = false
605
end
606
end
607
return ret
608
end
609
newWeld(torso, larm, -1.5, 0.5, 0)
610
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
611
newWeld(torso, rarm, 1.5, 0.5, 0)
612
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
613
newWeld(torso, hed, 0, 1.5, 0)
614
newWeld(torso, lleg, -0.5, -1, 0)
615
lleg.Weld.C1 = CFrame.new(0, 1, 0)
616
newWeld(torso, rleg, 0.5, -1, 0)
617
rleg.Weld.C1 = CFrame.new(0, 1, 0)
618
newWeld(root, torso, 0, -1, 0)
619
torso.Weld.C1 = CFrame.new(0, -1, 0)
620
GroundWave1 = function()
621
	local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
622
	
623
		local wave = Instance.new("Part", torso)
624
		wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
625
		wave.Anchored = true
626
		wave.CanCollide = false
627
		wave.Locked = true
628
		wave.Size = Vector3.new(1, 1, 1)
629
		wave.TopSurface = "Smooth"
630
		wave.BottomSurface = "Smooth"
631
		wave.Transparency = 0.35
632
		wave.CFrame = HandCF
633
		wm = Instance.new("SpecialMesh", wave)
634
		wm.MeshId = "rbxassetid://20329976"
635
		coroutine.wrap(function()
636
		for i = 1, 30, 1 do
637
		wm.Scale = Vector3.new(1 + i*1.2, 1 + i*1.2, 1 + i*1.2)
638
		wave.Size = wm.Scale
639
		wave.CFrame = HandCF
640
        wave.Orientation = Vector3.new(0, 180, 0)
641
		wave.Transparency = i/30
642
		wait()
643
		end
644
		wait()
645
		wave:Destroy()
646
	end)()
647
end
648
GroundBall1 = function()
649
	local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
650
	
651
		local wave = Instance.new("Part", torso)
652
		wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
653
		wave.Anchored = true
654
		wave.CanCollide = false
655
		wave.Locked = true
656
		wave.Size = Vector3.new(1, 1, 1)
657
		wave.TopSurface = "Smooth"
658
		wave.BottomSurface = "Smooth"
659
		wave.Transparency = 0.35
660
		wave.CFrame = HandCF
661
		wm = Instance.new("SpecialMesh", wave)
662
		wm.MeshId = "rbxassetid://430736398"
663
		coroutine.wrap(function()
664
		for i = 1, 30, 1 do
665
		wm.Scale = Vector3.new(1 + i*1.2, 1 + i*1.2, 1 + i*1.2)
666
		wave.Size = wm.Scale
667
		wave.CFrame = HandCF
668
        wave.Orientation = Vector3.new(0, 180, 0)
669
		wave.Transparency = i/30
670
		wait()
671
		end
672
		wait()
673
		wave:Destroy()
674
	end)()
675
end
676
677
function stance1()
678
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(15),math.rad(0)), 0.1)--head
679
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(0)), 1)--torso
680
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(12),math.rad(15),math.rad(30)), 0.1)--arm
681
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(12),math.rad(15),math.rad(-30)), 0.1)--arm
682
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(15), math.rad(10)), 0.1)--leg
683
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-15), math.rad(-40), math.rad(-5)), 0.1)--leg
684
end
685
-------------------------------------------------------------
686
function stance2()
687
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),math.rad(0)), 0.1)--head
688
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), math.rad(0)), 0.1)--torso
689
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.3,-0.5)*CFrame.Angles(math.rad(160),math.rad(210),math.rad(0)), 0.1)--rarm
690
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.2,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(0)), 0.1)--larm
691
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, .2) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(-20)), 0.1)--lleg
692
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.2) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(20)), 0.1)--rleg
693
		
694
end
695
----------------------------------------------------------
696
z41 = Instance.new("Sound",torso)
697
z41.Volume = 20
698
z41.Looped = false
699
z41.SoundId = "rbxassetid://863807725"
700
z412 = Instance.new("Sound",torso)
701
z412.Volume = 20
702
z412.Looped = false
703
z412.SoundId = "rbxassetid://895090420"
704
z4122 = Instance.new("Sound",torso)
705
z4122.Volume = 20
706
z4122.Looped = false
707
z4122.SoundId = "rbxassetid://897147945"
708
function swing1()
709
for i = 1, 5 do
710
		wait()
711
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
712
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
713
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-70)), 0.4)--arm
714
		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.4)--arm
715
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.4)--leg
716
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.4)--leg
717
end
718
719
z41:Play()
720
for i = 1, 5 do
721
		wait()
722
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
723
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
724
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(60)), 0.4)--arm
725
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
726
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.4)--leg
727
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)--leg
728
end
729
end
730
function swing11()
731
for i = 1, 5 do
732
		wait()
733
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
734
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
735
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-70)), 0.4)--arm
736
		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.4)--arm
737
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.4)--leg
738
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.4)--leg
739
end
740
741
z412:Play()
742
for i = 1, 5 do
743
		wait()
744
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
745
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
746
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(60)), 0.4)--arm
747
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
748
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.4)--leg
749
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)--leg
750
end
751
end
752
------------------------------------------------------------------------------------------------
753
function swing2()
754
for i = 1, 5 do
755
		wait()
756
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
757
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(0)), 0.4)--torso
758
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-200),math.rad(0),math.rad(30)), 0.4)--arm
759
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
760
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.4)--leg
761
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)--leg
762
end
763
764
z41:Play()
765
for i = 1, 5 do
766
		wait()
767
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(-10),math.rad(0)), 0.4)--head
768
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4)--torso
769
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.3,-.4)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(-50)), 0.4)--arm
770
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-30)), 0.4)--arm
771
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-10)), 0.4)--leg
772
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(0), math.rad(0)), 0.4)--leg
773
end
774
end
775
-----------------------------------------------------------------------------------------------
776
function swing3()
777
	
778
z41:Play()
779
for i = 1, 7 do
780
		wait()
781
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
782
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
783
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(90)), 0.4)--arm
784
		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.4)--arm
785
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.4)--leg
786
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.4)--leg
787
		torso.CFrame = torso.CFrame * CFrame.Angles(0,-.928,0)+ Vector3.new(0,5,0)
788
		
789
end
790
791
end
792
------------------------------------------------------------------------------------------------
793
function firstswing()
794
for i = 1, 10 do
795
		wait()
796
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
797
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
798
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-70)), 0.4)--arm
799
		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.4)--arm
800
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
801
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.4)--leg
802
end
803
804
for i = 1, 10 do
805
		wait()
806
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
807
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
808
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(40)), 0.4)--arm
809
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
810
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
811
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.4)--leg
812
end
813
end
814
function flytowards()
815
for i = 1, 5 do
816
		wait()
817
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)), 0.4)--head
818
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(0)), 0.4)--torso
819
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(10)), 0.4)--arm
820
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-10)), 0.4)--arm
821
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
822
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.4)--leg
823
end
824
end
825
	function swings()
826
for i = 1, 5 do
827
		wait()
828
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(0)), 0.4)--head
829
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(0)), 0.4)--torso
830
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-70)), 0.4)--arm
831
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-10)), 0.4)--arm
832
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
833
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.4)--leg
834
end
835
836
837
for i = 1, 5 do
838
		wait()
839
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
840
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
841
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(30)), 0.4)--arm
842
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
843
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
844
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.4)--leg
845
end
846
z42:Play()
847
end
848
-----------------------------------------------
849
function divineswinging()
850
	shot1 = true
851
for i = 1, 4 do
852
		wait()
853
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
854
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
855
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,0.5,-1)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-120)), 0.8)--arm
856
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
857
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--leg
858
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.8)--leg
859
end
860
z42:Play()
861
for i = 1, 4 do
862
		wait()
863
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
864
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
865
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(120)), 0.8)--arm
866
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
867
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.8)--leg
868
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(10)), 0.8)--leg
869
end
870
z42:Play()
871
for i = 1, 4 do
872
		wait()
873
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(-10),math.rad(0)), 0.4)--head
874
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4)--torso
875
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.3,-.4)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(-50)), 0.4)--arm
876
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-30)), 0.4)--arm
877
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-10)), 0.4)--leg
878
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(0), math.rad(0)), 0.4)--leg
879
end
880
z42:Play()
881
for i = 1, 4 do
882
		wait()
883
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
884
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
885
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,0.5,-1)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-120)), 0.8)--arm
886
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
887
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--leg
888
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.8)--leg
889
end
890
z42:Play()
891
for i = 1, 4 do
892
		wait()
893
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
894
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
895
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(120)), 0.8)--arm
896
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
897
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.8)--leg
898
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(10)), 0.8)--leg
899
end
900
z42:Play()
901
for i = 1, 4 do
902
		wait()
903
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
904
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
905
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,0.5,-1)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-120)), 0.8)--arm
906
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
907
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--leg
908
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.8)--leg
909
end
910
z42:Play()
911
z4122:Play()
912
for i = 1, 4 do
913
		wait()
914
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
915
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
916
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(30)), 0.4)--arm
917
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
918
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
919
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.4)--leg
920
end
921
922
end
923
-----------------------------------------------------------------------------------------
924
function divineend()
925
	
926
for i = 1, 7 do
927
		wait()
928
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
929
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
930
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(80)), 0.4)--arm
931
		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.4)--arm
932
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.4)--leg
933
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.4)--leg
934
		torso.CFrame = torso.CFrame * CFrame.Angles(0,.88,0)
935
end
936
wait(0.5)
937
for i = 1, 7 do
938
		wait()
939
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
940
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
941
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(80)), 0.4)--arm
942
		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.4)--arm
943
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.4)--leg
944
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.4)--leg
945
		torso.CFrame = torso.CFrame * CFrame.Angles(0,.88,0)
946
end
947
kiweld7.C0 = CFrame.new(-1.7,-3,0) * CFrame.Angles(rad(180),rad(0),rad(40))
948
for i = 1, 15 do
949
		wait()
950
		
951
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(60),math.rad(0)), 0.4)--head
952
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-70), math.rad(0)), 0.4)--torso
953
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,1.5,-0.3)*CFrame.Angles(math.rad(190),math.rad(40),math.rad(-50)), 0.4)--arm
954
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-70)), 0.4)--arm
955
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
956
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
957
end
958
end
959
---------------------------------------------------------
960
local block = Instance.new("Part",torso)
961
block.Size = Vector3.new(0.1,0.1,0.1)
962
block.Position = block.Position + Vector3.new(2,2,2)
963
block.Transparency = 1
964
local weld = Instance.new("Weld",torso)
965
weld.Part0 = torso
966
weld.Part1 = block
967
weld.C0 = CFrame.new(0,3,0)
968
local block2 = Instance.new("Part",torso)
969
block2.Size = Vector3.new(3,2,1)
970
block2.CanCollide = false
971
block2.Position = block.Position + Vector3.new(2,2,2)
972
block2.Transparency = 1
973
local weld2 = Instance.new("Weld",torso)
974
weld2.Part0 = torso
975
weld2.Part1 = block2
976
weld2.C0 = CFrame.new(0,-1.5,0)
977
local part2 = Instance.new("ParticleEmitter",block)
978
part2.Lifetime = NumberRange.new(5)
979
part2.Speed = NumberRange.new(0)
980
part2.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
981
part2.Size = NumberSequence.new(12)
982
part2.Transparency = NumberSequence.new(1)
983
part2.LockedToPart = true
984
part2.Rate = 3
985
part2.Texture = "http://www.roblox.com/asset/?id=894173257"
986
part2.ZOffset = -3
987
988
local part7 = Instance.new("ParticleEmitter",block)
989
part7.Lifetime = NumberRange.new(5)
990
part7.Speed = NumberRange.new(0)
991
992
part7.Size = NumberSequence.new(12)
993
part7.Transparency = NumberSequence.new(1)
994
part7.LockedToPart = true
995
part7.Rate = 3
996
part7.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
997
part7.Texture = "http://www.roblox.com/asset/?id=894173257"
998
part7.ZOffset = -1
999
local model = Instance.new("Model",torso)
1000
local part3 = Instance.new("ParticleEmitter",block2)
1001
part3.Lifetime = NumberRange.new(1)
1002
part3.Speed = NumberRange.new(5)
1003
part3.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
1004
part3.Transparency = NumberSequence.new(1)
1005
part3.Size = NumberSequence.new(0.5)
1006
part3.LockedToPart = true
1007
part3.Rate = 10
1008
part3.Texture = "http://www.roblox.com/asset/?id=549349471"
1009
part3.ZOffset = -0.5
1010
part3.SpreadAngle = Vector2.new(50,0)
1011
	aura1 = Instance.new("ParticleEmitter",torso)
1012
aura1.Transparency = NumberSequence.new(1)
1013
aura1.Size = NumberSequence.new(5)
1014
aura1.Speed = NumberRange.new(0)
1015
aura1.Lifetime = NumberRange.new(5)
1016
aura1.LockedToPart = true
1017
aura1.Rate = 3.5
1018
aura1.Color = ColorSequence.new(Color3.new(0,0,0))
1019
1020
aura1.ZOffset = 2
1021
aura1.Lifetime = NumberRange.new(3)
1022
1023
1024
1025
ypcall(function()
1026
shirt = Instance.new("Shirt", char)
1027
shirt.Name = "Shirt"
1028
pants = Instance.new("Pants", char)
1029
pants.Name = "Pants"
1030
char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=317842437"
1031
char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=317843230"
1032
end)
1033
for i,v in pairs(char:children()) do
1034
    if v:IsA("Accessory") then
1035
        v:Destroy()
1036
    end
1037
end
1038
char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
1039
char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
1040
char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
1041
char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
1042
Hair99 = Instance.new("Part")
1043
1044
Hair99.Parent = p.Character
1045
Hair99.Name = "Hair"
1046
Hair99.formFactor = "Symmetric"
1047
Hair99.Size = Vector3.new(1, 1, 1)
1048
Hair99.CFrame = p.Character.Head.CFrame
1049
Hair99:BreakJoints()
1050
Hair99.CanCollide = false
1051
Hair99.TopSurface = "Smooth"
1052
Hair99.BottomSurface = "Smooth"
1053
Hair99.BrickColor = BrickColor.new("New Yeller")
1054
Hair99.Transparency = 1
1055
1056
Weld = Instance.new("Weld") 
1057
Weld.Part0 = p.Character.Head 
1058
Weld.Part1 = Hair99
1059
Weld.Parent = p.Character.Head 
1060
Weld.C0 = CFrame.new(0, 0.26, 0.06)*CFrame.fromEulerAnglesXYZ(0, 0, 0) 
1061
1062
Hair7 = Instance.new("Part")
1063
Hair7.Parent = p.Character
1064
Hair7.Name = "Hair"
1065
Hair7.CanCollide = false
1066
Hair7.Locked = true
1067
Hair7.TopSurface = "Smooth"
1068
Hair7.BottomSurface = "Smooth"
1069
Hair7.formFactor = "Symmetric"
1070
Hair7.Material = "Neon"
1071
Hair7.BrickColor = BrickColor.new("White")
1072
Hair7.CFrame = p.Character.Torso.CFrame
1073
Hair7.Size = Vector3.new(1, 1, 1)
1074
Hair7.Transparency = 0
1075
1076-
hair8 = Instance.new("Part")
1076+
1077-
hair8.Parent = p.Character
1077+
1078-
hair8.Name = "Head2"
1078+
1079-
hair8.CanCollide = false
1079+
1080-
hair8.Locked = true
1080+
1081-
hair8.TopSurface = "Smooth"
1081+
1082-
hair8.BottomSurface = "Smooth"
1082+
1083-
hair8.formFactor = "Symmetric"
1083+
1084-
hair8.Material = "Neon"
1084+
1085-
hair8.BrickColor = BrickColor.new("White")
1085+
1086-
hair8.CFrame = p.Character.Torso.CFrame
1086+
1087-
hair8.Size = Vector3.new(1, 1, 1)
1087+
1088-
hair8.Transparency = 0
1088+
1089
1090
Mesh = Instance.new("SpecialMesh")
1091
Mesh.Offset = Vector3.new(-0.03, 0, 0.5)
1092
Mesh.Parent = Hair7
1093
Mesh.Scale = Vector3.new(6, 6, 6)
1094
Mesh.MeshType = "FileMesh"
1095
Mesh.MeshId = "http://www.roblox.com/asset/?id=430344159"
1096
Mesh.TextureId = ""
1097
1098
mouse.Button1Down:connect(function()
1099
	t = mouse.Target.Parent:FindFirstChild("Torso")
1100
	hu = mouse.Target.Parent:FindFirstChild("Humanoid")
1101
	if mouse.Target == nil then
1102
		clickon = false
1103
	end
1104
if mouse.Target.Parent:FindFirstChild("Humanoid") ~= nil then
1105
	clickon = true
1106-
Weld1.Part1 = Hair8
1106+
1107
zwc1s2 = Instance.new("Sound",mouse.Target)
1108
zwc1s2.Volume = 5
1109
zwc1s2.Looped = false
1110
zwc1s2.SoundId = "rbxassetid://915341277"
1111
zwc1s2:Play()
1112
1113
1114
1115
else
1116
	clickon = false
1117
	
1118-
Mesh.Offset = Vector3.new(-0.03, 0, 0.7)
1118+
1119-
Mesh.Parent = Hair8
1119+
1120-
Mesh.Scale = Vector3.new(4, 4, 1)
1120+
1121
aurapart3 = Instance.new("Part",char)
1122-
Mesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
1122+
1123
aurapart3.Position = Vector3.new(0,2,0)
1124
aurapart3.Transparency = 1
1125
aurapart3.CanCollide = false
1126
auraweld3 = Instance.new("Weld",char)
1127
auraweld3.Part0 = aurapart3
1128
auraweld3.Part1 = torso
1129
auraweld3.C0 = CFrame.new(0,-3,0)
1130
aura3 = Instance.new("ParticleEmitter",aurapart3)
1131
aura3.Transparency = NumberSequence.new(1)
1132
aura3.Color = ColorSequence.new(Color3.new(0,0,0))
1133
aura3.Size = NumberSequence.new(8)
1134
aura3.Speed = NumberRange.new(0)
1135
aura3.LockedToPart = true
1136
aura3.Rate = 5
1137
aura3.Lifetime = NumberRange.new(5)
1138
aura3.ZOffset = -5
1139
	z2 = Instance.new("Sound",torso)
1140
z2.Volume = 3
1141
z2.Looped = false
1142
z2.SoundId = "rbxassetid://908489666"
1143
	z2d = Instance.new("Sound",torso)
1144
z2d.Volume = 20
1145
z2d.Looped = false
1146
z2d.SoundId = "rbxassetid://663610350"
1147
z4r = Instance.new("Sound",torso)
1148
z4r.Volume = 5
1149
z4r.Looped = false
1150
z4r.SoundId = "rbxassetid://908474188"
1151
1152
mouse.KeyDown:connect(function(Key)
1153
if Key == "r" then
1154
if canattack == true then
1155
1156
1157
kamehamehaon = true
1158
1159
			idle = false
1160
				
1161
			idle1 = false
1162
			canattack = false
1163
			hum.WalkSpeed = 0
1164
		
1165
		
1166
1167
for i = 1,25 do
1168
wait()
1169
		
1170
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(85),math.rad(0)), 0.1)--head
1171
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-85), math.rad(0)), 0.1)--torso
1172
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,0)*CFrame.Angles(math.rad(30),math.rad(-40),math.rad(-10)), 0.1)--rarm
1173
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.2,-0.2)*CFrame.Angles(math.rad(30),math.rad(40),math.rad(40)), 0.1)--larm
1174
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.1)--lleg
1175
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.1)--rleg
1176
		end
1177
		
1178
	if ssjr == true then	
1179
		chatfunc("Kaaaaaaa")
1180
z2d:Play()
1181
wait(3)
1182
chatfunc("Meeeeeeee")
1183
	else
1184
		z2:Play()
1185
		chatfunc("")
1186
end		
1187
		partaura.Size = NumberSequence.new(0.1)
1188
		
1189
		partaura.Transparency = NumberSequence.new(0)
1190
		partaura1.Transparency = NumberSequence.new(0)
1191
		kamehameha = true
1192
		if ssjr == true then
1193
			
1194
		wait(2.5)
1195
		chatfunc("Haaaaaa")
1196
		wait(3.5)
1197
		chatfunc("Meeeeeee")
1198
		wait(2)
1199
		chatfunc("HA")
1200
		wait(0.5)
1201
		else
1202
			
1203
			wait(2)
1204
			chatfunc("")
1205
			wait(0)
1206
		end
1207
		if kamehamehaon == true then
1208
		kamehamehaon = false
1209
		hited = true
1210
		wait(0.1)
1211
	point = true
1212
	kamehamehaon = false
1213
kamehameha = false
1214
1215
1216
1217
partaura.Transparency = NumberSequence.new(1)
1218
partaura1.Transparency = NumberSequence.new(1)
1219
if ssjr == false then
1220
z2:Stop()
1221
z4r:Play()
1222
chatfunc("HAAAAAAAAAA")
1223
end
1224
1225
1226
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 1)--head
1227
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(0)), 1)--torso
1228
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,0)*CFrame.Angles(math.rad(95),math.rad(-10),math.rad(-20)), 1)--rarm
1229
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.5,-0.2)*CFrame.Angles(math.rad(75),math.rad(170),math.rad(-20)), 1)--larm
1230
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(-10)), 1)--lleg
1231
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(10)), 1)--rleg
1232
1233
1234
1235
1236
1237
		laser = true
1238
		s1.Volume=1
1239
s1:play()
1240
		wait(5.4)
1241
		point = false
1242
		laser = false
1243
		beam1.Size = Vector3.new(1,1,1)
1244
beam1.Parent=nil
1245
inner1.Parent=nil
1246
expl1.Parent=nil
1247
if Character:FindFirstChild("TalkingBillBoard")~= nil then
1248
Character:FindFirstChild("TalkingBillBoard"):destroy()
1249
end
1250
hited1 = false
1251
exa1.Parent=nil
1252
s1:stop()
1253
1254
		idle = true
1255
				canattack = true
1256
			idle1 = true
1257
			hum.WalkSpeed = 16
1258
		
1259
		end
1260
		end
1261
end
1262
end)
1263
partt = Instance.new("Part",char)
1264
partt.Position = Vector3.new(999,999,999)
1265
partt.Transparency = 1
1266
partt.CanCollide = false
1267
partt.Size = Vector3.new(0.1,0.1,0.1)
1268
partweld = Instance.new("Weld",partt)
1269
partweld.Part0 = torso
1270
partweld.Part1 = partt
1271
partweld.C0 = CFrame.new(0.3,-.5,-1.5)
1272
partaura = Instance.new("ParticleEmitter",partt)
1273
partaura.Size = NumberSequence.new(2)
1274
partaura.LockedToPart = true
1275
1276
partaura.Transparency = NumberSequence.new(1)
1277
partaura.Texture = "rbxassetid://547574922"
1278
partaura.Speed = NumberRange.new(0)
1279
partaura.Color = ColorSequence.new(Color3.fromRGB(35,0,53))
1280
partaura.Rate = 2
1281
partaura.ZOffset = 0
1282
partaura1 = Instance.new("ParticleEmitter",partt)
1283
partaura1.Size = NumberSequence.new(5)
1284
partaura1.LockedToPart = true
1285
1286
partaura1.Transparency = NumberSequence.new(1)
1287
partaura1.Texture = "http://www.roblox.com/asset/?id=243660364"
1288
partaura1.Color = ColorSequence.new(Color3.fromRGB(35,0,53))
1289
partaura1.Speed = NumberRange.new(0)
1290
partaura1.Rate = 3
1291
partaura1.ZOffset = -1
1292
1293
partaura1.RotSpeed = NumberRange.new(-10,10)
1294
partaura1.SpreadAngle = Vector2.new(360,360)
1295
partaura1.Rotation = NumberRange.new(0,360)
1296
aj = 0
1297
1298
zh = Instance.new("Sound",torso)
1299
zh.Volume = 1
1300
zh.Looped = true
1301
zh.SoundId = "rbxassetid://491515754"
1302
mouse.KeyDown:connect(function(key)
1303
	 if key == "b" then
1304
		if ssjr == false then
1305
		if canattack == true then
1306
			chatfunc("Hmm, You Seem To Rival The Gods Power...")
1307
			wait(4)
1308
			chatfunc("But You're Not Strong Enough To Defeat me")
1309
wait(4)
1310
			chatfunc("Time For You To Taste A Power OF a True God!")
1311
for i = 1,10 do
1312
	wait()
1313
z42d.Volume = z42d.Volume - 5
1314
end
1315
			idle = false
1316
			kiout = false
1317
			kiblade.Transparency = 1
1318
	trail.Enabled = false
1319
			base = false
1320
			hum.WalkSpeed = 0
1321
			lolwait = 6
1322
			local part9 = Instance.new("ParticleEmitter",block)
1323
part9.Lifetime = NumberRange.new(100)
1324
part9.Speed = NumberRange.new(50)
1325
part9.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
1326
part9.Size = NumberSequence.new(15)
1327
part9.Transparency = NumberSequence.new(1)
1328
part9.LockedToPart = true
1329
part9.Rate = 300
1330
part9.Texture = "http://www.roblox.com/asset/?id=894173257"
1331
part9.ZOffset = -3
1332
				
1333
			idle1 = false
1334
			Colors = {"Really black", "Really black"}
1335
			canattack = false
1336
			wait(0.1)
1337
		
1338
			for i = 1, 20 do
1339
		wait()
1340
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.10)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.4)--head
1341
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)--torso
1342
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.2,-.70)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(10)), 0.2)--rarm
1343
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.2,-.70)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-10)), 0.2)--larm
1344
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -.40) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-20)), 0.4)--lleg
1345
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.6, -.40) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.4)--rleg
1346
			end
1347
			shake = true
1348
			partt2 = Instance.new("Part",char)
1349
partt2.Position = torso.Position - Vector3.new(0,2,0)
1350
partt2.Transparency = 1
1351
partt2.CanCollide = true
1352
partt2.Size = Vector3.new(15,0.1,15)
1353
partaura1 = Instance.new("ParticleEmitter",partt2)
1354
partaura1.Size = NumberSequence.new(0.8)
1355
partaura1.LockedToPart = true
1356
partaura1.Lifetime = NumberRange.new(3)
1357
partaura1.Transparency = NumberSequence.new(0)
1358
partaura1.Texture = "http://www.roblox.com/asset/?id=570874272"
1359
1360
partaura1.Speed = NumberRange.new(5)
1361
partaura1.Rate = 2
1362
			
1363
			aura3.Transparency = NumberSequence.new(0)
1364
			
1365
				z1 = Instance.new("Sound",torso)
1366
z1.Volume = 100
1367
z1.Looped = false
1368
z1.SoundId = "rbxassetid://927472099"
1369
z1:Play()
1370
game.Lighting.TimeOfDay = 0
1371
smoke.Enabled = true
1372
light.Enabled = true
1373
GroundWave1()
1374
wait(0.3)
1375
1376
wait(0.3)
1377
GroundWave1()
1378
wait(0.3)
1379
1380
wait(0.3)
1381
GroundWave1()
1382
wait(0.3)
1383
1384
wait(0.3)
1385
GroundWave1()
1386
wait(0.3)
1387
1388
wait(0.3)
1389
GroundWave1()
1390
wait(0.3)
1391
1392
wait(0.3)
1393
GroundWave1()
1394
wait(0.3)
1395
1396
wait(0.3)
1397
Colors = {"New Yeller", "New Yeller"}
1398
GroundWave1()
1399
chatfunc("Super Saiyan 3")
1400
Mesh.MeshId = "rbxassetid://560193297"
1401
    Mesh.Scale = Vector3.new(6.25, 6.25, 6.25)
1402
    Mesh.Offset = Vector3.new(0.03, -2.4, 1.63)
1403
		Hair7.BrickColor = BrickColor.new("New Yeller")
1404
wait(0.3)
1405
1406
wait(0.3)
1407
GroundWave1()
1408
wait(0.3)
1409
if Character:FindFirstChild("TalkingBillBoard")~= nil then
1410
Character:FindFirstChild("TalkingBillBoard"):destroy()
1411
end
1412
wait(0.3)
1413
GroundWave1()
1414
wait(0.3)
1415
1416
wait(0.3)
1417
GroundWave1()
1418
wait(0.3)
1419
Colors = {"Really red", "Really red"}
1420
GroundWave1()
1421
chatfunc("Super Saiyan God")
1422
		Hair7.BrickColor = BrickColor.new("Really red")
1423
Mesh.MeshId = "rbxassetid://476757756"
1424
    Mesh.Scale = Vector3.new(1, 1, 1)
1425
    Mesh.Offset = Vector3.new(0.2, -0.2, 0.2)
1426
1427
wait(0.05)
1428
GroundBall1()
1429
wait(0.25)
1430
1431
wait(0.3)
1432
GroundWave1()
1433
wait(0.3)
1434
1435
wait(0.3)
1436
GroundWave1()
1437
wait(0.3)
1438
1439
wait(0.3)
1440
GroundWave1()
1441
wait(0.3)
1442
1443
wait(0.3)
1444
Colors = {"Cyan", "Cyan"}
1445
GroundWave1()
1446
chatfunc("Super Saiyan Blue")
1447
		Hair7.BrickColor = BrickColor.new("Cyan")
1448
Mesh.MeshId = "rbxassetid://430344159"
1449
    Mesh.Scale = Vector3.new(6,6,6)
1450
    Mesh.Offset = Vector3.new(-0.03, 0, 0.5)
1451
wait(0.05)
1452
GroundBall1()
1453
wait(0.25)
1454
1455
wait(0.3)
1456
GroundWave1()
1457
wait(0.3)
1458
1459
wait(0.3)
1460
GroundWave1()
1461
wait(0.3)
1462
1463
wait(0.3)
1464
GroundWave1()
1465
wait(0.3)
1466
1467
wait(0.3)
1468
GroundWave1()
1469
wait(0.3)
1470
1471
wait(0.3)
1472
GroundWave1()
1473
wait(0.3)
1474
1475
wait(0.3)
1476
Colors = {"Magenta", "Magenta"}
1477
GroundWave1()
1478
chatfunc("Super Saiyan Rose")
1479
		Hair7.BrickColor = BrickColor.new("Hot pink")
1480
wait(0.05)
1481
GroundBall1()
1482
wait(0.25)
1483
1484
wait(0.3)
1485
GroundWave1()
1486
wait(0.3)
1487
1488
wait(0.3)
1489
GroundWave1()
1490
wait(0.3)
1491
1492
wait(0.3)
1493
GroundWave1()
1494
wait(0.3)
1495
1496
wait(0.3)
1497
GroundWave1()
1498
wait(0.3)
1499
1500
wait(0.3)
1501
Colors = {"White", "White"}
1502
GroundWave1()
1503
chatfunc("Super Saiyan White")
1504
		Hair7.BrickColor = BrickColor.new("White")
1505
wait(0.05)
1506
GroundBall1()
1507
wait(0.25)
1508
chatfunc("")
1509
1510
wait(0.3)
1511
GroundWave1()
1512
wait(0.3)
1513
1514
wait(0.3)
1515
GroundWave1()
1516
wait(0.3)
1517
1518
wait(0.3)
1519
GroundWave1()
1520
wait(0.3)
1521
1522
wait(0.3)
1523
GroundWave1()
1524
shake = false
1525
hed.face.Texture = "http://www.roblox.com/asset/?id=1002452110"
1526
hum.CameraOffset = Vector3.new(0,0,0)
1527
part9.Transparency = NumberSequence.new(0.4)
1528
aura3.Transparency = NumberSequence.new(1)
1529
1530
aura1.Transparency = NumberSequence.new(1)
1531
	Mesh.MeshId = "rbxassetid://560193297"
1532
    Mesh.Scale = Vector3.new(6.25, 6.25, 6.25)
1533
    Mesh.Offset = Vector3.new(0.03, -2.4, 1.63)
1534
		Hair7.BrickColor = BrickColor.new("Really black")
1535
	
1536
for i = 1, 5 do
1537
		wait()
1538
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.3,.2)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(0)), 0.8)--head
1539
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
1540
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.5,0)*CFrame.Angles(math.rad(-120),math.rad(0),math.rad(60)), 0.8)--arm
1541
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.5,0)*CFrame.Angles(math.rad(-120),math.rad(0),math.rad(-60)), 0.8)--arm
1542
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-10)), 0.8)--leg
1543
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(10)), 0.8)--leg
1544
end
1545
wait(3)
1546
part9:Destroy()
1547
smoke:Destroy()
1548
zh:Play()
1549
Colors = {"Really red", "Really red"}
1550
GroundWave1()
1551
wait(0.3)
1552
1553
1554
GroundWave1()
1555
wait(0.3)
1556
1557
GroundWave1()
1558
wait(0.3)
1559
1560
GroundWave1()
1561
wait(0.3)
1562
GroundWave1()
1563
			part2.Transparency = NumberSequence.new(0)
1564
			part3.Transparency = NumberSequence.new(0)
1565
			part7.Transparency = NumberSequence.new(0)
1566
			hed.Anchored = false
1567
			
1568
		ssjr = true
1569
		beam1.Color = Color3.fromRGB(203,16,97)
1570
		inner1.Color = Color3.fromRGB(203,16,97)
1571
		expl1.Color = Color3.fromRGB(203,16,97)
1572
		exa1.Color = Color3.fromRGB(203,16,97)
1573
		partaura.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
1574
		partaura1.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
1575
		wait(1)
1576
		for i = 1,20 do
1577
			wait()
1578
			z1.Volume = z1.Volume - 0.5
1579
		end
1580
for i = 1,50 do
1581
	wait()
1582
z42d.Volume = z42d.Volume + 1
1583
end
1584
		idle = true
1585
		idle1 = true
1586
		canattack = true
1587
		chatfunc("I Have Finally Mastered Those Form And Put Them Together.")
1588
		wait(4)
1589
		chatfunc("It Tooks Me Years And Years To Finally Fuse That Together.")
1590
		wait(4)
1591
		chatfunc("My Power Rivals The Omni King.")
1592
		wait(3)
1593
		chatfunc("And Ill Shall Call This.")
1594
		wait(3)
1595
chatfunc("Limit Breaker Saiyan")
1596
		wait(3)
1597
		if Character:FindFirstChild("TalkingBillBoard")~= nil then
1598
Character:FindFirstChild("TalkingBillBoard"):destroy()
1599
end
1600
hum.WalkSpeed = 16
1601
		
1602
		end
1603
		end
1604
		end
1605
end)
1606
local hit1 = true
1607
local hit2 = false
1608
local hit3 = false
1609
local hit4 = false
1610
zw = Instance.new("Sound",torso)
1611
zw.Volume = 1
1612
zw.Looped = false
1613
zw.SoundId = "rbxassetid://896243541"
1614
1615
function leftkick()
1616
for i = 1, 5 do
1617
		wait()
1618
	            	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-60),math.rad(0)), 0.8)--head
1619
	     	torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(2), math.rad(60), math.rad(0)), 0.8)--torso
1620
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.8)--rarm
1621
					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.8)--larm
1622
			 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--lleg
1623
		        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(100), math.rad(0), math.rad(40)), 0.8)--rleg
1624
end
1625
zw:Play()
1626
end
1627
function rightkick()
1628
for i = 1, 5 do
1629
		wait()
1630
	            	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(60),math.rad(0)), 0.8)--head
1631
	     	torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(5), math.rad(-60), math.rad(0)), 0.8)--torso
1632
					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.8)--rarm
1633
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-30)), 0.8)--larm
1634
			 lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(100), math.rad(0), math.rad(-40)), 0.8)--lleg
1635
		        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.8)--rleg
1636
end
1637
zw:Play()
1638
end
1639
function leftpunch()
1640
for i = 1, can do
1641
		wait()
1642
		                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),math.rad(0)), 0.8)--head
1643
		             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(50),math.rad(0)), 0.8)--torso
1644
				    	rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.8)--rarm
1645
					   larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-10)), 0.8)--larm
1646
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.8)--lleg
1647
		             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), 0.8)--rleg
1648
end
1649
zw:Play()
1650
end
1651
function rightpunch()
1652
for i = 1, can do
1653
		wait()
1654
		                    hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(70),math.rad(0)), 0.8)--head
1655
		             torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(-80),math.rad(0)), 0.8)--torso
1656
				    	rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(10)), 0.8)--rarm
1657
					   larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.8)--larm
1658
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.8)--lleg
1659
		             rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), 0.8)--rleg
1660
end
1661
zw:Play()
1662
end
1663
mouse.KeyDown:connect(function(key)
1664
        if key == "e" then
1665
	 if hit1 == true and canattack == true and kiout == false then
1666
	canattack = false
1667
	nohit = 0
1668
1669
	hit1 = false
1670
	hit2 = true
1671
	hit3 = false
1672
	hit4 = false
1673
	hand1 = Instance.new("Part",rarm)
1674
hand1.Size = Vector3.new(1.5,1.5,1.5)
1675
hand1.CanCollide = false
1676
hand1.Transparency = 1
1677
hand1.Position = Vector3.new(999,999,999)
1678
hand1weld = Instance.new("Weld",hand1)
1679
hand1weld.Part0 = rarm
1680
hand1weld.Part1 = hand1
1681
hand1weld.C0 = CFrame.new(0,-1.2,0)
1682
----------------------------------------------------------------
1683
1684
function touch1(hit)
1685
if not hit.Parent:findFirstChild("Humanoid") then return end
1686
if hit.Parent:findFirstChild("Humanoid") ~= nil then
1687
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage
1688
	
1689
zwc:Play()
1690
end
1691
end
1692
hand1.Touched:connect(touch1)
1693
rightpunch()
1694
1695
hand1:Destroy()
1696
canattack = true
1697
	end
1698
	
1699
	
1700
	
1701
	
1702
	if hit1 == true and canattack == true and kiout == true then
1703
		nohit = 0
1704
	canattack = false
1705
	hit1 = false
1706
	kiblade5 = Instance.new("Part",char)
1707
kiblade5.Name = "Blade"
1708
kiblade5.Size = v3(1,5,1)
1709
kiblade5.Transparency = 1
1710
kiblade5.Color = Color3.fromRGB(170,0,127)
1711
kiblade5.Position = v3(999,999,999)
1712
kiblade5.CanCollide = false
1713
1714
1715
kiweld5 = Instance.new("Weld",kiblade5)
1716
kiweld5.Part0 = rarm
1717
kiweld5.Part1 = kiblade5
1718
kiweld5.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
1719
	hit2 = true
1720
	hit3 = false
1721
	hit4 = false
1722
	function touch1(hit)
1723
if not hit.Parent:findFirstChild("Humanoid") then return end
1724
if hit.Parent:findFirstChild("Humanoid") ~= nil then
1725
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage / 2
1726
1727
z42:Play()
1728
end
1729
end
1730
kiblade5.Touched:connect(touch1)
1731
	hum.WalkSpeed = 0
1732
	swing1()
1733
	hum.WalkSpeed = 16
1734
	
1735
	canattack = true
1736
kiblade5:Destroy()
1737
	end
1738
end
1739
1740
1741
1742
1743
1744
1745
end)
1746
mouse.KeyDown:connect(function(key)
1747
        if key == "e" then
1748
	if hit2 == true and canattack == true and kiout == false then
1749
	canattack = false
1750
	nohit = 0
1751
	
1752
	hit1 = false
1753
	hit2 = false
1754
	hit3 = true
1755
	hit4 = false
1756
hand2 = Instance.new("Part",rarm)
1757
hand2.Size = Vector3.new(1.5,1.5,1.5)
1758
hand1.CanCollide = false
1759
hand2.Transparency = 1
1760
hand2.Position = Vector3.new(999,999,999)
1761
hand2weld = Instance.new("Weld",hand2)
1762
hand2weld.Part0 = larm
1763
hand2weld.Part1 = hand2
1764
hand2weld.C0 = CFrame.new(0,-1.2,0)
1765
----------------------------------------------------------------
1766
1767
function touch1(hit)
1768
if not hit.Parent:findFirstChild("Humanoid") then return end
1769
if hit.Parent:findFirstChild("Humanoid") ~= nil then
1770
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage
1771
1772
zwc:Play()
1773
end
1774
end
1775
hand2.Touched:connect(touch1)
1776
leftpunch()
1777
1778
canattack = true
1779
hand2:Destroy()
1780
1781
	end
1782
	
1783
	if hit2 == true and canattack == true and kiout == true then
1784
	canattack = false
1785
	nohit = 0
1786
	kiblade5 = Instance.new("Part",char)
1787
kiblade5.Name = "Blade"
1788
kiblade5.Size = v3(1,5,1)
1789
kiblade5.Transparency = 1
1790
kiblade5.Color = Color3.fromRGB(170,0,127)
1791
kiblade5.Position = v3(999,999,999)
1792
kiblade5.CanCollide = false
1793
1794
1795
kiweld5 = Instance.new("Weld",kiblade5)
1796
kiweld5.Part0 = rarm
1797
kiweld5.Part1 = kiblade5
1798
kiweld5.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
1799
	hit1 = false
1800
	hit2 = false
1801
	hit3 = true
1802
	hit4 = false
1803
	function touch1(hit)
1804
if not hit.Parent:findFirstChild("Humanoid") then return end
1805
if hit.Parent:findFirstChild("Humanoid") ~= nil then
1806
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage / 2
1807
	
1808
z42:Play()
1809
end
1810
end
1811
kiblade5.Touched:connect(touch1)
1812
	hum.WalkSpeed = 0
1813
	swing2()
1814
	hum.WalkSpeed = 16
1815
	
1816
	canattack = true
1817
kiblade5:Destroy()
1818
	end
1819
	
1820
	end
1821
end)
1822
mouse.KeyDown:connect(function(key)
1823
        if key == "e" then
1824
	if hit3 == true and canattack == true and kiout == false then
1825
	canattack = false
1826
	nohit = 0
1827
	
1828
	hit1 = true
1829
	hit2 = false
1830
	hit3 = false
1831
	hit4 = false
1832
hand3 = Instance.new("Part",lleg)
1833
hand3.Size = Vector3.new(1.5,1.5,1.5)
1834
hand3.CanCollide = false
1835
hand3.Transparency = 1
1836
hand3.Position = Vector3.new(999,999,999)
1837
hand3weld = Instance.new("Weld",hand3)
1838
hand3weld.Part0 = lleg
1839
hand3weld.Part1 = hand3
1840
hand3weld.C0 = CFrame.new(0,-1.2,0)
1841
----------------------------------------------------------------
1842
1843
function touch1(hit)
1844
if not hit.Parent:findFirstChild("Humanoid") then return end
1845
if hit.Parent:findFirstChild("Humanoid") ~= nil then
1846
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage
1847
	
1848
zwc:Play()
1849
end
1850
end
1851
hand3.Touched:connect(touch1)
1852
rightkick()
1853
1854
canattack = true
1855
hand3:Destroy()
1856
1857
	end
1858
	
1859
	if hit3 == true and canattack == true and kiout == true then
1860
		if clickon == true then
1861
		jk = true
1862
	clickon = false
1863
	end
1864
	canattack = false
1865
	kiblade5 = Instance.new("Part",char)
1866
kiblade5.Name = "Blade"
1867
kiblade5.Size = v3(1,5,1)
1868
kiblade5.Transparency = 1
1869
kiblade5.Color = Color3.fromRGB(170,0,127)
1870
kiblade5.Position = v3(999,999,999)
1871
kiblade5.CanCollide = false
1872
1873
1874
kiweld5 = Instance.new("Weld",kiblade5)
1875
kiweld5.Part0 = rarm
1876
kiweld5.Part1 = kiblade5
1877
kiweld5.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
1878
	nohit = 0
1879
	hit1 = true
1880
	hit2 = false
1881
	hit3 = false
1882
	hit4 = false
1883
	function touch1(hit)
1884
if not hit.Parent:findFirstChild("Humanoid") then return end
1885
if hit.Parent:findFirstChild("Humanoid") ~= nil then
1886
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage / 2
1887
	hit.Parent:findFirstChild("Torso").CFrame =	hit.Parent:findFirstChild("Torso").CFrame + v3(0,5,0)
1888
	
1889
z42:Play()
1890
end
1891
end
1892
kiblade5.Touched:connect(touch1)
1893
hum.WalkSpeed = 0
1894
	swing3()
1895
	hum.WalkSpeed = 16
1896
	
1897
	canattack = true
1898
	
1899
kiblade5:Destroy()
1900
wait(0.4)
1901
if jk == true then
1902
		jk = false
1903
		clickon = true
1904
	end
1905
	end
1906
	
1907
	
1908
	
1909
	
1910
	
1911
	
1912
	end
1913
end)
1914
1915
	
1916
	
1917
	
1918
	
1919
	
1920
	
1921
	
1922
	
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
kiblade = Instance.new("Part",char)
1936
kiblade.Name = "Blade"
1937
kiblade.Size = v3(1,5,1)
1938
kiblade.Transparency = 1
1939
kiblade.Color = Color3.fromRGB(255,255,255)
1940
kiblade.Position = v3(999,999,999)
1941
kiblade.CanCollide = false
1942
kiblademesh = Instance.new("SpecialMesh",kiblade)
1943
kiblademesh.MeshType = "FileMesh"
1944
kiblademesh.MeshId = "rbxassetid://898849476"
1945
kiblademesh.Scale = v3(0.01,0.0084,0.01)
1946
kiweld7 = Instance.new("Weld",kiblade)
1947
kiweld7.Part0 = rarm
1948
kiweld7.Part1 = kiblade
1949
kiweld7.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
1950
kiblade1 = Instance.new("Part",char)
1951
kiblade1.Name = "Blade"
1952
kiblade1.Transparency = 1
1953
kiblade1.Size = v3(0.1,0.1,0.1)
1954
kiblade1.Position = v3(999,999,999)
1955
kiblade1.CanCollide = false
1956
kiblademesh = Instance.new("SpecialMesh",kiblade1)
1957
kiblademesh.MeshType = "Sphere"
1958
kiblademesh.Scale = v3(1,1,1)
1959
kiweld = Instance.new("Weld",kiblade1)
1960
kiweld.Part0 = rarm
1961
kiweld.Part1 = kiblade1
1962
kiweld.C0 = CFrame.new(0,-1,0)
1963
kiblade2 = Instance.new("Part",char)
1964
kiblade2.Name = "Blade"
1965
kiblade2.Size = v3(0.1,0.1,0.1)
1966
kiblade2.Transparency = 1
1967
kiblade2.Position = v3(999,999,999)
1968
kiblade2.CanCollide = false
1969
kiblademesh = Instance.new("SpecialMesh",kiblade2)
1970
kiblademesh.MeshType = "Sphere"
1971
kiblademesh.Scale = v3(1,1,1)
1972
kiweld = Instance.new("Weld",kiblade2)
1973
kiweld.Part0 = rarm
1974
kiweld.Part1 = kiblade2
1975
kiweld.C0 = CFrame.new(0,-4.5,0)
1976
torso = game.Players.LocalPlayer.Character.Torso
1977
head = game.Players.LocalPlayer.Character.Head
1978
torso1 = Instance.new("Attachment",kiblade1)
1979
head1 = Instance.new("Attachment",kiblade2)
1980
trail = Instance.new("Trail",torso)
1981
trail.Color = ColorSequence.new(Color3.fromRGB(0,0,0))
1982
trail.Attachment0 = torso1
1983
trail.Attachment1 = head1
1984
trail.Lifetime = 0.5
1985
trail.Enabled = false
1986
light = Instance.new("PointLight",torso)
1987
light.Enabled = false
1988
light.Color = Color3.fromRGB(255,255,255)
1989
light.Brightness = 999
1990
light.Range = 50
1991
smoke = Instance.new("Smoke",torso)
1992
smoke.RiseVelocity = 5
1993
smoke.Color = Color3.fromRGB(0,0,0)
1994
smoke.Size = 20
1995
smoke.Opacity = 0.5
1996
smoke.Enabled = false
1997
1998
mouse.KeyDown:connect(function(key)
1999
        if key == "n" then
2000
	if kiout == false then
2001
		if canattack == true then
2002
			canattack = false
2003
			idle=false
2004
			idle1=false
2005
			wait(0.1)
2006
	kiout = true
2007
	swing11()
2008
	kiblade.Transparency = 0
2009
	trail.Enabled = true
2010
	wait(0.6)
2011
	canattack = true
2012
			idle=true
2013
			idle1=true
2014
	end
2015
	end
2016
	
2017
	
2018
	end
2019
end)
2020
function pushaway()
2021
for i = 1, 10 do
2022
		wait()
2023
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(0)), 0.4)--head
2024
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(-1)), 0.4)--torso
2025
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(10)), 0.4)--arm
2026
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
2027
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
2028
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
2029
		end
2030
for i = 1, 10 do
2031
		wait()
2032
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-80),math.rad(0)), 0.4)--head
2033
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(80), math.rad(1)), 0.4)--torso
2034
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)--arm
2035
		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.4)--arm
2036
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
2037
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
2038
end
2039
end
2040
mouse.KeyDown:connect(function(key)
2041
	if key == "m" then
2042
	if kiout == true then
2043
		
2044
		
2045
	kiout = false
2046
	kiblade.Transparency = 1
2047
	trail.Enabled = false
2048
		
2049
		end
2050
	end
2051
end)
2052
2053
2054
2055
function grab5()
2056
for i = 1, 10 do
2057
		wait()
2058
		
2059
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.1)--head
2060
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso		
2061
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(10)), 0.1)--arm
2062
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-10)), 0.1)--arm
2063
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.1)--leg
2064
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.1)--leg
2065
end
2066
for i = 1, 10 do
2067
		wait()
2068
		
2069
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)--head
2070
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.2)--torso		
2071
		rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(-40)), 0.2)--arm
2072
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(40)), 0.2)--arm
2073
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.2)--leg
2074
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(10)), 0.2)--leg
2075
end
2076
end
2077
2078
mouse.KeyDown:connect(function(key)
2079
        if key == "u" then
2080
	if canattack == true then
2081
		
2082
			if kiout == false then
2083
				grab2 = false
2084
					grabhit3 = Instance.new("Part",char)
2085
grabhit3.Size = Vector3.new(2,2,2)
2086
grabhit3.Name = "LOL"
2087
grabhit3.Position = Vector3.new(999,999,999)
2088
grabhit3.Transparency = 1
2089
grabhit3.CanCollide = false
2090
grabweld3 = Instance.new("Weld",grabhit3)
2091
grabweld3.Part0 = torso
2092
grabweld3.Part1 = grabhit3
2093
grabweld3.C0 = CFrame.new(0,0,-2)
2094
				
2095
				grab8 = false	
2096
				idle = false						
2097
			idle1 = false
2098
		canattack = false
2099
				hum.HipHeight = 0
2100
			
2101
			kiblade.Transparency = 0
2102
	trail.Enabled = true	
2103
	swing11()
2104
	if clickon == true then
2105
		jk = true
2106
	clickon = false
2107
	end
2108
				wait(1.4)
2109
				
2110
				go2 = true
2111
					flytowards()
2112
				
2113
function touch5(hit)
2114
if not hit.Parent:findFirstChild("Humanoid") then return end
2115
if hit.Parent:findFirstChild("Humanoid") ~= nil then
2116
	grabhit3.TouchInterest:Destroy()
2117
				go2 = false
2118
2119
2120
	
2121
	
2122
	
2123
	
2124
	
2125
	
2126
			
2127
2128
	
2129
	
2130
	
2131
	
2132
	
2133
	
2134
	grabhit = Instance.new("Part",char)
2135
grabhit.Size = Vector3.new(5,5,5)
2136
grabhit.Position = Vector3.new(999,999,999)
2137
grabhit.Transparency = 1
2138
grabhit.CanCollide = false
2139
grabweld = Instance.new("Weld",grabhit)
2140
grabweld.Part0 = torso
2141
grabweld.Part1 = grabhit
2142
grabweld.C0 = CFrame.new(0,0,-2)
2143
---------------------------------------------------------------
2144
hand1 = Instance.new("Part",rarm)
2145
hand1.Size = Vector3.new(0.1,0.1,0.1)
2146
hand1.CanCollide = false
2147
hand1.Transparency = 1
2148
hand1.Position = Vector3.new(999,999,999)
2149
hand2mesh = Instance.new("SpecialMesh",hand1)
2150
hand2mesh.MeshType = "FileMesh"
2151
2152
hand2mesh.Scale = Vector3.new(1,1,1)
2153
hand2aura = Instance.new("ParticleEmitter",hand1)
2154
hand2aura.Size = NumberSequence.new(1)
2155
hand2aura.Texture = "rbxassetid://715401010"
2156
hand2aura.Speed = NumberRange.new(0)
2157
hand2aura.LockedToPart = true
2158
hand2aura.Transparency = NumberSequence.new(1)
2159
hand2aura.RotSpeed = NumberRange.new(999)
2160
hand1weld = Instance.new("Weld",hand1)
2161
hand1weld.Part0 = rarm
2162
hand1weld.Part1 = hand1
2163
hand1weld.C0 = CFrame.new(0,-1.8,0)
2164
----------------------------------------------------------------
2165
hand2 = Instance.new("Part",rarm)
2166
hand2.Size = Vector3.new(1,1,1)
2167
hand1.CanCollide = false
2168
hand2.Transparency = 1
2169
hand2.Position = Vector3.new(999,999,999)
2170
2171
hand2weld = Instance.new("Weld",hand2)
2172
hand2weld.Part0 = larm
2173
hand2weld.Part1 = hand2
2174
hand2weld.C0 = CFrame.new(0,-1.2,0)
2175
function touch1(hit)
2176
if not hit.Parent:findFirstChild("Humanoid") then return end
2177
if hit.Parent:findFirstChild("Humanoid") ~= nil then
2178
	hu1 = hit.Parent:findFirstChild("Humanoid")
2179
	
2180
	t.Anchored = false
2181
	if clickon == true then
2182
		jk = true
2183
	clickon = false
2184
	end
2185
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 0.5
2186
	if hu1.Health > 100 then
2187
	hu1.MaxHealth = 100
2188
	hu1.Health = 100
2189
	end
2190
	
2191
end
2192
end
2193
hand1.Touched:connect(touch1)
2194
function touch2(hit)
2195
if not hit.Parent:findFirstChild("Humanoid") then return end
2196
if hit.Parent:findFirstChild("Humanoid") ~= nil then
2197
	hu1 = hit.Parent:findFirstChild("Humanoid")
2198
	
2199
2200
	if clickon == true then
2201
		jk = true
2202
	clickon = false
2203
	end
2204
	hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 0.5
2205
	if hu1.Health > 100 then
2206
	hu1.MaxHealth = 100
2207
	hu1.Health = 100
2208
end
2209
end
2210
end
2211
hand2.Touched:connect(touch2)
2212
function touch(hit)
2213
if not hit.Parent:findFirstChild("Humanoid") then return end
2214
if hit.Parent:findFirstChild("Humanoid") ~= nil then
2215
	grabhit.TouchInterest:Destroy()
2216
	grab2 = true
2217
	t.Anchored = false
2218
	if clickon == true then
2219
		jk = true
2220
	clickon = false
2221
	end
2222
	
2223
	
2224
	
2225
	hu12 = hit.Parent:findFirstChild("Humanoid")
2226
to12 = hit.Parent:findFirstChild("Torso")
2227
he12 = hit.Parent:findFirstChild("Head")
2228
ra12 = hit.Parent:findFirstChild("Right Arm")
2229
la12 = hit.Parent:findFirstChild("Left Arm")
2230
rl12 = hit.Parent:findFirstChild("Right Leg")
2231
ll12 = hit.Parent:findFirstChild("Left Leg")
2232
hu12.WalkSpeed = 0
2233
if hu12.Health > 100 then
2234
	hu12.MaxHealth = 100
2235
	hu12.Health = 100
2236
end
2237
2238
2239
2240
2241
end
2242
2243
if grab2 == true then
2244
	
2245
hu12.Health = hu12.Health - 10
2246
	firstswing()
2247
	hu12.Health = hu12.Health - 10
2248
	z42:Play()
2249
	pushed = true
2250
	go1 = true
2251
	flytowards()
2252
2253
	he12.Anchored = true
2254
	pushed = false
2255
	-------------------------------------------------------------
2256
	grabhit1 = Instance.new("Part",char)
2257
grabhit1.Size = Vector3.new(1,1,1)
2258
grabhit1.Position = Vector3.new(999,999,999)
2259
grabhit1.Transparency = 1
2260
grabhit1.CanCollide = false
2261
grabweld = Instance.new("Weld",grabhit1)
2262
grabweld.Part0 = torso
2263
grabweld.Part1 = grabhit1
2264
grabweld.C0 = CFrame.new(0,0,-2)
2265
function touch(hit)
2266
if not hit.Parent:findFirstChild("Humanoid") then return end
2267
if hit.Parent:findFirstChild("Humanoid") ~= nil then
2268
	grabhit1.TouchInterest:Destroy()
2269
	go1 = false
2270
2271
-------------------------------------------------------------------
2272
	
2273
	
2274
	swings()
2275
	hu12.Health = hu12.Health - 20
2276
	hu12.Health = hu12.Health - 10
2277
	he12.Anchored = false
2278
	pushed1 = true
2279
	divine.Transparency = .5
2280
	divine2.Transparency = .5
2281
	divine3.Transparency = .5
2282
	divine4.Transparency = .5
2283
	divine5.Transparency = .5
2284
	divine6.Transparency = .5
2285
	
2286
	divineswinging()
2287
	
2288
	hu12.Health = hu12.Health - 10
2289
	pushed1 = false
2290
	shot1 = false
2291
	divine.CFrame = to12.CFrame + hed.CFrame.lookVector
2292
		divine2.CFrame = ra12.CFrame + hed.CFrame.lookVector + v3(0,0,0)
2293
		divine3.CFrame = la12.CFrame + hed.CFrame.lookVector + v3(0,0,0)
2294
		divine4.CFrame = rl12.CFrame + hed.CFrame.lookVector + v3(2.1,1.3,0)
2295
		divine5.CFrame = ll12.CFrame + hed.CFrame.lookVector + v3(-1.7,1.6,0)
2296
		divine6.CFrame = he12.CFrame + hed.CFrame.lookVector + v3(1.9,-1,0)
2297
	
2298
	divine.Anchored = true
2299
	divine2.Anchored = true
2300
	divine3.Anchored = true
2301
	divine4.Anchored = true
2302
	divine5.Anchored = true
2303
	divine6.Anchored = true
2304
	he12.Anchored = true
2305
	go1 = false
2306
	part6 = Instance.new("Part",to12)
2307
part6.Size = Vector3.new(1,1,1)
2308
part6.Transparency = 0
2309
part6.Position = hit.Position
2310
part6.BrickColor = BrickColor.new("Really red")
2311
partmesh = Instance.new("SpecialMesh",part6)
2312
partmesh.MeshType = "Sphere"
2313
partmesh.Scale = Vector3.new(1,1,1)
2314
partweld1 = Instance.new("Weld",to12)
2315
partweld1.Part0 = to12
2316
partweld1.Part1 = part6
2317
partweld1.C0 = CFrame.new(0,0,0)
2318
2319
	divineend()
2320
	
2321
	
2322
	wait(0.4)
2323
	hu12:Destroy()
2324
	
2325
	for i = 1,50 do
2326
	wait()
2327
	partmesh.Scale = partmesh.Scale + Vector3.new(7,7,7)
2328
	part6.Transparency = part6.Transparency + 0.02
2329
	end
2330
	hu12.WalkSpeed = 16
2331
	
2332
2333
------------------------------------------------------------
2334
	hand1:Destroy()
2335
hand2:Destroy()
2336
kiweld7.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))	
2337
	kiblade.Transparency = 1
2338
	trail.Enabled = false
2339
	
2340
	for i,v in pairs(char:children()) do
2341
    if v:IsA("Accessory") then
2342
        v:Destroy()
2343
    end
2344
end
2345
for i,v in pairs(char:children()) do
2346
    if v:IsA("Hat") then
2347
        v:Destroy()
2348
    end
2349
end
2350
canattack = true
2351
idle = true
2352
			grabhit:Destroy()			
2353
			idle1 = true
2354
		
2355
	if jk == true then
2356
		jk = false
2357
		clickon = true
2358
	end
2359
	
2360
		grab8 = false
2361
		end
2362
end
2363
grabhit1.Touched:connect(touch)	
2364
end
2365
2366
	
2367
end
2368
2369
	
2370
2371
2372
2373
2374
2375
2376
grabhit.Touched:connect(touch)
2377
end
2378
end
2379
grabhit3.Touched:connect(touch5)
2380
2381
2382
	
2383
	wait(3)
2384
	
2385
	if grab2 == false then
2386
		grabhit3:Destroy()
2387
		go2 = false
2388
	kiblade.Transparency = 1
2389
	trail.Enabled = false
2390
canattack = true
2391
idle = true
2392
	up = 0	
2393
				
2394
			idle1 = true
2395
		if jk == true then
2396
		jk = false
2397
		clickon = true
2398
	end	
2399
2400
2401
	
2402
	end
2403
end
2404
end
2405
		
2406
	
2407
	end
2408
end)
2409
	
2410
	
2411
	
2412
	------------------------------------------------------------------
2413
	throw1 = 3
2414
game:GetService("RunService").RenderStepped:connect(function()
2415
	
2416
	
2417
	if pushed == true then
2418
		
2419
		to12.CFrame = to12.CFrame + hed.CFrame.lookVector * 3 + v3(0,0.51,0)
2420
	end
2421
	if pushed1 == true then
2422
		
2423
		to12.CFrame = to12.CFrame + hed.CFrame.lookVector * 1.5 + v3(0,0,0)
2424
	end
2425
	if go1 == true then
2426
		
2427
		torso.CFrame = CFrame.new(torso.CFrame.p,to12.CFrame.p + v3(0,0,2))
2428
	end
2429
	if go2 == true then
2430
		torso.CFrame = CFrame.new(torso.CFrame.p,t.CFrame.p + v3(0,0,2))
2431
		
2432
	end
2433
	if shot1 == true then
2434
		throw1 = throw1 + 1.5
2435
		divine.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(0,0,0)
2436
		divine2.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(1,0,0)
2437
		divine3.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(-1,-1,0)
2438
		divine4.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(2,1,0)
2439
		divine5.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(-1,1,0)
2440
		divine6.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(2,-1,0)
2441
		
2442
		
2443
	end
2444
	
2445
	
2446
	
2447
	
2448
	
2449
	
2450
	
2451
	
2452
	
2453
	
2454
	
2455
	
2456
	
2457
	
2458
	
2459
	if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2460
2461
			if walk == true then
2462
			
2463
			if canattack == true then
2464
			walk = false
2465
			ok = 0
2466
			hum.HipHeight = 0
2467
			lala = false
2468
			down2 = false
2469
			walkon = true
2470
			
2471
					hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)--head
2472
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.5)--torso
2473
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(5)), 0.5)--rarm
2474
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-5)),0.5)--larm
2475
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-5)),.5)--lleg
2476
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(5)),.5)--rleg
2477
wait(0.1)
2478
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2479
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)--head
2480
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.5)--torso
2481
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(5)), 0.5)--rarm
2482
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-5)),0.5)--larm
2483
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-5)),.5)--lleg
2484
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(5)),.5)--rleg
2485
		wait(0.1)
2486
		end
2487
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2488
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2489
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2490
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(5)), .5)--rarm
2491
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-5)),1)--larm
2492
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(-5)),.5)--lleg
2493
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(5)),.5)--rleg
2494
		
2495
	
2496
wait(.1)
2497
end
2498
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2499
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2500
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2501
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(5)), .5)--rarm
2502
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-5)),1)--larm
2503
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(-5)),.5)--lleg
2504
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(5)),.5)--rleg
2505
		
2506
		
2507
wait(.1)
2508
end
2509
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2510
2511
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2512
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2513
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
2514
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
2515
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
2516
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
2517
wait(0.1)
2518
2519
end
2520
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2521
2522
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2523
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2524
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
2525
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
2526
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
2527
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
2528
wait(0.1)
2529
2530
end
2531
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2532
2533
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2534
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2535
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(5)), .5)--rarm
2536
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-5)),.5)--larm
2537
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(-5)),.5)--lleg
2538
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(5)),.5)--rleg
2539
wait(0.1)
2540
end
2541
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2542
2543
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2544
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2545
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(5)), .5)--rarm
2546
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-5)),.5)--larm
2547
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(-5)),.5)--lleg
2548
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(5)),.5)--rleg
2549
wait(0.1)
2550
end
2551
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2552
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2553
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2554
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(5)), .5)--rarm
2555
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-5)),.5)--larm
2556
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(-5)),.5)--lleg
2557
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(5)),.5)--rleg
2558
		wait(0.1)
2559
		
2560
end
2561
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
2562
	hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2563
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2564
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(5)), .5)--rarm
2565
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-5)),.5)--larm
2566
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(-5)),.5)--lleg
2567
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(5)),.5)--rleg
2568
		wait(0.1)
2569
	
2570
end
2571
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then	
2572
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2573
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2574
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
2575
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
2576
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
2577
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
2578
2579
wait(0.1)
2580
end
2581
if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then	
2582
hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
2583
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
2584
					rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
2585
					larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
2586
					lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
2587
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
2588
2589
wait(0.1)
2590
end
2591
2592
		walk = true
2593
			end	
2594
			end
2595
end
2596
	if hum.MoveDirection.x == 0 and nohit > 10 then
2597
		if idle1 == true then
2598
			if ssjr == true then
2599
			walkon = false
2600
			idle1 = false
2601
		idle = false
2602
			if canattack == true then
2603
idle = true
2604
idle1 = true
2605
			end
2606
		
2607
		hum.HipHeight = ok
2608
	stance1()
2609
	
2610
	end
2611
		end
2612
	end
2613
	if hum.MoveDirection.x == 0 and nohit > 10 then
2614
		if idle1 == true then
2615
			if base == true then
2616
				hum.HipHeight = 0
2617
				if canattack == true then
2618
idle = true
2619
idle1 = true
2620
end
2621
			walkon = false
2622
			idle1 = false
2623
		idle = false
2624
			if canattack == true then
2625
idle = true
2626
idle1 = true
2627
			end
2628
		
2629
	stance2()
2630
	
2631
	end
2632
		end
2633
	end
2634
	if rl == true then
2635
		rl = false
2636
		nohit = nohit + 0.2	
2637
		rl = true
2638
	end
2639
	
2640
	if lala == false and walkon == false then
2641
		
2642
		ok = ok + 0.05
2643
		
2644
	end
2645
	if ok > 3.9999999 and walkon == false then
2646
		lala = true
2647
		down2 = true
2648
		ok = ok - 0.05
2649
		
2650
	end
2651
	if ok < 0.1111111 and walkon == false then
2652
		down2 = false
2653
		lala = false
2654
	end
2655
	if down2 == true then
2656
		ok = ok - 0.05
2657
	end
2658
	
2659
	
2660
	
2661
	
2662
	
2663
	
2664
	if auracan3 == true then
2665
	auracan3 = false
2666
	aura3.Texture = "rbxassetid://901509906"
2667
	wait(0.07)
2668
	aura3.Texture = "rbxassetid://901510046"
2669
	wait(0.07)
2670
	aura3.Texture = "rbxassetid://901510125"
2671
	wait(0.07)
2672
	auracan3 = true
2673
	end
2674
	
2675
	
2676
	
2677
	
2678
	
2679
	if kamehameha == true then
2680
			aj1 = aj1 + 0.005
2681
			partaura.Size = NumberSequence.new(aj1)
2682
			beam1.Size=beam1.Size + v3(0.5,0.5,0)
2683
			beamdamage = beamdamage + 9
2684
			expl1.Size=expl1.Size + v3(0.01,0.01,0.01)*s1.Volume
2685
			exa1.Size=exa1.Size + v3(0.01,0.01,0.01)*s1.Volume
2686
	else
2687
		aj1 = 0.1
2688
		
2689
	end
2690
	
2691
if clickon == true then
2692
		
2693
	torso.CFrame = CFrame.new(torso.CFrame.p,t.CFrame.p)
2694
	if hu.Health > 100 then
2695
		hu.MaxHealth = 100
2696
		hu.Health = 100
2697
	end
2698
	if hu.Health < 1 then
2699
		clickon = false
2700
	
2701
		end
2702
		
2703
	end
2704
	
2705
	if darius == true then
2706
		darius = false
2707
	wait(0.1)
2708
part2.Texture = "http://www.roblox.com/asset/?id=926975911" 
2709
wait(0.1)
2710
part2.Texture = "http://www.roblox.com/asset/?id=926976058"
2711
wait(0.1)
2712
part2.Texture = "http://www.roblox.com/asset/?id=926976185"
2713
2714
2715
darius = true
2716
	end
2717
if darius1 == true then
2718
		darius1 = false
2719
	wait(0.1)
2720
part7.Texture = "http://www.roblox.com/asset/?id=927229024" 
2721
wait(0.1)
2722
part7.Texture = "http://www.roblox.com/asset/?id=927282857"
2723
wait(0.1)
2724
part7.Texture = "http://www.roblox.com/asset/?id=927283016"
2725
2726
2727
darius1 = true
2728
	end
2729
	
2730
	
2731
	if auracan1 == true then
2732
	auracan1 = false
2733
	aura1.Texture = "rbxassetid://281983000"
2734
	wait(0.1)
2735
aura1.Texture = "rbxassetid://281982895"
2736
	wait(0.1)
2737
aura1.Texture = "rbxassetid://281983092"
2738
	wait(0.1)
2739
aura1.Texture = "rbxassetid://281996097"
2740
	wait(0.1)
2741
aura1.Texture = "rbxassetid://281983189"
2742
	wait(0.1)
2743
aura1.Texture = "rbxassetid://281983242"
2744
	wait(0.1)
2745
aura1.Texture = "rbxassetid://281983280"
2746
	wait(0.1)
2747
aura1.Texture = "rbxassetid://281983337"
2748
	wait(0.1)
2749
	
2750
	auracan1 = true
2751
	end
2752
	
2753
2754
	
2755
	
2756
	
2757
	
2758
	
2759
	
2760
	
2761
	
2762
	
2763
	if shake == true then
2764
		if lolf == true then
2765
		lolf = false
2766
		
2767
hum.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
2768
2769
2770
2771
		
2772
		wait()
2773
	lolf = true
2774
	end
2775
	end
2776
	
2777
end)
2778
zwc1 = Instance.new("Sound",torso)
2779
zwc1.Volume = 5
2780
zwc1.Looped = false
2781
zwc1.SoundId = "rbxassetid://744770874"
2782
mouse.KeyDown:connect(function(key)
2783
        if key == "z" then
2784
if canattack == true then
2785
	
2786
canattack = false
2787
idle = false
2788
hum.WalkSpeed = 0
2789
nohit = 0
2790
idle1 = false
2791
for i = 1, 10 do
2792
		wait()
2793
		hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
2794
		torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
2795
		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.4)--arm
2796
		larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.8,0.7,-0.7)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(140)), 0.4)--arm
2797
		lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.4)--leg
2798
		rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(10)), 0.4)--leg
2799
end
2800
2801
zwc1:Play()
2802
if clickon == true then
2803
torso.CFrame = t.CFrame - Vector3.new(0,0,2)
2804
else
2805
	torso.CFrame = torso.CFrame + torso.CFrame.lookVector * 40
2806
end
2807
canattack = true
2808
idle = true
2809
hum.WalkSpeed = 10
2810
idle1 = true
2811
end
2812
2813
2814
end
2815
end)
2816
2817
ee = Instance.new("Part",char)
2818
ee.Size = Vector3.new(0.2,0.2,0.2)
2819
ee.Position = Vector3.new(9999999,9999999,9999999)
2820
ee.Shape = "Ball"
2821
ee.BrickColor = BrickColor.new("Really red")
2822
ee1 = Instance.new("Part",char)
2823
ee1.Size = Vector3.new(0.18,0.18,0.18)
2824
ee1.Position = Vector3.new(999999,999999,999999)
2825
ee1.Shape = "Ball"
2826
ee1.BrickColor = BrickColor.new("Really black") 
2827
ee2 = Instance.new("Part",char)
2828
ee2.Size = Vector3.new(0.06,0.06,0.06)
2829
ee2.Shape = "Ball"
2830
ee2.BrickColor = BrickColor.new("Really black")
2831
ee2.Position = Vector3.new(99999,99999,99999)
2832
ee3 = Instance.new("Part",char)
2833
ee3.Size = Vector3.new(0.06,0.06,0.06)
2834
ee3.Shape = "Ball"
2835
ee3.BrickColor = BrickColor.new("Really black")
2836
ee3.Position = Vector3.new(9999,9999,9999)
2837
ee4 = Instance.new("Part",char)
2838
ee4.Size = Vector3.new(0.1,0.1,0.1)
2839
ee4.Shape = "Ball"
2840
ee4.BrickColor = BrickColor.new("Really black")
2841
ee4.Position = Vector3.new(999,999,999)
2842
eew = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
2843
eew.Part0 = game.Players.LocalPlayer.Character.Head
2844
eew.Part1 = ee
2845
eew.C0 = CFrame.new(-0.68,-0.22,0)
2846
eew1 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
2847
eew1.Part0 = ee
2848
eew1.Part1 = ee1
2849
eew1.C0 = CFrame.new(0,0.02,0)
2850
eew2 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
2851
eew2.Part0 = game.Players.LocalPlayer.Character.Head
2852
eew2.Part1 = ee2
2853
eew2.C0 = CFrame.new(-0.67,-0.1,0)
2854
eew3 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
2855
eew3.Part0 = game.Players.LocalPlayer.Character.Head
2856
eew3.Part1 = ee3
2857
eew3.C0 = CFrame.new(-0.66,-0.05,0)
2858
eew4 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
2859
eew4.Part0 = game.Players.LocalPlayer.Character.Head
2860
eew4.Part1 = ee4
2861
eew4.C0 = CFrame.new(-0.64,-0.01,0)
2862
    local txt = Instance.new("BillboardGui", char)
2863
    txt.Adornee = char .Head
2864
    txt.Name = "_status"
2865
    txt.Size = UDim2.new(2, 0, 1.2, 0)
2866
    txt.StudsOffset = Vector3.new(-9, 9, 0)
2867
    local text = Instance.new("TextLabel", txt)
2868
    text.Size = UDim2.new(10, 0, 7, 0)
2869
    text.FontSize = "Size24"
2870
    text.TextScaled = true
2871
    text.TextTransparency = 0
2872
    text.BackgroundTransparency = 1
2873
    text.TextTransparency = 0
2874
    text.TextStrokeTransparency = 0
2875
    text.Font = "Cartoon"
2876
    text.TextStrokeColor3 = Color3.new(255,255,255)
2877
 
2878
    v=Instance.new("Part")
2879
    v.Name = "ColorBrick"
2880
    v.Parent=p.Character
2881
    v.FormFactor="Symmetric"
2882
    v.Anchored=true
2883
    v.CanCollide=false
2884
    v.BottomSurface="Smooth"
2885
    v.TopSurface="Smooth"
2886
    v.Size=Vector3.new(10,5,3)
2887
    v.Transparency=1
2888
    v.CFrame=char.Torso.CFrame
2889
    v.BrickColor=BrickColor.new(CV)
2890
    v.Transparency=1
2891
    text.TextColor3 = Color3.new(255,0,0)
2892
    v.Shape="Block"
2893
    text.Text = "Black Goku(Edited)"
2894
chatfunc("I'm A Warrior From The Evil Realm")
2895
wait(4)
2896
chatfunc("I've been send from a god to eliminate you.")
2897
wait(4)
2898
if Character:FindFirstChild("TalkingBillBoard")~= nil then
2899
Character:FindFirstChild("TalkingBillBoard"):destroy()
2900
end
2901
----------------------------------------------------------------------
2902
hum.WalkSpeed = 0
2903
Colors = {"White", "White"}
2904
GroundWave1()
2905
wait(0.1)
2906
GroundBall1()
2907
wait(0.1)
2908
GroundWave1()
2909
wait(0.1)
2910
GroundWave1()
2911
wait(0.1)
2912
GroundWave1()
2913
wait(0.1)
2914
GroundBall1()
2915
wait(0.1)
2916
GroundWave1()
2917
wait(0.1)
2918
GroundWave1()
2919-
    text.Text = "Evil Goku"
2919+
2920
GroundBall1()
2921
wait(0.1)
2922
GroundBall1()
2923
wait(0.1)
2924
GroundBall1()
2925
wait(0.05)
2926
GroundBall1()
2927
wait(0.001)
2928
local m2 = Instance.new("Model")
2929
m2.Name = "Wings"
2930
p1 = Instance.new("Part", m2)
2931
p1.BrickColor = BrickColor.new("White")
2932
p1.Material = Enum.Material.Neon
2933
p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117)
2934
p1.FormFactor = Enum.FormFactor.Custom
2935
p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
2936
p1.BottomSurface = Enum.SurfaceType.Smooth
2937
p1.TopSurface = Enum.SurfaceType.Smooth
2938
b1 = Instance.new("SpecialMesh", p1)
2939
b1.MeshType = Enum.MeshType.Sphere
2940
b1.Name = "Mesh"
2941
p2 = Instance.new("Part", m2)
2942
p2.BrickColor = BrickColor.new("White")
2943
p2.Material = Enum.Material.SmoothPlastic
2944
p2.Reflectance = 0.30000001192093
2945
p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783)
2946
p2.CanCollide = false
2947
p2.FormFactor = Enum.FormFactor.Custom
2948
p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2949
p2.BottomSurface = Enum.SurfaceType.Smooth
2950
p2.TopSurface = Enum.SurfaceType.Smooth
2951
b2 = Instance.new("SpecialMesh", p2)
2952
b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
2953
b2.TextureId = ""
2954
b2.MeshType = Enum.MeshType.FileMesh
2955
b2.Name = "Mesh"
2956
b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
2957
p3 = Instance.new("Part", m2)
2958
p3.BrickColor = BrickColor.new("White")
2959
p3.Material = Enum.Material.SmoothPlastic
2960
p3.Reflectance = 0.30000001192093
2961
p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664)
2962
p3.CanCollide = false
2963
p3.FormFactor = Enum.FormFactor.Custom
2964
p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
2965
p3.BottomSurface = Enum.SurfaceType.Smooth
2966
p3.TopSurface = Enum.SurfaceType.Smooth
2967
b3 = Instance.new("SpecialMesh", p3)
2968
b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
2969
b3.TextureId = ""
2970
b3.MeshType = Enum.MeshType.FileMesh
2971
b3.Name = "Mesh"
2972
b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
2973
p4 = Instance.new("Part", m2)
2974
p4.BrickColor = BrickColor.new("White")
2975
p4.Material = Enum.Material.SmoothPlastic
2976
p4.Reflectance = 0.30000001192093
2977
p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968)
2978
p4.CanCollide = false
2979
p4.FormFactor = Enum.FormFactor.Custom
2980
p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
2981
p4.BottomSurface = Enum.SurfaceType.Smooth
2982
p4.TopSurface = Enum.SurfaceType.Smooth
2983
b4 = Instance.new("SpecialMesh", p4)
2984
b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
2985
b4.TextureId = ""
2986
b4.MeshType = Enum.MeshType.FileMesh
2987
b4.Name = "Mesh"
2988
b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
2989
p5 = Instance.new("Part", m2)
2990
p5.BrickColor = BrickColor.new("White")
2991
p5.Material = Enum.Material.SmoothPlastic
2992
p5.Reflectance = 0.30000001192093
2993
p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485)
2994
p5.CanCollide = false
2995
p5.FormFactor = Enum.FormFactor.Custom
2996
p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
2997
p5.BottomSurface = Enum.SurfaceType.Smooth
2998
p5.TopSurface = Enum.SurfaceType.Smooth
2999
b5 = Instance.new("SpecialMesh", p5)
3000
b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
3001
b5.TextureId = ""
3002
b5.MeshType = Enum.MeshType.FileMesh
3003
b5.Name = "Mesh"
3004
b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3005
p6 = Instance.new("Part", m2)
3006
p6.BrickColor = BrickColor.new("White")
3007
p6.Material = Enum.Material.SmoothPlastic
3008
p6.Reflectance = 0.30000001192093
3009
p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366)
3010
p6.CanCollide = false
3011
p6.FormFactor = Enum.FormFactor.Custom
3012
p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3013
p6.BottomSurface = Enum.SurfaceType.Smooth
3014
p6.TopSurface = Enum.SurfaceType.Smooth
3015
b6 = Instance.new("SpecialMesh", p6)
3016
b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
3017
b6.TextureId = ""
3018
b6.MeshType = Enum.MeshType.FileMesh
3019
b6.Name = "Mesh"
3020
b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3021
p7 = Instance.new("Part", m2)
3022
p7.BrickColor = BrickColor.new("White")
3023
p7.Material = Enum.Material.SmoothPlastic
3024
p7.Reflectance = 0.30000001192093
3025
p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247)
3026
p7.CanCollide = false
3027
p7.FormFactor = Enum.FormFactor.Custom
3028
p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3029
p7.BottomSurface = Enum.SurfaceType.Smooth
3030
p7.TopSurface = Enum.SurfaceType.Smooth
3031
b7 = Instance.new("SpecialMesh", p7)
3032
b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
3033
b7.TextureId = ""
3034
b7.MeshType = Enum.MeshType.FileMesh
3035
b7.Name = "Mesh"
3036
b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3037
p8 = Instance.new("Part", m2)
3038
p8.BrickColor = BrickColor.new("White")
3039
p8.Material = Enum.Material.SmoothPlastic
3040
p8.Reflectance = 0.30000001192093
3041
p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128)
3042
p8.CanCollide = false
3043
p8.FormFactor = Enum.FormFactor.Custom
3044
p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3045
p8.BottomSurface = Enum.SurfaceType.Smooth
3046
p8.TopSurface = Enum.SurfaceType.Smooth
3047
b8 = Instance.new("SpecialMesh", p8)
3048
b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
3049
b8.TextureId = ""
3050
b8.MeshType = Enum.MeshType.FileMesh
3051
b8.Name = "Mesh"
3052
b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3053
p9 = Instance.new("Part", m2)
3054
p9.BrickColor = BrickColor.new("White")
3055
p9.Material = Enum.Material.SmoothPlastic
3056
p9.Reflectance = 0.30000001192093
3057
p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843)
3058
p9.CanCollide = false
3059
p9.FormFactor = Enum.FormFactor.Custom
3060
p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3061
p9.BottomSurface = Enum.SurfaceType.Smooth
3062
p9.TopSurface = Enum.SurfaceType.Smooth
3063
b9 = Instance.new("SpecialMesh", p9)
3064
b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
3065
b9.TextureId = ""
3066
b9.MeshType = Enum.MeshType.FileMesh
3067
b9.Name = "Mesh"
3068
b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3069
p10 = Instance.new("Part", m2)
3070
p10.BrickColor = BrickColor.new("White")
3071
p10.Material = Enum.Material.SmoothPlastic
3072
p10.Reflectance = 0.30000001192093
3073
p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172)
3074
p10.CanCollide = false
3075
p10.FormFactor = Enum.FormFactor.Custom
3076
p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3077
p10.BottomSurface = Enum.SurfaceType.Smooth
3078
p10.TopSurface = Enum.SurfaceType.Smooth
3079
b10 = Instance.new("SpecialMesh", p10)
3080
b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
3081
b10.TextureId = ""
3082
b10.MeshType = Enum.MeshType.FileMesh
3083
b10.Name = "Mesh"
3084
b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3085
p11 = Instance.new("Part", m2)
3086
p11.BrickColor = BrickColor.new("White")
3087
p11.Material = Enum.Material.SmoothPlastic
3088
p11.Reflectance = 0.30000001192093
3089
p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172)
3090
p11.CanCollide = false
3091
p11.FormFactor = Enum.FormFactor.Custom
3092
p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3093
p11.BottomSurface = Enum.SurfaceType.Smooth
3094
p11.TopSurface = Enum.SurfaceType.Smooth
3095
b11 = Instance.new("SpecialMesh", p11)
3096
b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
3097
b11.TextureId = ""
3098
b11.MeshType = Enum.MeshType.FileMesh
3099
b11.Name = "Mesh"
3100
b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3101
p12 = Instance.new("Part", m2)
3102
p12.BrickColor = BrickColor.new("White")
3103
p12.Material = Enum.Material.SmoothPlastic
3104
p12.Reflectance = 0.30000001192093
3105
p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922)
3106
p12.CanCollide = false
3107
p12.FormFactor = Enum.FormFactor.Custom
3108
p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3109
p12.BottomSurface = Enum.SurfaceType.Smooth
3110
p12.TopSurface = Enum.SurfaceType.Smooth
3111
b12 = Instance.new("SpecialMesh", p12)
3112
b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
3113
b12.TextureId = ""
3114
b12.MeshType = Enum.MeshType.FileMesh
3115
b12.Name = "Mesh"
3116
b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3117
p13 = Instance.new("Part", m2)
3118
p13.BrickColor = BrickColor.new("White")
3119
p13.Material = Enum.Material.SmoothPlastic
3120
p13.Reflectance = 0.30000001192093
3121
p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202)
3122
p13.CanCollide = false
3123
p13.FormFactor = Enum.FormFactor.Custom
3124
p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3125
p13.BottomSurface = Enum.SurfaceType.Smooth
3126
p13.TopSurface = Enum.SurfaceType.Smooth
3127
b13 = Instance.new("SpecialMesh", p13)
3128
b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
3129
b13.TextureId = ""
3130
b13.MeshType = Enum.MeshType.FileMesh
3131
b13.Name = "Mesh"
3132
b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3133
p14 = Instance.new("Part", m2)
3134
p14.BrickColor = BrickColor.new("White")
3135
p14.Material = Enum.Material.SmoothPlastic
3136
p14.Reflectance = 0.30000001192093
3137
p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922)
3138
p14.CanCollide = false
3139
p14.FormFactor = Enum.FormFactor.Custom
3140
p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3141
p14.BottomSurface = Enum.SurfaceType.Smooth
3142
p14.TopSurface = Enum.SurfaceType.Smooth
3143
b14 = Instance.new("SpecialMesh", p14)
3144
b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
3145
b14.TextureId = ""
3146
b14.MeshType = Enum.MeshType.FileMesh
3147
b14.Name = "Mesh"
3148
b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3149
p15 = Instance.new("Part", m2)
3150
p15.BrickColor = BrickColor.new("White")
3151
p15.Material = Enum.Material.SmoothPlastic
3152
p15.Reflectance = 0.30000001192093
3153
p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266)
3154
p15.CanCollide = false
3155
p15.FormFactor = Enum.FormFactor.Custom
3156
p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3157
p15.BottomSurface = Enum.SurfaceType.Smooth
3158
p15.TopSurface = Enum.SurfaceType.Smooth
3159
b15 = Instance.new("SpecialMesh", p15)
3160
b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
3161
b15.TextureId = ""
3162
b15.MeshType = Enum.MeshType.FileMesh
3163
b15.Name = "Mesh"
3164
b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3165
p16 = Instance.new("Part", m2)
3166
p16.BrickColor = BrickColor.new("White")
3167
p16.Material = Enum.Material.SmoothPlastic
3168
p16.Reflectance = 0.30000001192093
3169
p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041)
3170
p16.CanCollide = false
3171
p16.FormFactor = Enum.FormFactor.Custom
3172
p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3173
p16.BottomSurface = Enum.SurfaceType.Smooth
3174
p16.TopSurface = Enum.SurfaceType.Smooth
3175
b16 = Instance.new("SpecialMesh", p16)
3176
b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
3177
b16.TextureId = ""
3178
b16.MeshType = Enum.MeshType.FileMesh
3179
b16.Name = "Mesh"
3180
b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3181
p17 = Instance.new("Part", m2)
3182
p17.BrickColor = BrickColor.new("White")
3183
p17.Material = Enum.Material.SmoothPlastic
3184
p17.Reflectance = 0.30000001192093
3185
p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385)
3186
p17.CanCollide = false
3187
p17.FormFactor = Enum.FormFactor.Custom
3188
p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3189
p17.BottomSurface = Enum.SurfaceType.Smooth
3190
p17.TopSurface = Enum.SurfaceType.Smooth
3191
b17 = Instance.new("SpecialMesh", p17)
3192
b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
3193
b17.TextureId = ""
3194
b17.MeshType = Enum.MeshType.FileMesh
3195
b17.Name = "Mesh"
3196
b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3197
p18 = Instance.new("Part", m2)
3198
p18.BrickColor = BrickColor.new("White")
3199
p18.Material = Enum.Material.SmoothPlastic
3200
p18.Reflectance = 0.30000001192093
3201
p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381)
3202
p18.CanCollide = false
3203
p18.FormFactor = Enum.FormFactor.Custom
3204
p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3205
p18.BottomSurface = Enum.SurfaceType.Smooth
3206
p18.TopSurface = Enum.SurfaceType.Smooth
3207
b18 = Instance.new("SpecialMesh", p18)
3208
b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
3209
b18.TextureId = ""
3210
b18.MeshType = Enum.MeshType.FileMesh
3211
b18.Name = "Mesh"
3212
b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3213
p19 = Instance.new("Part", m2)
3214
p19.BrickColor = BrickColor.new("White")
3215
p19.Material = Enum.Material.SmoothPlastic
3216
p19.Reflectance = 0.30000001192093
3217
p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141)
3218
p19.CanCollide = false
3219
p19.FormFactor = Enum.FormFactor.Custom
3220
p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3221
p19.BottomSurface = Enum.SurfaceType.Smooth
3222
p19.TopSurface = Enum.SurfaceType.Smooth
3223
b19 = Instance.new("SpecialMesh", p19)
3224
b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
3225
b19.TextureId = ""
3226
b19.MeshType = Enum.MeshType.FileMesh
3227
b19.Name = "Mesh"
3228
b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3229
p20 = Instance.new("Part", m2)
3230
p20.BrickColor = BrickColor.new("White")
3231
p20.Material = Enum.Material.SmoothPlastic
3232
p20.Reflectance = 0.30000001192093
3233
p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141)
3234
p20.CanCollide = false
3235
p20.FormFactor = Enum.FormFactor.Custom
3236
p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3237
p20.BottomSurface = Enum.SurfaceType.Smooth
3238
p20.TopSurface = Enum.SurfaceType.Smooth
3239
b20 = Instance.new("SpecialMesh", p20)
3240
b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
3241
b20.TextureId = ""
3242
b20.MeshType = Enum.MeshType.FileMesh
3243
b20.Name = "Mesh"
3244
b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3245
p21 = Instance.new("Part", m2)
3246
p21.BrickColor = BrickColor.new("White")
3247
p21.Material = Enum.Material.SmoothPlastic
3248
p21.Reflectance = 0.30000001192093
3249
p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023)
3250
p21.CanCollide = false
3251
p21.FormFactor = Enum.FormFactor.Custom
3252
p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3253
p21.BottomSurface = Enum.SurfaceType.Smooth
3254
p21.TopSurface = Enum.SurfaceType.Smooth
3255
b21 = Instance.new("SpecialMesh", p21)
3256
b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
3257
b21.TextureId = ""
3258
b21.MeshType = Enum.MeshType.FileMesh
3259
b21.Name = "Mesh"
3260
b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3261
p22 = Instance.new("Part", m2)
3262
p22.BrickColor = BrickColor.new("White")
3263
p22.Material = Enum.Material.SmoothPlastic
3264
p22.Reflectance = 0.30000001192093
3265
p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141)
3266
p22.CanCollide = false
3267
p22.FormFactor = Enum.FormFactor.Custom
3268
p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3269
p22.BottomSurface = Enum.SurfaceType.Smooth
3270
p22.TopSurface = Enum.SurfaceType.Smooth
3271
b22 = Instance.new("SpecialMesh", p22)
3272
b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
3273
b22.TextureId = ""
3274
b22.MeshType = Enum.MeshType.FileMesh
3275
b22.Name = "Mesh"
3276
b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3277
p23 = Instance.new("Part", m2)
3278
p23.BrickColor = BrickColor.new("White")
3279
p23.Material = Enum.Material.SmoothPlastic
3280
p23.Reflectance = 0.30000001192093
3281
p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027)
3282
p23.CanCollide = false
3283
p23.FormFactor = Enum.FormFactor.Custom
3284
p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3285
p23.BottomSurface = Enum.SurfaceType.Smooth
3286
p23.TopSurface = Enum.SurfaceType.Smooth
3287
b23 = Instance.new("SpecialMesh", p23)
3288
b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
3289
b23.TextureId = ""
3290
b23.MeshType = Enum.MeshType.FileMesh
3291
b23.Name = "Mesh"
3292
b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3293
p24 = Instance.new("Part", m2)
3294
p24.BrickColor = BrickColor.new("White")
3295
p24.Material = Enum.Material.SmoothPlastic
3296
p24.Reflectance = 0.30000001192093
3297
p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087)
3298
p24.CanCollide = false
3299
p24.FormFactor = Enum.FormFactor.Custom
3300
p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3301
p24.BottomSurface = Enum.SurfaceType.Smooth
3302
p24.TopSurface = Enum.SurfaceType.Smooth
3303
b24 = Instance.new("SpecialMesh", p24)
3304
b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
3305
b24.TextureId = ""
3306
b24.MeshType = Enum.MeshType.FileMesh
3307
b24.Name = "Mesh"
3308
b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3309
p25 = Instance.new("Part", m2)
3310
p25.BrickColor = BrickColor.new("White")
3311
p25.Material = Enum.Material.SmoothPlastic
3312
p25.Reflectance = 0.30000001192093
3313
p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862)
3314
p25.CanCollide = false
3315
p25.FormFactor = Enum.FormFactor.Custom
3316
p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3317
p25.BottomSurface = Enum.SurfaceType.Smooth
3318
p25.TopSurface = Enum.SurfaceType.Smooth
3319
b25 = Instance.new("SpecialMesh", p25)
3320
b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
3321
b25.TextureId = ""
3322
b25.MeshType = Enum.MeshType.FileMesh
3323
b25.Name = "Mesh"
3324
b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3325
p26 = Instance.new("Part", m2)
3326
p26.BrickColor = BrickColor.new("White")
3327
p26.Material = Enum.Material.SmoothPlastic
3328
p26.Reflectance = 0.30000001192093
3329
p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146)
3330
p26.CanCollide = false
3331
p26.FormFactor = Enum.FormFactor.Custom
3332
p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3333
p26.BottomSurface = Enum.SurfaceType.Smooth
3334
p26.TopSurface = Enum.SurfaceType.Smooth
3335
b26 = Instance.new("SpecialMesh", p26)
3336
b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
3337
b26.TextureId = ""
3338
b26.MeshType = Enum.MeshType.FileMesh
3339
b26.Name = "Mesh"
3340
b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3341
p27 = Instance.new("Part", m2)
3342
p27.BrickColor = BrickColor.new("White")
3343
p27.Material = Enum.Material.SmoothPlastic
3344
p27.Reflectance = 0.30000001192093
3345
p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732)
3346
p27.CanCollide = false
3347
p27.FormFactor = Enum.FormFactor.Custom
3348
p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3349
p27.BottomSurface = Enum.SurfaceType.Smooth
3350
p27.TopSurface = Enum.SurfaceType.Smooth
3351
b27 = Instance.new("SpecialMesh", p27)
3352
b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
3353
b27.TextureId = ""
3354
b27.MeshType = Enum.MeshType.FileMesh
3355
b27.Name = "Mesh"
3356
b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3357
p28 = Instance.new("Part", m2)
3358
p28.BrickColor = BrickColor.new("White")
3359
p28.Material = Enum.Material.SmoothPlastic
3360
p28.Reflectance = 0.30000001192093
3361
p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785)
3362
p28.CanCollide = false
3363
p28.FormFactor = Enum.FormFactor.Custom
3364
p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3365
p28.BottomSurface = Enum.SurfaceType.Smooth
3366
p28.TopSurface = Enum.SurfaceType.Smooth
3367
b28 = Instance.new("SpecialMesh", p28)
3368
b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
3369
b28.TextureId = ""
3370
b28.MeshType = Enum.MeshType.FileMesh
3371
b28.Name = "Mesh"
3372
b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3373
p29 = Instance.new("Part", m2)
3374
p29.BrickColor = BrickColor.new("White")
3375
p29.Material = Enum.Material.Neon
3376
p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521)
3377
p29.FormFactor = Enum.FormFactor.Custom
3378
p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
3379
p29.BottomSurface = Enum.SurfaceType.Smooth
3380
p29.TopSurface = Enum.SurfaceType.Smooth
3381
b29 = Instance.new("SpecialMesh", p29)
3382
b29.MeshType = Enum.MeshType.Sphere
3383
b29.Name = "Mesh"
3384
p30 = Instance.new("Part", m2)
3385
p30.BrickColor = BrickColor.new("White")
3386
p30.Material = Enum.Material.SmoothPlastic
3387
p30.Reflectance = 0.30000001192093
3388
p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147)
3389
p30.CanCollide = false
3390
p30.FormFactor = Enum.FormFactor.Custom
3391
p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3392
p30.BottomSurface = Enum.SurfaceType.Smooth
3393
p30.TopSurface = Enum.SurfaceType.Smooth
3394
b30 = Instance.new("SpecialMesh", p30)
3395
b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
3396
b30.TextureId = ""
3397
b30.MeshType = Enum.MeshType.FileMesh
3398
b30.Name = "Mesh"
3399
b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3400
p31 = Instance.new("Part", m2)
3401
p31.BrickColor = BrickColor.new("White")
3402
p31.Material = Enum.Material.SmoothPlastic
3403
p31.Reflectance = 0.30000001192093
3404
p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485)
3405
p31.CanCollide = false
3406
p31.FormFactor = Enum.FormFactor.Custom
3407
p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3408
p31.BottomSurface = Enum.SurfaceType.Smooth
3409
p31.TopSurface = Enum.SurfaceType.Smooth
3410
b31 = Instance.new("SpecialMesh", p31)
3411
b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
3412
b31.TextureId = ""
3413
b31.MeshType = Enum.MeshType.FileMesh
3414
b31.Name = "Mesh"
3415
b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3416
p32 = Instance.new("Part", m2)
3417
p32.BrickColor = BrickColor.new("White")
3418
p32.Material = Enum.Material.SmoothPlastic
3419
p32.Reflectance = 0.30000001192093
3420
p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461)
3421
p32.CanCollide = false
3422
p32.FormFactor = Enum.FormFactor.Custom
3423
p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3424
p32.BottomSurface = Enum.SurfaceType.Smooth
3425
p32.TopSurface = Enum.SurfaceType.Smooth
3426
b32 = Instance.new("SpecialMesh", p32)
3427
b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
3428
b32.TextureId = ""
3429
b32.MeshType = Enum.MeshType.FileMesh
3430
b32.Name = "Mesh"
3431
b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3432
p33 = Instance.new("Part", m2)
3433
p33.BrickColor = BrickColor.new("White")
3434
p33.Material = Enum.Material.Neon
3435
p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759)
3436
p33.FormFactor = Enum.FormFactor.Custom
3437
p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
3438
p33.BottomSurface = Enum.SurfaceType.Smooth
3439
p33.TopSurface = Enum.SurfaceType.Smooth
3440
b33 = Instance.new("SpecialMesh", p33)
3441
b33.MeshType = Enum.MeshType.Sphere
3442
b33.Name = "Mesh"
3443
p34 = Instance.new("Part", m2)
3444
p34.BrickColor = BrickColor.new("White")
3445
p34.Material = Enum.Material.SmoothPlastic
3446
p34.Reflectance = 0.30000001192093
3447
p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604)
3448
p34.CanCollide = false
3449
p34.FormFactor = Enum.FormFactor.Custom
3450
p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3451
p34.BottomSurface = Enum.SurfaceType.Smooth
3452
p34.TopSurface = Enum.SurfaceType.Smooth
3453
b34 = Instance.new("SpecialMesh", p34)
3454
b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
3455
b34.TextureId = ""
3456
b34.MeshType = Enum.MeshType.FileMesh
3457
b34.Name = "Mesh"
3458
b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3459
p35 = Instance.new("Part", m2)
3460
p35.BrickColor = BrickColor.new("White")
3461
p35.Material = Enum.Material.SmoothPlastic
3462
p35.Reflectance = 0.30000001192093
3463
p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909)
3464
p35.CanCollide = false
3465
p35.FormFactor = Enum.FormFactor.Custom
3466
p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3467
p35.BottomSurface = Enum.SurfaceType.Smooth
3468
p35.TopSurface = Enum.SurfaceType.Smooth
3469
b35 = Instance.new("SpecialMesh", p35)
3470
b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
3471
b35.TextureId = ""
3472
b35.MeshType = Enum.MeshType.FileMesh
3473
b35.Name = "Mesh"
3474
b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3475
p36 = Instance.new("Part", m2)
3476
p36.BrickColor = BrickColor.new("White")
3477
p36.Material = Enum.Material.SmoothPlastic
3478
p36.Reflectance = 0.30000001192093
3479
p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461)
3480
p36.CanCollide = false
3481
p36.FormFactor = Enum.FormFactor.Custom
3482
p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3483
p36.BottomSurface = Enum.SurfaceType.Smooth
3484
p36.TopSurface = Enum.SurfaceType.Smooth
3485
b36 = Instance.new("SpecialMesh", p36)
3486
b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
3487
b36.TextureId = ""
3488
b36.MeshType = Enum.MeshType.FileMesh
3489
b36.Name = "Mesh"
3490
b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3491
p37 = Instance.new("Part", m2)
3492
p37.BrickColor = BrickColor.new("White")
3493
p37.Material = Enum.Material.Neon
3494
p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938)
3495
p37.FormFactor = Enum.FormFactor.Custom
3496
p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
3497
p37.BottomSurface = Enum.SurfaceType.Smooth
3498
p37.TopSurface = Enum.SurfaceType.Smooth
3499
b37 = Instance.new("SpecialMesh", p37)
3500
b37.MeshType = Enum.MeshType.Sphere
3501
b37.Name = "Mesh"
3502
p38 = Instance.new("Part", m2)
3503
p38.BrickColor = BrickColor.new("White")
3504
p38.Material = Enum.Material.Neon
3505
p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057)
3506
p38.FormFactor = Enum.FormFactor.Custom
3507
p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
3508
p38.BottomSurface = Enum.SurfaceType.Smooth
3509
p38.TopSurface = Enum.SurfaceType.Smooth
3510
b38 = Instance.new("SpecialMesh", p38)
3511
b38.MeshType = Enum.MeshType.Sphere
3512
b38.Name = "Mesh"
3513
p39 = Instance.new("Part", m2)
3514
p39.BrickColor = BrickColor.new("White")
3515
p39.Material = Enum.Material.SmoothPlastic
3516
p39.Reflectance = 0.30000001192093
3517
p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
3518
p39.CanCollide = false
3519
p39.FormFactor = Enum.FormFactor.Custom
3520
p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3521
p39.BottomSurface = Enum.SurfaceType.Smooth
3522
p39.TopSurface = Enum.SurfaceType.Smooth
3523
b39 = Instance.new("SpecialMesh", p39)
3524
b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
3525
b39.TextureId = ""
3526
b39.MeshType = Enum.MeshType.FileMesh
3527
b39.Name = "Mesh"
3528
b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3529
p40 = Instance.new("Part", m2)
3530
p40.BrickColor = BrickColor.new("White")
3531
p40.Material = Enum.Material.SmoothPlastic
3532
p40.Reflectance = 0.30000001192093
3533
p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
3534
p40.CanCollide = false
3535
p40.FormFactor = Enum.FormFactor.Custom
3536
p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3537
p40.BottomSurface = Enum.SurfaceType.Smooth
3538
p40.TopSurface = Enum.SurfaceType.Smooth
3539
b40 = Instance.new("SpecialMesh", p40)
3540
b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
3541
b40.TextureId = ""
3542
b40.MeshType = Enum.MeshType.FileMesh
3543
b40.Name = "Mesh"
3544
b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3545
p41 = Instance.new("Part", m2)
3546
p41.BrickColor = BrickColor.new("White")
3547
p41.Material = Enum.Material.SmoothPlastic
3548
p41.Reflectance = 0.30000001192093
3549
p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
3550
p41.CanCollide = false
3551
p41.FormFactor = Enum.FormFactor.Custom
3552
p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3553
p41.BottomSurface = Enum.SurfaceType.Smooth
3554
p41.TopSurface = Enum.SurfaceType.Smooth
3555
b41 = Instance.new("SpecialMesh", p41)
3556
b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
3557
b41.TextureId = ""
3558
b41.MeshType = Enum.MeshType.FileMesh
3559
b41.Name = "Mesh"
3560
b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3561
p42 = Instance.new("Part", m2)
3562
p42.BrickColor = BrickColor.new("White")
3563
p42.Material = Enum.Material.SmoothPlastic
3564
p42.Reflectance = 0.30000001192093
3565
p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683)
3566
p42.CanCollide = false
3567
p42.FormFactor = Enum.FormFactor.Custom
3568
p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3569
p42.BottomSurface = Enum.SurfaceType.Smooth
3570
p42.TopSurface = Enum.SurfaceType.Smooth
3571
b42 = Instance.new("SpecialMesh", p42)
3572
b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
3573
b42.TextureId = ""
3574
b42.MeshType = Enum.MeshType.FileMesh
3575
b42.Name = "Mesh"
3576
b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3577
p43 = Instance.new("Part", m2)
3578
p43.BrickColor = BrickColor.new("White")
3579
p43.Material = Enum.Material.SmoothPlastic
3580
p43.Reflectance = 0.30000001192093
3581
p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683)
3582
p43.CanCollide = false
3583
p43.FormFactor = Enum.FormFactor.Custom
3584
p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3585
p43.BottomSurface = Enum.SurfaceType.Smooth
3586
p43.TopSurface = Enum.SurfaceType.Smooth
3587
b43 = Instance.new("SpecialMesh", p43)
3588
b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
3589
b43.TextureId = ""
3590
b43.MeshType = Enum.MeshType.FileMesh
3591
b43.Name = "Mesh"
3592
b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3593
p44 = Instance.new("Part", m2)
3594
p44.BrickColor = BrickColor.new("White")
3595
p44.Material = Enum.Material.SmoothPlastic
3596
p44.Reflectance = 0.30000001192093
3597
p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683)
3598
p44.CanCollide = false
3599
p44.FormFactor = Enum.FormFactor.Custom
3600
p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3601
p44.BottomSurface = Enum.SurfaceType.Smooth
3602
p44.TopSurface = Enum.SurfaceType.Smooth
3603
b44 = Instance.new("SpecialMesh", p44)
3604
b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
3605
b44.TextureId = ""
3606
b44.MeshType = Enum.MeshType.FileMesh
3607
b44.Name = "Mesh"
3608
b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3609
p45 = Instance.new("Part", m2)
3610
p45.BrickColor = BrickColor.new("White")
3611
p45.Material = Enum.Material.SmoothPlastic
3612
p45.Reflectance = 0.30000001192093
3613
p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683)
3614
p45.CanCollide = false
3615
p45.FormFactor = Enum.FormFactor.Custom
3616
p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3617
p45.BottomSurface = Enum.SurfaceType.Smooth
3618
p45.TopSurface = Enum.SurfaceType.Smooth
3619
b45 = Instance.new("SpecialMesh", p45)
3620
b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
3621
b45.TextureId = ""
3622
b45.MeshType = Enum.MeshType.FileMesh
3623
b45.Name = "Mesh"
3624
b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3625
p46 = Instance.new("Part", m2)
3626
p46.BrickColor = BrickColor.new("White")
3627
p46.Material = Enum.Material.SmoothPlastic
3628
p46.Reflectance = 0.30000001192093
3629
p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683)
3630
p46.CanCollide = false
3631
p46.FormFactor = Enum.FormFactor.Custom
3632
p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3633
p46.BottomSurface = Enum.SurfaceType.Smooth
3634
p46.TopSurface = Enum.SurfaceType.Smooth
3635
b46 = Instance.new("SpecialMesh", p46)
3636
b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
3637
b46.TextureId = ""
3638
b46.MeshType = Enum.MeshType.FileMesh
3639
b46.Name = "Mesh"
3640
b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3641
p47 = Instance.new("Part", m2)
3642
p47.BrickColor = BrickColor.new("White")
3643
p47.Material = Enum.Material.SmoothPlastic
3644
p47.Reflectance = 0.30000001192093
3645
p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683)
3646
p47.CanCollide = false
3647
p47.FormFactor = Enum.FormFactor.Custom
3648
p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3649
p47.BottomSurface = Enum.SurfaceType.Smooth
3650
p47.TopSurface = Enum.SurfaceType.Smooth
3651
b47 = Instance.new("SpecialMesh", p47)
3652
b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
3653
b47.TextureId = ""
3654
b47.MeshType = Enum.MeshType.FileMesh
3655
b47.Name = "Mesh"
3656
b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3657
p48 = Instance.new("Part", m2)
3658
p48.BrickColor = BrickColor.new("White")
3659
p48.Material = Enum.Material.Neon
3660
p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223)
3661
p48.FormFactor = Enum.FormFactor.Custom
3662
p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
3663
p48.BottomSurface = Enum.SurfaceType.Smooth
3664
p48.TopSurface = Enum.SurfaceType.Smooth
3665
b48 = Instance.new("SpecialMesh", p48)
3666
b48.MeshType = Enum.MeshType.Sphere
3667
b48.Name = "Mesh"
3668
p49 = Instance.new("Part", m2)
3669
p49.BrickColor = BrickColor.new("White")
3670
p49.Material = Enum.Material.SmoothPlastic
3671
p49.Reflectance = 0.30000001192093
3672
p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
3673
p49.CanCollide = false
3674
p49.FormFactor = Enum.FormFactor.Custom
3675
p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3676
p49.BottomSurface = Enum.SurfaceType.Smooth
3677
p49.TopSurface = Enum.SurfaceType.Smooth
3678
b49 = Instance.new("SpecialMesh", p49)
3679
b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
3680
b49.TextureId = ""
3681
b49.MeshType = Enum.MeshType.FileMesh
3682
b49.Name = "Mesh"
3683
b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3684
p50 = Instance.new("Part", m2)
3685
p50.BrickColor = BrickColor.new("White")
3686
p50.Material = Enum.Material.SmoothPlastic
3687
p50.Reflectance = 0.30000001192093
3688
p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
3689
p50.CanCollide = false
3690
p50.FormFactor = Enum.FormFactor.Custom
3691
p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3692
p50.BottomSurface = Enum.SurfaceType.Smooth
3693
p50.TopSurface = Enum.SurfaceType.Smooth
3694
b50 = Instance.new("SpecialMesh", p50)
3695
b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
3696
b50.TextureId = ""
3697
b50.MeshType = Enum.MeshType.FileMesh
3698
b50.Name = "Mesh"
3699
b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3700
p51 = Instance.new("Part", m2)
3701
p51.BrickColor = BrickColor.new("White")
3702
p51.Material = Enum.Material.SmoothPlastic
3703
p51.Reflectance = 0.30000001192093
3704
p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
3705
p51.CanCollide = false
3706
p51.FormFactor = Enum.FormFactor.Custom
3707
p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3708
p51.BottomSurface = Enum.SurfaceType.Smooth
3709
p51.TopSurface = Enum.SurfaceType.Smooth
3710
b51 = Instance.new("SpecialMesh", p51)
3711
b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
3712
b51.TextureId = ""
3713
b51.MeshType = Enum.MeshType.FileMesh
3714
b51.Name = "Mesh"
3715
b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3716
p52 = Instance.new("Part", m2)
3717
p52.BrickColor = BrickColor.new("White")
3718
p52.Material = Enum.Material.Neon
3719
p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103)
3720
p52.FormFactor = Enum.FormFactor.Custom
3721
p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
3722
p52.BottomSurface = Enum.SurfaceType.Smooth
3723
p52.TopSurface = Enum.SurfaceType.Smooth
3724
b52 = Instance.new("SpecialMesh", p52)
3725
b52.MeshType = Enum.MeshType.Sphere
3726
b52.Name = "Mesh"
3727
p53 = Instance.new("Part", m2)
3728
p53.BrickColor = BrickColor.new("White")
3729
p53.Material = Enum.Material.Neon
3730
p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103)
3731
p53.FormFactor = Enum.FormFactor.Custom
3732
p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
3733
p53.BottomSurface = Enum.SurfaceType.Smooth
3734
p53.TopSurface = Enum.SurfaceType.Smooth
3735
b53 = Instance.new("SpecialMesh", p53)
3736
b53.MeshType = Enum.MeshType.Sphere
3737
b53.Name = "Mesh"
3738
p54 = Instance.new("Part", m2)
3739
p54.BrickColor = BrickColor.new("White")
3740
p54.Material = Enum.Material.Neon
3741
p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103)
3742
p54.FormFactor = Enum.FormFactor.Custom
3743
p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
3744
p54.BottomSurface = Enum.SurfaceType.Smooth
3745
p54.TopSurface = Enum.SurfaceType.Smooth
3746
b54 = Instance.new("SpecialMesh", p54)
3747
b54.MeshType = Enum.MeshType.Sphere
3748
b54.Name = "Mesh"
3749
p55 = Instance.new("Part", m2)
3750
p55.BrickColor = BrickColor.new("White")
3751
p55.Material = Enum.Material.Neon
3752
p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984)
3753
p55.FormFactor = Enum.FormFactor.Custom
3754
p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
3755
p55.BottomSurface = Enum.SurfaceType.Smooth
3756
p55.TopSurface = Enum.SurfaceType.Smooth
3757
b55 = Instance.new("SpecialMesh", p55)
3758
b55.MeshType = Enum.MeshType.Sphere
3759
b55.Name = "Mesh"
3760
p56 = Instance.new("Part", m2)
3761
p56.BrickColor = BrickColor.new("White")
3762
p56.Material = Enum.Material.SmoothPlastic
3763
p56.Reflectance = 0.30000001192093
3764
p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
3765
p56.CanCollide = false
3766
p56.FormFactor = Enum.FormFactor.Custom
3767
p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3768
p56.BottomSurface = Enum.SurfaceType.Smooth
3769
p56.TopSurface = Enum.SurfaceType.Smooth
3770
b56 = Instance.new("SpecialMesh", p56)
3771
b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
3772
b56.TextureId = ""
3773
b56.MeshType = Enum.MeshType.FileMesh
3774
b56.Name = "Mesh"
3775
b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3776
p57 = Instance.new("Part", m2)
3777
p57.BrickColor = BrickColor.new("White")
3778
p57.Material = Enum.Material.SmoothPlastic
3779
p57.Reflectance = 0.30000001192093
3780
p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
3781
p57.CanCollide = false
3782
p57.FormFactor = Enum.FormFactor.Custom
3783
p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3784
p57.BottomSurface = Enum.SurfaceType.Smooth
3785
p57.TopSurface = Enum.SurfaceType.Smooth
3786
b57 = Instance.new("SpecialMesh", p57)
3787
b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
3788
b57.TextureId = ""
3789
b57.MeshType = Enum.MeshType.FileMesh
3790
b57.Name = "Mesh"
3791
b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3792
p58 = Instance.new("Part", m2)
3793
p58.BrickColor = BrickColor.new("White")
3794
p58.Material = Enum.Material.SmoothPlastic
3795
p58.Reflectance = 0.30000001192093
3796
p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
3797
p58.CanCollide = false
3798
p58.FormFactor = Enum.FormFactor.Custom
3799
p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3800
p58.BottomSurface = Enum.SurfaceType.Smooth
3801
p58.TopSurface = Enum.SurfaceType.Smooth
3802
b58 = Instance.new("SpecialMesh", p58)
3803
b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
3804
b58.TextureId = ""
3805
b58.MeshType = Enum.MeshType.FileMesh
3806
b58.Name = "Mesh"
3807
b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3808
p59 = Instance.new("Part", m2)
3809
p59.BrickColor = BrickColor.new("White")
3810
p59.Material = Enum.Material.SmoothPlastic
3811
p59.Reflectance = 0.30000001192093
3812
p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478)
3813
p59.CanCollide = false
3814
p59.FormFactor = Enum.FormFactor.Custom
3815
p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3816
p59.BottomSurface = Enum.SurfaceType.Smooth
3817
p59.TopSurface = Enum.SurfaceType.Smooth
3818
b59 = Instance.new("SpecialMesh", p59)
3819
b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
3820
b59.TextureId = ""
3821
b59.MeshType = Enum.MeshType.FileMesh
3822
b59.Name = "Mesh"
3823
b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3824
p60 = Instance.new("Part", m2)
3825
p60.BrickColor = BrickColor.new("White")
3826
p60.Material = Enum.Material.SmoothPlastic
3827
p60.Reflectance = 0.30000001192093
3828
p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478)
3829
p60.CanCollide = false
3830
p60.FormFactor = Enum.FormFactor.Custom
3831
p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3832
p60.BottomSurface = Enum.SurfaceType.Smooth
3833
p60.TopSurface = Enum.SurfaceType.Smooth
3834
b60 = Instance.new("SpecialMesh", p60)
3835
b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
3836
b60.TextureId = ""
3837
b60.MeshType = Enum.MeshType.FileMesh
3838
b60.Name = "Mesh"
3839
b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3840
p61 = Instance.new("Part", m2)
3841
p61.BrickColor = BrickColor.new("White")
3842
p61.Material = Enum.Material.SmoothPlastic
3843
p61.Reflectance = 0.30000001192093
3844
p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478)
3845
p61.CanCollide = false
3846
p61.FormFactor = Enum.FormFactor.Custom
3847
p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3848
p61.BottomSurface = Enum.SurfaceType.Smooth
3849
p61.TopSurface = Enum.SurfaceType.Smooth
3850
b61 = Instance.new("SpecialMesh", p61)
3851
b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
3852
b61.TextureId = ""
3853
b61.MeshType = Enum.MeshType.FileMesh
3854
b61.Name = "Mesh"
3855
b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3856
p62 = Instance.new("Part", m2)
3857
p62.BrickColor = BrickColor.new("White")
3858
p62.Material = Enum.Material.SmoothPlastic
3859
p62.Reflectance = 0.30000001192093
3860
p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478)
3861
p62.CanCollide = false
3862
p62.FormFactor = Enum.FormFactor.Custom
3863
p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
3864
p62.BottomSurface = Enum.SurfaceType.Smooth
3865
p62.TopSurface = Enum.SurfaceType.Smooth
3866
b62 = Instance.new("SpecialMesh", p62)
3867
b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
3868
b62.TextureId = ""
3869
b62.MeshType = Enum.MeshType.FileMesh
3870
b62.Name = "Mesh"
3871
b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
3872
p63 = Instance.new("Part", m2)
3873
p63.BrickColor = BrickColor.new("White")
3874
p63.Material = Enum.Material.SmoothPlastic
3875
p63.Reflectance = 0.30000001192093
3876
p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478)
3877
p63.CanCollide = false
3878
p63.FormFactor = Enum.FormFactor.Custom
3879
p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
3880
p63.BottomSurface = Enum.SurfaceType.Smooth
3881
p63.TopSurface = Enum.SurfaceType.Smooth
3882
b63 = Instance.new("SpecialMesh", p63)
3883
b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
3884
b63.TextureId = ""
3885
b63.MeshType = Enum.MeshType.FileMesh
3886
b63.Name = "Mesh"
3887
b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
3888
p64 = Instance.new("Part", m2)
3889
p64.BrickColor = BrickColor.new("White")
3890
p64.Material = Enum.Material.SmoothPlastic
3891
p64.Reflectance = 0.30000001192093
3892
p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478)
3893
p64.CanCollide = false
3894
p64.FormFactor = Enum.FormFactor.Custom
3895
p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
3896
p64.BottomSurface = Enum.SurfaceType.Smooth
3897
p64.TopSurface = Enum.SurfaceType.Smooth
3898
b64 = Instance.new("SpecialMesh", p64)
3899
b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
3900
b64.TextureId = ""
3901
b64.MeshType = Enum.MeshType.FileMesh
3902
b64.Name = "Mesh"
3903
b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
3904
p65 = Instance.new("Part", m2)
3905
p65.BrickColor = BrickColor.new("Really black")
3906
p65.Transparency = 1
3907
p65.Name = "TorsoPart"
3908
p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093)
3909
p65.FormFactor = Enum.FormFactor.Symmetric
3910
p65.Size = Vector3.new(4, 4, 2)
3911
w1 = Instance.new("Weld", p1)
3912
w1.Name = "Part_Weld"
3913
w1.Part0 = p1
3914
w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117)
3915
w1.Part1 = p2
3916
w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3917
w2 = Instance.new("Weld", p2)
3918
w2.Name = "Part_Weld"
3919
w2.Part0 = p2
3920
w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3921
w2.Part1 = p3
3922
w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3923
w3 = Instance.new("Weld", p3)
3924
w3.Name = "Part_Weld"
3925
w3.Part0 = p3
3926
w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3927
w3.Part1 = p4
3928
w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
3929
w4 = Instance.new("Weld", p4)
3930
w4.Name = "Part_Weld"
3931
w4.Part0 = p4
3932
w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
3933
w4.Part1 = p5
3934
w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3935
w5 = Instance.new("Weld", p5)
3936
w5.Name = "Part_Weld"
3937
w5.Part0 = p5
3938
w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3939
w5.Part1 = p6
3940
w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3941
w6 = Instance.new("Weld", p6)
3942
w6.Name = "Part_Weld"
3943
w6.Part0 = p6
3944
w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3945
w6.Part1 = p7
3946
w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3947
w7 = Instance.new("Weld", p7)
3948
w7.Name = "Part_Weld"
3949
w7.Part0 = p7
3950
w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3951
w7.Part1 = p8
3952
w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3953
w8 = Instance.new("Weld", p8)
3954
w8.Name = "Part_Weld"
3955
w8.Part0 = p8
3956
w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
3957
w8.Part1 = p9
3958
w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
3959
w9 = Instance.new("Weld", p9)
3960
w9.Name = "Part_Weld"
3961
w9.Part0 = p9
3962
w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
3963
w9.Part1 = p10
3964
w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3965
w10 = Instance.new("Weld", p10)
3966
w10.Name = "Part_Weld"
3967
w10.Part0 = p10
3968
w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3969
w10.Part1 = p11
3970
w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3971
w11 = Instance.new("Weld", p11)
3972
w11.Name = "Part_Weld"
3973
w11.Part0 = p11
3974
w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3975
w11.Part1 = p12
3976
w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3977
w12 = Instance.new("Weld", p12)
3978
w12.Name = "Part_Weld"
3979
w12.Part0 = p12
3980
w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3981
w12.Part1 = p13
3982
w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3983
w13 = Instance.new("Weld", p13)
3984
w13.Name = "Part_Weld"
3985
w13.Part0 = p13
3986
w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
3987
w13.Part1 = p14
3988
w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3989
w14 = Instance.new("Weld", p14)
3990
w14.Name = "Part_Weld"
3991
w14.Part0 = p14
3992
w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
3993
w14.Part1 = p15
3994
w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
3995
w15 = Instance.new("Weld", p15)
3996
w15.Name = "Part_Weld"
3997
w15.Part0 = p15
3998
w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
3999
w15.Part1 = p16
4000
w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4001
w16 = Instance.new("Weld", p16)
4002
w16.Name = "Part_Weld"
4003
w16.Part0 = p16
4004
w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4005
w16.Part1 = p17
4006
w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4007
w17 = Instance.new("Weld", p17)
4008
w17.Name = "Part_Weld"
4009
w17.Part0 = p17
4010
w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4011
w17.Part1 = p18
4012
w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4013
w18 = Instance.new("Weld", p18)
4014
w18.Name = "Part_Weld"
4015
w18.Part0 = p18
4016
w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4017
w18.Part1 = p19
4018
w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4019
w19 = Instance.new("Weld", p19)
4020
w19.Name = "Part_Weld"
4021
w19.Part0 = p19
4022
w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4023
w19.Part1 = p20
4024
w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4025
w20 = Instance.new("Weld", p20)
4026
w20.Name = "Part_Weld"
4027
w20.Part0 = p20
4028
w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4029
w20.Part1 = p21
4030
w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4031
w21 = Instance.new("Weld", p21)
4032
w21.Name = "Part_Weld"
4033
w21.Part0 = p21
4034
w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4035
w21.Part1 = p22
4036
w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4037
w22 = Instance.new("Weld", p22)
4038
w22.Name = "Part_Weld"
4039
w22.Part0 = p22
4040
w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4041
w22.Part1 = p23
4042
w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4043
w23 = Instance.new("Weld", p23)
4044
w23.Name = "Part_Weld"
4045
w23.Part0 = p23
4046
w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4047
w23.Part1 = p24
4048
w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4049
w24 = Instance.new("Weld", p24)
4050
w24.Name = "Part_Weld"
4051
w24.Part0 = p24
4052
w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4053
w24.Part1 = p25
4054
w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4055
w25 = Instance.new("Weld", p25)
4056
w25.Name = "Part_Weld"
4057
w25.Part0 = p25
4058
w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4059
w25.Part1 = p26
4060
w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4061
w26 = Instance.new("Weld", p26)
4062
w26.Name = "Part_Weld"
4063
w26.Part0 = p26
4064
w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
4065
w26.Part1 = p27
4066
w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4067
w27 = Instance.new("Weld", p27)
4068
w27.Name = "Part_Weld"
4069
w27.Part0 = p27
4070
w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4071
w27.Part1 = p28
4072
w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4073
w28 = Instance.new("Weld", p28)
4074
w28.Name = "Part_Weld"
4075
w28.Part0 = p28
4076
w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4077
w28.Part1 = p29
4078
w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
4079
w29 = Instance.new("Weld", p29)
4080
w29.Name = "Part_Weld"
4081
w29.Part0 = p29
4082
w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
4083
w29.Part1 = p30
4084
w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4085
w30 = Instance.new("Weld", p30)
4086
w30.Name = "Part_Weld"
4087
w30.Part0 = p30
4088
w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4089
w30.Part1 = p31
4090
w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4091
w31 = Instance.new("Weld", p31)
4092
w31.Name = "Part_Weld"
4093
w31.Part0 = p31
4094
w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
4095
w31.Part1 = p32
4096
w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4097
w32 = Instance.new("Weld", p32)
4098
w32.Name = "Part_Weld"
4099
w32.Part0 = p32
4100
w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4101
w32.Part1 = p33
4102
w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
4103
w33 = Instance.new("Weld", p33)
4104
w33.Name = "Part_Weld"
4105
w33.Part0 = p33
4106
w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
4107
w33.Part1 = p34
4108
w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4109
w34 = Instance.new("Weld", p34)
4110
w34.Name = "Part_Weld"
4111
w34.Part0 = p34
4112
w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4113
w34.Part1 = p35
4114
w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4115
w35 = Instance.new("Weld", p35)
4116
w35.Name = "Part_Weld"
4117
w35.Part0 = p35
4118
w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
4119
w35.Part1 = p36
4120
w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4121
w36 = Instance.new("Weld", p36)
4122
w36.Name = "Part_Weld"
4123
w36.Part0 = p36
4124
w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
4125
w36.Part1 = p37
4126
w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
4127
w37 = Instance.new("Weld", p37)
4128
w37.Name = "Part_Weld"
4129
w37.Part0 = p37
4130
w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
4131
w37.Part1 = p38
4132
w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
4133
w38 = Instance.new("Weld", p38)
4134
w38.Name = "Part_Weld"
4135
w38.Part0 = p38
4136
w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
4137
w38.Part1 = p39
4138
w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4139
w39 = Instance.new("Weld", p39)
4140
w39.Name = "Part_Weld"
4141
w39.Part0 = p39
4142
w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4143
w39.Part1 = p40
4144
w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4145
w40 = Instance.new("Weld", p40)
4146
w40.Name = "Part_Weld"
4147
w40.Part0 = p40
4148
w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4149
w40.Part1 = p41
4150
w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4151
w41 = Instance.new("Weld", p41)
4152
w41.Name = "Part_Weld"
4153
w41.Part0 = p41
4154
w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4155
w41.Part1 = p42
4156
w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4157
w42 = Instance.new("Weld", p42)
4158
w42.Name = "Part_Weld"
4159
w42.Part0 = p42
4160
w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4161
w42.Part1 = p43
4162
w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4163
w43 = Instance.new("Weld", p43)
4164
w43.Name = "Part_Weld"
4165
w43.Part0 = p43
4166
w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4167
w43.Part1 = p44
4168
w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4169
w44 = Instance.new("Weld", p44)
4170
w44.Name = "Part_Weld"
4171
w44.Part0 = p44
4172
w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4173
w44.Part1 = p45
4174
w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4175
w45 = Instance.new("Weld", p45)
4176
w45.Name = "Part_Weld"
4177
w45.Part0 = p45
4178
w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4179
w45.Part1 = p46
4180
w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4181
w46 = Instance.new("Weld", p46)
4182
w46.Name = "Part_Weld"
4183
w46.Part0 = p46
4184
w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4185
w46.Part1 = p47
4186
w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4187
w47 = Instance.new("Weld", p47)
4188
w47.Name = "Part_Weld"
4189
w47.Part0 = p47
4190
w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
4191
w47.Part1 = p48
4192
w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
4193
w48 = Instance.new("Weld", p48)
4194
w48.Name = "Part_Weld"
4195
w48.Part0 = p48
4196
w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
4197
w48.Part1 = p49
4198
w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4199
w49 = Instance.new("Weld", p49)
4200
w49.Name = "Part_Weld"
4201
w49.Part0 = p49
4202
w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4203
w49.Part1 = p50
4204
w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4205
w50 = Instance.new("Weld", p50)
4206
w50.Name = "Part_Weld"
4207
w50.Part0 = p50
4208
w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4209
w50.Part1 = p51
4210
w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4211
w51 = Instance.new("Weld", p51)
4212
w51.Name = "Part_Weld"
4213
w51.Part0 = p51
4214
w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4215
w51.Part1 = p52
4216
w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
4217
w52 = Instance.new("Weld", p52)
4218
w52.Name = "Part_Weld"
4219
w52.Part0 = p52
4220
w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
4221
w52.Part1 = p53
4222
w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
4223
w53 = Instance.new("Weld", p53)
4224
w53.Name = "Part_Weld"
4225
w53.Part0 = p53
4226
w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
4227
w53.Part1 = p54
4228
w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
4229
w54 = Instance.new("Weld", p54)
4230
w54.Name = "Part_Weld"
4231
w54.Part0 = p54
4232
w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
4233
w54.Part1 = p55
4234
w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
4235
w55 = Instance.new("Weld", p55)
4236
w55.Name = "Part_Weld"
4237
w55.Part0 = p55
4238
w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
4239
w55.Part1 = p56
4240
w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4241
w56 = Instance.new("Weld", p56)
4242
w56.Name = "Part_Weld"
4243
w56.Part0 = p56
4244
w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4245
w56.Part1 = p57
4246
w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4247
w57 = Instance.new("Weld", p57)
4248
w57.Name = "Part_Weld"
4249
w57.Part0 = p57
4250
w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4251
w57.Part1 = p58
4252
w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4253
w58 = Instance.new("Weld", p58)
4254
w58.Name = "Part_Weld"
4255
w58.Part0 = p58
4256
w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
4257
w58.Part1 = p59
4258
w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4259
w59 = Instance.new("Weld", p59)
4260
w59.Name = "Part_Weld"
4261
w59.Part0 = p59
4262
w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4263
w59.Part1 = p60
4264
w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4265
w60 = Instance.new("Weld", p60)
4266
w60.Name = "Part_Weld"
4267
w60.Part0 = p60
4268
w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4269
w60.Part1 = p61
4270
w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4271
w61 = Instance.new("Weld", p61)
4272
w61.Name = "Part_Weld"
4273
w61.Part0 = p61
4274
w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4275
w61.Part1 = p62
4276
w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4277
w62 = Instance.new("Weld", p62)
4278
w62.Name = "Part_Weld"
4279
w62.Part0 = p62
4280
w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4281
w62.Part1 = p63
4282
w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4283
w63 = Instance.new("Weld", p63)
4284
w63.Name = "Part_Weld"
4285
w63.Part0 = p63
4286
w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4287
w63.Part1 = p64
4288
w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4289
w64 = Instance.new("Weld", p64)
4290
w64.Name = "TorsoPart_Weld"
4291
w64.Part0 = p64
4292
w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
4293
w64.Part1 = p65
4294
w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
4295
m2.Parent = char
4296
m2:MakeJoints()
4297
--------------------------------------------------------------------------------
4298
local cor2 = Instance.new("Part", char.Wings)
4299
cor2.Name = "Thingy"
4300
cor2.Locked = true
4301
cor2.BottomSurface = 0
4302
cor2.CanCollide = false
4303
cor2.Size = Vector3.new(0.2, 0.2, 0.2)
4304
cor2.Transparency = 1
4305
cor2.TopSurface = 0
4306
corw2 = Instance.new("Weld", cor2)
4307
corw2.Part0 = torso
4308
corw2.Part1 = cor2
4309
corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
4310
corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
4311
weld2 = Instance.new("Weld", char.Wings)
4312
weld2.Part0 = cor2
4313
weld2.Part1 = char.Wings.TorsoPart
4314
weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
4315
wait(0.1)
4316
hum.WalkSpeed = 29
4317
game.Lighting.Ambient = Color3.new(-1,-1,-1)
4318
c = script:Clone()
4319
c.Parent = game.Lighting
4320
s = Instance.new("Sky")
4321
s.Name = "Dark Sky"
4322
s.SkyboxBk = "http://www.roblox.com/asset/?id=13943307"
4323
s.SkyboxDn = "http://www.roblox.com/asset/?id=13943307"
4324
s.SkyboxFt = "http://www.roblox.com/asset/?id=13943307"
4325
s.SkyboxLf = "http://www.roblox.com/asset/?id=13943307"
4326
s.SkyboxRt = "http://www.roblox.com/asset/?id=13943307"
4327
s.SkyboxUp = "http://www.roblox.com/asset/?id=13943307"
4328
s.Parent = game.Lighting
4329
wait(0.1)
4330
game.Lighting.Ambient = Color3.new(255,255,255)
4331
c = script:Clone()
4332
c.Parent = game.Lighting
4333
s = Instance.new("Sky")
4334
s.Name = "White Sky"
4335
s.SkyboxBk = "http://www.roblox.com/asset/?id=10742015"
4336
s.SkyboxDn = "http://www.roblox.com/asset/?id=10742015"
4337
s.SkyboxFt = "http://www.roblox.com/asset/?id=10742015"
4338
s.SkyboxLf = "http://www.roblox.com/asset/?id=10742015"
4339
s.SkyboxRt = "http://www.roblox.com/asset/?id=10742015"
4340
s.SkyboxUp = "http://www.roblox.com/asset/?id=10742015"
4341
s.Parent = game.Lighting
4342
wait(0.1)
4343
game.Lighting.Ambient = Color3.new(-1,-1,-1)
4344
c = script:Clone()
4345
c.Parent = game.Lighting
4346
s = Instance.new("Sky")
4347
s.Name = "Dark Sky"
4348
s.SkyboxBk = "http://www.roblox.com/asset/?id=13943307"
4349
s.SkyboxDn = "http://www.roblox.com/asset/?id=13943307"
4350
s.SkyboxFt = "http://www.roblox.com/asset/?id=13943307"
4351
s.SkyboxLf = "http://www.roblox.com/asset/?id=13943307"
4352
s.SkyboxRt = "http://www.roblox.com/asset/?id=13943307"
4353
s.SkyboxUp = "http://www.roblox.com/asset/?id=13943307"
4354
s.Parent = game.Lighting
4355
wait(0.1)
4356
game.Lighting.Ambient = Color3.new(255,255,255)
4357
c = script:Clone()
4358
c.Parent = game.Lighting
4359
s = Instance.new("Sky")
4360
s.Name = "White Sky"
4361
s.SkyboxBk = "http://www.roblox.com/asset/?id=10742015"
4362
s.SkyboxDn = "http://www.roblox.com/asset/?id=10742015"
4363
s.SkyboxFt = "http://www.roblox.com/asset/?id=10742015"
4364
s.SkyboxLf = "http://www.roblox.com/asset/?id=10742015"
4365
s.SkyboxRt = "http://www.roblox.com/asset/?id=10742015"
4366
s.SkyboxUp = "http://www.roblox.com/asset/?id=10742015"
4367
s.Parent = game.Lighting
4368
wait(0.1)
4369
game.Lighting.Ambient = Color3.new(-1,-1,-1)
4370
c = script:Clone()
4371
c.Parent = game.Lighting
4372
s = Instance.new("Sky")
4373
s.Name = "Dark Sky"
4374
s.SkyboxBk = "http://www.roblox.com/asset/?id=13943307"
4375
s.SkyboxDn = "http://www.roblox.com/asset/?id=13943307"
4376
s.SkyboxFt = "http://www.roblox.com/asset/?id=13943307"
4377
s.SkyboxLf = "http://www.roblox.com/asset/?id=13943307"
4378
s.SkyboxRt = "http://www.roblox.com/asset/?id=13943307"
4379
s.SkyboxUp = "http://www.roblox.com/asset/?id=13943307"
4380
s.Parent = game.Lighting
4381
wait(0.1)
4382
game.Lighting.Ambient = Color3.new(255,255,255)
4383
c = script:Clone()
4384
c.Parent = game.Lighting
4385
s = Instance.new("Sky")
4386
s.Name = "White Sky"
4387
s.SkyboxBk = "http://www.roblox.com/asset/?id=10742015"
4388
s.SkyboxDn = "http://www.roblox.com/asset/?id=10742015"
4389
s.SkyboxFt = "http://www.roblox.com/asset/?id=10742015"
4390
s.SkyboxLf = "http://www.roblox.com/asset/?id=10742015"
4391
s.SkyboxRt = "http://www.roblox.com/asset/?id=10742015"
4392
s.SkyboxUp = "http://www.roblox.com/asset/?id=10742015"
4393
s.Parent = game.Lighting
4394
wait(0.1)
4395
game.Lighting.Ambient = Color3.new(1,1,1)
4396
mouse.KeyDown:connect(function(Key)
4397
if Key == "f" then
4398
Colors = {"White", "White"}
4399
GroundBall1()
4400
wait(0.4)
4401
Colors = {"White", "White"}
4402
GroundBall1()
4403
wait(0.4)
4404
Colors = {"White", "White"}
4405
GroundBall1()
4406
wait(0.4)
4407
Colors = {"White", "White"}
4408
GroundBall1()
4409
wait(0.4)
4410
Colors = {"White", "White"}
4411
GroundBall1()
4412
wait(0.4)
4413
Colors = {"White", "White"}
4414
GroundBall1()
4415
wait(0.4)
4416
Colors = {"White", "White"}
4417
GroundBall1()
4418
wait(0.4)
4419
Colors = {"White", "White"}
4420
GroundBall1()
4421
wait(0.4)
4422
Colors = {"White", "White"}
4423
GroundBall1()
4424
wait(0.4)
4425
Colors = {"White", "White"}
4426
GroundBall1()
4427
wait(0.4)
4428
Colors = {"White", "White"}
4429
GroundBall1()
4430
wait(0.4)
4431
Colors = {"White", "White"}
4432
GroundBall1()
4433
wait(0.4)
4434
Colors = {"White", "White"}
4435
GroundBall1()
4436
wait(0.4)
4437
Colors = {"White", "White"}
4438
GroundBall1()
4439
wait(0.4)
4440
Colors = {"White", "White"}
4441
GroundBall1()
4442
wait(0.4)
4443
Colors = {"White", "White"}
4444
GroundBall1()
4445
wait(0.4)
4446
Colors = {"White", "White"}
4447
GroundBall1()
4448
wait(0.4)
4449
Colors = {"White", "White"}
4450
GroundBall1()
4451
wait(0.4)
4452
Colors = {"White", "White"}
4453
GroundBall1()
4454
wait(0.4)
4455
Colors = {"White", "White"}
4456
GroundBall1()
4457
wait(0.4)
4458
Colors = {"White", "White"}
4459
GroundBall1()
4460
wait(0.4)
4461
Colors = {"White", "White"}
4462
GroundBall1()
4463
wait(0.4)
4464
Colors = {"White", "White"}
4465
GroundBall1()
4466
wait(0.4)
4467
Colors = {"White", "White"}
4468
GroundBall1()
4469
wait(0.4)
4470
Colors = {"White", "White"}
4471
GroundBall1()
4472
wait(0.4)
4473
Colors = {"White", "White"}
4474
GroundBall1()
4475
wait(0.4)
4476
Colors = {"White", "White"}
4477
GroundBall1()
4478
wait(0.4)
4479
Colors = {"White", "White"}
4480
GroundBall1()
4481
wait(0.4)
4482
Colors = {"White", "White"}
4483
GroundBall1()
4484
wait(0.4)
4485
Colors = {"White", "White"}
4486
GroundBall1()
4487
wait(0.4)
4488
end
4489
end)
4490
mouse.KeyDown:connect(function(key)
4491
	 if key == "q" then
4492
if cd2 then
4493
cd2 = false
4494
for i=0,1,0.1 do
4495
    lshold.C0 = lshold.C0:lerp(CFrame.new(-1.3,0.7,-0.1)*CFrame.Angles(rad(25),-rad(20),-rad(90)),i)
4496
    rshold.C0 = rshold.C0:lerp(CFrame.new(1.3,0.7,-0.1)*CFrame.Angles(rad(25),rad(20),rad(90)),i)
4497
    wait()
4498
end
4499
 
4500
local pe = Instance.new("ParticleEmitter")
4501
pe.Acceleration = Vector3.new(3, 3, 3)
4502
pe.Lifetime = NumberRange.new(0.1, 0.5)
4503
pe.Rate = 4000
4504
pe.RotSpeed = NumberRange.new(0, 0)
4505
pe.LightEmission = 0.700
4506
pe.Rotation = NumberRange.new(0, 0)
4507
pe.Size = NumberSequence.new({
4508
NumberSequenceKeypoint.new(0, 1, 0),
4509
NumberSequenceKeypoint.new(0.1, 1, 0),
4510
NumberSequenceKeypoint.new(1, 1, 0)
4511
})
4512
pe.Texture = "http://www.roblox.com/asset/?id=242996110"
4513
pe.Transparency = NumberSequence.new({
4514
NumberSequenceKeypoint.new(0, 0, 0),
4515
NumberSequenceKeypoint.new(0.4, 0.3, 0),
4516-
Wait(40)
4516+
NumberSequenceKeypoint.new(1, 1, 1)
4517
})
4518
pe.ZOffset = 5
4519
pe.VelocitySpread = 360
4520
pe.Parent = char["Right Arm"]
4521
pe1 = pe:Clone()
4522
pe1.Parent = char["Left Arm"]
4523
wait(.05)
4524
pe.Enabled = true
4525
 
4526
wait(.05)
4527
 
4528-
Colors = {"Deep orange", "Deep orange"}
4528+
for i= 1, 100 do
4529
       char.Humanoid.HipHeight = char.Humanoid.HipHeight + 0.5
4530
       wait()
4531
end
4532
 
4533
wait(.03)
4534-
Colors = {"Lime green", "Lime green"}
4534+
4535
chatfunc("A world like this must disappear!")
4536
wait(.07)
4537
explo()
4538
wait(.04)
4539
for i=0,1,0.1 do
4540-
Colors = {"Hot pink", "Hot pink"}
4540+
    lshold.C0 = lshold.C0:lerp(lsho,i)
4541
    rshold.C0 = rshold.C0:lerp(rsho,i)
4542
    wait()
4543
end
4544
pe.Enabled = false
4545
pe1.Enabled = fasle
4546
char.Humanoid.HipHeight = 0
4547
wait(5)
4548
cd2 = true
4549
end
4550
end
4551
Wait(60)
4552
chatfunc("Now Heres My Full Power.")
4553
wait(4)
4554
Colors = {"White", "White"}
4555
GroundBall1()
4556
wait(0.05)
4557
GroundWave1()
4558
wait(0.4)
4559
Colors = {"White", "White"}
4560
GroundBall1()
4561
wait(0.05)
4562
GroundWave1()
4563
wait(0.4)
4564
Colors = {"White", "White"}
4565
GroundBall1()
4566
wait(0.05)
4567
GroundWave1()
4568
wait(0.4)
4569
Colors = {"White", "White"}
4570
GroundBall1()
4571
wait(0.05)
4572
GroundWave1()
4573
wait(0.4)
4574
4575
while true do
4576
Hair7.BrickColor = BrickColor.new("Really red")
4577
wait(0.01)
4578
Hair7.BrickColor = BrickColor.new("Deep orange")
4579
wait(0.01)
4580
Hair7.BrickColor = BrickColor.new("New Yeller")
4581
wait(0.01)
4582
Hair7.BrickColor = BrickColor.new("Lime green")
4583
wait(0.01)
4584
Hair7.BrickColor = BrickColor.new("Toothpaste")
4585
wait(0.01)
4586
Hair7.BrickColor = BrickColor.new("Magenta")
4587
wait(0.01)
4588
Hair7.BrickColor = BrickColor.new("Hot pink")
4589
wait(0.01)
4590
end