Advertisement
Ninja_Camper

trash chara edit (little old)

Mar 21st, 2018
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 48.81 KB | None | 0 0
  1. -- [[[
  2. --000000[[====================================================================================\\
  3. --000000[[ deivis97 edit
  4. --000000[[====================================================================================//
  5. -- [[[ why i make that --
  6. local lovecounter = false
  7. local love = 99
  8. local sprint = false
  9. local done = false
  10. local canheal = false
  11. local deathchat1 = false
  12. local once = true
  13. local breakjoints = true
  14. local dead = false
  15. local candie = true
  16. local deathchat = false
  17. local canattack = true
  18. local colorred = 0
  19. local lala = true
  20. local idleon = true
  21. local walking = true
  22. local idle1 = true
  23. local canchange = false
  24. local idle = true
  25. local p = game.Players.LocalPlayer
  26. local char = p.Character
  27. local mouse = p:GetMouse()
  28. local larm = char["Left Arm"]
  29. local rarm = char["Right Arm"]
  30. local lleg = char["Left Leg"]
  31. local rleg = char["Right Leg"]
  32. local hed = char.Head
  33. local torso = char.Torso
  34. local hum = char.Humanoid
  35.  
  36. um = Instance.new("Part",char)
  37. um.Name = "Immune"
  38. um.CanCollide = false
  39. um.Anchored = true
  40. um.Transparency = 1
  41. dead = true
  42. local cam = game.Workspace.CurrentCamera
  43. local root = char.HumanoidRootPart
  44. local deb = false
  45. local shot = 0
  46. local debris=game:service"Debris"
  47. local l = game:GetService("Lighting")
  48. local rs = game:GetService("RunService").RenderStepped
  49. local Create = LoadLibrary("RbxUtility").Create
  50. ff = Instance.new("ForceField",char)
  51. ff.Visible = false
  52. ArtificialHB = Create("BindableEvent", script){
  53. Parent = script,
  54. Name = "Heartbeat",
  55. }
  56. CFuncs = {
  57.  
  58.  
  59. ["Sound"] = {
  60. Create = function(id, par, vol, pit)
  61. coroutine.resume(coroutine.create(function()
  62. local S = Create("Sound"){
  63. Volume = vol,
  64. Pitch = pit or 1,
  65. SoundId = id,
  66. Parent = par or workspace,
  67. }
  68. wait()
  69. S:play()
  70. game:GetService("Debris"):AddItem(S, 6)
  71. end))
  72. end;
  73. };
  74.  
  75.  
  76.  
  77. CreateTemplate = {
  78.  
  79. };
  80. }
  81. function swait(num)
  82. if num == 0 or num == nil then
  83. ArtificialHB.Event:wait()
  84. else
  85. for i = 0, num do
  86. ArtificialHB.Event:wait()
  87. end
  88. end
  89. end
  90. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  91. function lerp(a, b, t) -- Linear interpolation
  92. return a + (b - a)*t
  93. end
  94.  
  95. function slerp(a, b, t) --Spherical interpolation
  96. dot = a:Dot(b)
  97. if dot > 0.99999 or dot < -0.99999 then
  98. return t <= 0.5 and a or b
  99. else
  100. r = math.acos(dot)
  101. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  102. end
  103. end
  104. function matrixInterpolate(a, b, t)
  105. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  106. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  107. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  108. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  109. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  110. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  111. local t = v1:Dot(v2)
  112. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  113. return CFrame.new()
  114. end
  115. return CFrame.new(
  116. v0.x, v0.y, v0.z,
  117. v1.x, v1.y, v1.z,
  118. v2.x, v2.y, v2.z,
  119. v3.x, v3.y, v3.z)
  120. end
  121. ----------------------------------------------------
  122. function genWeld(a,b)
  123. local w = Instance.new("Weld",a)
  124. w.Part0 = a
  125. w.Part1 = b
  126. return w
  127. end
  128. function weld(a, b)
  129. local weld = Instance.new("Weld")
  130. weld.Name = "W"
  131. weld.Part0 = a
  132. weld.Part1 = b
  133. weld.C0 = a.CFrame:inverse() * b.CFrame
  134. weld.Parent = a
  135. return weld;
  136. end
  137. ----------------------------------------------------
  138. function Lerp(c1,c2,al)
  139. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  140. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  141. for i,v in pairs(com1) do
  142. com1[i] = v+(com2[i]-v)*al
  143. end
  144. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  145. end
  146. ----------------------------------------------------
  147. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  148. local wld = Instance.new("Weld", wp1)
  149. wld.Part0 = wp0
  150. wld.Part1 = wp1
  151.  
  152. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  153. end
  154. ----------------------------------------------------
  155. function weld5(part0, part1, c0, c1)
  156. weeld=Instance.new("Weld", part0)
  157. weeld.Part0=part0
  158. weeld.Part1=part1
  159. weeld.C0=c0
  160. weeld.C1=c1
  161. return weeld
  162. end
  163. ----------------------------------------------------
  164. function HasntTouched(plrname)
  165. local ret = true
  166. for _, v in pairs(Touche) do
  167. if v == plrname then
  168. ret = false
  169. end
  170. end
  171. return ret
  172. end
  173. newWeld(torso, larm, -1.5, 0.5, 0)
  174. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  175. newWeld(torso, rarm, 1.5, 0.5, 0)
  176. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  177. newWeld(torso, hed, 0, 1.5, 0)
  178. newWeld(torso, lleg, -0.5, -1, 0)
  179. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  180. newWeld(torso, rleg, 0.5, -1, 0)
  181. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  182. newWeld(root, torso, 0, -1, 0)
  183. torso.Weld.C1 = CFrame.new(0, -1, 0)
  184.  
  185. function chatfunc(text)
  186. local chat = coroutine.wrap(function()
  187. if char:FindFirstChild("TalkingBillBoard")~= nil then
  188. char:FindFirstChild("TalkingBillBoard"):destroy()
  189. end
  190. local naeeym2 = Instance.new("BillboardGui",char)
  191. naeeym2.Size = UDim2.new(0,100,0,40)
  192. naeeym2.StudsOffset = Vector3.new(0,3,0)
  193. naeeym2.Adornee = hed
  194. naeeym2.Name = "TalkingBillBoard"
  195. local tecks2 = Instance.new("TextLabel",naeeym2)
  196. tecks2.BackgroundTransparency = 1
  197. tecks2.BorderSizePixel = 0
  198. tecks2.Text = ""
  199. tecks2.Font = "Arcade"
  200. tecks2.TextSize = 30
  201. tecks2.TextStrokeTransparency = 0
  202. tecks2.TextColor3 = Color3.new(255,0,0)
  203. tecks2.TextStrokeColor3 = Color3.new(255,0,0)
  204. tecks2.Size = UDim2.new(1,0,0.5,0)
  205.  
  206. for i = 1,string.len(text),1 do
  207. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=", hed, 6, .8)
  208. tecks2.Text = string.sub(text,1,i)
  209.  
  210. wait(0.01)
  211. end
  212. wait(2)
  213. for i = 1, 50 do
  214. swait()
  215. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  216. tecks2.Rotation = tecks2.Rotation - .8
  217. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  218. tecks2.TextTransparency = tecks2.TextTransparency + .04
  219.  
  220. end
  221. naeeym2:Destroy()
  222. end)
  223. chat()
  224. end
  225. function onChatted(msg)
  226. chatfunc(msg)
  227. end
  228. p.Chatted:connect(onChatted)
  229. hed.face.Texture = "http://www.roblox.com/asset/?id=719949066"
  230. ypcall(function()
  231. shirt = Instance.new("Shirt", char)
  232. shirt.Name = "Shirt"
  233. pants = Instance.new("Pants", char)
  234. pants.Name = "Pants"
  235. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=140183207"
  236. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=1173789285"
  237. end)
  238. char["Body Colors"].HeadColor = BrickColor.new("Pastel yellow")
  239. char["Body Colors"].TorsoColor = BrickColor.new("Pastel yellow")
  240. char["Body Colors"].LeftArmColor = BrickColor.new("Pastel yellow")
  241. char["Body Colors"].RightArmColor = BrickColor.new("Pastel yellow")
  242.  
  243. MegaloStrikesBack = Instance.new("Sound",torso)
  244. MegaloStrikesBack.Looped = true
  245. MegaloStrikesBack.SoundId = "http://www.roblox.com/asset?id=615990065"
  246. MegaloStrikesBack.Volume = 50
  247. MegaloStrikesBack:Play()
  248. for _, v in pairs(char:GetChildren()) do
  249. if v.ClassName == "Accessory" then
  250. v:remove()
  251. end
  252. end
  253. local Hat = char:FindFirstChild("Hat_F") or Instance.new("Hat")
  254. Hat.AttachmentPos = Vector3.new(-0.01, 0.35, -0.13)
  255. Hat.Name = "Hat_F"
  256. local Handle = Hat:FindFirstChild("Handle") or Instance.new("Part", Hat)
  257. if Handle.Name ~= "Handle" then
  258. Handle.Size = Vector3.new(1, 1, 1)
  259. end
  260. Handle.BottomSurface = 0
  261. Handle.Name = "Handle"
  262. Handle.TopSurface = 0
  263. Handle.Locked = 1
  264. local Mesh = Hat:FindFirstChild("Mesh") or Instance.new("SpecialMesh", Handle)
  265. Mesh.TextureId = "http://www.roblox.com/asset/?id=292346519"
  266. Mesh.MeshId = "http://www.roblox.com/asset/?id=62246019"
  267. Mesh.Scale = Vector3.new(1.05, 1.05, 1.05)
  268. Hat.Parent = char
  269.  
  270. handle = Instance.new("Part", char)
  271. handle.TopSurface = "Smooth"
  272. handle.BottomSurface = "Smooth"
  273. handle.Material = "Neon"
  274.  
  275. handle.Size = Vector3.new(0.2, 0.5, 0.5)
  276. handle.CanCollide = false
  277.  
  278. handle.FormFactor = "Custom"
  279. local Weldb = Instance.new("Weld", char)
  280. Weldb.Part0 = char["Right Arm"]
  281. Weldb.Part1 = handle
  282. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  283. local KnifeMesh = Instance.new("SpecialMesh", handle)
  284. KnifeMesh.MeshType = "FileMesh"
  285. KnifeMesh.MeshId = "http://www.roblox.com/asset/?id=1215038279"
  286. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=1215038298"
  287. KnifeMesh.Scale = Vector3.new(0.6, 0.5, 0.5)
  288. KnifeMesh.Offset = Vector3.new(-0.2,1,0)
  289.  
  290. blackhand = Instance.new("Part",char)
  291. blackhand.Material = "Neon"
  292. blackhand.Transparency = 1
  293. blackhand.BrickColor = BrickColor.new("Really black")
  294. blackhand.Position = Vector3.new(999,999,999)
  295. blackhand.Size = Vector3.new(1.01,1.01,1.01)
  296. blackweld = Instance.new("Weld",blackhand)
  297. blackweld.Part0 = rarm
  298. blackweld.Part1 = blackhand
  299. blackweld.C0 = CFrame.new(0,-0.5,0)
  300.  
  301.  
  302. CV="Really red"
  303.  
  304. local txt = Instance.new("BillboardGui", char)
  305. txt.Adornee = hed
  306. txt.Name = "_status"
  307. txt.Size = UDim2.new(2, 0, 1.2, 0)
  308. txt.StudsOffset = Vector3.new(-9, 11, 0)
  309. local text = Instance.new("TextLabel", txt)
  310. text.Size = UDim2.new(10, 0, 7, 0)
  311. text.FontSize = "Size24"
  312. text.TextScaled = true
  313. text.TextTransparency = 0
  314. text.BackgroundTransparency = 1
  315. text.TextTransparency = 0
  316. text.TextStrokeTransparency = 0
  317. text.Font = "Arcade"
  318. text.TextStrokeColor3 = Color3.new(125,0,0)
  319. wait(4)
  320.  
  321.  
  322. v=Instance.new("Part")
  323. v.Name = "ColorBrick"
  324. v.Parent=char
  325. v.FormFactor="Symmetric"
  326. v.Anchored=true
  327. v.CanCollide=false
  328. v.BottomSurface="Smooth"
  329. v.TopSurface="Smooth"
  330. v.Size=Vector3.new(10,5,3)
  331. v.Transparency=1
  332. v.CFrame=torso.CFrame
  333. v.BrickColor=BrickColor.new(CV)
  334. v.Transparency=1
  335. text.TextColor3 = Color3.new(0,0,0)
  336. v.Shape="Block"
  337. text.Text = ""
  338.  
  339. refused = Instance.new("Sound",larm)
  340. refused.Volume = 100
  341. refused.SoundId = "http://www.roblox.com/asset/?id=400905079"
  342.  
  343. game:GetService("RunService").RenderStepped:connect(function()
  344.  
  345. if lala == true then
  346. if canchange == true then
  347. canchange = false
  348.  
  349. handle.BrickColor = BrickColor.new("Really red")
  350. wait(0.01)
  351. handle.BrickColor = BrickColor.new("Really blue")
  352. wait(0.01)
  353. handle.BrickColor = BrickColor.new("Bright green")
  354. wait(0.01)
  355. handle.BrickColor = BrickColor.new("Toothpaste")
  356. wait(0.01)
  357. handle.BrickColor = BrickColor.new("New Yeller")
  358. wait(0.01)
  359. handle.BrickColor = BrickColor.new("Magenta")
  360. wait(0.01)
  361. handle.BrickColor = BrickColor.new("Deep orange")
  362. wait(0.01)
  363. canchange = true
  364. end
  365. end
  366. if hum.MoveDirection.x == 0 then
  367. if idle == true then
  368. if idleon == true then
  369. idleon = false
  370. for i = 1,10 do
  371. wait()
  372. if hum.MoveDirection.x == 0 then
  373. 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)
  374. end
  375. if hum.MoveDirection.x == 0 then
  376. 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)
  377. end
  378. if hum.MoveDirection.x == 0 then
  379. 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)
  380. end
  381. if hum.MoveDirection.x == 0 then
  382. 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)
  383. end
  384. if hum.MoveDirection.x == 0 then
  385. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(2)), 0.1)
  386. end
  387. end
  388.  
  389.  
  390.  
  391.  
  392. for i = 1,10 do
  393. wait()
  394. if hum.MoveDirection.x == 0 then
  395. 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)
  396. end
  397. if hum.MoveDirection.x == 0 then
  398. 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)
  399. end
  400. if hum.MoveDirection.x == 0 then
  401. 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)
  402. end
  403. if hum.MoveDirection.x == 0 then
  404. 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)
  405. end
  406. if hum.MoveDirection.x == 0 then
  407. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(2)), 0.1)
  408. end
  409. end
  410. idleon = true
  411. end
  412.  
  413.  
  414.  
  415. end
  416. end
  417. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  418. if walking == true then
  419. if sprint == false then
  420. if idle1 == true then
  421. idle1 = false
  422.  
  423. idle = false
  424. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  425. for i = 1,10 do
  426. wait()
  427. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  428. 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)
  429. end
  430. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  431. 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)
  432. end
  433. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  434. 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)
  435. end
  436. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  437. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
  438. end
  439. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  440. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(2)), 0.1)
  441. end
  442.  
  443. end
  444. end
  445. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  446. for i = 1,10 do
  447. wait()
  448. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  449. 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)
  450. end
  451. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  452. 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)
  453. end
  454. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  455. 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)
  456. end
  457. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  458. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(-2)), 0.1)
  459. end
  460. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  461. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
  462. end
  463. end
  464. end
  465. if hum.MoveDirection.x == 0 then
  466. idle = true
  467. end
  468. idle1 = true
  469. end
  470. end
  471. end
  472.  
  473. end
  474. ----------------------------------------------------------------------------------
  475.  
  476. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  477. if walking == true then
  478. if sprint == true then
  479. if idle1 == true then
  480. idle1 = false
  481.  
  482. idle = false
  483. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  484. for i = 1,8 do
  485. wait()
  486. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  487. 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)
  488. end
  489. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  490. 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)
  491. end
  492. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  493. 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)
  494. end
  495. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  496. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
  497. end
  498. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  499. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(2)), 0.1)
  500. end
  501.  
  502. end
  503. end
  504. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  505. for i = 1,8 do
  506. wait()
  507. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  508. 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)
  509. end
  510. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  511. 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)
  512. end
  513. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  514. 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)
  515. end
  516. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  517. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(-2)), 0.1)
  518. end
  519. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  520. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
  521. end
  522.  
  523. end
  524. end
  525. if hum.MoveDirection.x == 0 then
  526. idle = true
  527. end
  528. idle1 = true
  529. end
  530. end
  531. end
  532. end
  533.  
  534. if deathchat1 == true then
  535. char.Parent = workspace.Camera
  536. char.Archivable = true
  537. local c = p.Character:Clone()
  538. c:MakeJoints()
  539. for y,t in pairs(c:GetChildren()) do
  540. if t:IsA("Part") then
  541. t.CanCollide = false
  542. t.Anchored = true
  543. t.BrickColor = BrickColor.new("Black")
  544. t.Transparency = 1
  545.  
  546. t.TopSurface = "Smooth"
  547. t.BottomSurface = "Smooth"
  548. t.RightSurface = "Smooth"
  549. t.LeftSurface = "Smooth"
  550. t.FrontSurface = "Smooth"
  551. t.BackSurface = "Smooth"
  552.  
  553.  
  554. else
  555. t:Remove()
  556. end
  557. end
  558. c.Parent = workspace
  559. game.Debris:AddItem(c,.05)
  560. end
  561.  
  562. hum:SetStateEnabled("Dead",false)
  563. hum:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
  564. if hum.Health < 5 and candie == true then
  565. hum.Name = "NOMOREDAMAGE"
  566. canheal = true
  567. done = false
  568.  
  569. done = true
  570. candie = false
  571. dead = true
  572. MegaloStrikesBack.Volume = 0
  573. refused:Play()
  574.  
  575. deathchat = true
  576. end
  577. if deathchat == true then
  578. deathchat = false
  579. idle = false
  580.  
  581. hed.face.Texture = "0"
  582. if char:FindFirstChild("TalkingBillBoard")~= nil then
  583. char:FindFirstChild("TalkingBillBoard"):destroy()
  584. end
  585. 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)
  586. idle1 = false
  587. canattack = false
  588. gothitdecal2 = Instance.new("Decal",torso)
  589. gothitdecal2.Texture = "http://www.roblox.com/asset/?id="
  590. gothitdecal2.Face = "Back"
  591. gothitdecal1 = Instance.new("Decal",torso)
  592. gothitdecal1.Texture = "http://www.roblox.com/asset/?id="
  593. hed.Transparency = 1
  594. torso.Transparency = 1
  595. larm.Transparency = 1
  596. rarm.Transparency = 1
  597. lovecounter = false
  598. text.Text = ""
  599.  
  600. lleg.Transparency = 1
  601. rleg.Transparency = 1
  602. handle.Transparency = 1
  603. Handle.Transparency = 1
  604. blackhand.Transparency = 1
  605. wait(1)
  606. refused:Stop()
  607. wait(2)
  608.  
  609. chatfunc("i ded")
  610. wait(1.5)
  611. candie = true
  612. idle = true
  613. idle1 = true
  614. hed.face.Texture = "http://www.roblox.com/asset/?id=719949066"
  615. canattack = true
  616. lleg.Anchored = false
  617. rleg.Anchored = false
  618. larm.Anchored = false
  619. rarm.Anchored = false
  620. hed.Anchored = false
  621. torso.Anchored = false
  622. gothitdecal2:Destroy()
  623. gothitdecal1:Destroy()
  624. for i = 1,10 do
  625. wait()
  626. hed.Transparency = hed.Transparency - 0.1
  627. torso.Transparency = torso.Transparency - 0.1
  628. larm.Transparency = larm.Transparency - 0.1
  629. rarm.Transparency = rarm.Transparency - 0.1
  630. lleg.Transparency = lleg.Transparency - 0.1
  631. rleg.Transparency = rleg.Transparency - 0.1
  632. handle.Transparency = handle.Transparency - 0.1
  633. Handle.Transparency = Handle.Transparency - 0.1
  634. blackhand.Transparency = blackhand.Transparency - 0.1
  635. end
  636. lovecounter = true
  637. dead = false
  638. deathchat1 = false
  639. canheal = false
  640. hum.Health = 100
  641.  
  642. MegaloStrikesBack.Volume = 50
  643. wait(1)
  644. hum.Name = "Humanoid"
  645. end
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652. if canheal == true then
  653.  
  654. hum.Health = math.huge
  655.  
  656. end
  657.  
  658. if lovecounter == true then
  659. text.Text = 'Deivis97 retarted with one "sword"'
  660. end
  661. end)
  662.  
  663. game.Players.CharacterAutoLoads = false
  664.  
  665.  
  666.  
  667.  
  668. hed.Transparency = 0
  669. torso.Transparency = 0
  670. larm.Transparency = 0
  671. rarm.Transparency = 0
  672. lleg.Transparency = 0
  673. rleg.Transparency = 0
  674. handle.Transparency = 0
  675. Handle.Transparency = 0
  676.  
  677. idle = true
  678. hed.face.Texture = "http://www.roblox.com/asset/?id=719949066"
  679. lovecounter = true
  680. walking = true
  681. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  682. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=1215038298"
  683. mouse.KeyDown:connect(function(key)
  684. if key == "z" then
  685. if canattack == true then
  686. canattack = false
  687.  
  688. idle = false
  689. walking = false
  690. wait(1)
  691.  
  692. kill = Instance.new("Part",char)
  693. kill.Position = torso.Position - Vector3.new(0,2,0)
  694. kill.Size = Vector3.new(1000,0.1,1000)
  695. kill.Name = "Immune"
  696. kill.CanCollide = false
  697. kill.Transparency = 0.9
  698. kill.Anchored = true
  699. kill.Material = "Neon"
  700. kill.BrickColor = BrickColor.new("Really black")
  701. killmesh = Instance.new("SpecialMesh",kill)
  702. killmesh.MeshType = "FileMesh"
  703. killmesh.MeshId = "rbxassetid://465435723"
  704. killmesh.Scale = Vector3.new(250,0.01,250)
  705. local Aura = Instance.new('ParticleEmitter')
  706. Aura.Name = "Aura"
  707. Aura.Texture = "rbxassetid://56562006"
  708. Aura.Parent = kill
  709. Aura.LightEmission = 1
  710. Aura.Transparency = NumberSequence.new(0,0.6,1)
  711. Aura.Color = ColorSequence.new(Color3.new(255/255, 0/255, 0/255),Color3.new(255/255, 0/255, 0/255))
  712. Aura.Size = NumberSequence.new(1,1.2,1.4)
  713. Aura.LockedToPart = true
  714. Aura.Lifetime = NumberRange.new(99999)
  715. Aura.Rate = 999999
  716. Aura.Speed = NumberRange.new(5)
  717. Aura.EmissionDirection = "Top"
  718. game.Lighting.TimeOfDay = "23:00:00"
  719. Weldb.C1 = CFrame.new(0, -1, -1) * CFrame.fromEulerAnglesXYZ(-2, 0, 0)
  720. for i = 1, 20 do
  721. wait()
  722. 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)
  723. 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)
  724. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  725. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(6), math.rad(0), 0), 0.2)
  726. 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)
  727. 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)
  728.  
  729. end
  730. for i = 1, 20 do
  731. wait()
  732. 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)
  733. 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)
  734. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  735. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles( math.rad(-50), math.rad(0), 0), 0.2)
  736. 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)
  737. 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)
  738.  
  739. end
  740. hitsound:Play()
  741. part = Instance.new("Part",char)
  742. part.Size = Vector3.new(0.1,0.1,0.1)
  743. part.Position = handle.Position
  744. part1 = Instance.new("Part",char)
  745. part1.Size = Vector3.new(0.1,0.1,0.1)
  746. part1.Position = handle.Position
  747. part2 = Instance.new("Part",char)
  748. part2.Size = Vector3.new(0.1,0.1,0.1)
  749. part2.Position = handle.Position
  750. part3 = Instance.new("Part",char)
  751. part3.Size = Vector3.new(0.1,0.1,0.1)
  752. part3.Position = handle.Position
  753. part4 = Instance.new("Part",char)
  754. part4.Size = Vector3.new(0.1,0.1,0.1)
  755. part4.Position = handle.Position
  756. part5 = Instance.new("Part",char)
  757. part5.Size = Vector3.new(0.1,0.1,0.1)
  758. part5.Position = handle.Position
  759. part6 = Instance.new("Part",char)
  760. part6.Size = Vector3.new(0.1,0.1,0.1)
  761. part6.Position = handle.Position
  762. part7 = Instance.new("Part",char)
  763. part7.Size = Vector3.new(0.1,0.1,0.1)
  764. part7.Position = handle.Position
  765. part8 = Instance.new("Part",char)
  766. part8.Size = Vector3.new(0.1,0.1,0.1)
  767. part8.Position = handle.Position
  768. part9 = Instance.new("Part",char)
  769. part9.Size = Vector3.new(0.1,0.1,0.1)
  770. part9.Position = handle.Position
  771. part10 = Instance.new("Part",char)
  772. part10.Size = Vector3.new(0.1,0.1,0.1)
  773. part10.Position = handle.Position
  774. KnifeMesh.TextureId = ""
  775. for i = 1,100 do
  776. wait()
  777. colorred = colorred + 0.006
  778. handle.Color = Color3.new(255,0,0)
  779. end
  780. chatfunc("you are ded m8")
  781. for i = 1,120 do
  782. wait()
  783. kill.Transparency = kill.Transparency - 0.005
  784. end
  785.  
  786. function onTouched(hit)
  787. if hit.Parent:FindFirstChild("Immune") == nil then
  788. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  789. hit.Parent:FindFirstChild("Head").Anchored = true
  790. hitsound:Play()
  791.  
  792.  
  793.  
  794. hit.Parent:BreakJoints()
  795. hit.Parent:FindFirstChild("Humanoid").Health = -100
  796. end
  797.  
  798.  
  799.  
  800.  
  801.  
  802. end
  803. end
  804. kill.Touched:connect(onTouched)
  805.  
  806.  
  807. kill1 = Instance.new("Part",char)
  808. kill1.Position = torso.Position - Vector3.new(0,2,0)
  809. kill1.Size = Vector3.new(200,300,200)
  810. kill1.Name = "Immune"
  811. kill1.CanCollide = false
  812. kill1.Transparency = 1
  813. kill1.Anchored = false
  814. kill1.Material = "Neon"
  815. kill1.BrickColor = BrickColor.new("Really red")
  816.  
  817. function onTouched(hit)
  818. if hit.Parent:FindFirstChild("Immune") == nil then
  819. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  820. hit.Parent:FindFirstChild("Head").Anchored = true
  821. hitsound:Play()
  822.  
  823.  
  824.  
  825. hit.Parent:FindFirstChild("Humanoid").Health = -100
  826. hit.Parent:BreakJoints()
  827. game.Lighting.TimeOfDay = "12:00:00"
  828. end
  829.  
  830.  
  831.  
  832. end
  833.  
  834. end
  835. kill1.Touched:connect(onTouched)
  836. for i = 1,50 do
  837. wait()
  838. killmesh.Scale = killmesh.Scale + Vector3.new(0,0.2,0)
  839. end
  840. wait(2)
  841. kill.Anchored = false
  842. canattack = true
  843. idle = true
  844. walking = true
  845. if char:FindFirstChild("TalkingBillBoard")~= nil then
  846. char:FindFirstChild("TalkingBillBoard"):destroy()
  847. end
  848. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
  849. colorred = 0
  850. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  851. end
  852. end
  853. end)
  854. slashsound = Instance.new("Sound",torso)
  855. slashsound.SoundId = "http://www.roblox.com/asset/?id=182707266"
  856. slashsound.Volume = 10
  857. hitsound = Instance.new("Sound",torso)
  858. hitsound.SoundId = "http://www.roblox.com/asset/?id=296102734"
  859. hitsound.Volume = 90
  860. mouse.KeyDown:connect(function(key)
  861. if key == "q" then
  862. if canattack == true then
  863. canattack = false
  864. idle = false
  865. walking = false
  866. wait(0.5)
  867. slash = Instance.new("Part",char)
  868. slash.CanCollide = false
  869. slash.Transparency = 1
  870. slash.Size = Vector3.new(5,5,1)
  871. slashweld = Instance.new("Weld",slash)
  872. slashweld.Part0 = torso
  873. slashweld.Part1 = slash
  874. slashweld.C0 = CFrame.new(0,0,-2)
  875. slashdecal = Instance.new("Decal",slash)
  876. slashdecal.Texture = "http://www.roblox.com/asset/?id=690825854"
  877.  
  878. slashdecal1 = Instance.new("Decal",slash)
  879. slashdecal1.Face = "Back"
  880. slashdecal1.Texture = "http://www.roblox.com/asset/?id=163666497"
  881. slashsound:Play()
  882. function onTouched(hit)
  883. if hit.Parent:FindFirstChild("Immune") == nil then
  884. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  885. hit.Parent:FindFirstChild("Head").Anchored = true
  886. slash.TouchInterest:Destroy()
  887. wait(1)
  888. hitsound:Play()
  889.  
  890. gothit = Instance.new("Part",hit)
  891. gothit.CanCollide = false
  892. gothit.Transparency = 1
  893. gothit.Size = Vector3.new(10,10,1)
  894. gothitweld1 = Instance.new("Weld",gothit)
  895. gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
  896. gothitweld1.Part1 = gothit
  897.  
  898. gothitweld1.C0 = CFrame.new(0,4,0)
  899. gothitdecal = Instance.new("Decal",gothit)
  900. gothitdecal.Texture = "http://www.roblox.com/asset/?id=283011882"
  901. love = love + 1
  902. gothit = Instance.new("Part",hit)
  903. gothit.CanCollide = false
  904. gothit.Transparency = 1
  905. gothit.Size = Vector3.new(10,10,1)
  906. gothitweld = Instance.new("Weld",gothit)
  907. gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
  908. gothitweld.Part1 = gothit
  909. gothitweld.C0 = CFrame.new(0,5,0)
  910.  
  911. gothitdecal = Instance.new("Decal",gothit)
  912. gothitdecal.Texture = "http://www.roblox.com/asset/?id=283011882"
  913. gothitdecal.Face = "Back"
  914. gothitweld.C0 = CFrame.new(0,4.5,0)
  915. gothitweld1.C0 = CFrame.new(0,6.5,0)
  916. wait(0.2)
  917. gothitweld.C0 = CFrame.new(0,4.5,0)
  918. gothitweld1.C0 = CFrame.new(0,6.5,0)
  919. wait(0.2)
  920. gothitweld.C0 = CFrame.new(0,4.5,0)
  921. gothitweld1.C0 = CFrame.new(0,6.5,0)
  922. wait(0.2)
  923.  
  924. hit.Parent:FindFirstChild("Humanoid").Health = -1
  925. hit.Parent:BreakJoints()
  926. else
  927. if hit.Parent:IsA("Model") then
  928. wait(1)
  929.  
  930. hit.Parent:BreakJoints()
  931.  
  932.  
  933.  
  934.  
  935.  
  936. end
  937. if hit:IsA("Part") and hit.Size.X < 500 then
  938.  
  939. hit.BrickColor = BrickColor.new("Really black")
  940. hitsound:Play()
  941. for i = 1,20 do
  942. wait()
  943. hit.Transparency = hit.Transparency + 0.05
  944. end
  945.  
  946.  
  947.  
  948.  
  949. end
  950. end
  951.  
  952. end
  953.  
  954. end
  955. slash.Touched:connect(onTouched)
  956.  
  957. for i = 1, 5 do
  958. wait()
  959. 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)
  960. 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)
  961. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  962. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  963. 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)
  964. 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)
  965.  
  966. end
  967. slashdecal.Texture = "http://www.roblox.com/asset/?id=163666497"
  968. slashdecal1.Texture = "http://www.roblox.com/asset/?id=163666497"
  969. for i = 1, 5 do
  970. wait()
  971. 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)
  972. 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)
  973. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  974. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  975. 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)
  976. 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)
  977.  
  978. end
  979. slashdecal.Texture = "http://www.roblox.com/asset/?id=690825854"
  980. slashdecal1.Texture = "http://www.roblox.com/asset/?id=163666497"
  981.  
  982. wait(0.1)
  983. slash:Destroy()
  984. canattack = true
  985. idle = true
  986. walking = true
  987. end
  988. end
  989. end)
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997.  
  998. mouse.KeyDown:connect(function(key)
  999. if key == "x" then
  1000. hed.Transparency = 1
  1001. torso.Transparency = 1
  1002. larm.Transparency = 1
  1003. hed.face.Texture = "http://www.roblox.com/asset/?id=719949066"
  1004. MegaloStrikesBack.Volume = 0.1
  1005. lovecounter = false
  1006. rarm.Transparency = 1
  1007. lleg.Transparency = 1
  1008. rleg.Transparency = 1
  1009. handle.Transparency = 1
  1010. Handle.Transparency = 1
  1011. blackhand.Transparency = 1
  1012. hum.WalkSpeed = 60
  1013. text.Text = ""
  1014. if char:FindFirstChild("TalkingBillBoard")~= nil then
  1015. char:FindFirstChild("TalkingBillBoard"):destroy()
  1016. end
  1017. end
  1018. end)
  1019. local Effects = Instance.new("Folder", KnifeMesh)
  1020. Effects.Name = "Effects"
  1021. function Swait(NUMBER)
  1022. if NUMBER == 0 or NUMBER == nil then
  1023. ArtificialHB.Event:wait()
  1024. else
  1025. for i = 1, NUMBER do
  1026. ArtificialHB.Event:wait()
  1027. end
  1028. end
  1029. end
  1030. mouse.KeyUp:connect(function(key)
  1031. if key == "x" then
  1032. hed.Transparency = 0
  1033. lovecounter = true
  1034. torso.Transparency = 0
  1035. larm.Transparency = 0
  1036. rarm.Transparency = 0
  1037. MegaloStrikesBack.Volume = 50
  1038. lleg.Transparency = 0
  1039. rleg.Transparency = 0
  1040. handle.Transparency = 0
  1041. Handle.Transparency = 0
  1042. blackhand.Transparency = 0
  1043. hum.WalkSpeed = 30
  1044. hed.face.Texture = ""
  1045. end
  1046. end)
  1047. mouse.KeyDown:connect(function(Key)
  1048. if Key:byte() == 48 then
  1049. hum.WalkSpeed = 40
  1050. workspace.Camera.FieldOfView = 80
  1051. sprint = true
  1052. end
  1053. end)
  1054.  
  1055. mouse.KeyUp:connect(function(Key)
  1056. if Key:byte() == 48 then
  1057. hum.WalkSpeed = 16
  1058. workspace.Camera.FieldOfView = 70
  1059. sprint = false
  1060. end
  1061. end)
  1062.  
  1063.  
  1064.  
  1065. mouse.KeyDown:connect(function(key)
  1066. if key == "e" then
  1067. if canattack == true then
  1068. canattack = false
  1069. idle = false
  1070. walking = false
  1071. wait(1)
  1072.  
  1073.  
  1074. slashsound:Play()
  1075.  
  1076. for i = 1, 5 do
  1077. wait()
  1078. 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)
  1079. 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)
  1080. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1081. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1082. 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)
  1083. 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)
  1084.  
  1085. end
  1086.  
  1087. for i = 1, 5 do
  1088. wait()
  1089. 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)
  1090. 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)
  1091. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1092. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1093. 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)
  1094. 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)
  1095.  
  1096. end
  1097. slash4 = Instance.new("Part",char)
  1098. slash4.CanCollide = false
  1099. slash4.Transparency = 0
  1100. slash4.Position = Vector3.new(999,999,999)
  1101. slash4.BrickColor = BrickColor.new("Really red")
  1102. slash4.Size = Vector3.new(0.3,9,0.3)
  1103. slashweld4 = Instance.new("Weld",slash4)
  1104. slashweld4.Part0 = torso
  1105. slashweld4.Part1 = slash4
  1106. slashweld4.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-80))
  1107. slashsound:Play()
  1108. for i = 1, 5 do
  1109. wait()
  1110. 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)
  1111. 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)
  1112. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1113. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-5), math.rad(15), 0), 0.7)
  1114. 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)
  1115. 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)
  1116.  
  1117. end
  1118. slash3 = Instance.new("Part",char)
  1119. slash3.CanCollide = false
  1120. slash3.Transparency = 0
  1121. slash3.Position = Vector3.new(999,999,999)
  1122. slash3.BrickColor = BrickColor.new("Really red")
  1123. slash3.Size = Vector3.new(0.3,9,0.3)
  1124. slashweld3 = Instance.new("Weld",slash3)
  1125. slashweld3.Part0 = torso
  1126. slashweld3.Part1 = slash3
  1127. slashweld3.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(40))
  1128. slashsound:Play()
  1129. for i = 1, 5 do
  1130. wait()
  1131. 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)
  1132. 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)
  1133. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1134. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
  1135. 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)
  1136. 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)
  1137.  
  1138. end
  1139. slash2 = Instance.new("Part",char)
  1140. slash2.CanCollide = false
  1141. slash2.Transparency = 0
  1142. slash2.Position = Vector3.new(999,999,999)
  1143. slash2.BrickColor = BrickColor.new("Really red")
  1144. slash2.Size = Vector3.new(0.3,9,0.3)
  1145. slashweld2 = Instance.new("Weld",slash2)
  1146. slashweld2.Part0 = torso
  1147. slashweld2.Part1 = slash2
  1148. slashweld2.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(150))
  1149. for i = 1, 5 do
  1150. wait()
  1151. 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)
  1152. 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)
  1153. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1154. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1155. 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)
  1156. 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)
  1157.  
  1158. end
  1159. slashsound:Play()
  1160. for i = 1, 5 do
  1161. wait()
  1162. 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)
  1163. 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)
  1164. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1165. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
  1166. 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)
  1167. 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)
  1168.  
  1169. end
  1170. slash1 = Instance.new("Part",char)
  1171. slash1.CanCollide = false
  1172. slash1.Transparency = 0
  1173. slash1.Position = Vector3.new(999,999,999)
  1174. slash1.BrickColor = BrickColor.new("Really red")
  1175. slash1.Size = Vector3.new(0.3,9,0.3)
  1176. slashweld1 = Instance.new("Weld",slash1)
  1177. slashweld1.Part0 = torso
  1178. slashweld1.Part1 = slash1
  1179. slashweld1.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(78))
  1180. for i = 1, 5 do
  1181. wait()
  1182. 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)
  1183. 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)
  1184. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1185. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1186. 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)
  1187. 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)
  1188.  
  1189. end
  1190. slash5 = Instance.new("Part",char)
  1191. slash5.CanCollide = false
  1192. slash5.Transparency = 1
  1193. slash5.Position = Vector3.new(999,999,999)
  1194. slash5.BrickColor = BrickColor.new("Really red")
  1195. slash5.Size = Vector3.new(4,3,4)
  1196. slashweld5 = Instance.new("Weld",slash5)
  1197. slashweld5.Part0 = torso
  1198. slashweld5.Part1 = slash5
  1199. slashweld5.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(130))
  1200. function onTouched(hit)
  1201. if hit.Parent:FindFirstChild("Immune") == nil then
  1202. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1203. hit.Parent:FindFirstChild("Head").Anchored = true
  1204.  
  1205. wait(1)
  1206. hitsound:Play()
  1207.  
  1208. gothit = Instance.new("Part",hit)
  1209. gothit.CanCollide = false
  1210. gothit.Transparency = 1
  1211. gothit.Size = Vector3.new(10,10,1)
  1212. gothitweld1 = Instance.new("Weld",gothit)
  1213. gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
  1214. gothitweld1.Part1 = gothit
  1215.  
  1216. gothitweld1.C0 = CFrame.new(0,4,0)
  1217. gothitdecal = Instance.new("Decal",gothit)
  1218. gothitdecal.Texture = "http://www.roblox.com/asset/?id=283011882"
  1219. love = love + 1
  1220. gothit = Instance.new("Part",hit)
  1221. gothit.CanCollide = false
  1222. gothit.Transparency = 1
  1223. gothit.Size = Vector3.new(10,10,1)
  1224. gothitweld = Instance.new("Weld",gothit)
  1225. gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
  1226. gothitweld.Part1 = gothit
  1227. gothitweld.C0 = CFrame.new(0,5,0)
  1228.  
  1229. gothitdecal = Instance.new("Decal",gothit)
  1230. gothitdecal.Texture = "http://www.roblox.com/asset/?id=283011882"
  1231. gothitdecal.Face = "Back"
  1232. gothitweld.C0 = CFrame.new(0,3.5,0)
  1233. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1234. wait(0.2)
  1235. gothitweld.C0 = CFrame.new(0,4,0)
  1236. gothitweld1.C0 = CFrame.new(0,4,0)
  1237. wait(0.2)
  1238. gothitweld.C0 = CFrame.new(0,3.5,0)
  1239. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1240. wait(0.2)
  1241. gothitweld.C0 = CFrame.new(0,4,0)
  1242. gothitweld1.C0 = CFrame.new(0,4,0)
  1243. wait(0.2)
  1244. gothitweld.C0 = CFrame.new(0,3.5,0)
  1245. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1246. wait(0.2)
  1247. gothitweld.C0 = CFrame.new(0,4,0)
  1248. gothitweld1.C0 = CFrame.new(0,4,0)
  1249. wait(0.2)
  1250. gothitweld.C0 = CFrame.new(0,3.5,0)
  1251. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1252. wait(0.2)
  1253. gothitweld.C0 = CFrame.new(0,4,0)
  1254. gothitweld1.C0 = CFrame.new(0,4,0)
  1255. wait(0.2)
  1256. gothitweld.C0 = CFrame.new(0,3.5,0)
  1257. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1258. wait(0.2)
  1259. gothitweld.C0 = CFrame.new(0,4,0)
  1260. gothitweld1.C0 = CFrame.new(0,4,0)
  1261. wait(0.2)
  1262. gothitweld.C0 = CFrame.new(0,3.5,0)
  1263. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1264. wait(0.2)
  1265. gothitweld.C0 = CFrame.new(0,4,0)
  1266. gothitweld1.C0 = CFrame.new(0,4,0)
  1267. wait(0.2)
  1268.  
  1269. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1270. hit.Parent:BreakJoints()
  1271. else
  1272. if hit.Parent:IsA("Model") then
  1273. wait(1)
  1274.  
  1275. hit.Parent:BreakJoints()
  1276.  
  1277.  
  1278.  
  1279.  
  1280.  
  1281. end
  1282. if hit:IsA("Part") and hit.Size.X < 500 then
  1283.  
  1284. hit.BrickColor = BrickColor.new("Really black")
  1285. hitsound:Play()
  1286. for i = 1,20 do
  1287. wait()
  1288. hit.Transparency = hit.Transparency + 0.05
  1289. end
  1290.  
  1291.  
  1292.  
  1293.  
  1294. end
  1295. end
  1296.  
  1297. end
  1298.  
  1299. end
  1300. slash5.Touched:connect(onTouched)
  1301. for i = 1,70 do
  1302. wait()
  1303.  
  1304. slashweld1.C0 = slashweld1.C0 - Vector3.new(0,0,4)
  1305. slashweld2.C0 = slashweld2.C0 - Vector3.new(0,0,4)
  1306. slashweld3.C0 = slashweld3.C0 - Vector3.new(0,0,4)
  1307. slashweld4.C0 = slashweld4.C0 - Vector3.new(0,0,4)
  1308. slashweld5.C0 = slashweld5.C0 - Vector3.new(0,0,4)
  1309.  
  1310.  
  1311.  
  1312. end
  1313. slash1:Destroy()
  1314. slash2:Destroy()
  1315. slash3:Destroy()
  1316. slash4:Destroy()
  1317. slash5:Destroy()
  1318. canattack = true
  1319. idle = true
  1320. walking = true
  1321. end
  1322. end
  1323. end)
  1324.  
  1325.  
  1326. mouse.KeyDown:connect(function(key)
  1327. if key == "r" then
  1328. if canattack == true then
  1329.  
  1330.  
  1331.  
  1332. what = Instance.new("Part",char)
  1333. what.Size = Vector3.new(60,60,60)
  1334. what.Transparency = 1
  1335. what.Position = torso.Position
  1336. what.CanCollide = false
  1337. function onTouched(hit)
  1338. if hit.Parent:FindFirstChild("Immune") == nil then
  1339. if hit.Parent:FindFirstChild("Torso") ~= nil then
  1340. chatfunc('2spooky for yo')
  1341.  
  1342. t = hit.Parent:FindFirstChild("Torso")
  1343. h = hit.Parent:FindFirstChild("Head")
  1344. la = hit.Parent:FindFirstChild("Left Arm")
  1345. ra = hit.Parent:FindFirstChild("Right Arm")
  1346. ll = hit.Parent:FindFirstChild("Left Leg")
  1347. rl = hit.Parent:FindFirstChild("Right Leg")
  1348.  
  1349. what:Destroy()
  1350.  
  1351. torso.CFrame = t.CFrame * CFrame.Angles(0,math.rad(180),0) + t.CFrame.lookVector * 3
  1352. h.Anchored = true
  1353.  
  1354.  
  1355.  
  1356. hed.Anchored = true
  1357. wait(2)
  1358. chatfunc('ecksdee')
  1359. slash = Instance.new("Part",char)
  1360. slash.CanCollide = false
  1361. slash.Transparency = 1
  1362. slash.Size = Vector3.new(5,5,1)
  1363. slashweld = Instance.new("Weld",slash)
  1364. slashweld.Part0 = torso
  1365. slashweld.Part1 = slash
  1366. slashweld.C0 = CFrame.new(0,0,-2)
  1367. slashdecal = Instance.new("Decal",slash)
  1368. slashdecal.Texture = "http://www.roblox.com/asset/?id="
  1369.  
  1370. slashdecal1 = Instance.new("Decal",slash)
  1371. slashdecal1.Face = "Back"
  1372. slashdecal1.Texture = "http://www.roblox.com/asset/?id="
  1373. slashsound:Play()
  1374.  
  1375. t.BrickColor = BrickColor.new("Really black")
  1376. hitsound:Play()
  1377. for i = 1,20 do
  1378. wait()
  1379. t.Transparency = t.Transparency + 0.05
  1380. end
  1381. t:Destroy()
  1382. slash = Instance.new("Part",char)
  1383. slash.CanCollide = false
  1384. slash.Transparency = 1
  1385. slash.Size = Vector3.new(5,5,1)
  1386. slashweld = Instance.new("Weld",slash)
  1387. slashweld.Part0 = torso
  1388. slashweld.Part1 = slash
  1389. slashweld.C0 = CFrame.new(0,0,-2)
  1390. slashdecal = Instance.new("Decal",slash)
  1391. slashdecal.Texture = "http://www.roblox.com/asset/?id="
  1392. slashdecal1 = Instance.new("Decal",slash)
  1393. slashdecal1.Face = "Back"
  1394. slashdecal1.Texture = "http://www.roblox.com/asset/?id="
  1395. slashsound:Play()
  1396.  
  1397. for i = 1, 1 do
  1398. wait()
  1399. 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)
  1400. 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)
  1401. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1402. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1403. 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)
  1404. 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)
  1405. end
  1406.  
  1407. for i = 1, 1 do
  1408. wait()
  1409. 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)
  1410. 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)
  1411. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1412. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1413. 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)
  1414. 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)
  1415.  
  1416. end
  1417.  
  1418. wait(0.1)
  1419. slash:Destroy()
  1420. if h ~= nil then
  1421. h.BrickColor = BrickColor.new("Really black")
  1422. hitsound:Play()
  1423. for i = 1,20 do
  1424. wait()
  1425. h.Transparency = h.Transparency + 0.05
  1426. end
  1427. h:Destroy()
  1428. slash:Destroy()
  1429. end
  1430. hed.Anchored = false
  1431. slash:Destroy()
  1432. end
  1433. end
  1434. end
  1435. what.Touched:connect(onTouched)
  1436. end
  1437. end
  1438. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement