Advertisement
Finnegan5

dun dun dun

Oct 11th, 2017
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.47 KB | None | 0 0
  1. local lovecounter = false
  2. local love = 99
  3. local sprint = false
  4. local done = false
  5. local canheal = false
  6. local deathchat1 = false
  7. local once = true
  8. local breakjoints = true
  9. local dead = false
  10. local candie = true
  11. local deathchat = false
  12. local canattack = true
  13. local colorred = 0
  14. local lala = true
  15. local idleon = false
  16. local walking = false
  17. local idle1 = false
  18. local canchange = false
  19. local idle = true
  20. local p = game.Players.LocalPlayer
  21. local char = p.Character
  22. local mouse = p:GetMouse()
  23. local larm = char["Left Arm"]
  24. local rarm = char["Right Arm"]
  25. local lleg = char["Left Leg"]
  26. local rleg = char["Right Leg"]
  27. local hed = char.Head
  28. local torso = char.Torso
  29. local hum = char.Humanoid
  30.  
  31. um = Instance.new("Part",char)
  32. um.Name = "Immune"
  33. um.CanCollide = false
  34. um.Anchored = true
  35. um.Transparency = 1
  36. dead = true
  37. local cam = game.Workspace.CurrentCamera
  38. local root = char.HumanoidRootPart
  39. local deb = false
  40. local shot = 0
  41. local debris=game:service"Debris"
  42. local l = game:GetService("Lighting")
  43. local rs = game:GetService("RunService").RenderStepped
  44. local Create = LoadLibrary("RbxUtility").Create
  45. ff = Instance.new("ForceField",char)
  46. ff.Visible = false
  47. ArtificialHB = Create("BindableEvent", script){
  48. Parent = script,
  49. Name = "Heartbeat",
  50. }
  51. CFuncs = {
  52.  
  53.  
  54. ["Sound"] = {
  55. Create = function(id, par, vol, pit)
  56. coroutine.resume(coroutine.create(function()
  57. local S = Create("Sound"){
  58. Volume = vol,
  59. Pitch = pit or 1,
  60. SoundId = id,
  61. Parent = par or workspace,
  62. }
  63. wait()
  64. S:play()
  65. game:GetService("Debris"):AddItem(S, 6)
  66. end))
  67. end;
  68. };
  69.  
  70.  
  71.  
  72. CreateTemplate = {
  73.  
  74. };
  75. }
  76. function swait(num)
  77. if num == 0 or num == nil then
  78. ArtificialHB.Event:wait()
  79. else
  80. for i = 0, num do
  81. ArtificialHB.Event:wait()
  82. end
  83. end
  84. end
  85. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  86. function lerp(a, b, t) -- Linear interpolation
  87. return a + (b - a)*t
  88. end
  89.  
  90. function slerp(a, b, t) --Spherical interpolation
  91. dot = a:Dot(b)
  92. if dot > 0.99999 or dot < -0.99999 then
  93. return t <= 0.5 and a or b
  94. else
  95. r = math.acos(dot)
  96. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  97. end
  98. end
  99. function matrixInterpolate(a, b, t)
  100. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  101. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  102. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  103. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  104. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  105. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  106. local t = v1:Dot(v2)
  107. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  108. return CFrame.new()
  109. end
  110. return CFrame.new(
  111. v0.x, v0.y, v0.z,
  112. v1.x, v1.y, v1.z,
  113. v2.x, v2.y, v2.z,
  114. v3.x, v3.y, v3.z)
  115. end
  116. ----------------------------------------------------
  117. function genWeld(a,b)
  118. local w = Instance.new("Weld",a)
  119. w.Part0 = a
  120. w.Part1 = b
  121. return w
  122. end
  123. function weld(a, b)
  124. local weld = Instance.new("Weld")
  125. weld.Name = "W"
  126. weld.Part0 = a
  127. weld.Part1 = b
  128. weld.C0 = a.CFrame:inverse() * b.CFrame
  129. weld.Parent = a
  130. return weld;
  131. end
  132. ----------------------------------------------------
  133. function Lerp(c1,c2,al)
  134. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  135. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  136. for i,v in pairs(com1) do
  137. com1[i] = v+(com2[i]-v)*al
  138. end
  139. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  140. end
  141. ----------------------------------------------------
  142. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  143. local wld = Instance.new("Weld", wp1)
  144. wld.Part0 = wp0
  145. wld.Part1 = wp1
  146.  
  147. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  148. end
  149. ----------------------------------------------------
  150. function weld5(part0, part1, c0, c1)
  151. weeld=Instance.new("Weld", part0)
  152. weeld.Part0=part0
  153. weeld.Part1=part1
  154. weeld.C0=c0
  155. weeld.C1=c1
  156. return weeld
  157. end
  158. ----------------------------------------------------
  159. function HasntTouched(plrname)
  160. local ret = true
  161. for _, v in pairs(Touche) do
  162. if v == plrname then
  163. ret = false
  164. end
  165. end
  166. return ret
  167. end
  168. newWeld(torso, larm, -1.5, 0.5, 0)
  169. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  170. newWeld(torso, rarm, 1.5, 0.5, 0)
  171. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  172. newWeld(torso, hed, 0, 1.5, 0)
  173. newWeld(torso, lleg, -0.5, -1, 0)
  174. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  175. newWeld(torso, rleg, 0.5, -1, 0)
  176. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  177. newWeld(root, torso, 0, -1, 0)
  178. torso.Weld.C1 = CFrame.new(0, -1, 0)
  179.  
  180. Mouse = game:service'Players'.LocalPlayer:GetMouse()
  181. p = game.Players.LocalPlayer
  182. char = p.Character
  183.  
  184. handle = Instance.new("Part", char)
  185. handle.TopSurface = "Smooth"
  186. handle.BottomSurface = "Smooth"
  187. handle.Material = "Neon"
  188.  
  189. handle.Size = Vector3.new(0.2, 0.5, 0.5)
  190. handle.CanCollide = false
  191.  
  192. handle.FormFactor = "Custom"
  193. local Weldb = Instance.new("Weld", char)
  194. Weldb.Part0 = char["Right Arm"]
  195. Weldb.Part1 = handle
  196. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  197. local KnifeMesh = Instance.new("SpecialMesh", handle)
  198. KnifeMesh.MeshType = "FileMesh"
  199. KnifeMesh.MeshId = "http://www.roblox.com/asset/?id=94840342"
  200. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=129619847"
  201.  
  202. local ColorsArray = {ColorSequenceKeypoint.new(0, Color3.new(0/255,170/255,255/255)),ColorSequenceKeypoint.new(1, Color3.new(0/255,170/255,255/255))}
  203. local Atch1 = Instance.new("Attachment",Hitbox)Atch1.Position = Vector3.new(-0.029, 1.048, -0.146)
  204. local Atch2 = Instance.new("Attachment",Hitbox)Atch2.Position = Vector3.new(0, -0.256, -0.166)
  205. local Trail = Instance.new("Trail",Hitbox)Trail.Attachment0 = Atch1 Trail.Attachment1 = Atch2
  206. Trail.Texture = "rbxassetid://22636887" Trail.Lifetime = 0.05 Trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)})
  207. Trail.Color = ColorSequence.new(ColorsArray) Trail.LightEmission = 1
  208.  
  209. Mouse.KeyDown:connect(function(key)
  210. if key == "z" then
  211. if canattack == true then
  212. canattack = false
  213.  
  214. idle = false
  215. walking = false
  216. wait(1)
  217.  
  218. kill = Instance.new("Part",char)
  219. kill.Position = torso.Position - Vector3.new(0,2,0)
  220. kill.Size = Vector3.new(200,0.1,200)
  221. kill.Name = "Immune"
  222. kill.CanCollide = false
  223. kill.Transparency = 1
  224. kill.Anchored = true
  225. kill.Material = "Neon"
  226. kill.BrickColor = BrickColor.new("Toothpaste")
  227. killmesh = Instance.new("SpecialMesh",kill)
  228. killmesh.MeshType = "FileMesh"
  229. killmesh.MeshId = "rbxassetid://465435723"
  230. killmesh.Scale = Vector3.new(5.2,0.01,5.2)
  231. Weldb.C1 = CFrame.new(0, -1, -1) * CFrame.fromEulerAnglesXYZ(-2, 0, 0)
  232. for i = 1, 20 do
  233. wait()
  234. 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)
  235. 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)
  236. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  237. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(6), math.rad(0), 0), 0.2)
  238. 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)
  239. 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)
  240.  
  241. end
  242. for i = 1, 20 do
  243. wait()
  244. 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)
  245. 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)
  246. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  247. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles( math.rad(-50), math.rad(0), 0), 0.2)
  248. 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)
  249. 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)
  250.  
  251. end
  252. hitsound:Play()
  253. part = Instance.new("Part",char)
  254. part.Size = Vector3.new(0.1,0.1,0.1)
  255. part.Position = handle.Position
  256. part1 = Instance.new("Part",char)
  257. part1.Size = Vector3.new(0.1,0.1,0.1)
  258. part1.Position = handle.Position
  259. part2 = Instance.new("Part",char)
  260. part2.Size = Vector3.new(0.1,0.1,0.1)
  261. part2.Position = handle.Position
  262. part3 = Instance.new("Part",char)
  263. part3.Size = Vector3.new(0.1,0.1,0.1)
  264. part3.Position = handle.Position
  265. part4 = Instance.new("Part",char)
  266. part4.Size = Vector3.new(0.1,0.1,0.1)
  267. part4.Position = handle.Position
  268. part5 = Instance.new("Part",char)
  269. part5.Size = Vector3.new(0.1,0.1,0.1)
  270. part5.Position = handle.Position
  271. part6 = Instance.new("Part",char)
  272. part6.Size = Vector3.new(0.1,0.1,0.1)
  273. part6.Position = handle.Position
  274. part7 = Instance.new("Part",char)
  275. part7.Size = Vector3.new(0.1,0.1,0.1)
  276. part7.Position = handle.Position
  277. part8 = Instance.new("Part",char)
  278. part8.Size = Vector3.new(0.1,0.1,0.1)
  279. part8.Position = handle.Position
  280. part9 = Instance.new("Part",char)
  281. part9.Size = Vector3.new(0.1,0.1,0.1)
  282. part9.Position = handle.Position
  283. part10 = Instance.new("Part",char)
  284. part10.Size = Vector3.new(0.1,0.1,0.1)
  285. part10.Position = handle.Position
  286. KnifeMesh.TextureId = ""
  287. for i = 1,100 do
  288. wait()
  289. colorred = colorred + 0
  290. handle.Color = Color3.new(0,255,255)
  291. end
  292. for i = 1,120 do
  293. wait()
  294. kill.Transparency = kill.Transparency - 0.005
  295. end
  296.  
  297. function onTouched(hit)
  298. if hit.Parent:FindFirstChild("Immune") == nil then
  299. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  300. hit.Parent:FindFirstChild("Head").Anchored = true
  301. hitsound:Play()
  302.  
  303.  
  304.  
  305. hit.Parent:BreakJoints()
  306. hit.Parent:FindFirstChild("Humanoid").Health = -1
  307. end
  308.  
  309.  
  310.  
  311.  
  312.  
  313. end
  314. end
  315. kill.Touched:connect(onTouched)
  316.  
  317.  
  318. kill1 = Instance.new("Part",char)
  319. kill1.Position = torso.Position - Vector3.new(0,2,0)
  320. kill1.Size = Vector3.new(200,300,200)
  321. kill1.Name = "Immune"
  322. kill1.CanCollide = false
  323. kill1.Transparency = 1
  324. kill1.Anchored = false
  325. kill1.Material = "Neon"
  326. kill1.BrickColor = BrickColor.new("Toothpaste")
  327.  
  328. function onTouched(hit)
  329. if hit.Parent:FindFirstChild("Immune") == nil then
  330. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  331. hit.Parent:FindFirstChild("Head").Anchored = true
  332. hitsound:Play()
  333.  
  334.  
  335.  
  336. hit.Parent:FindFirstChild("Humanoid").Health = -1
  337. hit.Parent:BreakJoints()
  338. end
  339.  
  340.  
  341.  
  342. end
  343.  
  344. end
  345. kill1.Touched:connect(onTouched)
  346. for i = 1,50 do
  347. wait()
  348. killmesh.Scale = killmesh.Scale + Vector3.new(0,0.2,0)
  349. end
  350. wait(2)
  351. kill.Anchored = false
  352. canattack = true
  353. idle = fasle
  354. walking = fasle
  355. if char:FindFirstChild("TalkingBillBoard")~= nil then
  356. char:FindFirstChild("TalkingBillBoard"):destroy()
  357. end
  358. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=129619847"
  359. colorred = 0
  360. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  361. end
  362. end
  363. end)
  364. slashsound = Instance.new("Sound",torso)
  365. slashsound.SoundId = "http://www.roblox.com/asset/?id=12222208"
  366. slashsound.Volume = 10
  367. hitsound = Instance.new("Sound",torso)
  368. hitsound.SoundId = "http://www.roblox.com/asset/?id=743521497"
  369. hitsound.Volume = 10
  370. Mouse.KeyDown:connect(function(key)
  371. if key == "q" then
  372. if canattack == true then
  373. canattack = false
  374. idle = false
  375. walking = false
  376. wait(0.5)
  377. slash = Instance.new("Part",char)
  378. slash.CanCollide = false
  379. slash.Transparency = 1
  380. slash.Size = Vector3.new(5,5,1)
  381. slashweld = Instance.new("Weld",slash)
  382. slashweld.Part0 = torso
  383. slashweld.Part1 = slash
  384. slashweld.C0 = CFrame.new(0,0,-2)
  385. slashdecal = Instance.new("Decal",slash)
  386. slashdecal.Texture = "http://www.roblox.com/asset/?id=0"
  387.  
  388. slashdecal1 = Instance.new("Decal",slash)
  389. slashdecal1.Face = "Back"
  390. slashdecal1.Texture = "http://www.roblox.com/asset/?id=0"
  391. slashsound:Play()
  392. function onTouched(hit)
  393. if hit.Parent:FindFirstChild("Immune") == nil then
  394. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  395. hit.Parent:FindFirstChild("Head").Anchored = true
  396. slash.TouchInterest:Destroy()
  397. wait(1)
  398. hitsound:Play()
  399.  
  400. gothit = Instance.new("Part",hit)
  401. gothit.CanCollide = false
  402. gothit.Transparency = 1
  403. gothit.Size = Vector3.new(10,10,1)
  404. gothitweld1 = Instance.new("Weld",gothit)
  405. gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
  406. gothitweld1.Part1 = gothit
  407.  
  408. gothitweld1.C0 = CFrame.new(0,4,0)
  409. gothitdecal = Instance.new("Decal",gothit)
  410. gothitdecal.Texture = "http://www.roblox.com/asset/?id=0"
  411. love = love + 1
  412. gothit = Instance.new("Part",hit)
  413. gothit.CanCollide = false
  414. gothit.Transparency = 1
  415. gothit.Size = Vector3.new(10,10,1)
  416. gothitweld = Instance.new("Weld",gothit)
  417. gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
  418. gothitweld.Part1 = gothit
  419. gothitweld.C0 = CFrame.new(0,5,0)
  420.  
  421. gothitdecal = Instance.new("Decal",gothit)
  422. gothitdecal.Texture = "http://www.roblox.com/asset/?id=0"
  423. gothitdecal.Face = "Back"
  424. gothitweld.C0 = CFrame.new(0,3.5,0)
  425. gothitweld1.C0 = CFrame.new(0,3.5,0)
  426. wait(0.2)
  427. gothitweld.C0 = CFrame.new(0,4,0)
  428. gothitweld1.C0 = CFrame.new(0,4,0)
  429. wait(0.2)
  430. gothitweld.C0 = CFrame.new(0,3.5,0)
  431. gothitweld1.C0 = CFrame.new(0,3.5,0)
  432. wait(0.2)
  433. gothitweld.C0 = CFrame.new(0,4,0)
  434. gothitweld1.C0 = CFrame.new(0,4,0)
  435. wait(0.2)
  436. gothitweld.C0 = CFrame.new(0,3.5,0)
  437. gothitweld1.C0 = CFrame.new(0,3.5,0)
  438. wait(0.2)
  439. gothitweld.C0 = CFrame.new(0,4,0)
  440. gothitweld1.C0 = CFrame.new(0,4,0)
  441. wait(0.2)
  442. gothitweld.C0 = CFrame.new(0,3.5,0)
  443. gothitweld1.C0 = CFrame.new(0,3.5,0)
  444. wait(0.2)
  445. gothitweld.C0 = CFrame.new(0,4,0)
  446. gothitweld1.C0 = CFrame.new(0,4,0)
  447. wait(0.2)
  448. gothitweld.C0 = CFrame.new(0,3.5,0)
  449. gothitweld1.C0 = CFrame.new(0,3.5,0)
  450. wait(0.2)
  451. gothitweld.C0 = CFrame.new(0,4,0)
  452. gothitweld1.C0 = CFrame.new(0,4,0)
  453. wait(0.2)
  454. gothitweld.C0 = CFrame.new(0,3.5,0)
  455. gothitweld1.C0 = CFrame.new(0,3.5,0)
  456. wait(0.2)
  457. gothitweld.C0 = CFrame.new(0,4,0)
  458. gothitweld1.C0 = CFrame.new(0,4,0)
  459. wait(0.2)
  460.  
  461. hit.Parent:FindFirstChild("Humanoid").Health = -1
  462. hit.Parent:BreakJoints()
  463. else
  464. if hit.Parent:IsA("Model") then
  465. wait(1)
  466.  
  467. hit.Parent:BreakJoints()
  468.  
  469.  
  470.  
  471.  
  472.  
  473. end
  474. if hit:IsA("Part") and hit.Size.X < 500 then
  475.  
  476. hit.BrickColor = BrickColor.new("Toothpaste")
  477. hitsound:Play()
  478. for i = 1,20 do
  479. wait()
  480. hit.Transparency = hit.Transparency + 0.05
  481. end
  482.  
  483.  
  484.  
  485.  
  486. end
  487. end
  488.  
  489. end
  490.  
  491. end
  492. slash.Touched:connect(onTouched)
  493.  
  494. for i = 1, 5 do
  495. wait()
  496. 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)
  497. 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)
  498. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  499. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  500. 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)
  501. 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)
  502.  
  503. end
  504. slashdecal.Texture = "http://www.roblox.com/asset/?id=0"
  505. slashdecal1.Texture = "http://www.roblox.com/asset/?id=0"
  506. for i = 1, 5 do
  507. wait()
  508. 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)
  509. 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)
  510. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  511. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  512. 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)
  513. 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)
  514.  
  515. end
  516. slashdecal.Texture = "http://www.roblox.com/asset/?id=0"
  517. slashdecal1.Texture = "http://www.roblox.com/asset/?id=0"
  518.  
  519. wait(0.1)
  520. slash:Destroy()
  521. canattack = true
  522. idle = true
  523. walking = true
  524. end
  525. end
  526. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement