View difference between Paste ID: K1EJmzSq and nsBYZDHG
SHOW: | | - or go back to the newest paste.
1
local lovecounter = false
2
local love = 99
3
local sprint = false
4
local done = false
5
local canheal = false
6
local deathchat1 = false
7
local once = true
8
local breakjoints = true
9
local dead = false
10
local candie = true
11
local deathchat = false
12
local canattack = true
13
local colorred = 0
14
local lala = true
15
local idleon = true
16
local walking = true
17
local idle1 = true
18
local canchange = false
19
local idle = true
20
local p = game.Players.LocalPlayer
21
local char = p.Character
22
local mouse = p:GetMouse()
23
local larm = char["Left Arm"]
24
local rarm = char["Right Arm"]
25
local lleg = char["Left Leg"]
26
local rleg = char["Right Leg"]
27
local hed = char.Head
28
local torso = char.Torso
29
local hum = char.Humanoid
30
31
um = Instance.new("Part",char)
32
um.Name = "Immune"
33
um.CanCollide = false
34
um.Anchored = true
35
um.Transparency = 1
36
dead = true
37
local cam = game.Workspace.CurrentCamera
38
local root = char.HumanoidRootPart
39
local deb = false
40
local shot = 0
41
local debris=game:service"Debris"
42
local l = game:GetService("Lighting")
43
local rs = game:GetService("RunService").RenderStepped
44
local Create = LoadLibrary("RbxUtility").Create
45
ff = Instance.new("ForceField",char)
46
ff.Visible = false
47
ArtificialHB = Create("BindableEvent", script){
48
    Parent = script,
49
    Name = "Heartbeat",
50
}
51
CFuncs = { 
52
  
53
 
54
    ["Sound"] = {
55
        Create = function(id, par, vol, pit)
56
            coroutine.resume(coroutine.create(function()
57
                local S = Create("Sound"){
58
                    Volume = vol,
59
                    Pitch = pit or 1,
60
                    SoundId = id,
61
                    Parent = par or workspace,
62
                }
63
                wait()
64
                S:play()
65
                game:GetService("Debris"):AddItem(S, 6)
66
            end))
67
        end;
68
    };
69
   
70
   
71
 
72
    CreateTemplate = {
73
   
74
    };
75
}
76
 function swait(num)
77
    if num == 0 or num == nil then
78
        ArtificialHB.Event:wait()
79
    else
80
        for i = 0, num do
81
            ArtificialHB.Event:wait()
82
        end
83
    end
84
end
85
ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
86
function lerp(a, b, t) -- Linear interpolation
87
        return a + (b - a)*t
88
end
89
 
90
function slerp(a, b, t) --Spherical interpolation
91
        dot = a:Dot(b)
92
        if dot > 0.99999 or dot < -0.99999 then
93
                return t <= 0.5 and a or b
94
        else
95
                r = math.acos(dot)
96
                return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
97
        end
98
end
99
function matrixInterpolate(a, b, t)
100
        local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
101
        local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
102
        local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
103
        local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector  right
104
        local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector  up
105
        local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector  back
106
        local t = v1:Dot(v2)
107
        if not (t < 0 or t == 0 or t > 0) then         -- Failsafe
108
                return CFrame.new()
109
        end
110
        return CFrame.new(
111
        v0.x, v0.y, v0.z,
112
        v1.x, v1.y, v1.z,
113
        v2.x, v2.y, v2.z,
114
        v3.x, v3.y, v3.z)
115
end
116
----------------------------------------------------
117
function genWeld(a,b)
118
    local w = Instance.new("Weld",a)
119
    w.Part0 = a
120
    w.Part1 = b
121
    return w
122
end
123
function weld(a, b)
124
    local weld = Instance.new("Weld")
125
    weld.Name = "W"
126
    weld.Part0 = a
127
    weld.Part1 = b
128
    weld.C0 = a.CFrame:inverse() * b.CFrame
129
    weld.Parent = a
130
    return weld;
131
end
132
----------------------------------------------------
133
function Lerp(c1,c2,al)
134
local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
135
local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
136
for i,v in pairs(com1) do
137
com1[i] = v+(com2[i]-v)*al
138
end
139
return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
140
end
141
----------------------------------------------------
142
newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
143
local wld = Instance.new("Weld", wp1)
144
wld.Part0 = wp0
145
wld.Part1 = wp1
146
147
wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
148
end
149
----------------------------------------------------
150
function weld5(part0, part1, c0, c1)
151
    weeld=Instance.new("Weld", part0)
152
    weeld.Part0=part0
153
    weeld.Part1=part1
154
    weeld.C0=c0
155
    weeld.C1=c1
156
    return weeld
157
end
158
----------------------------------------------------
159
function HasntTouched(plrname)
160
local ret = true
161
for _, v in pairs(Touche) do
162
if v == plrname then
163
ret = false
164
end
165
end
166
return ret
167
end
168
newWeld(torso, larm, -1.5, 0.5, 0)
169
larm.Weld.C1 = CFrame.new(0, 0.5, 0)
170
newWeld(torso, rarm, 1.5, 0.5, 0)
171
rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
172
newWeld(torso, hed, 0, 1.5, 0)
173
newWeld(torso, lleg, -0.5, -1, 0)
174
lleg.Weld.C1 = CFrame.new(0, 1, 0)
175
newWeld(torso, rleg, 0.5, -1, 0)
176
rleg.Weld.C1 = CFrame.new(0, 1, 0)
177
newWeld(root, torso, 0, -1, 0)
178
torso.Weld.C1 = CFrame.new(0, -1, 0)
179
180
function chatfunc(text)
181
local chat = coroutine.wrap(function()
182
if char:FindFirstChild("TalkingBillBoard")~= nil then
183
char:FindFirstChild("TalkingBillBoard"):destroy()
184
end
185
local naeeym2 = Instance.new("BillboardGui",char)
186
naeeym2.Size = UDim2.new(0,100,0,40)
187
naeeym2.StudsOffset = Vector3.new(0,3,0)
188
naeeym2.Adornee = hed
189
naeeym2.Name = "TalkingBillBoard"
190
local tecks2 = Instance.new("TextLabel",naeeym2)
191
tecks2.BackgroundTransparency = 1
192
tecks2.BorderSizePixel = 0
193
tecks2.Text = ""
194
tecks2.Font = "Arcade"
195
tecks2.TextSize = 30
196
tecks2.TextStrokeTransparency = 0
197
tecks2.TextColor3 = Color3.new(255,0,0)
198
tecks2.TextStrokeColor3 = Color3.new(255,0,0)
199
tecks2.Size = UDim2.new(1,0,0.5,0)
200
201
for i = 1,string.len(text),1 do
202
CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=565939471", hed, 6, .8)
203
tecks2.Text = string.sub(text,1,i)
204
205
wait(0.01)
206
end
207
wait(2)
208
for i = 1, 50 do
209
swait()
210
tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
211
tecks2.Rotation = tecks2.Rotation - .8
212
tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
213
tecks2.TextTransparency = tecks2.TextTransparency + .04
214
215
end
216
naeeym2:Destroy()
217
end)
218
chat()
219
end
220
function onChatted(msg)
221
chatfunc(msg)
222
end
223
p.Chatted:connect(onChatted)
224
 hed.face.Texture = "http://www.roblox.com/asset/?id=381193106"
225
ypcall(function()
226
shirt = Instance.new("Shirt", char)
227
shirt.Name = "Shirt"
228
pants = Instance.new("Pants", char)
229
pants.Name = "Pants"
230
char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=13997666"
231
char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=227915108"
232
end)
233
char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
234
char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
235
char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
236
char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
237
238
  MegaloStrikesBack = Instance.new("Sound",torso)
239
 MegaloStrikesBack.Looped = true
240
MegaloStrikesBack.SoundId = "http://www.roblox.com/asset?id=1918314351"
241
MegaloStrikesBack.Volume = 50
242
MegaloStrikesBack:Play()
243
for _, v in pairs(char:GetChildren()) do
244
  if v.ClassName == "Accessory" then
245
    v:remove()
246
  end
247
end
248
local Hat = char:FindFirstChild("Hat_F") or Instance.new("Hat")
249
Hat.AttachmentPos = Vector3.new(0, 0.33, 0)
250
Hat.Name = "Hat_F"
251
local Handle = Hat:FindFirstChild("Handle") or Instance.new("Part", Hat)
252
if Handle.Name ~= "Handle" then
253
  Handle.Size = Vector3.new(1, 1, 1)
254-
 end
254+
255
256
  handle = Instance.new("Part", char)
257
  handle.TopSurface = "Smooth"
258
  handle.BottomSurface = "Smooth"
259
 handle.Material = "Neon"
260
261
  handle.Size = Vector3.new(0.2, 0.5, 0.5)
262
  handle.CanCollide = false
263
264
  handle.FormFactor = "Custom"
265
  local Weldb = Instance.new("Weld", char)
266
  Weldb.Part0 = char["Right Arm"]
267
  Weldb.Part1 = handle
268
  Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
269
  local KnifeMesh = Instance.new("SpecialMesh", handle)
270
  KnifeMesh.MeshType = "FileMesh"
271
  KnifeMesh.MeshId = "http://www.roblox.com/asset/?id=121944778"
272
KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
273
274
blackhand = Instance.new("Part",char)
275
blackhand.Material = "Neon"
276
blackhand.Transparency = 1
277
blackhand.BrickColor = BrickColor.new("Really black")
278
blackhand.Position = Vector3.new(999,999,999)
279
blackhand.Size = Vector3.new(1.01,1.01,1.01)
280
blackweld = Instance.new("Weld",blackhand)
281
blackweld.Part0 = rarm
282
blackweld.Part1 = blackhand
283
blackweld.C0 = CFrame.new(0,-0.5,0)
284
285
	
286
CV="Really red"
287
   
288
local txt = Instance.new("BillboardGui", char)
289
txt.Adornee = hed
290
txt.Name = "_status"
291
txt.Size = UDim2.new(2, 0, 1.2, 0)
292
txt.StudsOffset = Vector3.new(-9, 11, 0)
293
local text = Instance.new("TextLabel", txt)
294
text.Size = UDim2.new(10, 0, 7, 0)
295
text.FontSize = "Size24"
296
text.TextScaled = true
297
text.TextTransparency = 0
298
text.BackgroundTransparency = 1
299
text.TextTransparency = 0
300
text.TextStrokeTransparency = 0
301
text.Font = "Arcade"
302
text.TextStrokeColor3 = Color3.new(255,0,0)
303
 
304
v=Instance.new("Part")
305
v.Name = "ColorBrick"
306
v.Parent=char
307
v.FormFactor="Symmetric"
308
v.Anchored=true
309
v.CanCollide=false
310
v.BottomSurface="Smooth"
311
v.TopSurface="Smooth"
312
v.Size=Vector3.new(10,5,3)
313
v.Transparency=1
314
v.CFrame=torso.CFrame
315
v.BrickColor=BrickColor.new(CV)
316
v.Transparency=1
317
text.TextColor3 = Color3.new(0,0,0)
318
v.Shape="Block"
319
text.Text = ""
320
321
refused = Instance.new("Sound",larm)
322
refused.Volume = 100
323
refused.SoundId = "http://www.roblox.com/asset/?id=400905079"
324
325
 game:GetService("RunService").RenderStepped:connect(function()
326
	
327
	if lala == true then
328
		if canchange == true then
329
			canchange = false
330
		
331
		  handle.BrickColor = BrickColor.new("Really red")
332
		wait(0.01)
333
		  handle.BrickColor = BrickColor.new("Really blue")
334
		wait(0.01)
335
		 handle.BrickColor = BrickColor.new("Bright green")
336
		wait(0.01)
337
		  handle.BrickColor = BrickColor.new("Toothpaste")
338
		wait(0.01)
339
		 handle.BrickColor = BrickColor.new("New Yeller")
340
		wait(0.01)
341
		  handle.BrickColor = BrickColor.new("Magenta")
342
		wait(0.01)
343
		 handle.BrickColor = BrickColor.new("Deep orange")
344
		wait(0.01)
345
		canchange = true
346
		end
347
		end
348
	if hum.MoveDirection.x == 0 then
349
		if idle == true then
350
			if idleon == true then
351
			idleon = false
352
	for i = 1,10 do
353
		wait()
354
		if hum.MoveDirection.x == 0 then
355
    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.3, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
356
		end
357
		if hum.MoveDirection.x == 0 then
358
                   rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.1)
359
		end
360
		if hum.MoveDirection.x == 0 then
361
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.1)
362
		end
363
		if hum.MoveDirection.x == 0 then
364
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.7, -0.3) * CFrame.Angles(math.rad(5), 0, math.rad(-2)), 0.1)
365
		end
366
		if hum.MoveDirection.x == 0 then
367
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(2)), 0.1)
368
		 end
369
		end
370
		
371
		
372
		
373
		
374
		for i = 1,10 do
375
		wait()
376
		if hum.MoveDirection.x == 0 then
377
    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(0)), 0.1)
378
		end
379
		if hum.MoveDirection.x == 0 then
380
                   rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(20)), 0.1)
381
		end
382
		if hum.MoveDirection.x == 0 then
383
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(-20)), 0.1)
384
		end
385
		if hum.MoveDirection.x == 0 then
386
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.2) * CFrame.Angles(math.rad(5), 0, math.rad(-2)), 0.1)
387
		end
388
		if hum.MoveDirection.x == 0 then
389
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(2)), 0.1)
390
		 end
391
		end
392
		idleon = true
393
		end
394
395
			
396
			
397
		end
398
	end
399
	if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
400
		if walking == true then
401
			if sprint == false then
402
		if idle1 == true then
403
			idle1 = false
404
	
405
		idle = false
406
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
407
		for i = 1,10 do
408
			wait()
409
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
410
			   rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20)), 0.1)
411
			end
412
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
413
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-20)), 0.1)
414
end
415
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
416
			torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
417
			end
418
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
419
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
420
			end
421
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
422
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(2)), 0.1)
423
end
424
425
end
426
		 end
427
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
428
		for i = 1,10 do
429
			wait()
430
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
431
			   rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.1)
432
			end
433
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
434
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-20)), 0.1)
435
end
436
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
437
			torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
438
			end
439
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
440
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(-2)), 0.1)
441
			end
442
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
443
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
444
end
445
		end
446
		end
447
 if hum.MoveDirection.x == 0 then
448
	idle = true
449
end
450
idle1 = true
451
		end	
452
		end
453
		end
454
		
455
	end
456
	----------------------------------------------------------------------------------
457
	
458
	if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
459
		if walking == true then
460
			if sprint == true then
461
		if idle1 == true then
462
			idle1 = false
463
	
464
		idle = false
465
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
466
		for i = 1,8 do
467
			wait()
468
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
469
			   rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(20)), 0.1)
470
			end
471
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
472
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(-20)), 0.1)
473
end
474
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
475
			torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.1)
476
			end
477
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
478
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
479
			end
480
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
481
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(2)), 0.1)
482
end
483
484
end
485
		 end
486
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
487
		for i = 1,8 do
488
			wait()
489
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
490
			   rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.1)
491
			end
492
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
493
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(-20)), 0.1)
494
end
495
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
496
			torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.1)
497
			end
498
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
499
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(-2)), 0.1)
500
			end
501
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
502
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
503
			end
504
			
505
		end
506
		end
507
 if hum.MoveDirection.x == 0 then
508
	idle = true
509
end
510
idle1 = true
511
	end	
512
		end
513
		end
514
	end
515
	
516
	if deathchat1 == true then
517
		char.Parent = workspace.Camera
518
		char.Archivable = true
519
		local c = p.Character:Clone()
520
		c:MakeJoints()
521
		for y,t in pairs(c:GetChildren()) do
522
			if t:IsA("Part") then
523
				t.CanCollide = false 
524
				t.Anchored = true 
525
			t.BrickColor = BrickColor.new("Black")
526
t.Transparency = 1
527
528
				t.TopSurface = "Smooth"
529
				t.BottomSurface = "Smooth"
530
				t.RightSurface = "Smooth"
531
				t.LeftSurface = "Smooth"
532
				t.FrontSurface = "Smooth"
533
				t.BackSurface = "Smooth"
534
				
535
				
536
			else 
537
				t:Remove()
538
			end
539
		end
540
		c.Parent = workspace
541
		game.Debris:AddItem(c,.05)
542
	end
543
	
544
	hum:SetStateEnabled("Dead",false)
545
hum:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
546
	if hum.Health < 5 and candie == true then
547
hum.Name = "NOMOREDAMAGE"
548
canheal = true
549
		done = false
550
551
done = true
552
		candie = false
553
		dead = true
554
MegaloStrikesBack.Volume = 0
555
		refused:Play()
556
557
		deathchat = true
558
	end
559
	if deathchat == true then
560
		deathchat = false
561
		idle = false
562
563
		hed.face.Texture = "0"
564
		if char:FindFirstChild("TalkingBillBoard")~= nil then
565
char:FindFirstChild("TalkingBillBoard"):destroy()
566
		end
567
		  torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.1)
568
		idle1 = false
569
		canattack = false
570
		 gothitdecal2 = Instance.new("Decal",torso)
571
		gothitdecal2.Texture = "http://www.roblox.com/asset/?id=318427241"
572
		gothitdecal2.Face = "Back"
573
		gothitdecal1 = Instance.new("Decal",torso)
574
		gothitdecal1.Texture = "http://www.roblox.com/asset/?id=318427241"
575
		hed.Transparency = 1
576
		torso.Transparency = 1
577
		larm.Transparency = 1
578
	rarm.Transparency = 1
579
	lovecounter = false
580
	   text.Text = ""
581
		
582
	lleg.Transparency = 1
583
	rleg.Transparency = 1
584
	handle.Transparency = 1
585
	Handle.Transparency = 1
586
	blackhand.Transparency = 1
587
	wait(1)
588
	refused:Stop()
589
		wait(2)
590
591
chatfunc("But It Refused")
592
		wait(1.5)
593
		candie = true
594
		idle = true
595
		idle1 = true
596
		hed.face.Texture = "http://www.roblox.com/asset/?id=0"
597
		canattack = true
598
		lleg.Anchored = false
599
	rleg.Anchored = false
600
	larm.Anchored = false
601
	rarm.Anchored = false
602
	hed.Anchored = false
603
	torso.Anchored = false
604
		gothitdecal2:Destroy()
605
		gothitdecal1:Destroy()
606
		for i = 1,10 do
607
			wait()
608
		hed.Transparency = hed.Transparency - 0.1
609
		torso.Transparency = torso.Transparency - 0.1
610
		larm.Transparency = larm.Transparency - 0.1
611
	rarm.Transparency = rarm.Transparency - 0.1
612
	lleg.Transparency = lleg.Transparency - 0.1
613
	rleg.Transparency = rleg.Transparency - 0.1
614
	handle.Transparency = handle.Transparency - 0.1
615
	Handle.Transparency = Handle.Transparency - 0.1
616
	blackhand.Transparency = blackhand.Transparency - 0.1
617
		end
618
lovecounter = true
619
			dead = false
620
			deathchat1 = false
621
			canheal = false
622
			hum.Health = 100
623
			
624
			MegaloStrikesBack.Volume = 50
625
			wait(1)
626
			hum.Name = "Humanoid"
627
	end
628
	
629
630
	
631
	
632
633
	
634
	if canheal == true then
635
	
636
	hum.Health = math.huge
637
638
	end
639
			
640
if lovecounter == true then
641
	text.Text = "Chara LV "..love	
642
end
643
end)
644
645
game.Players.CharacterAutoLoads = false
646
647
648
649
650
hed.Transparency = 0
651
		torso.Transparency = 0
652
		larm.Transparency = 0
653
	rarm.Transparency = 0
654
	lleg.Transparency = 0
655
	rleg.Transparency = 0
656
	handle.Transparency = 0
657
	Handle.Transparency = 0
658
659
	
660
	idle = false
661
	walking = false
662
soul1 = Instance.new("Part",char)
663
soul1.Shape = "Ball"
664
soul1.Material = "Neon"
665
soul1.BrickColor = BrickColor.new("Really blue")
666
soul1.Size = Vector3.new(1,1,1)
667
soul1.Transparency = 0.5
668
soul1weld = Instance.new("Weld",soul1)
669
soul1weld.Part0 = torso
670
soul1weld.Part1 = soul1
671
soul1weld.C0 = CFrame.new(4,2,0)
672
soul2 = Instance.new("Part",char)
673
soul2.Shape = "Ball"
674
soul2.Material = "Neon"
675
soul2.Transparency = 0.5
676
soul2.BrickColor = BrickColor.new("Bright green")
677
soul2.Size = Vector3.new(1,1,1)
678
soul2weld = Instance.new("Weld",soul2)
679
soul2weld.Part0 = torso
680
soul2weld.Part1 = soul2
681
soul2weld.C0 = CFrame.new(5,2,0)
682
soul3 = Instance.new("Part",char)
683
soul3.Shape = "Ball"
684
soul3.Transparency = 0.5
685
soul3.Material = "Neon"
686
soul3.BrickColor = BrickColor.new("Toothpaste")
687
soul3.Size = Vector3.new(1,1,1)
688
soul3weld = Instance.new("Weld",soul3)
689
soul3weld.Part0 = torso
690
soul3weld.Part1 = soul3
691
soul3weld.C0 = CFrame.new(6,2,0)
692
soul4 = Instance.new("Part",char)
693
soul4.Shape = "Ball"
694
soul4.Transparency = 0.5
695
soul4.Material = "Neon"
696
soul4.BrickColor = BrickColor.new("New Yeller")
697
soul4.Size = Vector3.new(1,1,1)
698
soul4weld = Instance.new("Weld",soul4)
699
soul4weld.Part0 = torso
700
soul4weld.Part1 = soul4
701
soul4weld.C0 = CFrame.new(4,-1,0)
702
soul5 = Instance.new("Part",char)
703
soul5.Shape = "Ball"
704
soul5.Material = "Neon"
705
soul5.Transparency = 0.5
706
soul5.BrickColor = BrickColor.new("Magenta")
707
soul5.Size = Vector3.new(1,1,1)
708
soul5weld = Instance.new("Weld",soul5)
709
soul5weld.Part0 = torso
710
soul5weld.Part1 = soul5
711
soul5weld.C0 = CFrame.new(5,-1,0)
712
soul6 = Instance.new("Part",char)
713
soul6.Shape = "Ball"
714
soul6.Transparency = 0.5
715
soul6.Material = "Neon"
716
soul6.BrickColor = BrickColor.new("Deep orange")
717
soul6.Size = Vector3.new(1,1,1)
718
soul6weld = Instance.new("Weld",soul6)
719
soul6weld.Part0 = torso
720
soul6weld.Part1 = soul6
721
soul6weld.C0 = CFrame.new(6,-1,0)
722
soul1s = Instance.new("Part",char)
723
soul1s.Shape = "Ball"
724
soul1s.Material = "Neon"
725
soul1s.BrickColor = BrickColor.new("White")
726
soul1s.Size = Vector3.new(0.9,0.9,0.9)
727
soul1s.Transparency = 0.2
728
soul1sweld = Instance.new("Weld",soul1s)
729
soul1sweld.Part0 = torso
730
soul1sweld.Part1 = soul1s
731
soul1sweld.C0 = CFrame.new(4,2,0)
732
soul2s = Instance.new("Part",char)
733
soul2s.Shape = "Ball"
734
soul2s.Material = "Neon"
735
soul2s.Transparency = 0.2
736
soul2s.BrickColor = BrickColor.new("White")
737
soul2s.Size = Vector3.new(0.9,0.9,0.9)
738
soul2sweld = Instance.new("Weld",soul2s)
739
soul2sweld.Part0 = torso
740
soul2sweld.Part1 = soul2s
741
soul2sweld.C0 = CFrame.new(5,2,0)
742
soul3s = Instance.new("Part",char)
743
soul3s.Shape = "Ball"
744
soul3s.Material = "Neon"
745
soul3s.Transparency = 0.2
746
soul3s.BrickColor = BrickColor.new("White")
747
soul3s.Size = Vector3.new(0.9,0.9,0.9)
748
soul3sweld = Instance.new("Weld",soul3s)
749
soul3sweld.Part0 = torso
750
soul3sweld.Part1 = soul3s
751
soul3sweld.C0 = CFrame.new(6,2,0)
752
soul4s = Instance.new("Part",char)
753
soul4s.Shape = "Ball"
754
soul4s.Material = "Neon"
755
soul4s.Transparency = 0.2
756
soul4s.BrickColor = BrickColor.new("White")
757
soul4s.Material = "Neon"
758
soul4s.Size = Vector3.new(0.9,0.9,0.9)
759
soul4sweld = Instance.new("Weld",soul4s)
760
soul4sweld.Part0 = torso
761
soul4sweld.Part1 = soul4s
762
soul4sweld.C0 = CFrame.new(4,-1,0)
763
soul5s = Instance.new("Part",char)
764
soul5s.Shape = "Ball"
765
soul5s.Transparency = 0.2
766
soul5s.BrickColor = BrickColor.new("White")
767
soul5s.Size = Vector3.new(0.9,0.9,0.9)
768
soul5s.Material = "Neon"
769
soul5sweld = Instance.new("Weld",soul5s)
770
soul5sweld.Part0 = torso
771
soul5sweld.Part1 = soul5s
772
soul5sweld.C0 = CFrame.new(5,-1,0)
773
soul6s = Instance.new("Part",char)
774
soul6s.Shape = "Ball"
775
soul6s.Material = "Neon"
776
soul6s.Transparency = 0.2
777
soul6s.BrickColor = BrickColor.new("White")
778
soul6s.Size = Vector3.new(0.9,0.9,0.9)
779
soul6sweld = Instance.new("Weld",soul6s)
780
soul6sweld.Part0 = torso
781
soul6sweld.Part1 = soul6s
782
soul6sweld.C0 = CFrame.new(6,-1,0)
783
784
chatfunc("These Are The Determinations")
785
wait(2)
786
chatfunc("I Never Got To Extract")
787
wait(2)
788
789
chatfunc("In The Past Genocides")
790
Weldb.C1 = CFrame.new(0, -2, 0) * CFrame.fromEulerAnglesXYZ(-3, 0, 0)
791
for i = 1,100 do
792
	wait()
793
    torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.01)
794
                   rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-180),math.rad(0),math.rad(-200)), 0.01)
795
                    larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.01)
796
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-4)), 0.01)
797
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(4)), 0.01)
798
 
799
end
800
chatfunc("Lets See How Long You Survive")
801
802
for i = 1,10 do
803
	wait(0.04)
804
 soul1weld.C0 = soul1weld.C0 - Vector3.new(0.45,0.14,0)
805
soul2weld.C0 = soul2weld.C0 - Vector3.new(0.5,0.14,0)
806
soul3weld.C0 = soul3weld.C0 - Vector3.new(0.6,0.14,0)
807
soul4weld.C0 = soul4weld.C0 - Vector3.new(0.45,-0.1,0)
808
soul5weld.C0 = soul5weld.C0 - Vector3.new(0.5,-0.1,0)
809
soul6weld.C0 = soul6weld.C0 - Vector3.new(0.6,-0.1,0)
810
 soul1sweld.C0 = soul1sweld.C0 - Vector3.new(0.45,0.14,0)
811
soul2sweld.C0 = soul2sweld.C0 - Vector3.new(0.5,0.14,0)
812
soul3sweld.C0 = soul3sweld.C0 - Vector3.new(0.6,0.14,0)
813
soul4sweld.C0 = soul4sweld.C0 - Vector3.new(0.45,-0.1,0)
814
soul5sweld.C0 = soul5sweld.C0 - Vector3.new(0.5,-0.1,0)
815
soul6sweld.C0 = soul6sweld.C0 - Vector3.new(0.6,-0.1,0)
816
end
817
818
819
soul1d = Instance.new("Part",char)
820
soul1d.Shape = "Ball"
821
soul1d.Material = "Neon"
822
soul1d.BrickColor = BrickColor.new("Really blue")
823
soul1d.Size = Vector3.new(1,1,1)
824
soul1d.Transparency = 0.5
825
soul1dweld = Instance.new("Weld",soul1d)
826
soul1dweld.Part0 = torso
827
soul1dweld.Part1 = soul1d
828
soul1dweld.C0 = CFrame.new(0,0,0)
829
soul2d = Instance.new("Part",char)
830
soul2d.Shape = "Ball"
831
soul2d.Material = "Neon"
832
soul2d.Transparency = 0.5
833
soul2d.BrickColor = BrickColor.new("Bright green")
834
soul2d.Size = Vector3.new(1,1,1)
835
soul2dweld = Instance.new("Weld",soul2d)
836
soul2dweld.Part0 = torso
837
soul2dweld.Part1 = soul2d
838
soul2dweld.C0 = CFrame.new(0,0,0)
839
soul3d = Instance.new("Part",char)
840
soul3d.Shape = "Ball"
841
soul3d.Transparency = 0.5
842
soul3d.Material = "Neon"
843
soul3d.BrickColor = BrickColor.new("Toothpaste")
844
soul3d.Size = Vector3.new(1,1,1)
845
soul3dweld = Instance.new("Weld",soul3d)
846
soul3dweld.Part0 = torso
847
soul3dweld.Part1 = soul3d
848
soul3dweld.C0 = CFrame.new(0,0,0)
849
soul4d = Instance.new("Part",char)
850
soul4d.Shape = "Ball"
851
soul4d.Transparency = 0.5
852
soul4d.Material = "Neon"
853
soul4d.BrickColor = BrickColor.new("New Yeller")
854
soul4d.Size = Vector3.new(1,1,1)
855
soul4dweld = Instance.new("Weld",soul4d)
856
soul4dweld.Part0 = torso
857
soul4dweld.Part1 = soul4d
858
soul4dweld.C0 = CFrame.new(0,0,0)
859
soul5d = Instance.new("Part",char)
860
soul5d.Shape = "Ball"
861
soul5d.Material = "Neon"
862
soul5d.Transparency = 0.5
863
soul5d.BrickColor = BrickColor.new("Magenta")
864
soul5d.Size = Vector3.new(1,1,1)
865
soul5dweld = Instance.new("Weld",soul5d)
866
soul5dweld.Part0 = torso
867
soul5dweld.Part1 = soul5d
868
soul5dweld.C0 = CFrame.new(0,0,0)
869
soul6d = Instance.new("Part",char)
870
soul6d.Shape = "Ball"
871
soul6d.Transparency = 0.5
872
soul6d.Material = "Neon"
873
soul6d.BrickColor = BrickColor.new("Deep orange")
874
soul6d.Size = Vector3.new(1,1,1)
875
soul6dweld = Instance.new("Weld",soul6d)
876
soul6dweld.Part0 = torso
877
soul6dweld.Part1 = soul6d
878
soul6dweld.C0 = CFrame.new(0,0,0)
879
soul1sd = Instance.new("Part",char)
880
soul1sd.Shape = "Ball"
881
soul1sd.Material = "Neon"
882
soul1sd.BrickColor = BrickColor.new("White")
883
soul1sd.Size = Vector3.new(0.9,0.9,0.9)
884
soul1sd.Transparency = 0.2
885
soul1sdweld = Instance.new("Weld",soul1sd)
886
soul1sdweld.Part0 = torso
887
soul1sdweld.Part1 = soul1sd
888
soul1sdweld.C0 = CFrame.new(0,0,0)
889
soul2sd = Instance.new("Part",char)
890
soul2sd.Shape = "Ball"
891
soul2sd.Material = "Neon"
892
soul2sd.Transparency = 0.2
893
soul2sd.BrickColor = BrickColor.new("White")
894
soul2sd.Size = Vector3.new(0.9,0.9,0.9)
895
soul2sdweld = Instance.new("Weld",soul2sd)
896
soul2sdweld.Part0 = torso
897
soul2sdweld.Part1 = soul2sd
898
soul2sdweld.C0 = CFrame.new(0,0,0)
899
soul3sd = Instance.new("Part",char)
900
soul3sd.Shape = "Ball"
901
soul3sd.Material = "Neon"
902
soul3sd.Transparency = 0.2
903
soul3sd.BrickColor = BrickColor.new("White")
904
soul3sd.Size = Vector3.new(0.9,0.9,0.9)
905
soul3sdweld = Instance.new("Weld",soul3sd)
906
soul3sdweld.Part0 = torso
907
soul3sdweld.Part1 = soul3sd
908
soul3sdweld.C0 = CFrame.new(0,0,0)
909
soul4sd = Instance.new("Part",char)
910
soul4sd.Shape = "Ball"
911
soul4sd.Material = "Neon"
912
soul4sd.Transparency = 0.2
913
soul4sd.BrickColor = BrickColor.new("White")
914
soul4sd.Material = "Neon"
915
soul4sd.Size = Vector3.new(0.9,0.9,0.9)
916
soul4dsweld = Instance.new("Weld",soul4sd)
917
soul4dsweld.Part0 = torso
918
soul4dsweld.Part1 = soul4sd
919
soul4dsweld.C0 = CFrame.new(0,0,0)
920
soul5sd = Instance.new("Part",char)
921
soul5sd.Shape = "Ball"
922
soul5sd.Transparency = 0.2
923
soul5sd.BrickColor = BrickColor.new("White")
924
soul5sd.Size = Vector3.new(0.9,0.9,0.9)
925
soul5sd.Material = "Neon"
926
soul5sdweld = Instance.new("Weld",soul5sd)
927
soul5sdweld.Part0 = torso
928
soul5sdweld.Part1 = soul5sd
929
soul5sdweld.C0 = CFrame.new(0,0,0)
930
soul6sd = Instance.new("Part",char)
931
soul6sd.Shape = "Ball"
932
soul6sd.Material = "Neon"
933
soul6sd.Transparency = 0.2
934
soul6sd.BrickColor = BrickColor.new("White")
935
soul6sd.Size = Vector3.new(0.9,0.9,0.9)
936
soul6sdweld = Instance.new("Weld",soul6sd)
937
soul6sdweld.Part0 = torso
938
soul6sdweld.Part1 = soul6sd
939
soul6sdweld.C0 = CFrame.new(0,0,0)
940
941
942
soul1mesh = Instance.new("SpecialMesh",soul1d)
943
soul2mesh = Instance.new("SpecialMesh",soul2d)
944
soul3mesh = Instance.new("SpecialMesh",soul3d)
945
soul4mesh = Instance.new("SpecialMesh",soul4d)
946
soul5mesh = Instance.new("SpecialMesh",soul5d)
947
soul6mesh = Instance.new("SpecialMesh",soul6d)
948
soul1smesh = Instance.new("SpecialMesh",soul1sd)
949
soul2smesh = Instance.new("SpecialMesh",soul2sd)
950
soul3smesh = Instance.new("SpecialMesh",soul3sd)
951
soul4smesh = Instance.new("SpecialMesh",soul4sd)
952
soul5smesh = Instance.new("SpecialMesh",soul5sd)
953
soul6smesh = Instance.new("SpecialMesh",soul6sd)
954
soul1mesh.MeshType = "Sphere"
955
soul2mesh.MeshType = "Sphere"
956
soul3mesh.MeshType = "Sphere"
957
soul4mesh.MeshType = "Sphere"
958
soul5mesh.MeshType = "Sphere"
959
soul6mesh.MeshType = "Sphere"
960
soul1smesh.MeshType = "Sphere"
961
soul2smesh.MeshType = "Sphere"
962
soul3smesh.MeshType = "Sphere"
963
soul4smesh.MeshType = "Sphere"
964
soul5smesh.MeshType = "Sphere"
965
soul6smesh.MeshType = "Sphere"
966
KnifeMesh.TextureId = ""
967
canchange = true
968
for i = 1,20 do
969
	soul1mesh.Scale = soul1mesh.Scale + Vector3.new(0.5,0.5,0.5)
970
	soul1smesh.Scale = soul1smesh.Scale + Vector3.new(0.5,0.5,0.5)
971
	soul1d.Transparency = soul1d.Transparency + 0.025	
972
	soul1sd.Transparency = soul1sd.Transparency + 0.05	
973
	blackhand.Transparency = blackhand.Transparency - 0.04
974
	wait()
975
end
976
for i = 1,20 do
977
	soul2mesh.Scale = soul2mesh.Scale + Vector3.new(0.5,0.5,0.5)
978
	soul2smesh.Scale = soul2smesh.Scale + Vector3.new(0.5,0.5,0.5)	
979
	soul2d.Transparency = soul2d.Transparency + 0.025	
980
	soul2sd.Transparency = soul2sd.Transparency + 0.05	
981
	wait()
982
end
983
for i = 1,20 do
984
	soul3mesh.Scale = soul3mesh.Scale + Vector3.new(0.5,0.5,0.5)
985
	soul3smesh.Scale = soul3smesh.Scale + Vector3.new(0.5,0.5,0.5)	
986
	soul3d.Transparency = soul3d.Transparency + 0.025
987
	soul3sd.Transparency = soul3sd.Transparency + 0.05	
988
	wait()
989
end
990
for i = 1,20 do
991
	soul4mesh.Scale = soul4mesh.Scale + Vector3.new(0.5,0.5,0.5)
992
	soul4smesh.Scale = soul4smesh.Scale + Vector3.new(0.5,0.5,0.5)	
993
	soul4d.Transparency = soul4d.Transparency + 0.025
994
	soul4sd.Transparency = soul4sd.Transparency + 0.05	
995
	wait()
996
end
997
for i = 1,20 do
998
	soul5mesh.Scale = soul5mesh.Scale + Vector3.new(0.5,0.5,0.5)
999
	soul5smesh.Scale = soul5smesh.Scale + Vector3.new(0.5,0.5,0.5)	
1000
	soul5d.Transparency = soul5d.Transparency + 0.025
1001
	soul5sd.Transparency = soul5sd.Transparency + 0.05	
1002
	wait()
1003
end
1004
for i = 1,20 do
1005
	soul6mesh.Scale = soul6mesh.Scale + Vector3.new(0.5,0.5,0.5)
1006
	soul6smesh.Scale = soul6smesh.Scale + Vector3.new(0.5,0.5,0.5)
1007
	soul6d.Transparency = soul6d.Transparency + 0.025	
1008
	soul6sd.Transparency = soul6sd.Transparency + 0.05	
1009
	soul1.Transparency = soul1.Transparency + 0.08
1010
	soul2.Transparency = soul2.Transparency + 0.08
1011
	soul3.Transparency = soul3.Transparency + 0.08
1012
	soul4.Transparency = soul4.Transparency + 0.08
1013
	soul5.Transparency = soul5.Transparency + 0.08
1014
	soul6.Transparency = soul6.Transparency + 0.1
1015
		soul1s.Transparency = soul1.Transparency + 0.1
1016
	soul2s.Transparency = soul2s.Transparency + 0.1
1017
	soul3s.Transparency = soul3s.Transparency + 0.1
1018
	soul4s.Transparency = soul4s.Transparency + 0.1
1019
	soul5s.Transparency = soul5s.Transparency + 0.1
1020
	soul6s.Transparency = soul6s.Transparency + 0.1	
1021
	wait()
1022
end
1023
1024
1025
wait(1)
1026
1027
1028
1029
lala = false
1030
wait(1)
1031
  soul1:Destroy()
1032
soul2:Destroy()
1033
soul3:Destroy()
1034
soul4:Destroy()
1035
soul5:Destroy()
1036
soul6:Destroy()
1037
 soul1s:Destroy()
1038
soul2s:Destroy()
1039
soul3s:Destroy()
1040
soul4s:Destroy()
1041
soul5s:Destroy()
1042
soul6s:Destroy()
1043
 soul1d:Destroy()
1044
soul2d:Destroy()
1045
soul3d:Destroy()
1046
soul4d:Destroy()
1047
soul5d:Destroy()
1048
soul6d:Destroy()
1049
 soul1sd:Destroy()
1050
soul2sd:Destroy()
1051
soul3sd:Destroy()
1052
soul4sd:Destroy()
1053
soul5sd:Destroy()
1054
soul6sd:Destroy()
1055
idle = true
1056
chatfunc("Come =)")
1057
hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
1058
lovecounter = true
1059
walking = true
1060
  Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
1061
KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
1062
mouse.KeyDown:connect(function(key)
1063
	if key == "z" then
1064
		if canattack == true then
1065
			canattack = false
1066
	
1067
		idle = false
1068
		walking = false
1069
		wait(1)
1070
1071
		kill = Instance.new("Part",char)
1072
		kill.Position = torso.Position - Vector3.new(0,2,0)
1073
					kill.Size = Vector3.new(200,0.1,200)
1074
					kill.Name = "Immune"
1075
					kill.CanCollide = false
1076
		kill.Transparency = 1
1077
		kill.Anchored = true
1078
		kill.Material = "Neon"
1079
		kill.BrickColor = BrickColor.new("Really red")
1080
		killmesh = Instance.new("SpecialMesh",kill)
1081
		killmesh.MeshType = "FileMesh"
1082
		killmesh.MeshId = "rbxassetid://465435723"
1083
		killmesh.Scale = Vector3.new(5.2,0.01,5.2)
1084
		Weldb.C1 = CFrame.new(0, -1, -1) * CFrame.fromEulerAnglesXYZ(-2, 0, 0)
1085
		  for i = 1, 20 do
1086
			wait()
1087
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(0)), 0.2)
1088
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.2)
1089
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
1090
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(6), math.rad(0), 0), 0.2)
1091
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.2)
1092
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.2)
1093
           
1094
        end
1095
		  for i = 1, 20 do
1096
			wait()
1097
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,-0.3)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(0)), 0.2)
1098
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.2)
1099
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
1100
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles( math.rad(-50), math.rad(0), 0), 0.2)
1101
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -0.8) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-2)), 0.2)
1102
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, 0, -0.8) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(2)), 0.2)
1103
           
1104
		        end
1105
		hitsound:Play()
1106
		part = Instance.new("Part",char)
1107
		part.Size = Vector3.new(0.1,0.1,0.1)
1108
		part.Position = handle.Position
1109
		part1 = Instance.new("Part",char)
1110
		part1.Size = Vector3.new(0.1,0.1,0.1)
1111
		part1.Position = handle.Position
1112
		part2 = Instance.new("Part",char)
1113
		part2.Size = Vector3.new(0.1,0.1,0.1)
1114
		part2.Position = handle.Position
1115
		part3 = Instance.new("Part",char)
1116
		part3.Size = Vector3.new(0.1,0.1,0.1)
1117
		part3.Position = handle.Position
1118
		part4 = Instance.new("Part",char)
1119
		part4.Size = Vector3.new(0.1,0.1,0.1)
1120
		part4.Position = handle.Position
1121
		part5 = Instance.new("Part",char)
1122
		part5.Size = Vector3.new(0.1,0.1,0.1)
1123
		part5.Position = handle.Position
1124
		part6 = Instance.new("Part",char)
1125
		part6.Size = Vector3.new(0.1,0.1,0.1)
1126
		part6.Position = handle.Position
1127
		part7 = Instance.new("Part",char)
1128
		part7.Size = Vector3.new(0.1,0.1,0.1)
1129
		part7.Position = handle.Position
1130
		part8 = Instance.new("Part",char)
1131
		part8.Size = Vector3.new(0.1,0.1,0.1)
1132
		part8.Position = handle.Position
1133
		part9 = Instance.new("Part",char)
1134
		part9.Size = Vector3.new(0.1,0.1,0.1)
1135
		part9.Position = handle.Position
1136
		part10 = Instance.new("Part",char)
1137
		part10.Size = Vector3.new(0.1,0.1,0.1)
1138
		part10.Position = handle.Position
1139
		KnifeMesh.TextureId = ""
1140
		for i = 1,100 do
1141
			wait()
1142
		colorred = colorred + 0.006
1143
		handle.Color = Color3.new(colorred,0,0)
1144
		end
1145
		chatfunc("Welcome To My Special Hell")
1146
		for i = 1,120 do
1147
			wait()
1148
			kill.Transparency = kill.Transparency - 0.005
1149
		end
1150
			
1151
		function onTouched(hit)
1152
			if hit.Parent:FindFirstChild("Immune") == nil then
1153
				if hit.Parent:FindFirstChild("Humanoid") ~= nil then
1154
				hit.Parent:FindFirstChild("Head").Anchored = true
1155
				hitsound:Play()
1156
1157
			
1158
1159
hit.Parent:BreakJoints()
1160
				hit.Parent:FindFirstChild("Humanoid").Health = -1
1161
				end
1162
				
1163
			
1164
			
1165
			
1166
			
1167
			end
1168
		end
1169
		kill.Touched:connect(onTouched)
1170
		
1171
			  
1172
		kill1 = Instance.new("Part",char)
1173
		kill1.Position = torso.Position - Vector3.new(0,2,0)
1174
					kill1.Size = Vector3.new(200,300,200)
1175
					kill1.Name = "Immune"
1176
					kill1.CanCollide = false
1177
		kill1.Transparency = 1
1178
		kill1.Anchored = false
1179
		kill1.Material = "Neon"
