Advertisement
PASTEBINWARRIOR

Untitled

Jul 21st, 2016
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 115.93 KB | None | 0 0
  1. Player = game:GetService("Players").lifeepic
  2. Character = Player.Character
  3. PlayerGui = Player.PlayerGui
  4. Backpack = Player.Backpack
  5. Torso = Character.Torso
  6. Head = Character.Head
  7. LeftArm = Character["Left Arm"]
  8. LeftLeg = Character["Left Leg"]
  9. RightArm = Character["Right Arm"]
  10. RightLeg = Character["Right Leg"]
  11. LS = Torso["Left Shoulder"]
  12. LH = Torso["Left Hip"]
  13. RS = Torso["Right Shoulder"]
  14. RH = Torso["Right Hip"]
  15. player = nil
  16.  
  17. RSH, LSH = nil, nil
  18.  
  19. RW, LW = Instance.new("Weld"), Instance.new("Weld")
  20.  
  21. anim = "none"
  22. running = false
  23.  
  24. if Character:findFirstChild("Sword",true) ~= nil then
  25. Character:findFirstChild("Sword",true).Parent = nil
  26. end
  27. mode = "Swing1"
  28. category = 1
  29. Ran = false
  30. eq = false
  31. Activated = false
  32. effect = false
  33. deb = false
  34.  
  35. for iii,eee in pairs(Character:GetChildren()) do
  36. if eee.className == "Hat" then
  37. eee.Handle.Mesh.VertexColor = Vector3.new(0.1,0.1,0.1)
  38. end
  39. end
  40.  
  41. Head.BrickColor = BrickColor.new("Dark stone grey")
  42.  
  43.  
  44. --\Assets
  45. local asset = "http://roblox.com/asset/?id="
  46. meshids = {
  47. ["penguin"] = 15853464,
  48. ["ring"] = 3270017,
  49. ["spike"] = 1033714,
  50. ["cone"] = 1082802,
  51. ["crown"] = 20329976,
  52. ["crossbow"] = 15886761,
  53. ["cloud"] = 1095708,
  54. ["mjolnir"] = 1279013,
  55. ["diamond"] = 9756362,
  56. ["hand"] = 37241605,
  57. ["fist"] = 65322375,
  58. ["skull"] = 36869983,
  59. ["totem"] = 35624068,
  60. ["spikeb"] = 9982590,
  61. ["dragon"] = 58430372,
  62. ["fish"] = 31221717,
  63. ["coffee"] = 15929962,
  64. ["spiral"] = 1051557,
  65. ["ramen"] = 19380188,
  66. ["lightning"] = 72583597,
  67. ["bullet"]=2697549,
  68. ["Ares"]=50798664,
  69. ["Tex"]=52389512
  70. }
  71. --\Sounds
  72. local sounds = {
  73. Gun = "2760979",
  74. Gun2 = "10209859",
  75. Click = "12222076",
  76. Imbue = "2785493",
  77. Ele = "2800815",
  78. Curse = "13775494",
  79. Slash = "rbxasset://sounds/swordslash.wav",
  80. Bow = "16211041" ,
  81. SpellCharge = "1369158",
  82. SpellDischarge = "2974000",
  83. Rocket = "rbxasset://sounds/Rocket shot.wav"
  84. }
  85. --\Sound function
  86. function sound(id)
  87. local sound = Instance.new("Sound", Torso)
  88. sound.SoundId = id
  89. sound.Volume = 0.5
  90. sound:play()
  91. sound:stop()
  92. wait()
  93. sound:play()
  94. coroutine.resume(coroutine.create(function()
  95. wait(1)
  96. sound:remove()
  97. end))
  98. end
  99. --\Part creation function
  100. function create(prt, parent, siz, cf, can, col, anc, brea, tran, ref, form, weld, part1, cf2, mesh, sca, type, id, bckup)
  101. part = Instance.new(prt)
  102. part.formFactor = form
  103. part.BrickColor = BrickColor.new(col)
  104. part.Size = siz
  105. part.Anchored = anc
  106. part.Transparency = tran
  107. part.Name = "ShipPart"
  108. part.Reflectance = ref
  109. part.CFrame = cf
  110. part.CanCollide = can
  111. part.TopSurface = "Smooth"
  112. part.BottomSurface = "Smooth"
  113. if brea == true then
  114. part:BreakJoints()
  115. end
  116. if weld == true then
  117. weld = Instance.new("Weld")
  118. weld.Part0 = part
  119. weld.Part1 = part1
  120. weld.C1 = cf2
  121. weld.Parent = part
  122. end
  123. if mesh ~= nil then
  124. mesh = Instance.new(mesh)
  125. mesh.Scale = sca
  126. if bckup == true then
  127. mesh.MeshType = "Sphere"
  128. end
  129. if mesh == "SpecialMesh" then
  130. mesh.MeshType = type
  131. pcall(function()
  132. if type == "Wedge" then
  133. mesh.MeshType = "Wedge"
  134. end
  135. if type == "FileMesh" then
  136. mesh.MeshType = "FileMesh"
  137. mesh.MeshId = id
  138. end
  139. end)
  140. end
  141. mesh.Parent = part
  142. end
  143. part.Parent = parent
  144. return part,weld
  145. end
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152. local swordholder = Instance.new("Model")
  153. swordholder.Name = "Sword"
  154. swordholder.Parent = Character
  155.  
  156.  
  157. local handle = Instance.new("Part")
  158. handle.formFactor = 1
  159. handle.CanCollide = false
  160. handle.Name = "Handle1"
  161. handle.Locked = true
  162. handle.Size = Vector3.new(1,1,1)
  163. handle.Parent = swordholder
  164. local msh1 = Instance.new("SpecialMesh")
  165. msh1.Scale = Vector3.new(0.4,1,0.2)
  166. msh1.Parent = handle
  167. msh1.MeshType = "Brick"
  168. handle.Transparency = 0
  169. handle.Reflectance = 0.3
  170. handle.BrickColor = BrickColor.new("Mid grey")
  171.  
  172. local w1 = Instance.new("Weld")
  173. w1.Parent = handle
  174. w1.Part0 = handle
  175. w1.Part1 = Torso
  176. w1.C0 = CFrame.new(-0.7, -2, -0.7) --* CFrame.Angles(0, 0, 1)
  177. w1.C0 = w1.C0 * CFrame.Angles(0, 0, 3.7)
  178.  
  179. function Swing1(hit)
  180. if hit.Parent:findFirstChild("Humanoid") then
  181. if Activated == true then
  182. hit.Parent:findFirstChild("Humanoid"):TakeDamage(math.random(10,50))
  183. end
  184. end
  185. end
  186. handle.Touched:connect(Swing1)
  187. function ht2(hit)
  188. if hit.Parent:findFirstChild("Humanoid") and hit.Parent.Name ~= Character.Name then
  189. hit.Parent:findFirstChild("Humanoid"):TakeDamage(math.random(20,30))
  190. hit.Parent:findFirstChild("Humanoid").Sit = true
  191. end
  192. end
  193.  
  194. ---------------------------------
  195. function t()
  196. local p19 = Instance.new("Part")
  197. p19.formFactor = 1
  198. p19.CanCollide = false
  199. p19.Name = "p19"
  200. p19.Locked = true
  201. p19.Size = Vector3.new(1,1,1)
  202. p19.Parent = swordholder
  203. local msh39 = Instance.new("SpecialMesh")
  204. msh39.Scale = Vector3.new(2,1.2,2.5)
  205. msh39.Parent = p19
  206. msh39.MeshId = "http://www.roblox.com/asset/?id=50798664"
  207. msh39.TextureId = "http://www.roblox.com/asset/?id=52389512"
  208. p19.Transparency = 0
  209. p19.Reflectance = 0.3
  210. p19.BrickColor = BrickColor.new("Mid grey")
  211. p19.Touched:connect(ht2)
  212. local w29 = Instance.new("Weld")
  213. w29.Parent = p19
  214. w29.Part0 = p19
  215. w29.Name = "W29"
  216. w29.Part1 = Torso
  217. w29.C0 = CFrame.new(-0.7, 1.2, -1)
  218. w29.C0 = w29.C0 * CFrame.Angles(-0.2, -0.5, 1.3)
  219.  
  220.  
  221.  
  222. end
  223.  
  224.  
  225.  
  226. t()
  227. ------------------------------------------------------
  228.  
  229. local p1 = Instance.new("Part")
  230. p1.formFactor = 1
  231. p1.CanCollide = false
  232. p1.Name = "p1"
  233. p1.Locked = true
  234. p1.Size = Vector3.new(1,1,1)
  235. p1.Parent = swordholder
  236. local msh3 = Instance.new("SpecialMesh")
  237. msh3.Scale = Vector3.new(1.5,0.3,0.2)
  238. msh3.Parent = p1
  239. msh3.MeshType = "Brick"
  240. p1.Transparency = 0
  241. p1.Reflectance = 0.3
  242. p1.BrickColor = BrickColor.new("Mid grey")
  243.  
  244. local w2 = Instance.new("Weld")
  245. w2.Parent = p1
  246. w2.Part0 = p1
  247. w2.Part1 = handle
  248. w2.C0 = CFrame.new(0, 0.7, 0) --* CFrame.Angles(0, 0, 1)
  249. w2.C0 = w2.C0 * CFrame.Angles(0, 0, 0)
  250.  
  251.  
  252.  
  253. local p2 = Instance.new("Part")
  254. p2.formFactor = 1
  255. p2.CanCollide = false
  256. p2.Name = "p2"
  257. p2.Locked = true
  258. p2.Size = Vector3.new(1,1,1)
  259. p2.Parent = swordholder
  260. local msh4 = Instance.new("SpecialMesh")
  261. msh4.Scale = Vector3.new(0.3,0.25,0.1)
  262. msh4.Parent = p2
  263. msh4.MeshType = "Wedge"
  264. p2.Transparency = 0
  265. p2.Reflectance = 0.3
  266. p2.BrickColor = BrickColor.new("Mid grey")
  267.  
  268. local w3 = Instance.new("Weld")
  269. w3.Parent = p2
  270. w3.Part0 = p2
  271. w3.Part1 = p1
  272. w3.C0 = CFrame.new(0.85, -0.25, 0.04) --* CFrame.Angles(0, 0, 1)
  273. w3.C0 = w3.C0 * CFrame.Angles(3.15, 0, 0)
  274.  
  275. local p22 = Instance.new("Part")
  276. p22.formFactor = 1
  277. p22.CanCollide = false
  278. p22.Name = "p22"
  279. p22.Locked = true
  280. p22.Size = Vector3.new(1,1,1)
  281. p22.Parent = swordholder
  282. local msh44 = Instance.new("SpecialMesh")
  283. msh44.Scale = Vector3.new(0.3,0.25,0.1)
  284. msh44.Parent = p22
  285. msh44.MeshType = "Wedge"
  286. p22.Transparency = 0
  287. p22.Reflectance = 0.3
  288. p22.BrickColor = BrickColor.new("Mid grey")
  289.  
  290. local w33 = Instance.new("Weld")
  291. w33.Parent = p22
  292. w33.Part0 = p22
  293. w33.Part1 = p1
  294. w33.C0 = CFrame.new(-0.85, -0.25, 0.04) --* CFrame.Angles(0, 0, 1)
  295. w33.C0 = w33.C0 * CFrame.Angles(3.15, 3.15, 0)
  296.  
  297.  
  298. local p3 = Instance.new("Part")
  299. p3.formFactor = 1
  300. p3.CanCollide = false
  301. p3.Name = "p3"
  302. p3.Locked = true
  303. p3.Size = Vector3.new(1,1,1)
  304. p3.Parent = swordholder
  305. local msh5 = Instance.new("BlockMesh")
  306. msh5.Scale = Vector3.new(0.3,0.25,0.1)
  307. msh5.Parent = p3
  308. p3.Transparency = 0
  309. p3.Reflectance = 0.3
  310. p3.BrickColor = BrickColor.new("Mid grey")
  311.  
  312. local w4 = Instance.new("Weld")
  313. w4.Parent = p3
  314. w4.Part0 = p3
  315. w4.Part1 = p1
  316. w4.C0 = CFrame.new(0.85, 0, 0) --* CFrame.Angles(0, 0, 1)
  317. w4.C0 = w4.C0 * CFrame.Angles(0, 0, 0)
  318.  
  319.  
  320. local p33 = Instance.new("Part")
  321. p33.formFactor = 1
  322. p33.CanCollide = false
  323. p33.Name = "p3"
  324. p33.Locked = true
  325. p33.Size = Vector3.new(1,1,1)
  326. p33.Parent = swordholder
  327. local msh55 = Instance.new("BlockMesh")
  328. msh55.Scale = Vector3.new(0.3,0.25,0.1)
  329. msh55.Parent = p33
  330. p33.Transparency = 0
  331. p33.Reflectance = 0.3
  332. p33.BrickColor = BrickColor.new("Mid grey")
  333.  
  334. local w44 = Instance.new("Weld")
  335. w44.Parent = p33
  336. w44.Part0 = p33
  337. w44.Part1 = p1
  338. w44.C0 = CFrame.new(-0.85, 0, 0) --* CFrame.Angles(0, 0, 1)
  339. w44.C0 = w44.C0 * CFrame.Angles(0, 0, 0)
  340.  
  341.  
  342. local p222 = Instance.new("Part")
  343. p222.formFactor = 1
  344. p222.CanCollide = false
  345. p222.Name = "p222"
  346. p222.Locked = true
  347. p222.Size = Vector3.new(1,1,1)
  348. p222.Parent = swordholder
  349. local msh444 = Instance.new("SpecialMesh")
  350. msh444.Scale = Vector3.new(0.3,0.25,0.1)
  351. msh444.Parent = p222
  352. msh444.MeshType = "Wedge"
  353. p222.Transparency = 0
  354. p222.Reflectance = 0.3
  355. p222.BrickColor = BrickColor.new("Mid grey")
  356.  
  357. local w333 = Instance.new("Weld")
  358. w333.Parent = p222
  359. w333.Part0 = p222
  360. w333.Part1 = p1
  361. w333.C0 = CFrame.new(0.85, -0.25, 0.04) --* CFrame.Angles(0, 0, 1)
  362. w333.C0 = w333.C0 * CFrame.Angles(3.15, 3.15, 0)
  363.  
  364. local p2222 = Instance.new("Part")
  365. p2222.formFactor = 1
  366. p2222.CanCollide = false
  367. p2222.Name = "p2222"
  368. p2222.Locked = true
  369. p2222.Size = Vector3.new(1,1,1)
  370. p2222.Parent = swordholder
  371. local msh4444 = Instance.new("SpecialMesh")
  372. msh4444.Scale = Vector3.new(0.3,0.25,0.1)
  373. msh4444.Parent = p2222
  374. msh4444.MeshType = "Wedge"
  375. p2222.Transparency = 0
  376. p2222.Reflectance = 0.3
  377. p2222.BrickColor = BrickColor.new("Mid grey")
  378.  
  379. local w3333 = Instance.new("Weld")
  380. w3333.Parent = p2222
  381. w3333.Part0 = p2222
  382. w3333.Part1 = p1
  383. w3333.C0 = CFrame.new(-0.85, -0.25, 0.04) --* CFrame.Angles(0, 0, 1)
  384. w3333.C0 = w3333.C0 * CFrame.Angles(3.15, 0, 0)
  385.  
  386.  
  387.  
  388. local p4 = Instance.new("Part")
  389. p4.formFactor = 1
  390. p4.CanCollide = false
  391. p4.Name = "p4"
  392. p4.Locked = true
  393. p4.Size = Vector3.new(1,1,1)
  394. p4.Parent = swordholder
  395. local msh5 = Instance.new("BlockMesh")
  396. msh5.Scale = Vector3.new(1.5,4.5,0.15)
  397. msh5.Parent = p4
  398. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  399. --msh3.MeshType = "Brick"
  400. p4.Transparency = 0
  401. p4.Reflectance = 0.2
  402. p4.BrickColor = BrickColor.new("Dark stone grey")
  403.  
  404.  
  405.  
  406. local w5 = Instance.new("Weld")
  407. w5.Parent = p4
  408. w5.Part0 = p4
  409. w5.Part1 = p1
  410. w5.C0 = CFrame.new(0, 2.8, 0) --* CFrame.Angles(0, 0, 1)
  411. w5.C0 = w5.C0 * CFrame.Angles(0, 0, 0)
  412.  
  413.  
  414. local p4a = Instance.new("Part")
  415. p4a.formFactor = 1
  416. p4a.CanCollide = false
  417. p4a.Name = "p4a"
  418. p4a.Locked = true
  419. p4a.Size = Vector3.new(1,1,1)
  420. p4a.Parent = swordholder
  421. local msh5a = Instance.new("BlockMesh")
  422. msh5a.Scale = Vector3.new(1.6,0.9,0.2)
  423. msh5a.Parent = p4a
  424. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  425. --msh3.MeshType = "Brick"
  426. p4a.Transparency = 0
  427. p4a.Reflectance = 0
  428. p4a.BrickColor = BrickColor.new("Black")
  429.  
  430. local w5a = Instance.new("Weld")
  431. w5a.Parent = p4a
  432. w5a.Part0 = p4a
  433. w5a.Part1 = Torso
  434. w5a.C0 = CFrame.new(0.695,0,-0.7)
  435. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  436.  
  437. local p4a = Instance.new("Part")
  438. p4a.formFactor = 1
  439. p4a.CanCollide = false
  440. p4a.Name = "p4a"
  441. p4a.Locked = true
  442. p4a.Size = Vector3.new(1,1,1)
  443. p4a.Parent = swordholder
  444. local msh5a = Instance.new("SpecialMesh")
  445. msh5a.Scale = Vector3.new(0.6,0.55,0.6)
  446. msh5a.Parent = p4a
  447. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  448. msh5a.MeshType = "Sphere"
  449. p4a.Transparency = 0
  450. p4a.Reflectance = 0
  451. p4a.BrickColor = BrickColor.new("Black")
  452.  
  453. local w5a = Instance.new("Weld")
  454. w5a.Parent = p4a
  455. w5a.Part0 = p4a
  456. w5a.Part1 = Torso
  457. w5a.C0 = CFrame.new(0.695,0,-0.7)
  458. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  459.  
  460. local p4a = Instance.new("Part")
  461. p4a.formFactor = 1
  462. p4a.CanCollide = false
  463. p4a.Name = "p4a"
  464. p4a.Locked = true
  465. p4a.Size = Vector3.new(1,1,1)
  466. p4a.Parent = swordholder
  467. local msh5a = Instance.new("BlockMesh")
  468. msh5a.Scale = Vector3.new(0.2,0.9,0.4)
  469. msh5a.Parent = p4a
  470. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  471. --msh3.MeshType = "Brick"
  472. p4a.Transparency = 0
  473. p4a.Reflectance = 0
  474. p4a.BrickColor = BrickColor.new("Black")
  475.  
  476. local w5a = Instance.new("Weld")
  477. w5a.Parent = p4a
  478. w5a.Part0 = p4a
  479. w5a.Part1 = Torso
  480. w5a.C0 = CFrame.new(1.58,0,-0.6)
  481. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  482.  
  483. local p4a = Instance.new("Part")
  484. p4a.formFactor = 1
  485. p4a.CanCollide = false
  486. p4a.Name = "p4a"
  487. p4a.Locked = true
  488. p4a.Size = Vector3.new(1,1,1)
  489. p4a.Parent = swordholder
  490. local msh5a = Instance.new("BlockMesh")
  491. msh5a.Scale = Vector3.new(0.2,0.9,0.4)
  492. msh5a.Parent = p4a
  493. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  494. --msh3.MeshType = "Brick"
  495. p4a.Transparency = 0
  496. p4a.Reflectance = 0
  497. p4a.BrickColor = BrickColor.new("Black")
  498.  
  499. local w5a = Instance.new("Weld")
  500. w5a.Parent = p4a
  501. w5a.Part0 = p4a
  502. w5a.Part1 = Torso
  503. w5a.C0 = CFrame.new(-0.2,0,-0.6)
  504. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  505.  
  506.  
  507. local p4a = Instance.new("Part")
  508. p4a.formFactor = 1
  509. p4a.CanCollide = false
  510. p4a.Name = "p4a"
  511. p4a.Locked = true
  512. p4a.Size = Vector3.new(1,1,1)
  513. p4a.Parent = swordholder
  514. local msh5a = Instance.new("BlockMesh")
  515. msh5a.Scale = Vector3.new(0.5,0.45,0.2)
  516. msh5a.Parent = p4a
  517. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  518. --msh3.MeshType = "Brick"
  519. p4a.Transparency = 0
  520. p4a.Reflectance = 0
  521. p4a.BrickColor = BrickColor.new("Black")
  522.  
  523. local w5a = Instance.new("Weld")
  524. w5a.Parent = p4a
  525. w5a.Part0 = p4a
  526. w5a.Part1 = Torso
  527. w5a.C0 = CFrame.new(1.45,0,-0.3)
  528. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  529.  
  530.  
  531.  
  532.  
  533. local p5 = Instance.new("Part")
  534. p5.formFactor = 1
  535. p5.CanCollide = false
  536. p5.Name = "p5"
  537. p5.Locked = true
  538. p5.Size = Vector3.new(1,1,1)
  539. p5.Parent = swordholder
  540. local msh6 = Instance.new("SpecialMesh")
  541. msh6.Scale = Vector3.new(0.15,1,1.5)
  542. msh6.Parent = p5
  543. msh6.MeshType = "Wedge"
  544. --msh6.TextureId = "http://www.roblox.com/asset/?id=12352036"
  545. p5.Transparency = 0
  546. p5.Reflectance = 0.2
  547. p5.BrickColor = BrickColor.new("Dark stone grey")
  548.  
  549. local w6 = Instance.new("Weld")
  550. w6.Parent = p5
  551. w6.Part0 = p5
  552. w6.Part1 = p4
  553. w6.C0 = CFrame.new(0, -3.295, -0.02) --* CFrame.Angles(0, 0, 1)
  554. w6.C0 = w6.C0 * CFrame.Angles(0, 1.575, 3.15)
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562. ----PARTS
  563.  
  564.  
  565.  
  566. local p4b = Instance.new("Part")
  567. p4b.formFactor = 1
  568. p4b.CanCollide = false
  569. p4b.Name = "p4b"
  570. p4b.Locked = true
  571. p4b.Size = Vector3.new(1,1,1)
  572. p4b.Parent = swordholder
  573. local msh5b = Instance.new("BlockMesh")
  574. msh5b.Scale = Vector3.new(0.4,0.5,0.17)
  575. msh5b.Parent = p4b
  576. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  577. --msh3.MeshType = "Brick"
  578. p4b.Transparency = 0
  579. p4b.Reflectance = 0.4
  580. p4b.BrickColor = BrickColor.new("Black")
  581.  
  582.  
  583.  
  584. local w5b = Instance.new("Weld")
  585. w5b.Parent = p4b
  586. w5b.Part0 = p4b
  587. w5b.Part1 = p1
  588. w5b.C0 = CFrame.new(0, 0.4, 0) --* CFrame.Angles(0, 0, 1)
  589. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  590.  
  591. local p4bb = Instance.new("Part")
  592. p4bb.formFactor = 1
  593. p4bb.CanCollide = false
  594. p4bb.Name = "p4b"
  595. p4bb.Locked = true
  596. p4bb.Size = Vector3.new(1,1,1)
  597. p4bb.Parent = swordholder
  598. local msh5bb = Instance.new("BlockMesh")
  599. msh5bb.Scale = Vector3.new(0.15,0.5,0.17)
  600. msh5bb.Parent = p4bb
  601. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  602. --msh3.MeshType = "Brick"
  603. p4bb.Transparency = 0
  604. p4bb.Reflectance = 0.4
  605. p4bb.BrickColor = BrickColor.new("Black")
  606.  
  607.  
  608.  
  609. local w5bb = Instance.new("Weld")
  610. w5bb.Parent = p4bb
  611. w5bb.Part0 = p4bb
  612. w5bb.Part1 = p4b
  613. w5bb.C0 = CFrame.new(-0.1, 0.6, 0) --* CFrame.Angles(0, 0, 1)
  614. w5bb.C0 = w5bb.C0 * CFrame.Angles(0, 0, 0.9)
  615.  
  616.  
  617. local p4bb = Instance.new("Part")
  618. p4bb.formFactor = 1
  619. p4bb.CanCollide = false
  620. p4bb.Name = "p4b"
  621. p4bb.Locked = true
  622. p4bb.Size = Vector3.new(1,1,1)
  623. p4bb.Parent = swordholder
  624. local msh5bb = Instance.new("BlockMesh")
  625. msh5bb.Scale = Vector3.new(0.15,0.5,0.17)
  626. msh5bb.Parent = p4bb
  627. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  628. --msh3.MeshType = "Brick"
  629. p4bb.Transparency = 0
  630. p4bb.Reflectance = 0.4
  631. p4bb.BrickColor = BrickColor.new("Black")
  632.  
  633.  
  634.  
  635. local w5bb = Instance.new("Weld")
  636. w5bb.Parent = p4bb
  637. w5bb.Part0 = p4bb
  638. w5bb.Part1 = p4b
  639. w5bb.C0 = CFrame.new(0.1, 0.6, 0) --* CFrame.Angles(0, 0, 1)
  640. w5bb.C0 = w5bb.C0 * CFrame.Angles(0, 0, -0.9)
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649. local p4b = Instance.new("Part")
  650. p4b.formFactor = 1
  651. p4b.CanCollide = false
  652. p4b.Name = "p4b"
  653. p4b.Locked = true
  654. p4b.Size = Vector3.new(1,1,1)
  655. p4b.Parent = swordholder
  656. local msh5b = Instance.new("BlockMesh")
  657. msh5b.Scale = Vector3.new(0.15,0.5,0.17)
  658. msh5b.Parent = p4b
  659. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  660. --msh3.MeshType = "Brick"
  661. p4b.Transparency = 0
  662. p4b.Reflectance = 0.4
  663. p4b.BrickColor = BrickColor.new("Black")
  664.  
  665.  
  666.  
  667. local w5b = Instance.new("Weld")
  668. w5b.Parent = p4b
  669. w5b.Part0 = p4b
  670. w5b.Part1 = p1
  671. w5b.C0 = CFrame.new(-0.6, 1.35, 0) --* CFrame.Angles(0, 0, 1)
  672. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  673.  
  674.  
  675.  
  676. local p4b = Instance.new("Part")
  677. p4b.formFactor = 1
  678. p4b.CanCollide = false
  679. p4b.Name = "p4b"
  680. p4b.Locked = true
  681. p4b.Size = Vector3.new(1,1,1)
  682. p4b.Parent = swordholder
  683. local msh5b = Instance.new("BlockMesh")
  684. msh5b.Scale = Vector3.new(0.15,0.5,0.17)
  685. msh5b.Parent = p4b
  686. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  687. --msh3.MeshType = "Brick"
  688. p4b.Transparency = 0
  689. p4b.Reflectance = 0.4
  690. p4b.BrickColor = BrickColor.new("Black")
  691.  
  692.  
  693.  
  694. local w5b = Instance.new("Weld")
  695. w5b.Parent = p4b
  696. w5b.Part0 = p4b
  697. w5b.Part1 = p1
  698. w5b.C0 = CFrame.new(0.6, 1.35, 0) --* CFrame.Angles(0, 0, 1)
  699. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  700.  
  701.  
  702.  
  703.  
  704. local p4b = Instance.new("Part")
  705. p4b.formFactor = 1
  706. p4b.CanCollide = false
  707. p4b.Name = "p4b"
  708. p4b.Locked = true
  709. p4b.Size = Vector3.new(1,1,1)
  710. p4b.Parent = swordholder
  711. local msh5b = Instance.new("BlockMesh")
  712. msh5b.Scale = Vector3.new(0.15,0.15,0.17)
  713. msh5b.Parent = p4b
  714. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  715. --msh3.MeshType = "Brick"
  716. p4b.Transparency = 0
  717. p4b.Reflectance = 0.4
  718. p4b.BrickColor = BrickColor.new("Black")
  719.  
  720.  
  721.  
  722. local w5b = Instance.new("Weld")
  723. w5b.Parent = p4b
  724. w5b.Part0 = p4b
  725. w5b.Part1 = p1
  726. w5b.C0 = CFrame.new(-1.7, 0.65, 0) --* CFrame.Angles(0, 0, 1)
  727. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0.9)
  728.  
  729.  
  730.  
  731. local p4b = Instance.new("Part")
  732. p4b.formFactor = 1
  733. p4b.CanCollide = false
  734. p4b.Name = "p4b"
  735. p4b.Locked = true
  736. p4b.Size = Vector3.new(1,1,1)
  737. p4b.Parent = swordholder
  738. local msh5b = Instance.new("BlockMesh")
  739. msh5b.Scale = Vector3.new(0.15,0.15,0.17)
  740. msh5b.Parent = p4b
  741. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  742. --msh3.MeshType = "Brick"
  743. p4b.Transparency = 0
  744. p4b.Reflectance = 0.4
  745. p4b.BrickColor = BrickColor.new("Black")
  746.  
  747.  
  748.  
  749. local w5b = Instance.new("Weld")
  750. w5b.Parent = p4b
  751. w5b.Part0 = p4b
  752. w5b.Part1 = p1
  753. w5b.C0 = CFrame.new(1.7, 0.65, 0) --* CFrame.Angles(0, 0, 1)
  754. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, -0.9)
  755.  
  756.  
  757.  
  758.  
  759.  
  760. local p4b = Instance.new("Part")
  761. p4b.formFactor = 1
  762. p4b.CanCollide = false
  763. p4b.Name = "p4b"
  764. p4b.Locked = true
  765. p4b.Size = Vector3.new(1,1,1)
  766. p4b.Parent = swordholder
  767. local msh5b = Instance.new("BlockMesh")
  768. msh5b.Scale = Vector3.new(0.15,1.5,0.17)
  769. msh5b.Parent = p4b
  770. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  771. --msh3.MeshType = "Brick"
  772. p4b.Transparency = 0
  773. p4b.Reflectance = 0.4
  774. p4b.BrickColor = BrickColor.new("Black")
  775.  
  776.  
  777.  
  778. local w5b = Instance.new("Weld")
  779. w5b.Parent = p4b
  780. w5b.Part0 = p4b
  781. w5b.Part1 = p1
  782. w5b.C0 = CFrame.new(0.4, 2.35, 0) --* CFrame.Angles(0, 0, 1)
  783. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  784.  
  785.  
  786.  
  787.  
  788.  
  789. local p4b = Instance.new("Part")
  790. p4b.formFactor = 1
  791. p4b.CanCollide = false
  792. p4b.Name = "p4b"
  793. p4b.Locked = true
  794. p4b.Size = Vector3.new(1,1,1)
  795. p4b.Parent = swordholder
  796. local msh5b = Instance.new("BlockMesh")
  797. msh5b.Scale = Vector3.new(0.15,1.5,0.17)
  798. msh5b.Parent = p4b
  799. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  800. --msh3.MeshType = "Brick"
  801. p4b.Transparency = 0
  802. p4b.Reflectance = 0.4
  803. p4b.BrickColor = BrickColor.new("Black")
  804.  
  805.  
  806.  
  807. local w5b = Instance.new("Weld")
  808. w5b.Parent = p4b
  809. w5b.Part0 = p4b
  810. w5b.Part1 = p1
  811. w5b.C0 = CFrame.new(-0.4, 2.35, 0) --* CFrame.Angles(0, 0, 1)
  812. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  813.  
  814.  
  815. local p4bb = Instance.new("Part")
  816. p4bb.formFactor = 1
  817. p4bb.CanCollide = false
  818. p4bb.Name = "p4bb"
  819. p4bb.Locked = true
  820. p4bb.Size = Vector3.new(1,1,1)
  821. p4bb.Parent = swordholder
  822. local msh5bb = Instance.new("SpecialMesh")
  823. msh5bb.Scale = Vector3.new(0.5,0.4,0.5)
  824. msh5bb.Parent = p4bb
  825. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  826. msh5bb.MeshType = "Sphere"
  827. p4bb.Transparency = 0
  828. p4bb.Reflectance = 0.5
  829. p4bb.BrickColor = BrickColor.new("Black")
  830.  
  831.  
  832.  
  833. local w5bb = Instance.new("Weld")
  834. w5bb.Parent = p4bb
  835. w5bb.Part0 = p4bb
  836. w5bb.Part1 = p1
  837. w5bb.C0 = CFrame.new(0, 1.2, 0) --* CFrame.Angles(0, 0, 1)
  838. w5bb.C0 = w5bb.C0 * CFrame.Angles(0, 0, 0)
  839.  
  840.  
  841.  
  842.  
  843. local p4a = Instance.new("Part")
  844. p4a.formFactor = 1
  845. p4a.CanCollide = false
  846. p4a.Name = "p4a"
  847. p4a.Locked = true
  848. p4a.Size = Vector3.new(1,1,1)
  849. p4a.Parent = swordholder
  850. local msh5a = Instance.new("BlockMesh")
  851. msh5a.Scale = Vector3.new(0.2,0.99,0.2)
  852. msh5a.Parent = p4a
  853. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  854. --msh3.MeshType = "Brick"
  855. p4a.Transparency = 0
  856. p4a.Reflectance = 0.1
  857. p4a.BrickColor = BrickColor.new("Black")
  858.  
  859. local w5a = Instance.new("Weld")
  860. w5a.Parent = p4a
  861. w5a.Part0 = p4a
  862. w5a.Part1 = Torso
  863. w5a.C0 = CFrame.new(0.28,0,-0.7)
  864. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  865.  
  866.  
  867.  
  868.  
  869. local p4a = Instance.new("Part")
  870. p4a.formFactor = 1
  871. p4a.CanCollide = false
  872. p4a.Name = "p4a"
  873. p4a.Locked = true
  874. p4a.Size = Vector3.new(1,1,1)
  875. p4a.Parent = swordholder
  876. local msh5a = Instance.new("BlockMesh")
  877. msh5a.Scale = Vector3.new(0.2,0.99,0.2)
  878. msh5a.Parent = p4a
  879. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  880. --msh3.MeshType = "Brick"
  881. p4a.Transparency = 0
  882. p4a.Reflectance = 0.1
  883. p4a.BrickColor = BrickColor.new("Black")
  884.  
  885. local w5a = Instance.new("Weld")
  886. w5a.Parent = p4a
  887. w5a.Part0 = p4a
  888. w5a.Part1 = Torso
  889. w5a.C0 = CFrame.new(-0.28,0,-0.7)
  890. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  891.  
  892.  
  893.  
  894. local p4a = Instance.new("Part")
  895. p4a.formFactor = 1
  896. p4a.CanCollide = false
  897. p4a.Name = "p4a"
  898. p4a.Locked = true
  899. p4a.Size = Vector3.new(1,1,1)
  900. p4a.Parent = swordholder
  901. local msh5a = Instance.new("BlockMesh")
  902. msh5a.Scale = Vector3.new(0.2,0.99,0.2)
  903. msh5a.Parent = p4a
  904. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  905. --msh3.MeshType = "Brick"
  906. p4a.Transparency = 0
  907. p4a.Reflectance = 0.1
  908. p4a.BrickColor = BrickColor.new("Black")
  909.  
  910. local w5a = Instance.new("Weld")
  911. w5a.Parent = p4a
  912. w5a.Part0 = p4a
  913. w5a.Part1 = Torso
  914. w5a.C0 = CFrame.new(1.09,0,-0.7)
  915. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  916.  
  917. local p4a = Instance.new("Part")
  918. p4a.formFactor = 1
  919. p4a.CanCollide = false
  920. p4a.Name = "p4a"
  921. p4a.Locked = true
  922. p4a.Size = Vector3.new(1,1,1)
  923. p4a.Parent = swordholder
  924. local msh5a = Instance.new("BlockMesh")
  925. msh5a.Scale = Vector3.new(0.2,0.99,0.2)
  926. msh5a.Parent = p4a
  927. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  928. --msh3.MeshType = "Brick"
  929. p4a.Transparency = 0
  930. p4a.Reflectance = 0.1
  931. p4a.BrickColor = BrickColor.new("Black")
  932.  
  933. local w5a = Instance.new("Weld")
  934. w5a.Parent = p4a
  935. w5a.Part0 = p4a
  936. w5a.Part1 = Torso
  937. w5a.C0 = CFrame.new(1.66,0,-0.7)
  938. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  939.  
  940.  
  941. ----Spheres
  942.  
  943. local p4a = Instance.new("Part")
  944. p4a.formFactor = 1
  945. p4a.CanCollide = false
  946. p4a.Name = "p4a"
  947. p4a.Locked = true
  948. p4a.Size = Vector3.new(1,1,1)
  949. p4a.Parent = swordholder
  950. local msh5a = Instance.new("SpecialMesh")
  951. msh5a.Scale = Vector3.new(0.6,0.55,0.6)
  952. msh5a.Parent = p4a
  953. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  954. msh5a.MeshType = "Sphere"
  955. p4a.Transparency = 0
  956. p4a.Reflectance = 0
  957. p4a.BrickColor = BrickColor.new("Black")
  958.  
  959. local w5a = Instance.new("Weld")
  960. w5a.Parent = p4a
  961. w5a.Part0 = p4a
  962. w5a.Part1 = Torso
  963. w5a.C0 = CFrame.new(0.695,-0.19,-0.7)
  964. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  965.  
  966. local p4a = Instance.new("Part")
  967. p4a.formFactor = 1
  968. p4a.CanCollide = false
  969. p4a.Name = "p4a"
  970. p4a.Locked = true
  971. p4a.Size = Vector3.new(1,1,1)
  972. p4a.Parent = swordholder
  973. local msh5a = Instance.new("SpecialMesh")
  974. msh5a.Scale = Vector3.new(0.6,0.55,0.6)
  975. msh5a.Parent = p4a
  976. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  977. msh5a.MeshType = "Sphere"
  978. p4a.Transparency = 0
  979. p4a.Reflectance = 0
  980. p4a.BrickColor = BrickColor.new("Black")
  981.  
  982. local w5a = Instance.new("Weld")
  983. w5a.Parent = p4a
  984. w5a.Part0 = p4a
  985. w5a.Part1 = Torso
  986. w5a.C0 = CFrame.new(0.695,-0.17,-0.7)
  987. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  988.  
  989. local p4a = Instance.new("Part")
  990. p4a.formFactor = 1
  991. p4a.CanCollide = false
  992. p4a.Name = "p4a"
  993. p4a.Locked = true
  994. p4a.Size = Vector3.new(1,1,1)
  995. p4a.Parent = swordholder
  996. local msh5a = Instance.new("SpecialMesh")
  997. msh5a.Scale = Vector3.new(0.6,0.55,0.6)
  998. msh5a.Parent = p4a
  999. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1000. msh5a.MeshType = "Sphere"
  1001. p4a.Transparency = 0
  1002. p4a.Reflectance = 0
  1003. p4a.BrickColor = BrickColor.new("Black")
  1004.  
  1005. local w5a = Instance.new("Weld")
  1006. w5a.Parent = p4a
  1007. w5a.Part0 = p4a
  1008. w5a.Part1 = Torso
  1009. w5a.C0 = CFrame.new(0.695,-0.2,-0.7)
  1010. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  1011.  
  1012. local p4a = Instance.new("Part")
  1013. p4a.formFactor = 1
  1014. p4a.CanCollide = false
  1015. p4a.Name = "p4a"
  1016. p4a.Locked = true
  1017. p4a.Size = Vector3.new(1,1,1)
  1018. p4a.Parent = swordholder
  1019. local msh5a = Instance.new("SpecialMesh")
  1020. msh5a.Scale = Vector3.new(0.6,0.55,0.6)
  1021. msh5a.Parent = p4a
  1022. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1023. msh5a.MeshType = "Sphere"
  1024. p4a.Transparency = 0
  1025. p4a.Reflectance = 0
  1026. p4a.BrickColor = BrickColor.new("Black")
  1027.  
  1028. local w5a = Instance.new("Weld")
  1029. w5a.Parent = p4a
  1030. w5a.Part0 = p4a
  1031. w5a.Part1 = Torso
  1032. w5a.C0 = CFrame.new(0.695,-0.05,-0.7)
  1033. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  1034.  
  1035. local p4a = Instance.new("Part")
  1036. p4a.formFactor = 1
  1037. p4a.CanCollide = false
  1038. p4a.Name = "p4a"
  1039. p4a.Locked = true
  1040. p4a.Size = Vector3.new(1,1,1)
  1041. p4a.Parent = swordholder
  1042. local msh5a = Instance.new("SpecialMesh")
  1043. msh5a.Scale = Vector3.new(0.6,0.55,0.6)
  1044. msh5a.Parent = p4a
  1045. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1046. msh5a.MeshType = "Sphere"
  1047. p4a.Transparency = 0
  1048. p4a.Reflectance = 0
  1049. p4a.BrickColor = BrickColor.new("Black")
  1050.  
  1051. local w5a = Instance.new("Weld")
  1052. w5a.Parent = p4a
  1053. w5a.Part0 = p4a
  1054. w5a.Part1 = Torso
  1055. w5a.C0 = CFrame.new(0.695,-0.1,-0.7)
  1056. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  1057.  
  1058.  
  1059.  
  1060. local p4a = Instance.new("Part")
  1061. p4a.formFactor = 1
  1062. p4a.CanCollide = false
  1063. p4a.Name = "p4a"
  1064. p4a.Locked = true
  1065. p4a.Size = Vector3.new(1,1,1)
  1066. p4a.Parent = swordholder
  1067. local msh5a = Instance.new("SpecialMesh")
  1068. msh5a.Scale = Vector3.new(0.6,0.55,0.6)
  1069. msh5a.Parent = p4a
  1070. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1071. msh5a.MeshType = "Sphere"
  1072. p4a.Transparency = 0
  1073. p4a.Reflectance = 0
  1074. p4a.BrickColor = BrickColor.new("Black")
  1075.  
  1076. local w5a = Instance.new("Weld")
  1077. w5a.Parent = p4a
  1078. w5a.Part0 = p4a
  1079. w5a.Part1 = Torso
  1080. w5a.C0 = CFrame.new(0.695,-0.275,-0.7)
  1081. w5a.C0 = w5a.C0 * CFrame.Angles(0, 0, 0.535)
  1082.  
  1083. ------------------------
  1084.  
  1085. local p4b = Instance.new("Part")
  1086. p4b.formFactor = 1
  1087. p4b.CanCollide = false
  1088. p4b.Name = "p4b"
  1089. p4b.Locked = true
  1090. p4b.Size = Vector3.new(1,1,1)
  1091. p4b.Parent = swordholder
  1092. local msh5b = Instance.new("BlockMesh")
  1093. msh5b.Scale = Vector3.new(0.15,0.2,0.17)
  1094. msh5b.Parent = p4b
  1095. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1096. --msh3.MeshType = "Brick"
  1097. p4b.Transparency = 0
  1098. p4b.Reflectance = 0.4
  1099. p4b.BrickColor = BrickColor.new("Black")
  1100.  
  1101.  
  1102.  
  1103. local w5b = Instance.new("Weld")
  1104. w5b.Parent = p4b
  1105. w5b.Part0 = p4b
  1106. w5b.Part1 = p1
  1107. w5b.C0 = CFrame.new(-0.25, 3.23, 0) --* CFrame.Angles(0, 0, 1)
  1108. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1109.  
  1110.  
  1111. local p4b = Instance.new("Part")
  1112. p4b.formFactor = 1
  1113. p4b.CanCollide = false
  1114. p4b.Name = "p4b"
  1115. p4b.Locked = true
  1116. p4b.Size = Vector3.new(1,1,1)
  1117. p4b.Parent = swordholder
  1118. local msh5b = Instance.new("BlockMesh")
  1119. msh5b.Scale = Vector3.new(0.15,0.2,0.17)
  1120. msh5b.Parent = p4b
  1121. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1122. --msh3.MeshType = "Brick"
  1123. p4b.Transparency = 0
  1124. p4b.Reflectance = 0.4
  1125. p4b.BrickColor = BrickColor.new("Black")
  1126.  
  1127.  
  1128.  
  1129. local w5b = Instance.new("Weld")
  1130. w5b.Parent = p4b
  1131. w5b.Part0 = p4b
  1132. w5b.Part1 = p1
  1133. w5b.C0 = CFrame.new(0.25, 3.23, 0) --* CFrame.Angles(0, 0, 1)
  1134. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1135.  
  1136.  
  1137.  
  1138. local p4b = Instance.new("Part")
  1139. p4b.formFactor = 1
  1140. p4b.CanCollide = false
  1141. p4b.Name = "p4b"
  1142. p4b.Locked = true
  1143. p4b.Size = Vector3.new(1,1,1)
  1144. p4b.Parent = swordholder
  1145. local msh5b = Instance.new("BlockMesh")
  1146. msh5b.Scale = Vector3.new(0.5,0.15,0.17)
  1147. msh5b.Parent = p4b
  1148. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1149. --msh3.MeshType = "Brick"
  1150. p4b.Transparency = 0
  1151. p4b.Reflectance = 0.4
  1152. p4b.BrickColor = BrickColor.new("Black")
  1153.  
  1154.  
  1155.  
  1156. local w5b = Instance.new("Weld")
  1157. w5b.Parent = p4b
  1158. w5b.Part0 = p4b
  1159. w5b.Part1 = p1
  1160. w5b.C0 = CFrame.new(0.5, 3.6, 0) --* CFrame.Angles(0, 0, 1)
  1161. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1162.  
  1163. local p4b = Instance.new("Part")
  1164. p4b.formFactor = 1
  1165. p4b.CanCollide = false
  1166. p4b.Name = "p4b"
  1167. p4b.Locked = true
  1168. p4b.Size = Vector3.new(1,1,1)
  1169. p4b.Parent = swordholder
  1170. local msh5b = Instance.new("BlockMesh")
  1171. msh5b.Scale = Vector3.new(0.5,0.15,0.17)
  1172. msh5b.Parent = p4b
  1173. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1174. --msh3.MeshType = "Brick"
  1175. p4b.Transparency = 0
  1176. p4b.Reflectance = 0.4
  1177. p4b.BrickColor = BrickColor.new("Black")
  1178.  
  1179.  
  1180.  
  1181. local w5b = Instance.new("Weld")
  1182. w5b.Parent = p4b
  1183. w5b.Part0 = p4b
  1184. w5b.Part1 = p1
  1185. w5b.C0 = CFrame.new(-0.5, 3.6, 0) --* CFrame.Angles(0, 0, 1)
  1186. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1187.  
  1188. local p4b = Instance.new("Part")
  1189. p4b.formFactor = 1
  1190. p4b.CanCollide = false
  1191. p4b.Name = "p4b"
  1192. p4b.Locked = true
  1193. p4b.Size = Vector3.new(1,1,1)
  1194. p4b.Parent = swordholder
  1195. local msh5b = Instance.new("BlockMesh")
  1196. msh5b.Scale = Vector3.new(0.1,0.4,0.17)
  1197. msh5b.Parent = p4b
  1198. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1199. --msh3.MeshType = "Brick"
  1200. p4b.Transparency = 0
  1201. p4b.Reflectance = 0.4
  1202. p4b.BrickColor = BrickColor.new("Black")
  1203.  
  1204.  
  1205.  
  1206. local w5b = Instance.new("Weld")
  1207. w5b.Parent = p4b
  1208. w5b.Part0 = p4b
  1209. w5b.Part1 = p1
  1210. w5b.C0 = CFrame.new(0, 3.13, 0) --* CFrame.Angles(0, 0, 1)
  1211. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1212.  
  1213.  
  1214.  
  1215. local p4b = Instance.new("Part")
  1216. p4b.formFactor = 1
  1217. p4b.CanCollide = false
  1218. p4b.Name = "p4b"
  1219. p4b.Locked = true
  1220. p4b.Size = Vector3.new(1,1,1)
  1221. p4b.Parent = swordholder
  1222. local msh5b = Instance.new("BlockMesh")
  1223. msh5b.Scale = Vector3.new(0.05,0.4,0.17)
  1224. msh5b.Parent = p4b
  1225. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1226. --msh3.MeshType = "Brick"
  1227. p4b.Transparency = 0
  1228. p4b.Reflectance = 0.4
  1229. p4b.BrickColor = BrickColor.new("Black")
  1230.  
  1231.  
  1232.  
  1233. local w5b = Instance.new("Weld")
  1234. w5b.Parent = p4b
  1235. w5b.Part0 = p4b
  1236. w5b.Part1 = p1
  1237. w5b.C0 = CFrame.new(0.2, 3.59, 0) --* CFrame.Angles(0, 0, 1)
  1238. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1239.  
  1240.  
  1241.  
  1242. local p4b = Instance.new("Part")
  1243. p4b.formFactor = 1
  1244. p4b.CanCollide = false
  1245. p4b.Name = "p4b"
  1246. p4b.Locked = true
  1247. p4b.Size = Vector3.new(1,1,1)
  1248. p4b.Parent = swordholder
  1249. local msh5b = Instance.new("BlockMesh")
  1250. msh5b.Scale = Vector3.new(0.05,0.4,0.17)
  1251. msh5b.Parent = p4b
  1252. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1253. --msh3.MeshType = "Brick"
  1254. p4b.Transparency = 0
  1255. p4b.Reflectance = 0.4
  1256. p4b.BrickColor = BrickColor.new("Black")
  1257.  
  1258.  
  1259.  
  1260. local w5b = Instance.new("Weld")
  1261. w5b.Parent = p4b
  1262. w5b.Part0 = p4b
  1263. w5b.Part1 = p1
  1264. w5b.C0 = CFrame.new(-0.2, 3.59, 0) --* CFrame.Angles(0, 0, 1)
  1265. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272. local p4b = Instance.new("Part")
  1273. p4b.formFactor = 1
  1274. p4b.CanCollide = false
  1275. p4b.Name = "p4b"
  1276. p4b.Locked = true
  1277. p4b.Size = Vector3.new(1,1,1)
  1278. p4b.Parent = swordholder
  1279. local msh5b = Instance.new("BlockMesh")
  1280. msh5b.Scale = Vector3.new(0.04,0.4,0.17)
  1281. msh5b.Parent = p4b
  1282. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1283. --msh3.MeshType = "Brick"
  1284. p4b.Transparency = 0
  1285. p4b.Reflectance = 0.4
  1286. p4b.BrickColor = BrickColor.new("Black")
  1287.  
  1288.  
  1289.  
  1290. local w5b = Instance.new("Weld")
  1291. w5b.Parent = p4b
  1292. w5b.Part0 = p4b
  1293. w5b.Part1 = p1
  1294. w5b.C0 = CFrame.new(-0.6, 3.27, 0) --* CFrame.Angles(0, 0, 1)
  1295. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301. local p4b = Instance.new("Part")
  1302. p4b.formFactor = 1
  1303. p4b.CanCollide = false
  1304. p4b.Name = "p4b"
  1305. p4b.Locked = true
  1306. p4b.Size = Vector3.new(1,1,1)
  1307. p4b.Parent = swordholder
  1308. local msh5b = Instance.new("BlockMesh")
  1309. msh5b.Scale = Vector3.new(0.04,0.4,0.17)
  1310. msh5b.Parent = p4b
  1311. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1312. --msh3.MeshType = "Brick"
  1313. p4b.Transparency = 0
  1314. p4b.Reflectance = 0.4
  1315. p4b.BrickColor = BrickColor.new("Black")
  1316.  
  1317.  
  1318.  
  1319. local w5b = Instance.new("Weld")
  1320. w5b.Parent = p4b
  1321. w5b.Part0 = p4b
  1322. w5b.Part1 = p1
  1323. w5b.C0 = CFrame.new(0.6, 3.27, 0) --* CFrame.Angles(0, 0, 1)
  1324. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1325.  
  1326.  
  1327.  
  1328.  
  1329.  
  1330.  
  1331. local p4b = Instance.new("Part")
  1332. p4b.formFactor = 1
  1333. p4b.CanCollide = false
  1334. p4b.Name = "p4b"
  1335. p4b.Locked = true
  1336. p4b.Size = Vector3.new(1,1,1)
  1337. p4b.Parent = swordholder
  1338. local msh5b = Instance.new("BlockMesh")
  1339. msh5b.Scale = Vector3.new(0.15,0.5,0.17)
  1340. msh5b.Parent = p4b
  1341. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1342. --msh3.MeshType = "Brick"
  1343. p4b.Transparency = 0
  1344. p4b.Reflectance = 0.4
  1345. p4b.BrickColor = BrickColor.new("Black")
  1346.  
  1347.  
  1348.  
  1349. local w5b = Instance.new("Weld")
  1350. w5b.Parent = p4b
  1351. w5b.Part0 = p4b
  1352. w5b.Part1 = p1
  1353. w5b.C0 = CFrame.new(0.5, 3.99, 0) --* CFrame.Angles(0, 0, 1)
  1354. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1355.  
  1356. local p4b = Instance.new("Part")
  1357. p4b.formFactor = 1
  1358. p4b.CanCollide = false
  1359. p4b.Name = "p4b"
  1360. p4b.Locked = true
  1361. p4b.Size = Vector3.new(1,1,1)
  1362. p4b.Parent = swordholder
  1363. local msh5b = Instance.new("BlockMesh")
  1364. msh5b.Scale = Vector3.new(0.15,0.5,0.17)
  1365. msh5b.Parent = p4b
  1366. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1367. --msh3.MeshType = "Brick"
  1368. p4b.Transparency = 0
  1369. p4b.Reflectance = 0.4
  1370. p4b.BrickColor = BrickColor.new("Black")
  1371.  
  1372.  
  1373.  
  1374. local w5b = Instance.new("Weld")
  1375. w5b.Parent = p4b
  1376. w5b.Part0 = p4b
  1377. w5b.Part1 = p1
  1378. w5b.C0 = CFrame.new(-0.5, 3.99, 0) --* CFrame.Angles(0, 0, 1)
  1379. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1380.  
  1381.  
  1382.  
  1383.  
  1384. local p4b = Instance.new("Part")
  1385. p4b.formFactor = 1
  1386. p4b.CanCollide = false
  1387. p4b.Name = "p4b"
  1388. p4b.Locked = true
  1389. p4b.Size = Vector3.new(1,1,1)
  1390. p4b.Parent = swordholder
  1391. local msh5b = Instance.new("BlockMesh")
  1392. msh5b.Scale = Vector3.new(0.22,0.1,0.17)
  1393. msh5b.Parent = p4b
  1394. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1395. --msh3.MeshType = "Brick"
  1396. p4b.Transparency = 0
  1397. p4b.Reflectance = 0.4
  1398. p4b.BrickColor = BrickColor.new("Black")
  1399.  
  1400.  
  1401.  
  1402. local w5b = Instance.new("Weld")
  1403. w5b.Parent = p4b
  1404. w5b.Part0 = p4b
  1405. w5b.Part1 = p1
  1406. w5b.C0 = CFrame.new(-0.285, 3.89, 0) --* CFrame.Angles(0, 0, 1)
  1407. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1408.  
  1409.  
  1410.  
  1411.  
  1412. local p4b = Instance.new("Part")
  1413. p4b.formFactor = 1
  1414. p4b.CanCollide = false
  1415. p4b.Name = "p4b"
  1416. p4b.Locked = true
  1417. p4b.Size = Vector3.new(1,1,1)
  1418. p4b.Parent = swordholder
  1419. local msh5b = Instance.new("BlockMesh")
  1420. msh5b.Scale = Vector3.new(0.22,0.1,0.17)
  1421. msh5b.Parent = p4b
  1422. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1423. --msh3.MeshType = "Brick"
  1424. p4b.Transparency = 0
  1425. p4b.Reflectance = 0.4
  1426. p4b.BrickColor = BrickColor.new("Black")
  1427.  
  1428.  
  1429.  
  1430. local w5b = Instance.new("Weld")
  1431. w5b.Parent = p4b
  1432. w5b.Part0 = p4b
  1433. w5b.Part1 = p1
  1434. w5b.C0 = CFrame.new(0.285, 3.89, 0) --* CFrame.Angles(0, 0, 1)
  1435. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1436.  
  1437.  
  1438.  
  1439.  
  1440.  
  1441.  
  1442.  
  1443.  
  1444. local p4b = Instance.new("Part")
  1445. p4b.formFactor = 1
  1446. p4b.CanCollide = false
  1447. p4b.Name = "p4b"
  1448. p4b.Locked = true
  1449. p4b.Size = Vector3.new(1,1,1)
  1450. p4b.Parent = swordholder
  1451. local msh5b = Instance.new("BlockMesh")
  1452. msh5b.Scale = Vector3.new(0.05,0.05,0.17)
  1453. msh5b.Parent = p4b
  1454. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1455. --msh3.MeshType = "Brick"
  1456. p4b.Transparency = 0
  1457. p4b.Reflectance = 0.4
  1458. p4b.BrickColor = BrickColor.new("Black")
  1459.  
  1460.  
  1461.  
  1462. local w5b = Instance.new("Weld")
  1463. w5b.Parent = p4b
  1464. w5b.Part0 = p4b
  1465. w5b.Part1 = p1
  1466. w5b.C0 = CFrame.new(-0.6, 3.89, 0) --* CFrame.Angles(0, 0, 1)
  1467. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1468.  
  1469. local p4b = Instance.new("Part")
  1470. p4b.formFactor = 1
  1471. p4b.CanCollide = false
  1472. p4b.Name = "p4b"
  1473. p4b.Locked = true
  1474. p4b.Size = Vector3.new(1,1,1)
  1475. p4b.Parent = swordholder
  1476. local msh5b = Instance.new("BlockMesh")
  1477. msh5b.Scale = Vector3.new(0.05,0.05,0.17)
  1478. msh5b.Parent = p4b
  1479. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1480. --msh3.MeshType = "Brick"
  1481. p4b.Transparency = 0
  1482. p4b.Reflectance = 0.4
  1483. p4b.BrickColor = BrickColor.new("Black")
  1484.  
  1485.  
  1486.  
  1487. local w5b = Instance.new("Weld")
  1488. w5b.Parent = p4b
  1489. w5b.Part0 = p4b
  1490. w5b.Part1 = p1
  1491. w5b.C0 = CFrame.new(0.6, 3.89, 0) --* CFrame.Angles(0, 0, 1)
  1492. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1493.  
  1494. local p4b = Instance.new("Part")
  1495. p4b.formFactor = 1
  1496. p4b.CanCollide = false
  1497. p4b.Name = "p4b"
  1498. p4b.Locked = true
  1499. p4b.Size = Vector3.new(1,1,1)
  1500. p4b.Parent = swordholder
  1501. local msh5b = Instance.new("BlockMesh")
  1502. msh5b.Scale = Vector3.new(0.03,0.05,0.17)
  1503. msh5b.Parent = p4b
  1504. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1505. --msh3.MeshType = "Brick"
  1506. p4b.Transparency = 0
  1507. p4b.Reflectance = 0.4
  1508. p4b.BrickColor = BrickColor.new("Black")
  1509.  
  1510.  
  1511.  
  1512. local w5b = Instance.new("Weld")
  1513. w5b.Parent = p4b
  1514. w5b.Part0 = p4b
  1515. w5b.Part1 = p1
  1516. w5b.C0 = CFrame.new(-0.41, 3.89, 0) --* CFrame.Angles(0, 0, 1)
  1517. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1518.  
  1519. local p4b = Instance.new("Part")
  1520. p4b.formFactor = 1
  1521. p4b.CanCollide = false
  1522. p4b.Name = "p4b"
  1523. p4b.Locked = true
  1524. p4b.Size = Vector3.new(1,1,1)
  1525. p4b.Parent = swordholder
  1526. local msh5b = Instance.new("BlockMesh")
  1527. msh5b.Scale = Vector3.new(0.03,0.05,0.17)
  1528. msh5b.Parent = p4b
  1529. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1530. --msh3.MeshType = "Brick"
  1531. p4b.Transparency = 0
  1532. p4b.Reflectance = 0.4
  1533. p4b.BrickColor = BrickColor.new("Black")
  1534.  
  1535.  
  1536.  
  1537. local w5b = Instance.new("Weld")
  1538. w5b.Parent = p4b
  1539. w5b.Part0 = p4b
  1540. w5b.Part1 = p1
  1541. w5b.C0 = CFrame.new(0.41, 3.89, 0) --* CFrame.Angles(0, 0, 1)
  1542. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1543.  
  1544.  
  1545. local p4b = Instance.new("Part")
  1546. p4b.formFactor = 1
  1547. p4b.CanCollide = false
  1548. p4b.Name = "p4b"
  1549. p4b.Locked = true
  1550. p4b.Size = Vector3.new(1,1,1)
  1551. p4b.Parent = swordholder
  1552. local msh5b = Instance.new("BlockMesh")
  1553. msh5b.Scale = Vector3.new(0.15,0.13,0.17)
  1554. msh5b.Parent = p4b
  1555. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1556. --msh3.MeshType = "Brick"
  1557. p4b.Transparency = 0
  1558. p4b.Reflectance = 0.4
  1559. p4b.BrickColor = BrickColor.new("Black")
  1560.  
  1561.  
  1562.  
  1563. local w5b = Instance.new("Weld")
  1564. w5b.Parent = p4b
  1565. w5b.Part0 = p4b
  1566. w5b.Part1 = p1
  1567. w5b.C0 = CFrame.new(0, 4.4, 0) --* CFrame.Angles(0, 0, 1)
  1568. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1569.  
  1570.  
  1571. local p4b = Instance.new("Part")
  1572. p4b.formFactor = 1
  1573. p4b.CanCollide = false
  1574. p4b.Name = "p4b"
  1575. p4b.Locked = true
  1576. p4b.Size = Vector3.new(1,1,1)
  1577. p4b.Parent = swordholder
  1578. local msh5b = Instance.new("BlockMesh")
  1579. msh5b.Scale = Vector3.new(0.38,0.025,0.17)
  1580. msh5b.Parent = p4b
  1581. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1582. --msh3.MeshType = "Brick"
  1583. p4b.Transparency = 0
  1584. p4b.Reflectance = 0.4
  1585. p4b.BrickColor = BrickColor.new("Black")
  1586.  
  1587.  
  1588.  
  1589. local w5b = Instance.new("Weld")
  1590. w5b.Parent = p4b
  1591. w5b.Part0 = p4b
  1592. w5b.Part1 = p1
  1593. w5b.C0 = CFrame.new(0.2, 4.0835, 0) --* CFrame.Angles(0, 0, 1)
  1594. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1595.  
  1596.  
  1597. local p4b = Instance.new("Part")
  1598. p4b.formFactor = 1
  1599. p4b.CanCollide = false
  1600. p4b.Name = "p4b"
  1601. p4b.Locked = true
  1602. p4b.Size = Vector3.new(1,1,1)
  1603. p4b.Parent = swordholder
  1604. local msh5b = Instance.new("BlockMesh")
  1605. msh5b.Scale = Vector3.new(0.38,0.025,0.17)
  1606. msh5b.Parent = p4b
  1607. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1608. --msh3.MeshType = "Brick"
  1609. p4b.Transparency = 0
  1610. p4b.Reflectance = 0.4
  1611. p4b.BrickColor = BrickColor.new("Black")
  1612.  
  1613.  
  1614.  
  1615. local w5b = Instance.new("Weld")
  1616. w5b.Parent = p4b
  1617. w5b.Part0 = p4b
  1618. w5b.Part1 = p1
  1619. w5b.C0 = CFrame.new(-0.2, 4.0835, 0) --* CFrame.Angles(0, 0, 1)
  1620. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1621.  
  1622.  
  1623. local p4b = Instance.new("Part")
  1624. p4b.formFactor = 1
  1625. p4b.CanCollide = false
  1626. p4b.Name = "p4b"
  1627. p4b.Locked = true
  1628. p4b.Size = Vector3.new(1,1,1)
  1629. p4b.Parent = swordholder
  1630. local msh5b = Instance.new("BlockMesh")
  1631. msh5b.Scale = Vector3.new(0.025,0.1,0.17)
  1632. msh5b.Parent = p4b
  1633. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1634. --msh3.MeshType = "Brick"
  1635. p4b.Transparency = 0
  1636. p4b.Reflectance = 0.4
  1637. p4b.BrickColor = BrickColor.new("Black")
  1638.  
  1639.  
  1640.  
  1641. local w5b = Instance.new("Weld")
  1642. w5b.Parent = p4b
  1643. w5b.Part0 = p4b
  1644. w5b.Part1 = p1
  1645. w5b.C0 = CFrame.new(0, 4.25, 0) --* CFrame.Angles(0, 0, 1)
  1646. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1647.  
  1648.  
  1649. local p4b = Instance.new("Part")
  1650. p4b.formFactor = 1
  1651. p4b.CanCollide = false
  1652. p4b.Name = "p4b"
  1653. p4b.Locked = true
  1654. p4b.Size = Vector3.new(1,1,1)
  1655. p4b.Parent = swordholder
  1656. local msh5b = Instance.new("BlockMesh")
  1657. msh5b.Scale = Vector3.new(0.025,0.1,0.17)
  1658. msh5b.Parent = p4b
  1659. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1660. --msh3.MeshType = "Brick"
  1661. p4b.Transparency = 0
  1662. p4b.Reflectance = 0.4
  1663. p4b.BrickColor = BrickColor.new("Black")
  1664.  
  1665.  
  1666.  
  1667. local w5b = Instance.new("Weld")
  1668. w5b.Parent = p4b
  1669. w5b.Part0 = p4b
  1670. w5b.Part1 = p1
  1671. w5b.C0 = CFrame.new(0, 4.55, 0) --* CFrame.Angles(0, 0, 1)
  1672. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1673.  
  1674. local p4b = Instance.new("Part")
  1675. p4b.formFactor = 1
  1676. p4b.CanCollide = false
  1677. p4b.Name = "p4b"
  1678. p4b.Locked = true
  1679. p4b.Size = Vector3.new(1,1,1)
  1680. p4b.Parent = swordholder
  1681. local msh5b = Instance.new("BlockMesh")
  1682. msh5b.Scale = Vector3.new(0.12,0.025,0.17)
  1683. msh5b.Parent = p4b
  1684. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1685. --msh3.MeshType = "Brick"
  1686. p4b.Transparency = 0
  1687. p4b.Reflectance = 0.4
  1688. p4b.BrickColor = BrickColor.new("Black")
  1689.  
  1690.  
  1691.  
  1692. local w5b = Instance.new("Weld")
  1693. w5b.Parent = p4b
  1694. w5b.Part0 = p4b
  1695. w5b.Part1 = p1
  1696. w5b.C0 = CFrame.new(-0.15, 4.4, 0) --* CFrame.Angles(0, 0, 1)
  1697. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1698.  
  1699.  
  1700. local p4b = Instance.new("Part")
  1701. p4b.formFactor = 1
  1702. p4b.CanCollide = false
  1703. p4b.Name = "p4b"
  1704. p4b.Locked = true
  1705. p4b.Size = Vector3.new(1,1,1)
  1706. p4b.Parent = swordholder
  1707. local msh5b = Instance.new("BlockMesh")
  1708. msh5b.Scale = Vector3.new(0.12,0.025,0.17)
  1709. msh5b.Parent = p4b
  1710. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1711. --msh3.MeshType = "Brick"
  1712. p4b.Transparency = 0
  1713. p4b.Reflectance = 0.4
  1714. p4b.BrickColor = BrickColor.new("Black")
  1715.  
  1716.  
  1717.  
  1718. local w5b = Instance.new("Weld")
  1719. w5b.Parent = p4b
  1720. w5b.Part0 = p4b
  1721. w5b.Part1 = p1
  1722. w5b.C0 = CFrame.new(0.15, 4.4, 0) --* CFrame.Angles(0, 0, 1)
  1723. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1724.  
  1725.  
  1726.  
  1727.  
  1728.  
  1729.  
  1730. local p4b = Instance.new("Part")
  1731. p4b.formFactor = 1
  1732. p4b.CanCollide = false
  1733. p4b.Name = "p4b"
  1734. p4b.Locked = true
  1735. p4b.Size = Vector3.new(1,1,1)
  1736. p4b.Parent = swordholder
  1737. local msh5b = Instance.new("BlockMesh")
  1738. msh5b.Scale = Vector3.new(0.009,0.1,0.17)
  1739. msh5b.Parent = p4b
  1740. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1741. --msh3.MeshType = "Brick"
  1742. p4b.Transparency = 0
  1743. p4b.Reflectance = 0.4
  1744. p4b.BrickColor = BrickColor.new("Black")
  1745.  
  1746.  
  1747.  
  1748. local w5b = Instance.new("Weld")
  1749. w5b.Parent = p4b
  1750. w5b.Part0 = p4b
  1751. w5b.Part1 = p1
  1752. w5b.C0 = CFrame.new(0, 4.13, 0) --* CFrame.Angles(0, 0, 1)
  1753. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1754.  
  1755.  
  1756. local p4b = Instance.new("Part")
  1757. p4b.formFactor = 1
  1758. p4b.CanCollide = false
  1759. p4b.Name = "p4b"
  1760. p4b.Locked = true
  1761. p4b.Size = Vector3.new(1,1,1)
  1762. p4b.Parent = swordholder
  1763. local msh5b = Instance.new("BlockMesh")
  1764. msh5b.Scale = Vector3.new(0.009,0.1,0.17)
  1765. msh5b.Parent = p4b
  1766. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1767. --msh3.MeshType = "Brick"
  1768. p4b.Transparency = 0
  1769. p4b.Reflectance = 0.4
  1770. p4b.BrickColor = BrickColor.new("Black")
  1771.  
  1772.  
  1773.  
  1774. local w5b = Instance.new("Weld")
  1775. w5b.Parent = p4b
  1776. w5b.Part0 = p4b
  1777. w5b.Part1 = p1
  1778. w5b.C0 = CFrame.new(0, 4.67, 0) --* CFrame.Angles(0, 0, 1)
  1779. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1780.  
  1781.  
  1782. local p4b = Instance.new("Part")
  1783. p4b.formFactor = 1
  1784. p4b.CanCollide = false
  1785. p4b.Name = "p4b"
  1786. p4b.Locked = true
  1787. p4b.Size = Vector3.new(1,1,1)
  1788. p4b.Parent = swordholder
  1789. local msh5b = Instance.new("BlockMesh")
  1790. msh5b.Scale = Vector3.new(0.009,0.25,0.17)
  1791. msh5b.Parent = p4b
  1792. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1793. --msh3.MeshType = "Brick"
  1794. p4b.Transparency = 0
  1795. p4b.Reflectance = 0.4
  1796. p4b.BrickColor = BrickColor.new("Black")
  1797.  
  1798.  
  1799.  
  1800. local w5b = Instance.new("Weld")
  1801. w5b.Parent = p4b
  1802. w5b.Part0 = p4b
  1803. w5b.Part1 = p1
  1804. w5b.C0 = CFrame.new(-0.25, 4.4, 0) --* CFrame.Angles(0, 0, 1)
  1805. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1806.  
  1807.  
  1808. local p4b = Instance.new("Part")
  1809. p4b.formFactor = 1
  1810. p4b.CanCollide = false
  1811. p4b.Name = "p4b"
  1812. p4b.Locked = true
  1813. p4b.Size = Vector3.new(1,1,1)
  1814. p4b.Parent = swordholder
  1815. local msh5b = Instance.new("BlockMesh")
  1816. msh5b.Scale = Vector3.new(0.009,0.25,0.17)
  1817. msh5b.Parent = p4b
  1818. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1819. --msh3.MeshType = "Brick"
  1820. p4b.Transparency = 0
  1821. p4b.Reflectance = 0.4
  1822. p4b.BrickColor = BrickColor.new("Black")
  1823.  
  1824.  
  1825.  
  1826. local w5b = Instance.new("Weld")
  1827. w5b.Parent = p4b
  1828. w5b.Part0 = p4b
  1829. w5b.Part1 = p1
  1830. w5b.C0 = CFrame.new(0.25, 4.4, 0) --* CFrame.Angles(0, 0, 1)
  1831. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1832.  
  1833.  
  1834. local p4b = Instance.new("Part")
  1835. p4b.formFactor = 1
  1836. p4b.CanCollide = false
  1837. p4b.Name = "p4b"
  1838. p4b.Locked = true
  1839. p4b.Size = Vector3.new(1,1,1)
  1840. p4b.Parent = swordholder
  1841. local msh5b = Instance.new("BlockMesh")
  1842. msh5b.Scale = Vector3.new(1,0.08,0.17)
  1843. msh5b.Parent = p4b
  1844. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1845. --msh3.MeshType = "Brick"
  1846. p4b.Transparency = 0
  1847. p4b.Reflectance = 0.4
  1848. p4b.BrickColor = BrickColor.new("Black")
  1849.  
  1850.  
  1851.  
  1852. local w5b = Instance.new("Weld")
  1853. w5b.Parent = p4b
  1854. w5b.Part0 = p4b
  1855. w5b.Part1 = p1
  1856. w5b.C0 = CFrame.new(0, 5.4, 0) --* CFrame.Angles(0, 0, 1)
  1857. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1858.  
  1859.  
  1860. local p4b = Instance.new("Part")
  1861. p4b.formFactor = 1
  1862. p4b.CanCollide = false
  1863. p4b.Name = "p4b"
  1864. p4b.Locked = true
  1865. p4b.Size = Vector3.new(1,1,1)
  1866. p4b.Parent = swordholder
  1867. local msh5b = Instance.new("BlockMesh")
  1868. msh5b.Scale = Vector3.new(0.01,0.585,0.17)
  1869. msh5b.Parent = p4b
  1870. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1871. --msh3.MeshType = "Brick"
  1872. p4b.Transparency = 0
  1873. p4b.Reflectance = 0.4
  1874. p4b.BrickColor = BrickColor.new("Black")
  1875.  
  1876.  
  1877.  
  1878. local w5b = Instance.new("Weld")
  1879. w5b.Parent = p4b
  1880. w5b.Part0 = p4b
  1881. w5b.Part1 = p1
  1882. w5b.C0 = CFrame.new(-0.28, 5, 0) --* CFrame.Angles(0, 0, 1)
  1883. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1884.  
  1885.  
  1886. function fk()
  1887.  
  1888. local p4b = Instance.new("Part")
  1889. p4b.formFactor = 1
  1890. p4b.CanCollide = false
  1891. p4b.Name = "p4b"
  1892. p4b.Locked = true
  1893. p4b.Size = Vector3.new(1,1,1)
  1894. p4b.Parent = swordholder
  1895. local msh5b = Instance.new("BlockMesh")
  1896. msh5b.Scale = Vector3.new(0.01,0.35,0.17)
  1897. msh5b.Parent = p4b
  1898. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1899. --msh3.MeshType = "Brick"
  1900. p4b.Transparency = 0
  1901. p4b.Reflectance = 0.4
  1902. p4b.BrickColor = BrickColor.new("Black")
  1903.  
  1904.  
  1905.  
  1906. local w5b = Instance.new("Weld")
  1907. w5b.Parent = p4b
  1908. w5b.Part0 = p4b
  1909. w5b.Part1 = p1
  1910. w5b.C0 = CFrame.new(0.18, 5.139, 0) --* CFrame.Angles(0, 0, 1)
  1911. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1912.  
  1913. local p4b = Instance.new("Part")
  1914. p4b.formFactor = 1
  1915. p4b.CanCollide = false
  1916. p4b.Name = "p4b"
  1917. p4b.Locked = true
  1918. p4b.Size = Vector3.new(1,1,1)
  1919. p4b.Parent = swordholder
  1920. local msh5b = Instance.new("BlockMesh")
  1921. msh5b.Scale = Vector3.new(0.01,0.25,0.17)
  1922. msh5b.Parent = p4b
  1923. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1924. --msh3.MeshType = "Brick"
  1925. p4b.Transparency = 0
  1926. p4b.Reflectance = 0.4
  1927. p4b.BrickColor = BrickColor.new("Black")
  1928.  
  1929.  
  1930.  
  1931. local w5b = Instance.new("Weld")
  1932. w5b.Parent = p4b
  1933. w5b.Part0 = p4b
  1934. w5b.Part1 = p1
  1935. w5b.C0 = CFrame.new(0.03, 5.208, 0) --* CFrame.Angles(0, 0, 1)
  1936. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1937.  
  1938. local p4b = Instance.new("Part")
  1939. p4b.formFactor = 1
  1940. p4b.CanCollide = false
  1941. p4b.Name = "p4b"
  1942. p4b.Locked = true
  1943. p4b.Size = Vector3.new(1,1,1)
  1944. p4b.Parent = swordholder
  1945. local msh5b = Instance.new("BlockMesh")
  1946. msh5b.Scale = Vector3.new(0.01,0.1,0.17)
  1947. msh5b.Parent = p4b
  1948. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1949. --msh3.MeshType = "Brick"
  1950. p4b.Transparency = 0
  1951. p4b.Reflectance = 0.4
  1952. p4b.BrickColor = BrickColor.new("Black")
  1953.  
  1954.  
  1955.  
  1956. local w5b = Instance.new("Weld")
  1957. w5b.Parent = p4b
  1958. w5b.Part0 = p4b
  1959. w5b.Part1 = p1
  1960. w5b.C0 = CFrame.new(-0.40, 5.3, 0) --* CFrame.Angles(0, 0, 1)
  1961. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1962.  
  1963.  
  1964.  
  1965. local p4b = Instance.new("Part")
  1966. p4b.formFactor = 1
  1967. p4b.CanCollide = false
  1968. p4b.Name = "p4b"
  1969. p4b.Locked = true
  1970. p4b.Size = Vector3.new(1,1,1)
  1971. p4b.Parent = swordholder
  1972. local msh5b = Instance.new("BlockMesh")
  1973. msh5b.Scale = Vector3.new(0.01,0.06,0.17)
  1974. msh5b.Parent = p4b
  1975. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  1976. --msh3.MeshType = "Brick"
  1977. p4b.Transparency = 0
  1978. p4b.Reflectance = 0.4
  1979. p4b.BrickColor = BrickColor.new("Black")
  1980.  
  1981.  
  1982.  
  1983. local w5b = Instance.new("Weld")
  1984. w5b.Parent = p4b
  1985. w5b.Part0 = p4b
  1986. w5b.Part1 = p1
  1987. w5b.C0 = CFrame.new(-0.1, 5.315, 0) --* CFrame.Angles(0, 0, 1)
  1988. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  1989.  
  1990.  
  1991.  
  1992. local p4b = Instance.new("Part")
  1993. p4b.formFactor = 1
  1994. p4b.CanCollide = false
  1995. p4b.Name = "p4b"
  1996. p4b.Locked = true
  1997. p4b.Size = Vector3.new(1,1,1)
  1998. p4b.Parent = swordholder
  1999. local msh5b = Instance.new("BlockMesh")
  2000. msh5b.Scale = Vector3.new(0.01,0.4,0.17)
  2001. msh5b.Parent = p4b
  2002. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2003. --msh3.MeshType = "Brick"
  2004. p4b.Transparency = 0
  2005. p4b.Reflectance = 0.4
  2006. p4b.BrickColor = BrickColor.new("Black")
  2007.  
  2008.  
  2009.  
  2010. local w5b = Instance.new("Weld")
  2011. w5b.Parent = p4b
  2012. w5b.Part0 = p4b
  2013. w5b.Part1 = p1
  2014. w5b.C0 = CFrame.new(-0.03, 5.11, 0) --* CFrame.Angles(0, 0, 1)
  2015. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2016.  
  2017.  
  2018.  
  2019.  
  2020. local p4b = Instance.new("Part")
  2021. p4b.formFactor = 1
  2022. p4b.CanCollide = false
  2023. p4b.Name = "p4b"
  2024. p4b.Locked = true
  2025. p4b.Size = Vector3.new(1,1,1)
  2026. p4b.Parent = swordholder
  2027. local msh5b = Instance.new("BlockMesh")
  2028. msh5b.Scale = Vector3.new(0.01,0.2,0.17)
  2029. msh5b.Parent = p4b
  2030. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2031. --msh3.MeshType = "Brick"
  2032. p4b.Transparency = 0
  2033. p4b.Reflectance = 0.4
  2034. p4b.BrickColor = BrickColor.new("Black")
  2035.  
  2036.  
  2037.  
  2038. local w5b = Instance.new("Weld")
  2039. w5b.Parent = p4b
  2040. w5b.Part0 = p4b
  2041. w5b.Part1 = p1
  2042. w5b.C0 = CFrame.new(-0.2, 5.23, 0) --* CFrame.Angles(0, 0, 1)
  2043. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2044.  
  2045.  
  2046.  
  2047.  
  2048. local p4b = Instance.new("Part")
  2049. p4b.formFactor = 1
  2050. p4b.CanCollide = false
  2051. p4b.Name = "p4b"
  2052. p4b.Locked = true
  2053. p4b.Size = Vector3.new(1,1,1)
  2054. p4b.Parent = swordholder
  2055. local msh5b = Instance.new("BlockMesh")
  2056. msh5b.Scale = Vector3.new(0.01,0.18,0.17)
  2057. msh5b.Parent = p4b
  2058. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2059. --msh3.MeshType = "Brick"
  2060. p4b.Transparency = 0
  2061. p4b.Reflectance = 0.4
  2062. p4b.BrickColor = BrickColor.new("Black")
  2063.  
  2064.  
  2065.  
  2066. local w5b = Instance.new("Weld")
  2067. w5b.Parent = p4b
  2068. w5b.Part0 = p4b
  2069. w5b.Part1 = p1
  2070. w5b.C0 = CFrame.new(0.35, 5.25, 0) --* CFrame.Angles(0, 0, 1)
  2071. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2072.  
  2073.  
  2074.  
  2075. local p4b = Instance.new("Part")
  2076. p4b.formFactor = 1
  2077. p4b.CanCollide = false
  2078. p4b.Name = "p4b"
  2079. p4b.Locked = true
  2080. p4b.Size = Vector3.new(1,1,1)
  2081. p4b.Parent = swordholder
  2082. local msh5b = Instance.new("BlockMesh")
  2083. msh5b.Scale = Vector3.new(0.21,0.08,0.17)
  2084. msh5b.Parent = p4b
  2085. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2086. --msh3.MeshType = "Brick"
  2087. p4b.Transparency = 0
  2088. p4b.Reflectance = 0.4
  2089. p4b.BrickColor = BrickColor.new("Black")
  2090.  
  2091.  
  2092.  
  2093. local w5b = Instance.new("Weld")
  2094. w5b.Parent = p4b
  2095. w5b.Part0 = p4b
  2096. w5b.Part1 = p1
  2097. w5b.C0 = CFrame.new(-0.65, 5.2, 0) --* CFrame.Angles(0, 0, 1)
  2098. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2099.  
  2100.  
  2101.  
  2102. local p4b = Instance.new("Part")
  2103. p4b.formFactor = 1
  2104. p4b.CanCollide = false
  2105. p4b.Name = "p4b"
  2106. p4b.Locked = true
  2107. p4b.Size = Vector3.new(1,1,1)
  2108. p4b.Parent = swordholder
  2109. local msh5b = Instance.new("BlockMesh")
  2110. msh5b.Scale = Vector3.new(0.21,0.08,0.17)
  2111. msh5b.Parent = p4b
  2112. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2113. --msh3.MeshType = "Brick"
  2114. p4b.Transparency = 0
  2115. p4b.Reflectance = 0.4
  2116. p4b.BrickColor = BrickColor.new("Black")
  2117.  
  2118.  
  2119.  
  2120. local w5b = Instance.new("Weld")
  2121. w5b.Parent = p4b
  2122. w5b.Part0 = p4b
  2123. w5b.Part1 = p1
  2124. w5b.C0 = CFrame.new(-0.65, 4.9, 0) --* CFrame.Angles(0, 0, 1)
  2125. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2126.  
  2127.  
  2128.  
  2129. local p4b = Instance.new("Part")
  2130. p4b.formFactor = 1
  2131. p4b.CanCollide = false
  2132. p4b.Name = "p4b"
  2133. p4b.Locked = true
  2134. p4b.Size = Vector3.new(1,1,1)
  2135. p4b.Parent = swordholder
  2136. local msh5b = Instance.new("BlockMesh")
  2137. msh5b.Scale = Vector3.new(0.21,0.08,0.17)
  2138. msh5b.Parent = p4b
  2139. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2140. --msh3.MeshType = "Brick"
  2141. p4b.Transparency = 0
  2142. p4b.Reflectance = 0.4
  2143. p4b.BrickColor = BrickColor.new("Black")
  2144.  
  2145.  
  2146.  
  2147. local w5b = Instance.new("Weld")
  2148. w5b.Parent = p4b
  2149. w5b.Part0 = p4b
  2150. w5b.Part1 = p1
  2151. w5b.C0 = CFrame.new(-0.65, 4.6, 0) --* CFrame.Angles(0, 0, 1)
  2152. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2153.  
  2154.  
  2155.  
  2156. local p4b = Instance.new("Part")
  2157. p4b.formFactor = 1
  2158. p4b.CanCollide = false
  2159. p4b.Name = "p4b"
  2160. p4b.Locked = true
  2161. p4b.Size = Vector3.new(1,1,1)
  2162. p4b.Parent = swordholder
  2163. local msh5b = Instance.new("BlockMesh")
  2164. msh5b.Scale = Vector3.new(0.21,0.08,0.17)
  2165. msh5b.Parent = p4b
  2166. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2167. --msh3.MeshType = "Brick"
  2168. p4b.Transparency = 0
  2169. p4b.Reflectance = 0.4
  2170. p4b.BrickColor = BrickColor.new("Black")
  2171.  
  2172.  
  2173.  
  2174. local w5b = Instance.new("Weld")
  2175. w5b.Parent = p4b
  2176. w5b.Part0 = p4b
  2177. w5b.Part1 = p1
  2178. w5b.C0 = CFrame.new(0.65, 5.2, 0) --* CFrame.Angles(0, 0, 1)
  2179. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2180.  
  2181.  
  2182.  
  2183. local p4b = Instance.new("Part")
  2184. p4b.formFactor = 1
  2185. p4b.CanCollide = false
  2186. p4b.Name = "p4b"
  2187. p4b.Locked = true
  2188. p4b.Size = Vector3.new(1,1,1)
  2189. p4b.Parent = swordholder
  2190. local msh5b = Instance.new("BlockMesh")
  2191. msh5b.Scale = Vector3.new(0.21,0.08,0.17)
  2192. msh5b.Parent = p4b
  2193. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2194. --msh3.MeshType = "Brick"
  2195. p4b.Transparency = 0
  2196. p4b.Reflectance = 0.4
  2197. p4b.BrickColor = BrickColor.new("Black")
  2198.  
  2199.  
  2200.  
  2201. local w5b = Instance.new("Weld")
  2202. w5b.Parent = p4b
  2203. w5b.Part0 = p4b
  2204. w5b.Part1 = p1
  2205. w5b.C0 = CFrame.new(0.65, 4.9, 0) --* CFrame.Angles(0, 0, 1)
  2206. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2207.  
  2208.  
  2209.  
  2210. local p4b = Instance.new("Part")
  2211. p4b.formFactor = 1
  2212. p4b.CanCollide = false
  2213. p4b.Name = "p4b"
  2214. p4b.Locked = true
  2215. p4b.Size = Vector3.new(1,1,1)
  2216. p4b.Parent = swordholder
  2217. local msh5b = Instance.new("BlockMesh")
  2218. msh5b.Scale = Vector3.new(0.21,0.08,0.17)
  2219. msh5b.Parent = p4b
  2220. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2221. --msh3.MeshType = "Brick"
  2222. p4b.Transparency = 0
  2223. p4b.Reflectance = 0.4
  2224. p4b.BrickColor = BrickColor.new("Black")
  2225.  
  2226.  
  2227.  
  2228. local w5b = Instance.new("Weld")
  2229. w5b.Parent = p4b
  2230. w5b.Part0 = p4b
  2231. w5b.Part1 = p1
  2232. w5b.C0 = CFrame.new(0.65, 4.6, 0) --* CFrame.Angles(0, 0, 1)
  2233. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2234.  
  2235.  
  2236.  
  2237.  
  2238.  
  2239. local p4b = Instance.new("Part")
  2240. p4b.formFactor = 1
  2241. p4b.CanCollide = false
  2242. p4b.Name = "p4b"
  2243. p4b.Locked = true
  2244. p4b.Size = Vector3.new(1,1,1)
  2245. p4b.Parent = swordholder
  2246. local msh5b = Instance.new("SpecialMesh")
  2247. msh5b.Scale = Vector3.new(0.3,0.25,0.16)
  2248. msh5b.Parent = p4b
  2249. msh5b.MeshType = "Head"
  2250. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2251. --msh3.MeshType = "Brick"
  2252. p4b.Transparency = 0
  2253. p4b.Reflectance = 0.4
  2254. p4b.BrickColor = BrickColor.new("White")
  2255.  
  2256.  
  2257.  
  2258. local w5b = Instance.new("Weld")
  2259. w5b.Parent = p4b
  2260. w5b.Part0 = p4b
  2261. w5b.Part1 = p1
  2262. w5b.C0 = CFrame.new(0.3, 0, 0) --* CFrame.Angles(0, 0, 1)
  2263. w5b.C0 = w5b.C0 * CFrame.Angles(1.5, 0, 0)
  2264.  
  2265. local p4b = Instance.new("Part")
  2266. p4b.formFactor = 1
  2267. p4b.CanCollide = false
  2268. p4b.Name = "p4b"
  2269. p4b.Locked = true
  2270. p4b.Size = Vector3.new(1,1,1)
  2271. p4b.Parent = swordholder
  2272. local msh5b = Instance.new("SpecialMesh")
  2273. msh5b.Scale = Vector3.new(0.3,0.25,0.16)
  2274. msh5b.Parent = p4b
  2275. msh5b.MeshType = "Head"
  2276. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2277. --msh3.MeshType = "Brick"
  2278. p4b.Transparency = 0
  2279. p4b.Reflectance = 0.4
  2280. p4b.BrickColor = BrickColor.new("White")
  2281.  
  2282.  
  2283.  
  2284. local w5b = Instance.new("Weld")
  2285. w5b.Parent = p4b
  2286. w5b.Part0 = p4b
  2287. w5b.Part1 = p1
  2288. w5b.C0 = CFrame.new(-0.3, 0, 0) --* CFrame.Angles(0, 0, 1)
  2289. w5b.C0 = w5b.C0 * CFrame.Angles(1.5, 0, 0)
  2290.  
  2291.  
  2292.  
  2293.  
  2294.  
  2295.  
  2296. local p4b = Instance.new("Part")
  2297. p4b.formFactor = 1
  2298. p4b.CanCollide = false
  2299. p4b.Name = "p4b"
  2300. p4b.Locked = true
  2301. p4b.Size = Vector3.new(1,1,1)
  2302. p4b.Parent = swordholder
  2303. local msh5b = Instance.new("SpecialMesh")
  2304. msh5b.Scale = Vector3.new(0.5,0.165,0.5)
  2305. msh5b.Parent = p4b
  2306. msh5b.MeshType = "Head"
  2307. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2308. --msh3.MeshType = "Brick"
  2309. p4b.Transparency = 0
  2310. p4b.Reflectance = 0.4
  2311. p4b.BrickColor = BrickColor.new("White")
  2312.  
  2313.  
  2314.  
  2315. local w5b = Instance.new("Weld")
  2316. w5b.Parent = p4b
  2317. w5b.Part0 = p4b
  2318. w5b.Part1 = p1
  2319. w5b.C0 = CFrame.new(-0.45, 0.06, 6) --* CFrame.Angles(0, 0, 1)
  2320. w5b.C0 = w5b.C0 * CFrame.Angles(1.56, 0, 0)
  2321.  
  2322. local p4b = Instance.new("Part")
  2323. p4b.formFactor = 1
  2324. p4b.CanCollide = false
  2325. p4b.Name = "p4b"
  2326. p4b.Locked = true
  2327. p4b.Size = Vector3.new(1,1,1)
  2328. p4b.Parent = swordholder
  2329. local msh5b = Instance.new("SpecialMesh")
  2330. msh5b.Scale = Vector3.new(0.1,0.165,0.1)
  2331. msh5b.Parent = p4b
  2332. msh5b.MeshType = "Head"
  2333. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2334. --msh3.MeshType = "Brick"
  2335. p4b.Transparency = 0
  2336. p4b.Reflectance = 0.4
  2337. p4b.BrickColor = BrickColor.new("White")
  2338.  
  2339.  
  2340.  
  2341. local w5b = Instance.new("Weld")
  2342. w5b.Parent = p4b
  2343. w5b.Part0 = p4b
  2344. w5b.Part1 = p1
  2345. w5b.C0 = CFrame.new(-0.67, 0.06, 6.17) --* CFrame.Angles(0, 0, 1)
  2346. w5b.C0 = w5b.C0 * CFrame.Angles(1.56, 0, 0)
  2347.  
  2348. local p4b = Instance.new("Part")
  2349. p4b.formFactor = 1
  2350. p4b.CanCollide = false
  2351. p4b.Name = "p4b"
  2352. p4b.Locked = true
  2353. p4b.Size = Vector3.new(1,1,1)
  2354. p4b.Parent = swordholder
  2355. local msh5b = Instance.new("SpecialMesh")
  2356. msh5b.Scale = Vector3.new(0.2,0.17,0.2)
  2357. msh5b.Parent = p4b
  2358. msh5b.MeshType = "Head"
  2359. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2360. --msh3.MeshType = "Brick"
  2361. p4b.Transparency = 0
  2362. p4b.Reflectance = 0.4
  2363. p4b.BrickColor = BrickColor.new("Institutional white")
  2364.  
  2365.  
  2366.  
  2367. local w5b = Instance.new("Weld")
  2368. w5b.Parent = p4b
  2369. w5b.Part0 = p4b
  2370. w5b.Part1 = p1
  2371. w5b.C0 = CFrame.new(-0.5, 0.06, 6.05) --* CFrame.Angles(0, 0, 1)
  2372. w5b.C0 = w5b.C0 * CFrame.Angles(1.56, 0, 0)
  2373.  
  2374.  
  2375.  
  2376.  
  2377.  
  2378.  
  2379.  
  2380.  
  2381. ----------------------------Stuff
  2382.  
  2383. local p4b = Instance.new("Part")
  2384. p4b.formFactor = 1
  2385. p4b.CanCollide = false
  2386. p4b.Name = "p4b"
  2387. p4b.Locked = true
  2388. p4b.Size = Vector3.new(1,1,1)
  2389. p4b.Parent = swordholder
  2390. local msh5b = Instance.new("SpecialMesh")
  2391. msh5b.Scale = Vector3.new(1.3,0.5,0.6)
  2392. msh5b.Parent = p4b
  2393. msh5b.MeshType = "Sphere"
  2394. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2395. --msh3.MeshType = "Brick"
  2396. p4b.Transparency = 0
  2397. p4b.Reflectance = 0
  2398. p4b.BrickColor = BrickColor.new("Reddish brown")
  2399.  
  2400.  
  2401.  
  2402. local w5b = Instance.new("Weld")
  2403. w5b.Parent = p4b
  2404. w5b.Part0 = p4b
  2405. w5b.Part1 = Torso
  2406. w5b.C0 = CFrame.new(-0.7, 0.7, -0.7) --* CFrame.Angles(0, 0, 1)
  2407. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2408.  
  2409. local p4b = Instance.new("Part")
  2410. p4b.formFactor = 1
  2411. p4b.CanCollide = false
  2412. p4b.Name = "p4b"
  2413. p4b.Locked = true
  2414. p4b.Size = Vector3.new(1,1,1)
  2415. p4b.Parent = swordholder
  2416. local msh5b = Instance.new("BlockMesh")
  2417. msh5b.Scale = Vector3.new(1.15,0.18,0.4)
  2418. msh5b.Parent = p4b
  2419. --msh5b.MeshType = "Sphere"
  2420. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2421. --msh3.MeshType = "Brick"
  2422. p4b.Transparency = 0
  2423. p4b.Reflectance = 0
  2424. p4b.BrickColor = BrickColor.new("Reddish brown")
  2425.  
  2426.  
  2427.  
  2428. local w5b = Instance.new("Weld")
  2429. w5b.Parent = p4b
  2430. w5b.Part0 = p4b
  2431. w5b.Part1 = Torso
  2432. w5b.C0 = CFrame.new(-0.7, 0.5, -0.7) --* CFrame.Angles(0, 0, 1)
  2433. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2434.  
  2435.  
  2436.  
  2437.  
  2438. local p4b = Instance.new("Part")
  2439. p4b.formFactor = 1
  2440. p4b.CanCollide = false
  2441. p4b.Name = "p4b"
  2442. p4b.Locked = true
  2443. p4b.Size = Vector3.new(1,1,1)
  2444. p4b.Parent = swordholder
  2445. local msh5b = Instance.new("BlockMesh")
  2446. msh5b.Scale = Vector3.new(0.1,0.1,0.1)
  2447. msh5b.Parent = p4b
  2448. --msh5b.MeshType = "Sphere"
  2449. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2450. --msh3.MeshType = "Brick"
  2451. p4b.Transparency = 0
  2452. p4b.Reflectance = 0
  2453. p4b.BrickColor = BrickColor.new("White")
  2454.  
  2455.  
  2456.  
  2457. local w5b = Instance.new("Weld")
  2458. w5b.Parent = p4b
  2459. w5b.Part0 = p4b
  2460. w5b.Part1 = Torso
  2461. w5b.C0 = CFrame.new(-0.7, 0.5, -0.9) --* CFrame.Angles(0, 0, 1)
  2462. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2463.  
  2464.  
  2465.  
  2466.  
  2467.  
  2468.  
  2469.  
  2470.  
  2471.  
  2472.  
  2473.  
  2474.  
  2475.  
  2476.  
  2477.  
  2478.  
  2479. local p4b = Instance.new("Part")
  2480.  
  2481.  
  2482. for i = 1, 20 do
  2483.  
  2484. local p4b = Instance.new("Part")
  2485. p4b.formFactor = 1
  2486. p4b.CanCollide = false
  2487. p4b.Name = "p4b"
  2488. p4b.Locked = true
  2489. p4b.Size = Vector3.new(1,1,1)
  2490. p4b.Parent = swordholder
  2491. local msh5b = Head.Mesh:clone()
  2492. msh5b.Scale = Head.Mesh.Scale + Vector3.new(0.01+i*2/100,0.01,0.01+i*2/100)
  2493. msh5b.Parent = p4b
  2494. --msh5b.MeshType = "Sphere"
  2495. --msh5.TextureId = "http://www.roblox.com/asset/?id=12352036"
  2496. --msh3.MeshType = "Brick"
  2497. p4b.Transparency = 0.56+i/10/2
  2498. p4b.Reflectance = 0
  2499. p4b.BrickColor = BrickColor.new("White")
  2500.  
  2501.  
  2502.  
  2503. local w5b = Instance.new("Weld")
  2504. w5b.Parent = p4b
  2505. w5b.Part0 = p4b
  2506. w5b.Part1 = Head
  2507. w5b.C0 = CFrame.new(0,0,0) --* CFrame.Angles(0, 0, 1)
  2508. w5b.C0 = w5b.C0 * CFrame.Angles(0, 0, 0)
  2509.  
  2510. wait()
  2511. end
  2512.  
  2513.  
  2514.  
  2515.  
  2516.  
  2517.  
  2518.  
  2519.  
  2520.  
  2521.  
  2522.  
  2523.  
  2524.  
  2525.  
  2526. --shurikens
  2527.  
  2528. local shuriken1 = Instance.new("Part")
  2529. shuriken1.formFactor = 1
  2530. shuriken1.CanCollide = false
  2531. shuriken1.Name = "shuriken1"
  2532. shuriken1.Locked = true
  2533. shuriken1.Size = Vector3.new(1,1,1)
  2534. shuriken1.Parent = swordholder
  2535. local shmesh = Instance.new("SpecialMesh")
  2536. shmesh.Scale = Vector3.new(0.5,0.5,0.5)
  2537. shmesh.Parent = shuriken1
  2538. --shmesh.MeshType = "FileMesh"
  2539. shmesh.MeshId = "http://www.roblox.com/asset/?id=22768172"
  2540. --msh3.MeshType = "Brick"
  2541. shuriken1.Transparency = 0.8
  2542. shuriken1.Reflectance = 0
  2543. shuriken1.BrickColor = BrickColor.new("Bright blue")
  2544.  
  2545.  
  2546.  
  2547. local shw = Instance.new("Weld")
  2548. shw.Parent = shuriken1
  2549. shw.Part0 = shuriken1
  2550. shw.Part1 = Torso
  2551. shw.Name = "SWeld1"
  2552. shw.C0 = CFrame.new(-0.6, 0.5, -0.2) --* CFrame.Angles(0, 0, 1)
  2553. shw.C0 = shw.C0 * CFrame.Angles(1.5, 0, 0)
  2554.  
  2555. local shuriken2 = Instance.new("Part")
  2556. shuriken2.formFactor = 1
  2557. shuriken2.CanCollide = false
  2558. shuriken2.Name = "shuriken2"
  2559. shuriken2.Locked = true
  2560. shuriken2.Size = Vector3.new(1,1,1)
  2561. shuriken2.Parent = swordholder
  2562. local shmesh2 = Instance.new("SpecialMesh")
  2563. shmesh2.Scale = Vector3.new(0.5,0.5,0.5)
  2564. shmesh2.Parent = shuriken2
  2565. --shmesh2.MeshType = "FileMesh"
  2566. shmesh2.MeshId = "http://www.roblox.com/asset/?id=22768172"
  2567. --msh3.MeshType = "Brick"
  2568. shuriken2.Transparency = 0.7
  2569. shuriken2.Reflectance = 0
  2570. shuriken2.BrickColor = BrickColor.new("Bright blue")
  2571.  
  2572.  
  2573.  
  2574. local shw2 = Instance.new("Weld")
  2575. shw2.Parent = shuriken2
  2576. shw2.Part0 = shuriken2
  2577. shw2.Name = "SWeld2"
  2578. shw2.Part1 = shuriken1
  2579. shw2.C0 = CFrame.new(0,0,0) --* CFrame.Angles(0, 0, 1)
  2580. shw2.C0 = shw2.C0 * CFrame.Angles(0, 0.8, 0)
  2581.  
  2582.  
  2583. local shuriken3 = Instance.new("Part")
  2584. shuriken3.formFactor = 1
  2585. shuriken3.CanCollide = false
  2586. shuriken3.Name = "shuriken3"
  2587. shuriken3.Locked = true
  2588. shuriken3.Size = Vector3.new(1,1,1)
  2589. shuriken3.Parent = swordholder
  2590. local shmesh3 = Instance.new("SpecialMesh")
  2591. shmesh3.Scale = Vector3.new(0.5,0.5,0.5)
  2592. shmesh3.Parent = shuriken3
  2593. --shmesh3.MeshType = "FileMesh"
  2594. shmesh3.MeshId = "http://www.roblox.com/asset/?id=22768172"
  2595. --msh3.MeshType = "Brick"
  2596. shuriken3.Transparency = 0.6
  2597. shuriken3.Reflectance = 0
  2598. shuriken3.BrickColor = BrickColor.new("Bright blue")
  2599.  
  2600.  
  2601.  
  2602. local shw3 = Instance.new("Weld")
  2603. shw3.Parent = shuriken3
  2604. shw3.Part0 = shuriken3
  2605. shw3.Name = "SWeld3"
  2606. shw3.Part1 = shuriken1
  2607. shw3.C0 = CFrame.new(0,0,0) --* CFrame.Angles(0, 0, 1)
  2608. shw3.C0 = shw3.C0 * CFrame.Angles(0, 0.8, 0)
  2609.  
  2610. --------------------
  2611.  
  2612.  
  2613.  
  2614. -----------End
  2615.  
  2616.  
  2617.  
  2618.  
  2619.  
  2620.  
  2621. end
  2622.  
  2623. fk()
  2624.  
  2625.  
  2626.  
  2627.  
  2628.  
  2629.  
  2630.  
  2631.  
  2632.  
  2633.  
  2634.  
  2635.  
  2636.  
  2637. -------
  2638.  
  2639.  
  2640.  
  2641.  
  2642.  
  2643.  
  2644.  
  2645.  
  2646.  
  2647.  
  2648.  
  2649.  
  2650.  
  2651.  
  2652.  
  2653.  
  2654. -----------
  2655.  
  2656.  
  2657.  
  2658.  
  2659.  
  2660.  
  2661.  
  2662.  
  2663.  
  2664.  
  2665.  
  2666.  
  2667.  
  2668.  
  2669.  
  2670.  
  2671.  
  2672.  
  2673.  
  2674.  
  2675.  
  2676.  
  2677.  
  2678.  
  2679.  
  2680.  
  2681. --function runlikeabitch()
  2682. --wait()
  2683. --if Ran == true then
  2684. --j = Instance.new("Part")
  2685. --j.Parent = workspace
  2686. --j.Size = Vector3.new(1,2,1)
  2687. --j.CFrame = p5.CFrame
  2688. --j.CanCollide = false
  2689. --j.Anchored = false
  2690. --j.CFrame = j.CFrame * CFrame.Angles(math.random(1,10),math.random(1,10),math.random(1,10))
  2691. --j.Transparency = 0.2
  2692. --j.BrickColor = BrickColor.new("Bright orange")
  2693. --jj = Instance.new("BlockMesh")
  2694. --jj.Parent = j
  2695. --jj.Scale = Vector3.new(0.2,0.8,0.2)
  2696. --end
  2697. --end
  2698. --Character.Humanoid.running:connect(runlikeabitch)
  2699.  
  2700. deb = false
  2701.  
  2702. function runlikeabitch2(hit)
  2703. if deb == false then
  2704. deb = true
  2705. wait()
  2706. if Ran == true then
  2707. if effect == true then
  2708. jl = Instance.new("Part")
  2709. jl.BrickColor = BrickColor.new("Dark stone grey")
  2710. jl.Parent = workspace
  2711. jl.Size = Vector3.new(1,4,1)
  2712. jl.Name = "effect"
  2713. jl.CFrame = p5.CFrame
  2714. jl.CanCollide = false
  2715. jl.Anchored = false
  2716. jl.CFrame = jl.CFrame * CFrame.Angles(math.random(1,5),math.random(1,5),math.random(1,5))
  2717. jl.Material = "Slate"
  2718. --jl.Velocity = jl.Velocity + jl.CFrame.lookVector *-50
  2719. --jj = Instance.new("BlockMesh")
  2720. --jj.Parent = jl
  2721. --jj.Scale = Vector3.new(1.2,1.5,1.2)
  2722. --jl.Transparency = 0
  2723. deb = false
  2724. end
  2725. end
  2726. end
  2727. end
  2728. p5.Touched:connect(runlikeabitch2)
  2729.  
  2730.  
  2731.  
  2732.  
  2733. function unequipweld()
  2734. w1.Part1 = Torso
  2735. w1.C0 = CFrame.new(-0.7, -2, -0.7) --* CFrame.Angles(0, 0, 1)
  2736. w1.C0 = w1.C0 * CFrame.Angles(0, 0, 3.7)
  2737. end
  2738.  
  2739.  
  2740. function equipweld()
  2741. w1.Part1 = RightArm
  2742. w1.C0 = CFrame.new(0, 1.5, 0) --* CFrame.Angles(0, 0, 1)
  2743. w1.C0 = w1.C0 * CFrame.Angles(0, 0, 0)
  2744. end
  2745.  
  2746. function ht(hit)
  2747. if hit.Parent:findFirstChild("Humanoid") and hit.Parent.Name ~= Character.Name then
  2748. hit.Parent:findFirstChild("Humanoid"):TakeDamage(math.random(20,30))
  2749. hit.Parent:findFirstChild("Humanoid").Sit = true
  2750. end
  2751. end
  2752.  
  2753.  
  2754.  
  2755.  
  2756.  
  2757. function equips()
  2758. swordholder.shuriken1["SWeld1"].Part1 = Character["Right Arm"]
  2759. swordholder.shuriken2["SWeld2"].Part1 = Character["Right Arm"]
  2760. swordholder.shuriken3["SWeld3"].Part1 = Character["Right Arm"]
  2761.  
  2762. swordholder.shuriken1["SWeld1"].C0 = CFrame.new(0,1.4,0)
  2763. swordholder.shuriken2["SWeld2"].C0 = CFrame.new(0,1.4,0)
  2764. swordholder.shuriken3["SWeld3"].C0 = CFrame.new(0,1.4,0)
  2765.  
  2766. swordholder.shuriken1["SWeld1"].C0 = swordholder.shuriken1["SWeld1"].C0 * CFrame.Angles(0, 0, 0)
  2767. swordholder.shuriken2["SWeld2"].C0 = swordholder.shuriken2["SWeld2"].C0 * CFrame.Angles(0, 0.4, 0)
  2768. swordholder.shuriken3["SWeld3"].C0 = swordholder.shuriken3["SWeld3"].C0 * CFrame.Angles(0, 0.6, 0)
  2769. end
  2770.  
  2771. function unequips()
  2772. swordholder.shuriken1["SWeld1"].Part1 = Character["Torso"]
  2773. swordholder.shuriken2["SWeld2"].Part1 = swordholder.shuriken1
  2774. swordholder.shuriken3["SWeld3"].Part1 = swordholder.shuriken1
  2775.  
  2776. swordholder.shuriken1["SWeld1"].C0 = CFrame.new(-0.6, 0.5, -0.2)
  2777. swordholder.shuriken2["SWeld2"].C0 = CFrame.new(0,0,0)
  2778. swordholder.shuriken3["SWeld3"].C0 = CFrame.new(0,0,0)
  2779.  
  2780. swordholder.shuriken1["SWeld1"].C0 = swordholder.shuriken1["SWeld1"].C0 * CFrame.Angles(1.5, 0, 0)
  2781. swordholder.shuriken2["SWeld2"].C0 = swordholder.shuriken2["SWeld2"].C0 * CFrame.Angles(0, 0.8, 0)
  2782. swordholder.shuriken3["SWeld3"].C0 = swordholder.shuriken3["SWeld3"].C0 * CFrame.Angles(0, 0.8, 0)
  2783. end
  2784.  
  2785. function throws1()
  2786.  
  2787. for i = 0 , 1 , 0.17 do
  2788. wait()
  2789. swordholder.shuriken2["SWeld2"].C0 = swordholder.shuriken2["SWeld2"].C0 * CFrame.Angles(0, 0.4+2*i*5, 0)
  2790. swordholder.shuriken3["SWeld3"].C0 = swordholder.shuriken3["SWeld3"].C0 * CFrame.Angles(0, 0.8+2*i*5, 0)
  2791. swordholder.shuriken1.Mesh.Scale = swordholder.shuriken1.Mesh.Scale - Vector3.new(0.001+1*i/3,0.001+0.5*i/2,0.001+1*i/3)
  2792. swordholder.shuriken2.Mesh.Scale = swordholder.shuriken2.Mesh.Scale - Vector3.new(0.005+1*i/2,0.01+0.5*i/2,0.005+1*i/2)
  2793. swordholder.shuriken2.Mesh.Scale = swordholder.shuriken3.Mesh.Scale - Vector3.new(0.01+1*i/2,0.01+0.5*i/2,0.01+1*i/2)
  2794. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,5-4*i) ----math.rad(260)-math.rad(260)*i
  2795. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  2796. end
  2797.  
  2798. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  2799. ss = Instance.new("Sound")
  2800. ss.Parent = Torso
  2801. ss.Pitch = 0.9
  2802. ss.SoundId = "rbxasset://sounds/swordslash.wav"
  2803. ss.Volume = 2
  2804. ss:Play()
  2805. ss:Play()
  2806. swordholder.shuriken1.Transparency = 1
  2807. swordholder.shuriken2.Transparency = 1
  2808. swordholder.shuriken3.Transparency = 1
  2809. s1 = swordholder.shuriken1:clone()
  2810. s2 = swordholder.shuriken2:clone()
  2811. s3 = swordholder.shuriken3:clone()
  2812. s1.CanCollide = false
  2813. s1.Name = "WSH1"
  2814. s2.CanCollide = false
  2815. s3.CanCollide = false
  2816. s1.CFrame = Torso.CFrame + Vector3.new(-1.5,1,-1)
  2817. s1.Transparency = 0.5
  2818. s1.Parent = workspace
  2819. --s1.SWeld1:Destroy()
  2820. --s1.Velocity = s1.Velocity + s1.CFrame.lookVector *700
  2821. s2.CFrame = Torso.CFrame + Vector3.new(-1.5,1,-1)
  2822. s2.Transparency = 0.6
  2823. s2.Name = "WSH2"
  2824. s2.Parent = workspace
  2825. --s2.SWeld2:Destroy()
  2826. --s2.Velocity = s1.Velocity
  2827. s3.CFrame = Torso.CFrame + Vector3.new(-1.5,1,-1)
  2828. s3.Transparency = 0.7
  2829. s3.Parent = workspace
  2830. --s3.SWeld3:Destroy()
  2831. --s3.Velocity = s1.Velocity
  2832. s1.Mesh.Scale = Vector3.new(1,1,1)
  2833. s2.Mesh.Scale = Vector3.new(1.2,1.2,1.2)
  2834. s3.Name = "WSH3"
  2835. s3.Mesh.Scale = Vector3.new(1.3,1.3,1.3)
  2836.  
  2837. b = Instance.new("BodyPosition")
  2838. b.Parent = s1
  2839. b.D = 1000
  2840. b.P = 3000
  2841. b.maxForce = Vector3.new(4000,210,4000)
  2842. b.position = b.position + Head.CFrame.lookVector * 300
  2843. b = Instance.new("BodyPosition")
  2844. b.Parent = s2
  2845. b.D = 1000
  2846. b.P = 3000
  2847. b.maxForce = Vector3.new(4000,210,4000)
  2848. b.position = b.position + Head.CFrame.lookVector * 300
  2849. b = Instance.new("BodyPosition")
  2850. b.Parent = s3
  2851. b.D = 1000
  2852. b.P = 3000
  2853. b.maxForce = Vector3.new(4000,210,4000)
  2854. b.position = b.position + Head.CFrame.lookVector * 300
  2855.  
  2856.  
  2857.  
  2858.  
  2859.  
  2860.  
  2861.  
  2862.  
  2863.  
  2864.  
  2865.  
  2866.  
  2867.  
  2868.  
  2869.  
  2870.  
  2871. wait(0.7)
  2872. s = Instance.new("Sound")
  2873. s.Parent = s1
  2874. s.Pitch = 0.5
  2875. s.SoundId = "http://roblox.com/asset/?id=2760979"
  2876. s.Volume = 2
  2877. s:Play()
  2878. s:Play()
  2879. s = Instance.new("Sound")
  2880. s.Parent = s1
  2881. s.Pitch = 0.5
  2882. s.SoundId = "rbxasset://sounds/Rocket shot.wav"
  2883. s.Volume = 2
  2884. s:Play()
  2885. s:Play()
  2886. er = Instance.new("Explosion")
  2887. er.Parent = workspace
  2888. er.Position = s1.Position
  2889. er.BlastRadius = 30
  2890. er.BlastPressure = 10000
  2891.  
  2892. hhh = Instance.new("Part")
  2893. hhh.Parent = workspace
  2894. hhh.Size = Vector3.new(1,1,1)
  2895. hhh.CFrame = s1.CFrame
  2896. hhh.BrickColor = BrickColor.new("Bright blue")
  2897. hhh.CanCollide = false
  2898. hhh.Anchored = true
  2899. hhh.Transparency = 0.3
  2900. wm = Instance.new("SpecialMesh")
  2901. wm.Parent = hhh
  2902. wm.MeshId = "http://www.roblox.com/asset/?id=1051557"
  2903. wm.Scale = Vector3.new(1,1,1)
  2904.  
  2905. hhh2 = Instance.new("Part")
  2906. hhh2.Parent = workspace
  2907. hhh2.Size = Vector3.new(1,1,1)
  2908. hhh2.CFrame = s1.CFrame
  2909. hhh2.BrickColor = BrickColor.new("Bright blue")
  2910. hhh2.CanCollide = false
  2911. hhh2.Anchored = true
  2912. hhh2.Transparency = 0.3
  2913. wm2 = Instance.new("SpecialMesh")
  2914. wm2.Parent = hhh2
  2915. wm2.MeshType = "Sphere"
  2916. wm2.Scale = Vector3.new(1.25,1,1.25)
  2917.  
  2918. s1.Anchored = true
  2919. s2.Anchored = true
  2920. s3.Anchored = true
  2921. local wx = Instance.new("Weld")
  2922. wx.Parent = hhh
  2923. wx.Part0 = hhh
  2924. wx.Name = "wx"
  2925. wx.Part1 = s1
  2926. wx.C0 = CFrame.new(0,0,0)
  2927. wx.C0 = wx.C0 * CFrame.Angles(0, 0, 0)
  2928.  
  2929. local wx2 = Instance.new("Weld")
  2930. wx2.Parent = hhh2
  2931. wx2.Part0 = hhh2
  2932. wx2.Name = "wx2"
  2933. wx2.Part1 = s1
  2934. wx2.C0 = CFrame.new(0,0,0)
  2935. wx2.C0 = wx2.C0 * CFrame.Angles(0, 0, 0)
  2936.  
  2937. for i=1, 25 do
  2938. wait()
  2939. er = Instance.new("Explosion")
  2940. er.Parent = workspace
  2941. er.Position = s1.Position
  2942. er.BlastRadius = 30-i
  2943. er.BlastPressure = 10000
  2944. s1.Mesh.Scale = s1.Mesh.Scale + Vector3.new(0.001+1*i/6,0.001+0.5*i/4,0.001+1*i/6)
  2945. s2.Mesh.Scale = s2.Mesh.Scale + Vector3.new(0.005+1*i/5,0.01+0.5*i/4,0.005+1*i/5)
  2946. s3.Mesh.Scale = s3.Mesh.Scale + Vector3.new(0.01+1*i/4,0.01+0.5*i/4,0.01+1*i/4)
  2947.  
  2948.  
  2949.  
  2950.  
  2951.  
  2952.  
  2953.  
  2954. wm.Scale = wm.Scale + Vector3.new(1*i/2,1*i/2,1*i/2)
  2955. wm2.Scale = wm2.Scale + Vector3.new(1.25*i/2,1*i/2,1.25*i/2)
  2956. wx.C0 = wx.C0 * CFrame.Angles(2+2*i*5/2, 0, 0)
  2957. wx2.C0 = wx2.C0 * CFrame.Angles(2+2*i*5/2, 0, 0)
  2958. end
  2959. hhh:Destroy()
  2960. hhh2:Destroy()
  2961. s1:Destroy()
  2962. s2:Destroy()
  2963. s3:Destroy()
  2964.  
  2965.  
  2966.  
  2967.  
  2968.  
  2969. --for i = 0 , 1 , 0.17 do
  2970. --wait()
  2971. --RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,2.93+1*i) ----math.rad(260)-math.rad(260)*i
  2972. --RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  2973. --end
  2974. wait()
  2975.  
  2976. unequips()
  2977. swordholder.shuriken1.Mesh.Scale = Vector3.new(0.5,0.5,0.5)
  2978. swordholder.shuriken2.Mesh.Scale = Vector3.new(0.5,0.5,0.5)
  2979. swordholder.shuriken3.Mesh.Scale = Vector3.new(0.5,0.5,0.5)
  2980. swordholder.shuriken1.Transparency = 0.8
  2981. swordholder.shuriken2.Transparency = 0.7
  2982. swordholder.shuriken3.Transparency = 0.6
  2983. eq = false
  2984. deb = false
  2985. Ran = false
  2986. for i,e in pairs(workspace:GetChildren()) do
  2987. if e.Name == "effect" then
  2988. e:Destroy()
  2989. end
  2990. end
  2991.  
  2992. end
  2993.  
  2994.  
  2995. function hideanim()
  2996.  
  2997. for i = 0 , 1 , 0.075 do
  2998. wait()
  2999. RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(0.25*-i*-3.2,-1 ,0-1.9*i)
  3000. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3001. LW.C0 = CFrame.new(1-2.5*i, 0.5, -0.5+0.5*i) * CFrame.fromEulerAnglesXYZ(1.55-1.6*i,0 ,0,0525-0.7*i)
  3002. LW.C1 = CFrame.new(0, 0.5, 0)
  3003. end
  3004.  
  3005.  
  3006. w1.Part1 = Torso
  3007. w1.C0 = CFrame.new(-0.7, -2, -0.7) --* CFrame.Angles(0, 0, 1)
  3008. w1.C0 = w1.C0 * CFrame.Angles(0, 0, 3.7)
  3009. unequips()
  3010. for i = 0 , 1 , 0.085 do
  3011. wait()
  3012. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,-1.2+1*i) ----math.rad(260)-math.rad(260)*i
  3013. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3014. end
  3015.  
  3016. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  3017.  
  3018. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  3019. end
  3020.  
  3021.  
  3022. function equipanim()
  3023.  
  3024. for i = 0 , 1 , 0.085 do
  3025. wait()
  3026. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,-1+1*i) ----math.rad(260)-math.rad(260)*i
  3027. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3028. end
  3029. wait(0.1)
  3030.  
  3031. for i = 0 , 1 , 0.075 do
  3032. wait()
  3033. RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(0.25*i*3.2,-1 ,0+1.9*i)
  3034. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3035. LW.C0 = CFrame.new(0,0.5, -1) * CFrame.fromEulerAnglesXYZ(0.25*i*3.2,0 ,0+1.5*i)
  3036. LW.C1 = CFrame.new(0, 0.5, 0)
  3037. end
  3038. end
  3039.  
  3040. function equipanim2()
  3041. for i = 0 , 1 , 0.075 do
  3042. wait()
  3043. RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(0.25*i*3.2,-1 ,0+1.9*i)
  3044. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3045. LW.C0 = CFrame.new(0,0.5, -1) * CFrame.fromEulerAnglesXYZ(0.25*i*3.2,0 ,0+1.5*i)
  3046. LW.C1 = CFrame.new(0, 0.5, 0)
  3047. end
  3048. end
  3049.  
  3050.  
  3051.  
  3052. -----------------
  3053. function attack1()
  3054. if eq == true then
  3055. eq = false
  3056. hideanim()
  3057. Ran = false
  3058. unequipweld()
  3059. wait()
  3060. end
  3061.  
  3062.  
  3063. for i = 0 , 1 , 0.085 do
  3064. wait()
  3065. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,-0.915-1*i) ----math.rad(260)-math.rad(260)*i
  3066. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3067. end
  3068.  
  3069. equips()
  3070.  
  3071. for i = 0 , 1 , 0.085 do
  3072. wait()
  3073. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,-1+1*i) ----math.rad(260)-math.rad(260)*i
  3074. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3075. swordholder.shuriken2["SWeld2"].C0 = swordholder.shuriken2["SWeld2"].C0 * CFrame.Angles(0, 0.4+1*i*5, 0)
  3076. swordholder.shuriken3["SWeld3"].C0 = swordholder.shuriken3["SWeld3"].C0 * CFrame.Angles(0, 0.8+1*i*5, 0)
  3077. swordholder.shuriken1.Mesh.Scale = swordholder.shuriken1.Mesh.Scale + Vector3.new(0.001+1*i/3,0.001+0.5*i/3,0.001+1*i/3)
  3078. swordholder.shuriken2.Mesh.Scale = swordholder.shuriken2.Mesh.Scale + Vector3.new(0.005+1*i/2,0.01+0.5*i/2,0.005+1*i/2)
  3079. swordholder.shuriken2.Mesh.Scale = swordholder.shuriken3.Mesh.Scale + Vector3.new(0.01+1*i/2,0.01+0.5*i/2,0.01+1*i/2)
  3080. end
  3081.  
  3082. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  3083.  
  3084. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  3085.  
  3086. for i = 0 , 1 , 0.17 do
  3087. wait()
  3088. swordholder.shuriken2["SWeld2"].C0 = swordholder.shuriken2["SWeld2"].C0 * CFrame.Angles(0, 0.4+1*i*5, 0)
  3089. swordholder.shuriken3["SWeld3"].C0 = swordholder.shuriken3["SWeld3"].C0 * CFrame.Angles(0, 0.8+1*i*5, 0)
  3090. swordholder.shuriken1.Mesh.Scale = swordholder.shuriken1.Mesh.Scale - Vector3.new(0.001+1*i/2,0.01+0.5*i/2,0.001+1*i/2)
  3091. swordholder.shuriken2.Mesh.Scale = swordholder.shuriken2.Mesh.Scale - Vector3.new(0.005+1*i/2,0.01+0.5*i/2,0.005+1*i/2)
  3092. swordholder.shuriken2.Mesh.Scale = swordholder.shuriken3.Mesh.Scale - Vector3.new(0.01+1*i/2,0.01+0.5*i/2,0.01+1*i/2)
  3093. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,2.93+1*i) ----math.rad(260)-math.rad(260)*i
  3094. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3095. end
  3096. throws1()
  3097. end
  3098.  
  3099.  
  3100. -------------
  3101.  
  3102.  
  3103. function attack2()
  3104. if eq == true then
  3105. eq = false
  3106. Ran = false
  3107. unequipweld()
  3108. wait()
  3109. end
  3110. s = Instance.new("Sound")
  3111. s.Parent = Torso
  3112. s.Pitch = 2
  3113. s.SoundId = "rbxasset://sounds/swordslash.wav"
  3114. s.Volume = 1.3
  3115. s:Play()
  3116. for i = 0 , 1 , 0.27 do
  3117. wait()
  3118. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,-1.15-1*i) ----math.rad(260)-math.rad(260)*i
  3119. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3120. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, -1,-2.915-1*i)
  3121. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3122. end
  3123. x =RW.C0
  3124. y = LW.C1
  3125. wait(1)
  3126. swordholder.p19.W29.Part1 = LeftArm
  3127. swordholder.p19.W29.C0 = CFrame.new(0,0,0)
  3128. swordholder.p19.W29.C0 = swordholder.p19.W29.C0 * CFrame.Angles(0,-1.5,0)
  3129.  
  3130. for i = 0 , 1 , 0.3 do
  3131. wait()
  3132. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,3-1*i) ----math.rad(260)-math.rad(260)*i
  3133. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3134. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, -1,3+1*i)
  3135. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3136. end
  3137.  
  3138. v = swordholder.p19:clone()
  3139. v.Parent = workspace
  3140. v.CanCollide = true
  3141. v.Transparency = 0
  3142. b = Instance.new("BodyPosition")
  3143. b.Parent = v
  3144. b.D = 1000
  3145. b.P = 3000
  3146. b.maxForce = Vector3.new(4000,210,4000)
  3147. b.position = b.position + Head.CFrame.lookVector * 300
  3148. swordholder.p19.Transparency = 1
  3149. v.Touched:connect(ht)
  3150. s = Instance.new("Sound")
  3151. s.Parent = v
  3152. s.Pitch = 4
  3153. s.SoundId = "http://roblox.com/asset/?id=2785493"
  3154. s.Volume = 2
  3155. s:Play()
  3156. for i = 0 , 1 , 0.3 do
  3157. wait()
  3158. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0-i*2, 1,2-1*i) ----math.rad(260)-math.rad(260)*i
  3159. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3160. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0-i*2, -1,4+1*i)
  3161. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3162. end
  3163.  
  3164. wait(3)
  3165. v:Destroy()
  3166. swordholder.p19.Transparency = 0
  3167. swordholder.p19.W29.Part1 = Torso
  3168. swordholder.p19.W29.C0 = CFrame.new(-0.7, 1.2, -1)
  3169. swordholder.p19.W29.C0 = swordholder.p19.W29.C0 * CFrame.Angles(-0.2, -0.5, 1.3)
  3170.  
  3171. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  3172.  
  3173. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  3174. end
  3175.  
  3176.  
  3177.  
  3178.  
  3179.  
  3180.  
  3181.  
  3182.  
  3183.  
  3184.  
  3185.  
  3186.  
  3187. function attack3()
  3188. if eq == true then
  3189. eq = false
  3190. Ran = false
  3191. unequipweld()
  3192. wait()
  3193. end
  3194. parts = {}
  3195. s = Instance.new("Sound")
  3196. s.Parent = Torso
  3197. s.Pitch = 2
  3198. s.SoundId = "rbxasset://sounds/swordslash.wav"
  3199. s.Volume = 1.3
  3200. s:Play()
  3201. function dllt()
  3202. v = swordholder.p19:clone()
  3203. v.Parent = Character
  3204. v.CanCollide = true
  3205. v.Transparency = 1
  3206. v.Touched:connect(ht)
  3207.  
  3208. swordholder.p19.Transparency = 1
  3209. wv = Instance.new("Weld")
  3210. wv.Parent = v
  3211. wv.Part0 = v
  3212. wv.Part1 = Torso
  3213. wv.C0 = CFrame.new(0,0,-5)
  3214. wv.C0 = wv.C0 * CFrame.Angles(0, 0, 0)
  3215.  
  3216. v2 = swordholder.p19:clone()
  3217. v2.Parent = Character
  3218. v2.CanCollide = true
  3219. v2.Transparency = 1
  3220. v2.Touched:connect(ht)
  3221. wv2 = Instance.new("Weld")
  3222. wv2.Parent = v2
  3223. wv2.Part0 = v2
  3224. wv2.Part1 = Torso
  3225. wv2.C0 = CFrame.new(0,0,-5)
  3226. wv2.C0 = wv.C0 * CFrame.Angles(0, 0, 1.5)
  3227.  
  3228.  
  3229. v3 = swordholder.p19:clone()
  3230. v3.Parent = Character
  3231. v3.CanCollide = true
  3232. v3.Transparency = 1
  3233. v3.Touched:connect(ht)
  3234. wv3 = Instance.new("Weld")
  3235. wv3.Parent = v3
  3236. wv3.Part0 = v3
  3237. wv3.Part1 = Torso
  3238. wv3.C0 = CFrame.new(0,0,-5)
  3239. wv3.C0 = wv3.C0 * CFrame.Angles(0, 1.6, 0)
  3240. v4 = swordholder.p19:clone()
  3241. v4.Parent = Character
  3242. v4.CanCollide = true
  3243. v4.Transparency = 1
  3244. v4.Touched:connect(ht)
  3245. wv4 = Instance.new("Weld")
  3246. wv4.Parent = v4
  3247. wv4.Part0 = v4
  3248. wv4.Part1 = v3
  3249. wv4.C0 = CFrame.new(0,0,0)
  3250. wv4.C0 = wv4.C0 * CFrame.Angles(0, 0, 1.5)
  3251.  
  3252.  
  3253. v5 = swordholder.p19:clone()
  3254. v5.Parent = Character
  3255. v5.CanCollide = true
  3256. v5.Transparency = 1
  3257. v5.Touched:connect(ht)
  3258. wv5 = Instance.new("Weld")
  3259. wv5.Parent = v5
  3260. wv5.Part0 = v5
  3261. wv5.Part1 = Torso
  3262. wv5.C0 = CFrame.new(0,0,-5)
  3263. wv5.C0 = wv5.C0 * CFrame.Angles(0, -1.6, 0)
  3264. v6 = swordholder.p19:clone()
  3265. v6.Parent = Character
  3266. v6.CanCollide = true
  3267. v6.Transparency = 1
  3268. v6.Touched:connect(ht)
  3269. wv6 = Instance.new("Weld")
  3270. wv6.Parent = v6
  3271. wv6.Part0 = v6
  3272. wv6.Part1 = v5
  3273. wv6.C0 = CFrame.new(0,0,0)
  3274. wv6.C0 = wv6.C0 * CFrame.Angles(0, 0, 1.5)
  3275.  
  3276. v7 = swordholder.p19:clone()
  3277. v7.Parent = Character
  3278. v7.CanCollide = true
  3279. v7.Transparency = 1
  3280. v7.Touched:connect(ht)
  3281. wv7 = Instance.new("Weld")
  3282. wv7.Parent = v7
  3283. wv7.Part0 = v7
  3284. wv7.Part1 = Torso
  3285. wv7.C0 = CFrame.new(0,0,-5)
  3286. wv7.C0 = wv7.C0 * CFrame.Angles(0, -3.1, 0)
  3287. v8 = swordholder.p19:clone()
  3288. v8.Parent = Character
  3289. v8.CanCollide = true
  3290. v8.Transparency = 1
  3291. v8.Touched:connect(ht)
  3292. wv8 = Instance.new("Weld")
  3293. wv8.Parent = v8
  3294. wv8.Part0 = v8
  3295. wv8.Part1 = v7
  3296. wv8.C0 = CFrame.new(0,0,0)
  3297. wv8.C0 = wv8.C0 * CFrame.Angles(0, 0, -1.5)
  3298.  
  3299.  
  3300. v9 = swordholder.p19:clone()
  3301. v9.Parent = Character
  3302. v9.CanCollide = true
  3303. v9.Transparency = 1
  3304. v9.Touched:connect(ht)
  3305. wv9 = Instance.new("Weld")
  3306. wv9.Parent = v9
  3307. wv9.Part0 = v9
  3308. wv9.Part1 = Torso
  3309. wv9.C0 = CFrame.new(0,0,-5)
  3310. wv9.C0 = wv9.C0 * CFrame.Angles(0, -4.2, 0)
  3311. v10 = swordholder.p19:clone()
  3312. v10.Parent = Character
  3313. v10.CanCollide = true
  3314. v10.Transparency = 1
  3315. v10.Touched:connect(ht)
  3316. wv10 = Instance.new("Weld")
  3317. wv10.Parent = v10
  3318. wv10.Part0 = v10
  3319. wv10.Part1 = v9
  3320. wv10.C0 = CFrame.new(0,0,0)
  3321. wv10.C0 = wv10.C0 * CFrame.Angles(0, 0, -1.5)
  3322.  
  3323.  
  3324. v11 = swordholder.p19:clone()
  3325. v11.Parent = Character
  3326. v11.CanCollide = true
  3327. v11.Transparency = 1
  3328. v11.Touched:connect(ht)
  3329. wv11 = Instance.new("Weld")
  3330. wv11.Parent = v11
  3331. wv11.Part0 = v11
  3332. wv11.Part1 = Torso
  3333. wv11.C0 = CFrame.new(0,0,-5)
  3334. wv11.C0 = wv11.C0 * CFrame.Angles(0, -3.65, 0)
  3335. v12 = swordholder.p19:clone()
  3336. v12.Parent = Character
  3337. v12.CanCollide = true
  3338. v12.Transparency = 1
  3339. v12.Touched:connect(ht)
  3340. wv12 = Instance.new("Weld")
  3341. wv12.Parent = v12
  3342. wv12.Part0 = v12
  3343. wv12.Part1 = v11
  3344. wv12.C0 = CFrame.new(0,0,0)
  3345. wv12.C0 = wv12.C0 * CFrame.Angles(0, 0, -1.5)
  3346.  
  3347.  
  3348.  
  3349. v13 = swordholder.p19:clone()
  3350. v13.Parent = Character
  3351. v13.CanCollide = true
  3352. v13.Transparency = 1
  3353. v13.Touched:connect(ht)
  3354. wv13 = Instance.new("Weld")
  3355. wv13.Parent = v13
  3356. wv13.Part0 = v13
  3357. wv13.Part1 = Torso
  3358. wv13.C0 = CFrame.new(0,0,-5)
  3359. wv13.C0 = wv13.C0 * CFrame.Angles(0, -0.95, 0)
  3360. v14 = swordholder.p19:clone()
  3361. v14.Parent = Character
  3362. v14.CanCollide = true
  3363. v14.Transparency = 1
  3364. v14.Touched:connect(ht)
  3365. wv14 = Instance.new("Weld")
  3366. wv14.Parent = v14
  3367. wv14.Part0 = v14
  3368. wv14.Part1 = v13
  3369. wv14.C0 = CFrame.new(0,0,0)
  3370. wv14.C0 = wv14.C0 * CFrame.Angles(0, 0, -1.5)
  3371.  
  3372. v15 = swordholder.p19:clone()
  3373. v15.Parent = Character
  3374. v15.CanCollide = true
  3375. v15.Transparency = 1
  3376. v15.Touched:connect(ht)
  3377. wv15 = Instance.new("Weld")
  3378. wv15.Parent = v15
  3379. wv15.Part0 = v15
  3380. wv15.Part1 = Torso
  3381. wv15.C0 = CFrame.new(0,0,-5)
  3382. wv15.C0 = wv15.C0 * CFrame.Angles(0, -0.4, 0)
  3383. v16 = swordholder.p19:clone()
  3384. v16.Parent = Character
  3385. v16.CanCollide = true
  3386. v16.Transparency = 1
  3387. v16.Touched:connect(ht)
  3388. wv16 = Instance.new("Weld")
  3389. wv16.Parent = v16
  3390. wv16.Part0 = v16
  3391. wv16.Part1 = v15
  3392. wv16.C0 = CFrame.new(0,0,0)
  3393. wv16.C0 = wv16.C0 * CFrame.Angles(0, 0, -1.5)
  3394.  
  3395. v17 = swordholder.p19:clone()
  3396. v17.Parent = Character
  3397. v17.CanCollide = true
  3398. v17.Transparency = 1
  3399. v17.Touched:connect(ht)
  3400. wv17 = Instance.new("Weld")
  3401. wv17.Parent = v17
  3402. wv17.Part0 = v17
  3403. wv17.Part1 = Torso
  3404. wv17.C0 = CFrame.new(0,0,-5)
  3405. wv17.C0 = wv17.C0 * CFrame.Angles(0, -2.05, 0)
  3406. v18 = swordholder.p19:clone()
  3407. v18.Parent = Character
  3408. v18.CanCollide = true
  3409. v18.Transparency = 1
  3410. v18.Touched:connect(ht)
  3411. wv18 = Instance.new("Weld")
  3412. wv18.Parent = v18
  3413. wv18.Part0 = v18
  3414. wv18.Part1 = v17
  3415. wv18.C0 = CFrame.new(0,0,0)
  3416. wv18.C0 = wv18.C0 * CFrame.Angles(0, 0, -1.5)
  3417.  
  3418. v19 = swordholder.p19:clone()
  3419. v19.Parent = Character
  3420. v19.CanCollide = true
  3421. v19.Transparency = 1
  3422. v19.Touched:connect(ht)
  3423. wv19 = Instance.new("Weld")
  3424. wv19.Parent = v19
  3425. wv19.Part0 = v19
  3426. wv19.Part1 = Torso
  3427. wv19.C0 = CFrame.new(0,0,-5)
  3428. wv19.C0 = wv19.C0 * CFrame.Angles(0, -2.6, 0)
  3429. v20 = swordholder.p19:clone()
  3430. v20.Parent = Character
  3431. v20.CanCollide = true
  3432. v20.Transparency = 1
  3433. v20.Touched:connect(ht)
  3434. wv20 = Instance.new("Weld")
  3435. wv20.Parent = v20
  3436. wv20.Part0 = v20
  3437. wv20.Part1 = v19
  3438. wv20.C0 = CFrame.new(0,0,0)
  3439. wv20.C0 = wv20.C0 * CFrame.Angles(0, 0, -1.5)
  3440.  
  3441. v21 = swordholder.p19:clone() -----test
  3442. v21.Parent = Character
  3443. v21.CanCollide = true
  3444. v21.Transparency = 1
  3445. v21.Touched:connect(ht)
  3446. wv21 = Instance.new("Weld")
  3447. wv21.Parent = v21
  3448. wv21.Part0 = v21
  3449. wv21.Part1 = Torso
  3450. wv21.C0 = CFrame.new(0,0,-5)
  3451. wv21.C0 = wv21.C0 * CFrame.Angles(0, 1, 0)
  3452.  
  3453. v22 = swordholder.p19:clone()
  3454. v22.Parent = Character
  3455. v22.CanCollide = true
  3456. v22.Transparency = 1
  3457. v22.Touched:connect(ht)
  3458. wv22 = Instance.new("Weld")
  3459. wv22.Parent = v22
  3460. wv22.Part0 = v22
  3461. wv22.Part1 = v21
  3462. wv22.C0 = CFrame.new(0,0,0)
  3463. wv22.C0 = wv22.C0 * CFrame.Angles(0, 0, 1.5)
  3464.  
  3465.  
  3466. v23 = swordholder.p19:clone()
  3467. v23.Parent = Character
  3468. v23.CanCollide = true
  3469. v23.Transparency = 1
  3470. v23.Touched:connect(ht)
  3471. wv23 = Instance.new("Weld")
  3472. wv23.Parent = v23
  3473. wv23.Part0 = v23
  3474. wv23.Part1 = Torso
  3475. wv23.C0 = CFrame.new(0,0,-5)
  3476. wv23.C0 = wv23.C0 * CFrame.Angles(0, -3.1, 0)
  3477. v24 = swordholder.p19:clone()
  3478. v24.Parent = Character
  3479. v24.CanCollide = true
  3480. v24.Transparency = 1
  3481. v24.Touched:connect(ht)
  3482. wv24 = Instance.new("Weld")
  3483. wv24.Parent = v24
  3484. wv24.Part0 = v24
  3485. wv24.Part1 = v23
  3486. wv24.C0 = CFrame.new(0,0,0)
  3487. wv24.C0 = wv24.C0 * CFrame.Angles(0, 0, -1.5)
  3488.  
  3489.  
  3490. v25 = swordholder.p19:clone()
  3491. v25.Parent = Character
  3492. v25.CanCollide = true
  3493. v25.Transparency = 1
  3494. v25.Touched:connect(ht)
  3495. wv25 = Instance.new("Weld")
  3496. wv25.Parent = v25
  3497. wv25.Part0 = v25
  3498. wv25.Part1 = Torso
  3499. wv25.C0 = CFrame.new(0,0,-5)
  3500. wv25.C0 = wv25.C0 * CFrame.Angles(0, 1.6, 0)
  3501. v26 = swordholder.p19:clone()
  3502. v26.Parent = Character
  3503. v26.CanCollide = true
  3504. v26.Transparency = 1
  3505. v26.Touched:connect(ht)
  3506. wv26 = Instance.new("Weld")
  3507. wv26.Parent = v26
  3508. wv26.Part0 = v26
  3509. wv26.Part1 = v25
  3510. wv26.C0 = CFrame.new(0,0,0)
  3511. wv26.C0 = wv26.C0 * CFrame.Angles(0, 0, 1.5)
  3512.  
  3513. v27 = swordholder.p19:clone()
  3514. v27.Parent = Character
  3515. v27.CanCollide = true
  3516. v27.Transparency = 1
  3517. v27.Touched:connect(ht)
  3518. wv27 = Instance.new("Weld")
  3519. wv27.Parent = v27
  3520. wv27.Part0 = v27
  3521. wv27.Part1 = Torso
  3522. wv27.C0 = CFrame.new(0,0,-5)
  3523. wv27.C0 = wv27.C0 * CFrame.Angles(0, -1.6, 0)
  3524. v28 = swordholder.p19:clone()
  3525. v28.Parent = Character
  3526. v28.CanCollide = true
  3527. v28.Transparency = 1
  3528. v28.Touched:connect(ht)
  3529. wv28 = Instance.new("Weld")
  3530. wv28.Parent = v28
  3531. wv28.Part0 = v28
  3532. wv28.Part1 = v27
  3533. wv28.C0 = CFrame.new(0,0,0)
  3534. wv28.C0 = wv28.C0 * CFrame.Angles(0, 0, 1.5)
  3535.  
  3536.  
  3537. v29 = swordholder.p19:clone()
  3538. v29.Parent = Character
  3539. v29.CanCollide = true
  3540. v29.Transparency = 1
  3541. v29.Touched:connect(ht)
  3542. wv29 = Instance.new("Weld")
  3543. wv29.Parent = v29
  3544. wv29.Part0 = v29
  3545. wv29.Part1 = Torso
  3546. wv29.C0 = CFrame.new(0,0,-5)
  3547. wv29.C0 = wv29.C0 * CFrame.Angles(0, 2.08, 0)
  3548. v30 = swordholder.p19:clone()
  3549. v30.Parent = Character
  3550. v30.CanCollide = true
  3551. v30.Transparency = 1
  3552. v30.Touched:connect(ht)
  3553. wv30 = Instance.new("Weld")
  3554. wv30.Parent = v30
  3555. wv30.Part0 = v30
  3556. wv30.Part1 = v29
  3557. wv30.C0 = CFrame.new(0,0,0)
  3558. wv30.C0 = wv32.C0 * CFrame.Angles(0, 0, 1.5)
  3559.  
  3560. v31 = swordholder.p19:clone()
  3561. v31.Parent = Character
  3562. v31.CanCollide = true
  3563. v31.Transparency = 1
  3564. v31.Touched:connect(ht)
  3565. wv31 = Instance.new("Weld")
  3566. wv31.Parent = v31
  3567. wv31.Part0 = v31
  3568. wv31.Part1 = Torso
  3569. wv31.C0 = CFrame.new(0,0,-5)
  3570. wv31.C0 = wv31.C0 * CFrame.Angles(0, 2.7, 0)
  3571. v32 = swordholder.p19:clone()
  3572. v32.Parent = Character
  3573. v32.CanCollide = true
  3574. v32.Transparency = 1
  3575. v32.Touched:connect(ht)
  3576. wv32 = Instance.new("Weld")
  3577. wv32.Parent = v32
  3578. wv32.Part0 = v32
  3579. wv32.Part1 = v31
  3580. wv32.C0 = CFrame.new(0,0,0)
  3581. wv32.C0 = wv32.C0 * CFrame.Angles(0, 0, 1.5)
  3582.  
  3583. v33 = swordholder.p19:clone() -----test
  3584. v33.Parent = Character
  3585. v33.CanCollide = true
  3586. v33.Transparency = 1
  3587. v33.Touched:connect(ht)
  3588. wv33 = Instance.new("Weld")
  3589. wv33.Parent = v33
  3590. wv33.Part0 = v33
  3591. wv33.Part1 = Torso
  3592. wv33.C0 = CFrame.new(0,0,-5)
  3593. wv33.C0 = wv33.C0 * CFrame.Angles(0, 1, 0)
  3594.  
  3595. v34 = swordholder.p19:clone()
  3596. v34.Parent = Character
  3597. v34.CanCollide = true
  3598. v34.Transparency = 1
  3599. v34.Touched:connect(ht)
  3600. wv34 = Instance.new("Weld")
  3601. wv34.Parent = v34
  3602. wv34.Part0 = v34
  3603. wv34.Part1 = v34
  3604. wv34.C0 = CFrame.new(0,0,0)
  3605. wv34.C0 = wv34.C0 * CFrame.Angles(0, 0, 1.5)
  3606.  
  3607. v35 = swordholder.p19:clone() -----test
  3608. v35.Parent = Character
  3609. v35.CanCollide = true
  3610. v35.Transparency = 1
  3611. v35.Touched:connect(ht)
  3612. wv35 = Instance.new("Weld")
  3613. wv35.Parent = v35
  3614. wv35.Part0 = v35
  3615. wv35.Part1 = Torso
  3616. wv35.C0 = CFrame.new(0,0,-5)
  3617. wv35.C0 = wv34.C0 * CFrame.Angles(0, 1.55, 0)
  3618.  
  3619. v36 = swordholder.p19:clone()
  3620. v36.Parent = Character
  3621. v36.CanCollide = true
  3622. v36.Transparency = 1
  3623. v36.Touched:connect(ht)
  3624. wv36 = Instance.new("Weld")
  3625. wv36.Parent = v36
  3626. wv36.Part0 = v36
  3627. wv36.Part1 = v36
  3628. wv36.C0 = CFrame.new(0,0,0)
  3629. wv36.C0 = wv36.C0 * CFrame.Angles(0, 0, 1.5)
  3630.  
  3631.  
  3632. end
  3633. dllt()
  3634. function trs()
  3635. v.Transparency = v.Transparency -i
  3636. v2.Transparency = v2.Transparency -i
  3637. v3.Transparency = v3.Transparency -i
  3638. v4.Transparency = v4.Transparency -i
  3639. v5.Transparency = v5.Transparency -i
  3640. v6.Transparency = v6.Transparency -i
  3641. v7.Transparency = v7.Transparency -i
  3642. v8.Transparency = v8.Transparency -i
  3643. v9.Transparency = v9.Transparency -i
  3644. v10.Transparency = v10.Transparency -i
  3645. v11.Transparency = v11.Transparency -i
  3646. v12.Transparency = v12.Transparency -i
  3647. v13.Transparency = v13.Transparency -i
  3648. v14.Transparency = v14.Transparency -i
  3649. v15.Transparency = v15.Transparency -i
  3650. v16.Transparency = v16.Transparency -i
  3651. v17.Transparency = v17.Transparency -i
  3652. v18.Transparency = v18.Transparency -i
  3653. v19.Transparency = v19.Transparency -i
  3654. v20.Transparency = v20.Transparency -i
  3655. v21.Transparency = v21.Transparency -i
  3656. v22.Transparency = v22.Transparency -i
  3657. v23.Transparency = v23.Transparency -i
  3658. v24.Transparency = v24.Transparency -i
  3659. v25.Transparency = v25.Transparency -i
  3660. v26.Transparency = v26.Transparency -i
  3661. v27.Transparency = v27.Transparency -i
  3662. v28.Transparency = v28.Transparency -i
  3663. v29.Transparency = v29.Transparency -i
  3664. v30.Transparency = v30.Transparency -i
  3665. v31.Transparency = v31.Transparency -i
  3666. v32.Transparency = v32.Transparency -i
  3667. v33.Transparency = v33.Transparency -i
  3668. v34.Transparency = v34.Transparency -i
  3669. v35.Transparency = v35.Transparency -i
  3670. v36.Transparency = v36.Transparency -i
  3671. end
  3672.  
  3673. for i = 0 , 1 , 0.05 do
  3674. wait()
  3675. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,-1.15-1*i)
  3676. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3677. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, -1,-2.915-1*i)
  3678. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3679. end
  3680. v.Transparency = 0
  3681. v2.Transparency = 0
  3682. v3.Transparency = 0
  3683. v4.Transparency = 0
  3684. v5.Transparency = 0
  3685. v6.Transparency = 0
  3686. v7.Transparency = 0
  3687. v8.Transparency = 0
  3688. v9.Transparency = 0
  3689. v10.Transparency = 0
  3690. v11.Transparency = 0
  3691. v12.Transparency = 0
  3692. v13.Transparency = 0
  3693. v14.Transparency = 0
  3694. v15.Transparency = 0
  3695. v16.Transparency = 0
  3696.  
  3697. v17.Transparency = 0
  3698. v18.Transparency = 0
  3699. v19.Transparency = 0
  3700. v20.Transparency = 0
  3701. v21.Transparency = 0
  3702. v22.Transparency = 0
  3703. v23.Transparency = 0
  3704. v24.Transparency = 0
  3705. v25.Transparency = 0
  3706. v26.Transparency = 0
  3707. v27.Transparency = 0
  3708. v28.Transparency = 0
  3709. v29.Transparency = 0
  3710. v30.Transparency = 0
  3711. v31.Transparency = 0
  3712. v32.Transparency = 0
  3713. v33.Transparency = 0
  3714. v34.Transparency = 0
  3715. v35.Transparency = 0
  3716. v36.Transparency = 0
  3717. wait(1)
  3718.  
  3719. for i = 0 , 1 , 0.3 do
  3720. wait()
  3721. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, 1,3-1*i) ----math.rad(260)-math.rad(260)*i
  3722. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3723. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, -1,3+1*i)
  3724. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3725. end
  3726.  
  3727.  
  3728.  
  3729. function dlt2()
  3730. for ii = 1, 30 do
  3731. wait()
  3732. v.Weld.C0 = v.Weld.C0 + v.CFrame.lookVector *20
  3733. v3.Weld.C0 = v3.Weld.C0 + v3.CFrame.lookVector *20
  3734. v5.Weld.C0 = v5.Weld.C0 + v5.CFrame.lookVector *20
  3735. v7.Weld.C0 = v7.Weld.C0 + v7.CFrame.lookVector *20
  3736. v9.Weld.C0 = v9.Weld.C0 + v9.CFrame.lookVector *20
  3737. v11.Weld.C0 = v11.Weld.C0 + v11.CFrame.lookVector *20
  3738. v13.Weld.C0 = v13.Weld.C0 + v13.CFrame.lookVector *20
  3739. v15.Weld.C0 = v15.Weld.C0 + v15.CFrame.lookVector *20
  3740. v17.Weld.C0 = v17.Weld.C0 + v17.CFrame.lookVector *20
  3741. v19.Weld.C0 = v19.Weld.C0 + v19.CFrame.lookVector *20
  3742. v21.Weld.C0 = v21.Weld.C0 + v21.CFrame.lookVector *20
  3743. v23.Weld.C0 = v23.Weld.C0 + v23.CFrame.lookVector *20
  3744. v25.Weld.C0 = v25.Weld.C0 + v25.CFrame.lookVector *20
  3745. v27.Weld.C0 = v27.Weld.C0 + v27.CFrame.lookVector *20
  3746. v29.Weld.C0 = v29.Weld.C0 + v29.CFrame.lookVector *20
  3747. v31.Weld.C0 = v31.Weld.C0 + v31.CFrame.lookVector *20
  3748. v33.Weld.C0 = v33.Weld.C0 + v33.CFrame.lookVector *20
  3749. v35.Weld.C0 = v35.Weld.C0 + v35.CFrame.lookVector *20
  3750. v.Transparency = v.Transparency + 0.03
  3751. v3.Transparency = v3.Transparency + 0.03
  3752. v5.Transparency = v5.Transparency + 0.03
  3753. v7.Transparency = v7.Transparency + 0.03
  3754. v9.Transparency = v9.Transparency + 0.03
  3755. v11.Transparency = v11.Transparency + 0.03
  3756. v13.Transparency = v13.Transparency + 0.03
  3757. v15.Transparency = v15.Transparency + 0.03
  3758. v4.Transparency = v4.Transparency + 0.03
  3759. v6.Transparency = v6.Transparency + 0.03
  3760. v8.Transparency = v8.Transparency + 0.03
  3761. v10.Transparency = v10.Transparency + 0.03
  3762. v12.Transparency = v12.Transparency + 0.03
  3763. v14.Transparency = v14.Transparency + 0.03
  3764. v16.Transparency = v16.Transparency + 0.03
  3765. v17.Transparency = v17.Transparency + 0.03
  3766. v18.Transparency = v18.Transparency + 0.03
  3767. v19.Transparency = v19.Transparency + 0.03
  3768. v20.Transparency = v20.Transparency + 0.03
  3769. v21.Transparency = v21.Transparency + 0.03
  3770. v22.Transparency = v22.Transparency + 0.03
  3771. v23.Transparency = v23.Transparency + 0.03
  3772. v24.Transparency = v24.Transparency + 0.03
  3773. v25.Transparency = v25.Transparency + 0.03
  3774. v26.Transparency = v26.Transparency + 0.03
  3775. v27.Transparency = v27.Transparency + 0.03
  3776. v28.Transparency = v28.Transparency + 0.03
  3777. v29.Transparency = v29.Transparency + 0.03
  3778. v30.Transparency = v30.Transparency + 0.03
  3779. v31.Transparency = v31.Transparency + 0.03
  3780. v32.Transparency = v32.Transparency + 0.03
  3781. v33.Transparency = v33.Transparency + 0.03
  3782. v34.Transparency = v34.Transparency + 0.03
  3783. v35.Transparency = v35.Transparency + 0.03
  3784. v36.Transparency = v36.Transparency + 0.03
  3785. s = Instance.new("Sound")
  3786. s.Parent = v
  3787. s.Pitch = 4
  3788. s.SoundId = "http://roblox.com/asset/?id=2785493"
  3789. s.Volume = 2
  3790. s:Play()
  3791. end
  3792. end
  3793. dlt2()
  3794.  
  3795. for i = 0 , 1 , 0.3 do
  3796. wait()
  3797. RW.C0 = CFrame.new(1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0-i*2, 1,2-1*i) ----math.rad(260)-math.rad(260)*i
  3798. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3799. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0-i*2, -1,4+1*i)
  3800. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  3801. end
  3802.  
  3803. wait(3)
  3804. function dlt3()
  3805. v:Destroy()
  3806. v2:Destroy()
  3807. v3:Destroy()
  3808. v4:Destroy()
  3809. v5:Destroy()
  3810. v6:Destroy()
  3811. v7:Destroy()
  3812. v8:Destroy()
  3813. v9:Destroy()
  3814. v10:Destroy()
  3815. v11:Destroy()
  3816. v12:Destroy()
  3817. v13:Destroy()
  3818. v14:Destroy()
  3819. v15:Destroy()
  3820. v16:Destroy()
  3821. v17:Destroy()
  3822. v18:Destroy()
  3823. v19:Destroy()
  3824. v20:Destroy()
  3825. v21:Destroy()
  3826. v22:Destroy()
  3827. v23:Destroy()
  3828. v24:Destroy()
  3829. v25:Destroy()
  3830. v26:Destroy()
  3831. v27:Destroy()
  3832. v28:Destroy()
  3833. v29:Destroy()
  3834. v30:Destroy()
  3835. v31:Destroy()
  3836. v32:Destroy()
  3837. v33:Destroy()
  3838. v34:Destroy()
  3839. v35:Destroy()
  3840. v36:Destroy()
  3841. end
  3842. dlt3()
  3843. swordholder.p19.Transparency = 0
  3844.  
  3845.  
  3846.  
  3847.  
  3848.  
  3849. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  3850.  
  3851. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  3852. end
  3853.  
  3854.  
  3855.  
  3856.  
  3857.  
  3858.  
  3859.  
  3860.  
  3861.  
  3862.  
  3863.  
  3864.  
  3865.  
  3866.  
  3867.  
  3868.  
  3869.  
  3870. function attack()
  3871. s = Instance.new("Sound")
  3872. s.Parent = Torso
  3873. s.Pitch = 0.5
  3874. s.SoundId = "http://roblox.com/asset/?id=1369158"
  3875. s.Volume = 2
  3876. s:Play()
  3877. s:Play()
  3878. attack1()
  3879. end
  3880.  
  3881. function shockwave()
  3882. pp=Instance.new("Part")
  3883. pp.TopSurface=0
  3884. pp.BottomSurface=0
  3885. pp.Reflectance=0
  3886. pp.formFactor="Symmetric"
  3887. pp.BrickColor=BrickColor.new("Black")
  3888. pp.Size=Vector3.new(1,2,1)
  3889. pp.Anchored=true
  3890. pp.CanCollide=false
  3891. pp.Name="Blast"
  3892. pp.CFrame=Torso.CFrame - Vector3.new(-1.5,2.8,-1)
  3893. pp.Parent=workspace
  3894. oldpos = Torso.CFrame - Vector3.new(-1.5,2.8,-1)
  3895. pp.Transparency=1
  3896. pp.CanCollide=false
  3897. pp.Touched:connect(ht)
  3898.  
  3899. d=Instance.new("Decal")
  3900. d.Texture="http://www.roblox.com/asset/?id=11187115"
  3901. d.Face="Top"
  3902. d.Parent=pp
  3903. d=Instance.new("Decal")
  3904. d.Texture="http://www.roblox.com/asset/?id=11187115"
  3905. d.Face="Bottom"
  3906. d.Parent=pp
  3907. s = Instance.new("Sound")
  3908. s.Parent = Torso
  3909. s.Pitch = 0.15
  3910. s.SoundId = "http://roblox.com/asset/?id=13775494"
  3911. s.Volume = 2
  3912. s:Play()
  3913. s = Instance.new("Sound")
  3914. s.Parent = Head
  3915. s.Pitch = 0.14
  3916. s.SoundId = "http://roblox.com/asset/?id=13775494"
  3917. s.Volume = 2
  3918. s:Play()
  3919. for i,e in pairs(game.Workspace:GetChildren()) do
  3920. if e:findFirstChild("Humanoid") and e.Name ~= Character.Name then
  3921. if (pp.Position - e.Torso.Position).magnitude <=30 then
  3922. e:findFirstChild("Humanoid"):TakeDamage(math.random(50,60))
  3923. e:findFirstChild("Humanoid").Sit = true
  3924. end
  3925. end
  3926. end
  3927.  
  3928. for i=1, 7 do
  3929. pp.Size = pp.Size + Vector3.new(11,0,11)
  3930. pp.CFrame = oldpos
  3931. wait()
  3932. end
  3933. pp:Destroy()
  3934. end
  3935.  
  3936.  
  3937.  
  3938.  
  3939. function shockwave2()
  3940. pp=Instance.new("Part")
  3941. pp.TopSurface=0
  3942. pp.BottomSurface=0
  3943. pp.Reflectance=0
  3944. pp.formFactor="Symmetric"
  3945. pp.BrickColor=BrickColor.new("Black")
  3946. pp.Size=Vector3.new(1,2,1)
  3947. pp.Anchored=true
  3948. pp.CanCollide=false
  3949. pp.Name="Blast"
  3950. pp.CFrame=Torso.CFrame - Vector3.new(-1.5,2.8,-1)
  3951. pp.Parent=workspace
  3952. oldpos = Torso.CFrame - Vector3.new(-1.5,2.8,-1)
  3953. pp.Transparency=1
  3954. pp.CanCollide=false
  3955. pp.Touched:connect(ht)
  3956.  
  3957. d=Instance.new("Decal")
  3958. d.Texture="http://www.roblox.com/asset/?id=11187115"
  3959. d.Face="Top"
  3960. d.Parent=pp
  3961. d=Instance.new("Decal")
  3962. d.Texture="http://www.roblox.com/asset/?id=11187115"
  3963. d.Face="Bottom"
  3964. d.Parent=pp
  3965.  
  3966. for i,e in pairs(game.Workspace:GetChildren()) do
  3967. if e:findFirstChild("Humanoid") and e.Name ~= Character.Name then
  3968. if (pp.Position - e.Torso.Position).magnitude <=30 then
  3969. e:findFirstChild("Humanoid"):TakeDamage(math.random(50,60))
  3970. e:findFirstChild("Humanoid").Sit = true
  3971. end
  3972. end
  3973. end
  3974.  
  3975. for i=1, 20 do
  3976. s = Instance.new("Sound")
  3977. s.Parent = Torso
  3978. s.Pitch = 0.14
  3979. s.SoundId = "http://roblox.com/asset/?id=13775494"
  3980. s.Volume = 2
  3981. s:Play()
  3982. pp.Size = pp.Size + Vector3.new(18,0,18)
  3983. pp.CFrame = oldpos
  3984. wait()
  3985. end
  3986. pp:Destroy()
  3987. end
  3988.  
  3989. function eff()
  3990. for i = 1, math.random(2,3) do
  3991. local Px = Instance.new("Part")
  3992. Px.Name = "Effect"
  3993. Px.formFactor = 0
  3994. Px.Size = Vector3.new(math.random(4,8),math.random(2,5),math.random(5,10))
  3995. Px.CFrame = Torso.CFrame - Vector3.new(-1.5,6,-1)
  3996. Px.CFrame = Px.CFrame - Vector3.new(math.random(1,2),0,0)
  3997. Px.CFrame = Px.CFrame * CFrame.Angles(math.random(2,6),math.random(2,6),math.random(2,6))
  3998. Px.Parent = game.Workspace
  3999. Px.BrickColor = workspace.Base.BrickColor
  4000. Px.Transparency = 0
  4001. Px.Reflectance = 0
  4002. Px.Anchored = true
  4003. Px.CanCollide = true
  4004. Px.FrontSurface = "Smooth"
  4005. Px.BackSurface = "Smooth"
  4006. Px.LeftSurface = "Smooth"
  4007. Px.RightSurface = "Smooth"
  4008. Px.TopSurface = "Studs"
  4009. Px.BottomSurface = "Smooth"
  4010. end
  4011.  
  4012. end
  4013.  
  4014. function eff2()
  4015. for i = 1, math.random(50,60) do
  4016. local Px = Instance.new("Part")
  4017. Px.Name = "Effect"
  4018. Px.formFactor = 0
  4019. Px.Size = Vector3.new(math.random(15,18),math.random(2,5),math.random(15,18))
  4020. Px.CFrame = Torso.CFrame - Vector3.new(-1.5,6,-1)
  4021. Px.CFrame = Px.CFrame - Vector3.new(math.random(0-120,120),0,math.random(0-120,120))
  4022. Px.CFrame = Px.CFrame * CFrame.Angles(math.random(2,6),math.random(2,6),math.random(2,6))
  4023. Px.Parent = game.Workspace
  4024. Px.BrickColor = workspace.Base.BrickColor
  4025. Px.Transparency = 0
  4026. Px.Reflectance = 0
  4027. Px.Anchored = true
  4028. Px.CanCollide = true
  4029. Px.FrontSurface = "Smooth"
  4030. Px.BackSurface = "Smooth"
  4031. Px.LeftSurface = "Smooth"
  4032. Px.RightSurface = "Smooth"
  4033. Px.TopSurface = "Studs"
  4034. Px.BottomSurface = "Smooth"
  4035. end
  4036.  
  4037. end
  4038.  
  4039. function eff3()
  4040. for i = 1, math.random(2,5) do
  4041. local Px = Instance.new("Part")
  4042. Px.Name = "Effect"
  4043. Px.formFactor = 0
  4044. Px.Size = Vector3.new(math.random(2,6),math.random(1,3),math.random(2,6))
  4045. Px.CFrame = Torso.CFrame - Vector3.new(0,5,0)
  4046. Px.CFrame = Px.CFrame - Vector3.new(math.random(0-2,2),math.random(0-2,0),math.random(0-2,2))
  4047. Px.Parent = game.Workspace
  4048. Px.BrickColor = workspace.Base.BrickColor
  4049. Px.Transparency = 0
  4050. Px.Reflectance = 0
  4051. Px.Anchored = true
  4052. Px.CanCollide = true
  4053. Px.FrontSurface = "Smooth"
  4054. Px.BackSurface = "Smooth"
  4055. Px.LeftSurface = "Smooth"
  4056. Px.RightSurface = "Smooth"
  4057. Px.TopSurface = "Studs"
  4058. Px.BottomSurface = "Smooth"
  4059. sb = Instance.new("SelectionBox")
  4060. sb.Parent = Px
  4061. sb.Adornee = Px
  4062. sb.Color = BrickColor.new("White")
  4063. sb.Transparency = 0.2
  4064. end
  4065. for i = 1, math.random(3,6) do
  4066. local Px = Instance.new("Part")
  4067. Px.Name = "Effect"
  4068. Px.formFactor = 0
  4069. Px.Size = Vector3.new(math.random(2,6),math.random(1,2),math.random(5,10))
  4070. Px.CFrame = Torso.CFrame - Vector3.new(0,5,0)
  4071. Px.CFrame = Px.CFrame - Vector3.new(math.random(0-2,2),math.random(0-2,0),0)
  4072. Px.CFrame = Px.CFrame * CFrame.new(0,0+i,0-i*4)
  4073. Px.Parent = game.Workspace
  4074. Px.BrickColor = workspace.Base.BrickColor
  4075. Px.Transparency = 1
  4076. Px.Reflectance = 0
  4077. Px.Anchored = true
  4078. Px.CanCollide = true
  4079. Px.FrontSurface = "Smooth"
  4080. Px.BackSurface = "Smooth"
  4081. Px.LeftSurface = "Smooth"
  4082. Px.RightSurface = "Smooth"
  4083. Px.TopSurface = "Studs"
  4084. Px.BottomSurface = "Smooth"
  4085. sb = Instance.new("SelectionBox")
  4086. sb.Parent = Px
  4087. sb.Adornee = Px
  4088. sb.Color = BrickColor.new("White")
  4089. sb.Transparency = 0.2
  4090. end
  4091. end
  4092.  
  4093. function stop()
  4094. s = Instance.new("Sound")
  4095. s.Parent = Torso
  4096. s.Pitch = 1
  4097. s.SoundId = "http://roblox.com/asset/?id=2785493"
  4098. s.Volume = 2
  4099. s:Play()
  4100. for i=1, 32 do
  4101. wait()
  4102. Character.Humanoid.WalkSpeed = 16 - i/2
  4103. end
  4104. end
  4105.  
  4106. function stop2()
  4107. for i=1, 7 do
  4108. s = Instance.new("Sound")
  4109. s.Parent = Torso
  4110. s.Pitch = 0.7
  4111. s.SoundId = "http://roblox.com/asset/?id=2785493"
  4112. s.Volume = 2
  4113. s:Play()
  4114. wait()
  4115. Character.Humanoid.WalkSpeed = 16 - i*2
  4116. end
  4117. end
  4118.  
  4119. function default()
  4120. for i=1, 16 do
  4121. wait()
  4122. Character.Humanoid.WalkSpeed = i
  4123. end
  4124. end
  4125.  
  4126. deb = false
  4127.  
  4128. function swing()
  4129. stop()
  4130. for i = 0 , 1 , 0.2 do
  4131. wait()
  4132. RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(-0.6-i*3.9, -2+i/2,13.3-0.5*i)
  4133. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  4134. LW.C0 = CFrame.new(0,0.5, -0.5) * CFrame.fromEulerAnglesXYZ(2-i,0,2.2-i*1.5)
  4135. LW.C1 = CFrame.new(0, 0.5, 0)
  4136. w1.C0 = CFrame.new(1, 1.5-i, 0)
  4137. w1.C0 = w1.C0 * CFrame.Angles(0, 0, 0-i*1.6)
  4138. end
  4139. eff()
  4140. shockwave()
  4141. wait(1)
  4142. --for i = 0 , 1 , 0.5 do
  4143. --wait()
  4144. --RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(0+i*3.9, 0,0)
  4145. --LW.C0 = CFrame.new(0,0.5, -0.5) * CFrame.fromEulerAnglesXYZ(0+i,0,0+i*1.5)
  4146. --end
  4147. equipweld()
  4148. equipanim2()
  4149. default()
  4150. end
  4151.  
  4152. --[[
  4153. --for i = 0 , 1 , 0.2 do
  4154. --wait()
  4155. --RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(-10-i*2,1.5 ,13.3-0.5*i)
  4156. --RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  4157. --LW.C0 = CFrame.new(0,0.5, -1) * CFrame.fromEulerAnglesXYZ(0,0,0)
  4158. --LW.C1 = CFrame.new(0, 0.5, 0)
  4159. --end
  4160.  
  4161. --]]
  4162.  
  4163.  
  4164. function swing2()
  4165. for i = 0 , 1 , 0.2 do
  4166. wait()
  4167. RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(-0.6-i*3.9, -2+i/2,13.3-0.5*i)
  4168. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  4169. LW.C0 = CFrame.new(0,0.5, -0.5) * CFrame.fromEulerAnglesXYZ(2-i,0,2.2-i*1.5)
  4170. LW.C1 = CFrame.new(0, 0.5, 0)
  4171. w1.C0 = CFrame.new(1, 1.5-i, 0)
  4172. w1.C0 = w1.C0 * CFrame.Angles(0, 0, 0-i*1.6)
  4173. end
  4174. eff3()
  4175. wait(1)
  4176. --for i = 0 , 1 , 0.5 do
  4177. --wait()
  4178. --RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(0+i*3.9, 0,0)
  4179. --LW.C0 = CFrame.new(0,0.5, -0.5) * CFrame.fromEulerAnglesXYZ(0+i,0,0+i*1.5)
  4180. --end
  4181. equipweld()
  4182. equipanim2()
  4183. end
  4184.  
  4185. function swing3()
  4186. stop2()
  4187. wait(2)
  4188. for i = 0 , 1 , 0.2 do
  4189. wait()
  4190. RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(-0.6-i*3.9, -2+i/2,13.3-0.5*i)
  4191. RW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  4192. LW.C0 = CFrame.new(0,0.5, -0.5) * CFrame.fromEulerAnglesXYZ(2-i,0,2.2-i*1.5)
  4193. LW.C1 = CFrame.new(0, 0.5, 0)
  4194. w1.C0 = CFrame.new(1, 1.5-i, 0)
  4195. w1.C0 = w1.C0 * CFrame.Angles(0, 0, 0-i*1.6)
  4196. end
  4197. eff2()
  4198. shockwave2()
  4199. wait(1)
  4200. --for i = 0 , 1 , 0.5 do
  4201. --wait()
  4202. --RW.C0 = CFrame.new(1.5,0.5, 0) * CFrame.fromEulerAnglesXYZ(0+i*3.9, 0,0)
  4203. --LW.C0 = CFrame.new(0,0.5, -0.5) * CFrame.fromEulerAnglesXYZ(0+i,0,0+i*1.5)
  4204. --end
  4205. equipweld()
  4206. equipanim2()
  4207. default()
  4208. end
  4209.  
  4210. function equip()
  4211. Ran = true
  4212. deb = false
  4213. player = Player
  4214. ch = Character
  4215. RSH = ch.Torso["Right Shoulder"]
  4216. LSH = ch.Torso["Left Shoulder"]
  4217.  
  4218. RSH.Parent = nil
  4219. LSH.Parent = nil
  4220.  
  4221. RW.Part0 = ch.Torso
  4222. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  4223. RW.C1 = CFrame.new(0, 0.5, 0)
  4224. RW.Part1 = ch["Right Arm"]
  4225. RW.Parent = ch.Torso
  4226. _G.R = RW
  4227.  
  4228. LW.Part0 = ch.Torso
  4229. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  4230. LW.C1 = CFrame.new(0, 0.5, 0)
  4231. LW.Part1 = ch["Left Arm"]
  4232. LW.Parent = ch.Torso
  4233. _G.L = LW
  4234. equipweld()
  4235. equipanim()
  4236. end
  4237.  
  4238. function test()
  4239.  
  4240. for i = 0 , 1 , 0.27 do
  4241. wait()
  4242. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0, -1,-6.915+1*i)
  4243. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  4244. end
  4245. wait(1)
  4246. end
  4247.  
  4248. fly = false
  4249. deb = false
  4250. cust = false
  4251. function LClick(mouse)
  4252. if mode == "shuriken" then
  4253. attack()
  4254. end
  4255. if mode == "dagger" then
  4256. if category == 1 then
  4257. attack2()
  4258. end
  4259. if category == 2 then
  4260. attack3()
  4261. end
  4262. if category == 3 then
  4263. attack4()
  4264. end
  4265. end
  4266. if mode == "swing" then
  4267. if category == 1 then
  4268. swing()
  4269. end
  4270. if category == 2 then
  4271. swing2()
  4272. end
  4273. if category == 3 then
  4274. swing3()
  4275. end
  4276. end
  4277. if mode == "custom" then
  4278. -- Player declarations
  4279. player = Player
  4280. char = Character
  4281. -- Body parts
  4282. torso = Torso
  4283. lArm = LeftArm
  4284. if cust == false then
  4285. cust = true
  4286. test()
  4287. wait(1)
  4288. swordholder.p19.W29.Part1 = LeftArm
  4289. swordholder.p19.W29.C0 = CFrame.new(-1.2,0,-2.5)
  4290. swordholder.p19.W29.C0 = swordholder.p19.W29.C0 * CFrame.Angles(-1.5,0,1.5)
  4291. end
  4292. swordholder.p19.W29.Part1 = LeftArm
  4293. swordholder.p19.W29.C0 = CFrame.new(-1.2,0,-2.5)
  4294. swordholder.p19.W29.C0 = swordholder.p19.W29.C0 * CFrame.Angles(-1.5,0,1.5)
  4295. function main()
  4296. -- torso["Right Shoulder"]:Destroy()
  4297.  
  4298.  
  4299. LW.Part0 = torso
  4300. LW.Part1 = lArm
  4301. --LW.Name = "Right Shoulder"
  4302. LW.Parent = torso
  4303.  
  4304. -- if char:FindFirstChild("Orb") then
  4305. -- char.Orb:Remove()
  4306. -- end
  4307.  
  4308. -- local orb = Instance.new("Part")
  4309. -- orb.FormFactor = "Symmetric"
  4310. -- orb.Shape = "Ball"
  4311. -- orb.TopSurface = "Smooth"
  4312. -- orb.BottomSurface = "Smooth"
  4313. -- orb.Size = Vector3.new(1, 1, 1)
  4314. -- orb.BrickColor = BrickColor.new("Teal")
  4315. -- orb.Transparency = 0.5
  4316. -- orb.CanCollide = false
  4317. -- orb.Parent = char
  4318. -- orb.Name = "Orb"
  4319.  
  4320. -- local orbWeld = Instance.new("Weld")
  4321. -- orbWeld.Part0 = rArm
  4322. -- orbWeld.Part1 = orb
  4323. -- orbWeld.C0 = CFrame.new(0, -1.25, 0)
  4324. -- orbWeld.Parent = rArm
  4325.  
  4326. lArmFrame = CFrame.Angles(math.rad(10), math.rad(10), math.rad(10))
  4327.  
  4328. -- Loop
  4329.  
  4330. -- Random number
  4331. function r(min, max)
  4332. return math.random() * (max - min) + min
  4333. end
  4334. -- Linear interpolation
  4335. function lerp(a, b, t)
  4336. return a + (b - a)*t
  4337. end
  4338. -- Spherical interpolation
  4339. function slerp(a, b, t)
  4340. dot = a:Dot(b)
  4341. if dot > 0.99999 or dot < -0.99999 then
  4342. return t <= 0.5 and a or b
  4343. else
  4344. r = math.acos(dot)
  4345. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  4346. end
  4347. end
  4348. -- Matrix interpolation
  4349. function matrixInterpolate(a, b, t)
  4350. ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  4351. bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  4352. v0 = lerp(Vector3.new(ax , ay , az ), Vector3.new(bx , by , bz) , t) -- Position
  4353. v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  4354. v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  4355. v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  4356.  
  4357. t = v1:Dot(v2)
  4358. if not (t < 0 or t == 0 or t > 0) then
  4359. return CFrame.new()
  4360. end
  4361. return CFrame.new(
  4362. v0.x, v0.y, v0.z,
  4363. v1.x, v1.y, v1.z,
  4364. v2.x, v2.y, v2.z,
  4365. v3.x, v3.y, v3.z)
  4366.  
  4367.  
  4368. end
  4369. end
  4370. main()
  4371. look = CFrame.new(torso.Position, torso.Position + mouse.Hit.lookVector)
  4372. hold = true
  4373. torso = Torso
  4374. while hold do
  4375. wait()
  4376. look = CFrame.new(torso.Position, torso.Position + mouse.Hit.lookVector)
  4377.  
  4378. frameRel = (torso.CFrame - torso.CFrame.p):toObjectSpace(mouse.Hit - mouse.Hit.p)
  4379.  
  4380. dir = frameRel.lookVector
  4381. yRot = math.deg(math.atan2(-dir.x, -dir.z))
  4382. xRot = math.deg(math.asin(dir.y))
  4383.  
  4384. if yRot > 50 then
  4385. yRot = -50
  4386. s = Instance.new("Sound")
  4387. s.Parent = Torso
  4388. s.Pitch = 1
  4389. s.SoundId = "rbxasset://sounds/swordslash.wav"
  4390. s.Volume = 1.3
  4391. s:Play()
  4392. elseif yRot > 25 then
  4393. yRot = 25
  4394. s = Instance.new("Sound")
  4395. s.Parent = Torso
  4396. s.Pitch = 1
  4397. s.SoundId = "rbxasset://sounds/swordslash.wav"
  4398. s.Volume = 1.3
  4399. s:Play()
  4400. elseif yRot < -50 then
  4401. yRot = -50
  4402. s = Instance.new("Sound")
  4403. s.Parent = Torso
  4404. s.Pitch = 1
  4405. s.SoundId = "rbxasset://sounds/swordslash.wav"
  4406. s.Volume = 1.3
  4407. s:Play()
  4408. end
  4409.  
  4410. if xRot < -17.5 then
  4411. xRot = -17.5
  4412. elseif xRot > 20 then
  4413. xRot = 20
  4414. end
  4415.  
  4416. -- orb.Transparency = 0.5 + math.abs(5 - ticks)/10
  4417.  
  4418. -- print( math.floor(xRot) .. ", " .. math.floor(yRot) .. ", 0" )
  4419.  
  4420. frameRel = CFrame.Angles(0, math.rad(yRot), 0) * CFrame.Angles(math.rad(xRot), 0, 0)
  4421.  
  4422. if not hold then
  4423. frameRel =
  4424. CFrame.Angles(-math.pi/2, 0, 0) *
  4425. CFrame.new(0.25, 0, 1) *
  4426. CFrame.Angles(0, math.rad(-20), 0)
  4427. end
  4428.  
  4429. LW.C0 = matrixInterpolate(lArmFrame, frameRel, 1.6)
  4430.  
  4431. LW.C0 =
  4432. CFrame.new(-1.5, 0.5, 0) *
  4433. LW.C0 *
  4434. CFrame.Angles(math.pi/2, 0, 0) *
  4435. CFrame.new(0, -1, 0)
  4436.  
  4437. end
  4438. end
  4439. end
  4440.  
  4441.  
  4442. deb = false
  4443. function keydown(key)
  4444. if key == "r" then
  4445. for i,e in pairs(workspace:GetChildren()) do
  4446. if e.Name == "effect" and e.className == "Part" then
  4447. e:Remove()
  4448. end
  4449. end
  4450. end
  4451. if key == "e" then
  4452. mode = "shuriken"
  4453. if eq == true then
  4454. eq = false
  4455. hideanim()
  4456. Ran = false
  4457. unequipweld()
  4458. wait()
  4459. end
  4460. end
  4461. if key == "f" then
  4462. mode = "hold"
  4463. if eq == false then
  4464. eq = true
  4465. equip()
  4466. end
  4467. end
  4468. if key == "g" then
  4469. mode = "dagger"
  4470. if eq == false then
  4471. eq = true
  4472. end
  4473. end
  4474. if key == "h" then
  4475. mode = "swing"
  4476. end
  4477. if key == "j" then
  4478. mode = "custom"
  4479. if cust == false then
  4480. hideanim()
  4481. unequipweld()
  4482. end
  4483. eq = true
  4484. end
  4485. --if mode == "custom" then
  4486. --if eq == true then
  4487. --eq = false
  4488. --end
  4489. --end
  4490. if key == "b" then
  4491. category = category -1
  4492. if category <1 then
  4493. category = 3
  4494. end
  4495. print(category)
  4496. end
  4497. if key == "n" then
  4498. category = category +1
  4499. if category >3 then
  4500. category = 1
  4501. end
  4502. print(category)
  4503. end
  4504. end
  4505.  
  4506. function LRelease(mouse)
  4507. hold = false
  4508. if mode == "custom" then
  4509. eq = false
  4510. for i = 0 , 1 , 0.3 do
  4511. wait()
  4512. s = Instance.new("Sound")
  4513. s.Parent = Torso
  4514. s.Pitch = 1
  4515. s.SoundId = "rbxasset://sounds/swordslash.wav"
  4516. s.Volume = 1.3
  4517. s:Play()
  4518. LW.C0 = CFrame.new(-1.5,0.5,0) * CFrame.fromEulerAnglesXYZ(0-i*2, -1,4+1*i)
  4519. LW.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0,0,0)
  4520. end
  4521.  
  4522. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  4523. swordholder.p19.W29.Part1 = Torso
  4524. swordholder.p19.W29.C0 = CFrame.new(-0.7, 1.2, -1)
  4525. swordholder.p19.W29.C0 = swordholder.p19.W29.C0 * CFrame.Angles(-0.2, -0.5, 1.3)
  4526. end
  4527. fly = false
  4528. end
  4529.  
  4530. if (script.Parent.className ~= "HopperBin") then
  4531. Tool = Instance.new("HopperBin")
  4532. Tool.Parent = Backpack
  4533. Tool.Name = "Sword"
  4534. script.Parent = Tool
  4535. end
  4536. Bin = script.Parent
  4537.  
  4538.  
  4539.  
  4540.  
  4541. function Sel(mouse)
  4542. mouse.Button1Down:connect(function() LClick(mouse) end)
  4543. mouse.Button1Up:connect(function() LRelease(mouse) end)
  4544. mouse.KeyDown:connect(keydown)
  4545. eq = true
  4546. deb = false
  4547. equipweld()
  4548. Ran = true
  4549. player = Player
  4550. ch = Character
  4551. RSH = ch.Torso["Right Shoulder"]
  4552. LSH = ch.Torso["Left Shoulder"]
  4553.  
  4554. RSH.Parent = nil
  4555. LSH.Parent = nil
  4556.  
  4557. RW.Part0 = ch.Torso
  4558. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  4559. RW.C1 = CFrame.new(0, 0.5, 0)
  4560. RW.Part1 = ch["Right Arm"]
  4561. RW.Parent = ch.Torso
  4562. _G.R = RW
  4563.  
  4564. LW.Part0 = ch.Torso
  4565. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  4566. LW.C1 = CFrame.new(0, 0.5, 0)
  4567. LW.Part1 = ch["Left Arm"]
  4568. LW.Parent = ch.Torso
  4569. _G.L = LW
  4570. equipweld()
  4571. equipanim()
  4572.  
  4573. end
  4574.  
  4575. function Des(mouse)
  4576. eq = false
  4577. deb = false
  4578. hideanim()
  4579. Ran = false
  4580. unequipweld()
  4581. for i,e in pairs(workspace:GetChildren()) do
  4582. if e.Name == "effect" then
  4583. e:Destroy()
  4584. end
  4585. end
  4586. wait(0.05)
  4587. RW.Parent = nil
  4588. LW.Parent = nil
  4589. RSH.Parent = player.Character.Torso
  4590. LSH.Parent = player.Character.Torso
  4591.  
  4592. end
  4593. Bin.Selected:connect(Sel)
  4594. Bin.Deselected:connect(Des)
  4595.  
  4596. --mediafire
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement