Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 230.54 KB | None | 0 0
  1. --[[User: TheDarkRevenant
  2. Script: Absalom (Armored).lua
  3. Pass: cUpnjTnT]]
  4.  
  5. local p = game.Players.LocalPlayer
  6. local char = p.Character
  7. local mouse = p:GetMouse()
  8. local larm = char["Left Arm"]
  9. local rarm = char["Right Arm"]
  10. local lleg = char["Left Leg"]
  11. local rleg = char["Right Leg"]
  12. local hed = char.Head
  13. local torso = char.Torso
  14. local hum = char.Humanoid
  15. local cam = game.Workspace.CurrentCamera
  16. local root = char.HumanoidRootPart
  17. local deb = false
  18. local shot = 0
  19. local l = game:GetService("Lighting")
  20. local rs = game:GetService("RunService").RenderStepped
  21. local debris=game:service"Debris"
  22. local stanceToggle = "Normal"
  23. math.randomseed(os.time())
  24. hum.WalkSpeed = 175
  25. char.Health:Destroy()
  26. hum.MaxHealth = 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  27. wait(0.1)
  28. hum.Health = 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  29. ----------------------------------------------------
  30. ypcall(function()
  31. char.Shirt:Destroy()
  32. char.Pants:Destroy()
  33. shirt = Instance.new("Shirt", char)
  34. shirt.Name = "Shirt"
  35. pants = Instance.new("Pants", char)
  36. pants.Name = "Pants"
  37. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  38. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  39. end)
  40. ----------------------------------------------------
  41. Debounces = {
  42. on = false;
  43. ks = false;
  44. CanAttack = true;
  45. CanJoke = true;
  46. NoIdl = false;
  47. Slashing = false;
  48. Slashed = false;
  49. Grabbing = false;
  50. Grabbed = false;
  51. }
  52. local Touche = {char.Name, }
  53. ----------------------------------------------------
  54. function lerp(a, b, t) -- Linear interpolation
  55. return a + (b - a)*t
  56. end
  57.  
  58. function slerp(a, b, t) --Spherical interpolation
  59. dot = a:Dot(b)
  60. if dot > 0.99999 or dot < -0.99999 then
  61. return t 0) then -- Failsafe
  62. return CFrame.new()
  63. end
  64. return CFrame.new(
  65. v0.x, v0.y, v0.z,
  66. v1.x, v1.y, v1.z,
  67. v2.x, v2.y, v2.z,
  68. v3.x, v3.y, v3.z)
  69. end
  70. ----------------------------------------------------
  71. function genWeld(a,b)
  72. local w = Instance.new("Weld",a)
  73. w.Part0 = a
  74. w.Part1 = b
  75. return w
  76. end
  77. function weld(a, b)
  78. local weld = Instance.new("Weld")
  79. weld.Name = "W"
  80. weld.Part0 = a
  81. weld.Part1 = b
  82. weld.C0 = a.CFrame:inverse() * b.CFrame
  83. weld.Parent = a
  84. return weld;
  85. end
  86. ----------------------------------------------------
  87. function Lerp(c1,c2,al)
  88. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  89. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  90. for i,v in pairs(com1) do
  91. com1[i] = v+(com2[i]-v)*al
  92. end
  93. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  94. end
  95. ----------------------------------------------------
  96. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  97. local wld = Instance.new("Weld", wp1)
  98. wld.Part0 = wp0
  99. wld.Part1 = wp1
  100. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  101. end
  102. ----------------------------------------------------
  103. function Tween(a,b,c)
  104. return a+(b-a)*c
  105. end
  106. ----------------------------------------------------
  107. function nwPrt(prnt,siz,cf,col)
  108. local prt=Instance.new("Part")
  109. prt.Parent=prnt
  110. prt.FormFactor=3
  111. prt.Name="Part"
  112. prt.Size=siz
  113. prt.CanCollide=false
  114. prt.Anchored=true
  115. prt.Locked=true
  116. prt.TopSurface=10
  117. prt.BottomSurface=10
  118. prt.FrontSurface=10
  119. prt.BackSurface=10
  120. prt.LeftSurface=10
  121. prt.RightSurface=10
  122. prt:BreakJoints()
  123. prt.CFrame=cf or CFrame.new(30,10,30)
  124. prt.Material="Neon"
  125. prt.BrickColor=BrickColor.new(col)
  126. m=Instance.new("SpecialMesh",prt)
  127. m.MeshType=6
  128. return prt
  129. end
  130. ----------------------------------------------------
  131. function nwSnd(prnt,pch,vol,id)
  132. local s=Instance.new("Sound",prnt)
  133. s.Pitch=pch
  134. s.Volume=vol
  135. s.SoundId="rbxassetid://"..id
  136. s.PlayOnRemove=true
  137. return s
  138. end
  139. ----------------------------------------------------
  140. function newRay(start,face,range,wat)
  141. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  142. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  143. return rey,hit,pos
  144. end
  145. ----------------------------------------------------
  146. for i,v in pairs(char:children()) do
  147. if v:IsA("Hat") then
  148. v:Destroy()
  149. end
  150. end
  151. for i,v in pairs(hed:children()) do
  152. if v:IsA("Sound") then
  153. v:Destroy()
  154. end
  155. end
  156. ----------------------------------------------------
  157. function HasntTouched(plrname)
  158. local ret = true
  159. for _, v in pairs(Touche) do
  160. if v == plrname then
  161. ret = false
  162. end
  163. end
  164. return ret
  165. end
  166. ----------------------------------------------------
  167. larm.Size = larm.Size * 2
  168. rarm.Size = rarm.Size * 2
  169. lleg.Size = lleg.Size * 2
  170. rleg.Size = rleg.Size * 2
  171. torso.Size = torso.Size * 2
  172. hed.Size = hed.Size * 2
  173. root.Size = root.Size * 2
  174. ----------------------------------------------------
  175. newWeld(torso, larm, -1.5, 0.5, 0)
  176. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  177. newWeld(torso, rarm, 1.5, 0.5, 0)
  178. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  179. newWeld(torso, hed, 0, 1.5, 0)
  180. newWeld(torso, lleg, -0.5, -1, 0)
  181. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  182. newWeld(torso, rleg, 0.5, -1, 0)
  183. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  184. newWeld(root, torso, 0, -1, 0)
  185. torso.Weld.C1 = CFrame.new(0, -1, 0)
  186. ----------------------------------------------------
  187. hed.face.Texture = "rbxassetid://"
  188. z=Instance.new('Decal',hed)
  189. z.Face = 'Front'
  190. z.Texture='rbxassetid://430810213'
  191. z1=Instance.new('Decal',hed)
  192. z1.Face = 'Right'
  193. hed.BrickColor = BrickColor.new("Really black")
  194. lite = Instance.new("PointLight", torso)
  195. lite.Brightness = 999999999999999999999999999999999
  196. lite.Range = 999999999999999999999999999999999
  197. lite.Color = Color3.new(1, 0, 0)
  198. --[[local hed2 = hed:Clone()
  199. hed2.CanCollide = false
  200. hed2.Parent = char
  201. hed2:ClearAllChildren()
  202. hed2.Transparency = 1
  203. hed2.Name = "DARP"
  204. local w = Instance.new("Weld",hed2)
  205. w.Part0 = hed
  206. w.Part1 = hed2
  207. w.C0 = CFrame.new(0,0,-0.175)
  208. z=Instance.new("SurfaceGui",hed2)
  209. z.Enabled = true
  210. z.Face = "Front"
  211. z.Adornee = hed2
  212. z.CanvasSize = Vector2.new(100,100)
  213. local face = Instance.new("ImageLabel",z)
  214. face.Size = UDim2.new(1,-30,1,0)
  215. face.Position = UDim2.new(0,15,0,0)
  216. face.BackgroundTransparency = 1
  217. face.Image='rbxassetid://46282671']]--
  218. ----------------------------------------------------
  219. z = Instance.new("Sound", char)
  220. z.SoundId = "rbxassetid://548996381"--242463565
  221. z.Looped = true
  222. z.Pitch = 1
  223. z.Volume = 1
  224. wait(.01)
  225. z:Play()
  226. ----------------------------------------------------
  227. local l = game.Lighting
  228. local sky = Instance.new("Sky",l)
  229. sky.CelestialBodiesShown = false
  230. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  231. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  232. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  233. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  234. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  235. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  236. sky.StarCount = 0
  237. sky.Name = "GreenSpace"
  238. ----------------------------------------------------
  239. local m = Instance.new("Model")
  240. m.Name = "Absolution"
  241. p1 = Instance.new("Part", m)
  242. p1.BrickColor = BrickColor.new("Deep orange")
  243. p1.Material = "Neon"
  244. p1.FormFactor = Enum.FormFactor.Custom
  245. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  246. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  247. p1.CanCollide = false
  248. p1.Locked = true
  249. p1.Elasticity = 0
  250. p1.BottomSurface = Enum.SurfaceType.Smooth
  251. p1.TopSurface = Enum.SurfaceType.Smooth
  252. b1 = Instance.new("SpecialMesh", p1)
  253. b1.MeshType = Enum.MeshType.Wedge
  254. b1.Name = "Mesh"
  255. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  256. p2 = Instance.new("Part", m)
  257. p2.BrickColor = BrickColor.new("Really black")
  258. p2.FormFactor = Enum.FormFactor.Custom
  259. p2.Size = Vector3.new(1, 2.9000001, 1)
  260. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  261. p2.CanCollide = false
  262. p2.Locked = true
  263. p2.Elasticity = 0
  264. p2.BottomSurface = Enum.SurfaceType.Smooth
  265. p2.TopSurface = Enum.SurfaceType.Smooth
  266. b2 = Instance.new("BlockMesh", p2)
  267. b2.Name = "Mesh"
  268. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  269. p3 = Instance.new("Part", m)
  270. p3.BrickColor = BrickColor.new("Deep orange")
  271. p3.Material = "Neon"
  272. p3.FormFactor = Enum.FormFactor.Custom
  273. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  274. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  275. p3.CanCollide = false
  276. p3.Locked = true
  277. p3.Elasticity = 0
  278. p3.BottomSurface = Enum.SurfaceType.Smooth
  279. p3.TopSurface = Enum.SurfaceType.Smooth
  280. b3 = Instance.new("SpecialMesh", p3)
  281. b3.MeshType = Enum.MeshType.Wedge
  282. b3.Name = "Mesh"
  283. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  284. p4 = Instance.new("Part", m)
  285. p4.BrickColor = BrickColor.new("Deep orange")
  286. p4.Material = "Neon"
  287. p4.FormFactor = Enum.FormFactor.Custom
  288. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  289. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  290. p4.CanCollide = false
  291. p4.Locked = true
  292. p4.Elasticity = 0
  293. p4.BottomSurface = Enum.SurfaceType.Smooth
  294. p4.TopSurface = Enum.SurfaceType.Smooth
  295. b4 = Instance.new("SpecialMesh", p4)
  296. b4.MeshType = Enum.MeshType.Wedge
  297. b4.Name = "Mesh"
  298. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  299. p5 = Instance.new("Part", m)
  300. p5.BrickColor = BrickColor.new("Deep orange")
  301. p5.Material = "Neon"
  302. p5.FormFactor = Enum.FormFactor.Custom
  303. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  304. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  305. p5.CanCollide = false
  306. p5.Locked = true
  307. p5.Elasticity = 0
  308. p5.BottomSurface = Enum.SurfaceType.Smooth
  309. p5.TopSurface = Enum.SurfaceType.Smooth
  310. b5 = Instance.new("SpecialMesh", p5)
  311. b5.MeshType = Enum.MeshType.Wedge
  312. b5.Name = "Mesh"
  313. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  314. p6 = Instance.new("Part", m)
  315. p6.Name = "Handle"
  316. p6.BrickColor = BrickColor.new("Really black")
  317. p6.FormFactor = Enum.FormFactor.Custom
  318. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  319. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  320. p6.CanCollide = false
  321. p6.Locked = true
  322. p6.Elasticity = 0
  323. p6.BottomSurface = Enum.SurfaceType.Smooth
  324. p6.TopSurface = Enum.SurfaceType.Smooth
  325. b6 = Instance.new("BlockMesh", p6)
  326. b6.Name = "Mesh"
  327. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  328. p7 = Instance.new("Part", m)
  329. p7.BrickColor = BrickColor.new("Deep orange")
  330. p7.Material = "Neon"
  331. p7.FormFactor = Enum.FormFactor.Custom
  332. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  333. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  334. p7.CanCollide = false
  335. p7.Locked = true
  336. p7.Elasticity = 0
  337. p7.BottomSurface = Enum.SurfaceType.Smooth
  338. p7.TopSurface = Enum.SurfaceType.Smooth
  339. b7 = Instance.new("SpecialMesh", p7)
  340. b7.MeshType = Enum.MeshType.Wedge
  341. b7.Name = "Mesh"
  342. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  343. p8 = Instance.new("Part", m)
  344. p8.BrickColor = BrickColor.new("Deep orange")
  345. p8.Material = "Neon"
  346. p8.FormFactor = Enum.FormFactor.Custom
  347. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  348. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  349. p8.CanCollide = false
  350. p8.Locked = true
  351. p8.Elasticity = 0
  352. p8.BottomSurface = Enum.SurfaceType.Smooth
  353. p8.TopSurface = Enum.SurfaceType.Smooth
  354. b8 = Instance.new("SpecialMesh", p8)
  355. b8.MeshType = Enum.MeshType.Wedge
  356. b8.Name = "Mesh"
  357. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  358. p9 = Instance.new("Part", m)
  359. p9.BrickColor = BrickColor.new("Really black")
  360. p9.FormFactor = Enum.FormFactor.Custom
  361. p9.Size = Vector3.new(1, 1.07999957, 1)
  362. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  363. p9.CanCollide = false
  364. p9.Locked = true
  365. p9.Elasticity = 0
  366. p9.BottomSurface = Enum.SurfaceType.Smooth
  367. p9.TopSurface = Enum.SurfaceType.Smooth
  368. b9 = Instance.new("BlockMesh", p9)
  369. b9.Name = "Mesh"
  370. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  371. p10 = Instance.new("Part", m)
  372. p10.BrickColor = BrickColor.new("Really black")
  373. p10.FormFactor = Enum.FormFactor.Custom
  374. p10.Size = Vector3.new(1, 1.41999948, 1)
  375. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  376. p10.CanCollide = false
  377. p10.Locked = true
  378. p10.Elasticity = 0
  379. p10.BottomSurface = Enum.SurfaceType.Smooth
  380. p10.TopSurface = Enum.SurfaceType.Smooth
  381. b10 = Instance.new("BlockMesh", p10)
  382. b10.Name = "Mesh"
  383. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  384. p11 = Instance.new("Part", m)
  385. p11.BrickColor = BrickColor.new("Really black")
  386. p11.FormFactor = Enum.FormFactor.Custom
  387. p11.Size = Vector3.new(1, 1.50999951, 1)
  388. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  389. p11.CanCollide = false
  390. p11.Locked = true
  391. p11.Elasticity = 0
  392. p11.BottomSurface = Enum.SurfaceType.Smooth
  393. p11.TopSurface = Enum.SurfaceType.Smooth
  394. b11 = Instance.new("BlockMesh", p11)
  395. b11.Name = "Mesh"
  396. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  397. p12 = Instance.new("Part", m)
  398. p12.Name = "BladeCenter"
  399. p12.BrickColor = BrickColor.new("Deep orange")
  400. p12.Material = Enum.Material.Concrete
  401. p12.FormFactor = Enum.FormFactor.Symmetric
  402. p12.Size = Vector3.new(1, 2, 2)
  403. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  404. p12.CanCollide = false
  405. p12.Locked = true
  406. p12.BottomSurface = Enum.SurfaceType.Smooth
  407. p12.TopSurface = Enum.SurfaceType.Smooth
  408. b12 = Instance.new("SpecialMesh", p12)
  409. b12.MeshType = Enum.MeshType.Brick
  410. b12.Name = "Mesh"
  411. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  412. p13 = Instance.new("Part", m)
  413. p13.BrickColor = BrickColor.new("Really black")
  414. p13.FormFactor = Enum.FormFactor.Custom
  415. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  416. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  417. p13.CanCollide = false
  418. p13.Locked = true
  419. p13.Elasticity = 0
  420. p13.BottomSurface = Enum.SurfaceType.Smooth
  421. p13.TopSurface = Enum.SurfaceType.Smooth
  422. b13 = Instance.new("BlockMesh", p13)
  423. b13.Name = "Mesh"
  424. b13.Scale = Vector3.new(1, 1, 0.400000006)
  425. p14 = Instance.new("Part", m)
  426. p14.BrickColor = BrickColor.new("Really black")
  427. p14.FormFactor = Enum.FormFactor.Custom
  428. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  429. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  430. p14.CanCollide = false
  431. p14.Locked = true
  432. p14.Elasticity = 0
  433. p14.BottomSurface = Enum.SurfaceType.Smooth
  434. p14.TopSurface = Enum.SurfaceType.Smooth
  435. b14 = Instance.new("BlockMesh", p14)
  436. b14.Name = "Mesh"
  437. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  438. p15 = Instance.new("Part", m)
  439. p15.BrickColor = BrickColor.new("Really black")
  440. p15.FormFactor = Enum.FormFactor.Custom
  441. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  442. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  443. p15.CanCollide = false
  444. p15.Locked = true
  445. p15.Elasticity = 0
  446. p15.BottomSurface = Enum.SurfaceType.Smooth
  447. p15.TopSurface = Enum.SurfaceType.Smooth
  448. b15 = Instance.new("BlockMesh", p15)
  449. b15.Name = "Mesh"
  450. b15.Scale = Vector3.new(1, 1, 0.400000006)
  451. p16 = Instance.new("Part", m)
  452. p16.BrickColor = BrickColor.new("Really black")
  453. p16.FormFactor = Enum.FormFactor.Custom
  454. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  455. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  456. p16.CanCollide = false
  457. p16.Locked = true
  458. p16.Elasticity = 0
  459. p16.BottomSurface = Enum.SurfaceType.Smooth
  460. p16.TopSurface = Enum.SurfaceType.Smooth
  461. b16 = Instance.new("BlockMesh", p16)
  462. b16.Name = "Mesh"
  463. b16.Scale = Vector3.new(1, 1, 0.400000006)
  464. p17 = Instance.new("Part", m)
  465. p17.BrickColor = BrickColor.new("Really black")
  466. p17.FormFactor = Enum.FormFactor.Custom
  467. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  468. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  469. p17.CanCollide = false
  470. p17.Locked = true
  471. p17.Elasticity = 0
  472. p17.BottomSurface = Enum.SurfaceType.Smooth
  473. p17.TopSurface = Enum.SurfaceType.Smooth
  474. b17 = Instance.new("BlockMesh", p17)
  475. b17.Name = "Mesh"
  476. b17.Scale = Vector3.new(1, 1, 0.400000006)
  477. p18 = Instance.new("WedgePart", m)
  478. p18.BrickColor = BrickColor.new("Deep orange")
  479. p18.Name = "BladePart1"
  480. p18.Material = Enum.Material.Concrete
  481. p18.Name = "Wedge"
  482. p18.FormFactor = Enum.FormFactor.Symmetric
  483. p18.Size = Vector3.new(1, 4, 2)
  484. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  485. p18.CanCollide = false
  486. p18.Locked = true
  487. p18.BottomSurface = Enum.SurfaceType.Smooth
  488. p18.TopSurface = Enum.SurfaceType.Smooth
  489. b18 = Instance.new("SpecialMesh", p18)
  490. b18.MeshType = Enum.MeshType.Wedge
  491. b18.Name = "Mesh"
  492. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  493. p19 = Instance.new("WedgePart", m)
  494. p19.BrickColor = BrickColor.new("Deep orange")
  495. p19.Name = "BladePart2"
  496. p19.Material = Enum.Material.Concrete
  497. p19.Name = "Wedge"
  498. p19.FormFactor = Enum.FormFactor.Symmetric
  499. p19.Size = Vector3.new(1, 4, 2)
  500. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  501. p19.CanCollide = false
  502. p19.Locked = true
  503. p19.BottomSurface = Enum.SurfaceType.Smooth
  504. p19.TopSurface = Enum.SurfaceType.Smooth
  505. b19 = Instance.new("SpecialMesh", p19)
  506. b19.MeshType = Enum.MeshType.Wedge
  507. b19.Name = "Mesh"
  508. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  509. p20 = Instance.new("Part", m)
  510. p20.BrickColor = BrickColor.new("Really black")
  511. p20.FormFactor = Enum.FormFactor.Custom
  512. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  513. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  514. p20.CanCollide = false
  515. p20.Locked = true
  516. p20.Elasticity = 0
  517. p20.BottomSurface = Enum.SurfaceType.Smooth
  518. p20.TopSurface = Enum.SurfaceType.Smooth
  519. b20 = Instance.new("BlockMesh", p20)
  520. b20.Name = "Mesh"
  521. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  522. p21 = Instance.new("Part", m)
  523. p21.BrickColor = BrickColor.new("Deep orange")
  524. p21.Material = "Neon"
  525. p21.FormFactor = Enum.FormFactor.Custom
  526. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  527. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  528. p21.CanCollide = false
  529. p21.Locked = true
  530. p21.Elasticity = 0
  531. p21.BottomSurface = Enum.SurfaceType.Smooth
  532. p21.TopSurface = Enum.SurfaceType.Smooth
  533. b21 = Instance.new("SpecialMesh", p21)
  534. b21.MeshType = Enum.MeshType.Wedge
  535. b21.Name = "Mesh"
  536. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  537. w1 = Instance.new("Weld", p1)
  538. w1.Name = "Part_Weld"
  539. w1.Part0 = p1
  540. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  541. w1.Part1 = p2
  542. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  543. w2 = Instance.new("Weld", p2)
  544. w2.Name = "Part_Weld"
  545. w2.Part0 = p2
  546. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  547. w2.Part1 = p3
  548. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  549. w3 = Instance.new("Weld", p3)
  550. w3.Name = "Part_Weld"
  551. w3.Part0 = p3
  552. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  553. w3.Part1 = p4
  554. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  555. w4 = Instance.new("Weld", p4)
  556. w4.Name = "Part_Weld"
  557. w4.Part0 = p4
  558. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  559. w4.Part1 = p5
  560. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  561. w5 = Instance.new("Weld", p5)
  562. w5.Name = "Part_Weld"
  563. w5.Part0 = p5
  564. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  565. w5.Part1 = p6
  566. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  567. w6 = Instance.new("Weld", p6)
  568. w6.Name = "Part_Weld"
  569. w6.Part0 = p6
  570. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  571. w6.Part1 = p7
  572. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  573. w7 = Instance.new("Weld", p7)
  574. w7.Name = "Part_Weld"
  575. w7.Part0 = p7
  576. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  577. w7.Part1 = p8
  578. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  579. w8 = Instance.new("Weld", p8)
  580. w8.Name = "Part_Weld"
  581. w8.Part0 = p8
  582. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  583. w8.Part1 = p9
  584. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  585. w9 = Instance.new("Weld", p9)
  586. w9.Name = "Part_Weld"
  587. w9.Part0 = p9
  588. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  589. w9.Part1 = p10
  590. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  591. w10 = Instance.new("Weld", p10)
  592. w10.Name = "Part_Weld"
  593. w10.Part0 = p10
  594. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  595. w10.Part1 = p11
  596. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  597. w11 = Instance.new("Weld", p11)
  598. w11.Name = "Part_Weld"
  599. w11.Part0 = p11
  600. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  601. w11.Part1 = p12
  602. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  603. w12 = Instance.new("Weld", p12)
  604. w12.Name = "Part_Weld"
  605. w12.Part0 = p12
  606. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  607. w12.Part1 = p13
  608. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  609. w13 = Instance.new("Weld", p13)
  610. w13.Name = "Part_Weld"
  611. w13.Part0 = p13
  612. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  613. w13.Part1 = p14
  614. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  615. w14 = Instance.new("Weld", p14)
  616. w14.Name = "Part_Weld"
  617. w14.Part0 = p14
  618. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  619. w14.Part1 = p15
  620. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  621. w15 = Instance.new("Weld", p15)
  622. w15.Name = "Part_Weld"
  623. w15.Part0 = p15
  624. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  625. w15.Part1 = p16
  626. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  627. w16 = Instance.new("Weld", p16)
  628. w16.Name = "Part_Weld"
  629. w16.Part0 = p16
  630. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  631. w16.Part1 = p17
  632. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  633. w17 = Instance.new("Weld", p17)
  634. w17.Name = "Wedge_Weld"
  635. w17.Part0 = p17
  636. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  637. w17.Part1 = p18
  638. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  639. w18 = Instance.new("Weld", p18)
  640. w18.Name = "Wedge_Weld"
  641. w18.Part0 = p18
  642. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  643. w18.Part1 = p19
  644. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  645. w19 = Instance.new("Weld", p19)
  646. w19.Name = "Part_Weld"
  647. w19.Part0 = p19
  648. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  649. w19.Part1 = p20
  650. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  651. w20 = Instance.new("Weld", p20)
  652. w20.Name = "Part_Weld"
  653. w20.Part0 = p20
  654. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  655. w20.Part1 = p21
  656. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  657. m.Parent = char
  658. m:MakeJoints()
  659. ----------------------------------------------------
  660. local cor = Instance.new("Part", char.Absolution)
  661. cor.Name = "Thingy"
  662. cor.Locked = true
  663. cor.BottomSurface = 0
  664. cor.CanCollide = false
  665. cor.Size = Vector3.new(1, 13, 1)
  666. cor.Transparency = 1
  667. cor.TopSurface = 0
  668. corw = Instance.new("Weld", cor)
  669. corw.Part0 = rarm
  670. corw.Part1 = cor
  671. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  672. corw.C1 = CFrame.new(0, 0, 0)
  673. weld1 = Instance.new("Weld", char.Absolution)
  674. weld1.Part0 = cor
  675. weld1.Part1 = p6
  676. weld1.C0 = CFrame.new(0, 0, 0)
  677. ----------------------------------------------------
  678. hitb = Instance.new("Part", char.Absolution)
  679. hitb.Name = "Thingy2"
  680. hitb.Locked = true
  681. hitb.BottomSurface = 0
  682. hitb.CanCollide = false
  683. hitb.Size = Vector3.new(0, 8, 6)
  684. hitb.Transparency = 1
  685. hitb.TopSurface = 0
  686. weld2 = Instance.new("Weld", char.Absolution)
  687. weld2.Part0 = hitb
  688. weld2.Part1 = p12
  689. weld2.C0 = CFrame.new(0, .6, 1)
  690. ----------------------------------------------------
  691. local m = Instance.new("Model")
  692. m.Name = "Claw"
  693. p1 = Instance.new("Part", m)
  694. p1.BrickColor = BrickColor.new("Really black")
  695. p1.FormFactor = Enum.FormFactor.Custom
  696. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  697. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  698. p1.CanCollide = false
  699. p1.Locked = true
  700. p1.BottomSurface = Enum.SurfaceType.Smooth
  701. p1.TopSurface = Enum.SurfaceType.Smooth
  702. b1 = Instance.new("BlockMesh", p1)
  703. b1.Name = "Mesh"
  704. p2 = Instance.new("WedgePart", m)
  705. p2.BrickColor = BrickColor.new("Really black")
  706. p2.Name = "Wedge"
  707. p2.FormFactor = Enum.FormFactor.Custom
  708. p2.Size = Vector3.new(3, 1, 0.5)
  709. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  710. p2.CanCollide = false
  711. p2.Locked = true
  712. p2.BottomSurface = Enum.SurfaceType.Smooth
  713. p2.TopSurface = Enum.SurfaceType.Smooth
  714. p3 = Instance.new("Part", m)
  715. p3.BrickColor = BrickColor.new("Really black")
  716. p3.FormFactor = Enum.FormFactor.Custom
  717. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  718. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  719. p3.CanCollide = false
  720. p3.Locked = true
  721. p3.BottomSurface = Enum.SurfaceType.Smooth
  722. p3.TopSurface = Enum.SurfaceType.Smooth
  723. b2 = Instance.new("BlockMesh", p3)
  724. b2.Name = "Mesh"
  725. p4 = Instance.new("WedgePart", m)
  726. p4.BrickColor = BrickColor.new("Really black")
  727. p4.Name = "Wedge"
  728. p4.FormFactor = Enum.FormFactor.Custom
  729. p4.Size = Vector3.new(3, 1, 0.5)
  730. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  731. p4.CanCollide = false
  732. p4.Locked = true
  733. p4.BottomSurface = Enum.SurfaceType.Smooth
  734. p4.TopSurface = Enum.SurfaceType.Smooth
  735. p5 = Instance.new("Part", m)
  736. p5.BrickColor = BrickColor.new("Really black")
  737. p5.FormFactor = Enum.FormFactor.Custom
  738. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  739. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  740. p5.CanCollide = false
  741. p5.Locked = true
  742. p5.BottomSurface = Enum.SurfaceType.Smooth
  743. p5.TopSurface = Enum.SurfaceType.Smooth
  744. b3 = Instance.new("BlockMesh", p5)
  745. b3.Name = "Mesh"
  746. p6 = Instance.new("Part", m)
  747. p6.BrickColor = BrickColor.new("Really black")
  748. p6.FormFactor = Enum.FormFactor.Custom
  749. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  750. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  751. p6.CanCollide = false
  752. p6.Locked = true
  753. p6.BottomSurface = Enum.SurfaceType.Smooth
  754. p6.TopSurface = Enum.SurfaceType.Smooth
  755. b4 = Instance.new("BlockMesh", p6)
  756. b4.Name = "Mesh"
  757. p7 = Instance.new("Part", m)
  758. p7.BrickColor = BrickColor.new("Really black")
  759. p7.FormFactor = Enum.FormFactor.Custom
  760. p7.Size = Vector3.new(3, 1, 1.20000005)
  761. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  762. p7.CanCollide = false
  763. p7.Locked = true
  764. p7.BottomSurface = Enum.SurfaceType.Smooth
  765. p7.TopSurface = Enum.SurfaceType.Smooth
  766. b5 = Instance.new("BlockMesh", p7)
  767. b5.Name = "Mesh"
  768. p8 = Instance.new("Part", m)
  769. p8.BrickColor = BrickColor.new("Deep orange")
  770. p8.Material = "Neon"
  771. p8.FormFactor = Enum.FormFactor.Symmetric
  772. p8.Size = Vector3.new(1, 1, 1)
  773. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  774. p8.CanCollide = false
  775. p8.Locked = true
  776. b6 = Instance.new("SpecialMesh", p8)
  777. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  778. b6.TextureId = ""
  779. b6.MeshType = Enum.MeshType.FileMesh
  780. b6.Name = "Mesh"
  781. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  782. p9 = Instance.new("Part", m)
  783. p9.BrickColor = BrickColor.new("Really black")
  784. p9.FormFactor = Enum.FormFactor.Custom
  785. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  786. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  787. p9.CanCollide = false
  788. p9.Locked = true
  789. p9.BottomSurface = Enum.SurfaceType.Smooth
  790. p9.TopSurface = Enum.SurfaceType.Smooth
  791. b7 = Instance.new("BlockMesh", p9)
  792. b7.Name = "Mesh"
  793. p10 = Instance.new("Part", m)
  794. p10.BrickColor = BrickColor.new("Deep orange")
  795. p10.Material = "Neon"
  796. p10.FormFactor = Enum.FormFactor.Symmetric
  797. p10.Size = Vector3.new(1, 1, 1)
  798. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  799. p10.CanCollide = false
  800. p10.Locked = true
  801. b8 = Instance.new("SpecialMesh", p10)
  802. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  803. b8.TextureId = ""
  804. b8.MeshType = Enum.MeshType.FileMesh
  805. b8.Name = "Mesh"
  806. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  807. p11 = Instance.new("Part", m)
  808. p11.BrickColor = BrickColor.new("Really black")
  809. p11.FormFactor = Enum.FormFactor.Custom
  810. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  811. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  812. p11.CanCollide = false
  813. p11.Locked = true
  814. p11.BottomSurface = Enum.SurfaceType.Smooth
  815. p11.TopSurface = Enum.SurfaceType.Smooth
  816. b9 = Instance.new("BlockMesh", p11)
  817. b9.Name = "Mesh"
  818. p12 = Instance.new("Part", m)
  819. p12.BrickColor = BrickColor.new("Really black")
  820. p12.FormFactor = Enum.FormFactor.Custom
  821. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  822. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  823. p12.CanCollide = false
  824. p12.Locked = true
  825. p12.BottomSurface = Enum.SurfaceType.Smooth
  826. p12.TopSurface = Enum.SurfaceType.Smooth
  827. b10 = Instance.new("BlockMesh", p12)
  828. b10.Name = "Mesh"
  829. p13 = Instance.new("Part", m)
  830. p13.BrickColor = BrickColor.new("Really black")
  831. p13.FormFactor = Enum.FormFactor.Custom
  832. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  833. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  834. p13.CanCollide = false
  835. p13.Locked = true
  836. p13.BottomSurface = Enum.SurfaceType.Smooth
  837. p13.TopSurface = Enum.SurfaceType.Smooth
  838. b11 = Instance.new("BlockMesh", p13)
  839. b11.Name = "Mesh"
  840. p14 = Instance.new("Part", m)
  841. p14.BrickColor = BrickColor.new("Deep orange")
  842. p14.Material = "Neon"
  843. p14.FormFactor = Enum.FormFactor.Symmetric
  844. p14.Size = Vector3.new(1, 1, 1)
  845. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  846. p14.CanCollide = false
  847. p14.Locked = true
  848. b12 = Instance.new("SpecialMesh", p14)
  849. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  850. b12.TextureId = ""
  851. b12.MeshType = Enum.MeshType.FileMesh
  852. b12.Name = "Mesh"
  853. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  854. p15 = Instance.new("Part", m)
  855. p15.BrickColor = BrickColor.new("Deep orange")
  856. p15.Transparency = 1
  857. p15.Name = "ArmPart"
  858. p15.FormFactor = Enum.FormFactor.Custom
  859. p15.Size = Vector3.new(2, 1, 1)
  860. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  861. p15.CanCollide = false
  862. p15.Locked = true
  863. p15.BottomSurface = Enum.SurfaceType.Smooth
  864. p15.TopSurface = Enum.SurfaceType.Smooth
  865. b13 = Instance.new("BlockMesh", p15)
  866. b13.Name = "Mesh"
  867. p16 = Instance.new("Part", m)
  868. p16.BrickColor = BrickColor.new("Really black")
  869. p16.FormFactor = Enum.FormFactor.Custom
  870. p16.Size = Vector3.new(3, 1, 2.4000001)
  871. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  872. p16.CanCollide = false
  873. p16.Locked = true
  874. p16.BottomSurface = Enum.SurfaceType.Smooth
  875. p16.TopSurface = Enum.SurfaceType.Smooth
  876. b14 = Instance.new("BlockMesh", p16)
  877. b14.Name = "Mesh"
  878. p17 = Instance.new("Part", m)
  879. p17.BrickColor = BrickColor.new("Really black")
  880. p17.FormFactor = Enum.FormFactor.Custom
  881. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  882. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  883. p17.CanCollide = false
  884. p17.Locked = true
  885. p17.BottomSurface = Enum.SurfaceType.Smooth
  886. p17.TopSurface = Enum.SurfaceType.Smooth
  887. b15 = Instance.new("BlockMesh", p17)
  888. b15.Name = "Mesh"
  889. p18 = Instance.new("Part", m)
  890. p18.BrickColor = BrickColor.new("Deep orange")
  891. p18.Material = "Neon"
  892. p18.FormFactor = Enum.FormFactor.Symmetric
  893. p18.Size = Vector3.new(1, 1, 1)
  894. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  895. p18.CanCollide = false
  896. p18.Locked = true
  897. b16 = Instance.new("SpecialMesh", p18)
  898. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  899. b16.TextureId = ""
  900. b16.MeshType = Enum.MeshType.FileMesh
  901. b16.Name = "Mesh"
  902. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  903. p19 = Instance.new("Part", m)
  904. p19.BrickColor = BrickColor.new("Deep orange")
  905. p19.Material = "Neon"
  906. p19.FormFactor = Enum.FormFactor.Symmetric
  907. p19.Size = Vector3.new(1, 1, 1)
  908. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  909. p19.CanCollide = false
  910. p19.Locked = true
  911. b17 = Instance.new("SpecialMesh", p19)
  912. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  913. b17.TextureId = ""
  914. b17.MeshType = Enum.MeshType.FileMesh
  915. b17.Name = "Mesh"
  916. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  917. p20 = Instance.new("Part", m)
  918. p20.BrickColor = BrickColor.new("Really black")
  919. p20.FormFactor = Enum.FormFactor.Custom
  920. p20.Size = Vector3.new(3, 1, 2.4000001)
  921. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  922. p20.CanCollide = false
  923. p20.Locked = true
  924. p20.BottomSurface = Enum.SurfaceType.Smooth
  925. p20.TopSurface = Enum.SurfaceType.Smooth
  926. b18 = Instance.new("BlockMesh", p20)
  927. b18.Name = "Mesh"
  928. p21 = Instance.new("Part", m)
  929. p21.BrickColor = BrickColor.new("Really black")
  930. p21.FormFactor = Enum.FormFactor.Custom
  931. p21.Size = Vector3.new(3, 1, 1.19999993)
  932. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  933. p21.CanCollide = false
  934. p21.Locked = true
  935. p21.BottomSurface = Enum.SurfaceType.Smooth
  936. p21.TopSurface = Enum.SurfaceType.Smooth
  937. b19 = Instance.new("BlockMesh", p21)
  938. b19.Name = "Mesh"
  939. p22 = Instance.new("WedgePart", m)
  940. p22.BrickColor = BrickColor.new("Really black")
  941. p22.Name = "Wedge"
  942. p22.FormFactor = Enum.FormFactor.Custom
  943. p22.Size = Vector3.new(3, 1, 0.5)
  944. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  945. p22.CanCollide = false
  946. p22.Locked = true
  947. p22.BottomSurface = Enum.SurfaceType.Smooth
  948. p22.TopSurface = Enum.SurfaceType.Smooth
  949. p23 = Instance.new("Part", m)
  950. p23.BrickColor = BrickColor.new("Really black")
  951. p23.FormFactor = Enum.FormFactor.Custom
  952. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  953. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  954. p23.CanCollide = false
  955. p23.Locked = true
  956. p23.BottomSurface = Enum.SurfaceType.Smooth
  957. p23.TopSurface = Enum.SurfaceType.Smooth
  958. b20 = Instance.new("BlockMesh", p23)
  959. b20.Name = "Mesh"
  960. p24 = Instance.new("WedgePart", m)
  961. p24.BrickColor = BrickColor.new("Really black")
  962. p24.Name = "Wedge"
  963. p24.FormFactor = Enum.FormFactor.Custom
  964. p24.Size = Vector3.new(3, 1, 0.5)
  965. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  966. p24.CanCollide = false
  967. p24.Locked = true
  968. p24.BottomSurface = Enum.SurfaceType.Smooth
  969. p24.TopSurface = Enum.SurfaceType.Smooth
  970. p25 = Instance.new("Part", m)
  971. p25.BrickColor = BrickColor.new("Deep orange")
  972. p25.Material = "Neon"
  973. p25.FormFactor = Enum.FormFactor.Symmetric
  974. p25.Size = Vector3.new(1, 1, 1)
  975. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  976. p25.CanCollide = false
  977. p25.Locked = true
  978. p25.BottomSurface = Enum.SurfaceType.Smooth
  979. p25.TopSurface = Enum.SurfaceType.Smooth
  980. b21 = Instance.new("SpecialMesh", p25)
  981. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  982. b21.TextureId = ""
  983. b21.MeshType = Enum.MeshType.FileMesh
  984. b21.Name = "Mesh"
  985. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  986. p26 = Instance.new("Part", m)
  987. p26.BrickColor = BrickColor.new("Really black")
  988. p26.FormFactor = Enum.FormFactor.Symmetric
  989. p26.Size = Vector3.new(1, 1, 1)
  990. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  991. p26.CanCollide = false
  992. p26.Locked = true
  993. p26.BottomSurface = Enum.SurfaceType.Smooth
  994. p26.TopSurface = Enum.SurfaceType.Smooth
  995. b22 = Instance.new("SpecialMesh", p26)
  996. b22.MeshType = Enum.MeshType.Brick
  997. b22.Name = "Mesh"
  998. w1 = Instance.new("Weld", p1)
  999. w1.Name = "Wedge_Weld"
  1000. w1.Part0 = p1
  1001. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1002. w1.Part1 = p2
  1003. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1004. w2 = Instance.new("Weld", p2)
  1005. w2.Name = "Part_Weld"
  1006. w2.Part0 = p2
  1007. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1008. w2.Part1 = p3
  1009. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1010. w3 = Instance.new("Weld", p3)
  1011. w3.Name = "Wedge_Weld"
  1012. w3.Part0 = p3
  1013. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1014. w3.Part1 = p4
  1015. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1016. w4 = Instance.new("Weld", p4)
  1017. w4.Name = "Part_Weld"
  1018. w4.Part0 = p4
  1019. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1020. w4.Part1 = p5
  1021. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1022. w5 = Instance.new("Weld", p5)
  1023. w5.Name = "Part_Weld"
  1024. w5.Part0 = p5
  1025. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1026. w5.Part1 = p6
  1027. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1028. w6 = Instance.new("Weld", p6)
  1029. w6.Name = "Part_Weld"
  1030. w6.Part0 = p6
  1031. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1032. w6.Part1 = p7
  1033. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1034. w7 = Instance.new("Weld", p7)
  1035. w7.Name = "Part_Weld"
  1036. w7.Part0 = p7
  1037. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1038. w7.Part1 = p8
  1039. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1040. w8 = Instance.new("Weld", p8)
  1041. w8.Name = "Part_Weld"
  1042. w8.Part0 = p8
  1043. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1044. w8.Part1 = p9
  1045. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1046. w9 = Instance.new("Weld", p9)
  1047. w9.Name = "Part_Weld"
  1048. w9.Part0 = p9
  1049. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1050. w9.Part1 = p10
  1051. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1052. w10 = Instance.new("Weld", p10)
  1053. w10.Name = "Part_Weld"
  1054. w10.Part0 = p10
  1055. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1056. w10.Part1 = p11
  1057. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1058. w11 = Instance.new("Weld", p11)
  1059. w11.Name = "Part_Weld"
  1060. w11.Part0 = p11
  1061. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1062. w11.Part1 = p12
  1063. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1064. w12 = Instance.new("Weld", p12)
  1065. w12.Name = "Part_Weld"
  1066. w12.Part0 = p12
  1067. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1068. w12.Part1 = p13
  1069. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1070. w13 = Instance.new("Weld", p13)
  1071. w13.Name = "Part_Weld"
  1072. w13.Part0 = p13
  1073. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1074. w13.Part1 = p14
  1075. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1076. w14 = Instance.new("Weld", p14)
  1077. w14.Name = "ArmPart_Weld"
  1078. w14.Part0 = p14
  1079. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1080. w14.Part1 = p15
  1081. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1082. w15 = Instance.new("Weld", p15)
  1083. w15.Name = "Part_Weld"
  1084. w15.Part0 = p15
  1085. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1086. w15.Part1 = p16
  1087. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1088. w16 = Instance.new("Weld", p16)
  1089. w16.Name = "Part_Weld"
  1090. w16.Part0 = p16
  1091. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1092. w16.Part1 = p17
  1093. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1094. w17 = Instance.new("Weld", p17)
  1095. w17.Name = "Part_Weld"
  1096. w17.Part0 = p17
  1097. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1098. w17.Part1 = p18
  1099. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1100. w18 = Instance.new("Weld", p18)
  1101. w18.Name = "Part_Weld"
  1102. w18.Part0 = p18
  1103. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1104. w18.Part1 = p19
  1105. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1106. w19 = Instance.new("Weld", p19)
  1107. w19.Name = "Part_Weld"
  1108. w19.Part0 = p19
  1109. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1110. w19.Part1 = p20
  1111. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1112. w20 = Instance.new("Weld", p20)
  1113. w20.Name = "Part_Weld"
  1114. w20.Part0 = p20
  1115. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1116. w20.Part1 = p21
  1117. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1118. w21 = Instance.new("Weld", p21)
  1119. w21.Name = "Wedge_Weld"
  1120. w21.Part0 = p21
  1121. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1122. w21.Part1 = p22
  1123. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1124. w22 = Instance.new("Weld", p22)
  1125. w22.Name = "Part_Weld"
  1126. w22.Part0 = p22
  1127. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1128. w22.Part1 = p23
  1129. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1130. w23 = Instance.new("Weld", p23)
  1131. w23.Name = "Wedge_Weld"
  1132. w23.Part0 = p23
  1133. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1134. w23.Part1 = p24
  1135. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1136. w24 = Instance.new("Weld", p24)
  1137. w24.Name = "Part_Weld"
  1138. w24.Part0 = p24
  1139. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1140. w24.Part1 = p25
  1141. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1142. w25 = Instance.new("Weld", p25)
  1143. w25.Name = "Part_Weld"
  1144. w25.Part0 = p25
  1145. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1146. w25.Part1 = p26
  1147. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1148. m.Parent = char
  1149. m:MakeJoints()
  1150. ----------------------------------------------------
  1151. local cor2 = Instance.new("Part", char.Claw)
  1152. cor2.Name = "Thingy"
  1153. cor2.Locked = true
  1154. cor2.BottomSurface = 0
  1155. cor2.CanCollide = false
  1156. cor2.Size = Vector3.new(2, 1, 1)
  1157. cor2.Transparency = 1
  1158. cor2.TopSurface = 0
  1159. corw2 = Instance.new("Weld", cor2)
  1160. corw2.Part0 = larm
  1161. corw2.Part1 = cor2
  1162. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1163. corw2.C1 = CFrame.new(0, 0, 0)
  1164. weld2 = Instance.new("Weld", char.Claw)
  1165. weld2.Part0 = cor2
  1166. weld2.Part1 = char.Claw.ArmPart
  1167. weld2.C0 = CFrame.new(0, 0, 0)
  1168. ----------------------------------------------------
  1169. local m = Instance.new("Model")
  1170. m.Name = "LeftArm"
  1171. p1 = Instance.new("WedgePart", m)
  1172. p1.BrickColor = BrickColor.new("Deep orange")
  1173. p1.Material = Enum.Material.Neon
  1174. p1.Name = "Wedge"
  1175. p1.FormFactor = Enum.FormFactor.Custom
  1176. p1.Size = Vector3.new(1, 1.19999981, 4)
  1177. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
  1178. p1.CanCollide = false
  1179. p1.Locked = true
  1180. p1.TopSurface = Enum.SurfaceType.Smooth
  1181. b1 = Instance.new("SpecialMesh", p1)
  1182. b1.MeshType = Enum.MeshType.Wedge
  1183. b1.Name = "Mesh"
  1184. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1185. p2 = Instance.new("WedgePart", m)
  1186. p2.BrickColor = BrickColor.new("Deep orange")
  1187. p2.Material = Enum.Material.Neon
  1188. p2.Name = "Wedge"
  1189. p2.FormFactor = Enum.FormFactor.Custom
  1190. p2.Size = Vector3.new(1, 1.19999981, 4)
  1191. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
  1192. p2.CanCollide = false
  1193. p2.Locked = true
  1194. p2.TopSurface = Enum.SurfaceType.Smooth
  1195. b2 = Instance.new("SpecialMesh", p2)
  1196. b2.MeshType = Enum.MeshType.Wedge
  1197. b2.Name = "Mesh"
  1198. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1199. p3 = Instance.new("WedgePart", m)
  1200. p3.BrickColor = BrickColor.new("Deep orange")
  1201. p3.Material = Enum.Material.Neon
  1202. p3.Name = "Wedge"
  1203. p3.FormFactor = Enum.FormFactor.Custom
  1204. p3.Size = Vector3.new(1, 1.19999981, 4)
  1205. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
  1206. p3.CanCollide = false
  1207. p3.Locked = true
  1208. p3.TopSurface = Enum.SurfaceType.Smooth
  1209. b3 = Instance.new("SpecialMesh", p3)
  1210. b3.MeshType = Enum.MeshType.Wedge
  1211. b3.Name = "Mesh"
  1212. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1213. p4 = Instance.new("WedgePart", m)
  1214. p4.BrickColor = BrickColor.new("Deep orange")
  1215. p4.Material = Enum.Material.Neon
  1216. p4.Name = "Wedge"
  1217. p4.FormFactor = Enum.FormFactor.Custom
  1218. p4.Size = Vector3.new(1, 1.19999981, 4)
  1219. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
  1220. p4.CanCollide = false
  1221. p4.Locked = true
  1222. p4.TopSurface = Enum.SurfaceType.Smooth
  1223. b4 = Instance.new("SpecialMesh", p4)
  1224. b4.MeshType = Enum.MeshType.Wedge
  1225. b4.Name = "Mesh"
  1226. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1227. p5 = Instance.new("WedgePart", m)
  1228. p5.BrickColor = BrickColor.new("Deep orange")
  1229. p5.Material = Enum.Material.Neon
  1230. p5.Name = "Wedge"
  1231. p5.FormFactor = Enum.FormFactor.Custom
  1232. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1233. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
  1234. p5.CanCollide = false
  1235. p5.Locked = true
  1236. p5.TopSurface = Enum.SurfaceType.Smooth
  1237. b5 = Instance.new("SpecialMesh", p5)
  1238. b5.MeshType = Enum.MeshType.Wedge
  1239. b5.Name = "Mesh"
  1240. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1241. p6 = Instance.new("WedgePart", m)
  1242. p6.BrickColor = BrickColor.new("Deep orange")
  1243. p6.Material = Enum.Material.Neon
  1244. p6.Name = "Wedge"
  1245. p6.FormFactor = Enum.FormFactor.Custom
  1246. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1247. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
  1248. p6.CanCollide = false
  1249. p6.Locked = true
  1250. p6.TopSurface = Enum.SurfaceType.Smooth
  1251. b6 = Instance.new("SpecialMesh", p6)
  1252. b6.MeshType = Enum.MeshType.Wedge
  1253. b6.Name = "Mesh"
  1254. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1255. p7 = Instance.new("WedgePart", m)
  1256. p7.BrickColor = BrickColor.new("Deep orange")
  1257. p7.Material = Enum.Material.Neon
  1258. p7.Name = "Wedge"
  1259. p7.FormFactor = Enum.FormFactor.Custom
  1260. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1261. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
  1262. p7.CanCollide = false
  1263. p7.Locked = true
  1264. p7.TopSurface = Enum.SurfaceType.Smooth
  1265. b7 = Instance.new("SpecialMesh", p7)
  1266. b7.MeshType = Enum.MeshType.Wedge
  1267. b7.Name = "Mesh"
  1268. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1269. p8 = Instance.new("Part", m)
  1270. p8.BrickColor = BrickColor.new("Really black")
  1271. p8.Material = Enum.Material.Neon
  1272. p8.FormFactor = Enum.FormFactor.Custom
  1273. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1274. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
  1275. p8.CanCollide = false
  1276. p8.Locked = true
  1277. p8.BottomSurface = Enum.SurfaceType.Smooth
  1278. p8.TopSurface = Enum.SurfaceType.Smooth
  1279. b8 = Instance.new("SpecialMesh", p8)
  1280. b8.MeshType = Enum.MeshType.Sphere
  1281. b8.Name = "Mesh"
  1282. p9 = Instance.new("Part", m)
  1283. p9.BrickColor = BrickColor.new("Really black")
  1284. p9.Material = Enum.Material.Neon
  1285. p9.FormFactor = Enum.FormFactor.Custom
  1286. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1287. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
  1288. p9.CanCollide = false
  1289. p9.Locked = true
  1290. p9.BottomSurface = Enum.SurfaceType.Smooth
  1291. p9.TopSurface = Enum.SurfaceType.Smooth
  1292. b9 = Instance.new("SpecialMesh", p9)
  1293. b9.MeshType = Enum.MeshType.Sphere
  1294. b9.Name = "Mesh"
  1295. p10 = Instance.new("Part", m)
  1296. p10.BrickColor = BrickColor.new("Deep orange")
  1297. p10.Material = Enum.Material.Neon
  1298. p10.FormFactor = Enum.FormFactor.Custom
  1299. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1300. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
  1301. p10.CanCollide = false
  1302. p10.Locked = true
  1303. p10.BottomSurface = Enum.SurfaceType.Smooth
  1304. p10.TopSurface = Enum.SurfaceType.Smooth
  1305. p11 = Instance.new("Part", m)
  1306. p11.BrickColor = BrickColor.new("Deep orange")
  1307. p11.Material = Enum.Material.Neon
  1308. p11.FormFactor = Enum.FormFactor.Custom
  1309. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1310. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
  1311. p11.CanCollide = false
  1312. p11.Locked = true
  1313. p11.BottomSurface = Enum.SurfaceType.Smooth
  1314. p11.TopSurface = Enum.SurfaceType.Smooth
  1315. p12 = Instance.new("Part", m)
  1316. p12.BrickColor = BrickColor.new("Really black")
  1317. p12.Material = Enum.Material.Neon
  1318. p12.FormFactor = Enum.FormFactor.Custom
  1319. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1320. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
  1321. p12.CanCollide = false
  1322. p12.Locked = true
  1323. p12.BottomSurface = Enum.SurfaceType.Smooth
  1324. p12.TopSurface = Enum.SurfaceType.Smooth
  1325. b10 = Instance.new("SpecialMesh", p12)
  1326. b10.MeshType = Enum.MeshType.Sphere
  1327. b10.Name = "Mesh"
  1328. p13 = Instance.new("Part", m)
  1329. p13.BrickColor = BrickColor.new("Deep orange")
  1330. p13.Material = Enum.Material.Neon
  1331. p13.FormFactor = Enum.FormFactor.Custom
  1332. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1333. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
  1334. p13.CanCollide = false
  1335. p13.Locked = true
  1336. p13.BottomSurface = Enum.SurfaceType.Smooth
  1337. p13.TopSurface = Enum.SurfaceType.Smooth
  1338. b11 = Instance.new("SpecialMesh", p13)
  1339. b11.MeshType = Enum.MeshType.Sphere
  1340. b11.Name = "Mesh"
  1341. p14 = Instance.new("Part", m)
  1342. p14.BrickColor = BrickColor.new("Really black")
  1343. p14.Material = Enum.Material.Neon
  1344. p14.FormFactor = Enum.FormFactor.Custom
  1345. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1346. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
  1347. p14.CanCollide = false
  1348. p14.Locked = true
  1349. p14.BottomSurface = Enum.SurfaceType.Smooth
  1350. p14.TopSurface = Enum.SurfaceType.Smooth
  1351. b12 = Instance.new("SpecialMesh", p14)
  1352. b12.MeshType = Enum.MeshType.Sphere
  1353. b12.Name = "Mesh"
  1354. p15 = Instance.new("Part", m)
  1355. p15.BrickColor = BrickColor.new("Really black")
  1356. p15.Material = Enum.Material.Metal
  1357. p15.Name = "Main"
  1358. p15.FormFactor = Enum.FormFactor.Custom
  1359. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1360. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
  1361. p15.CanCollide = false
  1362. p15.Locked = true
  1363. p15.BottomSurface = Enum.SurfaceType.Smooth
  1364. p15.TopSurface = Enum.SurfaceType.Smooth
  1365. p16 = Instance.new("Part", m)
  1366. p16.BrickColor = BrickColor.new("Really black")
  1367. p16.Material = Enum.Material.Neon
  1368. p16.FormFactor = Enum.FormFactor.Custom
  1369. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1370. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
  1371. p16.CanCollide = false
  1372. p16.Locked = true
  1373. p16.BottomSurface = Enum.SurfaceType.Smooth
  1374. p16.TopSurface = Enum.SurfaceType.Smooth
  1375. b13 = Instance.new("SpecialMesh", p16)
  1376. b13.MeshType = Enum.MeshType.Sphere
  1377. b13.Name = "Mesh"
  1378. p17 = Instance.new("Part", m)
  1379. p17.BrickColor = BrickColor.new("Deep orange")
  1380. p17.Material = Enum.Material.Neon
  1381. p17.FormFactor = Enum.FormFactor.Custom
  1382. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1383. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
  1384. p17.CanCollide = false
  1385. p17.Locked = true
  1386. p17.BottomSurface = Enum.SurfaceType.Smooth
  1387. p17.TopSurface = Enum.SurfaceType.Smooth
  1388. p18 = Instance.new("Part", m)
  1389. p18.BrickColor = BrickColor.new("Deep orange")
  1390. p18.Material = Enum.Material.Neon
  1391. p18.FormFactor = Enum.FormFactor.Custom
  1392. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1393. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
  1394. p18.CanCollide = false
  1395. p18.Locked = true
  1396. p18.BottomSurface = Enum.SurfaceType.Smooth
  1397. p18.TopSurface = Enum.SurfaceType.Smooth
  1398. p19 = Instance.new("Part", m)
  1399. p19.BrickColor = BrickColor.new("Deep orange")
  1400. p19.Material = Enum.Material.Neon
  1401. p19.FormFactor = Enum.FormFactor.Custom
  1402. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1403. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
  1404. p19.CanCollide = false
  1405. p19.Locked = true
  1406. p19.BottomSurface = Enum.SurfaceType.Smooth
  1407. p19.TopSurface = Enum.SurfaceType.Smooth
  1408. p20 = Instance.new("Part", m)
  1409. p20.BrickColor = BrickColor.new("Deep orange")
  1410. p20.Material = Enum.Material.Neon
  1411. p20.FormFactor = Enum.FormFactor.Custom
  1412. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1413. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
  1414. p20.CanCollide = false
  1415. p20.Locked = true
  1416. p20.BottomSurface = Enum.SurfaceType.Smooth
  1417. p20.TopSurface = Enum.SurfaceType.Smooth
  1418. p21 = Instance.new("Part", m)
  1419. p21.BrickColor = BrickColor.new("Deep orange")
  1420. p21.Material = Enum.Material.Neon
  1421. p21.FormFactor = Enum.FormFactor.Custom
  1422. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1423. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
  1424. p21.CanCollide = false
  1425. p21.Locked = true
  1426. p21.BottomSurface = Enum.SurfaceType.Smooth
  1427. p21.TopSurface = Enum.SurfaceType.Smooth
  1428. p22 = Instance.new("Part", m)
  1429. p22.BrickColor = BrickColor.new("Really black")
  1430. p22.Material = Enum.Material.Neon
  1431. p22.FormFactor = Enum.FormFactor.Custom
  1432. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1433. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
  1434. p22.CanCollide = false
  1435. p22.Locked = true
  1436. p22.BottomSurface = Enum.SurfaceType.Smooth
  1437. p22.TopSurface = Enum.SurfaceType.Smooth
  1438. b14 = Instance.new("SpecialMesh", p22)
  1439. b14.MeshType = Enum.MeshType.Sphere
  1440. b14.Name = "Mesh"
  1441. p23 = Instance.new("Part", m)
  1442. p23.BrickColor = BrickColor.new("Really black")
  1443. p23.Material = Enum.Material.Neon
  1444. p23.FormFactor = Enum.FormFactor.Custom
  1445. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1446. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
  1447. p23.CanCollide = false
  1448. p23.Locked = true
  1449. p23.BottomSurface = Enum.SurfaceType.Smooth
  1450. p23.TopSurface = Enum.SurfaceType.Smooth
  1451. b15 = Instance.new("SpecialMesh", p23)
  1452. b15.MeshType = Enum.MeshType.Sphere
  1453. b15.Name = "Mesh"
  1454. p24 = Instance.new("Part", m)
  1455. p24.BrickColor = BrickColor.new("Really black")
  1456. p24.Material = Enum.Material.Neon
  1457. p24.FormFactor = Enum.FormFactor.Custom
  1458. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1459. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
  1460. p24.CanCollide = false
  1461. p24.Locked = true
  1462. p24.BottomSurface = Enum.SurfaceType.Smooth
  1463. p24.TopSurface = Enum.SurfaceType.Smooth
  1464. b16 = Instance.new("SpecialMesh", p24)
  1465. b16.MeshType = Enum.MeshType.Sphere
  1466. b16.Name = "Mesh"
  1467. w1 = Instance.new("Weld", p1)
  1468. w1.Name = "Wedge_Weld"
  1469. w1.Part0 = p1
  1470. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
  1471. w1.Part1 = p2
  1472. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1473. w2 = Instance.new("Weld", p2)
  1474. w2.Name = "Wedge_Weld"
  1475. w2.Part0 = p2
  1476. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1477. w2.Part1 = p3
  1478. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1479. w3 = Instance.new("Weld", p3)
  1480. w3.Name = "Wedge_Weld"
  1481. w3.Part0 = p3
  1482. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1483. w3.Part1 = p4
  1484. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1485. w4 = Instance.new("Weld", p4)
  1486. w4.Name = "Wedge_Weld"
  1487. w4.Part0 = p4
  1488. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1489. w4.Part1 = p5
  1490. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1491. w5 = Instance.new("Weld", p5)
  1492. w5.Name = "Wedge_Weld"
  1493. w5.Part0 = p5
  1494. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1495. w5.Part1 = p6
  1496. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1497. w6 = Instance.new("Weld", p6)
  1498. w6.Name = "Wedge_Weld"
  1499. w6.Part0 = p6
  1500. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1501. w6.Part1 = p7
  1502. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1503. w7 = Instance.new("Weld", p7)
  1504. w7.Name = "Part_Weld"
  1505. w7.Part0 = p7
  1506. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1507. w7.Part1 = p8
  1508. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1509. w8 = Instance.new("Weld", p8)
  1510. w8.Name = "Part_Weld"
  1511. w8.Part0 = p8
  1512. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1513. w8.Part1 = p9
  1514. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1515. w9 = Instance.new("Weld", p9)
  1516. w9.Name = "Part_Weld"
  1517. w9.Part0 = p9
  1518. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1519. w9.Part1 = p10
  1520. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1521. w10 = Instance.new("Weld", p10)
  1522. w10.Name = "Part_Weld"
  1523. w10.Part0 = p10
  1524. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1525. w10.Part1 = p11
  1526. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1527. w11 = Instance.new("Weld", p11)
  1528. w11.Name = "Part_Weld"
  1529. w11.Part0 = p11
  1530. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1531. w11.Part1 = p12
  1532. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1533. w12 = Instance.new("Weld", p12)
  1534. w12.Name = "Part_Weld"
  1535. w12.Part0 = p12
  1536. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1537. w12.Part1 = p13
  1538. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1539. w13 = Instance.new("Weld", p13)
  1540. w13.Name = "Part_Weld"
  1541. w13.Part0 = p13
  1542. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1543. w13.Part1 = p14
  1544. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1545. w14 = Instance.new("Weld", p14)
  1546. w14.Name = "Part_Weld"
  1547. w14.Part0 = p14
  1548. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1549. w14.Part1 = p15
  1550. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1551. w15 = Instance.new("Weld", p15)
  1552. w15.Name = "Part_Weld"
  1553. w15.Part0 = p15
  1554. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1555. w15.Part1 = p16
  1556. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1557. w16 = Instance.new("Weld", p16)
  1558. w16.Name = "Part_Weld"
  1559. w16.Part0 = p16
  1560. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1561. w16.Part1 = p17
  1562. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1563. w17 = Instance.new("Weld", p17)
  1564. w17.Name = "Part_Weld"
  1565. w17.Part0 = p17
  1566. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1567. w17.Part1 = p18
  1568. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1569. w18 = Instance.new("Weld", p18)
  1570. w18.Name = "Part_Weld"
  1571. w18.Part0 = p18
  1572. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1573. w18.Part1 = p19
  1574. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1575. w19 = Instance.new("Weld", p19)
  1576. w19.Name = "Part_Weld"
  1577. w19.Part0 = p19
  1578. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1579. w19.Part1 = p20
  1580. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1581. w20 = Instance.new("Weld", p20)
  1582. w20.Name = "Part_Weld"
  1583. w20.Part0 = p20
  1584. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1585. w20.Part1 = p21
  1586. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1587. w21 = Instance.new("Weld", p21)
  1588. w21.Name = "Part_Weld"
  1589. w21.Part0 = p21
  1590. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1591. w21.Part1 = p22
  1592. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1593. w22 = Instance.new("Weld", p22)
  1594. w22.Name = "Part_Weld"
  1595. w22.Part0 = p22
  1596. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1597. w22.Part1 = p23
  1598. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1599. w23 = Instance.new("Weld", p23)
  1600. w23.Name = "Part_Weld"
  1601. w23.Part0 = p23
  1602. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1603. w23.Part1 = p24
  1604. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1605. w24 = Instance.new("Weld", p24)
  1606. w24.Name = "Part_Weld"
  1607. w24.Part0 = p24
  1608. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1609. m.Parent = larm
  1610. m:MakeJoints()
  1611. ----------------------------------------------------
  1612. local cor3 = Instance.new("Part", larm.LeftArm)
  1613. cor3.Name = "Thingy"
  1614. cor3.Locked = true
  1615. cor3.BottomSurface = 0
  1616. cor3.CanCollide = false
  1617. cor3.Size = Vector3.new(2, 1, 1)
  1618. cor3.Transparency = 1
  1619. cor3.TopSurface = 0
  1620. corw2 = Instance.new("Weld", cor3)
  1621. corw2.Part0 = larm
  1622. corw2.Part1 = cor3
  1623. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1624. corw2.C1 = CFrame.new(0, 0, 0)
  1625. weld2 = Instance.new("Weld", larm.LeftArm)
  1626. weld2.Part0 = cor3
  1627. weld2.Part1 = p15
  1628. weld2.C0 = CFrame.new(0, 0, 0)
  1629. ----------------------------------------------------
  1630. local m = Instance.new("Model")
  1631. m.Name = "RightArm"
  1632. p1 = Instance.new("WedgePart", m)
  1633. p1.BrickColor = BrickColor.new("Deep orange")
  1634. p1.Material = Enum.Material.Neon
  1635. p1.Name = "Wedge"
  1636. p1.FormFactor = Enum.FormFactor.Custom
  1637. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1638. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
  1639. p1.CanCollide = false
  1640. p1.Locked = true
  1641. p1.TopSurface = Enum.SurfaceType.Smooth
  1642. b1 = Instance.new("SpecialMesh", p1)
  1643. b1.MeshType = Enum.MeshType.Wedge
  1644. b1.Name = "Mesh"
  1645. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1646. p2 = Instance.new("WedgePart", m)
  1647. p2.BrickColor = BrickColor.new("Deep orange")
  1648. p2.Material = Enum.Material.Neon
  1649. p2.Name = "Wedge"
  1650. p2.FormFactor = Enum.FormFactor.Custom
  1651. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1652. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
  1653. p2.CanCollide = false
  1654. p2.Locked = true
  1655. p2.TopSurface = Enum.SurfaceType.Smooth
  1656. b2 = Instance.new("SpecialMesh", p2)
  1657. b2.MeshType = Enum.MeshType.Wedge
  1658. b2.Name = "Mesh"
  1659. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1660. p3 = Instance.new("WedgePart", m)
  1661. p3.BrickColor = BrickColor.new("Deep orange")
  1662. p3.Material = Enum.Material.Neon
  1663. p3.Name = "Wedge"
  1664. p3.FormFactor = Enum.FormFactor.Custom
  1665. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1666. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
  1667. p3.CanCollide = false
  1668. p3.Locked = true
  1669. p3.TopSurface = Enum.SurfaceType.Smooth
  1670. b3 = Instance.new("SpecialMesh", p3)
  1671. b3.MeshType = Enum.MeshType.Wedge
  1672. b3.Name = "Mesh"
  1673. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1674. p4 = Instance.new("WedgePart", m)
  1675. p4.BrickColor = BrickColor.new("Deep orange")
  1676. p4.Material = Enum.Material.Neon
  1677. p4.Name = "Wedge"
  1678. p4.FormFactor = Enum.FormFactor.Custom
  1679. p4.Size = Vector3.new(1, 1.19999981, 4)
  1680. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
  1681. p4.CanCollide = false
  1682. p4.Locked = true
  1683. p4.TopSurface = Enum.SurfaceType.Smooth
  1684. b4 = Instance.new("SpecialMesh", p4)
  1685. b4.MeshType = Enum.MeshType.Wedge
  1686. b4.Name = "Mesh"
  1687. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1688. p5 = Instance.new("WedgePart", m)
  1689. p5.BrickColor = BrickColor.new("Deep orange")
  1690. p5.Material = Enum.Material.Neon
  1691. p5.Name = "Wedge"
  1692. p5.FormFactor = Enum.FormFactor.Custom
  1693. p5.Size = Vector3.new(1, 1.19999981, 4)
  1694. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
  1695. p5.CanCollide = false
  1696. p5.Locked = true
  1697. p5.TopSurface = Enum.SurfaceType.Smooth
  1698. b5 = Instance.new("SpecialMesh", p5)
  1699. b5.MeshType = Enum.MeshType.Wedge
  1700. b5.Name = "Mesh"
  1701. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1702. p6 = Instance.new("WedgePart", m)
  1703. p6.BrickColor = BrickColor.new("Deep orange")
  1704. p6.Material = Enum.Material.Neon
  1705. p6.Name = "Wedge"
  1706. p6.FormFactor = Enum.FormFactor.Custom
  1707. p6.Size = Vector3.new(1, 1.19999981, 4)
  1708. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
  1709. p6.CanCollide = false
  1710. p6.Locked = true
  1711. p6.TopSurface = Enum.SurfaceType.Smooth
  1712. b6 = Instance.new("SpecialMesh", p6)
  1713. b6.MeshType = Enum.MeshType.Wedge
  1714. b6.Name = "Mesh"
  1715. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1716. p7 = Instance.new("Part", m)
  1717. p7.BrickColor = BrickColor.new("Really black")
  1718. p7.Material = Enum.Material.Neon
  1719. p7.FormFactor = Enum.FormFactor.Custom
  1720. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1721. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
  1722. p7.CanCollide = false
  1723. p7.Locked = true
  1724. p7.BottomSurface = Enum.SurfaceType.Smooth
  1725. p7.TopSurface = Enum.SurfaceType.Smooth
  1726. b7 = Instance.new("SpecialMesh", p7)
  1727. b7.MeshType = Enum.MeshType.Sphere
  1728. b7.Name = "Mesh"
  1729. p8 = Instance.new("Part", m)
  1730. p8.BrickColor = BrickColor.new("Deep orange")
  1731. p8.Material = Enum.Material.Neon
  1732. p8.FormFactor = Enum.FormFactor.Custom
  1733. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1734. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  1735. p8.CanCollide = false
  1736. p8.Locked = true
  1737. p8.BottomSurface = Enum.SurfaceType.Smooth
  1738. p8.TopSurface = Enum.SurfaceType.Smooth
  1739. p9 = Instance.new("Part", m)
  1740. p9.BrickColor = BrickColor.new("Really black")
  1741. p9.Material = Enum.Material.Neon
  1742. p9.FormFactor = Enum.FormFactor.Custom
  1743. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1744. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
  1745. p9.CanCollide = false
  1746. p9.Locked = true
  1747. p9.BottomSurface = Enum.SurfaceType.Smooth
  1748. p9.TopSurface = Enum.SurfaceType.Smooth
  1749. b8 = Instance.new("SpecialMesh", p9)
  1750. b8.MeshType = Enum.MeshType.Sphere
  1751. b8.Name = "Mesh"
  1752. p10 = Instance.new("Part", m)
  1753. p10.BrickColor = BrickColor.new("Really black")
  1754. p10.Material = Enum.Material.Neon
  1755. p10.FormFactor = Enum.FormFactor.Custom
  1756. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1757. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
  1758. p10.CanCollide = false
  1759. p10.Locked = true
  1760. p10.BottomSurface = Enum.SurfaceType.Smooth
  1761. p10.TopSurface = Enum.SurfaceType.Smooth
  1762. b9 = Instance.new("SpecialMesh", p10)
  1763. b9.MeshType = Enum.MeshType.Sphere
  1764. b9.Name = "Mesh"
  1765. p11 = Instance.new("Part", m)
  1766. p11.BrickColor = BrickColor.new("Deep orange")
  1767. p11.Material = Enum.Material.Neon
  1768. p11.FormFactor = Enum.FormFactor.Custom
  1769. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1770. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  1771. p11.CanCollide = false
  1772. p11.Locked = true
  1773. p11.BottomSurface = Enum.SurfaceType.Smooth
  1774. p11.TopSurface = Enum.SurfaceType.Smooth
  1775. p12 = Instance.new("Part", m)
  1776. p12.BrickColor = BrickColor.new("Deep orange")
  1777. p12.Material = Enum.Material.Neon
  1778. p12.FormFactor = Enum.FormFactor.Custom
  1779. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1780. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  1781. p12.CanCollide = false
  1782. p12.Locked = true
  1783. p12.BottomSurface = Enum.SurfaceType.Smooth
  1784. p12.TopSurface = Enum.SurfaceType.Smooth
  1785. p13 = Instance.new("Part", m)
  1786. p13.BrickColor = BrickColor.new("Deep orange")
  1787. p13.Material = Enum.Material.Neon
  1788. p13.FormFactor = Enum.FormFactor.Custom
  1789. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1790. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
  1791. p13.CanCollide = false
  1792. p13.Locked = true
  1793. p13.BottomSurface = Enum.SurfaceType.Smooth
  1794. p13.TopSurface = Enum.SurfaceType.Smooth
  1795. b10 = Instance.new("SpecialMesh", p13)
  1796. b10.MeshType = Enum.MeshType.Sphere
  1797. b10.Name = "Mesh"
  1798. p14 = Instance.new("Part", m)
  1799. p14.BrickColor = BrickColor.new("Really black")
  1800. p14.Material = Enum.Material.Metal
  1801. p14.Name = "Main"
  1802. p14.FormFactor = Enum.FormFactor.Custom
  1803. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1804. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
  1805. p14.CanCollide = false
  1806. p14.Locked = true
  1807. p14.BottomSurface = Enum.SurfaceType.Smooth
  1808. p14.TopSurface = Enum.SurfaceType.Smooth
  1809. p15 = Instance.new("Part", m)
  1810. p15.BrickColor = BrickColor.new("Really black")
  1811. p15.Material = Enum.Material.Neon
  1812. p15.FormFactor = Enum.FormFactor.Custom
  1813. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1814. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
  1815. p15.CanCollide = false
  1816. p15.Locked = true
  1817. p15.BottomSurface = Enum.SurfaceType.Smooth
  1818. p15.TopSurface = Enum.SurfaceType.Smooth
  1819. b11 = Instance.new("SpecialMesh", p15)
  1820. b11.MeshType = Enum.MeshType.Sphere
  1821. b11.Name = "Mesh"
  1822. p16 = Instance.new("Part", m)
  1823. p16.BrickColor = BrickColor.new("Deep orange")
  1824. p16.Material = Enum.Material.Neon
  1825. p16.FormFactor = Enum.FormFactor.Custom
  1826. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1827. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  1828. p16.CanCollide = false
  1829. p16.Locked = true
  1830. p16.BottomSurface = Enum.SurfaceType.Smooth
  1831. p16.TopSurface = Enum.SurfaceType.Smooth
  1832. p17 = Instance.new("Part", m)
  1833. p17.BrickColor = BrickColor.new("Deep orange")
  1834. p17.Material = Enum.Material.Neon
  1835. p17.FormFactor = Enum.FormFactor.Custom
  1836. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1837. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
  1838. p17.CanCollide = false
  1839. p17.Locked = true
  1840. p17.BottomSurface = Enum.SurfaceType.Smooth
  1841. p17.TopSurface = Enum.SurfaceType.Smooth
  1842. p18 = Instance.new("Part", m)
  1843. p18.BrickColor = BrickColor.new("Really black")
  1844. p18.Material = Enum.Material.Neon
  1845. p18.FormFactor = Enum.FormFactor.Custom
  1846. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1847. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
  1848. p18.CanCollide = false
  1849. p18.Locked = true
  1850. p18.BottomSurface = Enum.SurfaceType.Smooth
  1851. p18.TopSurface = Enum.SurfaceType.Smooth
  1852. b12 = Instance.new("SpecialMesh", p18)
  1853. b12.MeshType = Enum.MeshType.Sphere
  1854. b12.Name = "Mesh"
  1855. p19 = Instance.new("Part", m)
  1856. p19.BrickColor = BrickColor.new("Really black")
  1857. p19.Material = Enum.Material.Neon
  1858. p19.FormFactor = Enum.FormFactor.Custom
  1859. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1860. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
  1861. p19.CanCollide = false
  1862. p19.Locked = true
  1863. p19.BottomSurface = Enum.SurfaceType.Smooth
  1864. p19.TopSurface = Enum.SurfaceType.Smooth
  1865. b13 = Instance.new("SpecialMesh", p19)
  1866. b13.MeshType = Enum.MeshType.Sphere
  1867. b13.Name = "Mesh"
  1868. w1 = Instance.new("Weld", p1)
  1869. w1.Name = "Wedge_Weld"
  1870. w1.Part0 = p1
  1871. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
  1872. w1.Part1 = p2
  1873. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1874. w2 = Instance.new("Weld", p2)
  1875. w2.Name = "Wedge_Weld"
  1876. w2.Part0 = p2
  1877. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1878. w2.Part1 = p3
  1879. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1880. w3 = Instance.new("Weld", p3)
  1881. w3.Name = "Wedge_Weld"
  1882. w3.Part0 = p3
  1883. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1884. w3.Part1 = p4
  1885. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1886. w4 = Instance.new("Weld", p4)
  1887. w4.Name = "Wedge_Weld"
  1888. w4.Part0 = p4
  1889. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1890. w4.Part1 = p5
  1891. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1892. w5 = Instance.new("Weld", p5)
  1893. w5.Name = "Wedge_Weld"
  1894. w5.Part0 = p5
  1895. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1896. w5.Part1 = p6
  1897. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1898. w6 = Instance.new("Weld", p6)
  1899. w6.Name = "Part_Weld"
  1900. w6.Part0 = p6
  1901. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1902. w6.Part1 = p7
  1903. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1904. w7 = Instance.new("Weld", p7)
  1905. w7.Name = "Part_Weld"
  1906. w7.Part0 = p7
  1907. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1908. w7.Part1 = p8
  1909. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1910. w8 = Instance.new("Weld", p8)
  1911. w8.Name = "Part_Weld"
  1912. w8.Part0 = p8
  1913. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1914. w8.Part1 = p9
  1915. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1916. w9 = Instance.new("Weld", p9)
  1917. w9.Name = "Part_Weld"
  1918. w9.Part0 = p9
  1919. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1920. w9.Part1 = p10
  1921. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1922. w10 = Instance.new("Weld", p10)
  1923. w10.Name = "Part_Weld"
  1924. w10.Part0 = p10
  1925. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1926. w10.Part1 = p11
  1927. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1928. w11 = Instance.new("Weld", p11)
  1929. w11.Name = "Part_Weld"
  1930. w11.Part0 = p11
  1931. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1932. w11.Part1 = p12
  1933. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1934. w12 = Instance.new("Weld", p12)
  1935. w12.Name = "Part_Weld"
  1936. w12.Part0 = p12
  1937. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1938. w12.Part1 = p13
  1939. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1940. w13 = Instance.new("Weld", p13)
  1941. w13.Name = "Part_Weld"
  1942. w13.Part0 = p13
  1943. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1944. w13.Part1 = p14
  1945. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1946. w14 = Instance.new("Weld", p14)
  1947. w14.Name = "Part_Weld"
  1948. w14.Part0 = p14
  1949. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1950. w14.Part1 = p15
  1951. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1952. w15 = Instance.new("Weld", p15)
  1953. w15.Name = "Part_Weld"
  1954. w15.Part0 = p15
  1955. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1956. w15.Part1 = p16
  1957. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1958. w16 = Instance.new("Weld", p16)
  1959. w16.Name = "Part_Weld"
  1960. w16.Part0 = p16
  1961. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1962. w16.Part1 = p17
  1963. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1964. w17 = Instance.new("Weld", p17)
  1965. w17.Name = "Part_Weld"
  1966. w17.Part0 = p17
  1967. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1968. w17.Part1 = p18
  1969. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1970. w18 = Instance.new("Weld", p18)
  1971. w18.Name = "Part_Weld"
  1972. w18.Part0 = p18
  1973. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1974. w18.Part1 = p19
  1975. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1976. w19 = Instance.new("Weld", p19)
  1977. w19.Name = "Wedge_Weld"
  1978. w19.Part0 = p19
  1979. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1980. m.Parent = rarm
  1981. m:MakeJoints()
  1982. ----------------------------------------------------
  1983. local cor4 = Instance.new("Part", rarm.RightArm)
  1984. cor4.Name = "Thingy"
  1985. cor4.Locked = true
  1986. cor4.BottomSurface = 0
  1987. cor4.CanCollide = false
  1988. cor4.Size = Vector3.new(2, 1, 1)
  1989. cor4.Transparency = 1
  1990. cor4.TopSurface = 0
  1991. corw2 = Instance.new("Weld", cor4)
  1992. corw2.Part0 = rarm
  1993. corw2.Part1 = cor4
  1994. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1995. corw2.C1 = CFrame.new(0, 0, 0)
  1996. weld2 = Instance.new("Weld", rarm.RightArm)
  1997. weld2.Part0 = cor4
  1998. weld2.Part1 = p14
  1999. weld2.C0 = CFrame.new(0, 0, 0)
  2000. ----------------------------------------------------
  2001. local m = Instance.new("Model")
  2002. m.Name = "Torso"
  2003. p1 = Instance.new("Part", m)
  2004. p1.BrickColor = BrickColor.new("Really black")
  2005. p1.Material = Enum.Material.Neon
  2006. p1.FormFactor = Enum.FormFactor.Custom
  2007. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2008. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
  2009. p1.CanCollide = false
  2010. p1.Locked = true
  2011. p1.BottomSurface = Enum.SurfaceType.Smooth
  2012. p1.TopSurface = Enum.SurfaceType.Smooth
  2013. b1 = Instance.new("SpecialMesh", p1)
  2014. b1.MeshType = Enum.MeshType.Sphere
  2015. b1.Name = "Mesh"
  2016. p2 = Instance.new("Part", m)
  2017. p2.BrickColor = BrickColor.new("Really black")
  2018. p2.Material = Enum.Material.Neon
  2019. p2.FormFactor = Enum.FormFactor.Custom
  2020. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2021. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
  2022. p2.CanCollide = false
  2023. p2.Locked = true
  2024. p2.BottomSurface = Enum.SurfaceType.Smooth
  2025. p2.TopSurface = Enum.SurfaceType.Smooth
  2026. b2 = Instance.new("SpecialMesh", p2)
  2027. b2.MeshType = Enum.MeshType.Sphere
  2028. b2.Name = "Mesh"
  2029. p3 = Instance.new("Part", m)
  2030. p3.BrickColor = BrickColor.new("Deep orange")
  2031. p3.Material = Enum.Material.Neon
  2032. p3.FormFactor = Enum.FormFactor.Custom
  2033. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2034. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2035. p3.CanCollide = false
  2036. p3.Locked = true
  2037. p3.BottomSurface = Enum.SurfaceType.Smooth
  2038. p3.TopSurface = Enum.SurfaceType.Smooth
  2039. p4 = Instance.new("Part", m)
  2040. p4.BrickColor = BrickColor.new("Deep orange")
  2041. p4.Material = Enum.Material.Neon
  2042. p4.FormFactor = Enum.FormFactor.Custom
  2043. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2044. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
  2045. p4.CanCollide = false
  2046. p4.Locked = true
  2047. p4.BottomSurface = Enum.SurfaceType.Smooth
  2048. p4.TopSurface = Enum.SurfaceType.Smooth
  2049. p5 = Instance.new("Part", m)
  2050. p5.BrickColor = BrickColor.new("Deep orange")
  2051. p5.Material = Enum.Material.Neon
  2052. p5.FormFactor = Enum.FormFactor.Custom
  2053. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2054. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
  2055. p5.CanCollide = false
  2056. p5.Locked = true
  2057. p5.BottomSurface = Enum.SurfaceType.Smooth
  2058. p5.TopSurface = Enum.SurfaceType.Smooth
  2059. p6 = Instance.new("Part", m)
  2060. p6.BrickColor = BrickColor.new("Deep orange")
  2061. p6.Material = Enum.Material.Neon
  2062. p6.FormFactor = Enum.FormFactor.Custom
  2063. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2064. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
  2065. p6.CanCollide = false
  2066. p6.Locked = true
  2067. p6.BottomSurface = Enum.SurfaceType.Smooth
  2068. p6.TopSurface = Enum.SurfaceType.Smooth
  2069. p7 = Instance.new("Part", m)
  2070. p7.BrickColor = BrickColor.new("Really black")
  2071. p7.Material = Enum.Material.Neon
  2072. p7.FormFactor = Enum.FormFactor.Custom
  2073. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2074. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
  2075. p7.CanCollide = false
  2076. p7.Locked = true
  2077. p7.BottomSurface = Enum.SurfaceType.Smooth
  2078. p7.TopSurface = Enum.SurfaceType.Smooth
  2079. b3 = Instance.new("SpecialMesh", p7)
  2080. b3.MeshType = Enum.MeshType.Sphere
  2081. b3.Name = "Mesh"
  2082. p8 = Instance.new("Part", m)
  2083. p8.BrickColor = BrickColor.new("Really black")
  2084. p8.Material = Enum.Material.Neon
  2085. p8.FormFactor = Enum.FormFactor.Custom
  2086. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2087. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
  2088. p8.CanCollide = false
  2089. p8.Locked = true
  2090. p8.BottomSurface = Enum.SurfaceType.Smooth
  2091. p8.TopSurface = Enum.SurfaceType.Smooth
  2092. b4 = Instance.new("SpecialMesh", p8)
  2093. b4.MeshType = Enum.MeshType.Sphere
  2094. b4.Name = "Mesh"
  2095. p9 = Instance.new("Part", m)
  2096. p9.BrickColor = BrickColor.new("Really black")
  2097. p9.Material = Enum.Material.Neon
  2098. p9.FormFactor = Enum.FormFactor.Custom
  2099. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2100. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
  2101. p9.CanCollide = false
  2102. p9.Locked = true
  2103. p9.BottomSurface = Enum.SurfaceType.Smooth
  2104. p9.TopSurface = Enum.SurfaceType.Smooth
  2105. b5 = Instance.new("SpecialMesh", p9)
  2106. b5.MeshType = Enum.MeshType.Sphere
  2107. b5.Name = "Mesh"
  2108. p10 = Instance.new("Part", m)
  2109. p10.BrickColor = BrickColor.new("Deep orange")
  2110. p10.Material = Enum.Material.Neon
  2111. p10.FormFactor = Enum.FormFactor.Custom
  2112. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2113. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2114. p10.CanCollide = false
  2115. p10.Locked = true
  2116. p10.BottomSurface = Enum.SurfaceType.Smooth
  2117. p10.TopSurface = Enum.SurfaceType.Smooth
  2118. p11 = Instance.new("Part", m)
  2119. p11.BrickColor = BrickColor.new("Really black")
  2120. p11.Material = Enum.Material.Metal
  2121. p11.Name = "Main"
  2122. p11.FormFactor = Enum.FormFactor.Custom
  2123. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2124. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
  2125. p11.CanCollide = false
  2126. p11.Locked = true
  2127. p11.BottomSurface = Enum.SurfaceType.Smooth
  2128. p11.TopSurface = Enum.SurfaceType.Smooth
  2129. p12 = Instance.new("Part", m)
  2130. p12.BrickColor = BrickColor.new("Really black")
  2131. p12.Material = Enum.Material.Neon
  2132. p12.FormFactor = Enum.FormFactor.Custom
  2133. p12.Size = Vector3.new(3, 3, 2)
  2134. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
  2135. p12.CanCollide = false
  2136. p12.Locked = true
  2137. p12.BottomSurface = Enum.SurfaceType.Smooth
  2138. p12.TopSurface = Enum.SurfaceType.Smooth
  2139. b6 = Instance.new("SpecialMesh", p12)
  2140. b6.MeshType = Enum.MeshType.Sphere
  2141. b6.Name = "Mesh"
  2142. p13 = Instance.new("Part", m)
  2143. p13.BrickColor = BrickColor.new("Deep orange")
  2144. p13.Material = Enum.Material.Neon
  2145. p13.FormFactor = Enum.FormFactor.Custom
  2146. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2147. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
  2148. p13.CanCollide = false
  2149. p13.Locked = true
  2150. p13.BottomSurface = Enum.SurfaceType.Smooth
  2151. p13.TopSurface = Enum.SurfaceType.Smooth
  2152. p14 = Instance.new("Part", m)
  2153. p14.BrickColor = BrickColor.new("Deep orange")
  2154. p14.Material = Enum.Material.Neon
  2155. p14.FormFactor = Enum.FormFactor.Custom
  2156. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2157. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
  2158. p14.CanCollide = false
  2159. p14.Locked = true
  2160. p14.BottomSurface = Enum.SurfaceType.Smooth
  2161. p14.TopSurface = Enum.SurfaceType.Smooth
  2162. p15 = Instance.new("Part", m)
  2163. p15.BrickColor = BrickColor.new("Deep orange")
  2164. p15.Material = Enum.Material.Neon
  2165. p15.FormFactor = Enum.FormFactor.Custom
  2166. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2167. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
  2168. p15.CanCollide = false
  2169. p15.Locked = true
  2170. p15.BottomSurface = Enum.SurfaceType.Smooth
  2171. p15.TopSurface = Enum.SurfaceType.Smooth
  2172. p16 = Instance.new("Part", m)
  2173. p16.BrickColor = BrickColor.new("Deep orange")
  2174. p16.Material = Enum.Material.Neon
  2175. p16.FormFactor = Enum.FormFactor.Custom
  2176. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2177. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
  2178. p16.CanCollide = false
  2179. p16.Locked = true
  2180. p16.BottomSurface = Enum.SurfaceType.Smooth
  2181. p16.TopSurface = Enum.SurfaceType.Smooth
  2182. p17 = Instance.new("Part", m)
  2183. p17.BrickColor = BrickColor.new("Deep orange")
  2184. p17.Material = Enum.Material.Neon
  2185. p17.FormFactor = Enum.FormFactor.Custom
  2186. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2187. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
  2188. p17.CanCollide = false
  2189. p17.Locked = true
  2190. p17.BottomSurface = Enum.SurfaceType.Smooth
  2191. p17.TopSurface = Enum.SurfaceType.Smooth
  2192. p18 = Instance.new("Part", m)
  2193. p18.BrickColor = BrickColor.new("Deep orange")
  2194. p18.Material = Enum.Material.Neon
  2195. p18.FormFactor = Enum.FormFactor.Custom
  2196. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2197. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
  2198. p18.CanCollide = false
  2199. p18.Locked = true
  2200. p18.BottomSurface = Enum.SurfaceType.Smooth
  2201. p18.TopSurface = Enum.SurfaceType.Smooth
  2202. p19 = Instance.new("Part", m)
  2203. p19.BrickColor = BrickColor.new("Really black")
  2204. p19.Material = Enum.Material.Neon
  2205. p19.FormFactor = Enum.FormFactor.Custom
  2206. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2207. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
  2208. p19.CanCollide = false
  2209. p19.Locked = true
  2210. p19.BottomSurface = Enum.SurfaceType.Smooth
  2211. p19.TopSurface = Enum.SurfaceType.Smooth
  2212. b7 = Instance.new("SpecialMesh", p19)
  2213. b7.MeshType = Enum.MeshType.Sphere
  2214. b7.Name = "Mesh"
  2215. p20 = Instance.new("Part", m)
  2216. p20.BrickColor = BrickColor.new("Really black")
  2217. p20.Material = Enum.Material.Neon
  2218. p20.FormFactor = Enum.FormFactor.Custom
  2219. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2220. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
  2221. p20.CanCollide = false
  2222. p20.Locked = true
  2223. p20.BottomSurface = Enum.SurfaceType.Smooth
  2224. p20.TopSurface = Enum.SurfaceType.Smooth
  2225. b8 = Instance.new("SpecialMesh", p20)
  2226. b8.MeshType = Enum.MeshType.Sphere
  2227. b8.Name = "Mesh"
  2228. p21 = Instance.new("Part", m)
  2229. p21.BrickColor = BrickColor.new("Deep orange")
  2230. p21.Material = Enum.Material.Neon
  2231. p21.FormFactor = Enum.FormFactor.Custom
  2232. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2233. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
  2234. p21.CanCollide = false
  2235. p21.Locked = true
  2236. p21.BottomSurface = Enum.SurfaceType.Smooth
  2237. p21.TopSurface = Enum.SurfaceType.Smooth
  2238. p22 = Instance.new("Part", m)
  2239. p22.BrickColor = BrickColor.new("Really black")
  2240. p22.Material = Enum.Material.Neon
  2241. p22.FormFactor = Enum.FormFactor.Custom
  2242. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2243. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
  2244. p22.CanCollide = false
  2245. p22.Locked = true
  2246. p22.BottomSurface = Enum.SurfaceType.Smooth
  2247. p22.TopSurface = Enum.SurfaceType.Smooth
  2248. b9 = Instance.new("SpecialMesh", p22)
  2249. b9.MeshType = Enum.MeshType.Sphere
  2250. b9.Name = "Mesh"
  2251. w1 = Instance.new("Weld", p1)
  2252. w1.Name = "Part_Weld"
  2253. w1.Part0 = p1
  2254. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2255. w1.Part1 = p2
  2256. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2257. w2 = Instance.new("Weld", p2)
  2258. w2.Name = "Part_Weld"
  2259. w2.Part0 = p2
  2260. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2261. w2.Part1 = p3
  2262. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2263. w3 = Instance.new("Weld", p3)
  2264. w3.Name = "Part_Weld"
  2265. w3.Part0 = p3
  2266. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2267. w3.Part1 = p4
  2268. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2269. w4 = Instance.new("Weld", p4)
  2270. w4.Name = "Part_Weld"
  2271. w4.Part0 = p4
  2272. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2273. w4.Part1 = p5
  2274. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2275. w5 = Instance.new("Weld", p5)
  2276. w5.Name = "Part_Weld"
  2277. w5.Part0 = p5
  2278. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2279. w5.Part1 = p6
  2280. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2281. w6 = Instance.new("Weld", p6)
  2282. w6.Name = "Part_Weld"
  2283. w6.Part0 = p6
  2284. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2285. w6.Part1 = p7
  2286. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2287. w7 = Instance.new("Weld", p7)
  2288. w7.Name = "Part_Weld"
  2289. w7.Part0 = p7
  2290. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2291. w7.Part1 = p8
  2292. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2293. w8 = Instance.new("Weld", p8)
  2294. w8.Name = "Part_Weld"
  2295. w8.Part0 = p8
  2296. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2297. w8.Part1 = p9
  2298. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2299. w9 = Instance.new("Weld", p9)
  2300. w9.Name = "Part_Weld"
  2301. w9.Part0 = p9
  2302. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2303. w9.Part1 = p10
  2304. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2305. w10 = Instance.new("Weld", p10)
  2306. w10.Name = "Main_Weld"
  2307. w10.Part0 = p10
  2308. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2309. w10.Part1 = p11
  2310. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2311. w11 = Instance.new("Weld", p11)
  2312. w11.Name = "Part_Weld"
  2313. w11.Part0 = p11
  2314. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2315. w11.Part1 = p12
  2316. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2317. w12 = Instance.new("Weld", p12)
  2318. w12.Name = "Part_Weld"
  2319. w12.Part0 = p12
  2320. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2321. w12.Part1 = p13
  2322. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2323. w13 = Instance.new("Weld", p13)
  2324. w13.Name = "Part_Weld"
  2325. w13.Part0 = p13
  2326. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2327. w13.Part1 = p14
  2328. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2329. w14 = Instance.new("Weld", p14)
  2330. w14.Name = "Part_Weld"
  2331. w14.Part0 = p14
  2332. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2333. w14.Part1 = p15
  2334. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2335. w15 = Instance.new("Weld", p15)
  2336. w15.Name = "Part_Weld"
  2337. w15.Part0 = p15
  2338. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2339. w15.Part1 = p16
  2340. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2341. w16 = Instance.new("Weld", p16)
  2342. w16.Name = "Part_Weld"
  2343. w16.Part0 = p16
  2344. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2345. w16.Part1 = p17
  2346. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2347. w17 = Instance.new("Weld", p17)
  2348. w17.Name = "Part_Weld"
  2349. w17.Part0 = p17
  2350. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2351. w17.Part1 = p18
  2352. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2353. w18 = Instance.new("Weld", p18)
  2354. w18.Name = "Part_Weld"
  2355. w18.Part0 = p18
  2356. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2357. w18.Part1 = p19
  2358. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2359. w19 = Instance.new("Weld", p19)
  2360. w19.Name = "Part_Weld"
  2361. w19.Part0 = p19
  2362. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2363. w19.Part1 = p20
  2364. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2365. w20 = Instance.new("Weld", p20)
  2366. w20.Name = "Part_Weld"
  2367. w20.Part0 = p20
  2368. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2369. w20.Part1 = p21
  2370. w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2371. w21 = Instance.new("Weld", p21)
  2372. w21.Name = "Part_Weld"
  2373. w21.Part0 = p21
  2374. w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2375. w21.Part1 = p22
  2376. w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2377. w22 = Instance.new("Weld", p22)
  2378. w22.Name = "Wedge_Weld"
  2379. w22.Part0 = p22
  2380. w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2381. m.Parent = torso
  2382. m:MakeJoints()
  2383. ----------------------------------------------------
  2384. local cor5 = Instance.new("Part", torso.Torso)
  2385. cor5.Name = "Thingy"
  2386. cor5.Locked = true
  2387. cor5.BottomSurface = 0
  2388. cor5.CanCollide = false
  2389. cor5.Size = Vector3.new(2, 1, 1)
  2390. cor5.Transparency = 1
  2391. cor5.TopSurface = 0
  2392. corw2 = Instance.new("Weld", cor5)
  2393. corw2.Part0 = torso
  2394. corw2.Part1 = cor5
  2395. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2396. corw2.C1 = CFrame.new(0, 0, 0)
  2397. weld2 = Instance.new("Weld", torso.Torso)
  2398. weld2.Part0 = cor5
  2399. weld2.Part1 = p11
  2400. weld2.C0 = CFrame.new(0, 0, 0)
  2401. ----------------------------------------------------
  2402. local m = Instance.new("Model")
  2403. m.Name = "RightLeg"
  2404. p1 = Instance.new("Part", m)
  2405. p1.BrickColor = BrickColor.new("Really black")
  2406. p1.Material = Enum.Material.Neon
  2407. p1.FormFactor = Enum.FormFactor.Custom
  2408. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2409. p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
  2410. p1.CanCollide = false
  2411. p1.Locked = true
  2412. p1.BottomSurface = Enum.SurfaceType.Smooth
  2413. p1.TopSurface = Enum.SurfaceType.Smooth
  2414. b1 = Instance.new("SpecialMesh", p1)
  2415. b1.MeshType = Enum.MeshType.Sphere
  2416. b1.Name = "Mesh"
  2417. p2 = Instance.new("Part", m)
  2418. p2.BrickColor = BrickColor.new("Really black")
  2419. p2.Material = Enum.Material.Neon
  2420. p2.FormFactor = Enum.FormFactor.Custom
  2421. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2422. p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
  2423. p2.CanCollide = false
  2424. p2.Locked = true
  2425. p2.BottomSurface = Enum.SurfaceType.Smooth
  2426. p2.TopSurface = Enum.SurfaceType.Smooth
  2427. b2 = Instance.new("SpecialMesh", p2)
  2428. b2.MeshType = Enum.MeshType.Sphere
  2429. b2.Name = "Mesh"
  2430. p3 = Instance.new("Part", m)
  2431. p3.BrickColor = BrickColor.new("Deep orange")
  2432. p3.Material = Enum.Material.Neon
  2433. p3.FormFactor = Enum.FormFactor.Custom
  2434. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2435. p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
  2436. p3.CanCollide = false
  2437. p3.Locked = true
  2438. p3.BottomSurface = Enum.SurfaceType.Smooth
  2439. p3.TopSurface = Enum.SurfaceType.Smooth
  2440. p4 = Instance.new("Part", m)
  2441. p4.BrickColor = BrickColor.new("Really black")
  2442. p4.Material = Enum.Material.Neon
  2443. p4.FormFactor = Enum.FormFactor.Custom
  2444. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2445. p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
  2446. p4.CanCollide = false
  2447. p4.Locked = true
  2448. p4.BottomSurface = Enum.SurfaceType.Smooth
  2449. p4.TopSurface = Enum.SurfaceType.Smooth
  2450. b3 = Instance.new("SpecialMesh", p4)
  2451. b3.MeshType = Enum.MeshType.Sphere
  2452. b3.Name = "Mesh"
  2453. p5 = Instance.new("Part", m)
  2454. p5.BrickColor = BrickColor.new("Deep orange")
  2455. p5.Material = Enum.Material.Neon
  2456. p5.FormFactor = Enum.FormFactor.Custom
  2457. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2458. p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
  2459. p5.CanCollide = false
  2460. p5.Locked = true
  2461. p5.BottomSurface = Enum.SurfaceType.Smooth
  2462. p5.TopSurface = Enum.SurfaceType.Smooth
  2463. p6 = Instance.new("Part", m)
  2464. p6.BrickColor = BrickColor.new("Deep orange")
  2465. p6.Material = Enum.Material.Neon
  2466. p6.FormFactor = Enum.FormFactor.Custom
  2467. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2468. p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
  2469. p6.CanCollide = false
  2470. p6.Locked = true
  2471. p6.BottomSurface = Enum.SurfaceType.Smooth
  2472. p6.TopSurface = Enum.SurfaceType.Smooth
  2473. p7 = Instance.new("Part", m)
  2474. p7.BrickColor = BrickColor.new("Really black")
  2475. p7.Material = Enum.Material.Metal
  2476. p7.Name = "Main"
  2477. p7.FormFactor = Enum.FormFactor.Custom
  2478. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2479. p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
  2480. p7.CanCollide = false
  2481. p7.Locked = true
  2482. p7.BottomSurface = Enum.SurfaceType.Smooth
  2483. p7.TopSurface = Enum.SurfaceType.Smooth
  2484. p8 = Instance.new("Part", m)
  2485. p8.BrickColor = BrickColor.new("Deep orange")
  2486. p8.Material = Enum.Material.Neon
  2487. p8.FormFactor = Enum.FormFactor.Custom
  2488. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2489. p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
  2490. p8.CanCollide = false
  2491. p8.Locked = true
  2492. p8.BottomSurface = Enum.SurfaceType.Smooth
  2493. p8.TopSurface = Enum.SurfaceType.Smooth
  2494. p9 = Instance.new("WedgePart", m)
  2495. p9.BrickColor = BrickColor.new("Deep orange")
  2496. p9.Material = Enum.Material.Neon
  2497. p9.Name = "Wedge"
  2498. p9.FormFactor = Enum.FormFactor.Custom
  2499. p9.Size = Vector3.new(1, 1.19999981, 4)
  2500. p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
  2501. p9.CanCollide = false
  2502. p9.Locked = true
  2503. p9.TopSurface = Enum.SurfaceType.Smooth
  2504. b4 = Instance.new("SpecialMesh", p9)
  2505. b4.MeshType = Enum.MeshType.Wedge
  2506. b4.Name = "Mesh"
  2507. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2508. p10 = Instance.new("Part", m)
  2509. p10.BrickColor = BrickColor.new("Really black")
  2510. p10.Material = Enum.Material.Neon
  2511. p10.FormFactor = Enum.FormFactor.Custom
  2512. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2513. p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
  2514. p10.CanCollide = false
  2515. p10.Locked = true
  2516. p10.BottomSurface = Enum.SurfaceType.Smooth
  2517. p10.TopSurface = Enum.SurfaceType.Smooth
  2518. b5 = Instance.new("SpecialMesh", p10)
  2519. b5.MeshType = Enum.MeshType.Sphere
  2520. b5.Name = "Mesh"
  2521. p11 = Instance.new("Part", m)
  2522. p11.BrickColor = BrickColor.new("Really black")
  2523. p11.Material = Enum.Material.Neon
  2524. p11.FormFactor = Enum.FormFactor.Custom
  2525. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2526. p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
  2527. p11.CanCollide = false
  2528. p11.Locked = true
  2529. p11.BottomSurface = Enum.SurfaceType.Smooth
  2530. p11.TopSurface = Enum.SurfaceType.Smooth
  2531. b6 = Instance.new("SpecialMesh", p11)
  2532. b6.MeshType = Enum.MeshType.Sphere
  2533. b6.Name = "Mesh"
  2534. p12 = Instance.new("Part", m)
  2535. p12.BrickColor = BrickColor.new("Deep orange")
  2536. p12.Material = Enum.Material.Neon
  2537. p12.FormFactor = Enum.FormFactor.Custom
  2538. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2539. p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
  2540. p12.CanCollide = false
  2541. p12.Locked = true
  2542. p12.BottomSurface = Enum.SurfaceType.Smooth
  2543. p12.TopSurface = Enum.SurfaceType.Smooth
  2544. p13 = Instance.new("Part", m)
  2545. p13.BrickColor = BrickColor.new("Really black")
  2546. p13.Material = Enum.Material.Neon
  2547. p13.FormFactor = Enum.FormFactor.Custom
  2548. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2549. p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
  2550. p13.CanCollide = false
  2551. p13.Locked = true
  2552. p13.BottomSurface = Enum.SurfaceType.Smooth
  2553. p13.TopSurface = Enum.SurfaceType.Smooth
  2554. b7 = Instance.new("SpecialMesh", p13)
  2555. b7.MeshType = Enum.MeshType.Sphere
  2556. b7.Name = "Mesh"
  2557. p14 = Instance.new("WedgePart", m)
  2558. p14.BrickColor = BrickColor.new("Deep orange")
  2559. p14.Material = Enum.Material.Neon
  2560. p14.Name = "Wedge"
  2561. p14.FormFactor = Enum.FormFactor.Custom
  2562. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2563. p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
  2564. p14.CanCollide = false
  2565. p14.Locked = true
  2566. p14.TopSurface = Enum.SurfaceType.Smooth
  2567. b8 = Instance.new("SpecialMesh", p14)
  2568. b8.MeshType = Enum.MeshType.Wedge
  2569. b8.Name = "Mesh"
  2570. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2571. p15 = Instance.new("WedgePart", m)
  2572. p15.BrickColor = BrickColor.new("Deep orange")
  2573. p15.Material = Enum.Material.Neon
  2574. p15.Name = "Wedge"
  2575. p15.FormFactor = Enum.FormFactor.Custom
  2576. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2577. p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
  2578. p15.CanCollide = false
  2579. p15.Locked = true
  2580. p15.TopSurface = Enum.SurfaceType.Smooth
  2581. b9 = Instance.new("SpecialMesh", p15)
  2582. b9.MeshType = Enum.MeshType.Wedge
  2583. b9.Name = "Mesh"
  2584. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2585. p16 = Instance.new("WedgePart", m)
  2586. p16.BrickColor = BrickColor.new("Deep orange")
  2587. p16.Material = Enum.Material.Neon
  2588. p16.Name = "Wedge"
  2589. p16.FormFactor = Enum.FormFactor.Custom
  2590. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2591. p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
  2592. p16.CanCollide = false
  2593. p16.Locked = true
  2594. p16.TopSurface = Enum.SurfaceType.Smooth
  2595. b10 = Instance.new("SpecialMesh", p16)
  2596. b10.MeshType = Enum.MeshType.Wedge
  2597. b10.Name = "Mesh"
  2598. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2599. w1 = Instance.new("Weld", p1)
  2600. w1.Name = "Part_Weld"
  2601. w1.Part0 = p1
  2602. w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2603. w1.Part1 = p2
  2604. w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2605. w2 = Instance.new("Weld", p2)
  2606. w2.Name = "Part_Weld"
  2607. w2.Part0 = p2
  2608. w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2609. w2.Part1 = p3
  2610. w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2611. w3 = Instance.new("Weld", p3)
  2612. w3.Name = "Part_Weld"
  2613. w3.Part0 = p3
  2614. w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2615. w3.Part1 = p4
  2616. w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2617. w4 = Instance.new("Weld", p4)
  2618. w4.Name = "Part_Weld"
  2619. w4.Part0 = p4
  2620. w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2621. w4.Part1 = p5
  2622. w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2623. w5 = Instance.new("Weld", p5)
  2624. w5.Name = "Part_Weld"
  2625. w5.Part0 = p5
  2626. w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2627. w5.Part1 = p6
  2628. w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2629. w6 = Instance.new("Weld", p6)
  2630. w6.Name = "Part_Weld"
  2631. w6.Part0 = p6
  2632. w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2633. w6.Part1 = p7
  2634. w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2635. w7 = Instance.new("Weld", p7)
  2636. w7.Name = "Part_Weld"
  2637. w7.Part0 = p7
  2638. w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2639. w7.Part1 = p8
  2640. w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2641. w8 = Instance.new("Weld", p8)
  2642. w8.Name = "Wedge_Weld"
  2643. w8.Part0 = p8
  2644. w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2645. w8.Part1 = p9
  2646. w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2647. w9 = Instance.new("Weld", p9)
  2648. w9.Name = "Part_Weld"
  2649. w9.Part0 = p9
  2650. w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2651. w9.Part1 = p10
  2652. w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2653. w10 = Instance.new("Weld", p10)
  2654. w10.Name = "Part_Weld"
  2655. w10.Part0 = p10
  2656. w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2657. w10.Part1 = p11
  2658. w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2659. w11 = Instance.new("Weld", p11)
  2660. w11.Name = "Part_Weld"
  2661. w11.Part0 = p11
  2662. w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2663. w11.Part1 = p12
  2664. w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2665. w12 = Instance.new("Weld", p12)
  2666. w12.Name = "Part_Weld"
  2667. w12.Part0 = p12
  2668. w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2669. w12.Part1 = p13
  2670. w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2671. w13 = Instance.new("Weld", p13)
  2672. w13.Name = "Wedge_Weld"
  2673. w13.Part0 = p13
  2674. w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2675. w13.Part1 = p14
  2676. w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2677. w14 = Instance.new("Weld", p14)
  2678. w14.Name = "Wedge_Weld"
  2679. w14.Part0 = p14
  2680. w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2681. w14.Part1 = p15
  2682. w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2683. w15 = Instance.new("Weld", p15)
  2684. w15.Name = "Wedge_Weld"
  2685. w15.Part0 = p15
  2686. w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2687. w15.Part1 = p16
  2688. w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2689. m.Parent = rleg
  2690. m:MakeJoints()
  2691. ----------------------------------------------------
  2692. local cor6 = Instance.new("Part", rleg.RightLeg)
  2693. cor6.Name = "Thingy"
  2694. cor6.Locked = true
  2695. cor6.BottomSurface = 0
  2696. cor6.CanCollide = false
  2697. cor6.Size = Vector3.new(2, 1, 1)
  2698. cor6.Transparency = 1
  2699. cor6.TopSurface = 0
  2700. corw2 = Instance.new("Weld", cor6)
  2701. corw2.Part0 = rleg
  2702. corw2.Part1 = cor6
  2703. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2704. corw2.C1 = CFrame.new(0, 0, 0)
  2705. weld2 = Instance.new("Weld", rleg.RightLeg)
  2706. weld2.Part0 = cor6
  2707. weld2.Part1 = p7
  2708. weld2.C0 = CFrame.new(0, 0, 0)
  2709. ----------------------------------------------------
  2710. local m = Instance.new("Model")
  2711. m.Name = "LeftLeg"
  2712. p1 = Instance.new("WedgePart", m)
  2713. p1.BrickColor = BrickColor.new("Deep orange")
  2714. p1.Material = Enum.Material.Neon
  2715. p1.Name = "Wedge"
  2716. p1.FormFactor = Enum.FormFactor.Custom
  2717. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2718. p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
  2719. p1.CanCollide = false
  2720. p1.Locked = true
  2721. p1.TopSurface = Enum.SurfaceType.Smooth
  2722. b1 = Instance.new("SpecialMesh", p1)
  2723. b1.MeshType = Enum.MeshType.Wedge
  2724. b1.Name = "Mesh"
  2725. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2726. p2 = Instance.new("WedgePart", m)
  2727. p2.BrickColor = BrickColor.new("Deep orange")
  2728. p2.Material = Enum.Material.Neon
  2729. p2.Name = "Wedge"
  2730. p2.FormFactor = Enum.FormFactor.Custom
  2731. p2.Size = Vector3.new(1, 1.19999981, 4)
  2732. p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
  2733. p2.CanCollide = false
  2734. p2.Locked = true
  2735. p2.TopSurface = Enum.SurfaceType.Smooth
  2736. b2 = Instance.new("SpecialMesh", p2)
  2737. b2.MeshType = Enum.MeshType.Wedge
  2738. b2.Name = "Mesh"
  2739. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2740. p3 = Instance.new("Part", m)
  2741. p3.BrickColor = BrickColor.new("Really black")
  2742. p3.Material = Enum.Material.Metal
  2743. p3.Name = "Main"
  2744. p3.FormFactor = Enum.FormFactor.Custom
  2745. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2746. p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
  2747. p3.CanCollide = false
  2748. p3.Locked = true
  2749. p3.BottomSurface = Enum.SurfaceType.Smooth
  2750. p3.TopSurface = Enum.SurfaceType.Smooth
  2751. p4 = Instance.new("Part", m)
  2752. p4.BrickColor = BrickColor.new("Really black")
  2753. p4.Material = Enum.Material.Neon
  2754. p4.FormFactor = Enum.FormFactor.Custom
  2755. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2756. p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
  2757. p4.CanCollide = false
  2758. p4.Locked = true
  2759. p4.BottomSurface = Enum.SurfaceType.Smooth
  2760. p4.TopSurface = Enum.SurfaceType.Smooth
  2761. b3 = Instance.new("SpecialMesh", p4)
  2762. b3.MeshType = Enum.MeshType.Sphere
  2763. b3.Name = "Mesh"
  2764. p5 = Instance.new("WedgePart", m)
  2765. p5.BrickColor = BrickColor.new("Deep orange")
  2766. p5.Material = Enum.Material.Neon
  2767. p5.Name = "Wedge"
  2768. p5.FormFactor = Enum.FormFactor.Custom
  2769. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2770. p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
  2771. p5.CanCollide = false
  2772. p5.Locked = true
  2773. p5.TopSurface = Enum.SurfaceType.Smooth
  2774. b4 = Instance.new("SpecialMesh", p5)
  2775. b4.MeshType = Enum.MeshType.Wedge
  2776. b4.Name = "Mesh"
  2777. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2778. p6 = Instance.new("Part", m)
  2779. p6.BrickColor = BrickColor.new("Deep orange")
  2780. p6.Material = Enum.Material.Neon
  2781. p6.FormFactor = Enum.FormFactor.Custom
  2782. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2783. p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
  2784. p6.CanCollide = false
  2785. p6.Locked = true
  2786. p6.BottomSurface = Enum.SurfaceType.Smooth
  2787. p6.TopSurface = Enum.SurfaceType.Smooth
  2788. p7 = Instance.new("Part", m)
  2789. p7.BrickColor = BrickColor.new("Deep orange")
  2790. p7.Material = Enum.Material.Neon
  2791. p7.FormFactor = Enum.FormFactor.Custom
  2792. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2793. p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
  2794. p7.CanCollide = false
  2795. p7.Locked = true
  2796. p7.BottomSurface = Enum.SurfaceType.Smooth
  2797. p7.TopSurface = Enum.SurfaceType.Smooth
  2798. p8 = Instance.new("Part", m)
  2799. p8.BrickColor = BrickColor.new("Really black")
  2800. p8.Material = Enum.Material.Neon
  2801. p8.FormFactor = Enum.FormFactor.Custom
  2802. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2803. p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
  2804. p8.CanCollide = false
  2805. p8.Locked = true
  2806. p8.BottomSurface = Enum.SurfaceType.Smooth
  2807. p8.TopSurface = Enum.SurfaceType.Smooth
  2808. b5 = Instance.new("SpecialMesh", p8)
  2809. b5.MeshType = Enum.MeshType.Sphere
  2810. b5.Name = "Mesh"
  2811. p9 = Instance.new("Part", m)
  2812. p9.BrickColor = BrickColor.new("Really black")
  2813. p9.Material = Enum.Material.Neon
  2814. p9.FormFactor = Enum.FormFactor.Custom
  2815. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2816. p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
  2817. p9.CanCollide = false
  2818. p9.Locked = true
  2819. p9.BottomSurface = Enum.SurfaceType.Smooth
  2820. p9.TopSurface = Enum.SurfaceType.Smooth
  2821. b6 = Instance.new("SpecialMesh", p9)
  2822. b6.MeshType = Enum.MeshType.Sphere
  2823. b6.Name = "Mesh"
  2824. p10 = Instance.new("Part", m)
  2825. p10.BrickColor = BrickColor.new("Deep orange")
  2826. p10.Material = Enum.Material.Neon
  2827. p10.FormFactor = Enum.FormFactor.Custom
  2828. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2829. p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
  2830. p10.CanCollide = false
  2831. p10.Locked = true
  2832. p10.BottomSurface = Enum.SurfaceType.Smooth
  2833. p10.TopSurface = Enum.SurfaceType.Smooth
  2834. p11 = Instance.new("Part", m)
  2835. p11.BrickColor = BrickColor.new("Deep orange")
  2836. p11.Material = Enum.Material.Neon
  2837. p11.FormFactor = Enum.FormFactor.Custom
  2838. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2839. p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
  2840. p11.CanCollide = false
  2841. p11.Locked = true
  2842. p11.BottomSurface = Enum.SurfaceType.Smooth
  2843. p11.TopSurface = Enum.SurfaceType.Smooth
  2844. p12 = Instance.new("WedgePart", m)
  2845. p12.BrickColor = BrickColor.new("Deep orange")
  2846. p12.Material = Enum.Material.Neon
  2847. p12.Name = "Wedge"
  2848. p12.FormFactor = Enum.FormFactor.Custom
  2849. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2850. p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
  2851. p12.CanCollide = false
  2852. p12.Locked = true
  2853. p12.TopSurface = Enum.SurfaceType.Smooth
  2854. b7 = Instance.new("SpecialMesh", p12)
  2855. b7.MeshType = Enum.MeshType.Wedge
  2856. b7.Name = "Mesh"
  2857. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2858. p13 = Instance.new("Part", m)
  2859. p13.BrickColor = BrickColor.new("Really black")
  2860. p13.Material = Enum.Material.Neon
  2861. p13.FormFactor = Enum.FormFactor.Custom
  2862. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2863. p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
  2864. p13.CanCollide = false
  2865. p13.Locked = true
  2866. p13.BottomSurface = Enum.SurfaceType.Smooth
  2867. p13.TopSurface = Enum.SurfaceType.Smooth
  2868. b8 = Instance.new("SpecialMesh", p13)
  2869. b8.MeshType = Enum.MeshType.Sphere
  2870. b8.Name = "Mesh"
  2871. p14 = Instance.new("Part", m)
  2872. p14.BrickColor = BrickColor.new("Really black")
  2873. p14.Material = Enum.Material.Neon
  2874. p14.FormFactor = Enum.FormFactor.Custom
  2875. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2876. p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
  2877. p14.CanCollide = false
  2878. p14.Locked = true
  2879. p14.BottomSurface = Enum.SurfaceType.Smooth
  2880. p14.TopSurface = Enum.SurfaceType.Smooth
  2881. b9 = Instance.new("SpecialMesh", p14)
  2882. b9.MeshType = Enum.MeshType.Sphere
  2883. b9.Name = "Mesh"
  2884. w1 = Instance.new("Weld", p1)
  2885. w1.Name = "Wedge_Weld"
  2886. w1.Part0 = p1
  2887. w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2888. w1.Part1 = p2
  2889. w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2890. w2 = Instance.new("Weld", p2)
  2891. w2.Name = "Part_Weld"
  2892. w2.Part0 = p2
  2893. w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2894. w2.Part1 = p3
  2895. w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2896. w3 = Instance.new("Weld", p3)
  2897. w3.Name = "Part_Weld"
  2898. w3.Part0 = p3
  2899. w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2900. w3.Part1 = p4
  2901. w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2902. w4 = Instance.new("Weld", p4)
  2903. w4.Name = "Wedge_Weld"
  2904. w4.Part0 = p4
  2905. w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2906. w4.Part1 = p5
  2907. w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2908. w5 = Instance.new("Weld", p5)
  2909. w5.Name = "Part_Weld"
  2910. w5.Part0 = p5
  2911. w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2912. w5.Part1 = p6
  2913. w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2914. w6 = Instance.new("Weld", p6)
  2915. w6.Name = "Part_Weld"
  2916. w6.Part0 = p6
  2917. w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2918. w6.Part1 = p7
  2919. w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2920. w7 = Instance.new("Weld", p7)
  2921. w7.Name = "Part_Weld"
  2922. w7.Part0 = p7
  2923. w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2924. w7.Part1 = p8
  2925. w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2926. w8 = Instance.new("Weld", p8)
  2927. w8.Name = "Part_Weld"
  2928. w8.Part0 = p8
  2929. w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2930. w8.Part1 = p9
  2931. w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2932. w9 = Instance.new("Weld", p9)
  2933. w9.Name = "Part_Weld"
  2934. w9.Part0 = p9
  2935. w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2936. w9.Part1 = p10
  2937. w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2938. w10 = Instance.new("Weld", p10)
  2939. w10.Name = "Part_Weld"
  2940. w10.Part0 = p10
  2941. w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2942. w10.Part1 = p11
  2943. w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2944. w11 = Instance.new("Weld", p11)
  2945. w11.Name = "Wedge_Weld"
  2946. w11.Part0 = p11
  2947. w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2948. w11.Part1 = p12
  2949. w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2950. w12 = Instance.new("Weld", p12)
  2951. w12.Name = "Part_Weld"
  2952. w12.Part0 = p12
  2953. w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2954. w12.Part1 = p13
  2955. w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2956. w13 = Instance.new("Weld", p13)
  2957. w13.Name = "Part_Weld"
  2958. w13.Part0 = p13
  2959. w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2960. w13.Part1 = p14
  2961. w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2962. w14 = Instance.new("Weld", p14)
  2963. w14.Name = "Wedge_Weld"
  2964. w14.Part0 = p14
  2965. w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2966. m.Parent = lleg
  2967. m:MakeJoints()
  2968. ----------------------------------------------------
  2969. local cor7 = Instance.new("Part", lleg.LeftLeg)
  2970. cor7.Name = "Thingy"
  2971. cor7.Locked = true
  2972. cor7.BottomSurface = 0
  2973. cor7.CanCollide = false
  2974. cor7.Size = Vector3.new(2, 1, 1)
  2975. cor7.Transparency = 1
  2976. cor7.TopSurface = 0
  2977. corw2 = Instance.new("Weld", cor7)
  2978. corw2.Part0 = lleg
  2979. corw2.Part1 = cor7
  2980. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2981. corw2.C1 = CFrame.new(0, 0, 0)
  2982. weld2 = Instance.new("Weld", lleg.LeftLeg)
  2983. weld2.Part0 = cor7
  2984. weld2.Part1 = p3
  2985. weld2.C0 = CFrame.new(0, 0, 0)
  2986. ----------------------------------------------------
  2987. function weld5(part0, part1, c0, c1)
  2988. weeld=Instance.new("Weld", part0)
  2989. weeld.Part0=part0
  2990. weeld.Part1=part1
  2991. weeld.C0=c0
  2992. weeld.C1=c1
  2993. return weeld
  2994. end
  2995. ----------------------------------------------------
  2996. function newRay(start,face,range,wat)
  2997. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  2998. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  2999. return rey,hit,pos
  3000. end
  3001. ----------------------------------------------------
  3002. mod5 = Instance.new("Model",char)
  3003.  
  3004. function FindNearestTorso(Position,Distance,SinglePlayer)
  3005. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3006. local List = {}
  3007. for i,v in pairs(workspace:GetChildren())do
  3008. if v:IsA("Model")then
  3009. if v:findFirstChild("Torso")then
  3010. if v ~= char then
  3011. if(v.Torso.Position -Position).magnitude = 0.975 then BREAKIT = true end
  3012. if v.Name == "0" then
  3013. local Ignore = {}
  3014. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3015. if v.Character ~= nil then
  3016. Ignore[#Ignore+1] = v.Character
  3017. end
  3018. end
  3019. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3020. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3021. if Hit ~= nil then
  3022. if #Rocks == 0 then
  3023. for i = 1,5 do
  3024. local P = Instance.new("Part",char)
  3025. Rocks[#Rocks+1] = P
  3026. P.Anchored = true
  3027. P.FormFactor = "Custom"
  3028. P.BrickColor = Hit.BrickColor
  3029. P.Material = Hit.Material
  3030. P.TopSurface = "Smooth"
  3031. P.BottomSurface = "Smooth"
  3032. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3033. end
  3034. end
  3035. for i,P in pairs(Rocks) do
  3036. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3037. end
  3038. local P = Instance.new("Part",char)
  3039. CParts[#CParts+1] = {P,tick()}
  3040. P.Anchored = true
  3041. P.FormFactor = "Custom"
  3042. P.BrickColor = Hit.BrickColor
  3043. P.Material = Hit.Material
  3044. P.TopSurface = "Smooth"
  3045. P.BottomSurface = "Smooth"
  3046. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3047. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3048. Pos = Pos.p
  3049. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3050. local P = P:Clone()
  3051. CParts[#CParts+1] = {P,tick()}
  3052. P.Parent = char
  3053. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3054. Pos = Pos.p
  3055. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  3056. if LastPos ~= nil then
  3057. local P = P:Clone()
  3058. CParts[#CParts+1] = {P,tick()}
  3059. P.Parent = char
  3060. P.BrickColor = BrickColor.new("Really black")
  3061. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3062. Pos = Pos.p
  3063. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3064. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3065. --P.Velocity = Vector3.new(0,-1000,0)
  3066. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3067. end
  3068. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3069. end
  3070. end
  3071. end
  3072. if BREAKIT then break end
  3073. wait(0.002)
  3074. end
  3075. for i,v in pairs(Rocks) do
  3076. CParts[#CParts+1] = {v,tick()}
  3077. end
  3078. for i,v in pairs(Parts) do
  3079. v:Destroy()
  3080. end
  3081. Parts = nil
  3082. while true do
  3083. local t = tick()
  3084. local p = nil
  3085. for i,v in pairs(CParts) do
  3086. if t-v[2] > 4 then
  3087. v[1].Transparency = v[1].Transparency+0.05
  3088. if v[1].Transparency >= 1 then
  3089. v[1]:Destroy()
  3090. CParts[i] = nil
  3091. end
  3092. end
  3093. p = v
  3094. end
  3095. if p == nil then break end
  3096. wait(0.002)
  3097. end
  3098. for i,v in pairs(CParts) do
  3099. v:Destroy()
  3100. end
  3101. CParts = {}
  3102. end)
  3103. for i = 1, 20 do
  3104. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  3105. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  3106. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  3107. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3108. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3109. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3110. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  3111. if Debounces.on == false then break end
  3112. rs:wait(2)
  3113. end
  3114. if Debounces.CanAttack == false then
  3115. Debounces.CanAttack = true
  3116. Debounces.on = false
  3117. Debounces.NoIdl = false
  3118. end
  3119. end
  3120. end
  3121. end)
  3122. ----------------------------------------------------
  3123. mouse.KeyDown:connect(function(key)
  3124. if key == "e" then
  3125. larm.BrickColor = BrickColor.new("Bright red")
  3126. rarm.BrickColor = BrickColor.new("Bright red")
  3127. if Debounces.CanAttack == true then
  3128. Debounces.CanAttack = false
  3129. Debounces.on = true
  3130. Debounces.NoIdl = true
  3131. for i = 1, 18 do
  3132. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  3133. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3134. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3135. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3136. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3137. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3138. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3139. if Debounces.on == false then break end
  3140. rs:wait(4)
  3141. end
  3142. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3143. local rng = Instance.new("Part", char.Absolution.Handle)
  3144. rng.Anchored = true
  3145. rng.BrickColor = BrickColor.new("Really black")
  3146. rng.CanCollide = true
  3147. rng.FormFactor = 3
  3148. rng.Name = "Ring"
  3149. rng.Size = Vector3.new(1, 1, 1)
  3150. rng.CanCollide = false
  3151. rng.Transparency = 0.35
  3152. rng.TopSurface = 0
  3153. rng.BottomSurface = 0
  3154. rng.CFrame = HandCF
  3155. local rngm = Instance.new("SpecialMesh", rng)
  3156. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3157. rngm.Scale = Vector3.new(1, 1, 2)
  3158. x = Instance.new("Sound", hed)
  3159. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3160. x.Looped = false
  3161. x.Pitch = .7
  3162. x.Volume = 1
  3163. x1 = Instance.new("Sound", hed)
  3164. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3165. x1.Looped = false
  3166. x1.Pitch = .7
  3167. x1.Volume = 1
  3168. x:Play()
  3169. x1:Play()
  3170. rngto = rng.Touched:connect(function(ht)
  3171. hit = ht.Parent
  3172. if ht and hit:IsA("Model") then
  3173. if hit:FindFirstChild("Humanoid") then
  3174. if hit.Name ~= p.Name then
  3175. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3176. Debounces.Slashed = true]]--
  3177. hit:FindFirstChild("Humanoid"):TakeDamage(999999999999999)
  3178. hit:FindFirstChild("Humanoid").PlatformStand = true
  3179. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3180. --Debounces.Slashed = false
  3181. --end
  3182. end
  3183. end
  3184. elseif ht and hit:IsA("Hat") then
  3185. if hit.Parent.Name ~= p.Name then
  3186. if hit.Parent:FindFirstChild("Humanoid") then
  3187. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3188. Debounces.Slashed = true]]--
  3189. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(999999999999999)
  3190. hit:FindFirstChild("Humanoid").PlatformStand = true
  3191. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3192. --Debounces.Slashed = false
  3193. end
  3194. end
  3195. end
  3196. end)
  3197. coroutine.wrap(function()
  3198. for i = 1, 60, 2 do
  3199. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3200. rng.Size = rngm.Scale
  3201. rng.CFrame = HandCF
  3202. rng.Transparency = i/60
  3203. wait()
  3204. end
  3205. wait()
  3206. rng:Destroy()
  3207. end)()
  3208. for i = 1, 18 do
  3209. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  3210. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3211. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3212. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3213. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3214. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3215. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3216. if Debounces.on == false then break end
  3217. rs:wait(2.4)
  3218. end
  3219. larm.BrickColor = BrickColor.new("Really black")
  3220. rarm.BrickColor = BrickColor.new("Really black")
  3221. x:Destroy()
  3222. x1:Destroy()
  3223. if Debounces.CanAttack == false then
  3224. Debounces.CanAttack = true
  3225. Debounces.on = false
  3226. Debounces.NoIdl = false
  3227. end
  3228. end
  3229. end
  3230. end)
  3231. ----------------------------------------------------
  3232. mouse.KeyDown:connect(function(key)
  3233. if key == "y" then
  3234. if Debounces.CanAttack == true then
  3235. Debounces.CanAttack = false
  3236. Debounces.on = true
  3237. Debounces.NoIdl = true
  3238. for i = 1, 15 do
  3239. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  3240. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
  3241. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3242. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3243. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3244. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3245. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3246. if Debounces.on == false then break end
  3247. rs:wait(2.7)
  3248. end
  3249. x = Instance.new("Sound",char)
  3250. x.SoundId = "rbxassetid://228343271"
  3251. x.Pitch = 1
  3252. x.Volume = .8
  3253. wait(.1)
  3254. x:Play()
  3255. Debounces.on = false
  3256. Debounces.Here = false
  3257. shot = shot + 1
  3258. local rng = Instance.new("Part", char)
  3259. rng.Anchored = true
  3260. rng.BrickColor = BrickColor.new("Deep orange")
  3261. rng.CanCollide = false
  3262. rng.FormFactor = 3
  3263. rng.Name = "Ring"
  3264. rng.Size = Vector3.new(1, 1, 1)
  3265. rng.Transparency = 0.35
  3266. rng.TopSurface = 0
  3267. rng.BottomSurface = 0
  3268. rng2 = rng:clone()
  3269. rng3 = rng2:clone()
  3270. rng4 = rng2:clone()
  3271. local rngm = Instance.new("SpecialMesh", rng)
  3272. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3273. rngm.Scale = Vector3.new(10, 10, 1)
  3274. rngm2 = rngm:clone()
  3275. rngm2.Scale = Vector3.new(5, 5, 3)
  3276. rngm3=rngm2:clone()
  3277. rngm3.Parent = rng3
  3278. rngm3.Scale = Vector3.new(8, 8, 1)
  3279. rngm4 = rngm2:clone()
  3280. rngm4.Parent = rng4
  3281. rngm4.Scale = Vector3.new(6, 6, 1)
  3282. local bem = Instance.new("Part", char)
  3283. bem.Anchored = true
  3284. bem.BrickColor = BrickColor.new("Really black")
  3285. bem.CanCollide = false
  3286. bem.FormFactor = 3
  3287. bem.Name = "Beam" .. shot
  3288. bem.Size = Vector3.new(1, 1, 1)
  3289. bem.Transparency = 0.35
  3290. bem.TopSurface = 0
  3291. bem.BottomSurface = 0
  3292. local bemm = Instance.new("SpecialMesh", bem)
  3293. bemm.MeshType = 4
  3294. bemm.Scale = Vector3.new(1, 4, 4)
  3295. local out = Instance.new("Part", char)
  3296. out.Anchored = true
  3297. out.BrickColor = BrickColor.new("Really black")
  3298. out.CanCollide = false
  3299. out.FormFactor = 3
  3300. out.Name = "Out"
  3301. out.Size = Vector3.new(4, 4, 4)
  3302. out.Transparency = 0.35
  3303. out.TopSurface = 0
  3304. out.BottomSurface = 0
  3305. local outm = Instance.new("SpecialMesh", out)
  3306. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3307. outm.Scale = Vector3.new(4, 4, 4)
  3308. local bnd = Instance.new("Part", char)
  3309. bnd.Anchored = true
  3310. bnd.BrickColor = BrickColor.new("Deep orange")
  3311. bnd.CanCollide = false
  3312. bnd.FormFactor = 3
  3313. bnd.Name = "Bend"
  3314. bnd.Size = Vector3.new(1, 1, 1)
  3315. bnd.Transparency = 1
  3316. bnd.TopSurface = 0
  3317. bnd.BottomSurface = 0
  3318. local bndm = Instance.new("SpecialMesh", bnd)
  3319. bndm.MeshType = 3
  3320. bndm.Scale = Vector3.new(8, 8, 8)
  3321. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3322. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3323. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3324. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3325. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3326. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3327. Debounces.Shewt = true
  3328. coroutine.wrap(function()
  3329. for i = 1, 20, 0.2 do
  3330. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3331. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3332. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3333. rng.Transparency = i/20
  3334. rng3.Transparency = 1/24
  3335. rng4.Transparency = i/26
  3336. wait()
  3337. end
  3338. wait()
  3339. rng:Destroy()
  3340. end)()
  3341. if Debounces.Shewt == true then
  3342. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  3343. hit = ht.Parent
  3344. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  3345. if HasntTouched(hit.Name) == true and deb == false then
  3346. deb = true
  3347. coroutine.wrap(function()
  3348. hit:FindFirstChild("Humanoid").PlatformStand = true
  3349. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  3350. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  3351. end)()
  3352. table.insert(Touche, hit.Name)
  3353. deb = false
  3354. end
  3355. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  3356. if HasntTouched(hit.Parent.Name) == true and deb == false then
  3357. deb = true
  3358. coroutine.wrap(function()
  3359. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  3360. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  3361. wait(1)
  3362. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  3363. end)()
  3364. table.insert(Touche, hit.Parent.Name)
  3365. deb = false
  3366. for i, v in pairs(Touche) do
  3367. print(v)
  3368. end
  3369. end
  3370. end
  3371. end)
  3372. end
  3373. for i = 0, 260, 8 do
  3374. bem.Size = Vector3.new(i, 2, 2)
  3375. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  3376. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  3377. bnd.Size = Vector3.new(1,1,1)
  3378. bndm.Scale = Vector3.new(8,8,8)
  3379. if i % 10 == 0 then
  3380. local newRng = rng2:Clone()
  3381. newRng.Parent = char
  3382. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  3383. local newRngm = rngm2:clone()
  3384. newRngm.Parent=newRng
  3385. coroutine.wrap(function()
  3386. for i = 1, 10, 0.2 do
  3387. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  3388. newRng.Transparency = i/10
  3389. wait()
  3390. end
  3391. wait()
  3392. newRng:Destroy()
  3393. end)()
  3394. end
  3395. wait()
  3396. end
  3397. wait()
  3398. Debounces.Shewt = false
  3399. bem:Destroy()
  3400. out:Destroy()
  3401. bnd:Destroy()
  3402. Debounces.Ready = false
  3403. for i, v in pairs(Touche) do
  3404. table.remove(Touche, i)
  3405. end
  3406. wait()
  3407. table.insert(Touche, char.Name)
  3408. Debounces.NoIdl = false
  3409. if Debounces.CanAttack == false then
  3410. Debounces.CanAttack = true
  3411. end
  3412. end
  3413. end
  3414. end)
  3415. ----------------------------------------------------
  3416. sidz = {"231917888", "231917845", "231917806"}
  3417. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  3418. mouse.KeyDown:connect(function(key)
  3419. if key == "f" then
  3420. larm.BrickColor = BrickColor.new("Bright red")
  3421. rarm.BrickColor = BrickColor.new("Bright red")
  3422. if Debounces.CanAttack == true then
  3423. Debounces.CanAttack = false
  3424. Debounces.on = true
  3425. Debounces.NoIdl = true
  3426. for i = 1, 20 do
  3427. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  3428. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  3429. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  3430. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  3431. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  3432. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  3433. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3434. if Debounces.on == false then break end
  3435. rs:wait(6)
  3436. end
  3437. z = Instance.new("Sound",char)
  3438. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  3439. z.Pitch = ptz[math.random(1,#ptz)]
  3440. z.Volume = 1
  3441. z1 = Instance.new("Sound",char)
  3442. z1.SoundId = z.SoundId
  3443. z1.Pitch = z.Pitch
  3444. z1.Volume = 1
  3445. z:Play()
  3446. z1:Play()
  3447. Stomp()
  3448. for i = 1, 20 do
  3449. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  3450. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  3451. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  3452. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  3453. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  3454. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  3455. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3456. if Debounces.on == false then break end
  3457. rs:wait(2.5)
  3458. end
  3459. if Debounces.CanAttack == false then
  3460. Debounces.CanAttack = true
  3461. Debounces.on = false
  3462. Debounces.NoIdl = false
  3463. larm.BrickColor = BrickColor.new("Really black")
  3464. rarm.BrickColor = BrickColor.new("Really black")
  3465. end
  3466. end
  3467. end
  3468. end)
  3469. ----------------------------------------------------
  3470. mouse.KeyDown:connect(function(key)
  3471. if key == "g" then
  3472. larm.BrickColor = BrickColor.new("Bright red")
  3473. rarm.BrickColor = BrickColor.new("Bright red")
  3474. if Debounces.CanAttack == true then
  3475. Debounces.CanAttack = false
  3476. Debounces.on = true
  3477. Debounces.NoIdl = true
  3478. chrg = lleg.Touched:connect(function(ht)
  3479. hit = ht.Parent
  3480. if ht and hit:IsA("Model") then
  3481. if hit:FindFirstChild("Humanoid") then
  3482. if hit.Name ~= p.Name then
  3483. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3484. Debounces.Slashed = true]]--
  3485. hit:FindFirstChild("Humanoid"):TakeDamage(999999999999999)
  3486. hit:FindFirstChild("Humanoid").PlatformStand = true
  3487. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  3488. --Debounces.Slashed = false
  3489. --end
  3490. end
  3491. end
  3492. elseif ht and hit:IsA("Hat") then
  3493. if hit.Parent.Name ~= p.Name then
  3494. if hit.Parent:FindFirstChild("Humanoid") then
  3495. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3496. Debounces.Slashed = true]]--
  3497. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(999999999999999)
  3498. hit:FindFirstChild("Humanoid").PlatformStand = true
  3499. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  3500. --Debounces.Slashed = false
  3501. end
  3502. end
  3503. end
  3504. end)
  3505. for i = 1, 14 do
  3506. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  3507. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.2)
  3508. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
  3509. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2)
  3510. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  3511. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  3512. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  3513. if Debounces.on == false then break end
  3514. rs:wait(3)
  3515. end
  3516. charge()
  3517. z = Instance.new("Sound",char)
  3518. z.SoundId = "rbxassetid://200632875"
  3519. z.Volume = 1
  3520. z.Pitch = .8
  3521. z1 = Instance.new("Sound",char)
  3522. z1.SoundId = "rbxassetid://200632875"
  3523. z1.Volume = 1
  3524. z1.Pitch = .9
  3525. z:Play()
  3526. z1:Play()
  3527. wait(1)
  3528. z:Destroy()
  3529. z1:Destroy()
  3530. chrg:disconnect()
  3531. if Debounces.CanAttack == false then
  3532. Debounces.CanAttack = true
  3533. Debounces.on = false
  3534. Debounces.NoIdl = false
  3535. larm.BrickColor = BrickColor.new("Really black")
  3536. rarm.BrickColor = BrickColor.new("Really black")
  3537. end
  3538. end
  3539. end
  3540. end)
  3541. ----------------------------------------------------
  3542. pt = {0.7, 0.8, 0.9}
  3543. mouse.KeyDown:connect(function(key)
  3544. if key == "h" then
  3545. if Debounces.CanJoke == true then
  3546. Debounces.CanJoke = false
  3547. u = Instance.new("Sound")
  3548. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  3549. u.Parent = char
  3550. u.Looped = false
  3551. u.Pitch = pt[math.random(1,#pt)]
  3552. u.Volume = 1
  3553. u2 = Instance.new("Sound")
  3554. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  3555. u2.Parent = char
  3556. u2.Looped = false
  3557. u2.Pitch = u.Pitch
  3558. u2.Volume = 1
  3559. wait(.01)
  3560. u:Play()
  3561. u2:Play()
  3562. wait(6)
  3563. u:Destroy()
  3564. u2:Destroy()
  3565. if Debounces.CanJoke == false then
  3566. Debounces.CanJoke = true
  3567. end
  3568. end
  3569. end
  3570. end)
  3571. ----------------------------------------------------
  3572. mouse.KeyDown:connect(function(key)
  3573. if key == "j" then
  3574. if Debounces.CanJoke == true then
  3575. Debounces.CanJoke = false
  3576. z = Instance.new("Sound",char)
  3577. z.SoundId = "rbxassetid://135017755"
  3578. z.Pitch = .76
  3579. z.Volume = 1
  3580. wait()
  3581. z:Play()
  3582. wait(6)
  3583. z:Destroy()
  3584. if Debounces.CanJoke == false then
  3585. Debounces.CanJoke = true
  3586. end
  3587. end
  3588. end
  3589. end)
  3590. ----------------------------------------------------
  3591. mouse.KeyDown:connect(function(key)
  3592. if key == "k" then
  3593. if Debounces.CanJoke == true then
  3594. Debounces.CanJoke = false
  3595. z = Instance.new("Sound",char)
  3596. z.SoundId = "rbxassetid://135017578"
  3597. z.Pitch = .76
  3598. z.Volume = 1
  3599. wait()
  3600. z:Play()
  3601. wait(4)
  3602. z:Destroy()
  3603. if Debounces.CanJoke == false then
  3604. Debounces.CanJoke = true
  3605. end
  3606. end
  3607. end
  3608. end)
  3609. ----------------------------------------------------
  3610. mouse.KeyDown:connect(function(key)
  3611. if key == "x" then
  3612. if Debounces.CanAttack == true then
  3613. Debounces.CanAttack = false
  3614. Debounces.NoIdl = true
  3615. Debounces.on = true
  3616. Debounces.ks = true
  3617. for i = 1, 10 do
  3618. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  3619. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.2)
  3620. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  3621. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  3622. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  3623. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.2)
  3624. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3625. if Debounces.on == false then break end
  3626. rs:wait(1)
  3627. end
  3628. z = Instance.new("Sound",hed)
  3629. z.SoundId = "rbxassetid://169445092"
  3630. z.Volume = 1
  3631. wait(0.1)
  3632. z:Play()
  3633. kik = rleg.Touched:connect(function(ht)
  3634. hit = ht.Parent
  3635. if ht and hit:IsA("Model") then
  3636. if hit:FindFirstChild("Humanoid") then
  3637. if hit.Name ~= p.Name then
  3638. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3639. Debounces.Slashed = true]]--
  3640. if Debounces.ks==true then
  3641. z = Instance.new("Sound",hed)
  3642. z.SoundId = "rbxassetid://169380525"
  3643. z.Volume = 1
  3644. z:Play()
  3645. Debounces.ks=false
  3646. end
  3647. hit:FindFirstChild("Humanoid"):TakeDamage(999999999999999)
  3648. hit:FindFirstChild("Humanoid").PlatformStand = true
  3649. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  3650. --Debounces.Slashed = false
  3651. --end
  3652. end
  3653. end
  3654. elseif ht and hit:IsA("Hat") then
  3655. if hit.Parent.Name ~= p.Name then
  3656. if hit.Parent:FindFirstChild("Humanoid") then
  3657. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3658. Debounces.Slashed = true]]--
  3659. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(999999999999999)
  3660. hit:FindFirstChild("Humanoid").PlatformStand = true
  3661. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  3662. --Debounces.Slashed = false
  3663. --end
  3664. end
  3665. end
  3666. end
  3667. end)
  3668. for i = 1, 8 do
  3669. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
  3670. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
  3671. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  3672. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  3673. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
  3674. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.3)
  3675. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3676. if Debounces.on == false then break end
  3677. rs:wait(.7)
  3678. end
  3679. kik:disconnect()
  3680. if Debounces.CanAttack == false then
  3681. Debounces.CanAttack = true
  3682. Debounces.on = false
  3683. Debounces.NoIdl = false
  3684. end
  3685. end
  3686. end
  3687. end)
  3688. ----------------------------------------------------
  3689. mouse.KeyDown:connect(function(key)
  3690. if key == "c" then
  3691. if Debounces.CanAttack == true then
  3692. Debounces.CanAttack = false
  3693. Debounces.NoIdl = true
  3694. Debounces.on = true
  3695. SIDZ = {"231917744", "231917742"}
  3696. PTZ = {0.7, 0.8, 0.9, 1}
  3697. for i = 1, 20 do
  3698. wait()
  3699. for i,v in pairs(char.Absolution:children()) do
  3700. if v:IsA("Part") or v:IsA("WedgePart") then
  3701. v.Transparency = v.Transparency + 0.05
  3702. end
  3703. end
  3704. end
  3705. function FindNearestTorso(Position,Distance,SinglePlayer)
  3706. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3707. local List = {}
  3708. for i,v in pairs(workspace:GetChildren())do
  3709. if v:IsA("Model")then
  3710. if v:findFirstChild("Torso")then
  3711. if v ~= char then
  3712. if(v.Torso.Position -Position).magnitude 1 then
  3713. for i = 1, 20 do
  3714. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3715. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3716. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
  3717. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
  3718. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  3719. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  3720. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3721. if Debounces.on == false then break end
  3722. wait()
  3723. end
  3724. for i = 1, 360, 20 do wait()
  3725. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  3726. end
  3727. end
  3728. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  3729. local ry,ht,ps=nil,nil,nil
  3730. while ht==nil do
  3731. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3732. wait()
  3733. end
  3734. z = Instance.new("Sound",char)
  3735. z.SoundId = "rbxassetid://245537790"
  3736. z.Pitch = 1
  3737. z.Volume = 1
  3738. wait(0.1)
  3739. z:Play()
  3740. local sp = Instance.new("Part", char)
  3741. sp.Name = "Energy"
  3742. sp.BrickColor = BrickColor.new("Really black")
  3743. sp.Size = Vector3.new(1, 1, 1)
  3744. sp.Shape = "Ball"
  3745. sp.CanCollide = false
  3746. sp.Anchored = true
  3747. sp.TopSurface = 0
  3748. sp.BottomSurface = 0
  3749. local spm = Instance.new("SpecialMesh",sp)
  3750. spm.MeshId = "rbxassetid://9982590"
  3751. spm.Scale = Vector3.new(3,3,3)
  3752. local sp2 = Instance.new("Part", char)
  3753. sp2.Name = "Energy2"
  3754. sp2.BrickColor = BrickColor.new("Really black")
  3755. sp2.Size = Vector3.new(1, 1, 1)
  3756. sp2.Shape = "Ball"
  3757. sp2.CanCollide = false
  3758. sp2.Anchored = true
  3759. sp2.TopSurface = 0
  3760. sp2.BottomSurface = 0
  3761. local spm2 = Instance.new("SpecialMesh",sp2)
  3762. spm2.MeshId = "rbxassetid://9982590"
  3763. spm2.Scale = Vector3.new(3,3,3)
  3764. sp.Touched:connect(function(hit)
  3765. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  3766. local Occlude = true
  3767. local NotOccludes = {
  3768. char.Name;
  3769. "Wings";
  3770. "Scythe";
  3771. "Thingy";
  3772. "Thingy2"; -- put all of the names in a table pls
  3773. }
  3774. for i,v in pairs(NotOccludes) do
  3775. if hit.Parent.Name == v then
  3776. Occlude = false
  3777. end
  3778. end
  3779. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  3780. if Occlude then
  3781. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  3782. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  3783. end
  3784. end
  3785. end)
  3786. sp2.Touched:connect(function(hit)
  3787. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  3788. local Occlude = true
  3789. local NotOccludes = {
  3790. char.Name;
  3791. "Wings";
  3792. "Scythe";
  3793. "Thingy";
  3794. "Thingy2"; -- put all of the names in a table pls
  3795. }
  3796. for i,v in pairs(NotOccludes) do
  3797. if hit.Parent.Name == v then
  3798. Occlude = false
  3799. end
  3800. end
  3801. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  3802. if Occlude then
  3803. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  3804. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  3805. end
  3806. end
  3807. end)
  3808. for i = 1, 100, 1 do
  3809. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  3810. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  3811. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  3812. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  3813. spm.Scale = sp.Size
  3814. spm2.Scale = sp2.Size
  3815. local t = i / 100
  3816. sp.Transparency = t
  3817. sp2.Transparency = t
  3818. wait()
  3819. end
  3820. sp:Destroy()
  3821. sp2:Destroy()
  3822. z:Destroy()
  3823. for i = 1, 20 do
  3824. wait()
  3825. for i,v in pairs(char.Absolution:children()) do
  3826. if v:IsA("Part") or v:IsA("WedgePart") then
  3827. v.Transparency = v.Transparency - 0.05
  3828. end
  3829. end
  3830. end
  3831. if Debounces.CanAttack == false then
  3832. Debounces.CanAttack = true
  3833. Debounces.NoIdl = false
  3834. Debounces.on = false
  3835. end
  3836. end
  3837. end
  3838. end)
  3839. ----------------------------------------------------
  3840. local orbt={}
  3841. local stlt={}
  3842. local chot={}
  3843. local cfxt={}
  3844. local pfxt={}
  3845. local cns=0
  3846. local cnOrb=nil
  3847. mouse.KeyDown:connect(function(key)
  3848. if key == "u" then
  3849. if Debounces.CanAttack == true then
  3850. Debounces.CanAttack = false
  3851. Debounces.NoIdl = true
  3852. Debounces.on = true
  3853. orbt={}
  3854. stlt={}
  3855. chot={}
  3856. cfxt={}
  3857. for i = 1, 20 do
  3858. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
  3859. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  3860. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  3861. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  3862. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
  3863. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
  3864. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3865. if Debounces.on == false then end
  3866. rs:wait()
  3867. end
  3868. z = Instance.new("Sound",char)
  3869. z.SoundId = "rbxassetid://170053944"
  3870. z.Pitch = 1.07
  3871. z.Volume = 1
  3872. wait(0.1)
  3873. z:Play()
  3874. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  3875. debris:AddItem(cnOrb,50)
  3876. cnOrb.Mesh.MeshType=3
  3877. table.insert(orbt,cnOrb)
  3878. table.insert(stlt,cnOrb)
  3879. local nt=0
  3880. for i=0,5,0.02 do
  3881. nt=nt+1
  3882. cns=i
  3883. if nt>=2 then
  3884. nt=0
  3885. local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Really black")
  3886. debris:AddItem(cho,1)
  3887. cho.Mesh.MeshType=3
  3888. table.insert(chot,cho)
  3889. end
  3890. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  3891. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  3892. wait()
  3893. end
  3894. for i = 1, 14 do
  3895. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  3896. if Debounces.on == false then end
  3897. rs:wait()
  3898. end
  3899. coroutine.wrap(function()
  3900. for i = 1, 20 do
  3901. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
  3902. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  3903. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  3904. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  3905. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
  3906. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
  3907. if Debounces.on == false then end
  3908. rs:wait()
  3909. end
  3910. end)()
  3911. wait(0.1)
  3912. stlt={}
  3913. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  3914. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  3915. local nt=0
  3916. for i=0,160,3 do
  3917. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  3918. nt=nt+1
  3919. if nt>=6 then
  3920. nt=0
  3921. local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black")
  3922. cfx.Mesh.MeshId="rbxassetid://20329976"
  3923. cfx.Transparency=0.4
  3924. table.insert(cfxt,cfx)
  3925. debris:AddItem(cfx,1)
  3926. end
  3927. if (cnOrb.Position-ps).magnitude=6 then
  3928. local pls={}
  3929. for _,v in pairs(game.Players:GetChildren()) do
  3930. table.insert(pls,v)
  3931. end
  3932. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  3933. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  3934. pffx.Mesh.MeshId="rbxassetid://20329976"
  3935. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  3936. debris:AddItem(pffx,2)
  3937. table.insert(pfxt,pffx)
  3938. nt=0
  3939. end
  3940. wait()
  3941. end
  3942. local int=0
  3943. coroutine.wrap(function()
  3944. for i=1,500 do
  3945. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  3946. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  3947. nt=nt+1
  3948. int=int+1
  3949. local htd={p}
  3950. for _,v in pairs(game:service"Players":GetChildren()) do
  3951. pcall(function()
  3952. for _,c in pairs(v.Character:GetChildren()) do
  3953. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude=6 then
  3954. for _,v in pairs(game:service"Players":GetChildren()) do
  3955. pcall(function()
  3956. for _,c in pairs(v.Character:GetChildren()) do
  3957. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude=4 then
  3958. local pls={}
  3959. for _,v in pairs(game.Players:GetChildren()) do
  3960. table.insert(pls,v)
  3961. end
  3962. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  3963. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  3964. pffx.Transparency=0.4
  3965. pffx.Mesh.MeshId="rbxassetid://20329976"
  3966. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  3967. debris:AddItem(pffx,2)
  3968. table.insert(pfxt,pffx)
  3969. nt=0
  3970. end
  3971. wait()
  3972. end
  3973. cnOrb:Destroy()
  3974. cnfx:Destroy()
  3975. for _,v in pairs(mod3:GetChildren()) do
  3976. v:Destroy()
  3977. end
  3978. orbt={}
  3979. stlt={}
  3980. chot={}
  3981. cfxt={}
  3982. pfxt={}
  3983. end)()
  3984. if Debounces.CanAttack == false then
  3985. Debounces.CanAttack = true
  3986. Debounces.NoIdl = false
  3987. Debounces.on = false
  3988. end
  3989. end
  3990. end
  3991. end)
  3992. ----------------------------------------------------
  3993. mouse.KeyDown:connect(function(key)
  3994. if key == "m" then
  3995. if Debounces.CanAttack == true then
  3996. Debounces.CanAttack = false
  3997. Debounces.on = true
  3998. Debounces.NoIdl = true
  3999. --[[x = Instance.new("Sound",char)
  4000. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  4001. x.Looped = false
  4002. x.Pitch = 1.1
  4003. x.Volume = 1
  4004. x:Play()
  4005. x2 = Instance.new("Sound",char)
  4006. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  4007. x2.Looped = false
  4008. x2.Pitch = .7
  4009. x2.Volume = 1
  4010. wait(.1)
  4011. x:Play()
  4012. x2:Play()
  4013. for i = 1, 20 do
  4014. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  4015. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  4016. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  4017. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  4018. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  4019. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  4020. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  4021. if Debounces.on == false then break end
  4022. wait()
  4023. x:Destroy()
  4024. x2:Destroy()
  4025. end
  4026. wait(1)]]--
  4027. local rng = Instance.new("Part", char)
  4028. rng.Anchored = true
  4029. rng.BrickColor = BrickColor.new("Really black")
  4030. rng.CanCollide = false
  4031. rng.FormFactor = 3
  4032. rng.Name = "Ring"
  4033. rng.Size = Vector3.new(1, 1, 1)
  4034. rng.Transparency = 0.35
  4035. rng.TopSurface = 0
  4036. rng.BottomSurface = 0
  4037. rng.Position = torso.Position - Vector3.new(0,5,0)
  4038. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  4039. local rngm = Instance.new("SpecialMesh", rng)
  4040. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4041. rngm.Scale = Vector3.new(1, 1, 2)
  4042. x = Instance.new("Sound",char)
  4043. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  4044. x.Looped = false
  4045. x.Pitch = .7
  4046. x.Volume = 1
  4047. x:Play()
  4048. coroutine.wrap(function()
  4049. for i = 1, 60, 2 do
  4050. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  4051. rng.Transparency = i/60
  4052. wait()
  4053. end
  4054. wait()
  4055. rng:Destroy()
  4056. end)()
  4057. hum.WalkSpeed = 100
  4058. BV = Instance.new("BodyVelocity", torso)
  4059. BV.maxForce = Vector3.new(0,200000,0)
  4060. BV.P = 240000
  4061. BV.velocity = Vector3.new(0,700,0)
  4062. for i = 1, 20 do
  4063. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  4064. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  4065. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  4066. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  4067. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  4068. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  4069. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4070. if Debounces.on == false then break end
  4071. wait()
  4072. end
  4073. x:Destroy()
  4074. BV:Destroy()
  4075. --[[for i = 1, 30 do
  4076. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  4077. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  4078. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  4079. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  4080. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  4081. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  4082. if Debounces.on == false then break end
  4083. wait()
  4084. end]]--
  4085. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4086. for i = 1, 30 do
  4087. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  4088. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4089. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
  4090. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
  4091. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4092. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  4093. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4094. if Debounces.on == false then break end
  4095. wait()
  4096. end
  4097. end
  4098. Debounces.on = false
  4099. Debounces.NoIdl = false
  4100. local ry,ht,ps=nil,nil,nil
  4101. while ht==nil do
  4102. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4103. wait()
  4104. end
  4105. z = Instance.new("Sound",char)
  4106. z.SoundId = "rbxassetid://142070127"
  4107. z.Volume = 1
  4108. wait(.1)
  4109. z:Play()
  4110. Landing()
  4111. hum.WalkSpeed = 8
  4112. if Debounces.CanAttack == false then
  4113. Debounces.CanAttack = true
  4114. end
  4115. end
  4116. end
  4117. end)
  4118. ----------------------------------------------------
  4119. Grab = false
  4120. mouse.KeyDown:connect(function(key)
  4121. if key == "z" then
  4122. Debounces.on = true
  4123. Debounces.NoIdl = true
  4124. if Grab == false then
  4125. gp = nil
  4126. con1=larm.Touched:connect(function(hit) -- this is grab
  4127. ht = hit.Parent
  4128. hum1=ht:FindFirstChild('Humanoid')
  4129. if hum1 ~= nil then
  4130. hum1.PlatformStand=true
  4131. gp = ht
  4132. Grab = true
  4133. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  4134. asd.Parent = larm
  4135. asd.Name = "asd"
  4136. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  4137. con1:disconnect()
  4138. elseif hum1 ~= nil then
  4139. con1:disconnect()
  4140. wait() return
  4141. end
  4142. end)
  4143. for i = 1, 18 do
  4144. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  4145. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  4146. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  4147. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  4148. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  4149. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  4150. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  4151. if Debounces.on == false then break end
  4152. wait()
  4153. end
  4154. con1:disconnect()
  4155. Debounces.on = false
  4156. Debounces.NoIdl = false
  4157. elseif Grab == true then
  4158. Grab = false
  4159. for i = 1, 20 do
  4160. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  4161. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  4162. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  4163. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  4164. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  4165. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  4166. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4167. if Debounces.on == false then end
  4168. wait()
  4169. end
  4170. if gp ~= nil then
  4171. for i,v in pairs(larm:GetChildren()) do
  4172. if v.Name == "asd" and v:IsA("Weld") then
  4173. v:Remove()
  4174. end
  4175. end
  4176. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  4177. bv.maxForce = Vector3.new(400000, 400000, 400000)
  4178. bv.P = 125000
  4179. bv.velocity = char.Head.CFrame.lookVector * 200
  4180. for i = 1, 12 do
  4181. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  4182. if Debounces.on == false then end
  4183. wait()
  4184. end--
  4185. ht=nil
  4186. Spawn(function()
  4187. wait(0.5)
  4188. bv:Destroy()
  4189. end)
  4190. Debounces.on = false
  4191. Debounces.NoIdl = false
  4192. elseif ht == nil then wait()
  4193. Grab = false
  4194. Debounces.on = false
  4195. Debounces.NoIdl = false
  4196. end
  4197. end
  4198. end
  4199. end)
  4200. ----------------------------------------------------
  4201. mouse.KeyDown:connect(function(key)
  4202. if string.byte(key) == 52 then
  4203. char.Humanoid.WalkSpeed = 21
  4204. end
  4205. end)
  4206. mouse.KeyUp:connect(function(key)
  4207. if string.byte(key) == 52 then
  4208. char.Humanoid.WalkSpeed = 5
  4209. end
  4210. end)
  4211. ----------------------------------------------------
  4212. Change = false
  4213. mouse.KeyDown:connect(function(key)
  4214. if key == "n" then
  4215. if Change == false then
  4216. Change = true
  4217. stanceToggle = "Normal2"
  4218. elseif Change == true then
  4219. Change = false
  4220. stanceToggle = "Normal"
  4221. end
  4222. end
  4223. end)
  4224. ----------------------------------------------------
  4225. local animpose = "Idle"
  4226. local lastanimpose = "Idle"
  4227. local sine = 0
  4228. local change = 1
  4229. local val = 0
  4230. local ffing = false
  4231. local och = 0
  4232. ----------------------------------------------------
  4233. game:GetService("RunService").RenderStepped:connect(function()
  4234. --[[if char.Humanoid.Jump == true then
  4235. jump = true
  4236. else
  4237. jump = false
  4238. end]]
  4239. char.Humanoid.FreeFalling:connect(function(f)
  4240. if f then
  4241. ffing = true
  4242. else
  4243. ffing = false
  4244. end
  4245. end)
  4246. sine = sine + change
  4247. if jumpn == true then
  4248. animpose = "Jumping"
  4249. elseif ffing == true then
  4250. animpose = "Freefalling"
  4251. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  4252. animpose = "Idle"
  4253. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  4254. animpose = "Walking"
  4255. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  4256. animpose = "Running"
  4257. end
  4258. if animpose ~= lastanimpose then
  4259. sine = 0
  4260. if Debounces.NoIdl == false then
  4261. if animpose == "Idle" then
  4262. for i = 1, 2 do
  4263. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  4264. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  4265. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  4266. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  4267. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  4268. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  4269. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4270. end
  4271. elseif animpose == "Walking" then
  4272. for i = 1, 2 do
  4273. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  4274. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  4275. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  4276. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  4277. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  4278. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  4279. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4280. end
  4281. elseif animpose == "Running" then
  4282. for i = 1, 2 do
  4283. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  4284. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  4285. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  4286. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  4287. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  4288. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  4289. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4290. end
  4291. rs:wait(2)
  4292. end
  4293. else
  4294. end
  4295. end
  4296. lastanimpose = animpose
  4297. if Debounces.NoIdl == false then
  4298. if animpose == "Idle" then
  4299. if stanceToggle == "Normal" then
  4300. change = 0.5
  4301. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  4302. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  4303. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  4304. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  4305. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4306. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4307. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4308. elseif stanceToggle == "Sitting" then
  4309. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  4310. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
  4311. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  4312. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  4313. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  4314. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  4315. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4316. elseif stanceToggle == "Normal2" then
  4317. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
  4318. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  4319. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
  4320. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4321. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
  4322. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
  4323. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4324. end
  4325. elseif animpose == "Walking" then
  4326. if stanceToggle == "Normal" then
  4327. change = 1
  4328. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  4329. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  4330. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
  4331. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
  4332. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  4333. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  4334. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4335. elseif stanceToggle == "Normal2" then
  4336. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
  4337. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
  4338. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  4339. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  4340. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  4341. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  4342. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4343. end
  4344. elseif animpose == "Running" then
  4345. change = 1
  4346. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  4347. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  4348. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  4349. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  4350. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  4351. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  4352. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4353. end
  4354. end
  4355. och=och+1
  4356. for _,v in pairs(orbt) do
  4357. pcall(function()
  4358. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  4359. end)
  4360. end
  4361. for _,v in pairs(stlt) do
  4362. pcall(function()
  4363. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  4364. end)
  4365. end
  4366. for _,v in pairs(chot) do
  4367. pcall(function()
  4368. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  4369. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  4370. end)
  4371. end
  4372. for _,v in pairs(cfxt) do
  4373. pcall(function()
  4374. local vs=v.Mesh.Scale
  4375. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  4376. v.Transparency=v.Transparency+0.05
  4377. end)
  4378. end
  4379. for _,v in pairs(pfxt) do
  4380. pcall(function()
  4381. local vs=v.Mesh.Scale
  4382. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  4383. v.Transparency=v.Transparency+0.025
  4384. end)
  4385. end
  4386. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement