Advertisement
Gametoy

Untitled

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