1180
		kill1.BrickColor = BrickColor.new("Really red")
1181
		
1182
		function onTouched(hit)
1183
			if hit.Parent:FindFirstChild("Immune") == nil then
1184
				if hit.Parent:FindFirstChild("Humanoid") ~= nil then
1185
			hit.Parent:FindFirstChild("Head").Anchored = true
1186
				hitsound:Play()
1187
		
1188
			
1189
1190
hit.Parent:FindFirstChild("Humanoid").Health = -1
1191
hit.Parent:BreakJoints()
1192
				end
1193
			
1194
			
1195
			
1196
			end
1197
			
1198
		end
1199
		kill1.Touched:connect(onTouched)
1200
		for i = 1,50 do
1201
			wait()
1202
	killmesh.Scale = killmesh.Scale + Vector3.new(0,0.2,0)
1203
		end
1204
		wait(2)
1205
		kill.Anchored = false
1206
			canattack = true
1207
		idle = true
1208
		walking = true
1209
		if char:FindFirstChild("TalkingBillBoard")~= nil then
1210
char:FindFirstChild("TalkingBillBoard"):destroy()
1211
end
1212
		KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
1213
		colorred = 0
1214
		 Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
1215
		end
1216
	end
1217
end)
1218
slashsound = Instance.new("Sound",torso)
1219
slashsound.SoundId = "http://www.roblox.com/asset/?id=357417055"
1220
slashsound.Volume = 10
1221
hitsound = Instance.new("Sound",torso)
1222
hitsound.SoundId = "http://www.roblox.com/asset/?id=623904185"
1223
hitsound.Volume = 10
1224
mouse.KeyDown:connect(function(key)
1225
	if key == "q" then
1226
		if canattack == true then
1227
		canattack = false
1228
		idle = false
1229
		walking = false
1230
		wait(0.5)
1231
		slash = Instance.new("Part",char)
1232
		slash.CanCollide = false
1233
		slash.Transparency = 1
1234
		slash.Size = Vector3.new(5,5,1)
1235
		slashweld = Instance.new("Weld",slash)
1236
		slashweld.Part0 = torso
1237
		slashweld.Part1 = slash
1238
		slashweld.C0 = CFrame.new(0,0,-2)
1239
		slashdecal = Instance.new("Decal",slash)
1240
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1241
		
1242
		slashdecal1 = Instance.new("Decal",slash)
1243
		slashdecal1.Face = "Back"
1244
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1245
		slashsound:Play()
1246
			function onTouched(hit)
1247
			if hit.Parent:FindFirstChild("Immune") == nil then
1248
				if hit.Parent:FindFirstChild("Humanoid") ~= nil then
1249
		hit.Parent:FindFirstChild("Head").Anchored = true
1250
					slash.TouchInterest:Destroy()
1251
					wait(1)
1252
					hitsound:Play()
1253
			
1254
				gothit = Instance.new("Part",hit)
1255
		gothit.CanCollide = false
1256
		gothit.Transparency = 1
1257
		gothit.Size = Vector3.new(10,10,1)
1258
		gothitweld1 = Instance.new("Weld",gothit)
1259
		gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
1260
	gothitweld1.Part1 = gothit
1261
	
1262
		gothitweld1.C0 = CFrame.new(0,4,0)
1263
		gothitdecal = Instance.new("Decal",gothit)
1264
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1265
					love = love + 1
1266
					gothit = Instance.new("Part",hit)
1267
		gothit.CanCollide = false
1268
		gothit.Transparency = 1
1269
		gothit.Size = Vector3.new(10,10,1)
1270
		gothitweld = Instance.new("Weld",gothit)
1271
		gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
1272
	gothitweld.Part1 = gothit
1273
		gothitweld.C0 = CFrame.new(0,5,0)
1274
1275
		gothitdecal = Instance.new("Decal",gothit)
1276
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1277
					gothitdecal.Face = "Back"
1278
					gothitweld.C0 = CFrame.new(0,3.5,0)
1279
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1280
					wait(0.2)
1281
					gothitweld.C0 = CFrame.new(0,4,0)
1282
					gothitweld1.C0 = CFrame.new(0,4,0)
1283
					wait(0.2)
1284
					gothitweld.C0 = CFrame.new(0,3.5,0)
1285
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1286
					wait(0.2)
1287
					gothitweld.C0 = CFrame.new(0,4,0)
1288
					gothitweld1.C0 = CFrame.new(0,4,0)
1289
					wait(0.2)
1290
					gothitweld.C0 = CFrame.new(0,3.5,0)
1291
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1292
					wait(0.2)
1293
					gothitweld.C0 = CFrame.new(0,4,0)
1294
					gothitweld1.C0 = CFrame.new(0,4,0)
1295
					wait(0.2)
1296
					gothitweld.C0 = CFrame.new(0,3.5,0)
1297
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1298
					wait(0.2)
1299
					gothitweld.C0 = CFrame.new(0,4,0)
1300
					gothitweld1.C0 = CFrame.new(0,4,0)
1301
					wait(0.2)
1302
					gothitweld.C0 = CFrame.new(0,3.5,0)
1303
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1304
					wait(0.2)
1305
					gothitweld.C0 = CFrame.new(0,4,0)
1306
					gothitweld1.C0 = CFrame.new(0,4,0)
1307
					wait(0.2)
1308
					gothitweld.C0 = CFrame.new(0,3.5,0)
1309
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1310
					wait(0.2)
1311
					gothitweld.C0 = CFrame.new(0,4,0)
1312
					gothitweld1.C0 = CFrame.new(0,4,0)
1313
					wait(0.2)
1314
					
1315
hit.Parent:FindFirstChild("Humanoid").Health = -1
1316
hit.Parent:BreakJoints()
1317
				else
1318
					if hit.Parent:IsA("Model") then
1319
					wait(1)
1320
				
1321
					hit.Parent:BreakJoints()
1322
					
1323
					
1324
					
1325
					
1326
					
1327
				end	
1328
					if hit:IsA("Part") and hit.Size.X < 500 then
1329
					
1330
					hit.BrickColor = BrickColor.new("Really black")
1331
					hitsound:Play()
1332
					for i = 1,20 do
1333
						wait()
1334
					hit.Transparency = hit.Transparency + 0.05
1335
					end
1336
					
1337
					
1338
					
1339
					
1340
				end	
1341
				end
1342
			
1343
			end
1344
			
1345
		end
1346
		slash.Touched:connect(onTouched)
1347
		
1348
		 for i = 1, 5 do
1349
			wait()
1350
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1351
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1352
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1353
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1354
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1355
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1356
           
1357
		        end
1358
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
1359
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1360
		 for i = 1, 5 do
1361
			wait()
1362
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
1363
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1364
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1365
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1366
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1367
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1368
           
1369
        end
1370
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1371
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1372
		
1373
		wait(0.1)
1374
		slash:Destroy()
1375
		canattack = true
1376
		idle = true
1377
		walking = true
1378
		end
1379
	end
1380
end)
1381
1382
1383
1384
1385
1386
1387
1388
1389
mouse.KeyDown:connect(function(key)
1390
	if key == "x" then
1391
hed.Transparency = 1
1392
torso.Transparency = 1
1393
larm.Transparency = 1
1394
hed.face.Texture = ""
1395
MegaloStrikesBack.Volume = 0.1
1396
	lovecounter = false
1397
rarm.Transparency = 1	
1398
lleg.Transparency = 1
1399
rleg.Transparency = 1
1400
handle.Transparency = 1
1401
Handle.Transparency = 1
1402
blackhand.Transparency = 1
1403
hum.WalkSpeed = 60
1404
text.Text = ""
1405
if char:FindFirstChild("TalkingBillBoard")~= nil then
1406
char:FindFirstChild("TalkingBillBoard"):destroy()
1407
end
1408
	end
1409
end)
1410
mouse.KeyUp:connect(function(key)
1411
	if key == "x" then
1412
		hed.Transparency = 0
1413
		lovecounter = true
1414
torso.Transparency = 0
1415
larm.Transparency = 0
1416
rarm.Transparency = 0	
1417
MegaloStrikesBack.Volume = 50
1418
lleg.Transparency = 0
1419
rleg.Transparency = 0
1420
handle.Transparency = 0
1421
Handle.Transparency = 0
1422
blackhand.Transparency = 0
1423
hum.WalkSpeed = 16
1424
hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
1425
	end
1426
end)
1427
mouse.KeyDown:connect(function(Key)
1428
if Key:byte() == 48 then
1429
hum.WalkSpeed = 40
1430
workspace.Camera.FieldOfView = 80
1431
sprint = true
1432
end
1433
end)
1434
1435
mouse.KeyUp:connect(function(Key)
1436
if Key:byte() == 48 then
1437
hum.WalkSpeed = 16
1438
workspace.Camera.FieldOfView = 70
1439
sprint = false
1440
end
1441
end)
1442
1443
1444
1445
mouse.KeyDown:connect(function(key)
1446
	if key == "e" then
1447
		if canattack == true then
1448
		canattack = false
1449
		idle = false
1450
		walking = false
1451
		wait(1)
1452
	
1453
		
1454
		slashsound:Play()
1455
	
1456
		 for i = 1, 5 do
1457
			wait()
1458
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1459
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1460
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1461
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1462
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1463
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1464
           
1465
		        end
1466
		
1467
		 for i = 1, 5 do
1468
			wait()
1469
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
1470
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1471
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1472
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1473
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1474
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1475
           
1476
        end
1477
			slash4 = Instance.new("Part",char)
1478
		slash4.CanCollide = false
1479
		slash4.Transparency = 0
1480
			slash4.Position = Vector3.new(999,999,999)
1481
		slash4.BrickColor = BrickColor.new("Really red")
1482
		slash4.Size = Vector3.new(0.3,9,0.3)
1483
		slashweld4 = Instance.new("Weld",slash4)
1484
		slashweld4.Part0 = torso
1485
		slashweld4.Part1 = slash4
1486
		slashweld4.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-80))
1487
		slashsound:Play()
1488
		 for i = 1, 5 do
1489
			wait()
1490
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(30)), 0.7)
1491
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1492
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1493
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-5), math.rad(15), 0), 0.7)
1494
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1495
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1496
           
1497
        end
1498
		slash3 = Instance.new("Part",char)
1499
		slash3.CanCollide = false
1500
		slash3.Transparency = 0
1501
			slash3.Position = Vector3.new(999,999,999)
1502
		slash3.BrickColor = BrickColor.new("Really red")
1503
		slash3.Size = Vector3.new(0.3,9,0.3)
1504
		slashweld3 = Instance.new("Weld",slash3)
1505
		slashweld3.Part0 = torso
1506
		slashweld3.Part1 = slash3
1507
		slashweld3.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(40))
1508
		slashsound:Play()
1509
		 for i = 1, 5 do
1510
			wait()
1511
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-70)), 0.7)
1512
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1513
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1514
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
1515
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1516
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1517
           
1518
        end
1519
		slash2 = Instance.new("Part",char)
1520
		slash2.CanCollide = false
1521
		slash2.Transparency = 0
1522
			slash2.Position = Vector3.new(999,999,999)
1523
		slash2.BrickColor = BrickColor.new("Really red")
1524
		slash2.Size = Vector3.new(0.3,9,0.3)
1525
		slashweld2 = Instance.new("Weld",slash2)
1526
		slashweld2.Part0 = torso
1527
		slashweld2.Part1 = slash2
1528
		slashweld2.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(150))
1529
		  for i = 1, 5 do
1530
			wait()
1531
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1532
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1533
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1534
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1535
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1536
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1537
           
1538
		        end
1539
		slashsound:Play()
1540
		 for i = 1, 5 do
1541
			wait()
1542
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-20)), 0.7)
1543
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1544
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1545
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
1546
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1547
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1548
           
1549
        end
1550
		slash1 = Instance.new("Part",char)
1551
		slash1.CanCollide = false
1552
		slash1.Transparency = 0
1553
			slash1.Position = Vector3.new(999,999,999)
1554
		slash1.BrickColor = BrickColor.new("Really red")
1555
		slash1.Size = Vector3.new(0.3,9,0.3)
1556
		slashweld1 = Instance.new("Weld",slash1)
1557
		slashweld1.Part0 = torso
1558
		slashweld1.Part1 = slash1
1559
		slashweld1.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(78))
1560
		  for i = 1, 5 do
1561
			wait()
1562
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1563
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1564
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1565
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1566
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1567
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1568
           
1569
		        end
1570
		slash5 = Instance.new("Part",char)
1571
		slash5.CanCollide = true
1572
		slash5.Transparency = 1
1573
		slash5.Position = Vector3.new(999,999,999)
1574
		slash5.BrickColor = BrickColor.new("Really red")
1575
		slash5.Size = Vector3.new(4,3,4)
1576
		slashweld5 = Instance.new("Weld",slash5)
1577
		slashweld5.Part0 = torso
1578
		slashweld5.Part1 = slash5
1579
		slashweld5.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(130))
1580
		function onTouched(hit)
1581
			if hit.Parent:FindFirstChild("Immune") == nil then
1582
				if hit.Parent:FindFirstChild("Humanoid") ~= nil  then
1583
		hit.Parent:FindFirstChild("Head").Anchored = true
1584
					
1585
					wait(1)
1586
					hitsound:Play()
1587
			
1588
				gothit = Instance.new("Part",hit)
1589
		gothit.CanCollide = false
1590
		gothit.Transparency = 1
1591
		gothit.Size = Vector3.new(10,10,1)
1592
		gothitweld1 = Instance.new("Weld",gothit)
1593
		gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
1594
	gothitweld1.Part1 = gothit
1595
	
1596
		gothitweld1.C0 = CFrame.new(0,4,0)
1597
		gothitdecal = Instance.new("Decal",gothit)
1598
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1599
					love = love + 1
1600
					gothit = Instance.new("Part",hit)
1601
		gothit.CanCollide = false
1602
		gothit.Transparency = 1
1603
		gothit.Size = Vector3.new(10,10,1)
1604
		gothitweld = Instance.new("Weld",gothit)
1605
		gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
1606
	gothitweld.Part1 = gothit
1607
		gothitweld.C0 = CFrame.new(0,5,0)
1608
1609
		gothitdecal = Instance.new("Decal",gothit)
1610
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1611
					gothitdecal.Face = "Back"
1612
					gothitweld.C0 = CFrame.new(0,3.5,0)
1613
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1614
					wait(0.2)
1615
					gothitweld.C0 = CFrame.new(0,4,0)
1616
					gothitweld1.C0 = CFrame.new(0,4,0)
1617
					wait(0.2)
1618
					gothitweld.C0 = CFrame.new(0,3.5,0)
1619
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1620
					wait(0.2)
1621
					gothitweld.C0 = CFrame.new(0,4,0)
1622
					gothitweld1.C0 = CFrame.new(0,4,0)
1623
					wait(0.2)
1624
					gothitweld.C0 = CFrame.new(0,3.5,0)
1625
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1626
					wait(0.2)
1627
					gothitweld.C0 = CFrame.new(0,4,0)
1628
					gothitweld1.C0 = CFrame.new(0,4,0)
1629
					wait(0.2)
1630
					gothitweld.C0 = CFrame.new(0,3.5,0)
1631
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1632
					wait(0.2)
1633
					gothitweld.C0 = CFrame.new(0,4,0)
1634
					gothitweld1.C0 = CFrame.new(0,4,0)
1635
					wait(0.2)
1636
					gothitweld.C0 = CFrame.new(0,3.5,0)
1637
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1638
					wait(0.2)
1639
					gothitweld.C0 = CFrame.new(0,4,0)
1640
					gothitweld1.C0 = CFrame.new(0,4,0)
1641
					wait(0.2)
1642
					gothitweld.C0 = CFrame.new(0,3.5,0)
1643
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1644
					wait(0.2)
1645
					gothitweld.C0 = CFrame.new(0,4,0)
1646
					gothitweld1.C0 = CFrame.new(0,4,0)
1647
					wait(0.2)
1648
					
1649
hit.Parent:FindFirstChild("Humanoid").Health = -1
1650
hit.Parent:BreakJoints()
1651
				else
1652
					if hit.Parent:IsA("Model") then
1653
					wait(1)
1654
				
1655
					hit.Parent:BreakJoints()
1656
					
1657
					
1658
					
1659
					
1660
					
1661
				end	
1662
					if hit:IsA("Part") and hit.Size.X < 500 then
1663
					
1664
					hit.BrickColor = BrickColor.new("Really black")
1665
					hitsound:Play()
1666
					for i = 1,20 do
1667
						wait()
1668
					hit.Transparency = hit.Transparency + 0.05
1669
					end
1670
					
1671
					
1672
					
1673
					
1674
				end	
1675
				end
1676
			
1677
			end
1678
			
1679
		end
1680
		slash5.Touched:connect(onTouched)
1681
		for i = 1,70 do
1682
			wait()
1683
			
1684
			slashweld1.C0 = slashweld1.C0 - Vector3.new(0,0,4)
1685
			slashweld2.C0 = slashweld2.C0 - Vector3.new(0,0,4)
1686
			slashweld3.C0 = slashweld3.C0 - Vector3.new(0,0,4)
1687
			slashweld4.C0 = slashweld4.C0 - Vector3.new(0,0,4)
1688
			slashweld5.C0 = slashweld5.C0 - Vector3.new(0,0,4)
1689
			
1690
			
1691
			
1692
		end
1693
		slash1:Destroy()
1694
		slash2:Destroy()
1695
		slash3:Destroy()
1696
		slash4:Destroy()
1697
		slash5:Destroy()
1698
		canattack = true
1699
		idle = true
1700
		walking = true
1701
		end
1702
	end
