Advertisement
Guest User

Untitled

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