Advertisement
Catsss

edittest

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