View difference between Paste ID: HNs4M0T7 and SDW3sRgx
SHOW: | | - or go back to the newest paste.
1
local lovecounter = false
2-
local love = 99
2+
local love = 666
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"
224+
 hed.face.Texture = "http://www.roblox.com/asset/?id=1430746354"
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=451644755"
230+
char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=166273878"
231-
char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=358183960"
231+
char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=166273938"
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=399570826"
240+
MegaloStrikesBack.SoundId = "http://www.roblox.com/asset?id=1163834766"
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
255
Handle.BottomSurface = 0
256
Handle.Name = "Handle"
257
Handle.TopSurface = 0
258
Handle.Locked = 1
259
local Mesh = Hat:FindFirstChild("Mesh") or Instance.new("SpecialMesh", Handle)
260-
Mesh.TextureId = "http://www.roblox.com/asset/?id=75975464"
260+
Mesh.textureMeshId = "https://roblox.com/asset/?id="
261-
Mesh.MeshId = "http://www.roblox.com/asset/?id=250264520 "
261+
Mesh.MeshId = "http://www.roblox.com/asset/?id=16952952"
262
Mesh.VertexColor = Vector3.new(1, 1, 1)
263
Mesh.Scale = Vector3.new(1.05, 1.05, 1.05)
264
Hat.Parent = char
265
266
  handle = Instance.new("Part", char)
267
  handle.TopSurface = "Smooth"
268
  handle.BottomSurface = "Smooth"
269
 handle.Material = "Neon"
270
271
  handle.Size = Vector3.new(0.2, 0.5, 0.5)
272
  handle.CanCollide = false
273
274
  handle.FormFactor = "Custom"
275
  local Weldb = Instance.new("Weld", char)
276
  Weldb.Part0 = char["Right Arm"]
277
  Weldb.Part1 = handle
278
  Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
279
  local KnifeMesh = Instance.new("SpecialMesh", handle)
280
  KnifeMesh.MeshType = "FileMesh"
281
  KnifeMesh.MeshId = "http://www.roblox.com/asset/?id=121944778"
282
KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
283
284
blackhand = Instance.new("Part",char)
285
blackhand.Material = "Neon"
286
blackhand.Transparency = 1
287
blackhand.BrickColor = BrickColor.new("Really black")
288
blackhand.Position = Vector3.new(999,999,999)
289
blackhand.Size = Vector3.new(1.01,1.01,1.01)
290
blackweld = Instance.new("Weld",blackhand)
291
blackweld.Part0 = rarm
292
blackweld.Part1 = blackhand
293
blackweld.C0 = CFrame.new(0,-0.5,0)
294
295-
CV="Really red"
295+
296
CV="Really purple"
297
   
298
local txt = Instance.new("BillboardGui", char)
299
txt.Adornee = hed
300
txt.Name = "_status"
301
txt.Size = UDim2.new(2, 0, 1.2, 0)
302
txt.StudsOffset = Vector3.new(-9, 11, 0)
303
local text = Instance.new("TextLabel", txt)
304
text.Size = UDim2.new(10, 0, 7, 0)
305
text.FontSize = "Size24"
306
text.TextScaled = true
307
text.TextTransparency = 0
308
text.BackgroundTransparency = 1
309
text.TextTransparency = 0
310
text.TextStrokeTransparency = 0
311
text.Font = "Arcade"
312
text.TextStrokeColor3 = Color3.new(255,0,0)
313
 
314
v=Instance.new("Part")
315
v.Name = "ColorBrick"
316
v.Parent=char
317
v.FormFactor="Symmetric"
318
v.Anchored=true
319
v.CanCollide=false
320
v.BottomSurface="Smooth"
321
v.TopSurface="Smooth"
322
v.Size=Vector3.new(10,5,3)
323
v.Transparency=1
324
v.CFrame=torso.CFrame
325
v.BrickColor=BrickColor.new(CV)
326
v.Transparency=1
327
text.TextColor3 = Color3.new(0,0,0)
328
v.Shape="Block"
329
text.Text = ""
330
331
refused = Instance.new("Sound",larm)
332
refused.Volume = 100
333
refused.SoundId = "http://www.roblox.com/asset/?id=400905079"
334
335
 game:GetService("RunService").RenderStepped:connect(function()
336
	
337
	if lala == true then
338
		if canchange == true then
339
			canchange = false
340-
		  handle.BrickColor = BrickColor.new("Really red")
340+
341
		  handle.BrickColor = BrickColor.new("Really purple")
342-
		  handle.BrickColor = BrickColor.new("Really blue")
342+
343
		  handle.BrickColor = BrickColor.new("Really purple")
344-
		 handle.BrickColor = BrickColor.new("Bright green")
344+
345
		 handle.BrickColor = BrickColor.new("Really purple")
346-
		  handle.BrickColor = BrickColor.new("Toothpaste")
346+
347
		  handle.BrickColor = BrickColor.new("Really purple")
348-
		 handle.BrickColor = BrickColor.new("New Yeller")
348+
349
		 handle.BrickColor = BrickColor.new("Really purple")
350-
		  handle.BrickColor = BrickColor.new("Magenta")
350+
351
		  handle.BrickColor = BrickColor.new("Really purple")
352-
		 handle.BrickColor = BrickColor.new("Deep orange")
352+
353
		 handle.BrickColor = BrickColor.new("Really purple")
354
		wait(0.01)
355
		canchange = true
356
		end
357
		end
358
	if hum.MoveDirection.x == 0 then
359
		if idle == true then
360
			if idleon == true then
361
			idleon = false
362
	for i = 1,10 do
363
		wait()
364
		if hum.MoveDirection.x == 0 then
365
    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)
366
		end
367
		if hum.MoveDirection.x == 0 then
368
                   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)
369
		end
370
		if hum.MoveDirection.x == 0 then
371
                    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)
372
		end
373
		if hum.MoveDirection.x == 0 then
374
                    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)
375
		end
376
		if hum.MoveDirection.x == 0 then
377
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(2)), 0.1)
378
		 end
379
		end
380
		
381
		
382
		
383
		
384
		for i = 1,10 do
385
		wait()
386
		if hum.MoveDirection.x == 0 then
387
    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)
388
		end
389
		if hum.MoveDirection.x == 0 then
390
                   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)
391
		end
392
		if hum.MoveDirection.x == 0 then
393
                    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)
394
		end
395
		if hum.MoveDirection.x == 0 then
396
                    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)
397
		end
398
		if hum.MoveDirection.x == 0 then
399
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(2)), 0.1)
400
		 end
401
		end
402
		idleon = true
403
		end
404
405
			
406
			
407
		end
408
	end
409
	if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
410
		if walking == true then
411
			if sprint == false then
412
		if idle1 == true then
413
			idle1 = false
414
	
415
		idle = false
416
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
417
		for i = 1,10 do
418
			wait()
419
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
420
			   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)
421
			end
422
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
423
                    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)
424
end
425
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
426
			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)
427
			end
428
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
429
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
430
			end
431
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
432
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(2)), 0.1)
433
end
434
435
end
436
		 end
437
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
438
		for i = 1,10 do
439
			wait()
440
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
441
			   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)
442
			end
443
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
444
                    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)
445
end
446
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
447
			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)
448
			end
449
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
450
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(-2)), 0.1)
451
			end
452
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
453
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
454
end
455
		end
456
		end
457
 if hum.MoveDirection.x == 0 then
458
	idle = true
459
end
460
idle1 = true
461
		end	
462
		end
463
		end
464
		
465
	end
466
	----------------------------------------------------------------------------------
467
	
468
	if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
469
		if walking == true then
470
			if sprint == true then
471
		if idle1 == true then
472
			idle1 = false
473
	
474
		idle = false
475
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
476
		for i = 1,8 do
477
			wait()
478
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
479
			   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)
480
			end
481
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
482
                    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)
483
end
484
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
485
			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)
486
			end
487
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
488
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
489
			end
490
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
491
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(2)), 0.1)
492
end
493
494
end
495
		 end
496
		 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
497
		for i = 1,8 do
498
			wait()
499
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
500
			   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)
501
			end
502
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
503
                    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)
504
end
505
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
506
			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)
507
			end
508
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
509
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(-2)), 0.1)
510
			end
511
			 if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
512
        rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
513
			end
514
			
515
		end
516
		end
517
 if hum.MoveDirection.x == 0 then
518
	idle = true
519
end
520
idle1 = true
521
	end	
522
		end
523
		end
524
	end
525
	
526
	if deathchat1 == true then
527
		char.Parent = workspace.Camera
528
		char.Archivable = true
529
		local c = p.Character:Clone()
530
		c:MakeJoints()
531
		for y,t in pairs(c:GetChildren()) do
532
			if t:IsA("Part") then
533
				t.CanCollide = false 
534
				t.Anchored = true 
535
			t.BrickColor = BrickColor.new("Black")
536
t.Transparency = 1
537
538
				t.TopSurface = "Smooth"
539
				t.BottomSurface = "Smooth"
540
				t.RightSurface = "Smooth"
541
				t.LeftSurface = "Smooth"
542
				t.FrontSurface = "Smooth"
543
				t.BackSurface = "Smooth"
544
				
545
				
546
			else 
547
				t:Remove()
548
			end
549
		end
550
		c.Parent = workspace
551
		game.Debris:AddItem(c,.05)
552
	end
553
	
554
	hum:SetStateEnabled("Dead",false)
555
hum:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
556
	if hum.Health < 5 and candie == true then
557
hum.Name = "NOMOREDAMAGE"
558
canheal = true
559
		done = false
560
561
done = true
562
		candie = false
563
		dead = true
564
MegaloStrikesBack.Volume = 0
565
		refused:Play()
566
567
		deathchat = true
568
	end
569
	if deathchat == true then
570
		deathchat = false
571
		idle = false
572
573
		hed.face.Texture = "0"
574
		if char:FindFirstChild("TalkingBillBoard")~= nil then
575
char:FindFirstChild("TalkingBillBoard"):destroy()
576
		end
577
		  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)
578
		idle1 = false
579
		canattack = false
580
		 gothitdecal2 = Instance.new("Decal",torso)
581
		gothitdecal2.Texture = "http://www.roblox.com/asset/?id=318427241"
582
		gothitdecal2.Face = "Back"
583
		gothitdecal1 = Instance.new("Decal",torso)
584
		gothitdecal1.Texture = "http://www.roblox.com/asset/?id=318427241"
585
		hed.Transparency = 1
586
		torso.Transparency = 1
587
		larm.Transparency = 1
588
	rarm.Transparency = 1
589
	lovecounter = false
590
	   text.Text = ""
591
		
592
	lleg.Transparency = 1
593
	rleg.Transparency = 1
594
	handle.Transparency = 1
595
	Handle.Transparency = 1
596
	blackhand.Transparency = 1
597
	wait(1)
598
	refused:Stop()
599
		wait(2)
600
601
chatfunc("But It Refused")
602
		wait(1.5)
603
		candie = true
604
		idle = true
605
		idle1 = true
606
		hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
607
		canattack = true
608
		lleg.Anchored = false
609
	rleg.Anchored = false
610
	larm.Anchored = false
611
	rarm.Anchored = false
612
	hed.Anchored = false
613
	torso.Anchored = false
614
		gothitdecal2:Destroy()
615
		gothitdecal1:Destroy()
616
		for i = 1,10 do
617
			wait()
618
		hed.Transparency = hed.Transparency - 0.1
619
		torso.Transparency = torso.Transparency - 0.1
620
		larm.Transparency = larm.Transparency - 0.1
621
	rarm.Transparency = rarm.Transparency - 0.1
622
	lleg.Transparency = lleg.Transparency - 0.1
623
	rleg.Transparency = rleg.Transparency - 0.1
624
	handle.Transparency = handle.Transparency - 0.1
625
	Handle.Transparency = Handle.Transparency - 0.1
626
	blackhand.Transparency = blackhand.Transparency - 0.1
627
		end
628
lovecounter = true
629
			dead = false
630
			deathchat1 = false
631
			canheal = false
632
			hum.Health = 100
633
			
634
			MegaloStrikesBack.Volume = 50
635
			wait(1)
636
			hum.Name = "Humanoid"
637
	end
638
	
639
640
	
641
	
642
643
	
644
	if canheal == true then
645
	
646
	hum.Health = math.huge
647
648
	end
649
			
650-
	text.Text = "Chara LV "..love	
650+
651
	text.Text = "Robert Lv "..love	
652
end
653
end)
654
655
game.Players.CharacterAutoLoads = false
656
657
658
659
660
hed.Transparency = 0
661
		torso.Transparency = 0
662
		larm.Transparency = 0
663
	rarm.Transparency = 0
664
	lleg.Transparency = 0
665
	rleg.Transparency = 0
666
	handle.Transparency = 0
667
	Handle.Transparency = 0
668
669
	
670
	idle = false
671
	walking = false
672
soul1 = Instance.new("Part",char)
673
soul1.Shape = "Ball"
674
soul1.Material = "Neon"
675
soul1.BrickColor = BrickColor.new("Really blue")
676
soul1.Size = Vector3.new(1,1,1)
677
soul1.Transparency = 0.5
678
soul1weld = Instance.new("Weld",soul1)
679
soul1weld.Part0 = torso
680
soul1weld.Part1 = soul1
681
soul1weld.C0 = CFrame.new(4,2,0)
682
soul2 = Instance.new("Part",char)
683
soul2.Shape = "Ball"
684
soul2.Material = "Neon"
685
soul2.Transparency = 0.5
686
soul2.BrickColor = BrickColor.new("Bright green")
687
soul2.Size = Vector3.new(1,1,1)
688
soul2weld = Instance.new("Weld",soul2)
689
soul2weld.Part0 = torso
690
soul2weld.Part1 = soul2
691
soul2weld.C0 = CFrame.new(5,2,0)
692
soul3 = Instance.new("Part",char)
693
soul3.Shape = "Ball"
694
soul3.Transparency = 0.5
695
soul3.Material = "Neon"
696
soul3.BrickColor = BrickColor.new("Toothpaste")
697
soul3.Size = Vector3.new(1,1,1)
698
soul3weld = Instance.new("Weld",soul3)
699
soul3weld.Part0 = torso
700
soul3weld.Part1 = soul3
701
soul3weld.C0 = CFrame.new(6,2,0)
702
soul4 = Instance.new("Part",char)
703
soul4.Shape = "Ball"
704
soul4.Transparency = 0.5
705
soul4.Material = "Neon"
706
soul4.BrickColor = BrickColor.new("New Yeller")
707
soul4.Size = Vector3.new(1,1,1)
708
soul4weld = Instance.new("Weld",soul4)
709
soul4weld.Part0 = torso
710
soul4weld.Part1 = soul4
711
soul4weld.C0 = CFrame.new(4,-1,0)
712
soul5 = Instance.new("Part",char)
713
soul5.Shape = "Ball"
714
soul5.Material = "Neon"
715
soul5.Transparency = 0.5
716
soul5.BrickColor = BrickColor.new("Magenta")
717
soul5.Size = Vector3.new(1,1,1)
718
soul5weld = Instance.new("Weld",soul5)
719
soul5weld.Part0 = torso
720
soul5weld.Part1 = soul5
721
soul5weld.C0 = CFrame.new(5,-1,0)
722
soul6 = Instance.new("Part",char)
723
soul6.Shape = "Ball"
724
soul6.Transparency = 0.5
725
soul6.Material = "Neon"
726
soul6.BrickColor = BrickColor.new("Deep orange")
727
soul6.Size = Vector3.new(1,1,1)
728
soul6weld = Instance.new("Weld",soul6)
729
soul6weld.Part0 = torso
730
soul6weld.Part1 = soul6
731
soul6weld.C0 = CFrame.new(6,-1,0)
732
soul1s = Instance.new("Part",char)
733
soul1s.Shape = "Ball"
734
soul1s.Material = "Neon"
735
soul1s.BrickColor = BrickColor.new("White")
736
soul1s.Size = Vector3.new(0.9,0.9,0.9)
737
soul1s.Transparency = 0.2
738
soul1sweld = Instance.new("Weld",soul1s)
739
soul1sweld.Part0 = torso
740
soul1sweld.Part1 = soul1s
741
soul1sweld.C0 = CFrame.new(4,2,0)
742
soul2s = Instance.new("Part",char)
743
soul2s.Shape = "Ball"
744
soul2s.Material = "Neon"
745
soul2s.Transparency = 0.2
746
soul2s.BrickColor = BrickColor.new("White")
747
soul2s.Size = Vector3.new(0.9,0.9,0.9)
748
soul2sweld = Instance.new("Weld",soul2s)
749
soul2sweld.Part0 = torso
750
soul2sweld.Part1 = soul2s
751
soul2sweld.C0 = CFrame.new(5,2,0)
752
soul3s = Instance.new("Part",char)
753
soul3s.Shape = "Ball"
754
soul3s.Material = "Neon"
755
soul3s.Transparency = 0.2
756
soul3s.BrickColor = BrickColor.new("White")
757
soul3s.Size = Vector3.new(0.9,0.9,0.9)
758
soul3sweld = Instance.new("Weld",soul3s)
759
soul3sweld.Part0 = torso
760
soul3sweld.Part1 = soul3s
761
soul3sweld.C0 = CFrame.new(6,2,0)
762
soul4s = Instance.new("Part",char)
763
soul4s.Shape = "Ball"
764
soul4s.Material = "Neon"
765
soul4s.Transparency = 0.2
766
soul4s.BrickColor = BrickColor.new("White")
767
soul4s.Material = "Neon"
768
soul4s.Size = Vector3.new(0.9,0.9,0.9)
769
soul4sweld = Instance.new("Weld",soul4s)
770
soul4sweld.Part0 = torso
771
soul4sweld.Part1 = soul4s
772
soul4sweld.C0 = CFrame.new(4,-1,0)
773
soul5s = Instance.new("Part",char)
774
soul5s.Shape = "Ball"
775
soul5s.Transparency = 0.2
776
soul5s.BrickColor = BrickColor.new("White")
777
soul5s.Size = Vector3.new(0.9,0.9,0.9)
778
soul5s.Material = "Neon"
779
soul5sweld = Instance.new("Weld",soul5s)
780
soul5sweld.Part0 = torso
781
soul5sweld.Part1 = soul5s
782
soul5sweld.C0 = CFrame.new(5,-1,0)
783
soul6s = Instance.new("Part",char)
784
soul6s.Shape = "Ball"
785
soul6s.Material = "Neon"
786
soul6s.Transparency = 0.2
787
soul6s.BrickColor = BrickColor.new("White")
788
soul6s.Size = Vector3.new(0.9,0.9,0.9)
789
soul6sweld = Instance.new("Weld",soul6s)
790
soul6sweld.Part0 = torso
791
soul6sweld.Part1 = soul6s
792
soul6sweld.C0 = CFrame.new(6,-1,0)
793-
chatfunc("These Are The Determinations")
793+
794
chatfunc("Hello old friend")
795-
chatfunc("I Never Got To Extract")
795+
796
chatfunc("I will never forget you")
797
wait(2)
798-
chatfunc("In The Past Genocides")
798+
chatfunc("Becouse i need to kill you")
799
wait(2)
800
801
chatfunc("im sorry for this")
802
Weldb.C1 = CFrame.new(0, -2, 0) * CFrame.fromEulerAnglesXYZ(-3, 0, 0)
803
for i = 1,100 do
804
	wait()
805
    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)
806
                   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)
807
                    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)
808
                    lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-4)), 0.01)
809-
chatfunc("Lets See How Long You Survive")
809+
810
 
811
end
812
chatfunc("Im under control... sorry agian...")
813
814
for i = 1,10 do
815
	wait(0.04)
816
 soul1weld.C0 = soul1weld.C0 - Vector3.new(0.45,0.14,0)
817
soul2weld.C0 = soul2weld.C0 - Vector3.new(0.5,0.14,0)
818
soul3weld.C0 = soul3weld.C0 - Vector3.new(0.6,0.14,0)
819
soul4weld.C0 = soul4weld.C0 - Vector3.new(0.45,-0.1,0)
820
soul5weld.C0 = soul5weld.C0 - Vector3.new(0.5,-0.1,0)
821
soul6weld.C0 = soul6weld.C0 - Vector3.new(0.6,-0.1,0)
822
 soul1sweld.C0 = soul1sweld.C0 - Vector3.new(0.45,0.14,0)
823
soul2sweld.C0 = soul2sweld.C0 - Vector3.new(0.5,0.14,0)
824
soul3sweld.C0 = soul3sweld.C0 - Vector3.new(0.6,0.14,0)
825
soul4sweld.C0 = soul4sweld.C0 - Vector3.new(0.45,-0.1,0)
826
soul5sweld.C0 = soul5sweld.C0 - Vector3.new(0.5,-0.1,0)
827
soul6sweld.C0 = soul6sweld.C0 - Vector3.new(0.6,-0.1,0)
828
end
829
830
831
soul1d = Instance.new("Part",char)
832
soul1d.Shape = "Ball"
833
soul1d.Material = "Neon"
834
soul1d.BrickColor = BrickColor.new("Really blue")
835
soul1d.Size = Vector3.new(1,1,1)
836
soul1d.Transparency = 0.5
837
soul1dweld = Instance.new("Weld",soul1d)
838
soul1dweld.Part0 = torso
839
soul1dweld.Part1 = soul1d
840
soul1dweld.C0 = CFrame.new(0,0,0)
841
soul2d = Instance.new("Part",char)
842
soul2d.Shape = "Ball"
843
soul2d.Material = "Neon"
844
soul2d.Transparency = 0.5
845
soul2d.BrickColor = BrickColor.new("Bright green")
846
soul2d.Size = Vector3.new(1,1,1)
847
soul2dweld = Instance.new("Weld",soul2d)
848
soul2dweld.Part0 = torso
849
soul2dweld.Part1 = soul2d
850
soul2dweld.C0 = CFrame.new(0,0,0)
851
soul3d = Instance.new("Part",char)
852
soul3d.Shape = "Ball"
853
soul3d.Transparency = 0.5
854
soul3d.Material = "Neon"
855
soul3d.BrickColor = BrickColor.new("Toothpaste")
856
soul3d.Size = Vector3.new(1,1,1)
857
soul3dweld = Instance.new("Weld",soul3d)
858
soul3dweld.Part0 = torso
859
soul3dweld.Part1 = soul3d
860
soul3dweld.C0 = CFrame.new(0,0,0)
861
soul4d = Instance.new("Part",char)
862
soul4d.Shape = "Ball"
863
soul4d.Transparency = 0.5
864
soul4d.Material = "Neon"
865
soul4d.BrickColor = BrickColor.new("New Yeller")
866
soul4d.Size = Vector3.new(1,1,1)
867
soul4dweld = Instance.new("Weld",soul4d)
868
soul4dweld.Part0 = torso
869
soul4dweld.Part1 = soul4d
870
soul4dweld.C0 = CFrame.new(0,0,0)
871
soul5d = Instance.new("Part",char)
872
soul5d.Shape = "Ball"
873
soul5d.Material = "Neon"
874
soul5d.Transparency = 0.5
875
soul5d.BrickColor = BrickColor.new("Magenta")
876
soul5d.Size = Vector3.new(1,1,1)
877
soul5dweld = Instance.new("Weld",soul5d)
878
soul5dweld.Part0 = torso
879
soul5dweld.Part1 = soul5d
880
soul5dweld.C0 = CFrame.new(0,0,0)
881
soul6d = Instance.new("Part",char)
882
soul6d.Shape = "Ball"
883
soul6d.Transparency = 0.5
884
soul6d.Material = "Neon"
885
soul6d.BrickColor = BrickColor.new("Deep orange")
886
soul6d.Size = Vector3.new(1,1,1)
887
soul6dweld = Instance.new("Weld",soul6d)
888
soul6dweld.Part0 = torso
889
soul6dweld.Part1 = soul6d
890
soul6dweld.C0 = CFrame.new(0,0,0)
891
soul1sd = Instance.new("Part",char)
892
soul1sd.Shape = "Ball"
893
soul1sd.Material = "Neon"
894
soul1sd.BrickColor = BrickColor.new("White")
895
soul1sd.Size = Vector3.new(0.9,0.9,0.9)
896
soul1sd.Transparency = 0.2
897
soul1sdweld = Instance.new("Weld",soul1sd)
898
soul1sdweld.Part0 = torso
899
soul1sdweld.Part1 = soul1sd
900
soul1sdweld.C0 = CFrame.new(0,0,0)
901
soul2sd = Instance.new("Part",char)
902
soul2sd.Shape = "Ball"
903
soul2sd.Material = "Neon"
904
soul2sd.Transparency = 0.2
905
soul2sd.BrickColor = BrickColor.new("White")
906
soul2sd.Size = Vector3.new(0.9,0.9,0.9)
907
soul2sdweld = Instance.new("Weld",soul2sd)
908
soul2sdweld.Part0 = torso
909
soul2sdweld.Part1 = soul2sd
910
soul2sdweld.C0 = CFrame.new(0,0,0)
911
soul3sd = Instance.new("Part",char)
912
soul3sd.Shape = "Ball"
913
soul3sd.Material = "Neon"
914
soul3sd.Transparency = 0.2
915
soul3sd.BrickColor = BrickColor.new("White")
916
soul3sd.Size = Vector3.new(0.9,0.9,0.9)
917
soul3sdweld = Instance.new("Weld",soul3sd)
918
soul3sdweld.Part0 = torso
919
soul3sdweld.Part1 = soul3sd
920
soul3sdweld.C0 = CFrame.new(0,0,0)
921
soul4sd = Instance.new("Part",char)
922
soul4sd.Shape = "Ball"
923
soul4sd.Material = "Neon"
924
soul4sd.Transparency = 0.2
925
soul4sd.BrickColor = BrickColor.new("White")
926
soul4sd.Material = "Neon"
927
soul4sd.Size = Vector3.new(0.9,0.9,0.9)
928
soul4dsweld = Instance.new("Weld",soul4sd)
929
soul4dsweld.Part0 = torso
930
soul4dsweld.Part1 = soul4sd
931
soul4dsweld.C0 = CFrame.new(0,0,0)
932
soul5sd = Instance.new("Part",char)
933
soul5sd.Shape = "Ball"
934
soul5sd.Transparency = 0.2
935
soul5sd.BrickColor = BrickColor.new("White")
936
soul5sd.Size = Vector3.new(0.9,0.9,0.9)
937
soul5sd.Material = "Neon"
938
soul5sdweld = Instance.new("Weld",soul5sd)
939
soul5sdweld.Part0 = torso
940
soul5sdweld.Part1 = soul5sd
941
soul5sdweld.C0 = CFrame.new(0,0,0)
942
soul6sd = Instance.new("Part",char)
943
soul6sd.Shape = "Ball"
944
soul6sd.Material = "Neon"
945
soul6sd.Transparency = 0.2
946
soul6sd.BrickColor = BrickColor.new("White")
947
soul6sd.Size = Vector3.new(0.9,0.9,0.9)
948
soul6sdweld = Instance.new("Weld",soul6sd)
949
soul6sdweld.Part0 = torso
950
soul6sdweld.Part1 = soul6sd
951
soul6sdweld.C0 = CFrame.new(0,0,0)
952
953
954
soul1mesh = Instance.new("SpecialMesh",soul1d)
955
soul2mesh = Instance.new("SpecialMesh",soul2d)
956
soul3mesh = Instance.new("SpecialMesh",soul3d)
957
soul4mesh = Instance.new("SpecialMesh",soul4d)
958
soul5mesh = Instance.new("SpecialMesh",soul5d)
959
soul6mesh = Instance.new("SpecialMesh",soul6d)
960
soul1smesh = Instance.new("SpecialMesh",soul1sd)
961
soul2smesh = Instance.new("SpecialMesh",soul2sd)
962
soul3smesh = Instance.new("SpecialMesh",soul3sd)
963
soul4smesh = Instance.new("SpecialMesh",soul4sd)
964
soul5smesh = Instance.new("SpecialMesh",soul5sd)
965
soul6smesh = Instance.new("SpecialMesh",soul6sd)
966
soul1mesh.MeshType = "Sphere"
967
soul2mesh.MeshType = "Sphere"
968
soul3mesh.MeshType = "Sphere"
969
soul4mesh.MeshType = "Sphere"
970
soul5mesh.MeshType = "Sphere"
971
soul6mesh.MeshType = "Sphere"
972
soul1smesh.MeshType = "Sphere"
973
soul2smesh.MeshType = "Sphere"
974
soul3smesh.MeshType = "Sphere"
975
soul4smesh.MeshType = "Sphere"
976
soul5smesh.MeshType = "Sphere"
977
soul6smesh.MeshType = "Sphere"
978
KnifeMesh.TextureId = ""
979
canchange = true
980
for i = 1,20 do
981
	soul1mesh.Scale = soul1mesh.Scale + Vector3.new(0.5,0.5,0.5)
982
	soul1smesh.Scale = soul1smesh.Scale + Vector3.new(0.5,0.5,0.5)
983
	soul1d.Transparency = soul1d.Transparency + 0.025	
984
	soul1sd.Transparency = soul1sd.Transparency + 0.05	
985
	blackhand.Transparency = blackhand.Transparency - 0.04
986
	wait()
987
end
988
for i = 1,20 do
989
	soul2mesh.Scale = soul2mesh.Scale + Vector3.new(0.5,0.5,0.5)
990
	soul2smesh.Scale = soul2smesh.Scale + Vector3.new(0.5,0.5,0.5)	
991
	soul2d.Transparency = soul2d.Transparency + 0.025	
992
	soul2sd.Transparency = soul2sd.Transparency + 0.05	
993
	wait()
994
end
995
for i = 1,20 do
996
	soul3mesh.Scale = soul3mesh.Scale + Vector3.new(0.5,0.5,0.5)
997
	soul3smesh.Scale = soul3smesh.Scale + Vector3.new(0.5,0.5,0.5)	
998
	soul3d.Transparency = soul3d.Transparency + 0.025
999
	soul3sd.Transparency = soul3sd.Transparency + 0.05	
1000
	wait()
1001
end
1002
for i = 1,20 do
1003
	soul4mesh.Scale = soul4mesh.Scale + Vector3.new(0.5,0.5,0.5)
1004
	soul4smesh.Scale = soul4smesh.Scale + Vector3.new(0.5,0.5,0.5)	
1005
	soul4d.Transparency = soul4d.Transparency + 0.025
1006
	soul4sd.Transparency = soul4sd.Transparency + 0.05	
1007
	wait()
1008
end
1009
for i = 1,20 do
1010
	soul5mesh.Scale = soul5mesh.Scale + Vector3.new(0.5,0.5,0.5)
1011
	soul5smesh.Scale = soul5smesh.Scale + Vector3.new(0.5,0.5,0.5)	
1012
	soul5d.Transparency = soul5d.Transparency + 0.025
1013
	soul5sd.Transparency = soul5sd.Transparency + 0.05	
1014
	wait()
1015
end
1016
for i = 1,20 do
1017
	soul6mesh.Scale = soul6mesh.Scale + Vector3.new(0.5,0.5,0.5)
1018
	soul6smesh.Scale = soul6smesh.Scale + Vector3.new(0.5,0.5,0.5)
1019
	soul6d.Transparency = soul6d.Transparency + 0.025	
1020
	soul6sd.Transparency = soul6sd.Transparency + 0.05	
1021
	soul1.Transparency = soul1.Transparency + 0.08
1022
	soul2.Transparency = soul2.Transparency + 0.08
1023
	soul3.Transparency = soul3.Transparency + 0.08
1024
	soul4.Transparency = soul4.Transparency + 0.08
1025
	soul5.Transparency = soul5.Transparency + 0.08
1026
	soul6.Transparency = soul6.Transparency + 0.1
1027
		soul1s.Transparency = soul1.Transparency + 0.1
1028
	soul2s.Transparency = soul2s.Transparency + 0.1
1029
	soul3s.Transparency = soul3s.Transparency + 0.1
1030
	soul4s.Transparency = soul4s.Transparency + 0.1
1031
	soul5s.Transparency = soul5s.Transparency + 0.1
1032
	soul6s.Transparency = soul6s.Transparency + 0.1	
1033
	wait()
1034
end
1035
1036
1037
wait(1)
1038
1039
1040
1041
lala = false
1042
wait(1)
1043
  soul1:Destroy()
1044
soul2:Destroy()
1045
soul3:Destroy()
1046
soul4:Destroy()
1047
soul5:Destroy()
1048
soul6:Destroy()
1049
 soul1s:Destroy()
1050
soul2s:Destroy()
1051
soul3s:Destroy()
1052
soul4s:Destroy()
1053
soul5s:Destroy()
1054
soul6s:Destroy()
1055
 soul1d:Destroy()
1056
soul2d:Destroy()
1057
soul3d:Destroy()
1058
soul4d:Destroy()
1059
soul5d:Destroy()
1060
soul6d:Destroy()
1061
 soul1sd:Destroy()
1062
soul2sd:Destroy()
1063
soul3sd:Destroy()
1064
soul4sd:Destroy()
1065
soul5sd:Destroy()
1066
soul6sd:Destroy()
1067
idle = true
1068
chatfunc("Come =)")
1069
hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
1070
lovecounter = true
1071
walking = true
1072
  Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
1073
KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
1074
mouse.KeyDown:connect(function(key)
1075
	if key == "z" then
1076
		if canattack == true then
1077
			canattack = false
1078
	
1079
		idle = false
1080
		walking = false
1081
		wait(1)
1082
1083
		kill = Instance.new("Part",char)
1084
		kill.Position = torso.Position - Vector3.new(0,2,0)
1085
					kill.Size = Vector3.new(200,0.1,200)
1086
					kill.Name = "Immune"
1087
					kill.CanCollide = false
1088-
		kill.BrickColor = BrickColor.new("Really red")
1088+
1089
		kill.Anchored = true
1090
		kill.Material = "Neon"
1091
		kill.BrickColor = BrickColor.new("Really purple")
1092
		killmesh = Instance.new("SpecialMesh",kill)
1093
		killmesh.MeshType = "FileMesh"
1094
		killmesh.MeshId = "rbxassetid://465435723"
1095
		killmesh.Scale = Vector3.new(5.2,0.01,5.2)
1096
		Weldb.C1 = CFrame.new(0, -1, -1) * CFrame.fromEulerAnglesXYZ(-2, 0, 0)
1097
		  for i = 1, 20 do
1098
			wait()
1099
            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)
1100
            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)
1101
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
1102
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(6), math.rad(0), 0), 0.2)
1103
            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)
1104
            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)
1105
           
1106
        end
1107
		  for i = 1, 20 do
1108
			wait()
1109
            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)
1110
            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)
1111
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
1112
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles( math.rad(-50), math.rad(0), 0), 0.2)
1113
            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)
1114
            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)
1115
           
1116
		        end
1117
		hitsound:Play()
1118
		part = Instance.new("Part",char)
1119
		part.Size = Vector3.new(0.1,0.1,0.1)
1120
		part.Position = handle.Position
1121
		part1 = Instance.new("Part",char)
1122
		part1.Size = Vector3.new(0.1,0.1,0.1)
1123
		part1.Position = handle.Position
1124
		part2 = Instance.new("Part",char)
1125
		part2.Size = Vector3.new(0.1,0.1,0.1)
1126
		part2.Position = handle.Position
1127
		part3 = Instance.new("Part",char)
1128
		part3.Size = Vector3.new(0.1,0.1,0.1)
1129
		part3.Position = handle.Position
1130
		part4 = Instance.new("Part",char)
1131
		part4.Size = Vector3.new(0.1,0.1,0.1)
1132
		part4.Position = handle.Position
1133
		part5 = Instance.new("Part",char)
1134
		part5.Size = Vector3.new(0.1,0.1,0.1)
1135
		part5.Position = handle.Position
1136
		part6 = Instance.new("Part",char)
1137
		part6.Size = Vector3.new(0.1,0.1,0.1)
1138
		part6.Position = handle.Position
1139
		part7 = Instance.new("Part",char)
1140
		part7.Size = Vector3.new(0.1,0.1,0.1)
1141
		part7.Position = handle.Position
1142
		part8 = Instance.new("Part",char)
1143
		part8.Size = Vector3.new(0.1,0.1,0.1)
1144
		part8.Position = handle.Position
1145
		part9 = Instance.new("Part",char)
1146
		part9.Size = Vector3.new(0.1,0.1,0.1)
1147
		part9.Position = handle.Position
1148
		part10 = Instance.new("Part",char)
1149
		part10.Size = Vector3.new(0.1,0.1,0.1)
1150
		part10.Position = handle.Position
1151
		KnifeMesh.TextureId = ""
1152
		for i = 1,100 do
1153
			wait()
1154-
		chatfunc("Welcome To My Special Hell")
1154+
1155
		handle.Color = Color3.new(colorred,0,0)
1156
		end
1157
		chatfunc("Welcome To My World")
1158
		for i = 1,120 do
1159
			wait()
1160
			kill.Transparency = kill.Transparency - 0.005
1161
		end
1162
			
1163
		function onTouched(hit)
1164
			if hit.Parent:FindFirstChild("Immune") == nil then
1165
				if hit.Parent:FindFirstChild("Humanoid") ~= nil then
1166
				hit.Parent:FindFirstChild("Head").Anchored = true
1167
				hitsound:Play()
1168
1169
			
1170
1171
hit.Parent:BreakJoints()
1172
				hit.Parent:FindFirstChild("Humanoid").Health = -1
1173
				end
1174
				
1175
			
1176
			
1177
			
1178
			
1179
			end
1180
		end
1181
		kill.Touched:connect(onTouched)
1182
		
1183
			  
1184
		kill1 = Instance.new("Part",char)
1185
		kill1.Position = torso.Position - Vector3.new(0,2,0)
1186
					kill1.Size = Vector3.new(200,300,200)
1187
					kill1.Name = "Immune"
1188
					kill1.CanCollide = false
1189-
		kill1.BrickColor = BrickColor.new("Really red")
1189+
1190
		kill1.Anchored = false
1191
		kill1.Material = "Neon"
1192
		kill1.BrickColor = BrickColor.new("Really purple")
1193
		
1194
		function onTouched(hit)
1195
			if hit.Parent:FindFirstChild("Immune") == nil then
1196
				if hit.Parent:FindFirstChild("Humanoid") ~= nil then
1197
			hit.Parent:FindFirstChild("Head").Anchored = true
1198
				hitsound:Play()
1199
		
1200
			
1201
1202
hit.Parent:FindFirstChild("Humanoid").Health = -1
1203
hit.Parent:BreakJoints()
1204
				end
1205
			
1206
			
1207
			
1208
			end
1209
			
1210
		end
1211
		kill1.Touched:connect(onTouched)
1212
		for i = 1,50 do
1213
			wait()
1214
	killmesh.Scale = killmesh.Scale + Vector3.new(0,0.2,0)
1215
		end
1216
		wait(2)
1217
		kill.Anchored = false
1218
			canattack = true
1219
		idle = true
1220
		walking = true
1221
		if char:FindFirstChild("TalkingBillBoard")~= nil then
1222
char:FindFirstChild("TalkingBillBoard"):destroy()
1223
end
1224
		KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
1225
		colorred = 0
1226
		 Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
1227
		end
1228
	end
1229
end)
1230
slashsound = Instance.new("Sound",torso)
1231
slashsound.SoundId = "http://www.roblox.com/asset/?id=357417055"
1232
slashsound.Volume = 10
1233
hitsound = Instance.new("Sound",torso)
1234
hitsound.SoundId = "http://www.roblox.com/asset/?id=623904185"
1235
hitsound.Volume = 10
1236
mouse.KeyDown:connect(function(key)
1237
	if key == "q" then
1238
		if canattack == true then
1239
		canattack = false
1240
		idle = false
1241
		walking = false
1242
		wait(0.5)
1243
		slash = Instance.new("Part",char)
1244
		slash.CanCollide = false
1245
		slash.Transparency = 1
1246
		slash.Size = Vector3.new(5,5,1)
1247
		slashweld = Instance.new("Weld",slash)
1248
		slashweld.Part0 = torso
1249
		slashweld.Part1 = slash
1250
		slashweld.C0 = CFrame.new(0,0,-2)
1251
		slashdecal = Instance.new("Decal",slash)
1252
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1253
		
1254
		slashdecal1 = Instance.new("Decal",slash)
1255
		slashdecal1.Face = "Back"
1256
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1257
		slashsound:Play()
1258
			function onTouched(hit)
1259
			if hit.Parent:FindFirstChild("Immune") == nil then
1260
				if hit.Parent:FindFirstChild("Humanoid") ~= nil then
1261
		hit.Parent:FindFirstChild("Head").Anchored = true
1262
					slash.TouchInterest:Destroy()
1263
					wait(1)
1264
					hitsound:Play()
1265
			
1266
				gothit = Instance.new("Part",hit)
1267
		gothit.CanCollide = false
1268
		gothit.Transparency = 1
1269
		gothit.Size = Vector3.new(10,10,1)
1270
		gothitweld1 = Instance.new("Weld",gothit)
1271
		gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
1272
	gothitweld1.Part1 = gothit
1273
	
1274
		gothitweld1.C0 = CFrame.new(0,4,0)
1275
		gothitdecal = Instance.new("Decal",gothit)
1276
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1277
					love = love + 1
1278
					gothit = Instance.new("Part",hit)
1279
		gothit.CanCollide = false
1280
		gothit.Transparency = 1
1281
		gothit.Size = Vector3.new(10,10,1)
1282
		gothitweld = Instance.new("Weld",gothit)
1283
		gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
1284
	gothitweld.Part1 = gothit
1285
		gothitweld.C0 = CFrame.new(0,5,0)
1286
1287
		gothitdecal = Instance.new("Decal",gothit)
1288
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1289
					gothitdecal.Face = "Back"
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
					gothitweld.C0 = CFrame.new(0,3.5,0)
1315
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1316
					wait(0.2)
1317
					gothitweld.C0 = CFrame.new(0,4,0)
1318
					gothitweld1.C0 = CFrame.new(0,4,0)
1319
					wait(0.2)
1320
					gothitweld.C0 = CFrame.new(0,3.5,0)
1321
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1322
					wait(0.2)
1323
					gothitweld.C0 = CFrame.new(0,4,0)
1324
					gothitweld1.C0 = CFrame.new(0,4,0)
1325
					wait(0.2)
1326
					
1327
hit.Parent:FindFirstChild("Humanoid").Health = -1
1328
hit.Parent:BreakJoints()
1329
				else
1330
					if hit.Parent:IsA("Model") then
1331
					wait(1)
1332
				
1333
					hit.Parent:BreakJoints()
1334
					
1335
					
1336
					
1337
					
1338
					
1339
				end	
1340
					if hit:IsA("Part") and hit.Size.X < 500 then
1341
					
1342
					hit.BrickColor = BrickColor.new("Really black")
1343
					hitsound:Play()
1344
					for i = 1,20 do
1345
						wait()
1346
					hit.Transparency = hit.Transparency + 0.05
1347
					end
1348
					
1349
					
1350
					
1351
					
1352
				end	
1353
				end
1354
			
1355
			end
1356
			
1357
		end
1358
		slash.Touched:connect(onTouched)
1359
		
1360
		 for i = 1, 5 do
1361
			wait()
1362
            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)
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(0), math.rad(0), 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=941495205"
1371
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1372
		 for i = 1, 5 do
1373
			wait()
1374
            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)
1375
            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)
1376
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1377
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1378
            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)
1379
            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)
1380
           
1381
        end
1382
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1383
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1384
		
1385
		wait(0.1)
1386
		slash:Destroy()
1387
		canattack = true
1388
		idle = true
1389
		walking = true
1390
		end
1391
	end
1392
end)
1393
1394
1395
1396
1397
1398
1399
1400
1401
mouse.KeyDown:connect(function(key)
1402
	if key == "x" then
1403
hed.Transparency = 1
1404
torso.Transparency = 1
1405
larm.Transparency = 1
1406
hed.face.Texture = ""
1407
MegaloStrikesBack.Volume = 0.1
1408
	lovecounter = false
1409
rarm.Transparency = 1	
1410
lleg.Transparency = 1
1411
rleg.Transparency = 1
1412
handle.Transparency = 1
1413
Handle.Transparency = 1
1414
blackhand.Transparency = 1
1415
hum.WalkSpeed = 60
1416
text.Text = ""
1417
if char:FindFirstChild("TalkingBillBoard")~= nil then
1418
char:FindFirstChild("TalkingBillBoard"):destroy()
1419
end
1420
	end
1421
end)
1422
mouse.KeyUp:connect(function(key)
1423
	if key == "x" then
1424
		hed.Transparency = 0
1425
		lovecounter = true
1426
torso.Transparency = 0
1427
larm.Transparency = 0
1428
rarm.Transparency = 0	
1429
MegaloStrikesBack.Volume = 50
1430
lleg.Transparency = 0
1431
rleg.Transparency = 0
1432
handle.Transparency = 0
1433
Handle.Transparency = 0
1434
blackhand.Transparency = 0
1435
hum.WalkSpeed = 16
1436
hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
1437
	end
1438
end)
1439
mouse.KeyDown:connect(function(Key)
1440
if Key:byte() == 48 then
1441
hum.WalkSpeed = 40
1442
workspace.Camera.FieldOfView = 80
1443
sprint = true
1444
end
1445
end)
1446
1447
mouse.KeyUp:connect(function(Key)
1448
if Key:byte() == 48 then
1449
hum.WalkSpeed = 16
1450
workspace.Camera.FieldOfView = 70
1451
sprint = false
1452
end
1453
end)
1454
1455
1456
1457
mouse.KeyDown:connect(function(key)
1458
	if key == "e" then
1459
		if canattack == true then
1460
		canattack = false
1461
		idle = false
1462
		walking = false
1463
		wait(1)
1464
	
1465
		
1466
		slashsound:Play()
1467
	
1468
		 for i = 1, 5 do
1469
			wait()
1470
            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)
1471
            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)
1472
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1473
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1474
            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)
1475
            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)
1476
           
1477
		        end
1478
		
1479
		 for i = 1, 5 do
1480
			wait()
1481
            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)
1482
            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)
1483
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1484
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1485
            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)
1486
            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)
1487
           
1488
        end
1489
			slash4 = Instance.new("Part",char)
1490-
		slash4.BrickColor = BrickColor.new("Really red")
1490+
1491
		slash4.Transparency = 0
1492
			slash4.Position = Vector3.new(999,999,999)
1493
		slash4.BrickColor = BrickColor.new("Really purple")
1494
		slash4.Size = Vector3.new(0.3,9,0.3)
1495
		slashweld4 = Instance.new("Weld",slash4)
1496
		slashweld4.Part0 = torso
1497
		slashweld4.Part1 = slash4
1498
		slashweld4.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-80))
1499
		slashsound:Play()
1500
		 for i = 1, 5 do
1501
			wait()
1502
            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)
1503
            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)
1504
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1505
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-5), math.rad(15), 0), 0.7)
1506
            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)
1507
            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)
1508
           
1509
        end
1510
		slash3 = Instance.new("Part",char)
1511-
		slash3.BrickColor = BrickColor.new("Really red")
1511+
1512
		slash3.Transparency = 0
1513
			slash3.Position = Vector3.new(999,999,999)
1514
		slash3.BrickColor = BrickColor.new("Really purple")