1703
end)
1704
1705
1706
mouse.KeyDown:connect(function(key)
1707
	if key == "r" then
1708
		if canattack == true then
1709
			
1710
		
1711
		
1712
what = Instance.new("Part",char)
1713
what.Size = Vector3.new(60,60,60)
1714
what.Transparency = 1
1715
what.Position = torso.Position
1716
what.CanCollide = false
1717
function onTouched(hit)
1718
			if hit.Parent:FindFirstChild("Immune") == nil then
1719
				if hit.Parent:FindFirstChild("Torso") ~= nil  then
1720
					chatfunc('I Got You')
1721
				
1722
					t = hit.Parent:FindFirstChild("Torso")
1723
					h = hit.Parent:FindFirstChild("Head")
1724
					la = hit.Parent:FindFirstChild("Left Arm")
1725
					ra = hit.Parent:FindFirstChild("Right Arm")
1726
					ll = hit.Parent:FindFirstChild("Left Leg")
1727
					rl = hit.Parent:FindFirstChild("Right Leg")
1728
					
1729
					what:Destroy()
1730
					
1731
					torso.CFrame = t.CFrame * CFrame.Angles(0,math.rad(180),0) + t.CFrame.lookVector * 3 
1732
					h.Anchored = true 
1733
					
1734
					
1735
					
1736
					hed.Anchored = true
1737
					wait(2)
1738
					chatfunc('=)')
1739
					slash = Instance.new("Part",char)
1740
		slash.CanCollide = false
1741
		slash.Transparency = 1
1742
		slash.Size = Vector3.new(5,5,1)
1743
		slashweld = Instance.new("Weld",slash)
1744
		slashweld.Part0 = torso
1745
		slashweld.Part1 = slash
1746
		slashweld.C0 = CFrame.new(0,0,-2)
1747
		slashdecal = Instance.new("Decal",slash)
1748
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1749
		
1750
		slashdecal1 = Instance.new("Decal",slash)
1751
		slashdecal1.Face = "Back"
1752
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1753
		slashsound:Play()
1754
					 for i = 1, 5 do
1755
			wait()
1756
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1757
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1758
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1759
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1760
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1761
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1762
           
1763
		        end
1764
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
1765
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1766
		 for i = 1, 5 do
1767
			wait()
1768
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
1769
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1770
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1771
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1772
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1773
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1774
           
1775
        end
1776
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1777
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1778
		
1779
		wait(0.1)
1780
		slash:Destroy()
1781
	if la ~= nil then
1782
		la.BrickColor = BrickColor.new("Really black")
1783
					hitsound:Play()
1784
					for i = 1,20 do
1785
						wait()
1786
					la.Transparency = la.Transparency + 0.05
1787
					end
1788
					la:Destroy()
1789
					end
1790
					slash = Instance.new("Part",char)
1791
		slash.CanCollide = false
1792
		slash.Transparency = 1
1793
		slash.Size = Vector3.new(5,5,1)
1794
		slashweld = Instance.new("Weld",slash)
1795
		slashweld.Part0 = torso
1796
		slashweld.Part1 = slash
1797
		slashweld.C0 = CFrame.new(0,0,-2)
1798
		slashdecal = Instance.new("Decal",slash)
1799
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1800
		
1801
		slashdecal1 = Instance.new("Decal",slash)
1802
		slashdecal1.Face = "Back"
1803
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1804
		slashsound:Play()
1805
					 for i = 1, 5 do
1806
			wait()
1807
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1808
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1809
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1810
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1811
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1812
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1813
           
1814
		        end
1815
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
1816
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1817
		 for i = 1, 5 do
1818
			wait()
1819
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
1820
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1821
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1822
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1823
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1824
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1825
           
1826
        end
1827
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1828
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1829
		
1830
		wait(0.1)
1831
		slash:Destroy()
1832
	if ll ~= nil then
1833
		ll.BrickColor = BrickColor.new("Really black")
1834
					hitsound:Play()
1835
					for i = 1,20 do
1836
						wait()
1837
					ll.Transparency = ll.Transparency + 0.05
1838
					end
1839
					ll:Destroy()
1840
					end
1841
					slash = Instance.new("Part",char)
1842
		slash.CanCollide = false
1843
		slash.Transparency = 1
1844
		slash.Size = Vector3.new(5,5,1)
1845
		slashweld = Instance.new("Weld",slash)
1846
		slashweld.Part0 = torso
1847
		slashweld.Part1 = slash
1848
		slashweld.C0 = CFrame.new(0,0,-2)
1849
		slashdecal = Instance.new("Decal",slash)
1850
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1851
		
1852
		slashdecal1 = Instance.new("Decal",slash)
1853
		slashdecal1.Face = "Back"
1854
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1855
		slashsound:Play()
1856
					 for i = 1, 5 do
1857
			wait()
1858
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1859
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1860
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1861
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1862
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1863
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1864
           
1865
		        end
1866
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
1867
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1868
		 for i = 1, 5 do
1869
			wait()
1870
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
1871
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1872
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1873
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1874
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1875
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1876
           
1877
        end
1878
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1879
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1880
		
1881
		wait(0.1)
1882
		slash:Destroy()
1883
	if ra ~= nil then
1884
		ra.BrickColor = BrickColor.new("Really black")
1885
					hitsound:Play()
1886
					for i = 1,20 do
1887
						wait()
1888
					ra.Transparency = ra.Transparency + 0.05
1889
					end
1890
					ra:Destroy()
1891
					end
1892
					slash = Instance.new("Part",char)
1893
		slash.CanCollide = false
1894
		slash.Transparency = 1
1895
		slash.Size = Vector3.new(5,5,1)
1896
		slashweld = Instance.new("Weld",slash)
1897
		slashweld.Part0 = torso
1898
		slashweld.Part1 = slash
1899
		slashweld.C0 = CFrame.new(0,0,-2)
1900
		slashdecal = Instance.new("Decal",slash)
1901
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1902
		
1903
		slashdecal1 = Instance.new("Decal",slash)
1904
		slashdecal1.Face = "Back"
1905
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1906
		slashsound:Play()
1907
					 for i = 1, 5 do
1908
			wait()
1909
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1910
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1911
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1912
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1913
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1914
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1915
           
1916
		        end
1917
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
1918
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1919
		 for i = 1, 5 do
1920
			wait()
1921
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
1922
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1923
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1924
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1925
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1926
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1927
           
1928
        end
1929
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1930
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1931
		
1932
		wait(0.1)
1933
		slash:Destroy()
1934
	if rl ~= nil then
1935
		rl.BrickColor = BrickColor.new("Really black")
1936
					hitsound:Play()
1937
					for i = 1,20 do
1938
						wait()
1939
					rl.Transparency = rl.Transparency + 0.05
1940
					end
1941
					rl:Destroy()
1942
					end
1943
					slash = Instance.new("Part",char)
1944
		slash.CanCollide = false
1945
		slash.Transparency = 1
1946
		slash.Size = Vector3.new(5,5,1)
1947
		slashweld = Instance.new("Weld",slash)
1948
		slashweld.Part0 = torso
1949
		slashweld.Part1 = slash
1950
		slashweld.C0 = CFrame.new(0,0,-2)
1951
		slashdecal = Instance.new("Decal",slash)
1952
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1953
		
1954
		slashdecal1 = Instance.new("Decal",slash)
1955
		slashdecal1.Face = "Back"
1956
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1957
		slashsound:Play()
1958
					 for i = 1, 5 do
1959
			wait()
1960
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
1961
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1962
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1963
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1964
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1965
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1966
           
1967
		        end
1968
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
1969
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1970
		 for i = 1, 5 do
1971
			wait()
1972
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
1973
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
1974
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1975
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1976
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
1977
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
1978
           
1979
        end
1980
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1981
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1982
		
1983
		wait(0.1)
1984
		slash:Destroy()
1985
	
1986
		t.BrickColor = BrickColor.new("Really black")
1987
					hitsound:Play()
1988
					for i = 1,20 do
1989
						wait()
1990
					t.Transparency = t.Transparency + 0.05
1991
					end
1992
					t:Destroy()
1993
					slash = Instance.new("Part",char)
1994
		slash.CanCollide = false
1995
		slash.Transparency = 1
1996
		slash.Size = Vector3.new(5,5,1)
1997
		slashweld = Instance.new("Weld",slash)
1998
		slashweld.Part0 = torso
1999
		slashweld.Part1 = slash
2000
		slashweld.C0 = CFrame.new(0,0,-2)
2001
		slashdecal = Instance.new("Decal",slash)
2002
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
2003
		
2004
		slashdecal1 = Instance.new("Decal",slash)
2005
		slashdecal1.Face = "Back"
2006
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
2007
		slashsound:Play()
2008
					 for i = 1, 5 do
2009
			wait()
2010
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
2011
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
2012
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
2013
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
2014
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
2015
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
2016
           
2017
		        end
2018
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
2019
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
2020
		 for i = 1, 5 do
2021
			wait()
2022
            rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
2023
            larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
2024
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
2025
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
2026
            lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
2027
            rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
2028
           
2029
        end
2030
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
2031
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
2032
		
2033
		wait(0.1)
2034
		slash:Destroy()
2035
	if h ~= nil then
2036
		h.BrickColor = BrickColor.new("Really black")
2037
					hitsound:Play()
2038
					for i = 1,20 do
2039
						wait()
2040
					h.Transparency = h.Transparency + 0.05
2041
					end
2042
					h:Destroy()
2043
	end
2044
	hed.Anchored = false
2045
	
2046
				end
2047
			end
2048
end
2049
what.Touched:connect(onTouched)
2050
		end
2051
		end
2052
	end)