Advertisement
refrop

thanos (beta v2)

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