1515
		slash3.Size = Vector3.new(0.3,9,0.3)
1516
		slashweld3 = Instance.new("Weld",slash3)
1517
		slashweld3.Part0 = torso
1518
		slashweld3.Part1 = slash3
1519
		slashweld3.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(40))
1520
		slashsound:Play()
1521
		 for i = 1, 5 do
1522
			wait()
1523
            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)
1524
            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)
1525
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1526
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
1527
            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)
1528
            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)
1529
           
1530
        end
1531
		slash2 = Instance.new("Part",char)
1532-
		slash2.BrickColor = BrickColor.new("Really red")
1532+
1533
		slash2.Transparency = 0
1534
			slash2.Position = Vector3.new(999,999,999)
1535
		slash2.BrickColor = BrickColor.new("Really purple")
1536
		slash2.Size = Vector3.new(0.3,9,0.3)
1537
		slashweld2 = Instance.new("Weld",slash2)
1538
		slashweld2.Part0 = torso
1539
		slashweld2.Part1 = slash2
1540
		slashweld2.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(150))
1541
		  for i = 1, 5 do
1542
			wait()
1543
            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)
1544
            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)
1545
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1546
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1547
            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)
1548
            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)
1549
           
1550
		        end
1551
		slashsound:Play()
1552
		 for i = 1, 5 do
1553
			wait()
1554
            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)
1555
            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)
1556
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1557
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
1558
            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)
1559
            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)
1560
           
1561
        end
1562
		slash1 = Instance.new("Part",char)
1563-
		slash1.BrickColor = BrickColor.new("Really red")
1563+
1564
		slash1.Transparency = 0
1565
			slash1.Position = Vector3.new(999,999,999)
1566
		slash1.BrickColor = BrickColor.new("Really purple")
1567
		slash1.Size = Vector3.new(0.3,9,0.3)
1568
		slashweld1 = Instance.new("Weld",slash1)
1569
		slashweld1.Part0 = torso
1570
		slashweld1.Part1 = slash1
1571
		slashweld1.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(78))
1572
		  for i = 1, 5 do
1573
			wait()
1574
            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)
1575
            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)
1576
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1577
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
1578
            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)
1579
            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)
1580
           
1581
		        end
1582
		slash5 = Instance.new("Part",char)
1583-
		slash5.BrickColor = BrickColor.new("Really red")
1583+
1584
		slash5.Transparency = 1
1585
		slash5.Position = Vector3.new(999,999,999)
1586
		slash5.BrickColor = BrickColor.new("Really purple")
1587
		slash5.Size = Vector3.new(4,3,4)
1588
		slashweld5 = Instance.new("Weld",slash5)
1589
		slashweld5.Part0 = torso
1590
		slashweld5.Part1 = slash5
1591
		slashweld5.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(130))
1592
		function onTouched(hit)
1593
			if hit.Parent:FindFirstChild("Immune") == nil then
1594
				if hit.Parent:FindFirstChild("Humanoid") ~= nil  then
1595
		hit.Parent:FindFirstChild("Head").Anchored = true
1596
					
1597
					wait(1)
1598
					hitsound:Play()
1599
			
1600
				gothit = Instance.new("Part",hit)
1601
		gothit.CanCollide = false
1602
		gothit.Transparency = 1
1603
		gothit.Size = Vector3.new(10,10,1)
1604
		gothitweld1 = Instance.new("Weld",gothit)
1605
		gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
1606
	gothitweld1.Part1 = gothit
1607
	
1608
		gothitweld1.C0 = CFrame.new(0,4,0)
1609
		gothitdecal = Instance.new("Decal",gothit)
1610
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1611
					love = love + 1
1612
					gothit = Instance.new("Part",hit)
1613
		gothit.CanCollide = false
1614
		gothit.Transparency = 1
1615
		gothit.Size = Vector3.new(10,10,1)
1616
		gothitweld = Instance.new("Weld",gothit)
1617
		gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
1618
	gothitweld.Part1 = gothit
1619
		gothitweld.C0 = CFrame.new(0,5,0)
1620
1621
		gothitdecal = Instance.new("Decal",gothit)
1622
		gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
1623
					gothitdecal.Face = "Back"
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
					gothitweld.C0 = CFrame.new(0,3.5,0)
1649
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1650
					wait(0.2)
1651
					gothitweld.C0 = CFrame.new(0,4,0)
1652
					gothitweld1.C0 = CFrame.new(0,4,0)
1653
					wait(0.2)
1654
					gothitweld.C0 = CFrame.new(0,3.5,0)
1655
					gothitweld1.C0 = CFrame.new(0,3.5,0)
1656
					wait(0.2)
1657
					gothitweld.C0 = CFrame.new(0,4,0)
1658
					gothitweld1.C0 = CFrame.new(0,4,0)
1659
					wait(0.2)
1660
					
1661
hit.Parent:FindFirstChild("Humanoid").Health = -1
1662
hit.Parent:BreakJoints()
1663
				else
1664
					if hit.Parent:IsA("Model") then
1665
					wait(1)
1666
				
1667
					hit.Parent:BreakJoints()
1668
					
1669
					
1670
					
1671
					
1672
					
1673
				end	
1674
					if hit:IsA("Part") and hit.Size.X < 500 then
1675
					
1676
					hit.BrickColor = BrickColor.new("Really black")
1677
					hitsound:Play()
1678
					for i = 1,20 do
1679
						wait()
1680
					hit.Transparency = hit.Transparency + 0.05
1681
					end
1682
					
1683
					
1684
					
1685
					
1686
				end	
1687
				end
1688
			
1689
			end
1690
			
1691
		end
1692
		slash5.Touched:connect(onTouched)
1693
		for i = 1,70 do
1694
			wait()
1695
			
1696
			slashweld1.C0 = slashweld1.C0 - Vector3.new(0,0,4)
1697
			slashweld2.C0 = slashweld2.C0 - Vector3.new(0,0,4)
1698
			slashweld3.C0 = slashweld3.C0 - Vector3.new(0,0,4)
1699
			slashweld4.C0 = slashweld4.C0 - Vector3.new(0,0,4)
1700
			slashweld5.C0 = slashweld5.C0 - Vector3.new(0,0,4)
1701
			
1702
			
1703
			
1704
		end
1705
		slash1:Destroy()
1706
		slash2:Destroy()
1707
		slash3:Destroy()
1708
		slash4:Destroy()
1709
		slash5:Destroy()
1710
		canattack = true
1711
		idle = true
1712
		walking = true
1713
		end
1714
	end
1715
end)
1716
1717
1718
mouse.KeyDown:connect(function(key)
1719
	if key == "r" then
1720
		if canattack == true then
1721
			
1722
		
1723
		
1724
what = Instance.new("Part",char)
1725
what.Size = Vector3.new(60,60,60)
1726
what.Transparency = 1
1727
what.Position = torso.Position
1728
what.CanCollide = false
1729
function onTouched(hit)
1730
			if hit.Parent:FindFirstChild("Immune") == nil then
1731
				if hit.Parent:FindFirstChild("Torso") ~= nil  then
1732
					chatfunc('I Got You')
1733
				
1734
					t = hit.Parent:FindFirstChild("Torso")
1735
					h = hit.Parent:FindFirstChild("Head")
1736
					la = hit.Parent:FindFirstChild("Left Arm")
1737
					ra = hit.Parent:FindFirstChild("Right Arm")
1738
					ll = hit.Parent:FindFirstChild("Left Leg")
1739
					rl = hit.Parent:FindFirstChild("Right Leg")
1740
					
1741
					what:Destroy()
1742
					
1743
					torso.CFrame = t.CFrame * CFrame.Angles(0,math.rad(180),0) + t.CFrame.lookVector * 3 
1744
					h.Anchored = true 
1745
					
1746
					
1747
					
1748
					hed.Anchored = true
1749
					wait(2)
1750
					chatfunc('=)')
1751
					slash = Instance.new("Part",char)
1752
		slash.CanCollide = false
1753
		slash.Transparency = 1
1754
		slash.Size = Vector3.new(5,5,1)
1755
		slashweld = Instance.new("Weld",slash)
1756
		slashweld.Part0 = torso
1757
		slashweld.Part1 = slash
1758
		slashweld.C0 = CFrame.new(0,0,-2)
1759
		slashdecal = Instance.new("Decal",slash)
1760
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1761
		
1762
		slashdecal1 = Instance.new("Decal",slash)
1763
		slashdecal1.Face = "Back"
1764
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1765
		slashsound:Play()
1766
					 for i = 1, 5 do
1767
			wait()
1768
            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)
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(0), math.rad(0), 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=941495205"
1777
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1778
		 for i = 1, 5 do
1779
			wait()
1780
            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)
1781
            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)
1782
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1783
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1784
            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)
1785
            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)
1786
           
1787
        end
1788
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1789
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1790
		
1791
		wait(0.1)
1792
		slash:Destroy()
1793
	if la ~= nil then
1794
		la.BrickColor = BrickColor.new("Really black")
1795
					hitsound:Play()
1796
					for i = 1,20 do
1797
						wait()
1798
					la.Transparency = la.Transparency + 0.05
1799
					end
1800
					la:Destroy()
1801
					end
1802
					slash = Instance.new("Part",char)
1803
		slash.CanCollide = false
1804
		slash.Transparency = 1
1805
		slash.Size = Vector3.new(5,5,1)
1806
		slashweld = Instance.new("Weld",slash)
1807
		slashweld.Part0 = torso
1808
		slashweld.Part1 = slash
1809
		slashweld.C0 = CFrame.new(0,0,-2)
1810
		slashdecal = Instance.new("Decal",slash)
1811
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1812
		
1813
		slashdecal1 = Instance.new("Decal",slash)
1814
		slashdecal1.Face = "Back"
1815
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1816
		slashsound:Play()
1817
					 for i = 1, 5 do
1818
			wait()
1819
            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)
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(0), math.rad(0), 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=941495205"
1828
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1829
		 for i = 1, 5 do
1830
			wait()
1831
            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)
1832
            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)
1833
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1834
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1835
            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)
1836
            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)
1837
           
1838
        end
1839
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1840
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1841
		
1842
		wait(0.1)
1843
		slash:Destroy()
1844
	if ll ~= nil then
1845
		ll.BrickColor = BrickColor.new("Really black")
1846
					hitsound:Play()
1847
					for i = 1,20 do
1848
						wait()
1849
					ll.Transparency = ll.Transparency + 0.05
1850
					end
1851
					ll:Destroy()
1852
					end
1853
					slash = Instance.new("Part",char)
1854
		slash.CanCollide = false
1855
		slash.Transparency = 1
1856
		slash.Size = Vector3.new(5,5,1)
1857
		slashweld = Instance.new("Weld",slash)
1858
		slashweld.Part0 = torso
1859
		slashweld.Part1 = slash
1860
		slashweld.C0 = CFrame.new(0,0,-2)
1861
		slashdecal = Instance.new("Decal",slash)
1862
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1863
		
1864
		slashdecal1 = Instance.new("Decal",slash)
1865
		slashdecal1.Face = "Back"
1866
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1867
		slashsound:Play()
1868
					 for i = 1, 5 do
1869
			wait()
1870
            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)
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(0), math.rad(0), 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=941495205"
1879
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1880
		 for i = 1, 5 do
1881
			wait()
1882
            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)
1883
            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)
1884
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1885
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1886
            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)
1887
            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)
1888
           
1889
        end
1890
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1891
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1892
		
1893
		wait(0.1)
1894
		slash:Destroy()
1895
	if ra ~= nil then
1896
		ra.BrickColor = BrickColor.new("Really black")
1897
					hitsound:Play()
1898
					for i = 1,20 do
1899
						wait()
1900
					ra.Transparency = ra.Transparency + 0.05
1901
					end
1902
					ra:Destroy()
1903
					end
1904
					slash = Instance.new("Part",char)
1905
		slash.CanCollide = false
1906
		slash.Transparency = 1
1907
		slash.Size = Vector3.new(5,5,1)
1908
		slashweld = Instance.new("Weld",slash)
1909
		slashweld.Part0 = torso
1910
		slashweld.Part1 = slash
1911
		slashweld.C0 = CFrame.new(0,0,-2)
1912
		slashdecal = Instance.new("Decal",slash)
1913
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1914
		
1915
		slashdecal1 = Instance.new("Decal",slash)
1916
		slashdecal1.Face = "Back"
1917
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1918
		slashsound:Play()
1919
					 for i = 1, 5 do
1920
			wait()
1921
            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)
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(0), math.rad(0), 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=941495205"
1930
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1931
		 for i = 1, 5 do
1932
			wait()
1933
            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)
1934
            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)
1935
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1936
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1937
            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)
1938
            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)
1939
           
1940
        end
1941
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1942
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1943
		
1944
		wait(0.1)
1945
		slash:Destroy()
1946
	if rl ~= nil then
1947
		rl.BrickColor = BrickColor.new("Really black")
1948
					hitsound:Play()
1949
					for i = 1,20 do
1950
						wait()
1951
					rl.Transparency = rl.Transparency + 0.05
1952
					end
1953
					rl:Destroy()
1954
					end
1955
					slash = Instance.new("Part",char)
1956
		slash.CanCollide = false
1957
		slash.Transparency = 1
1958
		slash.Size = Vector3.new(5,5,1)
1959
		slashweld = Instance.new("Weld",slash)
1960
		slashweld.Part0 = torso
1961
		slashweld.Part1 = slash
1962
		slashweld.C0 = CFrame.new(0,0,-2)
1963
		slashdecal = Instance.new("Decal",slash)
1964
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
1965
		
1966
		slashdecal1 = Instance.new("Decal",slash)
1967
		slashdecal1.Face = "Back"
1968
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
1969
		slashsound:Play()
1970
					 for i = 1, 5 do
1971
			wait()
1972
            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)
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(0), math.rad(0), 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=941495205"
1981
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
1982
		 for i = 1, 5 do
1983
			wait()
1984
            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)
1985
            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)
1986
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
1987
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
1988
            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)
1989
            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)
1990
           
1991
        end
1992
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
1993
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
1994
		
1995
		wait(0.1)
1996
		slash:Destroy()
1997
	
1998
		t.BrickColor = BrickColor.new("Really black")
1999
					hitsound:Play()
2000
					for i = 1,20 do
2001
						wait()
2002
					t.Transparency = t.Transparency + 0.05
2003
					end
2004
					t:Destroy()
2005
					slash = Instance.new("Part",char)
2006
		slash.CanCollide = false
2007
		slash.Transparency = 1
2008
		slash.Size = Vector3.new(5,5,1)
2009
		slashweld = Instance.new("Weld",slash)
2010
		slashweld.Part0 = torso
2011
		slashweld.Part1 = slash
2012
		slashweld.C0 = CFrame.new(0,0,-2)
2013
		slashdecal = Instance.new("Decal",slash)
2014
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
2015
		
2016
		slashdecal1 = Instance.new("Decal",slash)
2017
		slashdecal1.Face = "Back"
2018
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
2019
		slashsound:Play()
2020
					 for i = 1, 5 do
2021
			wait()
2022
            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)
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(0), math.rad(0), 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=941495205"
2031
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
2032
		 for i = 1, 5 do
2033
			wait()
2034
            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)
2035
            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)
2036
            hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
2037
            torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
2038
            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)
2039
            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)
2040
           
2041
        end
2042
		slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
2043
		slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
2044
		
2045
		wait(0.1)
2046
		slash:Destroy()
2047
	if h ~= nil then
2048
		h.BrickColor = BrickColor.new("Really black")
2049
					hitsound:Play()
2050
					for i = 1,20 do
2051
						wait()
2052
					h.Transparency = h.Transparency + 0.05
2053
					end
2054
					h:Destroy()
2055
	end
2056
	hed.Anchored = false
2057
	
2058
				end
2059
			end
2060
end
2061
what.Touched:connect(onTouched)
2062
		end
2063
		end
2064
	end)