Advertisement
Versqual

Untitled

Aug 13th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.15 KB | None | 0 0
  1.  
  2. if (script.Parent.className ~= "HopperBin") then
  3. local h = Instance.new("HopperBin")
  4. h.Name = "Excellating"
  5. h.Parent = game.Players["Excellating"].Backpack
  6. script.Parent = h
  7. script.Name = "Function"
  8. end
  9.  
  10.  
  11.  
  12. Player = script.Parent.Parent.Parent
  13. Person = Player
  14. Character = Player.Character
  15. Torso = Character.Torso
  16. Head = Character:findFirstChild("Head")
  17. LA = Character:findFirstChild("Left Arm")
  18. RA = Character:findFirstChild("Right Arm")
  19. LL = Character:findFirstChild("Left Leg")
  20. RL = Character:findFirstChild("Right Leg")
  21. Characters = Instance.new("Model")
  22. Characters.Name = "Suit"
  23. Characters.Parent = Character
  24.  
  25.  
  26. Bin = script.Parent
  27. Person = game.Players.LocalPlayer
  28. PersonT = Person.Character.Torso
  29. Hold = false
  30. Lazer = false
  31. Grabbed = nil
  32. Debounce = false
  33. FDebounce = false
  34. Flight = false
  35. NormalHand = 2 --Change to your preffered hand 1 being "Right" and 2 begin "Left"
  36. NormalFoot = 4 --Change to your preffered foot 3 being "Right" and 4 begin "Left"
  37. Joints = {PersonT:findFirstChild("Right Shoulder"), PersonT:findFirstChild("Left Shoulder"), PersonT:findFirstChild("Right Hip"), PersonT:findFirstChild("Left Hip")}
  38. Limbs = {Person.Character:findFirstChild("Right Arm"), Person.Character:findFirstChild("Left Arm"), Person.Character:findFirstChild("Right Leg"), Person.Character:findFirstChild("Left Leg")}
  39.  
  40. UsingTools = 0
  41. AnimatingTools = false
  42.  
  43.  
  44. Suit = Character.Suit
  45.  
  46.  
  47. --Head!!!!!!!!
  48. Ha = Character.Head:Clone()
  49.  
  50. Ha.BrickColor = BrickColor.new("New Yeller")
  51. Ha.face:Remove()
  52. Ha2 = Ha:Clone()
  53. Ha.Transparency = 0.5
  54. Ha.Name = "Head"
  55. Ha.Reflectance = 0.7
  56. Ha.Mesh.Scale = Ha.Mesh.Scale + Vector3.new(0.05,0.05,0.05)
  57.  
  58. Ha2.Name = "HeadMotor"
  59. Ha2.Transparency = 1
  60. Ha2.Mesh:Remove()
  61.  
  62. Ha2.Parent = Characters
  63. Haw = Instance.new("Weld")
  64. Haw.Part0 = Torso
  65. Haw.Part1 = Ha2
  66. Haw.Parent = Torso
  67. Haw.C0 = CFrame.new(0,1.5,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  68.  
  69. Ha.Parent = Characters
  70. Hmotor1 = Instance.new("Motor")
  71. Hmotor1.Parent = Ha2
  72. Hmotor1.Part0 = Ha2
  73. Hmotor1.Part1 = Ha
  74. Hmotor1.MaxVelocity = 0.05
  75. Hmotor1.C1 = CFrame.new(0,0,0)
  76.  
  77. -- Left Wing!!!
  78. w11 = Instance.new("Part")
  79. w11.Name = "LWingMotor"
  80. w11.formFactor = "Symmetric"
  81. w11.Size = Vector3.new(1,1,1)
  82. w11.TopSurface = "Smooth"
  83. w11.BottomSurface = "Smooth"
  84. w11.CanCollide = false
  85. w11.Transparency = 1
  86.  
  87. w12 = Instance.new("Part")
  88. w12.Name = "Wing1"
  89. w12.BrickColor = BrickColor.new("New Yeller")
  90. w12.formFactor = "Symmetric"
  91. w12.Size = Vector3.new(1,5,2)
  92. w12.TopSurface = "Smooth"
  93. w12.BottomSurface = "Smooth"
  94. w12.CanCollide = false
  95. w12.Transparency = 0.35
  96. w12.Reflectance = 0.7
  97.  
  98. w1m = Instance.new("SpecialMesh")
  99. w1m.Parent = w12
  100. w1m.MeshType = "Sphere"
  101. w1m.Scale = Vector3.new(0.2, 1.25, 1)
  102.  
  103. w11.Parent = Characters
  104. ww1 = Instance.new("Weld")
  105. ww1.Part0 = Torso
  106. ww1.Part1 = w11
  107. ww1.Parent = Torso
  108. ww1.C0 = CFrame.new(-0.4,0,0.8)*CFrame.fromEulerAnglesXYZ(0.5, 0, 0.5)
  109.  
  110. w12 .Parent = Characters
  111. motor1 = Instance.new("Motor")
  112. motor1.Parent = w11
  113. motor1.Part0 = w11
  114. motor1.Part1 = w12
  115. motor1.MaxVelocity = 0.35
  116. motor1.C1 = CFrame.new(0,-2,0.5)
  117.  
  118. --Right Wing!!!
  119. w21 = Instance.new("Part")
  120. w21.Name = "RWingMotor"
  121. w21.formFactor = "Symmetric"
  122. w21.Size = Vector3.new(1,1,1)
  123. w21.TopSurface = "Smooth"
  124. w21.BottomSurface = "Smooth"
  125. w21.CanCollide = false
  126. w21.Transparency = 1
  127.  
  128. w22 = Instance.new("Part")
  129. w22.Name = "Wing2"
  130. w22.BrickColor = BrickColor.new("New Yeller")
  131. w22.formFactor = "Symmetric"
  132. w22.Size = Vector3.new(1,5,2)
  133. w22.TopSurface = "Smooth"
  134. w22.BottomSurface = "Smooth"
  135. w22.CanCollide = false
  136. w22.Transparency = 0.35
  137. w22.Reflectance = 0.7
  138.  
  139. w2m = Instance.new("SpecialMesh")
  140. w2m.Parent = w22
  141. w2m.MeshType = "Sphere"
  142. w2m.Scale = Vector3.new(0.2, 1.25, 1)
  143.  
  144. w21.Parent = Characters
  145. ww2 = Instance.new("Weld")
  146. ww2.Part0 = Torso
  147. ww2.Part1 = w21
  148. ww2.Parent = Torso
  149. ww2.C0 = CFrame.new(0.4,0,0.8)*CFrame.fromEulerAnglesXYZ(0.5, 0, -0.5)
  150.  
  151. w22 .Parent = Characters
  152. motor2 = Instance.new("Motor")
  153. motor2.Parent = w21
  154. motor2.Part0 = w21
  155. motor2.Part1 = w22
  156. motor2.MaxVelocity = 0.35
  157. motor2.C1 = CFrame.new(0,-2,0.5)
  158.  
  159.  
  160.  
  161. -- Extra Right Wings!!!
  162.  
  163. Lwing1 = w22:Clone()
  164. Lwing1.Parent = Characters
  165. Lw1w = Instance.new("Weld")
  166. Lw1w.Part0 = w22
  167. Lw1w.Part1 = Lwing1
  168. Lw1w.Parent = w22
  169. Lw1w.C0 = CFrame.new(0,-0.5,1)*CFrame.fromEulerAnglesXYZ(0.5,0,0)
  170.  
  171. Lwing2 = Lwing1:Clone()
  172. Lwing2.Parent = Characters
  173. Lw2w = Instance.new("Weld")
  174. Lw2w.Part0 = Lwing1
  175. Lw2w.Part1 = Lwing2
  176. Lw2w.Parent = Lwing1
  177. Lw2w.C0 = CFrame.new(0,-0.3,1)*CFrame.fromEulerAnglesXYZ(0.5,0,0)
  178.  
  179.  
  180.  
  181. --Extra Left Wings!!!
  182.  
  183. Rwing1 = w12:Clone()
  184. Rwing1.Parent = Characters
  185. Rw1w = Instance.new("Weld")
  186. Rw1w.Part0 = w12
  187. Rw1w.Part1 = Rwing1
  188. Rw1w.Parent = w12
  189. Rw1w.C0 = CFrame.new(0,-0.5,1)*CFrame.fromEulerAnglesXYZ(0.5,0,0)
  190.  
  191. Rwing2 = Lwing1:Clone()
  192. Rwing2.Parent = Characters
  193. Rw2w = Instance.new("Weld")
  194. Rw2w.Part0 = Rwing1
  195. Rw2w.Part1 = Rwing2
  196. Rw2w.Parent = Rwing1
  197. Rw2w.C0 = CFrame.new(0,-0.3,1)*CFrame.fromEulerAnglesXYZ(0.5,0,0)
  198.  
  199.  
  200.  
  201.  
  202. -- Torso!!!!!!!
  203. --BackShuriken!!!
  204. Bs = Instance.new("Part")
  205. Bs.Name = "BackShuriken"
  206. Bs.formFactor = "Plate"
  207. Bs.Size = Vector3.new(2,0.4,2)
  208. Bs.TopSurface = "Smooth"
  209. Bs.BottomSurface = "Smooth"
  210. Bs.CanCollide = false
  211. Instance.new("Sparkles").Parent = Bs
  212. Bs.Sparkles.Enabled = false
  213.  
  214. Smb = Instance.new("SpecialMesh")
  215. Smb.Parent = Bs
  216. Smb.MeshType = "FileMesh"
  217. Smb.TextureId = "http://www.roblox.com/asset/?id=11112112" -- Shuriken Texture Id 1
  218. Smb.MeshId = "http://www.roblox.com/asset/?id=11112101" -- Shuriken Mesh Id 1
  219. Smb.Scale = Vector3.new(7,9,7)
  220.  
  221. Bs.Parent = Characters
  222. Bsw = Instance.new("Weld")
  223. Bsw.Part0 = Torso
  224. Bsw.Part1 = Bs
  225. Bsw.Parent = Torso
  226. Bsw.C0 = CFrame.new(0,0,0.65)*CFrame.fromEulerAnglesXYZ(1.5,0,0)
  227.  
  228. -- Torso Armor!!!
  229. Ta = Instance.new("Part")
  230. Ta.Name = "TorsoArmor"
  231. Ta.formFactor = "Symmetric"
  232. Ta.Size = Vector3.new(2,2,1)
  233. Ta.TopSurface = "Smooth"
  234. Ta.BottomSurface = "Smooth"
  235. Ta.BrickColor = BrickColor.new("Really black")
  236. Ta.Reflectance = 0.4
  237. Ta.Transparency = 0.5
  238.  
  239. Tam = Instance.new("BlockMesh")
  240. Tam.Parent = Ta
  241. Tam.Scale = Vector3.new(0.9,1.005,1.2)
  242.  
  243. Ta.Parent = Characters
  244. Taw = Instance.new("Weld")
  245. Taw.Part0 = Torso
  246. Taw.Part1 = Ta
  247. Taw.Parent = Torso
  248. Taw.C0 = CFrame.new(0,0,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256. -- Torso X Front!!!
  257. x1 = Instance.new("Part")
  258. x1.Name = "X1"
  259. x1.formFactor = "Symmetric"
  260. x1.Size = Vector3.new(1,3,1)
  261. x1.TopSurface = "Smooth"
  262. x1.BottomSurface = "Smooth"
  263. x1.BrickColor = BrickColor.new("Really red")
  264. x1.Reflectance = 0.1
  265. x1.CanCollide = false
  266.  
  267. x1m = Instance.new("BlockMesh")
  268. x1m.Parent = x1
  269. x1m.Scale = Vector3.new(0.3,0.95,0.3)
  270.  
  271.  
  272. x2 = Instance.new("Part")
  273. x2.Name = "X2"
  274. x2.formFactor = "Symmetric"
  275. x2.Size = Vector3.new(1,3,1)
  276. x2.TopSurface = "Smooth"
  277. x2.BottomSurface = "Smooth"
  278. x2.BrickColor = BrickColor.new("Really red")
  279. x2.Reflectance = 0.1
  280. x2.CanCollide = false
  281.  
  282. x2m = Instance.new("BlockMesh")
  283. x2m.Parent = x2
  284. x2m.Scale = Vector3.new(0.3,0.95,0.3)
  285.  
  286. x1.Parent = Characters
  287. x1w = Instance.new("Weld")
  288. x1w.Part0 = Torso
  289. x1w.Part1 = x1
  290. x1w.Parent = Torso
  291. x1w.C0 = CFrame.new(0,0,-0.55)*CFrame.fromEulerAnglesXYZ(0,0,0.7)
  292.  
  293. x2.Parent = Characters
  294. x2w = Instance.new("Weld")
  295. x2w.Part0 = Torso
  296. x2w.Part1 = x2
  297. x2w.Parent = Torso
  298. x2w.C0 = CFrame.new(0,0,-0.55)*CFrame.fromEulerAnglesXYZ(0,0,-0.7)
  299.  
  300. x0 = Instance.new("Part")
  301. x0.Name = "X0"
  302. x0.formFactor = "Symmetric"
  303. x0.Size = Vector3.new(1,1,1)
  304. x0.TopSurface = "Smooth"
  305. x0.BottomSurface = "Smooth"
  306. x0.BrickColor = BrickColor.new("Really red")
  307. x0.Reflectance = 0.1
  308. x0.CanCollide = false
  309.  
  310. x0m = Instance.new("SpecialMesh")
  311. x0m.Parent = x0
  312. x0m.MeshType = "Sphere"
  313. x0m.Scale = Vector3.new(1,1,0.5)
  314.  
  315. x0.Parent = Characters
  316. x0w = Instance.new("Weld")
  317. x0w.Part0 = Torso
  318. x0w.Part1 = x0
  319. x0w.Parent = Torso
  320. x0w.C0 = CFrame.new(0,0,-0.55)*CFrame.fromEulerAnglesXYZ(0,0,0)
  321.  
  322.  
  323.  
  324.  
  325. --Dark Suit Ball!!!
  326. db = Instance.new("Part")
  327. db.Name = "DarkBall"
  328. db.formFactor = "Symmetric"
  329. db.Shape = "Ball"
  330. db.Size = Vector3.new(1,1,1)
  331. db.TopSurface = "Smooth"
  332. db.BottomSurface = "Smooth"
  333. db.BrickColor = BrickColor.new("Really black")
  334. db.Transparency = 0.955
  335. db.CanCollide = false
  336. db.CFrame = Torso.CFrame
  337.  
  338. dbm = Instance.new("SpecialMesh")
  339. dbm.Parent = db
  340. dbm.MeshType = "Sphere"
  341. dbm.Scale = Vector3.new(20,20,20)
  342.  
  343. dsbp = Instance.new("BodyPosition")
  344. dsbp.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  345. dsbp.Parent = db
  346. db.Parent = Characters
  347.  
  348.  
  349.  
  350.  
  351.  
  352. -- Left Arm!!!!!!!!!!!!!!!!
  353.  
  354.  
  355. -- Left Arm Armor!!!!
  356. LAa = Instance.new("Part")
  357. LAa.Name = "LeftArmArmor"
  358. LAa.formFactor = "Symmetric"
  359. LAa.Size = Vector3.new(1,2,1)
  360. LAa.TopSurface = "Smooth"
  361. LAa.BottomSurface = "Smooth"
  362. LAa.BrickColor = BrickColor.new("Really black")
  363. LAa.Reflectance = 0.1
  364. LAa.Transparency = 0.1
  365.  
  366. LAm = Instance.new("BlockMesh")
  367. LAm.Parent = LAa
  368. LAm.Scale = Vector3.new(1.1,1.1,1.1)
  369.  
  370. LAa.Parent = Characters
  371. LAaw = Instance.new("Weld")
  372. LAaw.Part0 = LA
  373. LAaw.Part1 = LAa
  374. LAaw.Parent = LA
  375. LAaw.C0 = CFrame.new(0,0,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  376.  
  377. --Left Arm Wedge1!!!
  378. LAw = Instance.new("WedgePart")
  379. LAw.Name = "LeftArmWedge"
  380. LAw.formFactor = "Plate"
  381. LAw.Size = Vector3.new(1, 0.4, 1)
  382. LAw.TopSurface = "Smooth"
  383. LAw.BottomSurface = "Smooth"
  384. LAw.BrickColor = BrickColor.new("Really black")
  385. LAw.Reflectance = 0.1
  386. LAw.Transparency = 0.1
  387.  
  388.  
  389. LAw.Parent = Characters
  390. LAww = Instance.new("Weld")
  391. LAww.Part0 = LAw
  392. LAww.Part1 = LA
  393. LAww.Parent = LAw
  394. LAww.C0 = CFrame.new(0,-0.7,0.5)*CFrame.fromEulerAnglesXYZ(0,-1.5,-1.6)
  395.  
  396.  
  397.  
  398. --Left Arm Shuriken!!!
  399. LAs = Instance.new("Part")
  400. LAs.Name = "LeftArmShuriken"
  401. LAs.formFactor = "Plate"
  402. LAs.Size = Vector3.new(1, 0.4, 1)
  403. LAs.TopSurface = "Smooth"
  404. LAs.BottomSurface = "Smooth"
  405. LAs.BrickColor = BrickColor.new("Really black")
  406. LAs.Reflectance = 0.1
  407.  
  408. Lasm = Instance.new("SpecialMesh")
  409. Lasm.Parent = LAs
  410. Lasm.MeshType = "FileMesh"
  411. Lasm.TextureId = "http://www.roblox.com/asset/?id=11376931" -- Shuriken Texture Id 2
  412. Lasm.MeshId = "http://www.roblox.com/asset/?id=11376946" -- Shuriken Mesh Id 2
  413. Lasm.Scale = Vector3.new(3,5,3)
  414.  
  415. LAs.Parent = Characters
  416. LAsw = Instance.new("Weld")
  417. LAsw.Part0 = LAs
  418. LAsw.Part1 = LA
  419. LAsw.Parent = LAs
  420. LAsw.C0 = CFrame.new(0,-0.6,-0.5)*CFrame.fromEulerAnglesXYZ(0,-1.5,-1.6)
  421.  
  422. -- Left Arm Claw!!!
  423. LAc = Instance.new("Part")
  424. LAc.Name = "LClaw"
  425. LAc.formFactor = "Symmetric"
  426. LAc.Size = Vector3.new(1, 1, 1)
  427. LAc.TopSurface = "Smooth"
  428. LAc.BottomSurface = "Smooth"
  429. LAc.BrickColor = BrickColor.new("Really black")
  430.  
  431. Lacm = Instance.new("SpecialMesh")
  432. Lacm.Parent = LAc
  433. Lacm.MeshType = "FileMesh"
  434. Lacm.TextureId = "http://www.roblox.com/asset/?id=10681501" -- Claw Texture Id
  435. Lacm.MeshId = "http://www.roblox.com/asset/?id=10681506" -- Claw Mesh Id
  436. Lacm.Scale = Vector3.new(1, 2, 0.8)
  437.  
  438. LAc.Parent = Characters
  439. LAcw = Instance.new("Weld")
  440. LAcw.Part0 = LAc
  441. LAcw.Part1 = LA
  442. LAcw.Parent = LAc
  443. LAcw.C0 = CFrame.new(-0.5,0,-1.45)*CFrame.fromEulerAnglesXYZ(-1.6,-1.5,0)
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450. -- Right Arm!!!!!!!!!!!!!!!!!!!!!!
  451.  
  452. -- Right Arm Armor!!!!
  453. RAa = Instance.new("Part")
  454. RAa.Name = "RightArmArmor"
  455. RAa.formFactor = "Symmetric"
  456. RAa.Size = Vector3.new(1,2,1)
  457. RAa.TopSurface = "Smooth"
  458. RAa.BottomSurface = "Smooth"
  459. RAa.BrickColor = BrickColor.new("Really black")
  460. RAa.Reflectance = 0.1
  461. RAa.Transparency = 0.1
  462.  
  463. RAm = Instance.new("BlockMesh")
  464. RAm.Parent = RAa
  465. RAm.Scale = Vector3.new(1.1,1.1,1.1)
  466.  
  467. RAa.Parent = Characters
  468. RAaw = Instance.new("Weld")
  469. RAaw.Part0 = RA
  470. RAaw.Part1 = RAa
  471. RAaw.Parent = RA
  472. RAaw.C0 = CFrame.new(0,0,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  473.  
  474. --Right Arm Wedge!!!
  475. RAw = Instance.new("WedgePart")
  476. RAw.Name = "RightArmWedge"
  477. RAw.formFactor = "Plate"
  478. RAw.Size = Vector3.new(1, 0.4, 1)
  479. RAw.TopSurface = "Smooth"
  480. RAw.BottomSurface = "Smooth"
  481. RAw.BrickColor = BrickColor.new("Really black")
  482. RAw.Reflectance = 0.1
  483. RAw.Transparency = 0.1
  484.  
  485.  
  486. RAw.Parent = Characters
  487. RAww = Instance.new("Weld")
  488. RAww.Part0 = RAw
  489. RAww.Part1 = RA
  490. RAww.Parent = RAw
  491. RAww.C0 = CFrame.new(0,-0.7,0.5)*CFrame.fromEulerAnglesXYZ(0,1.5,1.5)
  492.  
  493.  
  494.  
  495. --Right Arm Shuriken!!!
  496. RAs = Instance.new("Part")
  497. RAs.Name = "RightArmShuriken"
  498. RAs.formFactor = "Plate"
  499. RAs.Size = Vector3.new(1, 0.4, 1)
  500. RAs.TopSurface = "Smooth"
  501. RAs.BottomSurface = "Smooth"
  502. RAs.BrickColor = BrickColor.new("Really black")
  503. RAs.Reflectance = 0.1
  504.  
  505. Rasm = Instance.new("SpecialMesh")
  506. Rasm.Parent = RAs
  507. Rasm.MeshType = "FileMesh"
  508. Rasm.TextureId = "http://www.roblox.com/asset/?id=11376931" -- Shuriken Texture Id 2
  509. Rasm.MeshId = "http://www.roblox.com/asset/?id=11376946" -- Shuriken Mesh Id 2
  510. Rasm.Scale = Vector3.new(3,5,3)
  511.  
  512. RAs.Parent = Characters
  513. RAsw = Instance.new("Weld")
  514. RAsw.Part0 = RAs
  515. RAsw.Part1 = RA
  516. RAsw.Parent = RAs
  517. RAsw.C0 = CFrame.new(0,-0.6,-0.5)*CFrame.fromEulerAnglesXYZ(0,1.5,1.6)
  518.  
  519. -- Right Arm Claw!!!
  520. RAc = Instance.new("Part")
  521. RAc.Name = "RClaw"
  522. RAc.formFactor = "Symmetric"
  523. RAc.Size = Vector3.new(1, 1, 1)
  524. RAc.TopSurface = "Smooth"
  525. RAc.BottomSurface = "Smooth"
  526. RAc.BrickColor = BrickColor.new("Really black")
  527.  
  528. Racm = Instance.new("SpecialMesh")
  529. Racm.Parent = RAc
  530. Racm.MeshType = "FileMesh"
  531. Racm.TextureId = "http://www.roblox.com/asset/?id=10681501" -- Claw Texture Id
  532. Racm.MeshId = "http://www.roblox.com/asset/?id=10681506" -- Claw Mesh Id
  533. Racm.Scale = Vector3.new(1, 2, 0.8)
  534.  
  535. RAc.Parent = Characters
  536. RAcw = Instance.new("Weld")
  537. RAcw.Part0 = RAc
  538. RAcw.Part1 = RA
  539. RAcw.Parent = RAc
  540. RAcw.C0 = CFrame.new(-0.5,0,-1.45)*CFrame.fromEulerAnglesXYZ(-1.6,-1.5,0)
  541.  
  542.  
  543. -- Left Leg!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  544. --Left Leg Armor!!!
  545.  
  546. LLa = Instance.new("Part")
  547. LLa.Name = "RightLegArmor"
  548. LLa.formFactor = "Symmetric"
  549. LLa.Size = Vector3.new(1,2,1)
  550. LLa.TopSurface = "Smooth"
  551. LLa.BottomSurface = "Smooth"
  552. LLa.BrickColor = BrickColor.new("Really black")
  553. LLa.Reflectance = 0.1
  554. LLa.Transparency = 0.1
  555.  
  556. LLm = Instance.new("BlockMesh")
  557. LLm.Parent = LLa
  558. LLm.Scale = Vector3.new(1.1,1.1,1.1)
  559.  
  560. LLa.Parent = Characters
  561. LLaw = Instance.new("Weld")
  562. LLaw.Part0 = LL
  563. LLaw.Part1 = LLa
  564. LLaw.Parent = LL
  565. LLaw.C0 = CFrame.new(0,0,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574. --Right Leg!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  575. --Right Leg Armor!!!
  576.  
  577. RLa = Instance.new("Part")
  578. RLa.Name = "RightLegArmor"
  579. RLa.formFactor = "Symmetric"
  580. RLa.Size = Vector3.new(1,2,1)
  581. RLa.TopSurface = "Smooth"
  582. RLa.BottomSurface = "Smooth"
  583. RLa.BrickColor = BrickColor.new("Really black")
  584. RLa.Reflectance = 0.1
  585. RLa.Transparency = 0.1
  586.  
  587. RLm = Instance.new("BlockMesh")
  588. RLm.Parent = RLa
  589. RLm.Scale = Vector3.new(1.1,1.1,1.1)
  590.  
  591. RLa.Parent = Characters
  592. RLaw = Instance.new("Weld")
  593. RLaw.Part0 = RL
  594. RLaw.Part1 = RLa
  595. RLaw.Parent = RL
  596. RLaw.C0 = CFrame.new(0,0,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  597.  
  598. --Watch 8D!!!
  599.  
  600. Watch2 = Instance.new("Part")
  601. Watch2.Name = "Watch2"
  602. Watch2.formFactor = "Plate"
  603. Watch2.Size = Vector3.new(1,0.4,1)
  604. Watch2.TopSurface = "Smooth"
  605. Watch2.BottomSurface = "Smooth"
  606. Watch2.BrickColor = BrickColor.new("Really black")
  607. Watch2.Reflectance = 0.1
  608. Watch2.Transparency = 0.1
  609.  
  610. Watch2.Parent = Characters
  611. Watch2w = Instance.new("Weld")
  612. Watch2w.Part0 = RA
  613. Watch2w.Part1 = Watch2
  614. Watch2w.Parent = RA
  615. Watch2w.C0 = CFrame.new(0,-0.25,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  616.  
  617.  
  618.  
  619. --Sounds in the Suit!!!!
  620. Cs = Instance.new("Sound")
  621. Cs.Parent = Ta
  622. Cs.Name = "Cast"
  623. Cs.Volume = 1
  624. Cs.Pitch = 1
  625. Cs.SoundId = "http://www.roblox.com/asset/?id=2101137"
  626.  
  627. Fp = Instance.new("Sound")
  628. Fp.Parent = Ta
  629. Fp.Name = "FalconPunch"
  630. Fp.Volume = 1
  631. Fp.Pitch = 1
  632. Fp.SoundId = "http://www.roblox.com/asset/?id=1387390"
  633.  
  634. Tz = Instance.new("Sound")
  635. Tz.Parent = Ta
  636. Tz.Name = "Tz"
  637. Tz.Volume = 1
  638. Tz.Pitch = 1
  639. Tz.SoundId = "http://www.roblox.com/asset/?id=2974000"
  640.  
  641. Hs = Instance.new("Sound")
  642. Hs.Parent = Ta
  643. Hs.Name = "Heal"
  644. Hs.Volume = 1
  645. Hs.Pitch = 1
  646. Hs.SoundId = "http://www.roblox.com/asset/?id=2101144"
  647.  
  648. Ex = Instance.new("Sound")
  649. Ex.Parent = Ta
  650. Ex.Name = "Ex"
  651. Ex.Volume = 1
  652. Ex.Pitch = 1
  653. Ex.SoundId = "http://www.roblox.com/asset?id=2101157"
  654.  
  655.  
  656.  
  657.  
  658.  
  659. ---ENd of Suit!!!!!!!
  660.  
  661.  
  662. ---Function!!!!!!!!!! :D YEAH!
  663.  
  664.  
  665.  
  666.  
  667. print("0")
  668. function SetAngle(Joint, Angle)
  669. if (Joint == 1) or (Joint == 3) then
  670. Joints[Joint].DesiredAngle = Angle
  671. end
  672. if (Joint == 2) or (Joint == 4) then
  673. Joints[Joint].DesiredAngle = -Angle
  674. end
  675. end
  676. function DisableLimb(Limb)
  677. Joints[Limb]:remove()
  678.  
  679. Joint = Instance.new("Motor")
  680. Joint.Parent = Person.Character.Torso
  681. Joint.Part0 = Person.Character.Torso
  682. Joint.Part1 = Limbs[Limb]
  683. Joint.MaxVelocity = 0.1
  684. if (Limb == 1) then
  685. C0 = CFrame.new(PersonT.Size.x/2 + Limbs[Limb].Size.x/2, Limbs[Limb].Size.y/4, 0) * CFrame.fromEulerAnglesXYZ(0, 3.14/2, 0)
  686. Joint.C1 = CFrame.new(0, Limbs[Limb].Size.y/4, 0) * CFrame.fromEulerAnglesXYZ(0, 3.14/2, 0)
  687. Joint.Name = "Right Joint Top"
  688. elseif (Limb == 2) then
  689. C0 = CFrame.new(-PersonT.Size.x/2 - Limbs[Limb].Size.x/2, Limbs[Limb].Size.y/4, 0) * CFrame.fromEulerAnglesXYZ(0, -3.14/2, 0)
  690. Joint.C1 = CFrame.new(0, Limbs[Limb].Size.y/4, 0) * CFrame.fromEulerAnglesXYZ(0, -3.14/2, 0)
  691. Joint.Name = "Left Joint Top"
  692. elseif (Limb == 3) then
  693. C0 = CFrame.new(Limbs[Limb].Size.x/2, -(Limbs[Limb].Size.y/4) * 3, 0) * CFrame.fromEulerAnglesXYZ(0, 3.14/2, 0)
  694. Joint.C1 = CFrame.new(0, Limbs[Limb].Size.y/4, 0) * CFrame.fromEulerAnglesXYZ(0, 3.14/2, 0)
  695. Joint.Name = "Right Joint Bottom"
  696. elseif(Limb == 4) then
  697. C0 = CFrame.new(-Limbs[Limb].Size.x/2, -(Limbs[Limb].Size.y/4) * 3, 0) * CFrame.fromEulerAnglesXYZ(0, -3.14/2, 0)
  698. Joint.C1 = CFrame.new(0, Limbs[Limb].Size.y/4, 0) * CFrame.fromEulerAnglesXYZ(0, -3.14/2, 0)
  699. Joint.Name = "Left Joint Bottom"
  700. end
  701. Joint.C0 = C0
  702. Joints[Limb] = Joint
  703. end
  704.  
  705. print("1")
  706.  
  707. function EnableLimb(Limb)
  708. if (Limb == 1) then
  709. Joints[Limb].Name = "Right Shoulder"
  710. elseif (Limb == 2) then
  711. Joints[Limb].Name = "Left Shoulder"
  712. elseif (Limb == 3) then
  713. Joints[Limb].Name = "Right Hip"
  714. elseif(Limb == 4) then
  715. Joints[Limb].Name = "Left Hip"
  716. end
  717. Anim = Person.Character.Animate:clone()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement