Advertisement
Guest User

Untitled

a guest
Jan 13th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 283.65 KB | None | 0 0
  1. --[[User: SonicTheHedgehog964 Script: Absalom (Armored).lua
  2. Pass: cUpnjTnT]]
  3.  
  4. local p = game.Players.LocalPlayer
  5. local char = p.Character
  6. local mouse = p:GetMouse()
  7. local larm = char["Left Arm"]
  8. local rarm = char["Right Arm"]
  9. local lleg = char["Left Leg"]
  10. local rleg = char["Right Leg"]
  11. local hed = char.Head
  12. local torso = char.Torso
  13. local hum = char.Humanoid
  14. local cam = game.Workspace.CurrentCamera
  15. local root = char.HumanoidRootPart
  16. local deb = false
  17. local shot = 0
  18. local l = game:GetService("Lighting")
  19. local rs = game:GetService("RunService").RenderStepped
  20. local debris=game:service"Debris"
  21. local stanceToggle = "Normal"
  22. math.randomseed(os.time())
  23. hum.WalkSpeed = 7
  24. char.Health:Destroy()
  25. hum.MaxHealth = 50000
  26. wait(0.1)
  27. hum.Health = 50000
  28. ----------------------------------------------------
  29. ypcall(function()
  30. char.Shirt:Destroy()
  31. char.Pants:Destroy()
  32. shirt = Instance.new("Shirt", char)
  33. shirt.Name = "Shirt"
  34. pants = Instance.new("Pants", char)
  35. pants.Name = "Pants"
  36. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  37. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  38. end)
  39. ----------------------------------------------------
  40. Debounces = {
  41. on = false;
  42. ks = false;
  43. CanAttack = true;
  44. CanJoke = true;
  45. NoIdl = false;
  46. Slashing = false;
  47. Slashed = false;
  48. Grabbing = false;
  49. Grabbed = false;
  50. }
  51. local Touche = {char.Name, }
  52. ----------------------------------------------------
  53. function lerp(a, b, t) -- Linear interpolation
  54. return a + (b - a)*t
  55. end
  56.  
  57. function slerp(a, b, t) --Spherical interpolation
  58. dot = a:Dot(b)
  59. if dot > 0.99999 or dot < -0.99999 then
  60. return t <= 0.5 and a or b
  61. else
  62. r = math.acos(dot)
  63. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  64. end
  65. end
  66.  
  67. function matrixInterpolate(a, b, t)
  68. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  69. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  70. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  71. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  72. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  73. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  74. local t = v1:Dot(v2)
  75. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  76. return CFrame.new()
  77. end
  78. return CFrame.new(
  79. v0.x, v0.y, v0.z,
  80. v1.x, v1.y, v1.z,
  81. v2.x, v2.y, v2.z,
  82. v3.x, v3.y, v3.z)
  83. end
  84. ----------------------------------------------------
  85. function genWeld(a,b)
  86. local w = Instance.new("Weld",a)
  87. w.Part0 = a
  88. w.Part1 = b
  89. return w
  90. end
  91. function weld(a, b)
  92. local weld = Instance.new("Weld")
  93. weld.Name = "W"
  94. weld.Part0 = a
  95. weld.Part1 = b
  96. weld.C0 = a.CFrame:inverse() * b.CFrame
  97. weld.Parent = a
  98. return weld;
  99. end
  100. ----------------------------------------------------
  101. function Lerp(c1,c2,al)
  102. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  103. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  104. for i,v in pairs(com1) do
  105. com1[i] = v+(com2[i]-v)*al
  106. end
  107. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  108. end
  109. ----------------------------------------------------
  110. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  111. local wld = Instance.new("Weld", wp1)
  112. wld.Part0 = wp0
  113. wld.Part1 = wp1
  114. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  115. end
  116. ----------------------------------------------------
  117. function Tween(a,b,c)
  118. return a+(b-a)*c
  119. end
  120. ----------------------------------------------------
  121. function nwPrt(prnt,siz,cf,col)
  122. local prt=Instance.new("Part")
  123. prt.Parent=prnt
  124. prt.FormFactor=3
  125. prt.Name="Part"
  126. prt.Size=siz
  127. prt.CanCollide=false
  128. prt.Anchored=true
  129. prt.Locked=true
  130. prt.TopSurface=10
  131. prt.BottomSurface=10
  132. prt.FrontSurface=10
  133. prt.BackSurface=10
  134. prt.LeftSurface=10
  135. prt.RightSurface=10
  136. prt:BreakJoints()
  137. prt.CFrame=cf or CFrame.new(30,10,30)
  138. prt.Material="Neon"
  139. prt.BrickColor=BrickColor.new(col)
  140. m=Instance.new("SpecialMesh",prt)
  141. m.MeshType=6
  142. return prt
  143. end
  144. ----------------------------------------------------
  145. function nwSnd(prnt,pch,vol,id)
  146. local s=Instance.new("Sound",prnt)
  147. s.Pitch=pch
  148. s.Volume=vol
  149. s.SoundId="rbxassetid://"..id
  150. s.PlayOnRemove=true
  151. return s
  152. end
  153. ----------------------------------------------------
  154. function newRay(start,face,range,wat)
  155. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  156. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  157. return rey,hit,pos
  158. end
  159. ----------------------------------------------------
  160. for i,v in pairs(char:children()) do
  161. if v:IsA("Hat") then
  162. v:Destroy()
  163. end
  164. end
  165. for i,v in pairs(hed:children()) do
  166. if v:IsA("Sound") then
  167. v:Destroy()
  168. end
  169. end
  170. ----------------------------------------------------
  171. function HasntTouched(plrname)
  172. local ret = true
  173. for _, v in pairs(Touche) do
  174. if v == plrname then
  175. ret = false
  176. end
  177. end
  178. return ret
  179. end
  180. ----------------------------------------------------
  181. larm.Size = larm.Size * 2
  182. rarm.Size = rarm.Size * 2
  183. lleg.Size = lleg.Size * 2
  184. rleg.Size = rleg.Size * 2
  185. torso.Size = torso.Size * 2
  186. hed.Size = hed.Size * 2
  187. root.Size = root.Size * 2
  188. ----------------------------------------------------
  189. newWeld(torso, larm, -1.5, 0.5, 0)
  190. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  191. newWeld(torso, rarm, 1.5, 0.5, 0)
  192. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  193. newWeld(torso, hed, 0, 1.5, 0)
  194. newWeld(torso, lleg, -0.5, -1, 0)
  195. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  196. newWeld(torso, rleg, 0.5, -1, 0)
  197. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  198. newWeld(root, torso, 0, -1, 0)
  199. torso.Weld.C1 = CFrame.new(0, -1, 0)
  200. ----------------------------------------------------
  201. hed.face.Texture = "rbxassetid://272299908"
  202. z=Instance.new('Decal',hed)
  203. z.Face = 'Front'
  204. z.Texture='rbxassetid://99174105'
  205. z1=Instance.new('Decal',hed)
  206. z1.Face = 'Right'
  207. hed.BrickColor = BrickColor.new("Really black")
  208. lite = Instance.new("PointLight", torso)
  209. lite.Brightness = 14
  210. lite.Range = 10
  211. lite.Color = Color3.new(1, 0, 0)
  212. --[[local hed2 = hed:Clone()
  213. hed2.CanCollide = false
  214. hed2.Parent = char
  215. hed2:ClearAllChildren()
  216. hed2.Transparency = 1
  217. hed2.Name = "DARP"
  218. local w = Instance.new("Weld",hed2)
  219. w.Part0 = hed
  220. w.Part1 = hed2
  221. w.C0 = CFrame.new(0,0,-0.175)
  222. z=Instance.new("SurfaceGui",hed2)
  223. z.Enabled = true
  224. z.Face = "Front"
  225. z.Adornee = hed2
  226. z.CanvasSize = Vector2.new(100,100)
  227. local face = Instance.new("ImageLabel",z)
  228. face.Size = UDim2.new(1,-30,1,0)
  229. face.Position = UDim2.new(0,15,0,0)
  230. face.BackgroundTransparency = 1
  231. face.Image='rbxassetid://46282671']]--
  232. ----------------------------------------------------
  233. z = Instance.new("Sound", char)
  234. z.SoundId = "rbxassetid://303570180"--242463565
  235. z.Looped = true
  236. z.Pitch = .6
  237. z.Volume = 1
  238. wait(.01)
  239. z:Play()
  240. ----------------------------------------------------
  241. local l = game.Lighting
  242. local sky = Instance.new("Sky",l)
  243. sky.CelestialBodiesShown = false
  244. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  245. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  246. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  247. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  248. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  249. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  250. sky.StarCount = 0
  251. sky.Name = "GreenSpace"
  252. ----------------------------------------------------
  253. local m = Instance.new("Model")
  254. m.Name = "Absolution"
  255. p1 = Instance.new("Part", m)
  256. p1.BrickColor = BrickColor.new("Bright blue")
  257. p1.Material = "Neon"
  258. p1.FormFactor = Enum.FormFactor.Custom
  259. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  260. 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)
  261. p1.CanCollide = false
  262. p1.Locked = true
  263. p1.Elasticity = 0
  264. p1.BottomSurface = Enum.SurfaceType.Smooth
  265. p1.TopSurface = Enum.SurfaceType.Smooth
  266. b1 = Instance.new("SpecialMesh", p1)
  267. b1.MeshType = Enum.MeshType.Wedge
  268. b1.Name = "Mesh"
  269. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  270. p2 = Instance.new("Part", m)
  271. p2.BrickColor = BrickColor.new("Really black")
  272. p2.FormFactor = Enum.FormFactor.Custom
  273. p2.Size = Vector3.new(1, 2.9000001, 1)
  274. 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)
  275. p2.CanCollide = false
  276. p2.Locked = true
  277. p2.Elasticity = 0
  278. p2.BottomSurface = Enum.SurfaceType.Smooth
  279. p2.TopSurface = Enum.SurfaceType.Smooth
  280. b2 = Instance.new("BlockMesh", p2)
  281. b2.Name = "Mesh"
  282. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  283. p3 = Instance.new("Part", m)
  284. p3.BrickColor = BrickColor.new("Bright blue")
  285. p3.Material = "Neon"
  286. p3.FormFactor = Enum.FormFactor.Custom
  287. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  288. 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)
  289. p3.CanCollide = false
  290. p3.Locked = true
  291. p3.Elasticity = 0
  292. p3.BottomSurface = Enum.SurfaceType.Smooth
  293. p3.TopSurface = Enum.SurfaceType.Smooth
  294. b3 = Instance.new("SpecialMesh", p3)
  295. b3.MeshType = Enum.MeshType.Wedge
  296. b3.Name = "Mesh"
  297. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  298. p4 = Instance.new("Part", m)
  299. p4.BrickColor = BrickColor.new("Bright blue")
  300. p4.Material = "Neon"
  301. p4.FormFactor = Enum.FormFactor.Custom
  302. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  303. 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)
  304. p4.CanCollide = false
  305. p4.Locked = true
  306. p4.Elasticity = 0
  307. p4.BottomSurface = Enum.SurfaceType.Smooth
  308. p4.TopSurface = Enum.SurfaceType.Smooth
  309. b4 = Instance.new("SpecialMesh", p4)
  310. b4.MeshType = Enum.MeshType.Wedge
  311. b4.Name = "Mesh"
  312. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  313. p5 = Instance.new("Part", m)
  314. p5.BrickColor = BrickColor.new("Bright blue")
  315. p5.Material = "Neon"
  316. p5.FormFactor = Enum.FormFactor.Custom
  317. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  318. 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)
  319. p5.CanCollide = false
  320. p5.Locked = true
  321. p5.Elasticity = 0
  322. p5.BottomSurface = Enum.SurfaceType.Smooth
  323. p5.TopSurface = Enum.SurfaceType.Smooth
  324. b5 = Instance.new("SpecialMesh", p5)
  325. b5.MeshType = Enum.MeshType.Wedge
  326. b5.Name = "Mesh"
  327. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  328. p6 = Instance.new("Part", m)
  329. p6.Name = "Handle"
  330. p6.BrickColor = BrickColor.new("Really black")
  331. p6.FormFactor = Enum.FormFactor.Custom
  332. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  333. 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)
  334. p6.CanCollide = false
  335. p6.Locked = true
  336. p6.Elasticity = 0
  337. p6.BottomSurface = Enum.SurfaceType.Smooth
  338. p6.TopSurface = Enum.SurfaceType.Smooth
  339. b6 = Instance.new("BlockMesh", p6)
  340. b6.Name = "Mesh"
  341. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  342. p7 = Instance.new("Part", m)
  343. p7.BrickColor = BrickColor.new("Bright blue")
  344. p7.Material = "Neon"
  345. p7.FormFactor = Enum.FormFactor.Custom
  346. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  347. 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)
  348. p7.CanCollide = false
  349. p7.Locked = true
  350. p7.Elasticity = 0
  351. p7.BottomSurface = Enum.SurfaceType.Smooth
  352. p7.TopSurface = Enum.SurfaceType.Smooth
  353. b7 = Instance.new("SpecialMesh", p7)
  354. b7.MeshType = Enum.MeshType.Wedge
  355. b7.Name = "Mesh"
  356. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  357. p8 = Instance.new("Part", m)
  358. p8.BrickColor = BrickColor.new("Bright blue")
  359. p8.Material = "Neon"
  360. p8.FormFactor = Enum.FormFactor.Custom
  361. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  362. 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)
  363. p8.CanCollide = false
  364. p8.Locked = true
  365. p8.Elasticity = 0
  366. p8.BottomSurface = Enum.SurfaceType.Smooth
  367. p8.TopSurface = Enum.SurfaceType.Smooth
  368. b8 = Instance.new("SpecialMesh", p8)
  369. b8.MeshType = Enum.MeshType.Wedge
  370. b8.Name = "Mesh"
  371. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  372. p9 = Instance.new("Part", m)
  373. p9.BrickColor = BrickColor.new("Really black")
  374. p9.FormFactor = Enum.FormFactor.Custom
  375. p9.Size = Vector3.new(1, 1.07999957, 1)
  376. 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)
  377. p9.CanCollide = false
  378. p9.Locked = true
  379. p9.Elasticity = 0
  380. p9.BottomSurface = Enum.SurfaceType.Smooth
  381. p9.TopSurface = Enum.SurfaceType.Smooth
  382. b9 = Instance.new("BlockMesh", p9)
  383. b9.Name = "Mesh"
  384. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  385. p10 = Instance.new("Part", m)
  386. p10.BrickColor = BrickColor.new("Really black")
  387. p10.FormFactor = Enum.FormFactor.Custom
  388. p10.Size = Vector3.new(1, 1.41999948, 1)
  389. 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)
  390. p10.CanCollide = false
  391. p10.Locked = true
  392. p10.Elasticity = 0
  393. p10.BottomSurface = Enum.SurfaceType.Smooth
  394. p10.TopSurface = Enum.SurfaceType.Smooth
  395. b10 = Instance.new("BlockMesh", p10)
  396. b10.Name = "Mesh"
  397. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  398. p11 = Instance.new("Part", m)
  399. p11.BrickColor = BrickColor.new("Really black")
  400. p11.FormFactor = Enum.FormFactor.Custom
  401. p11.Size = Vector3.new(1, 1.50999951, 1)
  402. 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)
  403. p11.CanCollide = false
  404. p11.Locked = true
  405. p11.Elasticity = 0
  406. p11.BottomSurface = Enum.SurfaceType.Smooth
  407. p11.TopSurface = Enum.SurfaceType.Smooth
  408. b11 = Instance.new("BlockMesh", p11)
  409. b11.Name = "Mesh"
  410. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  411. p12 = Instance.new("Part", m)
  412. p12.Name = "BladeCenter"
  413. p12.BrickColor = BrickColor.new("Dark stone grey")
  414. p12.Material = Enum.Material.Concrete
  415. p12.FormFactor = Enum.FormFactor.Symmetric
  416. p12.Size = Vector3.new(1, 2, 2)
  417. 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)
  418. p12.CanCollide = false
  419. p12.Locked = true
  420. p12.BottomSurface = Enum.SurfaceType.Smooth
  421. p12.TopSurface = Enum.SurfaceType.Smooth
  422. b12 = Instance.new("SpecialMesh", p12)
  423. b12.MeshType = Enum.MeshType.Brick
  424. b12.Name = "Mesh"
  425. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  426. p13 = Instance.new("Part", m)
  427. p13.BrickColor = BrickColor.new("Really black")
  428. p13.FormFactor = Enum.FormFactor.Custom
  429. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  430. 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)
  431. p13.CanCollide = false
  432. p13.Locked = true
  433. p13.Elasticity = 0
  434. p13.BottomSurface = Enum.SurfaceType.Smooth
  435. p13.TopSurface = Enum.SurfaceType.Smooth
  436. b13 = Instance.new("BlockMesh", p13)
  437. b13.Name = "Mesh"
  438. b13.Scale = Vector3.new(1, 1, 0.400000006)
  439. p14 = Instance.new("Part", m)
  440. p14.BrickColor = BrickColor.new("Really black")
  441. p14.FormFactor = Enum.FormFactor.Custom
  442. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  443. 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)
  444. p14.CanCollide = false
  445. p14.Locked = true
  446. p14.Elasticity = 0
  447. p14.BottomSurface = Enum.SurfaceType.Smooth
  448. p14.TopSurface = Enum.SurfaceType.Smooth
  449. b14 = Instance.new("BlockMesh", p14)
  450. b14.Name = "Mesh"
  451. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  452. p15 = Instance.new("Part", m)
  453. p15.BrickColor = BrickColor.new("Really black")
  454. p15.FormFactor = Enum.FormFactor.Custom
  455. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  456. 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)
  457. p15.CanCollide = false
  458. p15.Locked = true
  459. p15.Elasticity = 0
  460. p15.BottomSurface = Enum.SurfaceType.Smooth
  461. p15.TopSurface = Enum.SurfaceType.Smooth
  462. b15 = Instance.new("BlockMesh", p15)
  463. b15.Name = "Mesh"
  464. b15.Scale = Vector3.new(1, 1, 0.400000006)
  465. p16 = Instance.new("Part", m)
  466. p16.BrickColor = BrickColor.new("Really black")
  467. p16.FormFactor = Enum.FormFactor.Custom
  468. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  469. 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)
  470. p16.CanCollide = false
  471. p16.Locked = true
  472. p16.Elasticity = 0
  473. p16.BottomSurface = Enum.SurfaceType.Smooth
  474. p16.TopSurface = Enum.SurfaceType.Smooth
  475. b16 = Instance.new("BlockMesh", p16)
  476. b16.Name = "Mesh"
  477. b16.Scale = Vector3.new(1, 1, 0.400000006)
  478. p17 = Instance.new("Part", m)
  479. p17.BrickColor = BrickColor.new("Really black")
  480. p17.FormFactor = Enum.FormFactor.Custom
  481. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  482. 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)
  483. p17.CanCollide = false
  484. p17.Locked = true
  485. p17.Elasticity = 0
  486. p17.BottomSurface = Enum.SurfaceType.Smooth
  487. p17.TopSurface = Enum.SurfaceType.Smooth
  488. b17 = Instance.new("BlockMesh", p17)
  489. b17.Name = "Mesh"
  490. b17.Scale = Vector3.new(1, 1, 0.400000006)
  491. p18 = Instance.new("WedgePart", m)
  492. p18.BrickColor = BrickColor.new("Dark stone grey")
  493. p18.Name = "BladePart1"
  494. p18.Material = Enum.Material.Concrete
  495. p18.Name = "Wedge"
  496. p18.FormFactor = Enum.FormFactor.Symmetric
  497. p18.Size = Vector3.new(1, 4, 2)
  498. 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)
  499. p18.CanCollide = false
  500. p18.Locked = true
  501. p18.BottomSurface = Enum.SurfaceType.Smooth
  502. p18.TopSurface = Enum.SurfaceType.Smooth
  503. b18 = Instance.new("SpecialMesh", p18)
  504. b18.MeshType = Enum.MeshType.Wedge
  505. b18.Name = "Mesh"
  506. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  507. p19 = Instance.new("WedgePart", m)
  508. p19.BrickColor = BrickColor.new("Dark stone grey")
  509. p19.Name = "BladePart2"
  510. p19.Material = Enum.Material.Concrete
  511. p19.Name = "Wedge"
  512. p19.FormFactor = Enum.FormFactor.Symmetric
  513. p19.Size = Vector3.new(1, 4, 2)
  514. 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)
  515. p19.CanCollide = false
  516. p19.Locked = true
  517. p19.BottomSurface = Enum.SurfaceType.Smooth
  518. p19.TopSurface = Enum.SurfaceType.Smooth
  519. b19 = Instance.new("SpecialMesh", p19)
  520. b19.MeshType = Enum.MeshType.Wedge
  521. b19.Name = "Mesh"
  522. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  523. p20 = Instance.new("Part", m)
  524. p20.BrickColor = BrickColor.new("Really black")
  525. p20.FormFactor = Enum.FormFactor.Custom
  526. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  527. 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)
  528. p20.CanCollide = false
  529. p20.Locked = true
  530. p20.Elasticity = 0
  531. p20.BottomSurface = Enum.SurfaceType.Smooth
  532. p20.TopSurface = Enum.SurfaceType.Smooth
  533. b20 = Instance.new("BlockMesh", p20)
  534. b20.Name = "Mesh"
  535. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  536. p21 = Instance.new("Part", m)
  537. p21.BrickColor = BrickColor.new("Bright blue")
  538. p21.Material = "Neon"
  539. p21.FormFactor = Enum.FormFactor.Custom
  540. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  541. 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)
  542. p21.CanCollide = false
  543. p21.Locked = true
  544. p21.Elasticity = 0
  545. p21.BottomSurface = Enum.SurfaceType.Smooth
  546. p21.TopSurface = Enum.SurfaceType.Smooth
  547. b21 = Instance.new("SpecialMesh", p21)
  548. b21.MeshType = Enum.MeshType.Wedge
  549. b21.Name = "Mesh"
  550. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  551. w1 = Instance.new("Weld", p1)
  552. w1.Name = "Part_Weld"
  553. w1.Part0 = p1
  554. 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)
  555. w1.Part1 = p2
  556. 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)
  557. w2 = Instance.new("Weld", p2)
  558. w2.Name = "Part_Weld"
  559. w2.Part0 = p2
  560. 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)
  561. w2.Part1 = p3
  562. 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)
  563. w3 = Instance.new("Weld", p3)
  564. w3.Name = "Part_Weld"
  565. w3.Part0 = p3
  566. 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)
  567. w3.Part1 = p4
  568. 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)
  569. w4 = Instance.new("Weld", p4)
  570. w4.Name = "Part_Weld"
  571. w4.Part0 = p4
  572. 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)
  573. w4.Part1 = p5
  574. 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)
  575. w5 = Instance.new("Weld", p5)
  576. w5.Name = "Part_Weld"
  577. w5.Part0 = p5
  578. 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)
  579. w5.Part1 = p6
  580. 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)
  581. w6 = Instance.new("Weld", p6)
  582. w6.Name = "Part_Weld"
  583. w6.Part0 = p6
  584. 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)
  585. w6.Part1 = p7
  586. 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)
  587. w7 = Instance.new("Weld", p7)
  588. w7.Name = "Part_Weld"
  589. w7.Part0 = p7
  590. 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)
  591. w7.Part1 = p8
  592. 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)
  593. w8 = Instance.new("Weld", p8)
  594. w8.Name = "Part_Weld"
  595. w8.Part0 = p8
  596. 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)
  597. w8.Part1 = p9
  598. 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)
  599. w9 = Instance.new("Weld", p9)
  600. w9.Name = "Part_Weld"
  601. w9.Part0 = p9
  602. 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)
  603. w9.Part1 = p10
  604. 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)
  605. w10 = Instance.new("Weld", p10)
  606. w10.Name = "Part_Weld"
  607. w10.Part0 = p10
  608. 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)
  609. w10.Part1 = p11
  610. 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)
  611. w11 = Instance.new("Weld", p11)
  612. w11.Name = "Part_Weld"
  613. w11.Part0 = p11
  614. 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)
  615. w11.Part1 = p12
  616. 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)
  617. w12 = Instance.new("Weld", p12)
  618. w12.Name = "Part_Weld"
  619. w12.Part0 = p12
  620. 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)
  621. w12.Part1 = p13
  622. 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)
  623. w13 = Instance.new("Weld", p13)
  624. w13.Name = "Part_Weld"
  625. w13.Part0 = p13
  626. 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)
  627. w13.Part1 = p14
  628. 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)
  629. w14 = Instance.new("Weld", p14)
  630. w14.Name = "Part_Weld"
  631. w14.Part0 = p14
  632. 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)
  633. w14.Part1 = p15
  634. 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)
  635. w15 = Instance.new("Weld", p15)
  636. w15.Name = "Part_Weld"
  637. w15.Part0 = p15
  638. 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)
  639. w15.Part1 = p16
  640. 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)
  641. w16 = Instance.new("Weld", p16)
  642. w16.Name = "Part_Weld"
  643. w16.Part0 = p16
  644. 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)
  645. w16.Part1 = p17
  646. 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)
  647. w17 = Instance.new("Weld", p17)
  648. w17.Name = "Wedge_Weld"
  649. w17.Part0 = p17
  650. 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)
  651. w17.Part1 = p18
  652. 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)
  653. w18 = Instance.new("Weld", p18)
  654. w18.Name = "Wedge_Weld"
  655. w18.Part0 = p18
  656. 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)
  657. w18.Part1 = p19
  658. 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)
  659. w19 = Instance.new("Weld", p19)
  660. w19.Name = "Part_Weld"
  661. w19.Part0 = p19
  662. 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)
  663. w19.Part1 = p20
  664. 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)
  665. w20 = Instance.new("Weld", p20)
  666. w20.Name = "Part_Weld"
  667. w20.Part0 = p20
  668. 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)
  669. w20.Part1 = p21
  670. 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)
  671. m.Parent = char
  672. m:MakeJoints()
  673. ----------------------------------------------------
  674. local cor = Instance.new("Part", char.Absolution)
  675. cor.Name = "Thingy"
  676. cor.Locked = true
  677. cor.BottomSurface = 0
  678. cor.CanCollide = false
  679. cor.Size = Vector3.new(1, 13, 1)
  680. cor.Transparency = 1
  681. cor.TopSurface = 0
  682. corw = Instance.new("Weld", cor)
  683. corw.Part0 = rarm
  684. corw.Part1 = cor
  685. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  686. corw.C1 = CFrame.new(0, 0, 0)
  687. weld1 = Instance.new("Weld", char.Absolution)
  688. weld1.Part0 = cor
  689. weld1.Part1 = p6
  690. weld1.C0 = CFrame.new(0, 0, 0)
  691. ----------------------------------------------------
  692. hitb = Instance.new("Part", char.Absolution)
  693. hitb.Name = "Thingy2"
  694. hitb.Locked = true
  695. hitb.BottomSurface = 0
  696. hitb.CanCollide = false
  697. hitb.Size = Vector3.new(0, 8, 6)
  698. hitb.Transparency = 1
  699. hitb.TopSurface = 0
  700. weld2 = Instance.new("Weld", char.Absolution)
  701. weld2.Part0 = hitb
  702. weld2.Part1 = p12
  703. weld2.C0 = CFrame.new(0, .6, 1)
  704. ----------------------------------------------------
  705. local m = Instance.new("Model")
  706. m.Name = "Claw"
  707. p1 = Instance.new("Part", m)
  708. p1.BrickColor = BrickColor.new("Really black")
  709. p1.FormFactor = Enum.FormFactor.Custom
  710. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  711. 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)
  712. p1.CanCollide = false
  713. p1.Locked = true
  714. p1.BottomSurface = Enum.SurfaceType.Smooth
  715. p1.TopSurface = Enum.SurfaceType.Smooth
  716. b1 = Instance.new("BlockMesh", p1)
  717. b1.Name = "Mesh"
  718. p2 = Instance.new("WedgePart", m)
  719. p2.BrickColor = BrickColor.new("Really black")
  720. p2.Name = "Wedge"
  721. p2.FormFactor = Enum.FormFactor.Custom
  722. p2.Size = Vector3.new(3, 1, 0.5)
  723. 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)
  724. p2.CanCollide = false
  725. p2.Locked = true
  726. p2.BottomSurface = Enum.SurfaceType.Smooth
  727. p2.TopSurface = Enum.SurfaceType.Smooth
  728. p3 = Instance.new("Part", m)
  729. p3.BrickColor = BrickColor.new("Really black")
  730. p3.FormFactor = Enum.FormFactor.Custom
  731. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  732. 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)
  733. p3.CanCollide = false
  734. p3.Locked = true
  735. p3.BottomSurface = Enum.SurfaceType.Smooth
  736. p3.TopSurface = Enum.SurfaceType.Smooth
  737. b2 = Instance.new("BlockMesh", p3)
  738. b2.Name = "Mesh"
  739. p4 = Instance.new("WedgePart", m)
  740. p4.BrickColor = BrickColor.new("Really black")
  741. p4.Name = "Wedge"
  742. p4.FormFactor = Enum.FormFactor.Custom
  743. p4.Size = Vector3.new(3, 1, 0.5)
  744. 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)
  745. p4.CanCollide = false
  746. p4.Locked = true
  747. p4.BottomSurface = Enum.SurfaceType.Smooth
  748. p4.TopSurface = Enum.SurfaceType.Smooth
  749. p5 = Instance.new("Part", m)
  750. p5.BrickColor = BrickColor.new("Really black")
  751. p5.FormFactor = Enum.FormFactor.Custom
  752. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  753. 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)
  754. p5.CanCollide = false
  755. p5.Locked = true
  756. p5.BottomSurface = Enum.SurfaceType.Smooth
  757. p5.TopSurface = Enum.SurfaceType.Smooth
  758. b3 = Instance.new("BlockMesh", p5)
  759. b3.Name = "Mesh"
  760. p6 = Instance.new("Part", m)
  761. p6.BrickColor = BrickColor.new("Really black")
  762. p6.FormFactor = Enum.FormFactor.Custom
  763. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  764. 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)
  765. p6.CanCollide = false
  766. p6.Locked = true
  767. p6.BottomSurface = Enum.SurfaceType.Smooth
  768. p6.TopSurface = Enum.SurfaceType.Smooth
  769. b4 = Instance.new("BlockMesh", p6)
  770. b4.Name = "Mesh"
  771. p7 = Instance.new("Part", m)
  772. p7.BrickColor = BrickColor.new("Really black")
  773. p7.FormFactor = Enum.FormFactor.Custom
  774. p7.Size = Vector3.new(3, 1, 1.20000005)
  775. 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)
  776. p7.CanCollide = false
  777. p7.Locked = true
  778. p7.BottomSurface = Enum.SurfaceType.Smooth
  779. p7.TopSurface = Enum.SurfaceType.Smooth
  780. b5 = Instance.new("BlockMesh", p7)
  781. b5.Name = "Mesh"
  782. p8 = Instance.new("Part", m)
  783. p8.BrickColor = BrickColor.new("Bright blue")
  784. p8.Material = "Neon"
  785. p8.FormFactor = Enum.FormFactor.Symmetric
  786. p8.Size = Vector3.new(1, 1, 1)
  787. 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)
  788. p8.CanCollide = false
  789. p8.Locked = true
  790. b6 = Instance.new("SpecialMesh", p8)
  791. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  792. b6.TextureId = ""
  793. b6.MeshType = Enum.MeshType.FileMesh
  794. b6.Name = "Mesh"
  795. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  796. p9 = Instance.new("Part", m)
  797. p9.BrickColor = BrickColor.new("Really black")
  798. p9.FormFactor = Enum.FormFactor.Custom
  799. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  800. 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)
  801. p9.CanCollide = false
  802. p9.Locked = true
  803. p9.BottomSurface = Enum.SurfaceType.Smooth
  804. p9.TopSurface = Enum.SurfaceType.Smooth
  805. b7 = Instance.new("BlockMesh", p9)
  806. b7.Name = "Mesh"
  807. p10 = Instance.new("Part", m)
  808. p10.BrickColor = BrickColor.new("Bright blue")
  809. p10.Material = "Neon"
  810. p10.FormFactor = Enum.FormFactor.Symmetric
  811. p10.Size = Vector3.new(1, 1, 1)
  812. 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)
  813. p10.CanCollide = false
  814. p10.Locked = true
  815. b8 = Instance.new("SpecialMesh", p10)
  816. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  817. b8.TextureId = ""
  818. b8.MeshType = Enum.MeshType.FileMesh
  819. b8.Name = "Mesh"
  820. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  821. p11 = Instance.new("Part", m)
  822. p11.BrickColor = BrickColor.new("Really black")
  823. p11.FormFactor = Enum.FormFactor.Custom
  824. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  825. 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)
  826. p11.CanCollide = false
  827. p11.Locked = true
  828. p11.BottomSurface = Enum.SurfaceType.Smooth
  829. p11.TopSurface = Enum.SurfaceType.Smooth
  830. b9 = Instance.new("BlockMesh", p11)
  831. b9.Name = "Mesh"
  832. p12 = Instance.new("Part", m)
  833. p12.BrickColor = BrickColor.new("Really black")
  834. p12.FormFactor = Enum.FormFactor.Custom
  835. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  836. 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)
  837. p12.CanCollide = false
  838. p12.Locked = true
  839. p12.BottomSurface = Enum.SurfaceType.Smooth
  840. p12.TopSurface = Enum.SurfaceType.Smooth
  841. b10 = Instance.new("BlockMesh", p12)
  842. b10.Name = "Mesh"
  843. p13 = Instance.new("Part", m)
  844. p13.BrickColor = BrickColor.new("Really black")
  845. p13.FormFactor = Enum.FormFactor.Custom
  846. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  847. 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)
  848. p13.CanCollide = false
  849. p13.Locked = true
  850. p13.BottomSurface = Enum.SurfaceType.Smooth
  851. p13.TopSurface = Enum.SurfaceType.Smooth
  852. b11 = Instance.new("BlockMesh", p13)
  853. b11.Name = "Mesh"
  854. p14 = Instance.new("Part", m)
  855. p14.BrickColor = BrickColor.new("Bright blue")
  856. p14.Material = "Neon"
  857. p14.FormFactor = Enum.FormFactor.Symmetric
  858. p14.Size = Vector3.new(1, 1, 1)
  859. 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)
  860. p14.CanCollide = false
  861. p14.Locked = true
  862. b12 = Instance.new("SpecialMesh", p14)
  863. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  864. b12.TextureId = ""
  865. b12.MeshType = Enum.MeshType.FileMesh
  866. b12.Name = "Mesh"
  867. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  868. p15 = Instance.new("Part", m)
  869. p15.BrickColor = BrickColor.new("Medium stone grey")
  870. p15.Transparency = 1
  871. p15.Name = "ArmPart"
  872. p15.FormFactor = Enum.FormFactor.Custom
  873. p15.Size = Vector3.new(2, 1, 1)
  874. 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)
  875. p15.CanCollide = false
  876. p15.Locked = true
  877. p15.BottomSurface = Enum.SurfaceType.Smooth
  878. p15.TopSurface = Enum.SurfaceType.Smooth
  879. b13 = Instance.new("BlockMesh", p15)
  880. b13.Name = "Mesh"
  881. p16 = Instance.new("Part", m)
  882. p16.BrickColor = BrickColor.new("Really black")
  883. p16.FormFactor = Enum.FormFactor.Custom
  884. p16.Size = Vector3.new(3, 1, 2.4000001)
  885. 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)
  886. p16.CanCollide = false
  887. p16.Locked = true
  888. p16.BottomSurface = Enum.SurfaceType.Smooth
  889. p16.TopSurface = Enum.SurfaceType.Smooth
  890. b14 = Instance.new("BlockMesh", p16)
  891. b14.Name = "Mesh"
  892. p17 = Instance.new("Part", m)
  893. p17.BrickColor = BrickColor.new("Really black")
  894. p17.FormFactor = Enum.FormFactor.Custom
  895. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  896. 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)
  897. p17.CanCollide = false
  898. p17.Locked = true
  899. p17.BottomSurface = Enum.SurfaceType.Smooth
  900. p17.TopSurface = Enum.SurfaceType.Smooth
  901. b15 = Instance.new("BlockMesh", p17)
  902. b15.Name = "Mesh"
  903. p18 = Instance.new("Part", m)
  904. p18.BrickColor = BrickColor.new("Bright blue")
  905. p18.Material = "Neon"
  906. p18.FormFactor = Enum.FormFactor.Symmetric
  907. p18.Size = Vector3.new(1, 1, 1)
  908. 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)
  909. p18.CanCollide = false
  910. p18.Locked = true
  911. b16 = Instance.new("SpecialMesh", p18)
  912. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  913. b16.TextureId = ""
  914. b16.MeshType = Enum.MeshType.FileMesh
  915. b16.Name = "Mesh"
  916. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  917. p19 = Instance.new("Part", m)
  918. p19.BrickColor = BrickColor.new("Bright blue")
  919. p19.Material = "Neon"
  920. p19.FormFactor = Enum.FormFactor.Symmetric
  921. p19.Size = Vector3.new(1, 1, 1)
  922. 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)
  923. p19.CanCollide = false
  924. p19.Locked = true
  925. b17 = Instance.new("SpecialMesh", p19)
  926. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  927. b17.TextureId = ""
  928. b17.MeshType = Enum.MeshType.FileMesh
  929. b17.Name = "Mesh"
  930. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  931. p20 = Instance.new("Part", m)
  932. p20.BrickColor = BrickColor.new("Really black")
  933. p20.FormFactor = Enum.FormFactor.Custom
  934. p20.Size = Vector3.new(3, 1, 2.4000001)
  935. 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)
  936. p20.CanCollide = false
  937. p20.Locked = true
  938. p20.BottomSurface = Enum.SurfaceType.Smooth
  939. p20.TopSurface = Enum.SurfaceType.Smooth
  940. b18 = Instance.new("BlockMesh", p20)
  941. b18.Name = "Mesh"
  942. p21 = Instance.new("Part", m)
  943. p21.BrickColor = BrickColor.new("Really black")
  944. p21.FormFactor = Enum.FormFactor.Custom
  945. p21.Size = Vector3.new(3, 1, 1.19999993)
  946. 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)
  947. p21.CanCollide = false
  948. p21.Locked = true
  949. p21.BottomSurface = Enum.SurfaceType.Smooth
  950. p21.TopSurface = Enum.SurfaceType.Smooth
  951. b19 = Instance.new("BlockMesh", p21)
  952. b19.Name = "Mesh"
  953. p22 = Instance.new("WedgePart", m)
  954. p22.BrickColor = BrickColor.new("Really black")
  955. p22.Name = "Wedge"
  956. p22.FormFactor = Enum.FormFactor.Custom
  957. p22.Size = Vector3.new(3, 1, 0.5)
  958. 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)
  959. p22.CanCollide = false
  960. p22.Locked = true
  961. p22.BottomSurface = Enum.SurfaceType.Smooth
  962. p22.TopSurface = Enum.SurfaceType.Smooth
  963. p23 = Instance.new("Part", m)
  964. p23.BrickColor = BrickColor.new("Really black")
  965. p23.FormFactor = Enum.FormFactor.Custom
  966. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  967. 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)
  968. p23.CanCollide = false
  969. p23.Locked = true
  970. p23.BottomSurface = Enum.SurfaceType.Smooth
  971. p23.TopSurface = Enum.SurfaceType.Smooth
  972. b20 = Instance.new("BlockMesh", p23)
  973. b20.Name = "Mesh"
  974. p24 = Instance.new("WedgePart", m)
  975. p24.BrickColor = BrickColor.new("Really black")
  976. p24.Name = "Wedge"
  977. p24.FormFactor = Enum.FormFactor.Custom
  978. p24.Size = Vector3.new(3, 1, 0.5)
  979. 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)
  980. p24.CanCollide = false
  981. p24.Locked = true
  982. p24.BottomSurface = Enum.SurfaceType.Smooth
  983. p24.TopSurface = Enum.SurfaceType.Smooth
  984. p25 = Instance.new("Part", m)
  985. p25.BrickColor = BrickColor.new("Bright blue")
  986. p25.Material = "Neon"
  987. p25.FormFactor = Enum.FormFactor.Symmetric
  988. p25.Size = Vector3.new(1, 1, 1)
  989. 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)
  990. p25.CanCollide = false
  991. p25.Locked = true
  992. p25.BottomSurface = Enum.SurfaceType.Smooth
  993. p25.TopSurface = Enum.SurfaceType.Smooth
  994. b21 = Instance.new("SpecialMesh", p25)
  995. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  996. b21.TextureId = ""
  997. b21.MeshType = Enum.MeshType.FileMesh
  998. b21.Name = "Mesh"
  999. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1000. p26 = Instance.new("Part", m)
  1001. p26.BrickColor = BrickColor.new("Really black")
  1002. p26.FormFactor = Enum.FormFactor.Symmetric
  1003. p26.Size = Vector3.new(1, 1, 1)
  1004. 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)
  1005. p26.CanCollide = false
  1006. p26.Locked = true
  1007. p26.BottomSurface = Enum.SurfaceType.Smooth
  1008. p26.TopSurface = Enum.SurfaceType.Smooth
  1009. b22 = Instance.new("SpecialMesh", p26)
  1010. b22.MeshType = Enum.MeshType.Brick
  1011. b22.Name = "Mesh"
  1012. w1 = Instance.new("Weld", p1)
  1013. w1.Name = "Wedge_Weld"
  1014. w1.Part0 = p1
  1015. 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)
  1016. w1.Part1 = p2
  1017. 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)
  1018. w2 = Instance.new("Weld", p2)
  1019. w2.Name = "Part_Weld"
  1020. w2.Part0 = p2
  1021. 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)
  1022. w2.Part1 = p3
  1023. 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)
  1024. w3 = Instance.new("Weld", p3)
  1025. w3.Name = "Wedge_Weld"
  1026. w3.Part0 = p3
  1027. 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)
  1028. w3.Part1 = p4
  1029. 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)
  1030. w4 = Instance.new("Weld", p4)
  1031. w4.Name = "Part_Weld"
  1032. w4.Part0 = p4
  1033. 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)
  1034. w4.Part1 = p5
  1035. 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)
  1036. w5 = Instance.new("Weld", p5)
  1037. w5.Name = "Part_Weld"
  1038. w5.Part0 = p5
  1039. 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)
  1040. w5.Part1 = p6
  1041. 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)
  1042. w6 = Instance.new("Weld", p6)
  1043. w6.Name = "Part_Weld"
  1044. w6.Part0 = p6
  1045. 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)
  1046. w6.Part1 = p7
  1047. 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)
  1048. w7 = Instance.new("Weld", p7)
  1049. w7.Name = "Part_Weld"
  1050. w7.Part0 = p7
  1051. 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)
  1052. w7.Part1 = p8
  1053. 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)
  1054. w8 = Instance.new("Weld", p8)
  1055. w8.Name = "Part_Weld"
  1056. w8.Part0 = p8
  1057. 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)
  1058. w8.Part1 = p9
  1059. 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)
  1060. w9 = Instance.new("Weld", p9)
  1061. w9.Name = "Part_Weld"
  1062. w9.Part0 = p9
  1063. 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)
  1064. w9.Part1 = p10
  1065. 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)
  1066. w10 = Instance.new("Weld", p10)
  1067. w10.Name = "Part_Weld"
  1068. w10.Part0 = p10
  1069. 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)
  1070. w10.Part1 = p11
  1071. 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)
  1072. w11 = Instance.new("Weld", p11)
  1073. w11.Name = "Part_Weld"
  1074. w11.Part0 = p11
  1075. 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)
  1076. w11.Part1 = p12
  1077. 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)
  1078. w12 = Instance.new("Weld", p12)
  1079. w12.Name = "Part_Weld"
  1080. w12.Part0 = p12
  1081. 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)
  1082. w12.Part1 = p13
  1083. 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)
  1084. w13 = Instance.new("Weld", p13)
  1085. w13.Name = "Part_Weld"
  1086. w13.Part0 = p13
  1087. 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)
  1088. w13.Part1 = p14
  1089. 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)
  1090. w14 = Instance.new("Weld", p14)
  1091. w14.Name = "ArmPart_Weld"
  1092. w14.Part0 = p14
  1093. 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)
  1094. w14.Part1 = p15
  1095. 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)
  1096. w15 = Instance.new("Weld", p15)
  1097. w15.Name = "Part_Weld"
  1098. w15.Part0 = p15
  1099. 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)
  1100. w15.Part1 = p16
  1101. 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)
  1102. w16 = Instance.new("Weld", p16)
  1103. w16.Name = "Part_Weld"
  1104. w16.Part0 = p16
  1105. 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)
  1106. w16.Part1 = p17
  1107. 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)
  1108. w17 = Instance.new("Weld", p17)
  1109. w17.Name = "Part_Weld"
  1110. w17.Part0 = p17
  1111. 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)
  1112. w17.Part1 = p18
  1113. 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)
  1114. w18 = Instance.new("Weld", p18)
  1115. w18.Name = "Part_Weld"
  1116. w18.Part0 = p18
  1117. 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)
  1118. w18.Part1 = p19
  1119. 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)
  1120. w19 = Instance.new("Weld", p19)
  1121. w19.Name = "Part_Weld"
  1122. w19.Part0 = p19
  1123. 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)
  1124. w19.Part1 = p20
  1125. 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)
  1126. w20 = Instance.new("Weld", p20)
  1127. w20.Name = "Part_Weld"
  1128. w20.Part0 = p20
  1129. 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)
  1130. w20.Part1 = p21
  1131. 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)
  1132. w21 = Instance.new("Weld", p21)
  1133. w21.Name = "Wedge_Weld"
  1134. w21.Part0 = p21
  1135. 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)
  1136. w21.Part1 = p22
  1137. 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)
  1138. w22 = Instance.new("Weld", p22)
  1139. w22.Name = "Part_Weld"
  1140. w22.Part0 = p22
  1141. 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)
  1142. w22.Part1 = p23
  1143. 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)
  1144. w23 = Instance.new("Weld", p23)
  1145. w23.Name = "Wedge_Weld"
  1146. w23.Part0 = p23
  1147. 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)
  1148. w23.Part1 = p24
  1149. 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)
  1150. w24 = Instance.new("Weld", p24)
  1151. w24.Name = "Part_Weld"
  1152. w24.Part0 = p24
  1153. 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)
  1154. w24.Part1 = p25
  1155. 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)
  1156. w25 = Instance.new("Weld", p25)
  1157. w25.Name = "Part_Weld"
  1158. w25.Part0 = p25
  1159. 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)
  1160. w25.Part1 = p26
  1161. 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)
  1162. m.Parent = char
  1163. m:MakeJoints()
  1164. ----------------------------------------------------
  1165. local cor2 = Instance.new("Part", char.Claw)
  1166. cor2.Name = "Thingy"
  1167. cor2.Locked = true
  1168. cor2.BottomSurface = 0
  1169. cor2.CanCollide = false
  1170. cor2.Size = Vector3.new(2, 1, 1)
  1171. cor2.Transparency = 1
  1172. cor2.TopSurface = 0
  1173. corw2 = Instance.new("Weld", cor2)
  1174. corw2.Part0 = larm
  1175. corw2.Part1 = cor2
  1176. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1177. corw2.C1 = CFrame.new(0, 0, 0)
  1178. weld2 = Instance.new("Weld", char.Claw)
  1179. weld2.Part0 = cor2
  1180. weld2.Part1 = char.Claw.ArmPart
  1181. weld2.C0 = CFrame.new(0, 0, 0)
  1182. ----------------------------------------------------
  1183. local m = Instance.new("Model")
  1184. m.Name = "LeftArm"
  1185. p1 = Instance.new("WedgePart", m)
  1186. p1.BrickColor = BrickColor.new("Bright blue")
  1187. p1.Material = Enum.Material.Neon
  1188. p1.Name = "Wedge"
  1189. p1.FormFactor = Enum.FormFactor.Custom
  1190. p1.Size = Vector3.new(1, 1.19999981, 4)
  1191. 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)
  1192. p1.CanCollide = false
  1193. p1.Locked = true
  1194. p1.TopSurface = Enum.SurfaceType.Smooth
  1195. b1 = Instance.new("SpecialMesh", p1)
  1196. b1.MeshType = Enum.MeshType.Wedge
  1197. b1.Name = "Mesh"
  1198. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1199. p2 = Instance.new("WedgePart", m)
  1200. p2.BrickColor = BrickColor.new("Bright blue")
  1201. p2.Material = Enum.Material.Neon
  1202. p2.Name = "Wedge"
  1203. p2.FormFactor = Enum.FormFactor.Custom
  1204. p2.Size = Vector3.new(1, 1.19999981, 4)
  1205. 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)
  1206. p2.CanCollide = false
  1207. p2.Locked = true
  1208. p2.TopSurface = Enum.SurfaceType.Smooth
  1209. b2 = Instance.new("SpecialMesh", p2)
  1210. b2.MeshType = Enum.MeshType.Wedge
  1211. b2.Name = "Mesh"
  1212. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1213. p3 = Instance.new("WedgePart", m)
  1214. p3.BrickColor = BrickColor.new("Bright blue")
  1215. p3.Material = Enum.Material.Neon
  1216. p3.Name = "Wedge"
  1217. p3.FormFactor = Enum.FormFactor.Custom
  1218. p3.Size = Vector3.new(1, 1.19999981, 4)
  1219. 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)
  1220. p3.CanCollide = false
  1221. p3.Locked = true
  1222. p3.TopSurface = Enum.SurfaceType.Smooth
  1223. b3 = Instance.new("SpecialMesh", p3)
  1224. b3.MeshType = Enum.MeshType.Wedge
  1225. b3.Name = "Mesh"
  1226. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1227. p4 = Instance.new("WedgePart", m)
  1228. p4.BrickColor = BrickColor.new("Bright blue")
  1229. p4.Material = Enum.Material.Neon
  1230. p4.Name = "Wedge"
  1231. p4.FormFactor = Enum.FormFactor.Custom
  1232. p4.Size = Vector3.new(1, 1.19999981, 4)
  1233. 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)
  1234. p4.CanCollide = false
  1235. p4.Locked = true
  1236. p4.TopSurface = Enum.SurfaceType.Smooth
  1237. b4 = Instance.new("SpecialMesh", p4)
  1238. b4.MeshType = Enum.MeshType.Wedge
  1239. b4.Name = "Mesh"
  1240. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1241. p5 = Instance.new("WedgePart", m)
  1242. p5.BrickColor = BrickColor.new("Bright blue")
  1243. p5.Material = Enum.Material.Neon
  1244. p5.Name = "Wedge"
  1245. p5.FormFactor = Enum.FormFactor.Custom
  1246. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1247. 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)
  1248. p5.CanCollide = false
  1249. p5.Locked = true
  1250. p5.TopSurface = Enum.SurfaceType.Smooth
  1251. b5 = Instance.new("SpecialMesh", p5)
  1252. b5.MeshType = Enum.MeshType.Wedge
  1253. b5.Name = "Mesh"
  1254. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1255. p6 = Instance.new("WedgePart", m)
  1256. p6.BrickColor = BrickColor.new("Bright blue")
  1257. p6.Material = Enum.Material.Neon
  1258. p6.Name = "Wedge"
  1259. p6.FormFactor = Enum.FormFactor.Custom
  1260. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1261. 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)
  1262. p6.CanCollide = false
  1263. p6.Locked = true
  1264. p6.TopSurface = Enum.SurfaceType.Smooth
  1265. b6 = Instance.new("SpecialMesh", p6)
  1266. b6.MeshType = Enum.MeshType.Wedge
  1267. b6.Name = "Mesh"
  1268. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1269. p7 = Instance.new("WedgePart", m)
  1270. p7.BrickColor = BrickColor.new("Bright blue")
  1271. p7.Material = Enum.Material.Neon
  1272. p7.Name = "Wedge"
  1273. p7.FormFactor = Enum.FormFactor.Custom
  1274. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1275. 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)
  1276. p7.CanCollide = false
  1277. p7.Locked = true
  1278. p7.TopSurface = Enum.SurfaceType.Smooth
  1279. b7 = Instance.new("SpecialMesh", p7)
  1280. b7.MeshType = Enum.MeshType.Wedge
  1281. b7.Name = "Mesh"
  1282. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1283. p8 = Instance.new("Part", m)
  1284. p8.BrickColor = BrickColor.new("Really black")
  1285. p8.Material = Enum.Material.Neon
  1286. p8.FormFactor = Enum.FormFactor.Custom
  1287. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1288. 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)
  1289. p8.CanCollide = false
  1290. p8.Locked = true
  1291. p8.BottomSurface = Enum.SurfaceType.Smooth
  1292. p8.TopSurface = Enum.SurfaceType.Smooth
  1293. b8 = Instance.new("SpecialMesh", p8)
  1294. b8.MeshType = Enum.MeshType.Sphere
  1295. b8.Name = "Mesh"
  1296. p9 = Instance.new("Part", m)
  1297. p9.BrickColor = BrickColor.new("Really black")
  1298. p9.Material = Enum.Material.Neon
  1299. p9.FormFactor = Enum.FormFactor.Custom
  1300. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1301. 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)
  1302. p9.CanCollide = false
  1303. p9.Locked = true
  1304. p9.BottomSurface = Enum.SurfaceType.Smooth
  1305. p9.TopSurface = Enum.SurfaceType.Smooth
  1306. b9 = Instance.new("SpecialMesh", p9)
  1307. b9.MeshType = Enum.MeshType.Sphere
  1308. b9.Name = "Mesh"
  1309. p10 = Instance.new("Part", m)
  1310. p10.BrickColor = BrickColor.new("Bright blue")
  1311. p10.Material = Enum.Material.Neon
  1312. p10.FormFactor = Enum.FormFactor.Custom
  1313. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1314. 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)
  1315. p10.CanCollide = false
  1316. p10.Locked = true
  1317. p10.BottomSurface = Enum.SurfaceType.Smooth
  1318. p10.TopSurface = Enum.SurfaceType.Smooth
  1319. p11 = Instance.new("Part", m)
  1320. p11.BrickColor = BrickColor.new("Bright blue")
  1321. p11.Material = Enum.Material.Neon
  1322. p11.FormFactor = Enum.FormFactor.Custom
  1323. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1324. 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)
  1325. p11.CanCollide = false
  1326. p11.Locked = true
  1327. p11.BottomSurface = Enum.SurfaceType.Smooth
  1328. p11.TopSurface = Enum.SurfaceType.Smooth
  1329. p12 = Instance.new("Part", m)
  1330. p12.BrickColor = BrickColor.new("Really black")
  1331. p12.Material = Enum.Material.Neon
  1332. p12.FormFactor = Enum.FormFactor.Custom
  1333. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1334. 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)
  1335. p12.CanCollide = false
  1336. p12.Locked = true
  1337. p12.BottomSurface = Enum.SurfaceType.Smooth
  1338. p12.TopSurface = Enum.SurfaceType.Smooth
  1339. b10 = Instance.new("SpecialMesh", p12)
  1340. b10.MeshType = Enum.MeshType.Sphere
  1341. b10.Name = "Mesh"
  1342. p13 = Instance.new("Part", m)
  1343. p13.BrickColor = BrickColor.new("Bright blue")
  1344. p13.Material = Enum.Material.Neon
  1345. p13.FormFactor = Enum.FormFactor.Custom
  1346. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1347. 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)
  1348. p13.CanCollide = false
  1349. p13.Locked = true
  1350. p13.BottomSurface = Enum.SurfaceType.Smooth
  1351. p13.TopSurface = Enum.SurfaceType.Smooth
  1352. b11 = Instance.new("SpecialMesh", p13)
  1353. b11.MeshType = Enum.MeshType.Sphere
  1354. b11.Name = "Mesh"
  1355. p14 = Instance.new("Part", m)
  1356. p14.BrickColor = BrickColor.new("Really black")
  1357. p14.Material = Enum.Material.Neon
  1358. p14.FormFactor = Enum.FormFactor.Custom
  1359. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1360. 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)
  1361. p14.CanCollide = false
  1362. p14.Locked = true
  1363. p14.BottomSurface = Enum.SurfaceType.Smooth
  1364. p14.TopSurface = Enum.SurfaceType.Smooth
  1365. b12 = Instance.new("SpecialMesh", p14)
  1366. b12.MeshType = Enum.MeshType.Sphere
  1367. b12.Name = "Mesh"
  1368. p15 = Instance.new("Part", m)
  1369. p15.BrickColor = BrickColor.new("Really black")
  1370. p15.Material = Enum.Material.Metal
  1371. p15.Name = "Main"
  1372. p15.FormFactor = Enum.FormFactor.Custom
  1373. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1374. 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)
  1375. p15.CanCollide = false
  1376. p15.Locked = true
  1377. p15.BottomSurface = Enum.SurfaceType.Smooth
  1378. p15.TopSurface = Enum.SurfaceType.Smooth
  1379. p16 = Instance.new("Part", m)
  1380. p16.BrickColor = BrickColor.new("Really black")
  1381. p16.Material = Enum.Material.Neon
  1382. p16.FormFactor = Enum.FormFactor.Custom
  1383. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1384. 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)
  1385. p16.CanCollide = false
  1386. p16.Locked = true
  1387. p16.BottomSurface = Enum.SurfaceType.Smooth
  1388. p16.TopSurface = Enum.SurfaceType.Smooth
  1389. b13 = Instance.new("SpecialMesh", p16)
  1390. b13.MeshType = Enum.MeshType.Sphere
  1391. b13.Name = "Mesh"
  1392. p17 = Instance.new("Part", m)
  1393. p17.BrickColor = BrickColor.new("Bright blue")
  1394. p17.Material = Enum.Material.Neon
  1395. p17.FormFactor = Enum.FormFactor.Custom
  1396. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1397. 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)
  1398. p17.CanCollide = false
  1399. p17.Locked = true
  1400. p17.BottomSurface = Enum.SurfaceType.Smooth
  1401. p17.TopSurface = Enum.SurfaceType.Smooth
  1402. p18 = Instance.new("Part", m)
  1403. p18.BrickColor = BrickColor.new("Bright blue")
  1404. p18.Material = Enum.Material.Neon
  1405. p18.FormFactor = Enum.FormFactor.Custom
  1406. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1407. 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)
  1408. p18.CanCollide = false
  1409. p18.Locked = true
  1410. p18.BottomSurface = Enum.SurfaceType.Smooth
  1411. p18.TopSurface = Enum.SurfaceType.Smooth
  1412. p19 = Instance.new("Part", m)
  1413. p19.BrickColor = BrickColor.new("Bright blue")
  1414. p19.Material = Enum.Material.Neon
  1415. p19.FormFactor = Enum.FormFactor.Custom
  1416. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1417. 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)
  1418. p19.CanCollide = false
  1419. p19.Locked = true
  1420. p19.BottomSurface = Enum.SurfaceType.Smooth
  1421. p19.TopSurface = Enum.SurfaceType.Smooth
  1422. p20 = Instance.new("Part", m)
  1423. p20.BrickColor = BrickColor.new("Bright blue")
  1424. p20.Material = Enum.Material.Neon
  1425. p20.FormFactor = Enum.FormFactor.Custom
  1426. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1427. 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)
  1428. p20.CanCollide = false
  1429. p20.Locked = true
  1430. p20.BottomSurface = Enum.SurfaceType.Smooth
  1431. p20.TopSurface = Enum.SurfaceType.Smooth
  1432. p21 = Instance.new("Part", m)
  1433. p21.BrickColor = BrickColor.new("Bright blue")
  1434. p21.Material = Enum.Material.Neon
  1435. p21.FormFactor = Enum.FormFactor.Custom
  1436. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1437. 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)
  1438. p21.CanCollide = false
  1439. p21.Locked = true
  1440. p21.BottomSurface = Enum.SurfaceType.Smooth
  1441. p21.TopSurface = Enum.SurfaceType.Smooth
  1442. p22 = Instance.new("Part", m)
  1443. p22.BrickColor = BrickColor.new("Really black")
  1444. p22.Material = Enum.Material.Neon
  1445. p22.FormFactor = Enum.FormFactor.Custom
  1446. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1447. 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)
  1448. p22.CanCollide = false
  1449. p22.Locked = true
  1450. p22.BottomSurface = Enum.SurfaceType.Smooth
  1451. p22.TopSurface = Enum.SurfaceType.Smooth
  1452. b14 = Instance.new("SpecialMesh", p22)
  1453. b14.MeshType = Enum.MeshType.Sphere
  1454. b14.Name = "Mesh"
  1455. p23 = Instance.new("Part", m)
  1456. p23.BrickColor = BrickColor.new("Really black")
  1457. p23.Material = Enum.Material.Neon
  1458. p23.FormFactor = Enum.FormFactor.Custom
  1459. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1460. 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)
  1461. p23.CanCollide = false
  1462. p23.Locked = true
  1463. p23.BottomSurface = Enum.SurfaceType.Smooth
  1464. p23.TopSurface = Enum.SurfaceType.Smooth
  1465. b15 = Instance.new("SpecialMesh", p23)
  1466. b15.MeshType = Enum.MeshType.Sphere
  1467. b15.Name = "Mesh"
  1468. p24 = Instance.new("Part", m)
  1469. p24.BrickColor = BrickColor.new("Really black")
  1470. p24.Material = Enum.Material.Neon
  1471. p24.FormFactor = Enum.FormFactor.Custom
  1472. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1473. 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)
  1474. p24.CanCollide = false
  1475. p24.Locked = true
  1476. p24.BottomSurface = Enum.SurfaceType.Smooth
  1477. p24.TopSurface = Enum.SurfaceType.Smooth
  1478. b16 = Instance.new("SpecialMesh", p24)
  1479. b16.MeshType = Enum.MeshType.Sphere
  1480. b16.Name = "Mesh"
  1481. w1 = Instance.new("Weld", p1)
  1482. w1.Name = "Wedge_Weld"
  1483. w1.Part0 = p1
  1484. 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)
  1485. w1.Part1 = p2
  1486. 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)
  1487. w2 = Instance.new("Weld", p2)
  1488. w2.Name = "Wedge_Weld"
  1489. w2.Part0 = p2
  1490. 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)
  1491. w2.Part1 = p3
  1492. 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)
  1493. w3 = Instance.new("Weld", p3)
  1494. w3.Name = "Wedge_Weld"
  1495. w3.Part0 = p3
  1496. 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)
  1497. w3.Part1 = p4
  1498. 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)
  1499. w4 = Instance.new("Weld", p4)
  1500. w4.Name = "Wedge_Weld"
  1501. w4.Part0 = p4
  1502. 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)
  1503. w4.Part1 = p5
  1504. 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)
  1505. w5 = Instance.new("Weld", p5)
  1506. w5.Name = "Wedge_Weld"
  1507. w5.Part0 = p5
  1508. 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)
  1509. w5.Part1 = p6
  1510. 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)
  1511. w6 = Instance.new("Weld", p6)
  1512. w6.Name = "Wedge_Weld"
  1513. w6.Part0 = p6
  1514. 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)
  1515. w6.Part1 = p7
  1516. 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)
  1517. w7 = Instance.new("Weld", p7)
  1518. w7.Name = "Part_Weld"
  1519. w7.Part0 = p7
  1520. 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)
  1521. w7.Part1 = p8
  1522. 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)
  1523. w8 = Instance.new("Weld", p8)
  1524. w8.Name = "Part_Weld"
  1525. w8.Part0 = p8
  1526. 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)
  1527. w8.Part1 = p9
  1528. 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)
  1529. w9 = Instance.new("Weld", p9)
  1530. w9.Name = "Part_Weld"
  1531. w9.Part0 = p9
  1532. 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)
  1533. w9.Part1 = p10
  1534. 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)
  1535. w10 = Instance.new("Weld", p10)
  1536. w10.Name = "Part_Weld"
  1537. w10.Part0 = p10
  1538. 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)
  1539. w10.Part1 = p11
  1540. 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)
  1541. w11 = Instance.new("Weld", p11)
  1542. w11.Name = "Part_Weld"
  1543. w11.Part0 = p11
  1544. 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)
  1545. w11.Part1 = p12
  1546. 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)
  1547. w12 = Instance.new("Weld", p12)
  1548. w12.Name = "Part_Weld"
  1549. w12.Part0 = p12
  1550. 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)
  1551. w12.Part1 = p13
  1552. 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)
  1553. w13 = Instance.new("Weld", p13)
  1554. w13.Name = "Part_Weld"
  1555. w13.Part0 = p13
  1556. 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)
  1557. w13.Part1 = p14
  1558. 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)
  1559. w14 = Instance.new("Weld", p14)
  1560. w14.Name = "Part_Weld"
  1561. w14.Part0 = p14
  1562. 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)
  1563. w14.Part1 = p15
  1564. 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)
  1565. w15 = Instance.new("Weld", p15)
  1566. w15.Name = "Part_Weld"
  1567. w15.Part0 = p15
  1568. 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)
  1569. w15.Part1 = p16
  1570. 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)
  1571. w16 = Instance.new("Weld", p16)
  1572. w16.Name = "Part_Weld"
  1573. w16.Part0 = p16
  1574. 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)
  1575. w16.Part1 = p17
  1576. 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)
  1577. w17 = Instance.new("Weld", p17)
  1578. w17.Name = "Part_Weld"
  1579. w17.Part0 = p17
  1580. 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)
  1581. w17.Part1 = p18
  1582. 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)
  1583. w18 = Instance.new("Weld", p18)
  1584. w18.Name = "Part_Weld"
  1585. w18.Part0 = p18
  1586. 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)
  1587. w18.Part1 = p19
  1588. 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)
  1589. w19 = Instance.new("Weld", p19)
  1590. w19.Name = "Part_Weld"
  1591. w19.Part0 = p19
  1592. 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)
  1593. w19.Part1 = p20
  1594. 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)
  1595. w20 = Instance.new("Weld", p20)
  1596. w20.Name = "Part_Weld"
  1597. w20.Part0 = p20
  1598. 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)
  1599. w20.Part1 = p21
  1600. 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)
  1601. w21 = Instance.new("Weld", p21)
  1602. w21.Name = "Part_Weld"
  1603. w21.Part0 = p21
  1604. 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)
  1605. w21.Part1 = p22
  1606. 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)
  1607. w22 = Instance.new("Weld", p22)
  1608. w22.Name = "Part_Weld"
  1609. w22.Part0 = p22
  1610. 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)
  1611. w22.Part1 = p23
  1612. 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)
  1613. w23 = Instance.new("Weld", p23)
  1614. w23.Name = "Part_Weld"
  1615. w23.Part0 = p23
  1616. 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)
  1617. w23.Part1 = p24
  1618. 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)
  1619. w24 = Instance.new("Weld", p24)
  1620. w24.Name = "Part_Weld"
  1621. w24.Part0 = p24
  1622. 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)
  1623. m.Parent = larm
  1624. m:MakeJoints()
  1625. ----------------------------------------------------
  1626. local cor3 = Instance.new("Part", larm.LeftArm)
  1627. cor3.Name = "Thingy"
  1628. cor3.Locked = true
  1629. cor3.BottomSurface = 0
  1630. cor3.CanCollide = false
  1631. cor3.Size = Vector3.new(2, 1, 1)
  1632. cor3.Transparency = 1
  1633. cor3.TopSurface = 0
  1634. corw2 = Instance.new("Weld", cor3)
  1635. corw2.Part0 = larm
  1636. corw2.Part1 = cor3
  1637. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1638. corw2.C1 = CFrame.new(0, 0, 0)
  1639. weld2 = Instance.new("Weld", larm.LeftArm)
  1640. weld2.Part0 = cor3
  1641. weld2.Part1 = p15
  1642. weld2.C0 = CFrame.new(0, 0, 0)
  1643. ----------------------------------------------------
  1644. local m = Instance.new("Model")
  1645. m.Name = "RightArm"
  1646. p1 = Instance.new("WedgePart", m)
  1647. p1.BrickColor = BrickColor.new("Bright blue")
  1648. p1.Material = Enum.Material.Neon
  1649. p1.Name = "Wedge"
  1650. p1.FormFactor = Enum.FormFactor.Custom
  1651. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1652. 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)
  1653. p1.CanCollide = false
  1654. p1.Locked = true
  1655. p1.TopSurface = Enum.SurfaceType.Smooth
  1656. b1 = Instance.new("SpecialMesh", p1)
  1657. b1.MeshType = Enum.MeshType.Wedge
  1658. b1.Name = "Mesh"
  1659. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1660. p2 = Instance.new("WedgePart", m)
  1661. p2.BrickColor = BrickColor.new("Bright blue")
  1662. p2.Material = Enum.Material.Neon
  1663. p2.Name = "Wedge"
  1664. p2.FormFactor = Enum.FormFactor.Custom
  1665. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1666. 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)
  1667. p2.CanCollide = false
  1668. p2.Locked = true
  1669. p2.TopSurface = Enum.SurfaceType.Smooth
  1670. b2 = Instance.new("SpecialMesh", p2)
  1671. b2.MeshType = Enum.MeshType.Wedge
  1672. b2.Name = "Mesh"
  1673. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1674. p3 = Instance.new("WedgePart", m)
  1675. p3.BrickColor = BrickColor.new("Bright blue")
  1676. p3.Material = Enum.Material.Neon
  1677. p3.Name = "Wedge"
  1678. p3.FormFactor = Enum.FormFactor.Custom
  1679. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1680. 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)
  1681. p3.CanCollide = false
  1682. p3.Locked = true
  1683. p3.TopSurface = Enum.SurfaceType.Smooth
  1684. b3 = Instance.new("SpecialMesh", p3)
  1685. b3.MeshType = Enum.MeshType.Wedge
  1686. b3.Name = "Mesh"
  1687. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1688. p4 = Instance.new("WedgePart", m)
  1689. p4.BrickColor = BrickColor.new("Bright blue")
  1690. p4.Material = Enum.Material.Neon
  1691. p4.Name = "Wedge"
  1692. p4.FormFactor = Enum.FormFactor.Custom
  1693. p4.Size = Vector3.new(1, 1.19999981, 4)
  1694. 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)
  1695. p4.CanCollide = false
  1696. p4.Locked = true
  1697. p4.TopSurface = Enum.SurfaceType.Smooth
  1698. b4 = Instance.new("SpecialMesh", p4)
  1699. b4.MeshType = Enum.MeshType.Wedge
  1700. b4.Name = "Mesh"
  1701. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1702. p5 = Instance.new("WedgePart", m)
  1703. p5.BrickColor = BrickColor.new("Bright blue")
  1704. p5.Material = Enum.Material.Neon
  1705. p5.Name = "Wedge"
  1706. p5.FormFactor = Enum.FormFactor.Custom
  1707. p5.Size = Vector3.new(1, 1.19999981, 4)
  1708. 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)
  1709. p5.CanCollide = false
  1710. p5.Locked = true
  1711. p5.TopSurface = Enum.SurfaceType.Smooth
  1712. b5 = Instance.new("SpecialMesh", p5)
  1713. b5.MeshType = Enum.MeshType.Wedge
  1714. b5.Name = "Mesh"
  1715. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1716. p6 = Instance.new("WedgePart", m)
  1717. p6.BrickColor = BrickColor.new("Bright blue")
  1718. p6.Material = Enum.Material.Neon
  1719. p6.Name = "Wedge"
  1720. p6.FormFactor = Enum.FormFactor.Custom
  1721. p6.Size = Vector3.new(1, 1.19999981, 4)
  1722. 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)
  1723. p6.CanCollide = false
  1724. p6.Locked = true
  1725. p6.TopSurface = Enum.SurfaceType.Smooth
  1726. b6 = Instance.new("SpecialMesh", p6)
  1727. b6.MeshType = Enum.MeshType.Wedge
  1728. b6.Name = "Mesh"
  1729. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1730. p7 = Instance.new("Part", m)
  1731. p7.BrickColor = BrickColor.new("Really black")
  1732. p7.Material = Enum.Material.Neon
  1733. p7.FormFactor = Enum.FormFactor.Custom
  1734. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1735. 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)
  1736. p7.CanCollide = false
  1737. p7.Locked = true
  1738. p7.BottomSurface = Enum.SurfaceType.Smooth
  1739. p7.TopSurface = Enum.SurfaceType.Smooth
  1740. b7 = Instance.new("SpecialMesh", p7)
  1741. b7.MeshType = Enum.MeshType.Sphere
  1742. b7.Name = "Mesh"
  1743. p8 = Instance.new("Part", m)
  1744. p8.BrickColor = BrickColor.new("Bright blue")
  1745. p8.Material = Enum.Material.Neon
  1746. p8.FormFactor = Enum.FormFactor.Custom
  1747. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1748. 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)
  1749. p8.CanCollide = false
  1750. p8.Locked = true
  1751. p8.BottomSurface = Enum.SurfaceType.Smooth
  1752. p8.TopSurface = Enum.SurfaceType.Smooth
  1753. p9 = Instance.new("Part", m)
  1754. p9.BrickColor = BrickColor.new("Really black")
  1755. p9.Material = Enum.Material.Neon
  1756. p9.FormFactor = Enum.FormFactor.Custom
  1757. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1758. 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)
  1759. p9.CanCollide = false
  1760. p9.Locked = true
  1761. p9.BottomSurface = Enum.SurfaceType.Smooth
  1762. p9.TopSurface = Enum.SurfaceType.Smooth
  1763. b8 = Instance.new("SpecialMesh", p9)
  1764. b8.MeshType = Enum.MeshType.Sphere
  1765. b8.Name = "Mesh"
  1766. p10 = Instance.new("Part", m)
  1767. p10.BrickColor = BrickColor.new("Really black")
  1768. p10.Material = Enum.Material.Neon
  1769. p10.FormFactor = Enum.FormFactor.Custom
  1770. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1771. 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)
  1772. p10.CanCollide = false
  1773. p10.Locked = true
  1774. p10.BottomSurface = Enum.SurfaceType.Smooth
  1775. p10.TopSurface = Enum.SurfaceType.Smooth
  1776. b9 = Instance.new("SpecialMesh", p10)
  1777. b9.MeshType = Enum.MeshType.Sphere
  1778. b9.Name = "Mesh"
  1779. p11 = Instance.new("Part", m)
  1780. p11.BrickColor = BrickColor.new("Bright blue")
  1781. p11.Material = Enum.Material.Neon
  1782. p11.FormFactor = Enum.FormFactor.Custom
  1783. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1784. 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)
  1785. p11.CanCollide = false
  1786. p11.Locked = true
  1787. p11.BottomSurface = Enum.SurfaceType.Smooth
  1788. p11.TopSurface = Enum.SurfaceType.Smooth
  1789. p12 = Instance.new("Part", m)
  1790. p12.BrickColor = BrickColor.new("Bright blue")
  1791. p12.Material = Enum.Material.Neon
  1792. p12.FormFactor = Enum.FormFactor.Custom
  1793. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1794. 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)
  1795. p12.CanCollide = false
  1796. p12.Locked = true
  1797. p12.BottomSurface = Enum.SurfaceType.Smooth
  1798. p12.TopSurface = Enum.SurfaceType.Smooth
  1799. p13 = Instance.new("Part", m)
  1800. p13.BrickColor = BrickColor.new("Bright blue")
  1801. p13.Material = Enum.Material.Neon
  1802. p13.FormFactor = Enum.FormFactor.Custom
  1803. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1804. 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)
  1805. p13.CanCollide = false
  1806. p13.Locked = true
  1807. p13.BottomSurface = Enum.SurfaceType.Smooth
  1808. p13.TopSurface = Enum.SurfaceType.Smooth
  1809. b10 = Instance.new("SpecialMesh", p13)
  1810. b10.MeshType = Enum.MeshType.Sphere
  1811. b10.Name = "Mesh"
  1812. p14 = Instance.new("Part", m)
  1813. p14.BrickColor = BrickColor.new("Really black")
  1814. p14.Material = Enum.Material.Metal
  1815. p14.Name = "Main"
  1816. p14.FormFactor = Enum.FormFactor.Custom
  1817. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1818. 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)
  1819. p14.CanCollide = false
  1820. p14.Locked = true
  1821. p14.BottomSurface = Enum.SurfaceType.Smooth
  1822. p14.TopSurface = Enum.SurfaceType.Smooth
  1823. p15 = Instance.new("Part", m)
  1824. p15.BrickColor = BrickColor.new("Really black")
  1825. p15.Material = Enum.Material.Neon
  1826. p15.FormFactor = Enum.FormFactor.Custom
  1827. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1828. 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)
  1829. p15.CanCollide = false
  1830. p15.Locked = true
  1831. p15.BottomSurface = Enum.SurfaceType.Smooth
  1832. p15.TopSurface = Enum.SurfaceType.Smooth
  1833. b11 = Instance.new("SpecialMesh", p15)
  1834. b11.MeshType = Enum.MeshType.Sphere
  1835. b11.Name = "Mesh"
  1836. p16 = Instance.new("Part", m)
  1837. p16.BrickColor = BrickColor.new("Bright blue")
  1838. p16.Material = Enum.Material.Neon
  1839. p16.FormFactor = Enum.FormFactor.Custom
  1840. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1841. 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)
  1842. p16.CanCollide = false
  1843. p16.Locked = true
  1844. p16.BottomSurface = Enum.SurfaceType.Smooth
  1845. p16.TopSurface = Enum.SurfaceType.Smooth
  1846. p17 = Instance.new("Part", m)
  1847. p17.BrickColor = BrickColor.new("Bright blue")
  1848. p17.Material = Enum.Material.Neon
  1849. p17.FormFactor = Enum.FormFactor.Custom
  1850. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1851. 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)
  1852. p17.CanCollide = false
  1853. p17.Locked = true
  1854. p17.BottomSurface = Enum.SurfaceType.Smooth
  1855. p17.TopSurface = Enum.SurfaceType.Smooth
  1856. p18 = Instance.new("Part", m)
  1857. p18.BrickColor = BrickColor.new("Really black")
  1858. p18.Material = Enum.Material.Neon
  1859. p18.FormFactor = Enum.FormFactor.Custom
  1860. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1861. 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)
  1862. p18.CanCollide = false
  1863. p18.Locked = true
  1864. p18.BottomSurface = Enum.SurfaceType.Smooth
  1865. p18.TopSurface = Enum.SurfaceType.Smooth
  1866. b12 = Instance.new("SpecialMesh", p18)
  1867. b12.MeshType = Enum.MeshType.Sphere
  1868. b12.Name = "Mesh"
  1869. p19 = Instance.new("Part", m)
  1870. p19.BrickColor = BrickColor.new("Really black")
  1871. p19.Material = Enum.Material.Neon
  1872. p19.FormFactor = Enum.FormFactor.Custom
  1873. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1874. 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)
  1875. p19.CanCollide = false
  1876. p19.Locked = true
  1877. p19.BottomSurface = Enum.SurfaceType.Smooth
  1878. p19.TopSurface = Enum.SurfaceType.Smooth
  1879. b13 = Instance.new("SpecialMesh", p19)
  1880. b13.MeshType = Enum.MeshType.Sphere
  1881. b13.Name = "Mesh"
  1882. w1 = Instance.new("Weld", p1)
  1883. w1.Name = "Wedge_Weld"
  1884. w1.Part0 = p1
  1885. 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)
  1886. w1.Part1 = p2
  1887. 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)
  1888. w2 = Instance.new("Weld", p2)
  1889. w2.Name = "Wedge_Weld"
  1890. w2.Part0 = p2
  1891. 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)
  1892. w2.Part1 = p3
  1893. 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)
  1894. w3 = Instance.new("Weld", p3)
  1895. w3.Name = "Wedge_Weld"
  1896. w3.Part0 = p3
  1897. 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)
  1898. w3.Part1 = p4
  1899. 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)
  1900. w4 = Instance.new("Weld", p4)
  1901. w4.Name = "Wedge_Weld"
  1902. w4.Part0 = p4
  1903. 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)
  1904. w4.Part1 = p5
  1905. 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)
  1906. w5 = Instance.new("Weld", p5)
  1907. w5.Name = "Wedge_Weld"
  1908. w5.Part0 = p5
  1909. 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)
  1910. w5.Part1 = p6
  1911. 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)
  1912. w6 = Instance.new("Weld", p6)
  1913. w6.Name = "Part_Weld"
  1914. w6.Part0 = p6
  1915. 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)
  1916. w6.Part1 = p7
  1917. 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)
  1918. w7 = Instance.new("Weld", p7)
  1919. w7.Name = "Part_Weld"
  1920. w7.Part0 = p7
  1921. 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)
  1922. w7.Part1 = p8
  1923. 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)
  1924. w8 = Instance.new("Weld", p8)
  1925. w8.Name = "Part_Weld"
  1926. w8.Part0 = p8
  1927. 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)
  1928. w8.Part1 = p9
  1929. 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)
  1930. w9 = Instance.new("Weld", p9)
  1931. w9.Name = "Part_Weld"
  1932. w9.Part0 = p9
  1933. 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)
  1934. w9.Part1 = p10
  1935. 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)
  1936. w10 = Instance.new("Weld", p10)
  1937. w10.Name = "Part_Weld"
  1938. w10.Part0 = p10
  1939. 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)
  1940. w10.Part1 = p11
  1941. 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)
  1942. w11 = Instance.new("Weld", p11)
  1943. w11.Name = "Part_Weld"
  1944. w11.Part0 = p11
  1945. 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)
  1946. w11.Part1 = p12
  1947. 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)
  1948. w12 = Instance.new("Weld", p12)
  1949. w12.Name = "Part_Weld"
  1950. w12.Part0 = p12
  1951. 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)
  1952. w12.Part1 = p13
  1953. 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)
  1954. w13 = Instance.new("Weld", p13)
  1955. w13.Name = "Part_Weld"
  1956. w13.Part0 = p13
  1957. 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)
  1958. w13.Part1 = p14
  1959. 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)
  1960. w14 = Instance.new("Weld", p14)
  1961. w14.Name = "Part_Weld"
  1962. w14.Part0 = p14
  1963. 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)
  1964. w14.Part1 = p15
  1965. 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)
  1966. w15 = Instance.new("Weld", p15)
  1967. w15.Name = "Part_Weld"
  1968. w15.Part0 = p15
  1969. 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)
  1970. w15.Part1 = p16
  1971. 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)
  1972. w16 = Instance.new("Weld", p16)
  1973. w16.Name = "Part_Weld"
  1974. w16.Part0 = p16
  1975. 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)
  1976. w16.Part1 = p17
  1977. 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)
  1978. w17 = Instance.new("Weld", p17)
  1979. w17.Name = "Part_Weld"
  1980. w17.Part0 = p17
  1981. 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)
  1982. w17.Part1 = p18
  1983. 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)
  1984. w18 = Instance.new("Weld", p18)
  1985. w18.Name = "Part_Weld"
  1986. w18.Part0 = p18
  1987. 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)
  1988. w18.Part1 = p19
  1989. 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)
  1990. w19 = Instance.new("Weld", p19)
  1991. w19.Name = "Wedge_Weld"
  1992. w19.Part0 = p19
  1993. 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)
  1994. m.Parent = rarm
  1995. m:MakeJoints()
  1996. ----------------------------------------------------
  1997. local cor4 = Instance.new("Part", rarm.RightArm)
  1998. cor4.Name = "Thingy"
  1999. cor4.Locked = true
  2000. cor4.BottomSurface = 0
  2001. cor4.CanCollide = false
  2002. cor4.Size = Vector3.new(2, 1, 1)
  2003. cor4.Transparency = 1
  2004. cor4.TopSurface = 0
  2005. corw2 = Instance.new("Weld", cor4)
  2006. corw2.Part0 = rarm
  2007. corw2.Part1 = cor4
  2008. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2009. corw2.C1 = CFrame.new(0, 0, 0)
  2010. weld2 = Instance.new("Weld", rarm.RightArm)
  2011. weld2.Part0 = cor4
  2012. weld2.Part1 = p14
  2013. weld2.C0 = CFrame.new(0, 0, 0)
  2014. ----------------------------------------------------
  2015. local m = Instance.new("Model")
  2016. m.Name = "Torso"
  2017. p1 = Instance.new("Part", m)
  2018. p1.BrickColor = BrickColor.new("Really black")
  2019. p1.Material = Enum.Material.Neon
  2020. p1.FormFactor = Enum.FormFactor.Custom
  2021. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2022. 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)
  2023. p1.CanCollide = false
  2024. p1.Locked = true
  2025. p1.BottomSurface = Enum.SurfaceType.Smooth
  2026. p1.TopSurface = Enum.SurfaceType.Smooth
  2027. b1 = Instance.new("SpecialMesh", p1)
  2028. b1.MeshType = Enum.MeshType.Sphere
  2029. b1.Name = "Mesh"
  2030. p2 = Instance.new("Part", m)
  2031. p2.BrickColor = BrickColor.new("Really black")
  2032. p2.Material = Enum.Material.Neon
  2033. p2.FormFactor = Enum.FormFactor.Custom
  2034. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2035. 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)
  2036. p2.CanCollide = false
  2037. p2.Locked = true
  2038. p2.BottomSurface = Enum.SurfaceType.Smooth
  2039. p2.TopSurface = Enum.SurfaceType.Smooth
  2040. b2 = Instance.new("SpecialMesh", p2)
  2041. b2.MeshType = Enum.MeshType.Sphere
  2042. b2.Name = "Mesh"
  2043. p3 = Instance.new("Part", m)
  2044. p3.BrickColor = BrickColor.new("Bright blue")
  2045. p3.Material = Enum.Material.Neon
  2046. p3.FormFactor = Enum.FormFactor.Custom
  2047. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2048. 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)
  2049. p3.CanCollide = false
  2050. p3.Locked = true
  2051. p3.BottomSurface = Enum.SurfaceType.Smooth
  2052. p3.TopSurface = Enum.SurfaceType.Smooth
  2053. p4 = Instance.new("Part", m)
  2054. p4.BrickColor = BrickColor.new("Bright blue")
  2055. p4.Material = Enum.Material.Neon
  2056. p4.FormFactor = Enum.FormFactor.Custom
  2057. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2058. 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)
  2059. p4.CanCollide = false
  2060. p4.Locked = true
  2061. p4.BottomSurface = Enum.SurfaceType.Smooth
  2062. p4.TopSurface = Enum.SurfaceType.Smooth
  2063. p5 = Instance.new("Part", m)
  2064. p5.BrickColor = BrickColor.new("Bright blue")
  2065. p5.Material = Enum.Material.Neon
  2066. p5.FormFactor = Enum.FormFactor.Custom
  2067. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2068. 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)
  2069. p5.CanCollide = false
  2070. p5.Locked = true
  2071. p5.BottomSurface = Enum.SurfaceType.Smooth
  2072. p5.TopSurface = Enum.SurfaceType.Smooth
  2073. p6 = Instance.new("Part", m)
  2074. p6.BrickColor = BrickColor.new("Bright blue")
  2075. p6.Material = Enum.Material.Neon
  2076. p6.FormFactor = Enum.FormFactor.Custom
  2077. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2078. 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)
  2079. p6.CanCollide = false
  2080. p6.Locked = true
  2081. p6.BottomSurface = Enum.SurfaceType.Smooth
  2082. p6.TopSurface = Enum.SurfaceType.Smooth
  2083. p7 = Instance.new("Part", m)
  2084. p7.BrickColor = BrickColor.new("Really black")
  2085. p7.Material = Enum.Material.Neon
  2086. p7.FormFactor = Enum.FormFactor.Custom
  2087. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2088. 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)
  2089. p7.CanCollide = false
  2090. p7.Locked = true
  2091. p7.BottomSurface = Enum.SurfaceType.Smooth
  2092. p7.TopSurface = Enum.SurfaceType.Smooth
  2093. b3 = Instance.new("SpecialMesh", p7)
  2094. b3.MeshType = Enum.MeshType.Sphere
  2095. b3.Name = "Mesh"
  2096. p8 = Instance.new("Part", m)
  2097. p8.BrickColor = BrickColor.new("Really black")
  2098. p8.Material = Enum.Material.Neon
  2099. p8.FormFactor = Enum.FormFactor.Custom
  2100. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2101. 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)
  2102. p8.CanCollide = false
  2103. p8.Locked = true
  2104. p8.BottomSurface = Enum.SurfaceType.Smooth
  2105. p8.TopSurface = Enum.SurfaceType.Smooth
  2106. b4 = Instance.new("SpecialMesh", p8)
  2107. b4.MeshType = Enum.MeshType.Sphere
  2108. b4.Name = "Mesh"
  2109. p9 = Instance.new("Part", m)
  2110. p9.BrickColor = BrickColor.new("Really black")
  2111. p9.Material = Enum.Material.Neon
  2112. p9.FormFactor = Enum.FormFactor.Custom
  2113. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2114. 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)
  2115. p9.CanCollide = false
  2116. p9.Locked = true
  2117. p9.BottomSurface = Enum.SurfaceType.Smooth
  2118. p9.TopSurface = Enum.SurfaceType.Smooth
  2119. b5 = Instance.new("SpecialMesh", p9)
  2120. b5.MeshType = Enum.MeshType.Sphere
  2121. b5.Name = "Mesh"
  2122. p10 = Instance.new("Part", m)
  2123. p10.BrickColor = BrickColor.new("Bright blue")
  2124. p10.Material = Enum.Material.Neon
  2125. p10.FormFactor = Enum.FormFactor.Custom
  2126. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2127. 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)
  2128. p10.CanCollide = false
  2129. p10.Locked = true
  2130. p10.BottomSurface = Enum.SurfaceType.Smooth
  2131. p10.TopSurface = Enum.SurfaceType.Smooth
  2132. p11 = Instance.new("Part", m)
  2133. p11.BrickColor = BrickColor.new("Really black")
  2134. p11.Material = Enum.Material.Metal
  2135. p11.Name = "Main"
  2136. p11.FormFactor = Enum.FormFactor.Custom
  2137. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2138. 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)
  2139. p11.CanCollide = false
  2140. p11.Locked = true
  2141. p11.BottomSurface = Enum.SurfaceType.Smooth
  2142. p11.TopSurface = Enum.SurfaceType.Smooth
  2143. p12 = Instance.new("Part", m)
  2144. p12.BrickColor = BrickColor.new("Really black")
  2145. p12.Material = Enum.Material.Neon
  2146. p12.FormFactor = Enum.FormFactor.Custom
  2147. p12.Size = Vector3.new(3, 3, 2)
  2148. 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)
  2149. p12.CanCollide = false
  2150. p12.Locked = true
  2151. p12.BottomSurface = Enum.SurfaceType.Smooth
  2152. p12.TopSurface = Enum.SurfaceType.Smooth
  2153. b6 = Instance.new("SpecialMesh", p12)
  2154. b6.MeshType = Enum.MeshType.Sphere
  2155. b6.Name = "Mesh"
  2156. p13 = Instance.new("Part", m)
  2157. p13.BrickColor = BrickColor.new("Bright blue")
  2158. p13.Material = Enum.Material.Neon
  2159. p13.FormFactor = Enum.FormFactor.Custom
  2160. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2161. 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)
  2162. p13.CanCollide = false
  2163. p13.Locked = true
  2164. p13.BottomSurface = Enum.SurfaceType.Smooth
  2165. p13.TopSurface = Enum.SurfaceType.Smooth
  2166. p14 = Instance.new("Part", m)
  2167. p14.BrickColor = BrickColor.new("Bright blue")
  2168. p14.Material = Enum.Material.Neon
  2169. p14.FormFactor = Enum.FormFactor.Custom
  2170. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2171. 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)
  2172. p14.CanCollide = false
  2173. p14.Locked = true
  2174. p14.BottomSurface = Enum.SurfaceType.Smooth
  2175. p14.TopSurface = Enum.SurfaceType.Smooth
  2176. p15 = Instance.new("Part", m)
  2177. p15.BrickColor = BrickColor.new("Bright blue")
  2178. p15.Material = Enum.Material.Neon
  2179. p15.FormFactor = Enum.FormFactor.Custom
  2180. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2181. 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)
  2182. p15.CanCollide = false
  2183. p15.Locked = true
  2184. p15.BottomSurface = Enum.SurfaceType.Smooth
  2185. p15.TopSurface = Enum.SurfaceType.Smooth
  2186. p16 = Instance.new("Part", m)
  2187. p16.BrickColor = BrickColor.new("Bright blue")
  2188. p16.Material = Enum.Material.Neon
  2189. p16.FormFactor = Enum.FormFactor.Custom
  2190. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2191. 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)
  2192. p16.CanCollide = false
  2193. p16.Locked = true
  2194. p16.BottomSurface = Enum.SurfaceType.Smooth
  2195. p16.TopSurface = Enum.SurfaceType.Smooth
  2196. p17 = Instance.new("Part", m)
  2197. p17.BrickColor = BrickColor.new("Bright blue")
  2198. p17.Material = Enum.Material.Neon
  2199. p17.FormFactor = Enum.FormFactor.Custom
  2200. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2201. 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)
  2202. p17.CanCollide = false
  2203. p17.Locked = true
  2204. p17.BottomSurface = Enum.SurfaceType.Smooth
  2205. p17.TopSurface = Enum.SurfaceType.Smooth
  2206. p18 = Instance.new("Part", m)
  2207. p18.BrickColor = BrickColor.new("Bright blue")
  2208. p18.Material = Enum.Material.Neon
  2209. p18.FormFactor = Enum.FormFactor.Custom
  2210. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2211. 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)
  2212. p18.CanCollide = false
  2213. p18.Locked = true
  2214. p18.BottomSurface = Enum.SurfaceType.Smooth
  2215. p18.TopSurface = Enum.SurfaceType.Smooth
  2216. p19 = Instance.new("Part", m)
  2217. p19.BrickColor = BrickColor.new("Really black")
  2218. p19.Material = Enum.Material.Neon
  2219. p19.FormFactor = Enum.FormFactor.Custom
  2220. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2221. 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)
  2222. p19.CanCollide = false
  2223. p19.Locked = true
  2224. p19.BottomSurface = Enum.SurfaceType.Smooth
  2225. p19.TopSurface = Enum.SurfaceType.Smooth
  2226. b7 = Instance.new("SpecialMesh", p19)
  2227. b7.MeshType = Enum.MeshType.Sphere
  2228. b7.Name = "Mesh"
  2229. p20 = Instance.new("Part", m)
  2230. p20.BrickColor = BrickColor.new("Really black")
  2231. p20.Material = Enum.Material.Neon
  2232. p20.FormFactor = Enum.FormFactor.Custom
  2233. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2234. 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)
  2235. p20.CanCollide = false
  2236. p20.Locked = true
  2237. p20.BottomSurface = Enum.SurfaceType.Smooth
  2238. p20.TopSurface = Enum.SurfaceType.Smooth
  2239. b8 = Instance.new("SpecialMesh", p20)
  2240. b8.MeshType = Enum.MeshType.Sphere
  2241. b8.Name = "Mesh"
  2242. p21 = Instance.new("Part", m)
  2243. p21.BrickColor = BrickColor.new("Bright blue")
  2244. p21.Material = Enum.Material.Neon
  2245. p21.FormFactor = Enum.FormFactor.Custom
  2246. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2247. 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)
  2248. p21.CanCollide = false
  2249. p21.Locked = true
  2250. p21.BottomSurface = Enum.SurfaceType.Smooth
  2251. p21.TopSurface = Enum.SurfaceType.Smooth
  2252. p22 = Instance.new("Part", m)
  2253. p22.BrickColor = BrickColor.new("Really black")
  2254. p22.Material = Enum.Material.Neon
  2255. p22.FormFactor = Enum.FormFactor.Custom
  2256. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2257. 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)
  2258. p22.CanCollide = false
  2259. p22.Locked = true
  2260. p22.BottomSurface = Enum.SurfaceType.Smooth
  2261. p22.TopSurface = Enum.SurfaceType.Smooth
  2262. b9 = Instance.new("SpecialMesh", p22)
  2263. b9.MeshType = Enum.MeshType.Sphere
  2264. b9.Name = "Mesh"
  2265. w1 = Instance.new("Weld", p1)
  2266. w1.Name = "Part_Weld"
  2267. w1.Part0 = p1
  2268. 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)
  2269. w1.Part1 = p2
  2270. 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)
  2271. w2 = Instance.new("Weld", p2)
  2272. w2.Name = "Part_Weld"
  2273. w2.Part0 = p2
  2274. 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)
  2275. w2.Part1 = p3
  2276. 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)
  2277. w3 = Instance.new("Weld", p3)
  2278. w3.Name = "Part_Weld"
  2279. w3.Part0 = p3
  2280. 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)
  2281. w3.Part1 = p4
  2282. 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)
  2283. w4 = Instance.new("Weld", p4)
  2284. w4.Name = "Part_Weld"
  2285. w4.Part0 = p4
  2286. 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)
  2287. w4.Part1 = p5
  2288. 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)
  2289. w5 = Instance.new("Weld", p5)
  2290. w5.Name = "Part_Weld"
  2291. w5.Part0 = p5
  2292. 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)
  2293. w5.Part1 = p6
  2294. 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)
  2295. w6 = Instance.new("Weld", p6)
  2296. w6.Name = "Part_Weld"
  2297. w6.Part0 = p6
  2298. 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)
  2299. w6.Part1 = p7
  2300. 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)
  2301. w7 = Instance.new("Weld", p7)
  2302. w7.Name = "Part_Weld"
  2303. w7.Part0 = p7
  2304. 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)
  2305. w7.Part1 = p8
  2306. 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)
  2307. w8 = Instance.new("Weld", p8)
  2308. w8.Name = "Part_Weld"
  2309. w8.Part0 = p8
  2310. 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)
  2311. w8.Part1 = p9
  2312. 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)
  2313. w9 = Instance.new("Weld", p9)
  2314. w9.Name = "Part_Weld"
  2315. w9.Part0 = p9
  2316. 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)
  2317. w9.Part1 = p10
  2318. 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)
  2319. w10 = Instance.new("Weld", p10)
  2320. w10.Name = "Main_Weld"
  2321. w10.Part0 = p10
  2322. 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)
  2323. w10.Part1 = p11
  2324. 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)
  2325. w11 = Instance.new("Weld", p11)
  2326. w11.Name = "Part_Weld"
  2327. w11.Part0 = p11
  2328. 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)
  2329. w11.Part1 = p12
  2330. 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)
  2331. w12 = Instance.new("Weld", p12)
  2332. w12.Name = "Part_Weld"
  2333. w12.Part0 = p12
  2334. 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)
  2335. w12.Part1 = p13
  2336. 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)
  2337. w13 = Instance.new("Weld", p13)
  2338. w13.Name = "Part_Weld"
  2339. w13.Part0 = p13
  2340. 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)
  2341. w13.Part1 = p14
  2342. 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)
  2343. w14 = Instance.new("Weld", p14)
  2344. w14.Name = "Part_Weld"
  2345. w14.Part0 = p14
  2346. 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)
  2347. w14.Part1 = p15
  2348. 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)
  2349. w15 = Instance.new("Weld", p15)
  2350. w15.Name = "Part_Weld"
  2351. w15.Part0 = p15
  2352. 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)
  2353. w15.Part1 = p16
  2354. 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)
  2355. w16 = Instance.new("Weld", p16)
  2356. w16.Name = "Part_Weld"
  2357. w16.Part0 = p16
  2358. 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)
  2359. w16.Part1 = p17
  2360. 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)
  2361. w17 = Instance.new("Weld", p17)
  2362. w17.Name = "Part_Weld"
  2363. w17.Part0 = p17
  2364. 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)
  2365. w17.Part1 = p18
  2366. 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)
  2367. w18 = Instance.new("Weld", p18)
  2368. w18.Name = "Part_Weld"
  2369. w18.Part0 = p18
  2370. 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)
  2371. w18.Part1 = p19
  2372. 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)
  2373. w19 = Instance.new("Weld", p19)
  2374. w19.Name = "Part_Weld"
  2375. w19.Part0 = p19
  2376. 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)
  2377. w19.Part1 = p20
  2378. 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)
  2379. w20 = Instance.new("Weld", p20)
  2380. w20.Name = "Part_Weld"
  2381. w20.Part0 = p20
  2382. 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)
  2383. w20.Part1 = p21
  2384. 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)
  2385. w21 = Instance.new("Weld", p21)
  2386. w21.Name = "Part_Weld"
  2387. w21.Part0 = p21
  2388. 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)
  2389. w21.Part1 = p22
  2390. 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)
  2391. w22 = Instance.new("Weld", p22)
  2392. w22.Name = "Wedge_Weld"
  2393. w22.Part0 = p22
  2394. 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)
  2395. m.Parent = torso
  2396. m:MakeJoints()
  2397. ----------------------------------------------------
  2398. local cor5 = Instance.new("Part", torso.Torso)
  2399. cor5.Name = "Thingy"
  2400. cor5.Locked = true
  2401. cor5.BottomSurface = 0
  2402. cor5.CanCollide = false
  2403. cor5.Size = Vector3.new(2, 1, 1)
  2404. cor5.Transparency = 1
  2405. cor5.TopSurface = 0
  2406. corw2 = Instance.new("Weld", cor5)
  2407. corw2.Part0 = torso
  2408. corw2.Part1 = cor5
  2409. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2410. corw2.C1 = CFrame.new(0, 0, 0)
  2411. weld2 = Instance.new("Weld", torso.Torso)
  2412. weld2.Part0 = cor5
  2413. weld2.Part1 = p11
  2414. weld2.C0 = CFrame.new(0, 0, 0)
  2415. ----------------------------------------------------
  2416. local m = Instance.new("Model")
  2417. m.Name = "RightLeg"
  2418. p1 = Instance.new("Part", m)
  2419. p1.BrickColor = BrickColor.new("Really black")
  2420. p1.Material = Enum.Material.Neon
  2421. p1.FormFactor = Enum.FormFactor.Custom
  2422. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2423. 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)
  2424. p1.CanCollide = false
  2425. p1.Locked = true
  2426. p1.BottomSurface = Enum.SurfaceType.Smooth
  2427. p1.TopSurface = Enum.SurfaceType.Smooth
  2428. b1 = Instance.new("SpecialMesh", p1)
  2429. b1.MeshType = Enum.MeshType.Sphere
  2430. b1.Name = "Mesh"
  2431. p2 = Instance.new("Part", m)
  2432. p2.BrickColor = BrickColor.new("Really black")
  2433. p2.Material = Enum.Material.Neon
  2434. p2.FormFactor = Enum.FormFactor.Custom
  2435. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2436. 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)
  2437. p2.CanCollide = false
  2438. p2.Locked = true
  2439. p2.BottomSurface = Enum.SurfaceType.Smooth
  2440. p2.TopSurface = Enum.SurfaceType.Smooth
  2441. b2 = Instance.new("SpecialMesh", p2)
  2442. b2.MeshType = Enum.MeshType.Sphere
  2443. b2.Name = "Mesh"
  2444. p3 = Instance.new("Part", m)
  2445. p3.BrickColor = BrickColor.new("Bright blue")
  2446. p3.Material = Enum.Material.Neon
  2447. p3.FormFactor = Enum.FormFactor.Custom
  2448. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2449. 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)
  2450. p3.CanCollide = false
  2451. p3.Locked = true
  2452. p3.BottomSurface = Enum.SurfaceType.Smooth
  2453. p3.TopSurface = Enum.SurfaceType.Smooth
  2454. p4 = Instance.new("Part", m)
  2455. p4.BrickColor = BrickColor.new("Really black")
  2456. p4.Material = Enum.Material.Neon
  2457. p4.FormFactor = Enum.FormFactor.Custom
  2458. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2459. 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)
  2460. p4.CanCollide = false
  2461. p4.Locked = true
  2462. p4.BottomSurface = Enum.SurfaceType.Smooth
  2463. p4.TopSurface = Enum.SurfaceType.Smooth
  2464. b3 = Instance.new("SpecialMesh", p4)
  2465. b3.MeshType = Enum.MeshType.Sphere
  2466. b3.Name = "Mesh"
  2467. p5 = Instance.new("Part", m)
  2468. p5.BrickColor = BrickColor.new("Bright blue")
  2469. p5.Material = Enum.Material.Neon
  2470. p5.FormFactor = Enum.FormFactor.Custom
  2471. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2472. 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)
  2473. p5.CanCollide = false
  2474. p5.Locked = true
  2475. p5.BottomSurface = Enum.SurfaceType.Smooth
  2476. p5.TopSurface = Enum.SurfaceType.Smooth
  2477. p6 = Instance.new("Part", m)
  2478. p6.BrickColor = BrickColor.new("Bright blue")
  2479. p6.Material = Enum.Material.Neon
  2480. p6.FormFactor = Enum.FormFactor.Custom
  2481. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2482. 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)
  2483. p6.CanCollide = false
  2484. p6.Locked = true
  2485. p6.BottomSurface = Enum.SurfaceType.Smooth
  2486. p6.TopSurface = Enum.SurfaceType.Smooth
  2487. p7 = Instance.new("Part", m)
  2488. p7.BrickColor = BrickColor.new("Really black")
  2489. p7.Material = Enum.Material.Metal
  2490. p7.Name = "Main"
  2491. p7.FormFactor = Enum.FormFactor.Custom
  2492. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2493. 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)
  2494. p7.CanCollide = false
  2495. p7.Locked = true
  2496. p7.BottomSurface = Enum.SurfaceType.Smooth
  2497. p7.TopSurface = Enum.SurfaceType.Smooth
  2498. p8 = Instance.new("Part", m)
  2499. p8.BrickColor = BrickColor.new("Bright blue")
  2500. p8.Material = Enum.Material.Neon
  2501. p8.FormFactor = Enum.FormFactor.Custom
  2502. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2503. 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)
  2504. p8.CanCollide = false
  2505. p8.Locked = true
  2506. p8.BottomSurface = Enum.SurfaceType.Smooth
  2507. p8.TopSurface = Enum.SurfaceType.Smooth
  2508. p9 = Instance.new("WedgePart", m)
  2509. p9.BrickColor = BrickColor.new("Bright blue")
  2510. p9.Material = Enum.Material.Neon
  2511. p9.Name = "Wedge"
  2512. p9.FormFactor = Enum.FormFactor.Custom
  2513. p9.Size = Vector3.new(1, 1.19999981, 4)
  2514. 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)
  2515. p9.CanCollide = false
  2516. p9.Locked = true
  2517. p9.TopSurface = Enum.SurfaceType.Smooth
  2518. b4 = Instance.new("SpecialMesh", p9)
  2519. b4.MeshType = Enum.MeshType.Wedge
  2520. b4.Name = "Mesh"
  2521. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2522. p10 = Instance.new("Part", m)
  2523. p10.BrickColor = BrickColor.new("Really black")
  2524. p10.Material = Enum.Material.Neon
  2525. p10.FormFactor = Enum.FormFactor.Custom
  2526. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2527. 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)
  2528. p10.CanCollide = false
  2529. p10.Locked = true
  2530. p10.BottomSurface = Enum.SurfaceType.Smooth
  2531. p10.TopSurface = Enum.SurfaceType.Smooth
  2532. b5 = Instance.new("SpecialMesh", p10)
  2533. b5.MeshType = Enum.MeshType.Sphere
  2534. b5.Name = "Mesh"
  2535. p11 = Instance.new("Part", m)
  2536. p11.BrickColor = BrickColor.new("Really black")
  2537. p11.Material = Enum.Material.Neon
  2538. p11.FormFactor = Enum.FormFactor.Custom
  2539. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2540. 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)
  2541. p11.CanCollide = false
  2542. p11.Locked = true
  2543. p11.BottomSurface = Enum.SurfaceType.Smooth
  2544. p11.TopSurface = Enum.SurfaceType.Smooth
  2545. b6 = Instance.new("SpecialMesh", p11)
  2546. b6.MeshType = Enum.MeshType.Sphere
  2547. b6.Name = "Mesh"
  2548. p12 = Instance.new("Part", m)
  2549. p12.BrickColor = BrickColor.new("Bright blue")
  2550. p12.Material = Enum.Material.Neon
  2551. p12.FormFactor = Enum.FormFactor.Custom
  2552. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2553. 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)
  2554. p12.CanCollide = false
  2555. p12.Locked = true
  2556. p12.BottomSurface = Enum.SurfaceType.Smooth
  2557. p12.TopSurface = Enum.SurfaceType.Smooth
  2558. p13 = Instance.new("Part", m)
  2559. p13.BrickColor = BrickColor.new("Really black")
  2560. p13.Material = Enum.Material.Neon
  2561. p13.FormFactor = Enum.FormFactor.Custom
  2562. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2563. 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)
  2564. p13.CanCollide = false
  2565. p13.Locked = true
  2566. p13.BottomSurface = Enum.SurfaceType.Smooth
  2567. p13.TopSurface = Enum.SurfaceType.Smooth
  2568. b7 = Instance.new("SpecialMesh", p13)
  2569. b7.MeshType = Enum.MeshType.Sphere
  2570. b7.Name = "Mesh"
  2571. p14 = Instance.new("WedgePart", m)
  2572. p14.BrickColor = BrickColor.new("Bright blue")
  2573. p14.Material = Enum.Material.Neon
  2574. p14.Name = "Wedge"
  2575. p14.FormFactor = Enum.FormFactor.Custom
  2576. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2577. 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)
  2578. p14.CanCollide = false
  2579. p14.Locked = true
  2580. p14.TopSurface = Enum.SurfaceType.Smooth
  2581. b8 = Instance.new("SpecialMesh", p14)
  2582. b8.MeshType = Enum.MeshType.Wedge
  2583. b8.Name = "Mesh"
  2584. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2585. p15 = Instance.new("WedgePart", m)
  2586. p15.BrickColor = BrickColor.new("Bright blue")
  2587. p15.Material = Enum.Material.Neon
  2588. p15.Name = "Wedge"
  2589. p15.FormFactor = Enum.FormFactor.Custom
  2590. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2591. 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)
  2592. p15.CanCollide = false
  2593. p15.Locked = true
  2594. p15.TopSurface = Enum.SurfaceType.Smooth
  2595. b9 = Instance.new("SpecialMesh", p15)
  2596. b9.MeshType = Enum.MeshType.Wedge
  2597. b9.Name = "Mesh"
  2598. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2599. p16 = Instance.new("WedgePart", m)
  2600. p16.BrickColor = BrickColor.new("Bright blue")
  2601. p16.Material = Enum.Material.Neon
  2602. p16.Name = "Wedge"
  2603. p16.FormFactor = Enum.FormFactor.Custom
  2604. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2605. 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)
  2606. p16.CanCollide = false
  2607. p16.Locked = true
  2608. p16.TopSurface = Enum.SurfaceType.Smooth
  2609. b10 = Instance.new("SpecialMesh", p16)
  2610. b10.MeshType = Enum.MeshType.Wedge
  2611. b10.Name = "Mesh"
  2612. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2613. w1 = Instance.new("Weld", p1)
  2614. w1.Name = "Part_Weld"
  2615. w1.Part0 = p1
  2616. 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)
  2617. w1.Part1 = p2
  2618. 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)
  2619. w2 = Instance.new("Weld", p2)
  2620. w2.Name = "Part_Weld"
  2621. w2.Part0 = p2
  2622. 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)
  2623. w2.Part1 = p3
  2624. 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)
  2625. w3 = Instance.new("Weld", p3)
  2626. w3.Name = "Part_Weld"
  2627. w3.Part0 = p3
  2628. 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)
  2629. w3.Part1 = p4
  2630. 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)
  2631. w4 = Instance.new("Weld", p4)
  2632. w4.Name = "Part_Weld"
  2633. w4.Part0 = p4
  2634. 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)
  2635. w4.Part1 = p5
  2636. 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)
  2637. w5 = Instance.new("Weld", p5)
  2638. w5.Name = "Part_Weld"
  2639. w5.Part0 = p5
  2640. 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)
  2641. w5.Part1 = p6
  2642. 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)
  2643. w6 = Instance.new("Weld", p6)
  2644. w6.Name = "Part_Weld"
  2645. w6.Part0 = p6
  2646. 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)
  2647. w6.Part1 = p7
  2648. 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)
  2649. w7 = Instance.new("Weld", p7)
  2650. w7.Name = "Part_Weld"
  2651. w7.Part0 = p7
  2652. 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)
  2653. w7.Part1 = p8
  2654. 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)
  2655. w8 = Instance.new("Weld", p8)
  2656. w8.Name = "Wedge_Weld"
  2657. w8.Part0 = p8
  2658. 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)
  2659. w8.Part1 = p9
  2660. 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)
  2661. w9 = Instance.new("Weld", p9)
  2662. w9.Name = "Part_Weld"
  2663. w9.Part0 = p9
  2664. 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)
  2665. w9.Part1 = p10
  2666. 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)
  2667. w10 = Instance.new("Weld", p10)
  2668. w10.Name = "Part_Weld"
  2669. w10.Part0 = p10
  2670. 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)
  2671. w10.Part1 = p11
  2672. 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)
  2673. w11 = Instance.new("Weld", p11)
  2674. w11.Name = "Part_Weld"
  2675. w11.Part0 = p11
  2676. 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)
  2677. w11.Part1 = p12
  2678. 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)
  2679. w12 = Instance.new("Weld", p12)
  2680. w12.Name = "Part_Weld"
  2681. w12.Part0 = p12
  2682. 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)
  2683. w12.Part1 = p13
  2684. 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)
  2685. w13 = Instance.new("Weld", p13)
  2686. w13.Name = "Wedge_Weld"
  2687. w13.Part0 = p13
  2688. 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)
  2689. w13.Part1 = p14
  2690. 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)
  2691. w14 = Instance.new("Weld", p14)
  2692. w14.Name = "Wedge_Weld"
  2693. w14.Part0 = p14
  2694. 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)
  2695. w14.Part1 = p15
  2696. 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)
  2697. w15 = Instance.new("Weld", p15)
  2698. w15.Name = "Wedge_Weld"
  2699. w15.Part0 = p15
  2700. 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)
  2701. w15.Part1 = p16
  2702. 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)
  2703. m.Parent = rleg
  2704. m:MakeJoints()
  2705. ----------------------------------------------------
  2706. local cor6 = Instance.new("Part", rleg.RightLeg)
  2707. cor6.Name = "Thingy"
  2708. cor6.Locked = true
  2709. cor6.BottomSurface = 0
  2710. cor6.CanCollide = false
  2711. cor6.Size = Vector3.new(2, 1, 1)
  2712. cor6.Transparency = 1
  2713. cor6.TopSurface = 0
  2714. corw2 = Instance.new("Weld", cor6)
  2715. corw2.Part0 = rleg
  2716. corw2.Part1 = cor6
  2717. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2718. corw2.C1 = CFrame.new(0, 0, 0)
  2719. weld2 = Instance.new("Weld", rleg.RightLeg)
  2720. weld2.Part0 = cor6
  2721. weld2.Part1 = p7
  2722. weld2.C0 = CFrame.new(0, 0, 0)
  2723. ----------------------------------------------------
  2724. local m = Instance.new("Model")
  2725. m.Name = "LeftLeg"
  2726. p1 = Instance.new("WedgePart", m)
  2727. p1.BrickColor = BrickColor.new("Bright blue")
  2728. p1.Material = Enum.Material.Neon
  2729. p1.Name = "Wedge"
  2730. p1.FormFactor = Enum.FormFactor.Custom
  2731. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2732. 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)
  2733. p1.CanCollide = false
  2734. p1.Locked = true
  2735. p1.TopSurface = Enum.SurfaceType.Smooth
  2736. b1 = Instance.new("SpecialMesh", p1)
  2737. b1.MeshType = Enum.MeshType.Wedge
  2738. b1.Name = "Mesh"
  2739. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2740. p2 = Instance.new("WedgePart", m)
  2741. p2.BrickColor = BrickColor.new("Bright blue")
  2742. p2.Material = Enum.Material.Neon
  2743. p2.Name = "Wedge"
  2744. p2.FormFactor = Enum.FormFactor.Custom
  2745. p2.Size = Vector3.new(1, 1.19999981, 4)
  2746. 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)
  2747. p2.CanCollide = false
  2748. p2.Locked = true
  2749. p2.TopSurface = Enum.SurfaceType.Smooth
  2750. b2 = Instance.new("SpecialMesh", p2)
  2751. b2.MeshType = Enum.MeshType.Wedge
  2752. b2.Name = "Mesh"
  2753. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2754. p3 = Instance.new("Part", m)
  2755. p3.BrickColor = BrickColor.new("Really black")
  2756. p3.Material = Enum.Material.Metal
  2757. p3.Name = "Main"
  2758. p3.FormFactor = Enum.FormFactor.Custom
  2759. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2760. 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)
  2761. p3.CanCollide = false
  2762. p3.Locked = true
  2763. p3.BottomSurface = Enum.SurfaceType.Smooth
  2764. p3.TopSurface = Enum.SurfaceType.Smooth
  2765. p4 = Instance.new("Part", m)
  2766. p4.BrickColor = BrickColor.new("Really black")
  2767. p4.Material = Enum.Material.Neon
  2768. p4.FormFactor = Enum.FormFactor.Custom
  2769. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2770. 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)
  2771. p4.CanCollide = false
  2772. p4.Locked = true
  2773. p4.BottomSurface = Enum.SurfaceType.Smooth
  2774. p4.TopSurface = Enum.SurfaceType.Smooth
  2775. b3 = Instance.new("SpecialMesh", p4)
  2776. b3.MeshType = Enum.MeshType.Sphere
  2777. b3.Name = "Mesh"
  2778. p5 = Instance.new("WedgePart", m)
  2779. p5.BrickColor = BrickColor.new("Bright blue")
  2780. p5.Material = Enum.Material.Neon
  2781. p5.Name = "Wedge"
  2782. p5.FormFactor = Enum.FormFactor.Custom
  2783. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2784. 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)
  2785. p5.CanCollide = false
  2786. p5.Locked = true
  2787. p5.TopSurface = Enum.SurfaceType.Smooth
  2788. b4 = Instance.new("SpecialMesh", p5)
  2789. b4.MeshType = Enum.MeshType.Wedge
  2790. b4.Name = "Mesh"
  2791. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2792. p6 = Instance.new("Part", m)
  2793. p6.BrickColor = BrickColor.new("Bright blue")
  2794. p6.Material = Enum.Material.Neon
  2795. p6.FormFactor = Enum.FormFactor.Custom
  2796. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2797. 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)
  2798. p6.CanCollide = false
  2799. p6.Locked = true
  2800. p6.BottomSurface = Enum.SurfaceType.Smooth
  2801. p6.TopSurface = Enum.SurfaceType.Smooth
  2802. p7 = Instance.new("Part", m)
  2803. p7.BrickColor = BrickColor.new("Bright blue")
  2804. p7.Material = Enum.Material.Neon
  2805. p7.FormFactor = Enum.FormFactor.Custom
  2806. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2807. 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)
  2808. p7.CanCollide = false
  2809. p7.Locked = true
  2810. p7.BottomSurface = Enum.SurfaceType.Smooth
  2811. p7.TopSurface = Enum.SurfaceType.Smooth
  2812. p8 = Instance.new("Part", m)
  2813. p8.BrickColor = BrickColor.new("Really black")
  2814. p8.Material = Enum.Material.Neon
  2815. p8.FormFactor = Enum.FormFactor.Custom
  2816. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2817. 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)
  2818. p8.CanCollide = false
  2819. p8.Locked = true
  2820. p8.BottomSurface = Enum.SurfaceType.Smooth
  2821. p8.TopSurface = Enum.SurfaceType.Smooth
  2822. b5 = Instance.new("SpecialMesh", p8)
  2823. b5.MeshType = Enum.MeshType.Sphere
  2824. b5.Name = "Mesh"
  2825. p9 = Instance.new("Part", m)
  2826. p9.BrickColor = BrickColor.new("Really black")
  2827. p9.Material = Enum.Material.Neon
  2828. p9.FormFactor = Enum.FormFactor.Custom
  2829. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2830. 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)
  2831. p9.CanCollide = false
  2832. p9.Locked = true
  2833. p9.BottomSurface = Enum.SurfaceType.Smooth
  2834. p9.TopSurface = Enum.SurfaceType.Smooth
  2835. b6 = Instance.new("SpecialMesh", p9)
  2836. b6.MeshType = Enum.MeshType.Sphere
  2837. b6.Name = "Mesh"
  2838. p10 = Instance.new("Part", m)
  2839. p10.BrickColor = BrickColor.new("Bright blue")
  2840. p10.Material = Enum.Material.Neon
  2841. p10.FormFactor = Enum.FormFactor.Custom
  2842. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2843. 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)
  2844. p10.CanCollide = false
  2845. p10.Locked = true
  2846. p10.BottomSurface = Enum.SurfaceType.Smooth
  2847. p10.TopSurface = Enum.SurfaceType.Smooth
  2848. p11 = Instance.new("Part", m)
  2849. p11.BrickColor = BrickColor.new("Bright blue")
  2850. p11.Material = Enum.Material.Neon
  2851. p11.FormFactor = Enum.FormFactor.Custom
  2852. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2853. 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)
  2854. p11.CanCollide = false
  2855. p11.Locked = true
  2856. p11.BottomSurface = Enum.SurfaceType.Smooth
  2857. p11.TopSurface = Enum.SurfaceType.Smooth
  2858. p12 = Instance.new("WedgePart", m)
  2859. p12.BrickColor = BrickColor.new("Bright blue")
  2860. p12.Material = Enum.Material.Neon
  2861. p12.Name = "Wedge"
  2862. p12.FormFactor = Enum.FormFactor.Custom
  2863. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2864. 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)
  2865. p12.CanCollide = false
  2866. p12.Locked = true
  2867. p12.TopSurface = Enum.SurfaceType.Smooth
  2868. b7 = Instance.new("SpecialMesh", p12)
  2869. b7.MeshType = Enum.MeshType.Wedge
  2870. b7.Name = "Mesh"
  2871. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2872. p13 = Instance.new("Part", m)
  2873. p13.BrickColor = BrickColor.new("Really black")
  2874. p13.Material = Enum.Material.Neon
  2875. p13.FormFactor = Enum.FormFactor.Custom
  2876. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2877. 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)
  2878. p13.CanCollide = false
  2879. p13.Locked = true
  2880. p13.BottomSurface = Enum.SurfaceType.Smooth
  2881. p13.TopSurface = Enum.SurfaceType.Smooth
  2882. b8 = Instance.new("SpecialMesh", p13)
  2883. b8.MeshType = Enum.MeshType.Sphere
  2884. b8.Name = "Mesh"
  2885. p14 = Instance.new("Part", m)
  2886. p14.BrickColor = BrickColor.new("Really black")
  2887. p14.Material = Enum.Material.Neon
  2888. p14.FormFactor = Enum.FormFactor.Custom
  2889. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2890. 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)
  2891. p14.CanCollide = false
  2892. p14.Locked = true
  2893. p14.BottomSurface = Enum.SurfaceType.Smooth
  2894. p14.TopSurface = Enum.SurfaceType.Smooth
  2895. b9 = Instance.new("SpecialMesh", p14)
  2896. b9.MeshType = Enum.MeshType.Sphere
  2897. b9.Name = "Mesh"
  2898. w1 = Instance.new("Weld", p1)
  2899. w1.Name = "Wedge_Weld"
  2900. w1.Part0 = p1
  2901. 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)
  2902. w1.Part1 = p2
  2903. 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)
  2904. w2 = Instance.new("Weld", p2)
  2905. w2.Name = "Part_Weld"
  2906. w2.Part0 = p2
  2907. 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)
  2908. w2.Part1 = p3
  2909. 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)
  2910. w3 = Instance.new("Weld", p3)
  2911. w3.Name = "Part_Weld"
  2912. w3.Part0 = p3
  2913. 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)
  2914. w3.Part1 = p4
  2915. 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)
  2916. w4 = Instance.new("Weld", p4)
  2917. w4.Name = "Wedge_Weld"
  2918. w4.Part0 = p4
  2919. 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)
  2920. w4.Part1 = p5
  2921. 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)
  2922. w5 = Instance.new("Weld", p5)
  2923. w5.Name = "Part_Weld"
  2924. w5.Part0 = p5
  2925. 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)
  2926. w5.Part1 = p6
  2927. 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)
  2928. w6 = Instance.new("Weld", p6)
  2929. w6.Name = "Part_Weld"
  2930. w6.Part0 = p6
  2931. 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)
  2932. w6.Part1 = p7
  2933. 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)
  2934. w7 = Instance.new("Weld", p7)
  2935. w7.Name = "Part_Weld"
  2936. w7.Part0 = p7
  2937. 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)
  2938. w7.Part1 = p8
  2939. 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)
  2940. w8 = Instance.new("Weld", p8)
  2941. w8.Name = "Part_Weld"
  2942. w8.Part0 = p8
  2943. 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)
  2944. w8.Part1 = p9
  2945. 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)
  2946. w9 = Instance.new("Weld", p9)
  2947. w9.Name = "Part_Weld"
  2948. w9.Part0 = p9
  2949. 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)
  2950. w9.Part1 = p10
  2951. 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)
  2952. w10 = Instance.new("Weld", p10)
  2953. w10.Name = "Part_Weld"
  2954. w10.Part0 = p10
  2955. 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)
  2956. w10.Part1 = p11
  2957. 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)
  2958. w11 = Instance.new("Weld", p11)
  2959. w11.Name = "Wedge_Weld"
  2960. w11.Part0 = p11
  2961. 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)
  2962. w11.Part1 = p12
  2963. 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)
  2964. w12 = Instance.new("Weld", p12)
  2965. w12.Name = "Part_Weld"
  2966. w12.Part0 = p12
  2967. 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)
  2968. w12.Part1 = p13
  2969. 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)
  2970. w13 = Instance.new("Weld", p13)
  2971. w13.Name = "Part_Weld"
  2972. w13.Part0 = p13
  2973. 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)
  2974. w13.Part1 = p14
  2975. 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)
  2976. w14 = Instance.new("Weld", p14)
  2977. w14.Name = "Wedge_Weld"
  2978. w14.Part0 = p14
  2979. 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)
  2980. m.Parent = lleg
  2981. m:MakeJoints()
  2982. ----------------------------------------------------
  2983. local cor7 = Instance.new("Part", lleg.LeftLeg)
  2984. cor7.Name = "Thingy"
  2985. cor7.Locked = true
  2986. cor7.BottomSurface = 0
  2987. cor7.CanCollide = false
  2988. cor7.Size = Vector3.new(2, 1, 1)
  2989. cor7.Transparency = 1
  2990. cor7.TopSurface = 0
  2991. corw2 = Instance.new("Weld", cor7)
  2992. corw2.Part0 = lleg
  2993. corw2.Part1 = cor7
  2994. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2995. corw2.C1 = CFrame.new(0, 0, 0)
  2996. weld2 = Instance.new("Weld", lleg.LeftLeg)
  2997. weld2.Part0 = cor7
  2998. weld2.Part1 = p3
  2999. weld2.C0 = CFrame.new(0, 0, 0)
  3000. ----------------------------------------------------
  3001. function weld5(part0, part1, c0, c1)
  3002. weeld=Instance.new("Weld", part0)
  3003. weeld.Part0=part0
  3004. weeld.Part1=part1
  3005. weeld.C0=c0
  3006. weeld.C1=c1
  3007. return weeld
  3008. end
  3009. ----------------------------------------------------
  3010. function newRay(start,face,range,wat)
  3011. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3012. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3013. return rey,hit,pos
  3014. end
  3015. ----------------------------------------------------
  3016. mod5 = Instance.new("Model",char)
  3017.  
  3018. function FindNearestTorso(Position,Distance,SinglePlayer)
  3019. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3020. local List = {}
  3021. for i,v in pairs(workspace:GetChildren())do
  3022. if v:IsA("Model")then
  3023. if v:findFirstChild("Torso")then
  3024. if v ~= char then
  3025. if(v.Torso.Position -Position).magnitude <= Distance then
  3026. table.insert(List,v)
  3027. end
  3028. end
  3029. end
  3030. end
  3031. end
  3032. return List
  3033. end
  3034.  
  3035. function Landing()
  3036. part=Instance.new('Part',mod5)
  3037. part.Anchored=true
  3038. part.CanCollide=false
  3039. part.FormFactor='Custom'
  3040. part.Size=Vector3.new(.2,.2,.2)
  3041. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3042. part.Transparency=.7
  3043. part.BrickColor=BrickColor.new('Really black')
  3044. part2=part:clone()
  3045. part2.Parent = mod5
  3046. part2.BrickColor=BrickColor.new('Bright blue')
  3047. mesh=Instance.new('SpecialMesh',part)
  3048. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3049. mesh.Scale=Vector3.new(10,5,10)
  3050. mesh2=mesh:clone()
  3051. mesh2.Parent=part2
  3052. mesh2.Scale=Vector3.new(12, 6, 12)
  3053.  
  3054. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3055. if v:FindFirstChild('Humanoid') then
  3056. v.Humanoid:TakeDamage(math.random(20,30))
  3057. v.Humanoid.PlatformStand = true
  3058. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3059. end
  3060. end
  3061.  
  3062. coroutine.resume(coroutine.create(function()
  3063. for i=0,3.8,0.05 do
  3064. wait()
  3065. part.CFrame=part.CFrame
  3066. part.Transparency=i
  3067. part2.CFrame=part2.CFrame
  3068. part2.Transparency=i
  3069. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3070. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3071. end
  3072. part.Parent = nil
  3073. end))
  3074. end
  3075. ----------------------------------------------------
  3076. mod4 = Instance.new("Model",char)
  3077.  
  3078. ptez = {0.7, 0.8, 0.9, 1}
  3079.  
  3080. function FindNearestTorso(Position,Distance,SinglePlayer)
  3081. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3082. local List = {}
  3083. for i,v in pairs(workspace:GetChildren())do
  3084. if v:IsA("Model")then
  3085. if v:findFirstChild("Torso")then
  3086. if v ~= char then
  3087. if(v.Torso.Position -Position).magnitude <= Distance then
  3088. table.insert(List,v)
  3089. end
  3090. end
  3091. end
  3092. end
  3093. end
  3094. return List
  3095. end
  3096.  
  3097. function GroundPound()
  3098. part=Instance.new('Part',mod4)
  3099. part.Anchored=true
  3100. part.CanCollide=false
  3101. part.FormFactor='Custom'
  3102. part.Size=Vector3.new(.2,.2,.2)
  3103. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3104. part.Transparency=.7
  3105. part.BrickColor=BrickColor.new('Really black')
  3106. mesh=Instance.new('SpecialMesh',part)
  3107. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3108. mesh.Scale=Vector3.new(3,3,3)
  3109. part2=Instance.new('Part',mod4)
  3110. part2.Anchored=true
  3111. part2.CanCollide=false
  3112. part2.FormFactor='Custom'
  3113. part2.Size=Vector3.new(.2,.2,.2)
  3114. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3115. part2.Transparency=.7
  3116. part2.BrickColor=BrickColor.new('Really red')
  3117. mesh2=Instance.new('SpecialMesh',part2)
  3118. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3119. mesh2.Scale=Vector3.new(3,1.5,3)
  3120. x = Instance.new("Sound",char)
  3121. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3122. x.Pitch = ptez[math.random(1,#ptez)]
  3123. x.Volume = 1
  3124. wait(.1)
  3125. x:Play()
  3126. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3127. if v:FindFirstChild('Humanoid') then
  3128. v.Humanoid:TakeDamage(math.random(8,15))
  3129. end
  3130. end
  3131. coroutine.resume(coroutine.create(function()
  3132. for i=0,0.62,0.13 do
  3133. wait()
  3134. part.CFrame=part.CFrame
  3135. part.Transparency=i
  3136. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3137. part2.CFrame=part2.CFrame
  3138. part2.Transparency=i
  3139. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3140. end
  3141. part.Parent=nil
  3142. part2.Parent=nil
  3143. x:Destroy()
  3144. end))
  3145. end
  3146. ----------------------------------------------------
  3147. mod=Instance.new('Model',char)
  3148.  
  3149. function charge()
  3150. hed.Velocity=hed.CFrame.lookVector*200
  3151. part=Instance.new('Part',mod)
  3152. part.Anchored=true
  3153. part.CanCollide=false
  3154. part.FormFactor='Custom'
  3155. part.Size=Vector3.new(.2,.2,.2)
  3156. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3157. part.Transparency=.7
  3158. part.BrickColor=BrickColor.new('Black')
  3159. mesh=Instance.new('SpecialMesh',part)
  3160. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3161. mesh.Scale=Vector3.new(10,5,10)
  3162. part2=part:clone()
  3163. part2.Parent=mod
  3164. part2.BrickColor=BrickColor.new('Bright red')
  3165. mesh2=mesh:clone()
  3166. mesh2.Parent=part2
  3167. mesh2.Scale=Vector3.new(20,10,20)
  3168. part3=part2:clone()
  3169. part3.Parent = mod
  3170. part3.BrickColor=BrickColor.new('Really black')
  3171. mesh3=mesh2:clone()
  3172. mesh2.Parent=part3
  3173. mesh3.Scale=Vector3.new(30,15,30)
  3174. coroutine.resume(coroutine.create(function()
  3175. for i=0,1,0.1 do
  3176. wait()
  3177. part.CFrame=part.CFrame
  3178. part.Transparency=i
  3179. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3180. part2.CFrame=part2.CFrame
  3181. part2.Transparency=i
  3182. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3183. part3.CFrame=part3.CFrame
  3184. part3.Transparency=i
  3185. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3186. end
  3187. part.Parent=nil
  3188. part2.Parent=nil
  3189. part3.Parent = nil
  3190. end))
  3191. end
  3192. ----------------------------------------------------
  3193. function FindNearestTorso(Position,Distance,SinglePlayer)
  3194. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3195. local List = {}
  3196. for i,v in pairs(workspace:GetChildren())do
  3197. if v:IsA("Model")then
  3198. if v:findFirstChild("Torso")then
  3199. if v ~= char then
  3200. if(v.Torso.Position -Position).magnitude <= Distance then
  3201. table.insert(List,v)
  3202. end
  3203. end
  3204. end
  3205. end
  3206. end
  3207. return List
  3208. end
  3209.  
  3210. mod3 = Instance.new("Model",rleg)
  3211.  
  3212. function Stomp()
  3213. part=Instance.new('Part',mod3)
  3214. part.Anchored=true
  3215. part.CanCollide=false
  3216. part.FormFactor='Custom'
  3217. part.Size=Vector3.new(.2,.2,.2)
  3218. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3219. part.Transparency=.7
  3220. part.BrickColor=BrickColor.new('Bright green')
  3221. mesh=Instance.new('SpecialMesh',part)
  3222. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3223. mesh.Scale=Vector3.new(25,25,25)
  3224. part2=part:clone()
  3225. part2.Parent=mod3
  3226. part2.BrickColor=BrickColor.new('Bright green')
  3227. mesh2=mesh:clone()
  3228. mesh2.Parent=part2
  3229. mesh2.Scale=Vector3.new(15,15,15)
  3230. part3=part:clone()
  3231. part3.Parent=mod3
  3232. part3.TopSurface=0
  3233. part3.BottomSurface=0
  3234. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3235. mesh3=Instance.new('SpecialMesh',part3)
  3236. mesh3.MeshType = 3
  3237. mesh3.Scale=Vector3.new(12,12,12)
  3238. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3239. if v:FindFirstChild('Humanoid') then
  3240. v.Humanoid:TakeDamage(math.random(20,60))
  3241. v.Humanoid.PlatformStand = true
  3242. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3243. end
  3244. end
  3245. coroutine.resume(coroutine.create(function()
  3246. for i=0,3.8,0.05 do
  3247. wait()
  3248. part.CFrame=part.CFrame
  3249. part.Transparency=i
  3250. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3251. part2.CFrame=part2.CFrame
  3252. part2.Transparency=i
  3253. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3254. part3.CFrame=part3.CFrame
  3255. part3.Transparency=i
  3256. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3257. end
  3258. end))
  3259. end
  3260. ----------------------------------------------------
  3261.  
  3262. local acos = math.acos
  3263. local sqrt = math.sqrt
  3264. local Vec3 = Vector3.new
  3265. local fromAxisAngle = CFrame.fromAxisAngle
  3266.  
  3267. local function toAxisAngle(CFr)
  3268. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3269. local Angle = math.acos((R00+R11+R22-1)/2)
  3270. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3271. A = A == 0 and 0.00001 or A
  3272. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3273. B = B == 0 and 0.00001 or B
  3274. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3275. C = C == 0 and 0.00001 or C
  3276. local x = (R21-R12)/sqrt(A)
  3277. local y = (R02-R20)/sqrt(B)
  3278. local z = (R10-R01)/sqrt(C)
  3279. return Vec3(x,y,z),Angle
  3280. end
  3281.  
  3282. function ApplyTrig(Num,Func)
  3283. local Min,Max = Func(0),Func(1)
  3284. local i = Func(Num)
  3285. return (i-Min)/(Max-Min)
  3286. --[[if Func == "sin" then
  3287. return (math.sin((1-Num)*math.pi)+1)/2
  3288. elseif Func == "cos" then
  3289. return (math.cos((1-Num)*math.pi)+1)/2
  3290. end]]
  3291. end
  3292.  
  3293. function LerpCFrame(CFrame1,CFrame2,Num)
  3294. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3295. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3296. end
  3297.  
  3298. function Crater(Torso,Radius)
  3299. Spawn(function()
  3300. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3301. local Ignore = {}
  3302. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3303. if v.Character ~= nil then
  3304. Ignore[#Ignore+1] = v.Character
  3305. end
  3306. end
  3307. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3308. if Hit == nil then return end
  3309. local Parts = {}
  3310. for i = 1,360,10 do
  3311. local P = Instance.new("Part",Torso.Parent)
  3312. P.Anchored = true
  3313. P.FormFactor = "Custom"
  3314. P.BrickColor = Hit.BrickColor
  3315. P.Material = Hit.Material
  3316. P.TopSurface = "Smooth"
  3317. P.BottomSurface = "Smooth"
  3318. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3319. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  3320. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  3321. if math.random(0,5) == 0 then -- rubble
  3322. local P = Instance.new("Part",Torso.Parent)
  3323. P.Anchored = true
  3324. P.FormFactor = "Custom"
  3325. P.BrickColor = Hit.BrickColor
  3326. P.Material = Hit.Material
  3327. P.TopSurface = "Smooth"
  3328. P.BottomSurface = "Smooth"
  3329. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3330. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  3331. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  3332. end
  3333. end
  3334. for i = 0,1,0.05 do
  3335. for i2,v in pairs(Parts) do
  3336. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3337. end
  3338. wait(0.02)
  3339. end
  3340. for i,v in pairs(Parts) do
  3341. if v[1].Size.X > 2.1 then
  3342. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3343. end
  3344. v[1].Anchored = false
  3345. end
  3346. for i = 0,1,0.05 do
  3347. for i2,v in pairs(Parts) do
  3348. v[1].Transparency = i
  3349. if i == 1 then
  3350. v[1]:Destroy()
  3351. elseif i >= 0.25 then
  3352. v[1].CanCollide = false
  3353. end
  3354. end
  3355. wait(0.02)
  3356. end
  3357. Parts = nil
  3358. end)
  3359. end
  3360.  
  3361. ----------------------------------------------------
  3362. mouse.KeyDown:connect(function(key)
  3363. if key == "r" then
  3364. larm.BrickColor = BrickColor.new("Bright red")
  3365. rarm.BrickColor = BrickColor.new("Bright red")
  3366. if Debounces.CanAttack == true then
  3367. Debounces.CanAttack = false
  3368. Debounces.on = true
  3369. Debounces.NoIdl = true
  3370. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3371. hit = ht.Parent
  3372. if ht and hit:IsA("Model") then
  3373. if hit:FindFirstChild("Humanoid") then
  3374. if hit.Name ~= p.Name then
  3375. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3376. Debounces.Slashed = true]]--
  3377. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3378. wait(1)
  3379. --Debounces.Slashed = false
  3380. --end
  3381. end
  3382. end
  3383. elseif ht and hit:IsA("Hat") then
  3384. if hit.Parent.Name ~= p.Name then
  3385. if hit.Parent:FindFirstChild("Humanoid") then
  3386. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3387. Debounces.Slashed = true]]--
  3388. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3389. wait(1)
  3390. --Debounces.Slashed = false
  3391. end
  3392. end
  3393. end
  3394. end)
  3395. q = Instance.new("Sound",hed)
  3396. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3397. q.Pitch = 0.85
  3398. q.Looped = false
  3399. q1 = Instance.new("Sound",hed)
  3400. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3401. q1.Pitch = 0.85
  3402. q1.Looped = false
  3403. q:Play()
  3404. q1:Play()
  3405. for i = 1,20 do
  3406. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3407. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3408. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3409. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3410. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3411. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3412. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.25)
  3413. if Debounces.on == false then break end
  3414. rs:wait(.6)
  3415. end
  3416. n = Instance.new("Sound",hed)
  3417. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3418. n.Pitch = 0.94
  3419. n.Looped = false
  3420. n1 = Instance.new("Sound",hed)
  3421. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3422. n1.Pitch = 0.94
  3423. n1.Looped = false
  3424. n:Play()
  3425. n1:Play()
  3426. b = Instance.new("Sound",hed)
  3427. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3428. b.Pitch = 0.94
  3429. b.Looped = false
  3430. b1 = Instance.new("Sound",hed)
  3431. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3432. b1.Pitch = 0.94
  3433. b1.Looped = false
  3434. b:Play()
  3435. b1:Play()
  3436. for i = 1,26 do
  3437. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.25)
  3438. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.25)
  3439. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
  3440. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3443. 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)), 0.25)
  3444. if Debounces.on == false then break end
  3445. rs:wait(1)
  3446. end
  3447. wait(.5)
  3448. to:disconnect()
  3449. q:Destroy()
  3450. q1:Destroy()
  3451. n:Destroy()
  3452. n1:Destroy()
  3453. larm.BrickColor = BrickColor.new("Really black")
  3454. rarm.BrickColor = BrickColor.new("Really black")
  3455. if Debounces.CanAttack == false then
  3456. Debounces.CanAttack = true
  3457. Debounces.on = false
  3458. Debounces.NoIdl = false
  3459. end
  3460. end
  3461. end
  3462. end)
  3463. ----------------------------------------------------
  3464. mouse.KeyDown:connect(function(key)
  3465. if key == "q" then
  3466. larm.BrickColor = BrickColor.new("Bright red")
  3467. rarm.BrickColor = BrickColor.new("Bright red")
  3468. if Debounces.CanAttack == true then
  3469. Debounces.CanAttack = false
  3470. Debounces.on = true
  3471. Debounces.NoIdl = true
  3472. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3473. hit = ht.Parent
  3474. if ht and hit:IsA("Model") then
  3475. if hit:FindFirstChild("Humanoid") then
  3476. if hit.Name ~= p.Name then
  3477. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3478. Debounces.Slashed = true]]--
  3479. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3480. wait(1)
  3481. --Debounces.Slashed = false
  3482. --end
  3483. end
  3484. end
  3485. elseif ht and hit:IsA("Hat") then
  3486. if hit.Parent.Name ~= p.Name then
  3487. if hit.Parent:FindFirstChild("Humanoid") then
  3488. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3489. Debounces.Slashed = true]]--
  3490. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3491. wait(1)
  3492. --Debounces.Slashed = false
  3493. end
  3494. end
  3495. end
  3496. end)
  3497. for i = 1, 20 do
  3498. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  3499. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  3500. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3501. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3502. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3503. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3504. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3505. if Debounces.on == false then break end
  3506. rs:wait(2)
  3507. end
  3508. z = Instance.new("Sound",hed)
  3509. z.SoundId = "rbxassetid://160069154"
  3510. z.Looped = false
  3511. z.Pitch = .9
  3512. z1 = Instance.new("Sound",hed)
  3513. z1.SoundId = "rbxassetid://160069154"
  3514. z1.Looped = false
  3515. z1.Pitch = .9
  3516. wait(0.01)
  3517. z:Play()
  3518. z1:Play()
  3519. for i = 1, 20 do
  3520. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  3521. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  3522. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3523. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  3524. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3525. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3526. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3527. if Debounces.on == false then break end
  3528. rs:wait(2)
  3529. end
  3530. for i = 1, 20 do
  3531. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  3532. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  3533. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3534. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3535. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3536. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3537. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3538. if Debounces.on == false then break end
  3539. rs:wait(2)
  3540. end
  3541. z = Instance.new("Sound",hed)
  3542. z.SoundId = "rbxassetid://168586621"
  3543. z.Looped = false
  3544. z.Pitch = 1
  3545. z1 = Instance.new("Sound",hed)
  3546. z1.SoundId = "rbxassetid://168586621"
  3547. z1.Looped = false
  3548. z1.Pitch = 1
  3549. wait(0.01)
  3550. z:Play()
  3551. z1:Play()
  3552. for i = 1, 20 do
  3553. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  3554. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  3555. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3556. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3557. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3558. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3559. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  3560. if Debounces.on == false then break end
  3561. rs:wait(2)
  3562. end
  3563. to:disconnect()
  3564. larm.BrickColor = BrickColor.new("Really black")
  3565. rarm.BrickColor = BrickColor.new("Really black")
  3566. if Debounces.CanAttack == false then
  3567. Debounces.CanAttack = true
  3568. Debounces.on = false
  3569. Debounces.NoIdl = false
  3570. end
  3571. end
  3572. end
  3573. end)
  3574. ----------------------------------------------------
  3575. Sit = false
  3576. mouse.KeyDown:connect(function(key)
  3577. if key == "v" then
  3578. if Sit == false then
  3579. Sit = true
  3580. hum.WalkSpeed = 0.001
  3581. stanceToggle = "Sitting"
  3582. elseif Sit == true then
  3583. Sit = false
  3584. hum.WalkSpeed = 7
  3585. stanceToggle = "Normal"
  3586. end
  3587. end
  3588. end)
  3589. ----------------------------------------------------
  3590. mouse.KeyDown:connect(function(key)
  3591. if key == "t" then
  3592. if Debounces.CanAttack == true then
  3593. Debounces.CanAttack = false
  3594. Debounces.on = true
  3595. Debounces.NoIdl = true
  3596. for i = 1, 20 do
  3597. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3598. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3599. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3600. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3601. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3602. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3603. 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)
  3604. if Debounces.on == false then break end
  3605. rs:wait(2.6)
  3606. end
  3607. Spawn(function()
  3608. local Parts = {}
  3609. for Y = -5,5 do
  3610. local P = Instance.new("Part",char)
  3611. P.Anchored = true
  3612. P.FormFactor = "Custom"
  3613. P.CanCollide = false
  3614. P.Size = Vector3.new(1,2,1)
  3615. P.TopSurface = "SmoothNoOutlines"
  3616. P.BottomSurface = "SmoothNoOutlines"
  3617. P.BrickColor = BrickColor.new("Really black")
  3618. P.Name = tostring(Y)
  3619. local i = (Y+5)/(10)
  3620. i = 1-math.cos(math.pi*i-(math.pi/2))
  3621. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3622. --[[P.Touched:connect(function(ht)
  3623. local hit = ht.Parent
  3624. if hit:FindFirstChild("Humanoid") then
  3625. hit.Humanoid:TakeDamage(math.random(20,50))
  3626. end
  3627. end)]]--
  3628. s = Instance.new("Sound",P)
  3629. s.SoundId = "rbxassetid://228343271"
  3630. s.Volume = .7
  3631. s.Pitch = 0.9
  3632. s:Play()
  3633. P.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. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3641. hit:FindFirstChild("Humanoid").PlatformStand = true
  3642. wait(1)
  3643. --Debounces.Slashed = false
  3644. --end
  3645. end
  3646. end
  3647. elseif ht and hit:IsA("Hat") then
  3648. if hit.Parent.Name ~= p.Name then
  3649. if hit.Parent:FindFirstChild("Humanoid") then
  3650. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3651. Debounces.Slashed = true]]--
  3652. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3653. hit:FindFirstChild("Humanoid").PlatformStand = true
  3654. wait(1)
  3655. --Debounces.Slashed = false
  3656. --end
  3657. end
  3658. end
  3659. end
  3660. end)
  3661. Parts[#Parts+1] = P
  3662. end
  3663. local BREAKIT = false
  3664. local CParts = {}
  3665. local Rocks = {}
  3666. local LastPos = nil
  3667. for i = 1,70 do
  3668. for i2,v in pairs(Parts) do
  3669. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3670. local cf = v.CFrame
  3671. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3672. v.CFrame = cf
  3673. v.Transparency = v.Transparency+0.02
  3674. if v.Transparency >= 0.975 then BREAKIT = true end
  3675. if v.Name == "0" then
  3676. local Ignore = {}
  3677. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3678. if v.Character ~= nil then
  3679. Ignore[#Ignore+1] = v.Character
  3680. end
  3681. end
  3682. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3683. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3684. if Hit ~= nil then
  3685. if #Rocks == 0 then
  3686. for i = 1,5 do
  3687. local P = Instance.new("Part",char)
  3688. Rocks[#Rocks+1] = P
  3689. P.Anchored = true
  3690. P.FormFactor = "Custom"
  3691. P.BrickColor = Hit.BrickColor
  3692. P.Material = Hit.Material
  3693. P.TopSurface = "Smooth"
  3694. P.BottomSurface = "Smooth"
  3695. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3696. end
  3697. end
  3698. for i,P in pairs(Rocks) do
  3699. 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)))
  3700. end
  3701. local P = Instance.new("Part",char)
  3702. CParts[#CParts+1] = {P,tick()}
  3703. P.Anchored = true
  3704. P.FormFactor = "Custom"
  3705. P.BrickColor = Hit.BrickColor
  3706. P.Material = Hit.Material
  3707. P.TopSurface = "Smooth"
  3708. P.BottomSurface = "Smooth"
  3709. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3710. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3711. Pos = Pos.p
  3712. 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)))
  3713. local P = P:Clone()
  3714. CParts[#CParts+1] = {P,tick()}
  3715. P.Parent = char
  3716. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3717. Pos = Pos.p
  3718. 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)))
  3719. if LastPos ~= nil then
  3720. local P = P:Clone()
  3721. CParts[#CParts+1] = {P,tick()}
  3722. P.Parent = char
  3723. P.BrickColor = BrickColor.new("Really black")
  3724. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3725. Pos = Pos.p
  3726. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3727. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3728. --P.Velocity = Vector3.new(0,-1000,0)
  3729. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3730. end
  3731. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3732. end
  3733. end
  3734. end
  3735. if BREAKIT then break end
  3736. wait(0.002)
  3737. end
  3738. for i,v in pairs(Rocks) do
  3739. CParts[#CParts+1] = {v,tick()}
  3740. end
  3741. for i,v in pairs(Parts) do
  3742. v:Destroy()
  3743. end
  3744. Parts = nil
  3745. while true do
  3746. local t = tick()
  3747. local p = nil
  3748. for i,v in pairs(CParts) do
  3749. if t-v[2] > 4 then
  3750. v[1].Transparency = v[1].Transparency+0.05
  3751. if v[1].Transparency >= 1 then
  3752. v[1]:Destroy()
  3753. CParts[i] = nil
  3754. end
  3755. end
  3756. p = v
  3757. end
  3758. if p == nil then break end
  3759. wait(0.002)
  3760. end
  3761. for i,v in pairs(CParts) do
  3762. v:Destroy()
  3763. end
  3764. CParts = {}
  3765. end)
  3766. for i = 1, 20 do
  3767. 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)
  3768. 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)
  3769. 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)
  3770. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3771. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3772. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3773. 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)
  3774. if Debounces.on == false then break end
  3775. rs:wait(2)
  3776. end
  3777. if Debounces.CanAttack == false then
  3778. Debounces.CanAttack = true
  3779. Debounces.on = false
  3780. Debounces.NoIdl = false
  3781. end
  3782. end
  3783. end
  3784. end)
  3785. ----------------------------------------------------
  3786. mouse.KeyDown:connect(function(key)
  3787. if key == "e" then
  3788. larm.BrickColor = BrickColor.new("Bright red")
  3789. rarm.BrickColor = BrickColor.new("Bright red")
  3790. if Debounces.CanAttack == true then
  3791. Debounces.CanAttack = false
  3792. Debounces.on = true
  3793. Debounces.NoIdl = true
  3794. for i = 1, 18 do
  3795. 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)
  3796. 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)
  3797. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3798. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3799. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3800. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3801. 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)
  3802. if Debounces.on == false then break end
  3803. rs:wait(4)
  3804. end
  3805. 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))
  3806. local rng = Instance.new("Part", char.Absolution.Handle)
  3807. rng.Anchored = true
  3808. rng.BrickColor = BrickColor.new("Really black")
  3809. rng.CanCollide = true
  3810. rng.FormFactor = 3
  3811. rng.Name = "Ring"
  3812. rng.Size = Vector3.new(1, 1, 1)
  3813. rng.CanCollide = false
  3814. rng.Transparency = 0.35
  3815. rng.TopSurface = 0
  3816. rng.BottomSurface = 0
  3817. rng.CFrame = HandCF
  3818. local rngm = Instance.new("SpecialMesh", rng)
  3819. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3820. rngm.Scale = Vector3.new(1, 1, 2)
  3821. x = Instance.new("Sound", hed)
  3822. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3823. x.Looped = false
  3824. x.Pitch = .7
  3825. x.Volume = 1
  3826. x1 = Instance.new("Sound", hed)
  3827. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3828. x1.Looped = false
  3829. x1.Pitch = .7
  3830. x1.Volume = 1
  3831. x:Play()
  3832. x1:Play()
  3833. rngto = rng.Touched:connect(function(ht)
  3834. hit = ht.Parent
  3835. if ht and hit:IsA("Model") then
  3836. if hit:FindFirstChild("Humanoid") then
  3837. if hit.Name ~= p.Name then
  3838. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3839. Debounces.Slashed = true]]--
  3840. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3841. hit:FindFirstChild("Humanoid").PlatformStand = true
  3842. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3843. --Debounces.Slashed = false
  3844. --end
  3845. end
  3846. end
  3847. elseif ht and hit:IsA("Hat") then
  3848. if hit.Parent.Name ~= p.Name then
  3849. if hit.Parent:FindFirstChild("Humanoid") then
  3850. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3851. Debounces.Slashed = true]]--
  3852. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3853. hit:FindFirstChild("Humanoid").PlatformStand = true
  3854. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3855. --Debounces.Slashed = false
  3856. end
  3857. end
  3858. end
  3859. end)
  3860. coroutine.wrap(function()
  3861. for i = 1, 60, 2 do
  3862. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3863. rng.Size = rngm.Scale
  3864. rng.CFrame = HandCF
  3865. rng.Transparency = i/60
  3866. wait()
  3867. end
  3868. wait()
  3869. rng:Destroy()
  3870. end)()
  3871. for i = 1, 18 do
  3872. 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)
  3873. 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)
  3874. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3875. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3876. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3877. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3878. 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)
  3879. if Debounces.on == false then break end
  3880. rs:wait(2.4)
  3881. end
  3882. larm.BrickColor = BrickColor.new("Really black")
  3883. rarm.BrickColor = BrickColor.new("Really black")
  3884. x:Destroy()
  3885. x1:Destroy()
  3886. if Debounces.CanAttack == false then
  3887. Debounces.CanAttack = true
  3888. Debounces.on = false
  3889. Debounces.NoIdl = false
  3890. end
  3891. end
  3892. end
  3893. end)
  3894. ----------------------------------------------------
  3895. mouse.KeyDown:connect(function(key)
  3896. if key == "y" then
  3897. if Debounces.CanAttack == true then
  3898. Debounces.CanAttack = false
  3899. Debounces.on = true
  3900. Debounces.NoIdl = true
  3901. for i = 1, 15 do
  3902. 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)
  3903. 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)
  3904. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3905. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3906. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3907. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3908. 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)
  3909. if Debounces.on == false then break end
  3910. rs:wait(2.7)
  3911. end
  3912. x = Instance.new("Sound",char)
  3913. x.SoundId = "rbxassetid://228343271"
  3914. x.Pitch = 1
  3915. x.Volume = .8
  3916. wait(.1)
  3917. x:Play()
  3918. Debounces.on = false
  3919. Debounces.Here = false
  3920. shot = shot + 1
  3921. local rng = Instance.new("Part", char)
  3922. rng.Anchored = true
  3923. rng.BrickColor = BrickColor.new("Bright blue")
  3924. rng.CanCollide = false
  3925. rng.FormFactor = 3
  3926. rng.Name = "Ring"
  3927. rng.Size = Vector3.new(1, 1, 1)
  3928. rng.Transparency = 0.35
  3929. rng.TopSurface = 0
  3930. rng.BottomSurface = 0
  3931. rng2 = rng:clone()
  3932. rng3 = rng2:clone()
  3933. rng4 = rng2:clone()
  3934. local rngm = Instance.new("SpecialMesh", rng)
  3935. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3936. rngm.Scale = Vector3.new(10, 10, 1)
  3937. rngm2 = rngm:clone()
  3938. rngm2.Scale = Vector3.new(5, 5, 3)
  3939. rngm3=rngm2:clone()
  3940. rngm3.Parent = rng3
  3941. rngm3.Scale = Vector3.new(8, 8, 1)
  3942. rngm4 = rngm2:clone()
  3943. rngm4.Parent = rng4
  3944. rngm4.Scale = Vector3.new(6, 6, 1)
  3945. local bem = Instance.new("Part", char)
  3946. bem.Anchored = true
  3947. bem.BrickColor = BrickColor.new("Really black")
  3948. bem.CanCollide = false
  3949. bem.FormFactor = 3
  3950. bem.Name = "Beam" .. shot
  3951. bem.Size = Vector3.new(1, 1, 1)
  3952. bem.Transparency = 0.35
  3953. bem.TopSurface = 0
  3954. bem.BottomSurface = 0
  3955. local bemm = Instance.new("SpecialMesh", bem)
  3956. bemm.MeshType = 4
  3957. bemm.Scale = Vector3.new(1, 4, 4)
  3958. local out = Instance.new("Part", char)
  3959. out.Anchored = true
  3960. out.BrickColor = BrickColor.new("Really black")
  3961. out.CanCollide = false
  3962. out.FormFactor = 3
  3963. out.Name = "Out"
  3964. out.Size = Vector3.new(4, 4, 4)
  3965. out.Transparency = 0.35
  3966. out.TopSurface = 0
  3967. out.BottomSurface = 0
  3968. local outm = Instance.new("SpecialMesh", out)
  3969. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3970. outm.Scale = Vector3.new(4, 4, 4)
  3971. local bnd = Instance.new("Part", char)
  3972. bnd.Anchored = true
  3973. bnd.BrickColor = BrickColor.new("Bright blue")
  3974. bnd.CanCollide = false
  3975. bnd.FormFactor = 3
  3976. bnd.Name = "Bend"
  3977. bnd.Size = Vector3.new(1, 1, 1)
  3978. bnd.Transparency = 1
  3979. bnd.TopSurface = 0
  3980. bnd.BottomSurface = 0
  3981. local bndm = Instance.new("SpecialMesh", bnd)
  3982. bndm.MeshType = 3
  3983. bndm.Scale = Vector3.new(8, 8, 8)
  3984. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3985. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3986. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3987. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3988. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3989. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3990. Debounces.Shewt = true
  3991. coroutine.wrap(function()
  3992. for i = 1, 20, 0.2 do
  3993. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3994. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3995. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3996. rng.Transparency = i/20
  3997. rng3.Transparency = 1/24
  3998. rng4.Transparency = i/26
  3999. wait()
  4000. end
  4001. wait()
  4002. rng:Destroy()
  4003. end)()
  4004. if Debounces.Shewt == true then
  4005. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4006. hit = ht.Parent
  4007. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4008. if HasntTouched(hit.Name) == true and deb == false then
  4009. deb = true
  4010. coroutine.wrap(function()
  4011. hit:FindFirstChild("Humanoid").PlatformStand = true
  4012. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4013. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4014. end)()
  4015. table.insert(Touche, hit.Name)
  4016. deb = false
  4017. end
  4018. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4019. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4020. deb = true
  4021. coroutine.wrap(function()
  4022. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4023. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4024. wait(1)
  4025. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4026. end)()
  4027. table.insert(Touche, hit.Parent.Name)
  4028. deb = false
  4029. for i, v in pairs(Touche) do
  4030. print(v)
  4031. end
  4032. end
  4033. end
  4034. end)
  4035. end
  4036. for i = 0, 260, 8 do
  4037. bem.Size = Vector3.new(i, 2, 2)
  4038. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4039. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4040. bnd.Size = Vector3.new(1,1,1)
  4041. bndm.Scale = Vector3.new(8,8,8)
  4042. if i % 10 == 0 then
  4043. local newRng = rng2:Clone()
  4044. newRng.Parent = char
  4045. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4046. local newRngm = rngm2:clone()
  4047. newRngm.Parent=newRng
  4048. coroutine.wrap(function()
  4049. for i = 1, 10, 0.2 do
  4050. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4051. newRng.Transparency = i/10
  4052. wait()
  4053. end
  4054. wait()
  4055. newRng:Destroy()
  4056. end)()
  4057. end
  4058. wait()
  4059. end
  4060. wait()
  4061. Debounces.Shewt = false
  4062. bem:Destroy()
  4063. out:Destroy()
  4064. bnd:Destroy()
  4065. Debounces.Ready = false
  4066. for i, v in pairs(Touche) do
  4067. table.remove(Touche, i)
  4068. end
  4069. wait()
  4070. table.insert(Touche, char.Name)
  4071. Debounces.NoIdl = false
  4072. if Debounces.CanAttack == false then
  4073. Debounces.CanAttack = true
  4074. end
  4075. end
  4076. end
  4077. end)
  4078. ----------------------------------------------------
  4079. sidz = {"231917888", "231917845", "231917806"}
  4080. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4081. mouse.KeyDown:connect(function(key)
  4082. if key == "f" then
  4083. larm.BrickColor = BrickColor.new("Bright red")
  4084. rarm.BrickColor = BrickColor.new("Bright red")
  4085. if Debounces.CanAttack == true then
  4086. Debounces.CanAttack = false
  4087. Debounces.on = true
  4088. Debounces.NoIdl = true
  4089. for i = 1, 20 do
  4090. 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)
  4091. 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)
  4092. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4093. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4094. 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)
  4095. 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)
  4096. 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)
  4097. if Debounces.on == false then break end
  4098. rs:wait(6)
  4099. end
  4100. z = Instance.new("Sound",char)
  4101. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4102. z.Pitch = ptz[math.random(1,#ptz)]
  4103. z.Volume = 1
  4104. z1 = Instance.new("Sound",char)
  4105. z1.SoundId = z.SoundId
  4106. z1.Pitch = z.Pitch
  4107. z1.Volume = 1
  4108. z:Play()
  4109. z1:Play()
  4110. Stomp()
  4111. for i = 1, 20 do
  4112. 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)
  4113. 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)
  4114. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4115. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4116. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4117. 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)
  4118. 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)
  4119. if Debounces.on == false then break end
  4120. rs:wait(2.5)
  4121. end
  4122. if Debounces.CanAttack == false then
  4123. Debounces.CanAttack = true
  4124. Debounces.on = false
  4125. Debounces.NoIdl = false
  4126. larm.BrickColor = BrickColor.new("Really black")
  4127. rarm.BrickColor = BrickColor.new("Really black")
  4128. end
  4129. end
  4130. end
  4131. end)
  4132. ----------------------------------------------------
  4133. mouse.KeyDown:connect(function(key)
  4134. if key == "g" then
  4135. larm.BrickColor = BrickColor.new("Bright red")
  4136. rarm.BrickColor = BrickColor.new("Bright red")
  4137. if Debounces.CanAttack == true then
  4138. Debounces.CanAttack = false
  4139. Debounces.on = true
  4140. Debounces.NoIdl = true
  4141. chrg = lleg.Touched:connect(function(ht)
  4142. hit = ht.Parent
  4143. if ht and hit:IsA("Model") then
  4144. if hit:FindFirstChild("Humanoid") then
  4145. if hit.Name ~= p.Name then
  4146. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4147. Debounces.Slashed = true]]--
  4148. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4149. hit:FindFirstChild("Humanoid").PlatformStand = true
  4150. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4151. --Debounces.Slashed = false
  4152. --end
  4153. end
  4154. end
  4155. elseif ht and hit:IsA("Hat") then
  4156. if hit.Parent.Name ~= p.Name then
  4157. if hit.Parent:FindFirstChild("Humanoid") then
  4158. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4159. Debounces.Slashed = true]]--
  4160. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4161. hit:FindFirstChild("Humanoid").PlatformStand = true
  4162. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4163. --Debounces.Slashed = false
  4164. end
  4165. end
  4166. end
  4167. end)
  4168. for i = 1, 14 do
  4169. 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)
  4170. 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)
  4171. 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)
  4172. 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)
  4173. 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)
  4174. 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)
  4175. 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)
  4176. if Debounces.on == false then break end
  4177. rs:wait(3)
  4178. end
  4179. charge()
  4180. z = Instance.new("Sound",char)
  4181. z.SoundId = "rbxassetid://200632875"
  4182. z.Volume = 1
  4183. z.Pitch = .8
  4184. z1 = Instance.new("Sound",char)
  4185. z1.SoundId = "rbxassetid://200632875"
  4186. z1.Volume = 1
  4187. z1.Pitch = .9
  4188. z:Play()
  4189. z1:Play()
  4190. wait(1)
  4191. z:Destroy()
  4192. z1:Destroy()
  4193. chrg:disconnect()
  4194. if Debounces.CanAttack == false then
  4195. Debounces.CanAttack = true
  4196. Debounces.on = false
  4197. Debounces.NoIdl = false
  4198. larm.BrickColor = BrickColor.new("Really black")
  4199. rarm.BrickColor = BrickColor.new("Really black")
  4200. end
  4201. end
  4202. end
  4203. end)
  4204. ----------------------------------------------------
  4205. pt = {0.7, 0.8, 0.9}
  4206. mouse.KeyDown:connect(function(key)
  4207. if key == "h" then
  4208. if Debounces.CanJoke == true then
  4209. Debounces.CanJoke = false
  4210. u = Instance.new("Sound")
  4211. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4212. u.Parent = char
  4213. u.Looped = false
  4214. u.Pitch = pt[math.random(1,#pt)]
  4215. u.Volume = 1
  4216. u2 = Instance.new("Sound")
  4217. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4218. u2.Parent = char
  4219. u2.Looped = false
  4220. u2.Pitch = u.Pitch
  4221. u2.Volume = 1
  4222. wait(.01)
  4223. u:Play()
  4224. u2:Play()
  4225. wait(6)
  4226. u:Destroy()
  4227. u2:Destroy()
  4228. if Debounces.CanJoke == false then
  4229. Debounces.CanJoke = true
  4230. end
  4231. end
  4232. end
  4233. end)
  4234. ----------------------------------------------------
  4235. mouse.KeyDown:connect(function(key)
  4236. if key == "j" then
  4237. if Debounces.CanJoke == true then
  4238. Debounces.CanJoke = false
  4239. z = Instance.new("Sound",char)
  4240. z.SoundId = "rbxassetid://135017755"
  4241. z.Pitch = .76
  4242. z.Volume = 1
  4243. wait()
  4244. z:Play()
  4245. wait(6)
  4246. z:Destroy()
  4247. if Debounces.CanJoke == false then
  4248. Debounces.CanJoke = true
  4249. end
  4250. end
  4251. end
  4252. end)
  4253. ----------------------------------------------------
  4254. mouse.KeyDown:connect(function(key)
  4255. if key == "k" then
  4256. if Debounces.CanJoke == true then
  4257. Debounces.CanJoke = false
  4258. z = Instance.new("Sound",char)
  4259. z.SoundId = "rbxassetid://135017578"
  4260. z.Pitch = .76
  4261. z.Volume = 1
  4262. wait()
  4263. z:Play()
  4264. wait(4)
  4265. z:Destroy()
  4266. if Debounces.CanJoke == false then
  4267. Debounces.CanJoke = true
  4268. end
  4269. end
  4270. end
  4271. end)
  4272. ----------------------------------------------------
  4273. mouse.KeyDown:connect(function(key)
  4274. if key == "x" then
  4275. if Debounces.CanAttack == true then
  4276. Debounces.CanAttack = false
  4277. Debounces.NoIdl = true
  4278. Debounces.on = true
  4279. Debounces.ks = true
  4280. for i = 1, 10 do
  4281. 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)
  4282. 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)
  4283. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4284. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4285. 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)
  4286. 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)
  4287. 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)
  4288. if Debounces.on == false then break end
  4289. rs:wait(1)
  4290. end
  4291. z = Instance.new("Sound",hed)
  4292. z.SoundId = "rbxassetid://169445092"
  4293. z.Volume = 1
  4294. wait(0.1)
  4295. z:Play()
  4296. kik = rleg.Touched:connect(function(ht)
  4297. hit = ht.Parent
  4298. if ht and hit:IsA("Model") then
  4299. if hit:FindFirstChild("Humanoid") then
  4300. if hit.Name ~= p.Name then
  4301. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4302. Debounces.Slashed = true]]--
  4303. if Debounces.ks==true then
  4304. z = Instance.new("Sound",hed)
  4305. z.SoundId = "rbxassetid://169380525"
  4306. z.Volume = 1
  4307. z:Play()
  4308. Debounces.ks=false
  4309. end
  4310. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4311. hit:FindFirstChild("Humanoid").PlatformStand = true
  4312. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4313. --Debounces.Slashed = false
  4314. --end
  4315. end
  4316. end
  4317. elseif ht and hit:IsA("Hat") then
  4318. if hit.Parent.Name ~= p.Name then
  4319. if hit.Parent:FindFirstChild("Humanoid") then
  4320. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4321. Debounces.Slashed = true]]--
  4322. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4323. hit:FindFirstChild("Humanoid").PlatformStand = true
  4324. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4325. --Debounces.Slashed = false
  4326. --end
  4327. end
  4328. end
  4329. end
  4330. end)
  4331. for i = 1, 8 do
  4332. 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)
  4333. 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)
  4334. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4335. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4336. 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)
  4337. 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)
  4338. 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)
  4339. if Debounces.on == false then break end
  4340. rs:wait(.7)
  4341. end
  4342. kik:disconnect()
  4343. if Debounces.CanAttack == false then
  4344. Debounces.CanAttack = true
  4345. Debounces.on = false
  4346. Debounces.NoIdl = false
  4347. end
  4348. end
  4349. end
  4350. end)
  4351. ----------------------------------------------------
  4352. mouse.KeyDown:connect(function(key)
  4353. if key == "c" then
  4354. if Debounces.CanAttack == true then
  4355. Debounces.CanAttack = false
  4356. Debounces.NoIdl = true
  4357. Debounces.on = true
  4358. SIDZ = {"231917744", "231917742"}
  4359. PTZ = {0.7, 0.8, 0.9, 1}
  4360. for i = 1, 20 do
  4361. wait()
  4362. for i,v in pairs(char.Absolution:children()) do
  4363. if v:IsA("Part") or v:IsA("WedgePart") then
  4364. v.Transparency = v.Transparency + 0.05
  4365. end
  4366. end
  4367. end
  4368. function FindNearestTorso(Position,Distance,SinglePlayer)
  4369. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4370. local List = {}
  4371. for i,v in pairs(workspace:GetChildren())do
  4372. if v:IsA("Model")then
  4373. if v:findFirstChild("Torso")then
  4374. if v ~= char then
  4375. if(v.Torso.Position -Position).magnitude <= Distance then
  4376. table.insert(List,v)
  4377. end
  4378. end
  4379. end
  4380. end
  4381. end
  4382. return List
  4383. end
  4384. GroundPound()
  4385. for i = 1, 11 do
  4386. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4387. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4388. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4389. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4390. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4391. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4392. 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)
  4393. if Debounces.on == false then break end
  4394. rs:wait(1.4)
  4395. end
  4396. GroundPound()
  4397. for i = 1, 11 do
  4398. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4399. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4400. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4401. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4402. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4403. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4404. 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)
  4405. if Debounces.on == false then break end
  4406. rs:wait(1.4)
  4407. end
  4408. GroundPound()
  4409. for i = 1, 11 do
  4410. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4411. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4412. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4413. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4414. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4415. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4416. 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)
  4417. if Debounces.on == false then break end
  4418. rs:wait(1.4)
  4419. end
  4420. GroundPound()
  4421. for i = 1, 11 do
  4422. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4423. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4424. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4425. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4426. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4427. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4428. 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)
  4429. if Debounces.on == false then break end
  4430. rs:wait(1.4)
  4431. end
  4432. GroundPound()
  4433. for i = 1, 11 do
  4434. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4435. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4436. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4437. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4438. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4439. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4440. 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)
  4441. if Debounces.on == false then break end
  4442. rs:wait(1.4)
  4443. end
  4444. GroundPound()
  4445. for i = 1, 11 do
  4446. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4447. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4448. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4449. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4450. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4451. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4452. 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)
  4453. if Debounces.on == false then break end
  4454. rs:wait(1.4)
  4455. end
  4456. for i = 1, 24 do
  4457. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.2)
  4458. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.2)
  4459. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4460. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4461. 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)
  4462. 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)
  4463. 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)
  4464. if Debounces.on == false then break end
  4465. rs:wait(3)
  4466. end
  4467. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4468. if v:FindFirstChild('Humanoid') then
  4469. v.Humanoid:TakeDamage(math.random(20,60))
  4470. v.Humanoid.PlatformStand = true
  4471. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4472. end
  4473. end
  4474. x = Instance.new("Sound",char)
  4475. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4476. x.Pitch = PTZ[math.random(1,#PTZ)]
  4477. x.Volume = 1
  4478. wait(0.1)
  4479. x:Play()
  4480. Crater(hed,20)
  4481. for i = 1, 20 do
  4482. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  4483. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  4484. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4485. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4486. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4487. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4488. 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)
  4489. if Debounces.on == false then break end
  4490. rs:wait(2)
  4491. end
  4492. if Debounces.CanAttack == false then
  4493. Debounces.CanAttack = true
  4494. Debounces.on = false
  4495. Debounces.NoIdl = false
  4496. for i = 1, 20 do
  4497. wait()
  4498. for i,v in pairs(char.Absolution:children()) do
  4499. if v:IsA("Part") or v:IsA("WedgePart") then
  4500. v.Transparency = v.Transparency - 0.05
  4501. end
  4502. end
  4503. end
  4504. end
  4505. end
  4506. end
  4507. end)
  4508. ----------------------------------------------------176349813
  4509. mouse.KeyDown:connect(function(key)
  4510. if key == "b" then
  4511. hum.WalkSpeed = 0.01
  4512. if Debounces.CanAttack == true then
  4513. Debounces.CanAttack = false
  4514. Debounces.NoIdl = true
  4515. Debounces.on = true
  4516. for i = 1, 30 do
  4517. 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)
  4518. 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)
  4519. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4520. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4521. 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)
  4522. 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)
  4523. 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)
  4524. if Debounces.on == false then break end
  4525. rs:wait(6)
  4526. end
  4527. v = Instance.new("Sound")
  4528. v.SoundId = "rbxassetid://181384451"
  4529. v.Parent = char
  4530. v.Looped = false
  4531. v.Pitch = .94
  4532. v.Volume = 1
  4533. wait(.01)
  4534. v:Play()
  4535.  
  4536. if Daytime == true then
  4537. Daytime = false
  4538. l.TimeOfDay = 24
  4539. else
  4540. Daytime = true
  4541. l.TimeOfDay = 12
  4542. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4543. end
  4544.  
  4545. local Shockwave = function()
  4546. local rng1 = Instance.new("Part", char)
  4547. rng1.Anchored = true
  4548. rng1.BrickColor = BrickColor.new("Really black")
  4549. rng1.CanCollide = false
  4550. rng1.FormFactor = 3
  4551. rng1.Name = "Ring"
  4552. rng1.Size = Vector3.new(1, 1, 1)
  4553. rng1.Transparency = 0.35
  4554. rng1.TopSurface = 0
  4555. rng1.BottomSurface = 0
  4556. local rngm1 = Instance.new("SpecialMesh", rng)
  4557. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4558. rngm1.Scale = Vector3.new(10, 10, 1)
  4559. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4560. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4561. Wave.Name = "Shockwave"
  4562. Wave.BrickColor = BrickColor.new("Really black")
  4563. Wave.Size = Vector3.new(1, 1, 1)
  4564. Wave.Shape = "Ball"
  4565. Wave.CanCollide = false
  4566. Wave.Anchored = true
  4567. Wave.TopSurface = 0
  4568. Wave.BottomSurface = 0
  4569. Wave.Touched:connect(function(hit)
  4570. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4571. local Occlude = true
  4572. local NotOccludes = {
  4573. char.Name;
  4574. "Wings";
  4575. "Scythe";
  4576. "Thingy";
  4577. "Thingy2"; -- put all of the names in a table pls
  4578. }
  4579. for i,v in pairs(NotOccludes) do
  4580. if hit.Parent.Name == v then
  4581. Occlude = false
  4582. end
  4583. end
  4584. --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
  4585. if Occlude then
  4586. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4587. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4588. end
  4589. end
  4590. end)
  4591.  
  4592. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4593.  
  4594. coroutine.wrap(function()
  4595. for i = 1, 20, 0.2 do
  4596. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4597. rng1.Transparency = i/20
  4598. wait()
  4599. end
  4600. wait()
  4601. rng1:Destroy()
  4602. end)()
  4603.  
  4604. Delay(0, function()
  4605.  
  4606. if Daytime == false then
  4607. for i = 1, 50, 1 do
  4608. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4609. Wave.CFrame = char.Torso.CFrame
  4610. local t = i / 50
  4611. Wave.Transparency = t
  4612. wait()
  4613. end
  4614. else
  4615. for i = 1, 50, 1 do
  4616. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4617. Wave.CFrame = char.Torso.CFrame
  4618. local t = i / 50
  4619. Wave.Transparency = t
  4620. wait()
  4621. end
  4622. end
  4623. Wave:Destroy()
  4624. end)
  4625. Delay(0, function()
  4626. while wait() do
  4627. if Wave ~= nil then
  4628. Wave.CFrame = char.Torso.CFrame
  4629. else
  4630. break
  4631. end
  4632. end
  4633. end)
  4634. end
  4635. Shockwave()
  4636. for i = 1, 30 do
  4637. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  4638. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  4639. 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)
  4640. 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)
  4641. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  4642. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4643. if Debounces.on == false then break end
  4644. rs:wait()
  4645. end
  4646. wait(2.4)
  4647. Debounces.NoIdl = false
  4648. hum.WalkSpeed = 5
  4649. Debounces.on = false
  4650. wait()
  4651. if Debounces.CanAttack == false then
  4652. Debounces.CanAttack = true
  4653. v:Destroy()
  4654. end
  4655. end
  4656. end
  4657. end)
  4658. ----------------------------------------------------
  4659. mouse.KeyDown:connect(function(key)
  4660. if key == "l" then
  4661. for i = 1, 20 do
  4662. wait()
  4663. for i,v in pairs(char.Absolution:children()) do
  4664. if v:IsA("Part") or v:IsA("WedgePart") then
  4665. v.Transparency = v.Transparency + 0.05
  4666. end
  4667. end
  4668. end
  4669. if Debounces.CanAttack == true then
  4670. Debounces.CanAttack = false
  4671. Debounces.NoIdl = true
  4672. Debounces.on = true
  4673. bv = Instance.new("BodyVelocity",torso)
  4674. bv.maxForce = Vector3.new(0,200000,0)
  4675. bv.P = 100000
  4676. bv.velocity = Vector3.new(0,500,0)
  4677. wait(2)
  4678. bv:Destroy()
  4679. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4680. for i = 1, 20 do
  4681. 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)
  4682. 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)
  4683. 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)
  4684. 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)
  4685. 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)
  4686. 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)
  4687. 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)
  4688. if Debounces.on == false then break end
  4689. wait()
  4690. end
  4691. for i = 1, 360, 20 do wait()
  4692. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4693. end
  4694. end
  4695. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4696. local ry,ht,ps=nil,nil,nil
  4697. while ht==nil do
  4698. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4699. wait()
  4700. end
  4701. z = Instance.new("Sound",char)
  4702. z.SoundId = "rbxassetid://245537790"
  4703. z.Pitch = 1
  4704. z.Volume = 1
  4705. wait(0.1)
  4706. z:Play()
  4707. local sp = Instance.new("Part", char)
  4708. sp.Name = "Energy"
  4709. sp.BrickColor = BrickColor.new("Really black")
  4710. sp.Size = Vector3.new(1, 1, 1)
  4711. sp.Shape = "Ball"
  4712. sp.CanCollide = false
  4713. sp.Anchored = true
  4714. sp.TopSurface = 0
  4715. sp.BottomSurface = 0
  4716. local spm = Instance.new("SpecialMesh",sp)
  4717. spm.MeshId = "rbxassetid://9982590"
  4718. spm.Scale = Vector3.new(3,3,3)
  4719. local sp2 = Instance.new("Part", char)
  4720. sp2.Name = "Energy2"
  4721. sp2.BrickColor = BrickColor.new("Really black")
  4722. sp2.Size = Vector3.new(1, 1, 1)
  4723. sp2.Shape = "Ball"
  4724. sp2.CanCollide = false
  4725. sp2.Anchored = true
  4726. sp2.TopSurface = 0
  4727. sp2.BottomSurface = 0
  4728. local spm2 = Instance.new("SpecialMesh",sp2)
  4729. spm2.MeshId = "rbxassetid://9982590"
  4730. spm2.Scale = Vector3.new(3,3,3)
  4731. sp.Touched:connect(function(hit)
  4732. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4733. local Occlude = true
  4734. local NotOccludes = {
  4735. char.Name;
  4736. "Wings";
  4737. "Scythe";
  4738. "Thingy";
  4739. "Thingy2"; -- put all of the names in a table pls
  4740. }
  4741. for i,v in pairs(NotOccludes) do
  4742. if hit.Parent.Name == v then
  4743. Occlude = false
  4744. end
  4745. end
  4746. --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
  4747. if Occlude then
  4748. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4749. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4750. end
  4751. end
  4752. end)
  4753. sp2.Touched:connect(function(hit)
  4754. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4755. local Occlude = true
  4756. local NotOccludes = {
  4757. char.Name;
  4758. "Wings";
  4759. "Scythe";
  4760. "Thingy";
  4761. "Thingy2"; -- put all of the names in a table pls
  4762. }
  4763. for i,v in pairs(NotOccludes) do
  4764. if hit.Parent.Name == v then
  4765. Occlude = false
  4766. end
  4767. end
  4768. --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
  4769. if Occlude then
  4770. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4771. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4772. end
  4773. end
  4774. end)
  4775. for i = 1, 100, 1 do
  4776. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4777. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4778. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4779. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4780. spm.Scale = sp.Size
  4781. spm2.Scale = sp2.Size
  4782. local t = i / 100
  4783. sp.Transparency = t
  4784. sp2.Transparency = t
  4785. wait()
  4786. end
  4787. sp:Destroy()
  4788. sp2:Destroy()
  4789. z:Destroy()
  4790. for i = 1, 20 do
  4791. wait()
  4792. for i,v in pairs(char.Absolution:children()) do
  4793. if v:IsA("Part") or v:IsA("WedgePart") then
  4794. v.Transparency = v.Transparency - 0.05
  4795. end
  4796. end
  4797. end
  4798. if Debounces.CanAttack == false then
  4799. Debounces.CanAttack = true
  4800. Debounces.NoIdl = false
  4801. Debounces.on = false
  4802. end
  4803. end
  4804. end
  4805. end)
  4806. ----------------------------------------------------
  4807. local orbt={}
  4808. local stlt={}
  4809. local chot={}
  4810. local cfxt={}
  4811. local pfxt={}
  4812. local cns=0
  4813. local cnOrb=nil
  4814. mouse.KeyDown:connect(function(key)
  4815. if key == "u" then
  4816. if Debounces.CanAttack == true then
  4817. Debounces.CanAttack = false
  4818. Debounces.NoIdl = true
  4819. Debounces.on = true
  4820. orbt={}
  4821. stlt={}
  4822. chot={}
  4823. cfxt={}
  4824. for i = 1, 20 do
  4825. 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)
  4826. 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)
  4827. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4828. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4829. 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)
  4830. 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)
  4831. 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)
  4832. if Debounces.on == false then end
  4833. rs:wait()
  4834. end
  4835. z = Instance.new("Sound",char)
  4836. z.SoundId = "rbxassetid://170053944"
  4837. z.Pitch = 1.07
  4838. z.Volume = 1
  4839. wait(0.1)
  4840. z:Play()
  4841. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4842. debris:AddItem(cnOrb,50)
  4843. cnOrb.Mesh.MeshType=3
  4844. table.insert(orbt,cnOrb)
  4845. table.insert(stlt,cnOrb)
  4846. local nt=0
  4847. for i=0,5,0.02 do
  4848. nt=nt+1
  4849. cns=i
  4850. if nt>=2 then
  4851. nt=0
  4852. 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")
  4853. debris:AddItem(cho,1)
  4854. cho.Mesh.MeshType=3
  4855. table.insert(chot,cho)
  4856. end
  4857. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4858. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4859. wait()
  4860. end
  4861. for i = 1, 14 do
  4862. 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)
  4863. if Debounces.on == false then end
  4864. rs:wait()
  4865. end
  4866. coroutine.wrap(function()
  4867. for i = 1, 20 do
  4868. 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)
  4869. 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)
  4870. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4871. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4872. 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)
  4873. 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)
  4874. if Debounces.on == false then end
  4875. rs:wait()
  4876. end
  4877. end)()
  4878. wait(0.1)
  4879. stlt={}
  4880. 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})
  4881. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4882. local nt=0
  4883. for i=0,160,3 do
  4884. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4885. nt=nt+1
  4886. if nt>=6 then
  4887. nt=0
  4888. 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")
  4889. cfx.Mesh.MeshId="rbxassetid://20329976"
  4890. cfx.Transparency=0.4
  4891. table.insert(cfxt,cfx)
  4892. debris:AddItem(cfx,1)
  4893. end
  4894. if (cnOrb.Position-ps).magnitude<6 then
  4895. break
  4896. end
  4897. wait()
  4898. end
  4899. orbt={}
  4900.  
  4901. for i=0,1,0.1 do
  4902. local cs=cnOrb.Mesh.Scale
  4903. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4904. wait()
  4905. end
  4906. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4907. ofx.Transparency=0.5
  4908. ofx.Mesh.MeshType=3
  4909. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4910. for _,v in pairs(game:service"Players":GetChildren()) do
  4911. pcall(function()
  4912. for _,c in pairs(v.Character:GetChildren()) do
  4913. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>15 then
  4914. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4915. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4916. end
  4917. end
  4918. end)
  4919. end
  4920. for i=0,1,0.05 do
  4921. local cs=cnOrb.Mesh.Scale
  4922. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4923. local ofs=ofx.Mesh.Scale
  4924. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4925. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4926. wait()
  4927. end
  4928. ofx:Destroy()
  4929. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4930. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4931. cnfx.Mesh.MeshType=3
  4932. cnOrb.Transparency=0.05
  4933. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4934. cnr.Mesh.MeshType=3
  4935. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4936. rn1.Transparency=1
  4937. rn1.Mesh.MeshId="rbxassetid://3270017"
  4938. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4939. rn2.Transparency=1
  4940. rn2.Mesh.MeshId="rbxassetid://3270017"
  4941. local nt=0
  4942. local cs=nil
  4943. for i=0,1,0.05 do
  4944. cs=cnOrb.Mesh.Scale
  4945. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4946. local fs=cnfx.Mesh.Scale
  4947. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4948. cnfx.Transparency=cnfx.Transparency+0.05
  4949. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4950. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4951. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4952. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4953. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4954. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4955. local rs=cnr.Mesh.Scale
  4956. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4957. nt=nt+1
  4958. if nt>=6 then
  4959. local pls={}
  4960. for _,v in pairs(game.Players:GetChildren()) do
  4961. table.insert(pls,v)
  4962. end
  4963. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  4964. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  4965. pffx.Mesh.MeshId="rbxassetid://20329976"
  4966. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  4967. debris:AddItem(pffx,2)
  4968. table.insert(pfxt,pffx)
  4969. nt=0
  4970. end
  4971. wait()
  4972. end
  4973. local int=0
  4974. coroutine.wrap(function()
  4975. for i=1,500 do
  4976. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4977. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4978. nt=nt+1
  4979. int=int+1
  4980. local htd={p}
  4981. for _,v in pairs(game:service"Players":GetChildren()) do
  4982. pcall(function()
  4983. for _,c in pairs(v.Character:GetChildren()) do
  4984. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4985. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  4986. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  4987. table.insert(htd,v)
  4988. end
  4989. end
  4990. end)
  4991. end
  4992. htd={p}
  4993. if int>=6 then
  4994. for _,v in pairs(game:service"Players":GetChildren()) do
  4995. pcall(function()
  4996. for _,c in pairs(v.Character:GetChildren()) do
  4997. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4998. table.insert(htd,v)
  4999. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Really black")
  5000. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5001. hfx.Mesh.MeshType=3
  5002. debris:AddItem(hfx,2)
  5003. coroutine.wrap(function()
  5004. pcall(function()
  5005. for i=0,1,0.05 do
  5006. pcall(function()
  5007. local hs=hfx.Mesh.Scale
  5008. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5009. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5010. end)
  5011. wait()
  5012. end
  5013. hfx:Destroy()
  5014. end)
  5015. end)()
  5016. end
  5017. end
  5018. end)
  5019. end
  5020. int=0
  5021. end
  5022. if nt>=4 then
  5023. local pls={}
  5024. for _,v in pairs(game.Players:GetChildren()) do
  5025. table.insert(pls,v)
  5026. end
  5027. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5028. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5029. pffx.Transparency=0.4
  5030. pffx.Mesh.MeshId="rbxassetid://20329976"
  5031. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5032. debris:AddItem(pffx,2)
  5033. table.insert(pfxt,pffx)
  5034. nt=0
  5035. end
  5036. wait()
  5037. end
  5038. cnOrb:Destroy()
  5039. cnfx:Destroy()
  5040. for _,v in pairs(mod3:GetChildren()) do
  5041. v:Destroy()
  5042. end
  5043. orbt={}
  5044. stlt={}
  5045. chot={}
  5046. cfxt={}
  5047. pfxt={}
  5048. end)()
  5049. if Debounces.CanAttack == false then
  5050. Debounces.CanAttack = true
  5051. Debounces.NoIdl = false
  5052. Debounces.on = false
  5053. end
  5054. end
  5055. end
  5056. end)
  5057. ----------------------------------------------------
  5058. mouse.KeyDown:connect(function(key)
  5059. if key == "m" then
  5060. if Debounces.CanAttack == true then
  5061. Debounces.CanAttack = false
  5062. Debounces.on = true
  5063. Debounces.NoIdl = true
  5064. --[[x = Instance.new("Sound",char)
  5065. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5066. x.Looped = false
  5067. x.Pitch = 1.1
  5068. x.Volume = 1
  5069. x:Play()
  5070. x2 = Instance.new("Sound",char)
  5071. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5072. x2.Looped = false
  5073. x2.Pitch = .7
  5074. x2.Volume = 1
  5075. wait(.1)
  5076. x:Play()
  5077. x2:Play()
  5078. for i = 1, 20 do
  5079. 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)
  5080. 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)
  5081. 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)
  5082. 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)
  5083. 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)
  5084. 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)
  5085. 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)
  5086. if Debounces.on == false then break end
  5087. wait()
  5088. x:Destroy()
  5089. x2:Destroy()
  5090. end
  5091. wait(1)]]--
  5092. local rng = Instance.new("Part", char)
  5093. rng.Anchored = true
  5094. rng.BrickColor = BrickColor.new("Really black")
  5095. rng.CanCollide = false
  5096. rng.FormFactor = 3
  5097. rng.Name = "Ring"
  5098. rng.Size = Vector3.new(1, 1, 1)
  5099. rng.Transparency = 0.35
  5100. rng.TopSurface = 0
  5101. rng.BottomSurface = 0
  5102. rng.Position = torso.Position - Vector3.new(0,5,0)
  5103. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5104. local rngm = Instance.new("SpecialMesh", rng)
  5105. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5106. rngm.Scale = Vector3.new(1, 1, 2)
  5107. x = Instance.new("Sound",char)
  5108. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5109. x.Looped = false
  5110. x.Pitch = .7
  5111. x.Volume = 1
  5112. x:Play()
  5113. coroutine.wrap(function()
  5114. for i = 1, 60, 2 do
  5115. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5116. rng.Transparency = i/60
  5117. wait()
  5118. end
  5119. wait()
  5120. rng:Destroy()
  5121. end)()
  5122. hum.WalkSpeed = 100
  5123. BV = Instance.new("BodyVelocity", torso)
  5124. BV.maxForce = Vector3.new(0,200000,0)
  5125. BV.P = 240000
  5126. BV.velocity = Vector3.new(0,700,0)
  5127. for i = 1, 20 do
  5128. 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)
  5129. 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)
  5130. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5131. 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)
  5132. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5133. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5134. 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)
  5135. if Debounces.on == false then break end
  5136. wait()
  5137. end
  5138. x:Destroy()
  5139. BV:Destroy()
  5140. --[[for i = 1, 30 do
  5141. 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)
  5142. 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)
  5143. 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)
  5144. 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)
  5145. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5146. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5147. if Debounces.on == false then break end
  5148. wait()
  5149. end]]--
  5150. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5151. for i = 1, 30 do
  5152. 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)
  5153. 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)
  5154. 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)
  5155. 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)
  5156. 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)
  5157. 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)
  5158. 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)
  5159. if Debounces.on == false then break end
  5160. wait()
  5161. end
  5162. end
  5163. Debounces.on = false
  5164. Debounces.NoIdl = false
  5165. local ry,ht,ps=nil,nil,nil
  5166. while ht==nil do
  5167. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5168. wait()
  5169. end
  5170. z = Instance.new("Sound",char)
  5171. z.SoundId = "rbxassetid://142070127"
  5172. z.Volume = 1
  5173. wait(.1)
  5174. z:Play()
  5175. Landing()
  5176. hum.WalkSpeed = 8
  5177. if Debounces.CanAttack == false then
  5178. Debounces.CanAttack = true
  5179. end
  5180. end
  5181. end
  5182. end)
  5183. ----------------------------------------------------
  5184. Grab = false
  5185. mouse.KeyDown:connect(function(key)
  5186. if key == "z" then
  5187. Debounces.on = true
  5188. Debounces.NoIdl = true
  5189. if Grab == false then
  5190. gp = nil
  5191. con1=larm.Touched:connect(function(hit) -- this is grab
  5192. ht = hit.Parent
  5193. hum1=ht:FindFirstChild('Humanoid')
  5194. if hum1 ~= nil then
  5195. hum1.PlatformStand=true
  5196. gp = ht
  5197. Grab = true
  5198. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5199. asd.Parent = larm
  5200. asd.Name = "asd"
  5201. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5202. con1:disconnect()
  5203. elseif hum1 ~= nil then
  5204. con1:disconnect()
  5205. wait() return
  5206. end
  5207. end)
  5208. for i = 1, 18 do
  5209. 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)
  5210. 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)
  5211. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5212. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5213. 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)
  5214. 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)
  5215. 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)
  5216. if Debounces.on == false then break end
  5217. wait()
  5218. end
  5219. con1:disconnect()
  5220. Debounces.on = false
  5221. Debounces.NoIdl = false
  5222. elseif Grab == true then
  5223. Grab = false
  5224. for i = 1, 20 do
  5225. 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)
  5226. 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)
  5227. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5228. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5229. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5230. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5231. 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)
  5232. if Debounces.on == false then end
  5233. wait()
  5234. end
  5235. if gp ~= nil then
  5236. for i,v in pairs(larm:GetChildren()) do
  5237. if v.Name == "asd" and v:IsA("Weld") then
  5238. v:Remove()
  5239. end
  5240. end
  5241. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5242. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5243. bv.P = 125000
  5244. bv.velocity = char.Head.CFrame.lookVector * 200
  5245. for i = 1, 12 do
  5246. 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)
  5247. if Debounces.on == false then end
  5248. wait()
  5249. end--
  5250. ht=nil
  5251. Spawn(function()
  5252. wait(0.5)
  5253. bv:Destroy()
  5254. end)
  5255. Debounces.on = false
  5256. Debounces.NoIdl = false
  5257. elseif ht == nil then wait()
  5258. Grab = false
  5259. Debounces.on = false
  5260. Debounces.NoIdl = false
  5261. end
  5262. end
  5263. end
  5264. end)
  5265. ----------------------------------------------------
  5266. mouse.KeyDown:connect(function(key)
  5267. if string.byte(key) == 52 then
  5268. char.Humanoid.WalkSpeed = 21
  5269. end
  5270. end)
  5271. mouse.KeyUp:connect(function(key)
  5272. if string.byte(key) == 52 then
  5273. char.Humanoid.WalkSpeed = 5
  5274. end
  5275. end)
  5276. ----------------------------------------------------
  5277. Change = false
  5278. mouse.KeyDown:connect(function(key)
  5279. if key == "n" then
  5280. if Change == false then
  5281. Change = true
  5282. stanceToggle = "Normal2"
  5283. elseif Change == true then
  5284. Change = false
  5285. stanceToggle = "Normal"
  5286. end
  5287. end
  5288. end)
  5289. ----------------------------------------------------
  5290. local animpose = "Idle"
  5291. local lastanimpose = "Idle"
  5292. local sine = 0
  5293. local change = 1
  5294. local val = 0
  5295. local ffing = false
  5296. local och = 0
  5297. ----------------------------------------------------
  5298. game:GetService("RunService").RenderStepped:connect(function()
  5299. --[[if char.Humanoid.Jump == true then
  5300. jump = true
  5301. else
  5302. jump = false
  5303. end]]
  5304. char.Humanoid.FreeFalling:connect(function(f)
  5305. if f then
  5306. ffing = true
  5307. else
  5308. ffing = false
  5309. end
  5310. end)
  5311. sine = sine + change
  5312. if jumpn == true then
  5313. animpose = "Jumping"
  5314. elseif ffing == true then
  5315. animpose = "Freefalling"
  5316. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5317. animpose = "Idle"
  5318. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5319. animpose = "Walking"
  5320. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5321. animpose = "Running"
  5322. end
  5323. if animpose ~= lastanimpose then
  5324. sine = 0
  5325. if Debounces.NoIdl == false then
  5326. if animpose == "Idle" then
  5327. for i = 1, 2 do
  5328. 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)
  5329. 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)
  5330. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5331. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5332. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5333. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5334. 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)
  5335. end
  5336. elseif animpose == "Walking" then
  5337. for i = 1, 2 do
  5338. 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)
  5339. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5340. 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)
  5341. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5342. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5343. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5344. 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)
  5345. end
  5346. elseif animpose == "Running" then
  5347. for i = 1, 2 do
  5348. 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)
  5349. 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)
  5350. 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)
  5351. 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)
  5352. 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)
  5353. 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)
  5354. 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)
  5355. end
  5356. rs:wait(2)
  5357. end
  5358. else
  5359. end
  5360. end
  5361. lastanimpose = animpose
  5362. if Debounces.NoIdl == false then
  5363. if animpose == "Idle" then
  5364. if stanceToggle == "Normal" then
  5365. change = 0.5
  5366. 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)
  5367. 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)
  5368. 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)
  5369. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5370. 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)
  5371. 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)
  5372. 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)
  5373. elseif stanceToggle == "Sitting" then
  5374. 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)
  5375. 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)
  5376. 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)
  5377. 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)
  5378. 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)
  5379. 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)
  5380. 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)
  5381. elseif stanceToggle == "Normal2" then
  5382. 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)
  5383. 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)
  5384. 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)
  5385. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5386. 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)
  5387. 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)
  5388. 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)
  5389. end
  5390. elseif animpose == "Walking" then
  5391. if stanceToggle == "Normal" then
  5392. change = 1
  5393. 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)
  5394. 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)
  5395. 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)
  5396. 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)
  5397. 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)
  5398. 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)
  5399. 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)
  5400. elseif stanceToggle == "Normal2" then
  5401. 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)
  5402. 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)
  5403. 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)
  5404. 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)
  5405. 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)
  5406. 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)
  5407. 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)
  5408. end
  5409. elseif animpose == "Running" then
  5410. change = 1
  5411. 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)
  5412. 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)
  5413. 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)
  5414. 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)
  5415. 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)
  5416. 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)
  5417. 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)
  5418. end
  5419. end
  5420. och=och+1
  5421. for _,v in pairs(orbt) do
  5422. pcall(function()
  5423. 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)))
  5424. end)
  5425. end
  5426. for _,v in pairs(stlt) do
  5427. pcall(function()
  5428. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5429. end)
  5430. end
  5431. for _,v in pairs(chot) do
  5432. pcall(function()
  5433. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5434. 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))
  5435. end)
  5436. end
  5437. for _,v in pairs(cfxt) do
  5438. pcall(function()
  5439. local vs=v.Mesh.Scale
  5440. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5441. v.Transparency=v.Transparency+0.05
  5442. end)
  5443. end
  5444. for _,v in pairs(pfxt) do
  5445. pcall(function()
  5446. local vs=v.Mesh.Scale
  5447. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5448. v.Transparency=v.Transparency+0.025
  5449. end)
  5450. end
  5451. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement