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