Advertisement
Upscalefanatic3

Yoru

Oct 5th, 2016
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.60 KB | None | 0 0
  1. wait();
  2. local ta1 = 5;
  3.  
  4. Player = game:GetService("Players")
  5. me = Player.Upscalegaming
  6. char = me.Character
  7. Modelname = "SwordV10"
  8. local HIT = false
  9. local DMG = 200
  10. local AIM = false
  11. local Trans = false
  12. Busy = false
  13. Onfire = false
  14. torso = char.Torso
  15. neck = torso.Neck
  16. hum = char.Humanoid
  17. rightarm = char["Right Arm"]
  18. leftarm = char["Left Arm"]
  19. rightleg = char["Right Leg"]
  20. leftleg = char["Left Leg"]
  21. RShoulder = torso["Right Shoulder"]
  22. LShoulder = torso["Left Shoulder"]
  23. RHip = torso["Right Hip"]
  24. LHip = torso["Left Hip"]
  25. head = char.Head
  26.  
  27. function FindHumanoid(source)
  28. local object = source
  29. repeat
  30. if object.Parent ~= workspace then
  31. object = object.Parent
  32. else
  33. return true
  34. end
  35. until true
  36.  
  37. if object:findFirstChild("Humanoid") ~= nil then
  38. Damage(object.Humanoid)
  39. end
  40.  
  41. end
  42.  
  43. function Slash(target)
  44. if target.Name ~= "Weapon" and target.Name ~= "Handle" then
  45. FindHumanoid(target)
  46. end
  47. end
  48.  
  49. function Tag(h)
  50. if h:findFirstChild("Tag") ~= nil then
  51. h.Tag:Destroy()
  52. end
  53. local t = Instance.new("ObjectValue",h)
  54. t.Name = "Tag"
  55. t.Value = player
  56. game.Debris:AddItem(t,6)
  57. end
  58.  
  59. function Damage(huma)
  60. if huma.Parent.Name ~= char.Name and HIT == false and AIM == true then
  61. Tag(huma)
  62. huma.Health = huma.Health - DMG
  63. Model = Instance.new("Model")
  64. game.Debris:AddItem(Model, 2)
  65. Model.Parent = huma.Parent
  66. p = Instance.new("Part")
  67. p.Parent = Model
  68. p.BrickColor = BrickColor.new("Bright red")
  69. p.CFrame = huma.Parent.Head.CFrame * CFrame.new(0, 5, 0)
  70. p.CanCollide = false
  71. y = Instance.new("BodyVelocity")
  72. y.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  73. y.Parent = p
  74. y.velocity = torso.CFrame.lookVector*0 + Vector3.new(0, 10, 0)
  75. m = Instance.new("SpecialMesh")
  76. m.MeshType = "Brick"
  77. m.Scale = Vector3.new(0.25, 0.1, 0.25)
  78. m.Parent = p
  79. gui = Instance.new("BillboardGui")
  80. gui.Parent = p
  81. gui.Adornee = p
  82. gui.Size = UDim2.new(4,0,2,0)
  83. gui.StudsOffset = Vector3.new(0,4,0)
  84. texta=Instance.new("TextBox")
  85. texta.Size = UDim2.new(1,0,1,0)
  86. texta.BackgroundTransparency = 1
  87. texta.Text = ("~20~")
  88. texta.Parent = gui
  89. if Energy < 100 then
  90. Energy = Energy + 5
  91. end
  92. HIT = true
  93. wait(0.35)
  94. HIT = false
  95. end
  96. end
  97.  
  98. A = Instance.new("ScreenGui")
  99. A.Parent = me.PlayerGui
  100. A.Name = "CharacterStats"
  101. B = Instance.new("Frame")
  102. B.BackgroundTransparency = 1
  103. B.Name = "Frame"
  104. B.Position = UDim2.new(0.25, 0, 0, 0)
  105. B.Size = UDim2.new(0.25, 0, 0.25, 0)
  106. B.Parent = A
  107. C = Instance.new("TextButton")
  108. C.Active = true
  109. C.AutoButtonColor = true
  110. C.Name = "HPRedBar"
  111. C.BackgroundColor3 = Color3.new(1, 0, 0)
  112. C.Position = UDim2.new(0, 0, 0.15, 0)
  113. C.Size = UDim2.new(1, 0, 0.1, 0)
  114. C.Selected = true
  115. C.Text = ""
  116. C.Parent = B
  117. D = Instance.new("TextButton")
  118. D.Active = true
  119. D.AutoButtonColor = true
  120. D.Name = "MPRedBar"
  121. D.BackgroundColor3 = Color3.new(1, 0, 0)
  122. D.Size = UDim2.new(1, 0, 0.1, 0)
  123. D.Position = UDim2.new(0, 0, 0.25, 0)
  124. D.Selected = true
  125. D.Text = ""
  126. D.Parent = B
  127. E = Instance.new("TextButton")
  128. E.Active = true
  129. E.AutoButtonColor = true
  130. E.Name = "HPGreenBar"
  131. E.BackgroundColor3 = Color3.new(0, 1, 0)
  132. E.Position = UDim2.new(0, 0, 0.15, 0)
  133. E.Size = UDim2.new(1, 0, 0.1, 0)
  134. E.Selected = true
  135. E.Text = ""
  136. E.Parent = B
  137. F = Instance.new("TextButton")
  138. F.Active = true
  139. F.AutoButtonColor = true
  140. F.Name = "MPBlueBar"
  141. F.BackgroundColor3 = Color3.new(0, 0, 1)
  142. F.Size = UDim2.new(1, 0, 0.1, 0)
  143. F.Position = UDim2.new(0, 0, 0.25, 0)
  144. F.Selected = true
  145. F.Text = ""
  146. F.Parent = B
  147. G = Instance.new("TextButton")
  148. G.Active = true
  149. G.AutoButtonColor = true
  150. G.BackgroundTransparency = 1
  151. G.Name = "HPLabel"
  152. G.BackgroundColor3 = Color3.new(0, 1, 0)
  153. G.Position = UDim2.new(0, 0, 0.15, 0)
  154. G.Size = UDim2.new(1, 0, 0.1, 0)
  155. G.Selected = true
  156. G.Text = "Health:100"
  157. G.Parent = B
  158. H = Instance.new("TextButton")
  159. H.Active = true
  160. H.AutoButtonColor = true
  161. H.BackgroundTransparency = 1
  162. H.Name = "MPRedBar"
  163. H.BackgroundColor3 = Color3.new(0, 1, 0)
  164. H.Size = UDim2.new(1, 0, 0.1, 0)
  165. H.Position = UDim2.new(0, 0, 0.25, 0)
  166. H.Selected = true
  167. H.Text = "Energy:100"
  168. H.Parent = B
  169. Name = Instance.new("TextButton")
  170. Name.Active = true
  171. Name.AutoButtonColor = true
  172. Name.Name = "NameLabel"
  173. Name.BackgroundTransparency = 1
  174. Name.BackgroundColor3 = Color3.new(1, 0, 0)
  175. Name.Size = UDim2.new(2, 0, 1, 0)
  176. Name.Position = UDim2.new(-0.5, 0, 0.0625, 0)
  177. Name.Selected = true
  178. Name.Text = ""..me.Name..""
  179. Name.TextScaled = true
  180. Name.Parent = B
  181. Energy = 100
  182. Shetta = Instance.new("Model")
  183. Shetta.Parent = char
  184. Shetta.Name = "Shetta"
  185. ---------------------------------------Handle---------------------------------------
  186. local Gem1 = Instance.new("Part")
  187. Gem1.Parent = Shetta
  188. Gem1.Name = "Gem1"
  189. Gem1.CanCollide = false
  190. Gem1.Locked = true
  191. Gem1.TopSurface = "Smooth"
  192. Gem1.BottomSurface = "Smooth"
  193. Gem1.formFactor = "Symmetric"
  194. Gem1.BrickColor = BrickColor.new("Cyan")
  195. Gem1.CFrame = char.Torso.CFrame
  196. Gem1.Transparency = 0.25
  197. Gem1.Reflectance = 0.25
  198. Gem1.Size = Vector3.new(1, 1, 1)
  199. b1Weld = Instance.new("Weld")
  200. b1Weld.Parent = char.Torso
  201. b1Weld.Part0 = char.Torso
  202. b1Weld.Part1 = Gem1
  203. b1Weld.Name = "TorsoWeld1"
  204. b1Weld.C0 = CFrame.new(0, 1.75, 0.75) * CFrame.Angles(0, 0, 0)
  205. Gem1Mesh = Instance.new("SpecialMesh")
  206. Gem1Mesh.MeshType = "Sphere"
  207. Gem1Mesh.Parent = Gem1
  208. Gem1Mesh.Scale = Vector3.new(0.5, 0.5, 0.5)
  209.  
  210. local Handle = Instance.new("Part")
  211. Handle.Parent = Shetta
  212. Handle.Name = "Handle"
  213. Handle.CanCollide = false
  214. Handle.Locked = true
  215. Handle.TopSurface = "Smooth"
  216. Handle.BottomSurface = "Smooth"
  217. Handle.formFactor = "Symmetric"
  218. Handle.BrickColor = BrickColor.new("White")
  219. Handle.CFrame = char.Torso.CFrame
  220. Handle.Transparency = 0
  221. Handle.Reflectance = 0.1
  222. Handle.Size = Vector3.new(1, 1, 1)
  223. b1Weld = Instance.new("Weld")
  224. b1Weld.Parent = char.Torso
  225. b1Weld.Part0 = char.Torso
  226. b1Weld.Part1 = Handle
  227. b1Weld.Name = "TorsoWeld1"
  228. b1Weld.C0 = CFrame.new(0, 1, 0.75) * CFrame.Angles(0, 0, 0)
  229. HandleMesh = Instance.new("CylinderMesh")
  230. HandleMesh.Parent = Handle
  231. HandleMesh.Scale = Vector3.new(0.25, 1, 0.25)
  232.  
  233.  
  234. local Gold1 = Instance.new("Part")
  235. Gold1.Parent = Shetta
  236. Gold1.Name = "Gold1"
  237. Gold1.CanCollide = false
  238. Gold1.Locked = true
  239. Gold1.TopSurface = "Smooth"
  240. Gold1.BottomSurface = "Smooth"
  241. Gold1.formFactor = "Symmetric"
  242. Gold1.BrickColor = BrickColor.new("Olive")
  243. Gold1.CFrame = char.Torso.CFrame
  244. Gold1.Transparency = 0
  245. Gold1.Reflectance = 0.25
  246. Gold1.Size = Vector3.new(1, 1, 1)
  247. b1Weld = Instance.new("Weld")
  248. b1Weld.Parent = char.Torso
  249. b1Weld.Part0 = char.Torso
  250. b1Weld.Part1 = Gold1
  251. b1Weld.Name = "TorsoWeld1"
  252. b1Weld.C0 = CFrame.new(0, 1.5, 0.75) * CFrame.Angles(0, 0, 0)
  253. Gold1Mesh = Instance.new("CylinderMesh")
  254. Gold1Mesh.Parent = Gold1
  255. Gold1Mesh.Scale = Vector3.new(0.35, 0.15, 0.35)
  256.  
  257. local Gold2 = Instance.new("Part")
  258. Gold2.Parent = Shetta
  259. Gold2.Name = "Gold2"
  260. Gold2.CanCollide = false
  261. Gold2.Locked = true
  262. Gold2.TopSurface = "Smooth"
  263. Gold2.BottomSurface = "Smooth"
  264. Gold2.formFactor = "Symmetric"
  265. Gold2.BrickColor = BrickColor.new("Olive")
  266. Gold2.CFrame = char.Torso.CFrame
  267. Gold2.Transparency = 0
  268. Gold2.Reflectance = 0.25
  269. Gold2.Size = Vector3.new(1, 1, 1)
  270. b1Weld = Instance.new("Weld")
  271. b1Weld.Parent = char.Torso
  272. b1Weld.Part0 = char.Torso
  273. b1Weld.Part1 = Gold2
  274. b1Weld.Name = "TorsoWeld1"
  275. b1Weld.C0 = CFrame.new(0, 0.575, 0.75) * CFrame.Angles(0, 0, 0)
  276. Gold2Mesh = Instance.new("CylinderMesh")
  277. Gold2Mesh.Parent = Gold2
  278. Gold2Mesh.Scale = Vector3.new(0.35, 0.15, 0.35)
  279.  
  280. local Cross1 = Instance.new("Part")
  281. Cross1.Parent = Shetta
  282. Cross1.Name = "Cross1"
  283. Cross1.CanCollide = false
  284. Cross1.Locked = true
  285. Cross1.TopSurface = "Smooth"
  286. Cross1.BottomSurface = "Smooth"
  287. Cross1.formFactor = "Symmetric"
  288. Cross1.BrickColor = BrickColor.new("Olive")
  289. Cross1.CFrame = char.Torso.CFrame
  290. Cross1.Transparency = 0
  291. Cross1.Reflectance = 0.25
  292. Cross1.Size = Vector3.new(1, 1, 1)
  293. b1Weld = Instance.new("Weld")
  294. b1Weld.Parent = char.Torso
  295. b1Weld.Part0 = char.Torso
  296. b1Weld.Part1 = Cross1
  297. b1Weld.Name = "TorsoWeld1"
  298. b1Weld.C0 = CFrame.new(0, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  299. Cross1Mesh = Instance.new("SpecialMesh")
  300. Cross1Mesh.MeshType = "Brick"
  301. Cross1Mesh.Parent = Cross1
  302. Cross1Mesh.Scale = Vector3.new(2.5, 0.35, 0.35)
  303.  
  304. local Cross2 = Instance.new("Part")
  305. Cross2.Parent = Shetta
  306. Cross2.Name = "Cross2"
  307. Cross2.CanCollide = false
  308. Cross2.Locked = true
  309. Cross2.TopSurface = "Smooth"
  310. Cross2.BottomSurface = "Smooth"
  311. Cross2.formFactor = "Symmetric"
  312. Cross2.BrickColor = BrickColor.new("Olive")
  313. Cross2.CFrame = char.Torso.CFrame
  314. Cross2.Transparency = 0
  315. Cross2.Reflectance = 0.25
  316. Cross2.Size = Vector3.new(1, 1, 1)
  317. b1Weld = Instance.new("Weld")
  318. b1Weld.Parent = char.Torso
  319. b1Weld.Part0 = char.Torso
  320. b1Weld.Part1 = Cross2
  321. b1Weld.Name = "TorsoWeld1"
  322. b1Weld.C0 = CFrame.new(0, 0, 0.75) * CFrame.Angles(0, 0, 0)
  323. Cross2Mesh = Instance.new("SpecialMesh")
  324. Cross2Mesh.MeshType = "Brick"
  325. Cross2Mesh.Parent = Cross2
  326. Cross2Mesh.Scale = Vector3.new(0.25, 1, 0.35)
  327.  
  328. local Blade = Instance.new("Part")
  329. Blade.Parent = Shetta
  330. Blade.Name = "Blade"
  331. Blade.CanCollide = false
  332. Blade.Locked = true
  333. Blade.TopSurface = "Smooth"
  334. Blade.BottomSurface = "Smooth"
  335. Blade.formFactor = "Symmetric"
  336. Blade.BrickColor = BrickColor.new("Really black")
  337. Blade.CFrame = char.Torso.CFrame
  338. Blade.Transparency = 0
  339. Blade.Reflectance = 0
  340. Blade.Size = Vector3.new(1, 9, 1)
  341. b1Weld = Instance.new("Weld")
  342. b1Weld.Parent = char.Torso
  343. b1Weld.Part0 = char.Torso
  344. b1Weld.Part1 = Blade
  345. b1Weld.Name = "TorsoWeld1"
  346. b1Weld.C0 = CFrame.new(0, -1.5, 0.75) * CFrame.Angles(3.14, 1.57, 0)
  347. BladeMesh = Instance.new("SpecialMesh")
  348. BladeMesh.MeshType = "FileMesh"
  349. BladeMesh.MeshId = "http://www.roblox.com/asset/?id=96630166"
  350. BladeMesh.Parent = Blade
  351. BladeMesh.Scale = Vector3.new(1, 0.75, 0.35)
  352.  
  353. local Gem2 = Instance.new("Part")
  354. Gem2.Parent = Shetta
  355. Gem2.Name = "Gem2"
  356. Gem2.CanCollide = false
  357. Gem2.Locked = true
  358. Gem2.TopSurface = "Smooth"
  359. Gem2.BottomSurface = "Smooth"
  360. Gem2.formFactor = "Symmetric"
  361. Gem2.BrickColor = BrickColor.new("Navy blue")
  362. Gem2.CFrame = char.Torso.CFrame
  363. Gem2.Transparency = 0.25
  364. Gem2.Reflectance = 0.25
  365. Gem2.Size = Vector3.new(1, 1, 1)
  366. b1Weld = Instance.new("Weld")
  367. b1Weld.Parent = char.Torso
  368. b1Weld.Part0 = char.Torso
  369. b1Weld.Part1 = Gem2
  370. b1Weld.Name = "TorsoWeld1"
  371. b1Weld.C0 = CFrame.new(0, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  372. Gem2Mesh = Instance.new("SpecialMesh")
  373. Gem2Mesh.MeshType = "Sphere"
  374. Gem2Mesh.Parent = Gem2
  375. Gem2Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  376.  
  377. local Gem3 = Instance.new("Part")
  378. Gem3.Parent = Shetta
  379. Gem3.Name = "Gem3"
  380. Gem3.CanCollide = false
  381. Gem3.Locked = true
  382. Gem3.TopSurface = "Smooth"
  383. Gem3.BottomSurface = "Smooth"
  384. Gem3.formFactor = "Symmetric"
  385. Gem3.BrickColor = BrickColor.new("Navy blue")
  386. Gem3.CFrame = char.Torso.CFrame
  387. Gem3.Transparency = 0.25
  388. Gem3.Reflectance = 0.25
  389. Gem3.Size = Vector3.new(1, 1, 1)
  390. b1Weld = Instance.new("Weld")
  391. b1Weld.Parent = char.Torso
  392. b1Weld.Part0 = char.Torso
  393. b1Weld.Part1 = Gem3
  394. b1Weld.Name = "TorsoWeld1"
  395. b1Weld.C0 = CFrame.new(0, 0.15, 0.75) * CFrame.Angles(0, 0, 0)
  396. Gem3Mesh = Instance.new("SpecialMesh")
  397. Gem3Mesh.MeshType = "Sphere"
  398. Gem3Mesh.Parent = Gem3
  399. Gem3Mesh.Scale = Vector3.new(0.2, 0.2, 0.4)
  400.  
  401. local Gem4 = Instance.new("Part")
  402. Gem4.Parent = Shetta
  403. Gem4.Name = "Gem4"
  404. Gem4.CanCollide = false
  405. Gem4.Locked = true
  406. Gem4.TopSurface = "Smooth"
  407. Gem4.BottomSurface = "Smooth"
  408. Gem4.formFactor = "Symmetric"
  409. Gem4.BrickColor = BrickColor.new("Navy blue")
  410. Gem4.CFrame = char.Torso.CFrame
  411. Gem4.Transparency = 0.25
  412. Gem4.Reflectance = 0.25
  413. Gem4.Size = Vector3.new(1, 1, 1)
  414. b1Weld = Instance.new("Weld")
  415. b1Weld.Parent = char.Torso
  416. b1Weld.Part0 = char.Torso
  417. b1Weld.Part1 = Gem4
  418. b1Weld.Name = "TorsoWeld1"
  419. b1Weld.C0 = CFrame.new(1, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  420. Gem4Mesh = Instance.new("SpecialMesh")
  421. Gem4Mesh.MeshType = "Sphere"
  422. Gem4Mesh.Parent = Gem4
  423. Gem4Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  424.  
  425. local Gem5 = Instance.new("Part")
  426. Gem5.Parent = Shetta
  427. Gem5.Name = "Gem5"
  428. Gem5.CanCollide = false
  429. Gem5.Locked = true
  430. Gem5.TopSurface = "Smooth"
  431. Gem5.BottomSurface = "Smooth"
  432. Gem5.formFactor = "Symmetric"
  433. Gem5.BrickColor = BrickColor.new("Navy blue")
  434. Gem5.CFrame = char.Torso.CFrame
  435. Gem5.Transparency = 0.25
  436. Gem5.Reflectance = 0.25
  437. Gem5.Size = Vector3.new(1, 1, 1)
  438. b1Weld = Instance.new("Weld")
  439. b1Weld.Parent = char.Torso
  440. b1Weld.Part0 = char.Torso
  441. b1Weld.Part1 = Gem5
  442. b1Weld.Name = "TorsoWeld1"
  443. b1Weld.C0 = CFrame.new(-1, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  444. Gem5Mesh = Instance.new("SpecialMesh")
  445. Gem5Mesh.MeshType = "Sphere"
  446. Gem5Mesh.Parent = Gem5
  447. Gem5Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  448.  
  449. local Gem6 = Instance.new("Part")
  450. Gem6.Parent = Shetta
  451. Gem6.Name = "Gem6"
  452. Gem6.CanCollide = false
  453. Gem6.Locked = true
  454. Gem6.TopSurface = "Smooth"
  455. Gem6.BottomSurface = "Smooth"
  456. Gem6.formFactor = "Symmetric"
  457. Gem6.BrickColor = BrickColor.new("Lime green")
  458. Gem6.CFrame = char.Torso.CFrame
  459. Gem6.Transparency = 0.25
  460. Gem6.Reflectance = 0.25
  461. Gem6.Size = Vector3.new(1, 1, 1)
  462. b1Weld = Instance.new("Weld")
  463. b1Weld.Parent = char.Torso
  464. b1Weld.Part0 = char.Torso
  465. b1Weld.Part1 = Gem6
  466. b1Weld.Name = "TorsoWeld1"
  467. b1Weld.C0 = CFrame.new(-0.75, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  468. Gem6Mesh = Instance.new("SpecialMesh")
  469. Gem6Mesh.MeshType = "Sphere"
  470. Gem6Mesh.Parent = Gem6
  471. Gem6Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  472.  
  473. local Gem7 = Instance.new("Part")
  474. Gem7.Parent = Shetta
  475. Gem7.Name = "Gem7"
  476. Gem7.CanCollide = false
  477. Gem7.Locked = true
  478. Gem7.TopSurface = "Smooth"
  479. Gem7.BottomSurface = "Smooth"
  480. Gem7.formFactor = "Symmetric"
  481. Gem7.BrickColor = BrickColor.new("Lime green")
  482. Gem7.CFrame = char.Torso.CFrame
  483. Gem7.Transparency = 0.25
  484. Gem7.Reflectance = 0.25
  485. Gem7.Size = Vector3.new(1, 1, 1)
  486. b1Weld = Instance.new("Weld")
  487. b1Weld.Parent = char.Torso
  488. b1Weld.Part0 = char.Torso
  489. b1Weld.Part1 = Gem7
  490. b1Weld.Name = "TorsoWeld1"
  491. b1Weld.C0 = CFrame.new(0.75, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  492. Gem7Mesh = Instance.new("SpecialMesh")
  493. Gem7Mesh.MeshType = "Sphere"
  494. Gem7Mesh.Parent = Gem7
  495. Gem7Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  496.  
  497. local Gem8 = Instance.new("Part")
  498. Gem8.Parent = Shetta
  499. Gem8.Name = "Gem8"
  500. Gem8.CanCollide = false
  501. Gem8.Locked = true
  502. Gem8.TopSurface = "Smooth"
  503. Gem8.BottomSurface = "Smooth"
  504. Gem8.formFactor = "Symmetric"
  505. Gem8.BrickColor = BrickColor.new("Navy blue")
  506. Gem8.CFrame = char.Torso.CFrame
  507. Gem8.Transparency = 0.25
  508. Gem8.Reflectance = 0.25
  509. Gem8.Size = Vector3.new(1, 1, 1)
  510. b1Weld = Instance.new("Weld")
  511. b1Weld.Parent = char.Torso
  512. b1Weld.Part0 = char.Torso
  513. b1Weld.Part1 = Gem8
  514. b1Weld.Name = "TorsoWeld1"
  515. b1Weld.C0 = CFrame.new(0.25, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  516. Gem8Mesh = Instance.new("SpecialMesh")
  517. Gem8Mesh.MeshType = "Sphere"
  518. Gem8Mesh.Parent = Gem8
  519. Gem8Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  520.  
  521. local Gem9 = Instance.new("Part")
  522. Gem9.Parent = Shetta
  523. Gem9.Name = "Gem9"
  524. Gem9.CanCollide = false
  525. Gem9.Locked = true
  526. Gem9.TopSurface = "Smooth"
  527. Gem9.BottomSurface = "Smooth"
  528. Gem9.formFactor = "Symmetric"
  529. Gem9.BrickColor = BrickColor.new("Navy blue")
  530. Gem9.CFrame = char.Torso.CFrame
  531. Gem9.Transparency = 0.25
  532. Gem9.Reflectance = 0.25
  533. Gem9.Size = Vector3.new(1, 1, 1)
  534. b1Weld = Instance.new("Weld")
  535. b1Weld.Parent = char.Torso
  536. b1Weld.Part0 = char.Torso
  537. b1Weld.Part1 = Gem9
  538. b1Weld.Name = "TorsoWeld1"
  539. b1Weld.C0 = CFrame.new(-0.25, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  540. Gem9Mesh = Instance.new("SpecialMesh")
  541. Gem9Mesh.MeshType = "Sphere"
  542. Gem9Mesh.Parent = Gem9
  543. Gem9Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  544.  
  545. ----------------------------------------------------------------------------------------------------
  546. -------------------------Sword Above is Put Away----------------
  547. function PutAway()
  548. Shetta = Instance.new("Model")
  549. Shetta.Parent = char
  550. Shetta.Name = "Shetta"
  551. ---------------------------------------Handle---------------------------------------
  552. local Gem1 = Instance.new("Part")
  553. Gem1.Parent = Shetta
  554. Gem1.Name = "Gem1"
  555. Gem1.CanCollide = false
  556. Gem1.Locked = true
  557. Gem1.TopSurface = "Smooth"
  558. Gem1.BottomSurface = "Smooth"
  559. Gem1.formFactor = "Symmetric"
  560. Gem1.BrickColor = BrickColor.new("Cyan")
  561. Gem1.CFrame = char.Torso.CFrame
  562. Gem1.Transparency = 0.25
  563. Gem1.Reflectance = 0.25
  564. Gem1.Size = Vector3.new(1, 1, 1)
  565. b1Weld = Instance.new("Weld")
  566. b1Weld.Parent = char.Torso
  567. b1Weld.Part0 = char.Torso
  568. b1Weld.Part1 = Gem1
  569. b1Weld.Name = "TorsoWeld1"
  570. b1Weld.C0 = CFrame.new(0, 1.75, 0.75) * CFrame.Angles(0, 0, 0)
  571. Gem1Mesh = Instance.new("SpecialMesh")
  572. Gem1Mesh.MeshType = "Sphere"
  573. Gem1Mesh.Parent = Gem1
  574. Gem1Mesh.Scale = Vector3.new(0.5, 0.5, 0.5)
  575.  
  576. local Handle = Instance.new("Part")
  577. Handle.Parent = Shetta
  578. Handle.Name = "Handle"
  579. Handle.CanCollide = false
  580. Handle.Locked = true
  581. Handle.TopSurface = "Smooth"
  582. Handle.BottomSurface = "Smooth"
  583. Handle.formFactor = "Symmetric"
  584. Handle.BrickColor = BrickColor.new("White")
  585. Handle.CFrame = char.Torso.CFrame
  586. Handle.Transparency = 0
  587. Handle.Reflectance = 0.1
  588. Handle.Size = Vector3.new(1, 1, 1)
  589. b1Weld = Instance.new("Weld")
  590. b1Weld.Parent = char.Torso
  591. b1Weld.Part0 = char.Torso
  592. b1Weld.Part1 = Handle
  593. b1Weld.Name = "TorsoWeld1"
  594. b1Weld.C0 = CFrame.new(0, 1, 0.75) * CFrame.Angles(0, 0, 0)
  595. HandleMesh = Instance.new("CylinderMesh")
  596. HandleMesh.Parent = Handle
  597. HandleMesh.Scale = Vector3.new(0.25, 1, 0.25)
  598.  
  599.  
  600. local Gold1 = Instance.new("Part")
  601. Gold1.Parent = Shetta
  602. Gold1.Name = "Gold1"
  603. Gold1.CanCollide = false
  604. Gold1.Locked = true
  605. Gold1.TopSurface = "Smooth"
  606. Gold1.BottomSurface = "Smooth"
  607. Gold1.formFactor = "Symmetric"
  608. Gold1.BrickColor = BrickColor.new("Olive")
  609. Gold1.CFrame = char.Torso.CFrame
  610. Gold1.Transparency = 0
  611. Gold1.Reflectance = 0.25
  612. Gold1.Size = Vector3.new(1, 1, 1)
  613. b1Weld = Instance.new("Weld")
  614. b1Weld.Parent = char.Torso
  615. b1Weld.Part0 = char.Torso
  616. b1Weld.Part1 = Gold1
  617. b1Weld.Name = "TorsoWeld1"
  618. b1Weld.C0 = CFrame.new(0, 1.5, 0.75) * CFrame.Angles(0, 0, 0)
  619. Gold1Mesh = Instance.new("CylinderMesh")
  620. Gold1Mesh.Parent = Gold1
  621. Gold1Mesh.Scale = Vector3.new(0.35, 0.15, 0.35)
  622.  
  623. local Gold2 = Instance.new("Part")
  624. Gold2.Parent = Shetta
  625. Gold2.Name = "Gold2"
  626. Gold2.CanCollide = false
  627. Gold2.Locked = true
  628. Gold2.TopSurface = "Smooth"
  629. Gold2.BottomSurface = "Smooth"
  630. Gold2.formFactor = "Symmetric"
  631. Gold2.BrickColor = BrickColor.new("Olive")
  632. Gold2.CFrame = char.Torso.CFrame
  633. Gold2.Transparency = 0
  634. Gold2.Reflectance = 0.25
  635. Gold2.Size = Vector3.new(1, 1, 1)
  636. b1Weld = Instance.new("Weld")
  637. b1Weld.Parent = char.Torso
  638. b1Weld.Part0 = char.Torso
  639. b1Weld.Part1 = Gold2
  640. b1Weld.Name = "TorsoWeld1"
  641. b1Weld.C0 = CFrame.new(0, 0.575, 0.75) * CFrame.Angles(0, 0, 0)
  642. Gold2Mesh = Instance.new("CylinderMesh")
  643. Gold2Mesh.Parent = Gold2
  644. Gold2Mesh.Scale = Vector3.new(0.35, 0.15, 0.35)
  645.  
  646. local Cross1 = Instance.new("Part")
  647. Cross1.Parent = Shetta
  648. Cross1.Name = "Cross1"
  649. Cross1.CanCollide = false
  650. Cross1.Locked = true
  651. Cross1.TopSurface = "Smooth"
  652. Cross1.BottomSurface = "Smooth"
  653. Cross1.formFactor = "Symmetric"
  654. Cross1.BrickColor = BrickColor.new("Olive")
  655. Cross1.CFrame = char.Torso.CFrame
  656. Cross1.Transparency = 0
  657. Cross1.Reflectance = 0.25
  658. Cross1.Size = Vector3.new(1, 1, 1)
  659. b1Weld = Instance.new("Weld")
  660. b1Weld.Parent = char.Torso
  661. b1Weld.Part0 = char.Torso
  662. b1Weld.Part1 = Cross1
  663. b1Weld.Name = "TorsoWeld1"
  664. b1Weld.C0 = CFrame.new(0, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  665. Cross1Mesh = Instance.new("SpecialMesh")
  666. Cross1Mesh.MeshType = "Brick"
  667. Cross1Mesh.Parent = Cross1
  668. Cross1Mesh.Scale = Vector3.new(2.5, 0.35, 0.35)
  669.  
  670. local Cross2 = Instance.new("Part")
  671. Cross2.Parent = Shetta
  672. Cross2.Name = "Cross2"
  673. Cross2.CanCollide = false
  674. Cross2.Locked = true
  675. Cross2.TopSurface = "Smooth"
  676. Cross2.BottomSurface = "Smooth"
  677. Cross2.formFactor = "Symmetric"
  678. Cross2.BrickColor = BrickColor.new("Olive")
  679. Cross2.CFrame = char.Torso.CFrame
  680. Cross2.Transparency = 0
  681. Cross2.Reflectance = 0.25
  682. Cross2.Size = Vector3.new(1, 1, 1)
  683. b1Weld = Instance.new("Weld")
  684. b1Weld.Parent = char.Torso
  685. b1Weld.Part0 = char.Torso
  686. b1Weld.Part1 = Cross2
  687. b1Weld.Name = "TorsoWeld1"
  688. b1Weld.C0 = CFrame.new(0, 0, 0.75) * CFrame.Angles(0, 0, 0)
  689. Cross2Mesh = Instance.new("SpecialMesh")
  690. Cross2Mesh.MeshType = "Brick"
  691. Cross2Mesh.Parent = Cross2
  692. Cross2Mesh.Scale = Vector3.new(0.25, 1, 0.35)
  693.  
  694. local Blade = Instance.new("Part")
  695. Blade.Parent = Shetta
  696. Blade.Name = "Blade"
  697. Blade.CanCollide = false
  698. Blade.Locked = true
  699. Blade.TopSurface = "Smooth"
  700. Blade.BottomSurface = "Smooth"
  701. Blade.formFactor = "Symmetric"
  702. Blade.BrickColor = BrickColor.new("Really black")
  703. Blade.CFrame = char.Torso.CFrame
  704. Blade.Transparency = 0
  705. Blade.Reflectance = 0
  706. Blade.Size = Vector3.new(1, 9, 1)
  707. b1Weld = Instance.new("Weld")
  708. b1Weld.Parent = char.Torso
  709. b1Weld.Part0 = char.Torso
  710. b1Weld.Part1 = Blade
  711. b1Weld.Name = "TorsoWeld1"
  712. b1Weld.C0 = CFrame.new(0, -1.5, 0.75) * CFrame.Angles(3.14, 1.57, 0)
  713. BladeMesh = Instance.new("SpecialMesh")
  714. BladeMesh.MeshType = "FileMesh"
  715. BladeMesh.MeshId = "http://www.roblox.com/asset/?id=96630166"
  716. BladeMesh.Parent = Blade
  717. BladeMesh.Scale = Vector3.new(1, 0.75, 0.35)
  718.  
  719. local Gem2 = Instance.new("Part")
  720. Gem2.Parent = Shetta
  721. Gem2.Name = "Gem2"
  722. Gem2.CanCollide = false
  723. Gem2.Locked = true
  724. Gem2.TopSurface = "Smooth"
  725. Gem2.BottomSurface = "Smooth"
  726. Gem2.formFactor = "Symmetric"
  727. Gem2.BrickColor = BrickColor.new("Navy blue")
  728. Gem2.CFrame = char.Torso.CFrame
  729. Gem2.Transparency = 0.25
  730. Gem2.Reflectance = 0.25
  731. Gem2.Size = Vector3.new(1, 1, 1)
  732. b1Weld = Instance.new("Weld")
  733. b1Weld.Parent = char.Torso
  734. b1Weld.Part0 = char.Torso
  735. b1Weld.Part1 = Gem2
  736. b1Weld.Name = "TorsoWeld1"
  737. b1Weld.C0 = CFrame.new(0, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  738. Gem2Mesh = Instance.new("SpecialMesh")
  739. Gem2Mesh.MeshType = "Sphere"
  740. Gem2Mesh.Parent = Gem2
  741. Gem2Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  742.  
  743. local Gem3 = Instance.new("Part")
  744. Gem3.Parent = Shetta
  745. Gem3.Name = "Gem3"
  746. Gem3.CanCollide = false
  747. Gem3.Locked = true
  748. Gem3.TopSurface = "Smooth"
  749. Gem3.BottomSurface = "Smooth"
  750. Gem3.formFactor = "Symmetric"
  751. Gem3.BrickColor = BrickColor.new("Navy blue")
  752. Gem3.CFrame = char.Torso.CFrame
  753. Gem3.Transparency = 0.25
  754. Gem3.Reflectance = 0.25
  755. Gem3.Size = Vector3.new(1, 1, 1)
  756. b1Weld = Instance.new("Weld")
  757. b1Weld.Parent = char.Torso
  758. b1Weld.Part0 = char.Torso
  759. b1Weld.Part1 = Gem3
  760. b1Weld.Name = "TorsoWeld1"
  761. b1Weld.C0 = CFrame.new(0, 0.15, 0.75) * CFrame.Angles(0, 0, 0)
  762. Gem3Mesh = Instance.new("SpecialMesh")
  763. Gem3Mesh.MeshType = "Sphere"
  764. Gem3Mesh.Parent = Gem3
  765. Gem3Mesh.Scale = Vector3.new(0.2, 0.2, 0.4)
  766.  
  767. local Gem4 = Instance.new("Part")
  768. Gem4.Parent = Shetta
  769. Gem4.Name = "Gem4"
  770. Gem4.CanCollide = false
  771. Gem4.Locked = true
  772. Gem4.TopSurface = "Smooth"
  773. Gem4.BottomSurface = "Smooth"
  774. Gem4.formFactor = "Symmetric"
  775. Gem4.BrickColor = BrickColor.new("Navy blue")
  776. Gem4.CFrame = char.Torso.CFrame
  777. Gem4.Transparency = 0.25
  778. Gem4.Reflectance = 0.25
  779. Gem4.Size = Vector3.new(1, 1, 1)
  780. b1Weld = Instance.new("Weld")
  781. b1Weld.Parent = char.Torso
  782. b1Weld.Part0 = char.Torso
  783. b1Weld.Part1 = Gem4
  784. b1Weld.Name = "TorsoWeld1"
  785. b1Weld.C0 = CFrame.new(1, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  786. Gem4Mesh = Instance.new("SpecialMesh")
  787. Gem4Mesh.MeshType = "Sphere"
  788. Gem4Mesh.Parent = Gem4
  789. Gem4Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  790.  
  791. local Gem5 = Instance.new("Part")
  792. Gem5.Parent = Shetta
  793. Gem5.Name = "Gem5"
  794. Gem5.CanCollide = false
  795. Gem5.Locked = true
  796. Gem5.TopSurface = "Smooth"
  797. Gem5.BottomSurface = "Smooth"
  798. Gem5.formFactor = "Symmetric"
  799. Gem5.BrickColor = BrickColor.new("Navy blue")
  800. Gem5.CFrame = char.Torso.CFrame
  801. Gem5.Transparency = 0.25
  802. Gem5.Reflectance = 0.25
  803. Gem5.Size = Vector3.new(1, 1, 1)
  804. b1Weld = Instance.new("Weld")
  805. b1Weld.Parent = char.Torso
  806. b1Weld.Part0 = char.Torso
  807. b1Weld.Part1 = Gem5
  808. b1Weld.Name = "TorsoWeld1"
  809. b1Weld.C0 = CFrame.new(-1, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  810. Gem5Mesh = Instance.new("SpecialMesh")
  811. Gem5Mesh.MeshType = "Sphere"
  812. Gem5Mesh.Parent = Gem5
  813. Gem5Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  814.  
  815. local Gem6 = Instance.new("Part")
  816. Gem6.Parent = Shetta
  817. Gem6.Name = "Gem6"
  818. Gem6.CanCollide = false
  819. Gem6.Locked = true
  820. Gem6.TopSurface = "Smooth"
  821. Gem6.BottomSurface = "Smooth"
  822. Gem6.formFactor = "Symmetric"
  823. Gem6.BrickColor = BrickColor.new("Lime green")
  824. Gem6.CFrame = char.Torso.CFrame
  825. Gem6.Transparency = 0.25
  826. Gem6.Reflectance = 0.25
  827. Gem6.Size = Vector3.new(1, 1, 1)
  828. b1Weld = Instance.new("Weld")
  829. b1Weld.Parent = char.Torso
  830. b1Weld.Part0 = char.Torso
  831. b1Weld.Part1 = Gem6
  832. b1Weld.Name = "TorsoWeld1"
  833. b1Weld.C0 = CFrame.new(-0.75, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  834. Gem6Mesh = Instance.new("SpecialMesh")
  835. Gem6Mesh.MeshType = "Sphere"
  836. Gem6Mesh.Parent = Gem6
  837. Gem6Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  838.  
  839. local Gem7 = Instance.new("Part")
  840. Gem7.Parent = Shetta
  841. Gem7.Name = "Gem7"
  842. Gem7.CanCollide = false
  843. Gem7.Locked = true
  844. Gem7.TopSurface = "Smooth"
  845. Gem7.BottomSurface = "Smooth"
  846. Gem7.formFactor = "Symmetric"
  847. Gem7.BrickColor = BrickColor.new("Lime green")
  848. Gem7.CFrame = char.Torso.CFrame
  849. Gem7.Transparency = 0.25
  850. Gem7.Reflectance = 0.25
  851. Gem7.Size = Vector3.new(1, 1, 1)
  852. b1Weld = Instance.new("Weld")
  853. b1Weld.Parent = char.Torso
  854. b1Weld.Part0 = char.Torso
  855. b1Weld.Part1 = Gem7
  856. b1Weld.Name = "TorsoWeld1"
  857. b1Weld.C0 = CFrame.new(0.75, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  858. Gem7Mesh = Instance.new("SpecialMesh")
  859. Gem7Mesh.MeshType = "Sphere"
  860. Gem7Mesh.Parent = Gem7
  861. Gem7Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  862.  
  863. local Gem8 = Instance.new("Part")
  864. Gem8.Parent = Shetta
  865. Gem8.Name = "Gem8"
  866. Gem8.CanCollide = false
  867. Gem8.Locked = true
  868. Gem8.TopSurface = "Smooth"
  869. Gem8.BottomSurface = "Smooth"
  870. Gem8.formFactor = "Symmetric"
  871. Gem8.BrickColor = BrickColor.new("Navy blue")
  872. Gem8.CFrame = char.Torso.CFrame
  873. Gem8.Transparency = 0.25
  874. Gem8.Reflectance = 0.25
  875. Gem8.Size = Vector3.new(1, 1, 1)
  876. b1Weld = Instance.new("Weld")
  877. b1Weld.Parent = char.Torso
  878. b1Weld.Part0 = char.Torso
  879. b1Weld.Part1 = Gem8
  880. b1Weld.Name = "TorsoWeld1"
  881. b1Weld.C0 = CFrame.new(0.25, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  882. Gem8Mesh = Instance.new("SpecialMesh")
  883. Gem8Mesh.MeshType = "Sphere"
  884. Gem8Mesh.Parent = Gem8
  885. Gem8Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  886.  
  887. local Gem9 = Instance.new("Part")
  888. Gem9.Parent = Shetta
  889. Gem9.Name = "Gem9"
  890. Gem9.CanCollide = false
  891. Gem9.Locked = true
  892. Gem9.TopSurface = "Smooth"
  893. Gem9.BottomSurface = "Smooth"
  894. Gem9.formFactor = "Symmetric"
  895. Gem9.BrickColor = BrickColor.new("Navy blue")
  896. Gem9.CFrame = char.Torso.CFrame
  897. Gem9.Transparency = 0.25
  898. Gem9.Reflectance = 0.25
  899. Gem9.Size = Vector3.new(1, 1, 1)
  900. b1Weld = Instance.new("Weld")
  901. b1Weld.Parent = char.Torso
  902. b1Weld.Part0 = char.Torso
  903. b1Weld.Part1 = Gem9
  904. b1Weld.Name = "TorsoWeld1"
  905. b1Weld.C0 = CFrame.new(-0.25, 0.3, 0.75) * CFrame.Angles(0, 0, 0)
  906. Gem9Mesh = Instance.new("SpecialMesh")
  907. Gem9Mesh.MeshType = "Sphere"
  908. Gem9Mesh.Parent = Gem9
  909. Gem9Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  910. end
  911.  
  912. function DrawSword()
  913. Drawn = Instance.new("Model")
  914. Drawn.Parent = char
  915. Drawn.Name = "Drawn"
  916. ---------------------------------------Handle---------------------------------------
  917. local Gem1 = Instance.new("Part")
  918. Gem1.Parent = Drawn
  919. Gem1.Name = "Gem1"
  920. Gem1.CanCollide = false
  921. Gem1.Locked = true
  922. Gem1.TopSurface = "Smooth"
  923. Gem1.BottomSurface = "Smooth"
  924. Gem1.formFactor = "Symmetric"
  925. Gem1.BrickColor = BrickColor.new("Cyan")
  926. Gem1.CFrame = char["Right Arm"].CFrame
  927. Gem1.Transparency = 0.25
  928. Gem1.Reflectance = 0.25
  929. Gem1.Size = Vector3.new(1, 1, 1)
  930. b1Weld = Instance.new("Weld")
  931. b1Weld.Parent = char["Right Arm"]
  932. b1Weld.Part0 = char["Right Arm"]
  933. b1Weld.Part1 = Gem1
  934. b1Weld.Name = "TorsoWeld1"
  935. b1Weld.C0 = CFrame.new(0, -1, 0.75) * CFrame.Angles(0, 0, 0)
  936. Gem1Mesh = Instance.new("SpecialMesh")
  937. Gem1Mesh.MeshType = "Sphere"
  938. Gem1Mesh.Parent = Gem1
  939. Gem1Mesh.Scale = Vector3.new(0.5, 0.5, 0.5)
  940.  
  941. local Handle = Instance.new("Part")
  942. Handle.Parent = Drawn
  943. Handle.Name = "Handle"
  944. Handle.CanCollide = false
  945. Handle.Locked = true
  946. Handle.TopSurface = "Smooth"
  947. Handle.BottomSurface = "Smooth"
  948. Handle.formFactor = "Symmetric"
  949. Handle.BrickColor = BrickColor.new("White")
  950. Handle.CFrame = char["Right Arm"].CFrame
  951. Handle.Transparency = 0
  952. Handle.Reflectance = 0.1
  953. Handle.Size = Vector3.new(1, 1, 1)
  954. b1Weld = Instance.new("Weld")
  955. b1Weld.Parent = char["Right Arm"]
  956. b1Weld.Part0 = char["Right Arm"]
  957. b1Weld.Part1 = Handle
  958. b1Weld.Name = "TorsoWeld1"
  959. b1Weld.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(1.57, 0, 0)
  960. HandleMesh = Instance.new("CylinderMesh")
  961. HandleMesh.Parent = Handle
  962. HandleMesh.Scale = Vector3.new(0.25, 1, 0.25)
  963.  
  964.  
  965. local Gold1 = Instance.new("Part")
  966. Gold1.Parent = Drawn
  967. Gold1.Name = "Gold1"
  968. Gold1.CanCollide = false
  969. Gold1.Locked = true
  970. Gold1.TopSurface = "Smooth"
  971. Gold1.BottomSurface = "Smooth"
  972. Gold1.formFactor = "Symmetric"
  973. Gold1.BrickColor = BrickColor.new("Olive")
  974. Gold1.CFrame = char["Right Arm"].CFrame
  975. Gold1.Transparency = 0
  976. Gold1.Reflectance = 0.25
  977. Gold1.Size = Vector3.new(1, 1, 1)
  978. b1Weld = Instance.new("Weld")
  979. b1Weld.Parent = char["Right Arm"]
  980. b1Weld.Part0 = char["Right Arm"]
  981. b1Weld.Part1 = Gold1
  982. b1Weld.Name = "TorsoWeld1"
  983. b1Weld.C0 = CFrame.new(0, -1, 0.5) * CFrame.Angles(1.57, 0, 0)
  984. Gold1Mesh = Instance.new("CylinderMesh")
  985. Gold1Mesh.Parent = Gold1
  986. Gold1Mesh.Scale = Vector3.new(0.35, 0.15, 0.35)
  987.  
  988. local Gold2 = Instance.new("Part")
  989. Gold2.Parent = Drawn
  990. Gold2.Name = "Gold2"
  991. Gold2.CanCollide = false
  992. Gold2.Locked = true
  993. Gold2.TopSurface = "Smooth"
  994. Gold2.BottomSurface = "Smooth"
  995. Gold2.formFactor = "Symmetric"
  996. Gold2.BrickColor = BrickColor.new("Olive")
  997. Gold2.CFrame = char["Right Arm"].CFrame
  998. Gold2.Transparency = 0
  999. Gold2.Reflectance = 0.25
  1000. Gold2.Size = Vector3.new(1, 1, 1)
  1001. b1Weld = Instance.new("Weld")
  1002. b1Weld.Parent = char["Right Arm"]
  1003. b1Weld.Part0 = char["Right Arm"]
  1004. b1Weld.Part1 = Gold2
  1005. b1Weld.Name = "TorsoWeld1"
  1006. b1Weld.C0 = CFrame.new(0, -1, -0.575) * CFrame.Angles(1.57, 0, 0)
  1007. Gold2Mesh = Instance.new("CylinderMesh")
  1008. Gold2Mesh.Parent = Gold2
  1009. Gold2Mesh.Scale = Vector3.new(0.35, 0.15, 0.35)
  1010.  
  1011. local Cross1 = Instance.new("Part")
  1012. Cross1.Parent = Drawn
  1013. Cross1.Name = "Cross1"
  1014. Cross1.CanCollide = false
  1015. Cross1.Locked = true
  1016. Cross1.TopSurface = "Smooth"
  1017. Cross1.BottomSurface = "Smooth"
  1018. Cross1.formFactor = "Symmetric"
  1019. Cross1.BrickColor = BrickColor.new("Olive")
  1020. Cross1.CFrame = char["Right Arm"].CFrame
  1021. Cross1.Transparency = 0
  1022. Cross1.Reflectance = 0.25
  1023. Cross1.Size = Vector3.new(1, 1, 1)
  1024. b1Weld = Instance.new("Weld")
  1025. b1Weld.Parent = char["Right Arm"]
  1026. b1Weld.Part0 = char["Right Arm"]
  1027. b1Weld.Part1 = Cross1
  1028. b1Weld.Name = "TorsoWeld1"
  1029. b1Weld.C0 = CFrame.new(0, -1, -0.75) * CFrame.Angles(1.57, -1.57, 0)
  1030. Cross1Mesh = Instance.new("SpecialMesh")
  1031. Cross1Mesh.MeshType = "Brick"
  1032. Cross1Mesh.Parent = Cross1
  1033. Cross1Mesh.Scale = Vector3.new(2.5, 0.35, 0.35)
  1034.  
  1035. local Cross2 = Instance.new("Part")
  1036. Cross2.Parent = Drawn
  1037. Cross2.Name = "Cross2"
  1038. Cross2.CanCollide = false
  1039. Cross2.Locked = true
  1040. Cross2.TopSurface = "Smooth"
  1041. Cross2.BottomSurface = "Smooth"
  1042. Cross2.formFactor = "Symmetric"
  1043. Cross2.BrickColor = BrickColor.new("Olive")
  1044. Cross2.CFrame = char["Right Arm"].CFrame
  1045. Cross2.Transparency = 0
  1046. Cross2.Reflectance = 0.25
  1047. Cross2.Size = Vector3.new(1, 1, 1)
  1048. b1Weld = Instance.new("Weld")
  1049. b1Weld.Parent = char["Right Arm"]
  1050. b1Weld.Part0 = char["Right Arm"]
  1051. b1Weld.Part1 = Cross2
  1052. b1Weld.Name = "TorsoWeld1"
  1053. b1Weld.C0 = CFrame.new(0, -1, -1.25) * CFrame.Angles(1.57, -1.57, 0)
  1054. Cross2Mesh = Instance.new("SpecialMesh")
  1055. Cross2Mesh.MeshType = "Brick"
  1056. Cross2Mesh.Parent = Cross2
  1057. Cross2Mesh.Scale = Vector3.new(0.25, 1, 0.35)
  1058.  
  1059. local Blade = Instance.new("Part")
  1060. Blade.Parent = Drawn
  1061. Blade.Name = "Blade"
  1062. Blade.CanCollide = false
  1063. Blade.Locked = true
  1064. Blade.TopSurface = "Smooth"
  1065. Blade.BottomSurface = "Smooth"
  1066. Blade.formFactor = "Symmetric"
  1067. Blade.BrickColor = BrickColor.new("Really black")
  1068. Blade.CFrame = char["Right Arm"].CFrame
  1069. Blade.Transparency = 0
  1070. Blade.Reflectance = 0
  1071. Blade.Size = Vector3.new(1, 9, 1)
  1072. b1Weld = Instance.new("Weld")
  1073. b1Weld.Parent = char["Right Arm"]
  1074. b1Weld.Part0 = char["Right Arm"]
  1075. b1Weld.Part1 = Blade
  1076. b1Weld.Name = "TorsoWeld1"
  1077. b1Weld.C0 = CFrame.new(0, -1, -2.5) * CFrame.Angles(-1.57, 0, 0)
  1078. BladeMesh = Instance.new("SpecialMesh")
  1079. BladeMesh.MeshType = "FileMesh"
  1080. BladeMesh.MeshId = "http://www.roblox.com/asset/?id=96630166"
  1081. BladeMesh.Parent = Blade
  1082. BladeMesh.Scale = Vector3.new(1, 0.75, 0.35)
  1083.  
  1084. local Gem2 = Instance.new("Part")
  1085. Gem2.Parent = Drawn
  1086. Gem2.Name = "Gem2"
  1087. Gem2.CanCollide = false
  1088. Gem2.Locked = true
  1089. Gem2.TopSurface = "Smooth"
  1090. Gem2.BottomSurface = "Smooth"
  1091. Gem2.formFactor = "Symmetric"
  1092. Gem2.BrickColor = BrickColor.new("Navy blue")
  1093. Gem2.CFrame = char["Right Arm"].CFrame
  1094. Gem2.Transparency = 0.25
  1095. Gem2.Reflectance = 0.25
  1096. Gem2.Size = Vector3.new(1, 1, 1)
  1097. b1Weld = Instance.new("Weld")
  1098. b1Weld.Parent = char["Right Arm"]
  1099. b1Weld.Part0 = char["Right Arm"]
  1100. b1Weld.Part1 = Gem2
  1101. b1Weld.Name = "TorsoWeld1"
  1102. b1Weld.C0 = CFrame.new(0, -1, -0.75) * CFrame.Angles(0, 1.57, 0)
  1103. Gem2Mesh = Instance.new("SpecialMesh")
  1104. Gem2Mesh.MeshType = "Sphere"
  1105. Gem2Mesh.Parent = Gem2
  1106. Gem2Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  1107.  
  1108. local Gem3 = Instance.new("Part")
  1109. Gem3.Parent = Drawn
  1110. Gem3.Name = "Gem3"
  1111. Gem3.CanCollide = false
  1112. Gem3.Locked = true
  1113. Gem3.TopSurface = "Smooth"
  1114. Gem3.BottomSurface = "Smooth"
  1115. Gem3.formFactor = "Symmetric"
  1116. Gem3.BrickColor = BrickColor.new("Navy blue")
  1117. Gem3.CFrame = char["Right Arm"].CFrame
  1118. Gem3.Transparency = 0.25
  1119. Gem3.Reflectance = 0.25
  1120. Gem3.Size = Vector3.new(1, 1, 1)
  1121. b1Weld = Instance.new("Weld")
  1122. b1Weld.Parent = char["Right Arm"]
  1123. b1Weld.Part0 = char["Right Arm"]
  1124. b1Weld.Part1 = Gem3
  1125. b1Weld.Name = "TorsoWeld1"
  1126. b1Weld.C0 = CFrame.new(0, -1, -1) * CFrame.Angles(0, 1.57, 0)
  1127. Gem3Mesh = Instance.new("SpecialMesh")
  1128. Gem3Mesh.MeshType = "Sphere"
  1129. Gem3Mesh.Parent = Gem3
  1130. Gem3Mesh.Scale = Vector3.new(0.2, 0.2, 0.4)
  1131.  
  1132. local Gem4 = Instance.new("Part")
  1133. Gem4.Parent = Drawn
  1134. Gem4.Name = "Gem4"
  1135. Gem4.CanCollide = false
  1136. Gem4.Locked = true
  1137. Gem4.TopSurface = "Smooth"
  1138. Gem4.BottomSurface = "Smooth"
  1139. Gem4.formFactor = "Symmetric"
  1140. Gem4.BrickColor = BrickColor.new("Navy blue")
  1141. Gem4.CFrame = char["Right Arm"].CFrame
  1142. Gem4.Transparency = 0.25
  1143. Gem4.Reflectance = 0.25
  1144. Gem4.Size = Vector3.new(1, 1, 1)
  1145. b1Weld = Instance.new("Weld")
  1146. b1Weld.Parent = char["Right Arm"]
  1147. b1Weld.Part0 = char["Right Arm"]
  1148. b1Weld.Part1 = Gem4
  1149. b1Weld.Name = "TorsoWeld1"
  1150. b1Weld.C0 = CFrame.new(0, 0, -0.75) * CFrame.Angles(0, 1.57, 0)
  1151. Gem4Mesh = Instance.new("SpecialMesh")
  1152. Gem4Mesh.MeshType = "Sphere"
  1153. Gem4Mesh.Parent = Gem4
  1154. Gem4Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  1155.  
  1156. local Gem5 = Instance.new("Part")
  1157. Gem5.Parent = Drawn
  1158. Gem5.Name = "Gem5"
  1159. Gem5.CanCollide = false
  1160. Gem5.Locked = true
  1161. Gem5.TopSurface = "Smooth"
  1162. Gem5.BottomSurface = "Smooth"
  1163. Gem5.formFactor = "Symmetric"
  1164. Gem5.BrickColor = BrickColor.new("Navy blue")
  1165. Gem5.CFrame = char["Right Arm"].CFrame
  1166. Gem5.Transparency = 0.25
  1167. Gem5.Reflectance = 0.25
  1168. Gem5.Size = Vector3.new(1, 1, 1)
  1169. b1Weld = Instance.new("Weld")
  1170. b1Weld.Parent = char["Right Arm"]
  1171. b1Weld.Part0 = char["Right Arm"]
  1172. b1Weld.Part1 = Gem5
  1173. b1Weld.Name = "TorsoWeld1"
  1174. b1Weld.C0 = CFrame.new(0, -2, -0.75) * CFrame.Angles(0, 1.57, 0)
  1175. Gem5Mesh = Instance.new("SpecialMesh")
  1176. Gem5Mesh.MeshType = "Sphere"
  1177. Gem5Mesh.Parent = Gem5
  1178. Gem5Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  1179.  
  1180. local Gem6 = Instance.new("Part")
  1181. Gem6.Parent = Drawn
  1182. Gem6.Name = "Gem6"
  1183. Gem6.CanCollide = false
  1184. Gem6.Locked = true
  1185. Gem6.TopSurface = "Smooth"
  1186. Gem6.BottomSurface = "Smooth"
  1187. Gem6.formFactor = "Symmetric"
  1188. Gem6.BrickColor = BrickColor.new("Lime green")
  1189. Gem6.CFrame = char["Right Arm"].CFrame
  1190. Gem6.Transparency = 0.25
  1191. Gem6.Reflectance = 0.25
  1192. Gem6.Size = Vector3.new(1, 1, 1)
  1193. b1Weld = Instance.new("Weld")
  1194. b1Weld.Parent = char["Right Arm"]
  1195. b1Weld.Part0 = char["Right Arm"]
  1196. b1Weld.Part1 = Gem6
  1197. b1Weld.Name = "TorsoWeld1"
  1198. b1Weld.C0 = CFrame.new(0, -1.75, -0.75) * CFrame.Angles(0, 1.57, 0)
  1199. Gem6Mesh = Instance.new("SpecialMesh")
  1200. Gem6Mesh.MeshType = "Sphere"
  1201. Gem6Mesh.Parent = Gem6
  1202. Gem6Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  1203.  
  1204. local Gem7 = Instance.new("Part")
  1205. Gem7.Parent = Drawn
  1206. Gem7.Name = "Gem7"
  1207. Gem7.CanCollide = false
  1208. Gem7.Locked = true
  1209. Gem7.TopSurface = "Smooth"
  1210. Gem7.BottomSurface = "Smooth"
  1211. Gem7.formFactor = "Symmetric"
  1212. Gem7.BrickColor = BrickColor.new("Lime green")
  1213. Gem7.CFrame = char["Right Arm"].CFrame
  1214. Gem7.Transparency = 0.25
  1215. Gem7.Reflectance = 0.25
  1216. Gem7.Size = Vector3.new(1, 1, 1)
  1217. b1Weld = Instance.new("Weld")
  1218. b1Weld.Parent = char["Right Arm"]
  1219. b1Weld.Part0 = char["Right Arm"]
  1220. b1Weld.Part1 = Gem7
  1221. b1Weld.Name = "TorsoWeld1"
  1222. b1Weld.C0 = CFrame.new(0, -0.25, -0.75) * CFrame.Angles(0, 1.57, 0)
  1223. Gem7Mesh = Instance.new("SpecialMesh")
  1224. Gem7Mesh.MeshType = "Sphere"
  1225. Gem7Mesh.Parent = Gem7
  1226. Gem7Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  1227.  
  1228. local Gem8 = Instance.new("Part")
  1229. Gem8.Parent = Drawn
  1230. Gem8.Name = "Gem8"
  1231. Gem8.CanCollide = false
  1232. Gem8.Locked = true
  1233. Gem8.TopSurface = "Smooth"
  1234. Gem8.BottomSurface = "Smooth"
  1235. Gem8.formFactor = "Symmetric"
  1236. Gem8.BrickColor = BrickColor.new("Navy blue")
  1237. Gem8.CFrame = char["Right Arm"].CFrame
  1238. Gem8.Transparency = 0.25
  1239. Gem8.Reflectance = 0.25
  1240. Gem8.Size = Vector3.new(1, 1, 1)
  1241. b1Weld = Instance.new("Weld")
  1242. b1Weld.Parent = char["Right Arm"]
  1243. b1Weld.Part0 = char["Right Arm"]
  1244. b1Weld.Part1 = Gem8
  1245. b1Weld.Name = "TorsoWeld1"
  1246. b1Weld.C0 = CFrame.new(0, -1.25, -0.75) * CFrame.Angles(0, 1.57, 0)
  1247. Gem8Mesh = Instance.new("SpecialMesh")
  1248. Gem8Mesh.MeshType = "Sphere"
  1249. Gem8Mesh.Parent = Gem8
  1250. Gem8Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  1251.  
  1252. local Gem9 = Instance.new("Part")
  1253. Gem9.Parent = Drawn
  1254. Gem9.Name = "Gem9"
  1255. Gem9.CanCollide = false
  1256. Gem9.Locked = true
  1257. Gem9.TopSurface = "Smooth"
  1258. Gem9.BottomSurface = "Smooth"
  1259. Gem9.formFactor = "Symmetric"
  1260. Gem9.BrickColor = BrickColor.new("Navy blue")
  1261. Gem9.CFrame = char["Right Arm"].CFrame
  1262. Gem9.Transparency = 0.25
  1263. Gem9.Reflectance = 0.25
  1264. Gem9.Size = Vector3.new(1, 1, 1)
  1265. b1Weld = Instance.new("Weld")
  1266. b1Weld.Parent = char["Right Arm"]
  1267. b1Weld.Part0 = char["Right Arm"]
  1268. b1Weld.Part1 = Gem9
  1269. b1Weld.Name = "TorsoWeld1"
  1270. b1Weld.C0 = CFrame.new(0, -0.75, -0.75) * CFrame.Angles(0, 1.57, 0)
  1271. Gem9Mesh = Instance.new("SpecialMesh")
  1272. Gem9Mesh.MeshType = "Sphere"
  1273. Gem9Mesh.Parent = Gem9
  1274. Gem9Mesh.Scale = Vector3.new(0.3, 0.3, 0.4)
  1275. end
  1276. neckC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1277. neckC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1278. LShoulderC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1279. LShoulderC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1280. RShoulderC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1281. RShoulderC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1282. LHipC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1283. LHipC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1284. RHipC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1285. RHipC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1286.  
  1287. function NilLimbs()
  1288. neck.C0 = neckC0
  1289. neck.C1 = neckC1
  1290. RShoulder.C0 = RShoulderC0
  1291. RShoulder.C1 = RShoulderC1
  1292. LShoulder.C0 = LShoulderC0
  1293. LShoulder.C1 = LShoulderC1
  1294. RHip.C0 = RHipC0
  1295. RHip.C1 = RHipC1
  1296. LHip.C0 = LHipC0
  1297. LHip.C1 = LHipC1
  1298. end
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304. function select(mouse)
  1305. for i = 1, 10 do
  1306. neck.C0 = neckC0 * CFrame.Angles(0, 0, 0-(0.037*i))
  1307. RShoulder.C0 = RShoulderC0 * CFrame.Angles(0, (0-(i*0.1)), (0+(i*0.314)))
  1308. wait()
  1309. end
  1310. continue = RShoulder.C0
  1311. continue1 = neck.C0
  1312. if char:findFirstChild("Shetta") ~= nil then
  1313. char.Shetta:Remove()
  1314. end
  1315. DrawSword()
  1316. for i = 1, 10 do
  1317. neck.C0 = continue1 * CFrame.Angles(0, 0, 0+(0.037*i))
  1318. RShoulder.C0 = continue * CFrame.Angles(0, (0-(i*0.1)), (0+(i*0.314)))
  1319. wait()
  1320. end
  1321.  
  1322. wait(1)
  1323. NilLimbs()
  1324. mouse.Button1Down:connect(function()
  1325. if not Busy then
  1326. AIM = true
  1327. Busy = true
  1328. char.Drawn.Blade.Touched:connect(function(hit)
  1329. Slash(hit)
  1330. end)
  1331. omg = math.random(1, 3)
  1332. if omg == 1 then
  1333. slash = Instance.new("Animation")
  1334. slash.Parent = script.Parent
  1335. slash.AnimationId = "http://www.roblox.com/Asset?ID=74897796"
  1336. slash.Name = "PowerSlash"
  1337. game.Debris:AddItem(slash, 6)
  1338. slash = hum:LoadAnimation(slash)
  1339. wait()
  1340. slash:Play()
  1341. wait(0.45)
  1342. slash:Stop()
  1343. slash:Remove()
  1344. end
  1345. if omg == 2 then
  1346. slash = Instance.new("Animation")
  1347. slash.Parent = script.Parent
  1348. slash.AnimationId = "http://www.roblox.com/Asset?ID=74909537"
  1349. slash.Name = "PowerSlash"
  1350. game.Debris:AddItem(slash, 6)
  1351. slash = hum:LoadAnimation(slash)
  1352. wait()
  1353. slash:Play()
  1354. wait(0.45)
  1355. slash:Stop()
  1356. slash:Remove()
  1357. end
  1358. if omg == 3 then
  1359. slash = Instance.new("Animation")
  1360. slash.Parent = script.Parent
  1361. slash.AnimationId = "http://www.roblox.com/Asset?ID=74909551"
  1362. slash.Name = "PowerSlash"
  1363. game.Debris:AddItem(slash, 6)
  1364. slash = hum:LoadAnimation(slash)
  1365. wait()
  1366. slash:Play()
  1367. wait(0.45)
  1368. slash:Stop()
  1369. slash:Remove()
  1370. end
  1371. for i = 1, 5 do
  1372. NilLimbs()
  1373. wait()
  1374. end
  1375. AIM = false
  1376. Busy = false
  1377. end
  1378. end)
  1379. mouse.Button2Down:connect(function()
  1380. if not Busy then
  1381. Busy = true
  1382. save = hum.Health
  1383. ws = hum.WalkSpeed
  1384. wait()
  1385. RShoulder.C0 = RShoulderC0 * CFrame.new(0.25, 0.5, -0.25) * CFrame.Angles(0, -0.25, 3.5)
  1386. RHip.C0 = RHipC0 * CFrame.Angles(-0.5, 0, 0)
  1387. LHip.C0 = LHipC0 * CFrame.Angles(-0.5, 0, 0)
  1388. LShoulder.C0 = LShoulderC0 * CFrame.new(0.25, 0.5, -0.65) * CFrame.Angles(0, 1, -3.5)
  1389. wait(0.1)
  1390. torso.Anchored = true
  1391.  
  1392. for i = 1, 10 do
  1393. for i, v in pairs(workspace:GetChildren()) do
  1394. if v.Name ~= char.Name then
  1395. ztorso = v:findFirstChild("Torso")
  1396. zHumanoid = v:findFirstChild("Humanoid")
  1397. if ztorso ~= nil and zHumanoid ~= nil then
  1398. if (torso.Position-ztorso.Position).magnitude <= 15 then
  1399. if hum.Health < save and hum.Health > 0 then
  1400. slash = Instance.new("Animation")
  1401. slash.Parent = script.Parent
  1402. slash.AnimationId = "http://www.roblox.com/Asset?ID=74897796"
  1403. slash.Name = "PowerSlash"
  1404. game.Debris:AddItem(slash, 6)
  1405. slash = hum:LoadAnimation(slash)
  1406. wait()
  1407. slash:Play()
  1408. wait(0.45)
  1409. slash:Stop()
  1410. slash:Remove()
  1411. zHumanoid.Health = zHumanoid.Health - 15
  1412.  
  1413. ztorso.Velocity = torso.CFrame.lookVector * -200
  1414. for i = 1, 5 do
  1415. hum.Health = save
  1416. wait()
  1417. end
  1418. end
  1419. end
  1420. end
  1421. end
  1422. end
  1423. wait()
  1424. end
  1425. NilLimbs()
  1426. torso.Anchored = false
  1427. wait(2)
  1428. Busy = false
  1429. end
  1430. end)
  1431. mouse.KeyDown:connect(function(key)
  1432. key = key:lower()
  1433. if not Busy then
  1434. if key == "q" and Busy == false and Energy >= 15 then
  1435. Busy = true
  1436. local pos = mouse.Hit.p
  1437. pos1 = torso.Position
  1438. Energy = Energy - 50
  1439. torso.CFrame = CFrame.new(torso.Position, pos)
  1440. torso.Anchored = true
  1441. torso.CFrame = CFrame.new(torso.Position, pos)
  1442. savecf = torso.CFrame
  1443. slash = Instance.new("Animation")
  1444. slash.Parent = script.Parent
  1445. slash.AnimationId = "http://www.roblox.com/Asset?ID=74897796"
  1446. slash.Name = "PowerSlash"
  1447. game.Debris:AddItem(slash, 6)
  1448. slash = hum:LoadAnimation(slash)
  1449. wait()
  1450. slash:Play()
  1451. wait(0.45)
  1452. slash:Stop()
  1453. slash:Remove()
  1454. x = Instance.new("Part")
  1455. x.BrickColor = BrickColor.new("Lime green")
  1456. x.Transparency = 0.25
  1457. x.Size = Vector3.new(20, 5, 5)
  1458. x.TopSurface = "Smooth"
  1459. x.BottomSurface = "Smooth"
  1460. x.Shape = "Block"
  1461. x.Name = me.Name
  1462. x.CanCollide = false
  1463. y = Instance.new("BodyVelocity")
  1464. y.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1465. x.Parent = Workspace
  1466. y.Parent = x
  1467. x.CFrame = savecf*CFrame.new(0,0, -5) * CFrame.Angles(-1.57, 1.57, 0)
  1468. y.velocity = savecf.lookVector*100 + Vector3.new(0, 0, 0)
  1469. m = Instance.new("SpecialMesh")
  1470. m.MeshType = "FileMesh"
  1471. m.MeshId = "http://www.roblox.com/asset/?id=13425802"
  1472. m.Scale = Vector3.new(10, 5, 5)
  1473. m.Parent = x
  1474. game.Debris:AddItem(x, 5)
  1475. x.Touched:connect(function(shiz)
  1476.  
  1477. if shiz.Parent ~= nil then
  1478.  
  1479. if shiz.Parent.Name ~= char.Name then
  1480.  
  1481. if shiz.Parent:FindFirstChild("Humanoid") ~= nil then
  1482.  
  1483. if shiz.Parent:findFirstChild("Humanoid") ~= nil then
  1484. shiz.Parent.Humanoid.Health = shiz.Parent.Humanoid.Health - 15
  1485. shiz.Parent.Torso.Velocity = torso.CFrame.lookVector * 80 + Vector3.new(0, 25, 0)
  1486. x.Touched:Remove()
  1487. end
  1488.  
  1489. end
  1490.  
  1491. end
  1492.  
  1493. end
  1494.  
  1495. end)
  1496. torso.CFrame = CFrame.new(torso.Position, pos)
  1497. torso.Anchored = false
  1498. for i = 1, 30 do
  1499. for u, c in pairs(workspace:GetChildren()) do
  1500. if c.Name ~= char.Name then
  1501. h = c:findFirstChild("Humanoid")
  1502. t = c:findFirstChild("Torso")
  1503. if h ~= nil and t ~= nil then
  1504. if (x.Position-t.Position).magnitude <= 20 then
  1505. t.Velocity = t.CFrame.lookVector * -50 + Vector3.new(0, 50, 0)
  1506. t.CFrame = t.CFrame * CFrame.Angles(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  1507. h:TakeDamage(100)
  1508. end
  1509. end
  1510. end
  1511. end
  1512. wait()
  1513. end
  1514. wait(2)
  1515. x:Remove()
  1516. Busy = false
  1517. end
  1518. if key == "e" and Busy == false and Energy >= 50 then
  1519. Energy = Energy - 25
  1520. Busy = true
  1521. local pos = mouse.Hit.p
  1522. pos1 = torso.Position
  1523. RShoulder.C0 = RShoulderC0 * CFrame.new(0, -0.1, -0.65) * CFrame.Angles(0, 1, 1)
  1524. LShoulder.C0 = LShoulderC0 * CFrame.new(0, -0.1, -0.25) * CFrame.Angles(0, -0.25, -1)
  1525. torso.CFrame = CFrame.new(torso.Position, pos)
  1526. wait(1.5)
  1527. torso.CFrame = CFrame.new(torso.Position, pos)
  1528. for i = 1, 12 do
  1529. torso.CFrame = CFrame.new(torso.Position, pos)
  1530. torso.CFrame = torso.CFrame * CFrame.new(0, 0, -8)
  1531. wait(0.01)
  1532. end
  1533. wait(0.25)
  1534. SavedTorsoCFrame = torso.CFrame
  1535. for i = 1, 50 do
  1536. ShockWave1 = Instance.new("Part")
  1537. ShockWave1.Parent = Workspace
  1538. ShockWave1.Size = Vector3.new(math.random(10, 10), math.random(10, 10), math.random(10, 10))
  1539. ShockWave1.formFactor = "Symmetric"
  1540. ShockWave1.Anchored = true
  1541. ShockWave1.CanCollide = false
  1542. ShockWave1.Transparency = 1
  1543. ShockWave1.TopSurface = "Smooth"
  1544. ShockWave1.BottomSurface = "Smooth"
  1545. ShockWave1.BrickColor = BrickColor.new("Bright yellow")
  1546. ShockWave1.Name = "ShockWavePart"
  1547. game.Debris:AddItem(ShockWave1, 0.5)
  1548. ShockWave1.CFrame = SavedTorsoCFrame * CFrame.new(0, 3, (i*10)) * CFrame.Angles(0, 0, 0)
  1549. for u, c in pairs(workspace:GetChildren()) do
  1550. if c.Name ~= char.Name then
  1551. h = c:findFirstChild("Humanoid")
  1552. t = c:findFirstChild("Torso")
  1553. if h ~= nil and t ~= nil then
  1554. if (ShockWave1.Position-t.Position).magnitude <= 15 then
  1555. t.Velocity = t.CFrame.lookVector * -50 + Vector3.new(0, 50, 0)
  1556. t.CFrame = t.CFrame * CFrame.Angles(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  1557. h:TakeDamage(200)
  1558. end
  1559. end
  1560. end
  1561. end
  1562. end
  1563. torso.CFrame = CFrame.new(torso.Position, pos)
  1564. wait(2)
  1565. NilLimbs()
  1566. Busy = false
  1567. end
  1568. if key == "r" and Busy == false and Energy >= 75 then
  1569.  
  1570. for i, v in pairs(workspace:GetChildren()) do
  1571. if v.Name ~= me.Name then
  1572. zTorso = v:findFirstChild("Torso")
  1573. zHead = v:findFirstChild("Head")
  1574. zHumanoid = v:findFirstChild("Humanoid")
  1575. if zTorso ~= nil and zHumanoid ~= nil then
  1576. if (torso.Position-zTorso.Position).magnitude <= 7.5 then
  1577. Busy = true
  1578. ocframe = torso.CFrame
  1579. Energy = Energy - 75
  1580. slash = Instance.new("Animation")
  1581. slash.Parent = script.Parent
  1582. slash.AnimationId = "http://www.roblox.com/asset/?id=66702758"
  1583. slash.Name = "PowerSlash"
  1584. game.Debris:AddItem(slash, 6)
  1585. slash = hum:LoadAnimation(slash)
  1586. wait()
  1587. slash:Play(0, 1, 3)
  1588. wait(0.45)
  1589. slash:Stop()
  1590. slash:Remove()
  1591. Gyro = Instance.new("BodyGyro")
  1592. Gyro.Parent = torso
  1593. Gyro.D = 50
  1594. Gyro.maxTorque = Vector3.new(0, 0, 0)
  1595. if char:findFirstChild("Humanoid") ~= nil then
  1596. char.Humanoid.Name = "Immortal"
  1597. end
  1598. for i = 1, 20 do
  1599. zTorso.Velocity = zTorso.CFrame.lookVector * 0 + Vector3.new(0, 75, 0)
  1600. wait()
  1601. end
  1602. l = Instance.new("BodyVelocity")
  1603. l.Parent = zTorso
  1604. l.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1605. x = Instance.new("BodyVelocity")
  1606. x.Parent = torso
  1607. x.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1608. game.Debris:AddItem(l, 6)
  1609. game.Debris:AddItem(x, 6)
  1610. torso.CFrame = zTorso.CFrame * CFrame.new(0, 0.75, -5) * CFrame.Angles(0, 3.14, 0)
  1611. hum.PlatformStand = true
  1612. for i = 1, 5 do
  1613. torso.CFrame = zTorso.CFrame * CFrame.new(0, 0.75, -5) * CFrame.Angles(0, 3.14, 0)
  1614. slash = Instance.new("Animation")
  1615. slash.Parent = script.Parent
  1616. slash.AnimationId = "http://www.roblox.com/Asset?ID=74909537"
  1617. slash.Name = "PowerSlash"
  1618. game.Debris:AddItem(slash, 6)
  1619. slash = hum:LoadAnimation(slash)
  1620. wait()
  1621. slash:Play()
  1622. wait(0.45)
  1623. slash:Stop()
  1624. slash:Remove()
  1625. NilLimbs()
  1626. torso.CFrame = zTorso.CFrame * CFrame.new(0, 0.75, -5) * CFrame.Angles(0, 3.14, 0)
  1627. slash = Instance.new("Animation")
  1628. slash.Parent = script.Parent
  1629. slash.AnimationId = "http://www.roblox.com/Asset?ID=74909551"
  1630. slash.Name = "PowerSlash"
  1631. game.Debris:AddItem(slash, 6)
  1632. slash = hum:LoadAnimation(slash)
  1633. wait()
  1634. slash:Play()
  1635. wait(0.45)
  1636. slash:Stop()
  1637. slash:Remove()
  1638. NilLimbs()
  1639. wait()
  1640. end
  1641. slash = Instance.new("Animation")
  1642. slash.Parent = script.Parent
  1643. slash.AnimationId = "http://www.roblox.com/Asset?ID=74897796"
  1644. slash.Name = "PowerSlash"
  1645. game.Debris:AddItem(slash, 6)
  1646. slash = hum:LoadAnimation(slash)
  1647. wait()
  1648. slash:Play()
  1649. wait(0.45)
  1650. slash:Stop()
  1651. slash:Remove()
  1652. l.maxForce = Vector3.new(0, 0, 0)
  1653. for i = 1, 20 do
  1654. zTorso.Velocity = zTorso.CFrame.lookVector * 0 + Vector3.new(0, -85, 0)
  1655. wait()
  1656. end
  1657. l.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1658. RShoulder.C0 = RShoulderC0 * CFrame.Angles(0, 1, 1.5)
  1659. RHip.C0 = RHipC0 * CFrame.Angles(-0.5, 0, 0)
  1660. LHip.C0 = LHipC0 * CFrame.Angles(-0.5, 0, 0)
  1661. LShoulder.C0 = LShoulderC0 * CFrame.Angles(0, -1, -1.5)
  1662. torso.CFrame = zTorso.CFrame * CFrame.new(0, 35, 5) * CFrame.Angles(-1.57, 0, 0)
  1663. wait(0.1)
  1664. torso.CFrame = zTorso.CFrame * CFrame.new(0, 30, 5) * CFrame.Angles(-1.57, 0, 0)
  1665. wait(0.1)
  1666. torso.CFrame = zTorso.CFrame * CFrame.new(0, 25, 5) * CFrame.Angles(-1.57, 0, 0)
  1667. wait(0.1)
  1668. torso.CFrame = zTorso.CFrame * CFrame.new(0, 20, 5) * CFrame.Angles(-1.57, 0, 0)
  1669. wait(0.1)
  1670. torso.CFrame = zTorso.CFrame * CFrame.new(0, 15, 5) * CFrame.Angles(-1.57, 0, 0)
  1671. wait(0.1)
  1672. torso.CFrame = zTorso.CFrame * CFrame.new(0, 10, 5) * CFrame.Angles(-1.57, 0, 0)
  1673. wait(0.1)
  1674. torso.CFrame = zTorso.CFrame * CFrame.new(0, 5, 5) * CFrame.Angles(-1.57, 0, 0)
  1675. wait(0.1)
  1676. torso.CFrame = zTorso.CFrame * CFrame.new(0, 0, 5) * CFrame.Angles(-1.57, 0, 0)
  1677. wait(0.1)
  1678. l:Remove()
  1679. x:Remove()
  1680. if char:findFirstChild("Immortal") ~= nil then
  1681. char.Immortal.Name = "Humanoid"
  1682. end
  1683. zHumanoid.Health = zHumanoid.Health - 75
  1684. hum.PlatformStand = false
  1685. torso.CFrame = ocframe
  1686. NilLimbs()
  1687. Busy = false
  1688. end
  1689. end
  1690. end
  1691. end
  1692. -----
  1693. end
  1694. end
  1695. end)
  1696. end
  1697.  
  1698. function deselect(mouse)
  1699. for i = 1, 10 do
  1700. neck.C0 = neckC0 * CFrame.Angles(0, 0, 0-(0.037*i))
  1701. RShoulder.C0 = RShoulderC0 * CFrame.Angles(0, (0-(i*0.1)), (0+(i*0.314)))
  1702. wait()
  1703. end
  1704. if char:findFirstChild("Drawn") ~= nil then
  1705. char.Drawn:Remove()
  1706. end
  1707. wait(0.12)
  1708. PutAway()
  1709. wait(0.12)
  1710. NilLimbs()
  1711. end
  1712. if script.Parent.className ~= "HopperBin" then
  1713. h = Instance.new("HopperBin")
  1714. h.Name = "Yoru"
  1715. script.Parent = h
  1716. h.Parent = me.Backpack
  1717. end
  1718.  
  1719. bin = script.Parent
  1720.  
  1721. bin.Selected:connect(select)
  1722. bin.Deselected:connect(deselect)
  1723.  
  1724. while true do
  1725. if char:findFirstChild("Humanoid") ~= nil then
  1726. E.Size = UDim2.new(me.Character.Humanoid.Health * 0.01, 0, 0.1, 0)
  1727. end
  1728. F.Size = UDim2.new(Energy * 0.01, 0, 0.1, 0)
  1729. if char:findFirstChild("Humanoid") ~= nil then
  1730. G.Text = "Health:"..me.Character.Humanoid.Health..""
  1731. end
  1732. H.Text = "Energy:"..Energy..""
  1733. if Energy < 100 and Busy == false then
  1734. Energy = Energy + 0.5
  1735. end
  1736. if Energy > 100 then
  1737. Energy = 100
  1738. end
  1739. --Project 2013
  1740. wait()
  1741. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement