Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 237.51 KB | None | 0 0
  1. --[[CHROMIUM_WEAPONRY]]--
  2. --[[Liron Red Dagger Edit]]--
  3. local p = game.Players.LocalPlayer--300899323
  4. local char = p.Character
  5. local mouse = p:GetMouse()
  6. local larm = char["Left Arm"]
  7. local rarm = char["Right Arm"]
  8. local lleg = char["Left Leg"]
  9. local rleg = char["Right Leg"]
  10. local hed = char.Head
  11. local torso = char.Torso
  12. local hum = char.Humanoid
  13. local cam = game.Workspace.CurrentCamera
  14. local root = char.HumanoidRootPart
  15. local rj = root.RootJoint
  16. local deb = false
  17. local shot = 0
  18. local stanceToggle = "Idle1"
  19. local l = game:GetService("Lighting")
  20. local rs = game:GetService("RunService").RenderStepped
  21. local hb = game:GetService("RunService").Heartbeat
  22. local Stepped = game:GetService("RunService").Stepped
  23. math.randomseed(os.time())
  24. hum.JumpPower = 100
  25. hed.face:Remove()
  26. ----------------------------------------------------
  27. fat = Instance.new("BindableEvent",script)
  28. fat.Name = "Heartbeat"
  29.  
  30. script:WaitForChild("Heartbeat")
  31.  
  32. frame = 1/30
  33. tf = 0
  34. allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
  35. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  36. lastframe = tick()
  37. script.Heartbeat:Fire() --ayy lmao
  38.  
  39. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  40. tf = tf + s
  41. if tf >= frame then
  42. if allowframeloss then
  43. script.Heartbeat:Fire()
  44. lastframe=tick()
  45. else
  46. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  47. for i=1, math.floor(tf/frame) do
  48. script.Heartbeat:Fire()
  49. end
  50. lastframe=tick()
  51. end
  52. if tossremainder then
  53. tf = 0
  54. else
  55. tf = tf - frame * math.floor(tf/frame)
  56. end
  57. end
  58. end)
  59. ----------------------------------------------------
  60. for i,v in pairs(char:children()) do
  61. if v:IsA("Hat") then
  62. v:Destroy()
  63. end
  64. end
  65. for i,v in pairs (hed:GetChildren()) do
  66. if v:IsA("Sound") then
  67. v:Destroy()
  68. end
  69. end
  70. ----------------------------------------------------
  71. Debounces = {
  72. CanAttack = true;
  73. CanJoke = true;
  74. NoIdl = false;
  75. Slashing = false;
  76. Slashed = false;
  77. ks = false;
  78. }
  79. ----------------------------------------------------
  80. function weld5(part0, part1, c0, c1)
  81. weeld=Instance.new("Weld", part0)
  82. weeld.Part0=part0
  83. weeld.Part1=part1
  84. weeld.C0=c0
  85. weeld.C1=c1
  86. return weeld
  87. end
  88. ----------------------------------------------------
  89. function NewPart(prnt,siz,cf,trans,anc,mat,col)
  90. local prt=Instance.new("Part")
  91. prt.Parent=prnt
  92. prt.Name="Part"
  93. prt.Size=siz
  94. prt.CanCollide=false
  95. prt.Anchored=anc
  96. prt.Locked=true
  97. prt.Transparency = trans
  98. prt.TopSurface=10
  99. prt.BottomSurface=10
  100. prt.FrontSurface=10
  101. prt.BackSurface=10
  102. prt.LeftSurface=10
  103. prt.RightSurface=10
  104. prt:BreakJoints()
  105. prt.CFrame=cf or CFrame.new(30,10,30)
  106. prt.Material=mat
  107. prt.BrickColor=BrickColor.new(col)
  108. m=Instance.new("SpecialMesh",prt)
  109. m.MeshType=6
  110. return prt
  111. end
  112. ----------------------------------------------------
  113. function lerp(a, b, t) -- Linear interpolation
  114. return a + (b - a)*t
  115. end
  116.  
  117. function slerp(a, b, t) --Spherical interpolation
  118. dot = a:Dot(b)
  119. if dot > 0.99999 or dot < -0.99999 then
  120. return t <= 0.5 and a or b
  121. else
  122. r = math.acos(dot)
  123. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  124. end
  125. end
  126.  
  127. function matrixInterpolate(a, b, t)
  128. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  129. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  130. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  131. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  132. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  133. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  134. local t = v1:Dot(v2)
  135. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  136. return CFrame.new()
  137. end
  138. return CFrame.new(
  139. v0.x, v0.y, v0.z,
  140. v1.x, v1.y, v1.z,
  141. v2.x, v2.y, v2.z,
  142. v3.x, v3.y, v3.z)
  143. end
  144. ----------------------------------------------------
  145. function genWeld(a,b)
  146. local w = Instance.new("Weld",a)
  147. w.Part0 = a
  148. w.Part1 = b
  149. return w
  150. end
  151. function weld(a, b)
  152. local weld = Instance.new("Weld")
  153. weld.Name = "W"
  154. weld.Part0 = a
  155. weld.Part1 = b
  156. weld.C0 = a.CFrame:inverse() * b.CFrame
  157. weld.Parent = a
  158. return weld;
  159. end
  160. ----------------------------------------------------
  161. function Lerp(c1,c2,al)
  162. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  163. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  164. for i,v in pairs(com1) do
  165. com1[i] = v+(com2[i]-v)*al
  166. end
  167. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  168. end
  169. ----------------------------------------------------
  170. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  171. local wld = Instance.new("Weld", wp1)
  172. wld.Part0 = wp0
  173. wld.Part1 = wp1
  174. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  175. end
  176. ----------------------------------------------------
  177. newWeld(torso, larm, -1.5, 0.5, 0)
  178. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  179. newWeld(torso, rarm, 1.5, 0.5, 0)
  180. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  181. newWeld(torso, hed, 0, 1.5, 0)
  182. newWeld(torso, lleg, -0.5, -1, 0)
  183. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  184. newWeld(torso, rleg, 0.5, -1, 0)
  185. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  186. newWeld(root, torso, 0, -1, 0)
  187. torso.Weld.C1 = CFrame.new(0, -1, 0)
  188. ----------------------------------------------------
  189. z = Instance.new("Sound",char) --Smile: print("â?º")
  190. z.SoundId = "rbxassetid://403445112"--410761150, 411368002
  191. z.Looped = true
  192. z.Pitch = 0.72
  193. z.Volume = 1
  194. wait(0.1)
  195. z:Play()
  196. ----------------------------------------------------
  197. New = function(Object, Parent, Name, Data)
  198. local Object = Instance.new(Object)
  199. for Index, Value in pairs(Data or {}) do
  200. Object[Index] = Value
  201. end
  202. Object.Parent = Parent
  203. Object.Name = Name
  204. return Object
  205. end
  206. ----------------------------------------------------
  207. --Left Arm
  208. m = Instance.new("Model")
  209. m.Name = "LeftArm"
  210.  
  211. p4 = Instance.new("Part", m)
  212. p4.BrickColor = BrickColor.new("Really black")
  213. p4.Material = Enum.Material.SmoothPlastic
  214. p4.Name = "LeftArmPlate"
  215. p4.Size = Vector3.new(1, 2, 1)
  216. p4.Transparency = 1
  217. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  218. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  219. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  220. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  221. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  222. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  223. b4 = Instance.new("SpecialMesh", p4)
  224. b4.MeshType = Enum.MeshType.Brick
  225. b4.Name = "Mesh"
  226. b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  227.  
  228.  
  229.  
  230.  
  231.  
  232. w1 = Instance.new("Weld", p1)
  233. w1.Name = "Part_Weld"
  234. w1.Part0 = p1
  235. w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  236. w1.Part1 = p2
  237. w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  238. w2 = Instance.new("Weld", p2)
  239. w2.Name = "Part_Weld"
  240. w2.Part0 = p2
  241. w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  242. w2.Part1 = p3
  243. w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  244. w3 = Instance.new("Weld", p3)
  245. w3.Name = "LeftArmPlate_Weld"
  246. w3.Part0 = p3
  247. w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  248. w3.Part1 = p4
  249. w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  250. w4 = Instance.new("Weld", p4)
  251. w4.Name = "Part_Weld"
  252. w4.Part0 = p4
  253. w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  254. w4.Part1 = p5
  255. w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  256. w5 = Instance.new("Weld", p5)
  257. w5.Name = "Part_Weld"
  258. w5.Part0 = p5
  259. w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  260. w5.Part1 = p6
  261. w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  262. w6 = Instance.new("Weld", p6)
  263. w6.Name = "Part_Weld"
  264. w6.Part0 = p6
  265. w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  266. w6.Part1 = p7
  267. w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  268. w7 = Instance.new("Weld", p7)
  269. w7.Name = "Part_Weld"
  270. w7.Part0 = p7
  271. w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  272. w7.Part1 = p8
  273. w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  274. w8 = Instance.new("Weld", p8)
  275. w8.Name = "Part_Weld"
  276. w8.Part0 = p8
  277. w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  278. w8.Part1 = p9
  279. w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  280. w9 = Instance.new("Weld", p9)
  281. w9.Name = "Part_Weld"
  282. w9.Part0 = p9
  283. w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  284. w9.Part1 = p10
  285. w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  286. w10 = Instance.new("Weld", p10)
  287. w10.Name = "Part_Weld"
  288. w10.Part0 = p10
  289. w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  290. w10.Part1 = p11
  291. w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  292. w11 = Instance.new("Weld", p11)
  293. w11.Name = "Part_Weld"
  294. w11.Part0 = p11
  295. w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  296. w11.Part1 = p12
  297. w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  298. w12 = Instance.new("Weld", p12)
  299. w12.Name = "Part_Weld"
  300. w12.Part0 = p12
  301. w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  302. w12.Part1 = p13
  303. w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  304. w13 = Instance.new("Weld", p13)
  305. w13.Name = "Part_Weld"
  306. w13.Part0 = p13
  307. w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  308. w13.Part1 = p14
  309. w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  310. w14 = Instance.new("Weld", p14)
  311. w14.Name = "Part_Weld"
  312. w14.Part0 = p14
  313. w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  314. w14.Part1 = p15
  315. w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  316. w15 = Instance.new("Weld", p15)
  317. w15.Name = "Part_Weld"
  318. w15.Part0 = p15
  319. w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  320. w15.Part1 = p16
  321. w15.C1 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
  322.  
  323. m.Parent = larm
  324. m:MakeJoints()
  325. ----------------------------------------------------
  326. local cor = Instance.new("Part", larm.LeftArm)
  327. cor.Name = "Thingy"
  328. cor.Locked = true
  329. cor.BottomSurface = 0
  330. cor.CanCollide = false
  331. cor.Size = Vector3.new(1, 1, 1)
  332. cor.Transparency = 1
  333. cor.TopSurface = 0
  334. corw = Instance.new("Weld", cor)
  335. corw.Part0 = larm
  336. corw.Part1 = cor
  337. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  338. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  339. weld1 = Instance.new("Weld", larm.LeftArm)
  340. weld1.Part0 = cor
  341. weld1.Part1 = larm.LeftArm.LeftArmPlate
  342. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  343. --Right Arm
  344. m2 = Instance.new("Model")
  345. m2.Name = "RightArm"
  346. p1 = Instance.new("Part", m2)
  347. p1.BrickColor = BrickColor.new("Really red")
  348. p1.Material = Enum.Material.Neon
  349. p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  350. p1.FormFactor = Enum.FormFactor.Custom
  351. p1.Size = Vector3.new(1, 0.200000048, 1)
  352. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  353. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  354. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  355. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  356. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  357. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  358. b1 = Instance.new("SpecialMesh", p1)
  359. b1.MeshType = Enum.MeshType.Brick
  360. b1.Name = "Mesh"
  361. b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  362. p2 = Instance.new("Part", m2)
  363. p2.BrickColor = BrickColor.new("Really red")
  364. p2.Material = Enum.Material.Neon
  365. p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  366. p2.FormFactor = Enum.FormFactor.Custom
  367. p2.Size = Vector3.new(1, 0.200000048, 1)
  368. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  369. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  370. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  371. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  372. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  373. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  374. b2 = Instance.new("SpecialMesh", p2)
  375. b2.MeshType = Enum.MeshType.Brick
  376. b2.Name = "Mesh"
  377. b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  378. p3 = Instance.new("Part", m2)
  379. p3.BrickColor = BrickColor.new("Really red")
  380. p3.Material = Enum.Material.Neon
  381. p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  382. p3.FormFactor = Enum.FormFactor.Custom
  383. p3.Size = Vector3.new(1, 0.200000048, 1)
  384. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  385. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  386. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  387. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  388. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  389. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  390. b3 = Instance.new("SpecialMesh", p3)
  391. b3.MeshType = Enum.MeshType.Brick
  392. b3.Name = "Mesh"
  393. b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  394. p4 = Instance.new("Part", m2)
  395. p4.BrickColor = BrickColor.new("Really red")
  396. p4.Material = Enum.Material.Neon
  397. p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  398. p4.FormFactor = Enum.FormFactor.Custom
  399. p4.Size = Vector3.new(1, 0.200000048, 1)
  400. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  401. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  402. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  403. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  404. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  405. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  406. b4 = Instance.new("SpecialMesh", p4)
  407. b4.MeshType = Enum.MeshType.Brick
  408. b4.Name = "Mesh"
  409. b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  410. p5 = Instance.new("Part", m2)
  411. p5.BrickColor = BrickColor.new("Really red")
  412. p5.Material = Enum.Material.Neon
  413. p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  414. p5.FormFactor = Enum.FormFactor.Custom
  415. p5.Size = Vector3.new(1, 0.200000048, 1)
  416. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  417. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  418. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  419. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  420. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  421. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  422. b5 = Instance.new("SpecialMesh", p5)
  423. b5.MeshType = Enum.MeshType.Brick
  424. b5.Name = "Mesh"
  425. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  426. p6 = Instance.new("Part", m2)
  427. p6.BrickColor = BrickColor.new("Really red")
  428. p6.Material = Enum.Material.Neon
  429. p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  430. p6.FormFactor = Enum.FormFactor.Custom
  431. p6.Size = Vector3.new(1, 1, 1)
  432. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  433. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  434. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  435. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  436. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  437. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  438. b6 = Instance.new("SpecialMesh", p6)
  439. b6.MeshType = Enum.MeshType.Sphere
  440. b6.Name = "Mesh"
  441. p7 = Instance.new("Part", m2)
  442. p7.BrickColor = BrickColor.new("Really black")
  443. p7.Material = Enum.Material.SmoothPlastic
  444. p7.Name = "RightArmPlate"
  445. p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  446. p7.FormFactor = Enum.FormFactor.Symmetric
  447. p7.Size = Vector3.new(1, 2, 1)
  448. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  449. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  450. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  451. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  452. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  453. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  454. b7 = Instance.new("SpecialMesh", p7)
  455. b7.MeshType = Enum.MeshType.Brick
  456. b7.Name = "Mesh"
  457. b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  458. p8 = Instance.new("Part", m2)
  459. p8.BrickColor = BrickColor.new("Really red")
  460. p8.Material = Enum.Material.Neon
  461. p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  462. p8.FormFactor = Enum.FormFactor.Custom
  463. p8.Size = Vector3.new(1, 0.200000048, 1)
  464. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  465. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  466. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  467. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  468. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  469. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  470. b8 = Instance.new("SpecialMesh", p8)
  471. b8.MeshType = Enum.MeshType.Brick
  472. b8.Name = "Mesh"
  473. b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  474. p9 = Instance.new("Part", m2)
  475. p9.BrickColor = BrickColor.new("Really black")
  476. p9.Material = Enum.Material.SmoothPlastic
  477. p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  478. p9.FormFactor = Enum.FormFactor.Custom
  479. p9.Size = Vector3.new(1, 0.349999994, 1)
  480. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  481. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  482. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  483. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  484. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  485. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  486. b9 = Instance.new("SpecialMesh", p9)
  487. b9.MeshType = Enum.MeshType.Brick
  488. b9.Name = "Mesh"
  489. b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  490. p10 = Instance.new("Part", m2)
  491. p10.BrickColor = BrickColor.new("Really black")
  492. p10.Material = Enum.Material.Metal
  493. p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  494. p10.FormFactor = Enum.FormFactor.Custom
  495. p10.Size = Vector3.new(1, 0.25, 1)
  496. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  497. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  498. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  499. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  500. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  501. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  502. b10 = Instance.new("SpecialMesh", p10)
  503. b10.MeshType = Enum.MeshType.Brick
  504. b10.Name = "Mesh"
  505. b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  506. p11 = Instance.new("Part", m2)
  507. p11.BrickColor = BrickColor.new("Really black")
  508. p11.Material = Enum.Material.Metal
  509. p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  510. p11.FormFactor = Enum.FormFactor.Custom
  511. p11.Size = Vector3.new(1, 0.25, 1)
  512. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  513. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  514. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  515. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  516. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  517. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  518. b11 = Instance.new("SpecialMesh", p11)
  519. b11.MeshType = Enum.MeshType.Brick
  520. b11.Name = "Mesh"
  521. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  522. p12 = Instance.new("Part", m2)
  523. p12.BrickColor = BrickColor.new("Really black")
  524. p12.Material = Enum.Material.Metal
  525. p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  526. p12.FormFactor = Enum.FormFactor.Custom
  527. p12.Size = Vector3.new(1, 0.25, 1)
  528. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  529. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  530. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  531. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  532. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  533. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  534. b12 = Instance.new("SpecialMesh", p12)
  535. b12.MeshType = Enum.MeshType.Brick
  536. b12.Name = "Mesh"
  537. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  538. p13 = Instance.new("Part", m2)
  539. p13.BrickColor = BrickColor.new("Really red")
  540. p13.Material = Enum.Material.Neon
  541. p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  542. p13.FormFactor = Enum.FormFactor.Custom
  543. p13.Size = Vector3.new(1, 0.200000048, 1)
  544. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  545. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  546. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  547. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  548. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  549. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  550. b13 = Instance.new("SpecialMesh", p13)
  551. b13.MeshType = Enum.MeshType.Brick
  552. b13.Name = "Mesh"
  553. b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  554. p14 = Instance.new("Part", m2)
  555. p14.BrickColor = BrickColor.new("Really black")
  556. p14.Material = Enum.Material.Metal
  557. p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  558. p14.FormFactor = Enum.FormFactor.Custom
  559. p14.Size = Vector3.new(1, 0.25, 1)
  560. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  561. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  562. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  563. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  564. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  565. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  566. b14 = Instance.new("SpecialMesh", p14)
  567. b14.MeshType = Enum.MeshType.Brick
  568. b14.Name = "Mesh"
  569. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  570. p15 = Instance.new("Part", m2)
  571. p15.BrickColor = BrickColor.new("Really red")
  572. p15.Material = Enum.Material.Neon
  573. p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  574. p15.FormFactor = Enum.FormFactor.Custom
  575. p15.Size = Vector3.new(1, 0.200000048, 1)
  576. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  577. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  578. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  579. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  580. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  581. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  582. b15 = Instance.new("SpecialMesh", p15)
  583. b15.MeshType = Enum.MeshType.Brick
  584. b15.Name = "Mesh"
  585. b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  586. p16 = Instance.new("Part", m2)
  587. p16.BrickColor = BrickColor.new("Really black")
  588. p16.Material = Enum.Material.SmoothPlastic
  589. p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  590. p16.FormFactor = Enum.FormFactor.Custom
  591. p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  592. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  593. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  594. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  595. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  596. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  597. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  598. b16 = Instance.new("SpecialMesh", p16)
  599. b16.MeshType = Enum.MeshType.Brick
  600. b16.Name = "Mesh"
  601. b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  602. p17 = Instance.new("Part", m2)
  603. p17.BrickColor = BrickColor.new("Really black")
  604. p17.Material = Enum.Material.SmoothPlastic
  605. p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  606. p17.FormFactor = Enum.FormFactor.Custom
  607. p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  608. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  609. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  610. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  611. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  612. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  613. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  614. b17 = Instance.new("SpecialMesh", p17)
  615. b17.MeshType = Enum.MeshType.Brick
  616. b17.Name = "Mesh"
  617. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  618. p18 = Instance.new("Part", m2)
  619. p18.BrickColor = BrickColor.new("Really black")
  620. p18.Material = Enum.Material.SmoothPlastic
  621. p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  622. p18.FormFactor = Enum.FormFactor.Custom
  623. p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  624. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  625. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  626. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  627. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  628. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  629. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  630. b18 = Instance.new("SpecialMesh", p18)
  631. b18.MeshType = Enum.MeshType.Brick
  632. b18.Name = "Mesh"
  633. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  634. p19 = Instance.new("Part", m2)
  635. p19.BrickColor = BrickColor.new("Really black")
  636. p19.Material = Enum.Material.SmoothPlastic
  637. p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  638. p19.FormFactor = Enum.FormFactor.Custom
  639. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  640. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  641. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  642. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  643. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  644. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  645. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  646. b19 = Instance.new("SpecialMesh", p19)
  647. b19.MeshType = Enum.MeshType.Brick
  648. b19.Name = "Mesh"
  649. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  650. w1 = Instance.new("Weld", p1)
  651. w1.Name = "Part_Weld"
  652. w1.Part0 = p1
  653. w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  654. w1.Part1 = p2
  655. w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  656. w2 = Instance.new("Weld", p2)
  657. w2.Name = "Part_Weld"
  658. w2.Part0 = p2
  659. w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  660. w2.Part1 = p3
  661. w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  662. w3 = Instance.new("Weld", p3)
  663. w3.Name = "Part_Weld"
  664. w3.Part0 = p3
  665. w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  666. w3.Part1 = p4
  667. w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  668. w4 = Instance.new("Weld", p4)
  669. w4.Name = "Part_Weld"
  670. w4.Part0 = p4
  671. w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  672. w4.Part1 = p5
  673. w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  674. w5 = Instance.new("Weld", p5)
  675. w5.Name = "Part_Weld"
  676. w5.Part0 = p5
  677. w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  678. w5.Part1 = p6
  679. w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  680. w6 = Instance.new("Weld", p6)
  681. w6.Name = "RightArmPlate_Weld"
  682. w6.Part0 = p6
  683. w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  684. w6.Part1 = p7
  685. w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  686. w7 = Instance.new("Weld", p7)
  687. w7.Name = "Part_Weld"
  688. w7.Part0 = p7
  689. w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  690. w7.Part1 = p8
  691. w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  692. w8 = Instance.new("Weld", p8)
  693. w8.Name = "Part_Weld"
  694. w8.Part0 = p8
  695. w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  696. w8.Part1 = p9
  697. w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  698. w9 = Instance.new("Weld", p9)
  699. w9.Name = "Part_Weld"
  700. w9.Part0 = p9
  701. w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  702. w9.Part1 = p10
  703. w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  704. w10 = Instance.new("Weld", p10)
  705. w10.Name = "Part_Weld"
  706. w10.Part0 = p10
  707. w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  708. w10.Part1 = p11
  709. w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  710. w11 = Instance.new("Weld", p11)
  711. w11.Name = "Part_Weld"
  712. w11.Part0 = p11
  713. w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  714. w11.Part1 = p12
  715. w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  716. w12 = Instance.new("Weld", p12)
  717. w12.Name = "Part_Weld"
  718. w12.Part0 = p12
  719. w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  720. w12.Part1 = p13
  721. w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  722. w13 = Instance.new("Weld", p13)
  723. w13.Name = "Part_Weld"
  724. w13.Part0 = p13
  725. w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  726. w13.Part1 = p14
  727. w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  728. w14 = Instance.new("Weld", p14)
  729. w14.Name = "Part_Weld"
  730. w14.Part0 = p14
  731. w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  732. w14.Part1 = p15
  733. w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  734. w15 = Instance.new("Weld", p15)
  735. w15.Name = "Part_Weld"
  736. w15.Part0 = p15
  737. w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  738. w15.Part1 = p16
  739. w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  740. w16 = Instance.new("Weld", p16)
  741. w16.Name = "Part_Weld"
  742. w16.Part0 = p16
  743. w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  744. w16.Part1 = p17
  745. w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  746. w17 = Instance.new("Weld", p17)
  747. w17.Name = "Part_Weld"
  748. w17.Part0 = p17
  749. w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  750. w17.Part1 = p18
  751. w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  752. w18 = Instance.new("Weld", p18)
  753. w18.Name = "Part_Weld"
  754. w18.Part0 = p18
  755. w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  756. w18.Part1 = p19
  757. w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  758. m2.Parent = rarm
  759. m2:MakeJoints()
  760. ----------------------------------------------------
  761. local cor2 = Instance.new("Part", rarm.RightArm)
  762. cor2.Name = "Thingy"
  763. cor2.Locked = true
  764. cor2.BottomSurface = 0
  765. cor2.CanCollide = false
  766. cor2.Size = Vector3.new(1, 1, 1)
  767. cor2.Transparency = 1
  768. cor2.TopSurface = 0
  769. corw2 = Instance.new("Weld", cor2)
  770. corw2.Part0 = rarm
  771. corw2.Part1 = cor2
  772. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  773. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  774. weld2 = Instance.new("Weld", rarm.RightArm)
  775. weld2.Part0 = cor2
  776. weld2.Part1 = rarm.RightArm.RightArmPlate
  777. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  778.  
  779.  
  780. --Zyrodoxa
  781. m8 = Instance.new("Model")
  782. m8.Name = "Zyrodoxa"
  783. p1 = Instance.new("Part", m8)
  784. p1.BrickColor = BrickColor.new("Really black")
  785. p1.Material = Enum.Material.Metal
  786. p1.Reflectance = 0.40000000596046
  787. p1.Name = "Block"
  788. p1.CFrame = CFrame.new(2.70000019e-005, -11.6870832, 1.45529819, 1, -1.44446419e-008, -1.27813706e-008, -1.84925408e-008, -0.906311333, -0.422620147, -5.47969492e-009, 0.422620773, -0.906312048)
  789. p1.CanCollide = false
  790. p1.Locked = true
  791. p1.FormFactor = Enum.FormFactor.Custom
  792. p1.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  793. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  794. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  795. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  796. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  797. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  798. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  799. b1 = Instance.new("BlockMesh", p1)
  800. b1.Name = "Mesh"
  801. b1.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  802. p2 = Instance.new("Part", m8)
  803. p2.BrickColor = BrickColor.new("Really black")
  804. p2.Material = Enum.Material.Metal
  805. p2.Reflectance = 0.40000000596046
  806. p2.Name = "Block"
  807. p2.CFrame = CFrame.new(2.7e-005, -11.9090996, 0.428020298, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
  808. p2.CanCollide = false
  809. p2.Locked = true
  810. p2.FormFactor = Enum.FormFactor.Custom
  811. p2.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  812. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  813. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  814. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  815. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  816. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  817. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  818. b2 = Instance.new("BlockMesh", p2)
  819. b2.Name = "Mesh"
  820. b2.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  821. p3 = Instance.new("Part", m8)
  822. p3.BrickColor = BrickColor.new("Really black")
  823. p3.Material = Enum.Material.Metal
  824. p3.Reflectance = 0.40000000596046
  825. p3.Name = "Block"
  826. p3.CFrame = CFrame.new(2.7e-005, -11.9091024, 0.959298849, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
  827. p3.CanCollide = false
  828. p3.Locked = true
  829. p3.FormFactor = Enum.FormFactor.Custom
  830. p3.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  831. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  832. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  833. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  834. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  835. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  836. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  837. b3 = Instance.new("BlockMesh", p3)
  838. b3.Name = "Mesh"
  839. b3.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  840. p4 = Instance.new("Part", m8)
  841. p4.BrickColor = BrickColor.new("Really red")
  842. p4.Material = Enum.Material.Metal
  843. p4.Name = "Block"
  844. p4.CFrame = CFrame.new(2.69999982e-005, -11.8500671, -1.24697566, 1, -4.30586944e-008, -5.26493444e-008, -5.9326311e-008, -0.173648626, -0.984811544, 3.32618768e-008, 0.984812438, -0.173648432)
  845. p4.CanCollide = false
  846. p4.Locked = true
  847. p4.FormFactor = Enum.FormFactor.Custom
  848. p4.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  849. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  850. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  851. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  852. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  853. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  854. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  855. b4 = Instance.new("BlockMesh", p4)
  856. b4.Name = "Mesh"
  857. b4.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  858. p5 = Instance.new("Part", m8)
  859. p5.BrickColor = BrickColor.new("Really red")
  860. p5.Material = Enum.Material.Neon
  861. p5.Reflectance = 0.40000000596046
  862. p5.Name = "Block"
  863. p5.CFrame = CFrame.new(2.69999982e-005, -11.9034386, -0.304960132, 1, -1.92584508e-008, 1.18294885e-009, -1.85012432e-008, -0.939696193, 0.342021227, -5.47556045e-009, -0.342021167, -0.939697087)
  864. p5.CanCollide = false
  865. p5.Locked = true
  866. p5.FormFactor = Enum.FormFactor.Custom
  867. p5.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  868. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  869. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  870. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  871. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  872. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  873. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  874. b5 = Instance.new("BlockMesh", p5)
  875. b5.Name = "Mesh"
  876. b5.Scale = Vector3.new(0.334640861, 0.200784534, 0.669281721)
  877. p6 = Instance.new("Part", m8)
  878. p6.BrickColor = BrickColor.new("Parsley green")
  879. p6.Material = Enum.Material.Metal
  880. p6.Name = "Block"
  881. p6.CFrame = CFrame.new(2.69999982e-005, -11.8500729, -0.678800821, 1, -4.08902388e-008, -5.95267018e-008, -5.9526478e-008, 1.1920929e-007, -1.0000037, 4.08900789e-008, 1.00000453, 5.36441803e-007)
  882. p6.CanCollide = false
  883. p6.Locked = true
  884. p6.FormFactor = Enum.FormFactor.Custom
  885. p6.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  886. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  887. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  888. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  889. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  890. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  891. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  892. b6 = Instance.new("BlockMesh", p6)
  893. b6.Name = "Mesh"
  894. b6.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  895. p7 = Instance.new("Part", m8)
  896. p7.BrickColor = BrickColor.new("Really red")
  897. p7.Material = Enum.Material.Neon
  898. p7.Reflectance = 0.40000000596046
  899. p7.Name = "Block"
  900. p7.CFrame = CFrame.new(2.69999982e-005, -11.957509, 0.917527318, 1, -2.28536976e-008, 8.68393135e-010, -2.22993837e-008, -0.965929389, 0.258820087, -5.07656006e-009, -0.258819878, -0.965930223)
  901. p7.CanCollide = false
  902. p7.Locked = true
  903. p7.FormFactor = Enum.FormFactor.Custom
  904. p7.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  905. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  906. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  907. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  908. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  909. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  910. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  911. b7 = Instance.new("BlockMesh", p7)
  912. b7.Name = "Mesh"
  913. b7.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  914. p8 = Instance.new("Part", m8)
  915. p8.BrickColor = BrickColor.new("Really red")
  916. p8.Material = Enum.Material.Neon
  917. p8.Reflectance = 0.40000000596046
  918. p8.Name = "Block"
  919. p8.CFrame = CFrame.new(2.7e-005, -11.8956118, 0.105731606, 1, -1.92584473e-008, 1.1829453e-009, -1.85012521e-008, -0.939696133, 0.342021048, -5.47555823e-009, -0.342020899, -0.939696968)
  920. p8.CanCollide = false
  921. p8.Locked = true
  922. p8.FormFactor = Enum.FormFactor.Custom
  923. p8.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  924. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  925. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  926. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  927. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  928. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  929. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  930. b8 = Instance.new("BlockMesh", p8)
  931. b8.Name = "Mesh"
  932. b8.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  933. p9 = Instance.new("Part", m8)
  934. p9.BrickColor = BrickColor.new("Really black")
  935. p9.Material = Enum.Material.Metal
  936. p9.Reflectance = 0.40000000596046
  937. p9.Name = "Block"
  938. p9.CFrame = CFrame.new(2.69999982e-005, -11.7615223, 0.959302187, 1, -1.85016091e-008, -5.47516965e-009, -1.85012485e-008, -1.00000358, -1.1920929e-007, -5.47556001e-009, 5.36441803e-007, -1.00000429)
  939. p9.CanCollide = false
  940. p9.Locked = true
  941. p9.FormFactor = Enum.FormFactor.Custom
  942. p9.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  943. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  944. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  945. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  946. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  947. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  948. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  949. b9 = Instance.new("BlockMesh", p9)
  950. b9.Name = "Mesh"
  951. b9.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  952. p10 = Instance.new("Part", m8)
  953. p10.BrickColor = BrickColor.new("Really black")
  954. p10.Material = Enum.Material.Metal
  955. p10.Reflectance = 0.40000000596046
  956. p10.Name = "Block"
  957. p10.CFrame = CFrame.new(2.69999982e-005, -11.5473213, 1.65489614, 1, -9.20203203e-009, -1.69509313e-008, -1.84925799e-008, -0.707108974, -0.70710963, -5.47968293e-009, 0.707110405, -0.707109272)
  958. p10.CanCollide = false
  959. p10.Locked = true
  960. p10.FormFactor = Enum.FormFactor.Custom
  961. p10.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  962. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  963. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  964. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  965. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  966. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  967. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  968. b10 = Instance.new("BlockMesh", p10)
  969. b10.Name = "Mesh"
  970. b10.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  971. p11 = Instance.new("Part", m8)
  972. p11.BrickColor = BrickColor.new("Really black")
  973. p11.Material = Enum.Material.Metal
  974. p11.Name = "Circle"
  975. p11.CFrame = CFrame.new(2.7e-005, -11.6729841, -0.582877517, 1, -3.82200724e-008, -1.58314464e-008, -1.58310698e-008, 1.78813934e-007, -1.00000358, 3.82198735e-008, 1.00000429, 4.17232513e-007)
  976. p11.CanCollide = false
  977. p11.Locked = true
  978. p11.FormFactor = Enum.FormFactor.Custom
  979. p11.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  980. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  981. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  982. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  983. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  984. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  985. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  986. b11 = Instance.new("CylinderMesh", p11)
  987. b11.Name = "Mesh"
  988. b11.Scale = Vector3.new(1, 0.401569068, 1)
  989. p12 = Instance.new("Part", m8)
  990. p12.BrickColor = BrickColor.new("Really red")
  991. p12.Material = Enum.Material.Neon
  992. p12.Reflectance = 0.40000000596046
  993. p12.Name = "Block"
  994. p12.CFrame = CFrame.new(2.7e-005, -11.8956079, 0.673061967, 1, -1.56491176e-008, -8.14766423e-008, -1.31608857e-008, 0.939695954, -0.342021048, 8.1915303e-008, 0.342021108, 0.939696789)
  995. p12.CanCollide = false
  996. p12.Locked = true
  997. p12.FormFactor = Enum.FormFactor.Custom
  998. p12.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  999. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1005. b12 = Instance.new("BlockMesh", p12)
  1006. b12.Name = "Mesh"
  1007. b12.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  1008. p13 = Instance.new("Part", m8)
  1009. p13.BrickColor = BrickColor.new("Really red")
  1010. p13.Material = Enum.Material.Metal
  1011. p13.Name = "Block"
  1012. p13.CFrame = CFrame.new(2.7e-005, -11.85007, -1.195328, 1, -4.3058666e-008, -5.26493267e-008, -5.93263003e-008, -0.173648536, -0.984811068, 3.32618555e-008, 0.984811902, -0.173648447)
  1013. p13.CanCollide = false
  1014. p13.Locked = true
  1015. p13.FormFactor = Enum.FormFactor.Custom
  1016. p13.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1017. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1018. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1022. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1023. b13 = Instance.new("BlockMesh", p13)
  1024. b13.Name = "Mesh"
  1025. b13.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1026. p14 = Instance.new("Part", m8)
  1027. p14.BrickColor = BrickColor.new("Really black")
  1028. p14.Material = Enum.Material.Metal
  1029. p14.Reflectance = 0.40000000596046
  1030. p14.Name = "Block"
  1031. p14.CFrame = CFrame.new(2.7e-005, -11.6456089, 1.7017076, 1, -9.79658932e-009, -1.66229128e-008, -1.85012112e-008, -0.731357634, -0.681998909, -5.47637935e-009, 0.681999564, -0.731357992)
  1032. p14.CanCollide = false
  1033. p14.Locked = true
  1034. p14.FormFactor = Enum.FormFactor.Custom
  1035. p14.Size = Vector3.new(0.220499977, 0.220499977, 0.332047403)
  1036. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1042. b14 = Instance.new("BlockMesh", p14)
  1043. b14.Name = "Mesh"
  1044. b14.Scale = Vector3.new(0.267712682, 0.535425484, 1)
  1045. p15 = Instance.new("Part", m8)
  1046. p15.BrickColor = BrickColor.new("Really black")
  1047. p15.Material = Enum.Material.Metal
  1048. p15.Reflectance = 0.40000000596046
  1049. p15.Name = "Block"
  1050. p15.CFrame = CFrame.new(2.7e-005, -11.761528, 0.162387252, 1, -1.85015949e-008, -5.47519008e-009, -1.85012503e-008, -1.00000322, -4.47054163e-008, -5.47555512e-009, 3.27827877e-007, -1.00000393)
  1051. p15.CanCollide = false
  1052. p15.Locked = true
  1053. p15.FormFactor = Enum.FormFactor.Custom
  1054. p15.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1055. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1061. b15 = Instance.new("BlockMesh", p15)
  1062. b15.Name = "Mesh"
  1063. b15.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  1064. p16 = Instance.new("Part", m8)
  1065. p16.BrickColor = BrickColor.new("Really black")
  1066. p16.Material = Enum.Material.Metal
  1067. p16.Name = "Handle"
  1068. p16.CFrame = CFrame.new(2.7e-005, -11.8500671, -1.1215378, 1, -4.08902174e-008, -5.95266769e-008, -5.95264673e-008, 4.47054163e-008, -1.00000322, 4.08900469e-008, 1.00000393, 3.27827877e-007)
  1069. p16.CanCollide = false
  1070. p16.Locked = true
  1071. p16.FormFactor = Enum.FormFactor.Custom
  1072. p16.Size = Vector3.new(0.220499977, 0.97400558, 0.220499977)
  1073. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1077. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1078. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1079. b16 = Instance.new("BlockMesh", p16)
  1080. b16.Name = "Mesh"
  1081. b16.Scale = Vector3.new(0.602353573, 1, 0.602353573)
  1082. p17 = Instance.new("Part", m8)
  1083. p17.BrickColor = BrickColor.new("Really red")
  1084. p17.Material = Enum.Material.Neon
  1085. p17.Reflectance = 0.40000000596046
  1086. p17.Name = "Block"
  1087. p17.CFrame = CFrame.new(2.7e-005, -11.9214983, 1.1695174, 1, -3.32851862e-008, -1.92677874e-009, -3.32848948e-008, -1.00000322, 5.51342964e-007, -1.92714822e-009, -2.68220901e-007, -1.00000393)
  1088. p17.CanCollide = false
  1089. p17.Locked = true
  1090. p17.FormFactor = Enum.FormFactor.Custom
  1091. p17.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1092. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1097. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1098. b17 = Instance.new("BlockMesh", p17)
  1099. b17.Name = "Mesh"
  1100. b17.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  1101. p18 = Instance.new("Part", m8)
  1102. p18.BrickColor = BrickColor.new("Really black")
  1103. p18.Material = Enum.Material.Metal
  1104. p18.Name = "Block"
  1105. p18.CFrame = CFrame.new(2.70000019e-005, -11.9708652, -1.76740301, 1, -9.71849161e-008, 2.00753263e-007, -1.30568921e-007, -0.984810889, 0.173648641, 1.80827797e-007, -0.173648477, -0.984811544)
  1106. p18.CanCollide = false
  1107. p18.Locked = true
  1108. p18.FormFactor = Enum.FormFactor.Custom
  1109. p18.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1110. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. b18 = Instance.new("BlockMesh", p18)
  1117. b18.Name = "Mesh"
  1118. b18.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  1119. p19 = Instance.new("Part", m8)
  1120. p19.BrickColor = BrickColor.new("Really black")
  1121. p19.Material = Enum.Material.Metal
  1122. p19.Reflectance = 0.40000000596046
  1123. p19.Name = "Block"
  1124. p19.CFrame = CFrame.new(2.7e-005, -11.9090967, -0.10325551, 1, -1.85013889e-008, -5.47580603e-009, -1.85010975e-008, -1.0000031, -5.21540642e-008, -5.47609691e-009, 3.20374966e-007, -1.0000037)
  1125. p19.CanCollide = false
  1126. p19.Locked = true
  1127. p19.FormFactor = Enum.FormFactor.Custom
  1128. p19.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1129. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1133. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1134. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1135. b19 = Instance.new("BlockMesh", p19)
  1136. b19.Name = "Mesh"
  1137. b19.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  1138. p20 = Instance.new("Part", m8)
  1139. p20.BrickColor = BrickColor.new("Really red")
  1140. p20.Material = Enum.Material.Metal
  1141. p20.Name = "Block"
  1142. p20.CFrame = CFrame.new(2.69999982e-005, -11.8500719, -0.937063575, 1, -4.21245474e-008, -5.61353133e-008, -5.9592935e-008, -0.0871559381, -0.996197701, 3.70716151e-008, 0.996198356, -0.0871557295)
  1143. p20.CanCollide = false
  1144. p20.Locked = true
  1145. p20.FormFactor = Enum.FormFactor.Custom
  1146. p20.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1147. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1149. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1150. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1151. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1152. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1153. b20 = Instance.new("BlockMesh", p20)
  1154. b20.Name = "Mesh"
  1155. b20.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1156. p21 = Instance.new("Part", m8)
  1157. p21.BrickColor = BrickColor.new("Really black")
  1158. p21.Material = Enum.Material.Metal
  1159. p21.Name = "Block"
  1160. p21.CFrame = CFrame.new(2.69999982e-005, -11.7520199, -1.68255222, 1, 1.93163316e-008, -6.95866973e-008, -5.9526478e-008, 0.766046822, -0.642789543, 4.08900966e-008, 0.642789721, 0.766047418)
  1161. p21.CanCollide = false
  1162. p21.Locked = true
  1163. p21.FormFactor = Enum.FormFactor.Custom
  1164. p21.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1165. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1166. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1167. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1168. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1169. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1170. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1171. b21 = Instance.new("BlockMesh", p21)
  1172. b21.Name = "Mesh"
  1173. b21.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  1174. p22 = Instance.new("Part", m8)
  1175. p22.BrickColor = BrickColor.new("Really black")
  1176. p22.Material = Enum.Material.Metal
  1177. p22.Reflectance = 0.40000000596046
  1178. p22.Name = "Block"
  1179. p22.CFrame = CFrame.new(2.69999964e-005, -11.7615223, -0.368889451, 1, -1.85015665e-008, -5.4752185e-009, -1.85012787e-008, -1.0000031, -5.96046448e-008, -5.47550449e-009, 3.87430191e-007, -1.0000037)
  1180. p22.CanCollide = false
  1181. p22.Locked = true
  1182. p22.FormFactor = Enum.FormFactor.Custom
  1183. p22.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1184. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1185. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1186. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1187. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. b22 = Instance.new("BlockMesh", p22)
  1191. b22.Name = "Mesh"
  1192. b22.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  1193. p23 = Instance.new("Part", m8)
  1194. p23.BrickColor = BrickColor.new("Really red")
  1195. p23.Material = Enum.Material.Marble
  1196. p23.Name = "Block"
  1197. p23.CFrame = CFrame.new(2.69999964e-005, -11.85007, -0.641908407, 1, -4.0890189e-008, -5.95266485e-008, -5.95264922e-008, 5.96046448e-008, -1.0000031, 4.08900895e-008, 1.0000037, 3.87430191e-007)
  1198. p23.CanCollide = false
  1199. p23.Locked = true
  1200. p23.FormFactor = Enum.FormFactor.Custom
  1201. p23.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  1202. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1203. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1204. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1205. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1206. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. b23 = Instance.new("BlockMesh", p23)
  1209. b23.Name = "Mesh"
  1210. b23.Scale = Vector3.new(0.803138018, 0.133856371, 1)
  1211. p24 = Instance.new("Part", m8)
  1212. p24.BrickColor = BrickColor.new("Really black")
  1213. p24.Material = Enum.Material.Metal
  1214. p24.Name = "Block"
  1215. p24.CFrame = CFrame.new(2.69999964e-005, -11.948123, -1.6825552, 1, -7.18838464e-008, -6.93700386e-009, -5.95250889e-008, -0.766046762, -0.642789662, 4.08918908e-008, 0.642790258, -0.766046941)
  1216. p24.CanCollide = false
  1217. p24.Locked = true
  1218. p24.FormFactor = Enum.FormFactor.Custom
  1219. p24.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1220. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1221. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1222. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1223. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. b24 = Instance.new("BlockMesh", p24)
  1227. b24.Name = "Mesh"
  1228. b24.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  1229. p25 = Instance.new("Part", m8)
  1230. p25.BrickColor = BrickColor.new("Really red")
  1231. p25.Material = Enum.Material.Marble
  1232. p25.Name = "Block"
  1233. p25.CFrame = CFrame.new(2.69999964e-005, -11.8500681, -1.59377992, 1, -4.08901926e-008, -5.95266414e-008, -5.95264957e-008, 5.96046448e-008, -1.0000031, 4.0890086e-008, 1.00000358, 3.57627869e-007)
  1234. p25.CanCollide = false
  1235. p25.Locked = true
  1236. p25.FormFactor = Enum.FormFactor.Custom
  1237. p25.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1238. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1239. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1242. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. b25 = Instance.new("BlockMesh", p25)
  1245. b25.Name = "Mesh"
  1246. b25.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1247. p26 = Instance.new("Part", m8)
  1248. p26.BrickColor = BrickColor.new("Really black")
  1249. p26.Material = Enum.Material.Metal
  1250. p26.Reflectance = 0.40000000596046
  1251. p26.Name = "Block"
  1252. p26.CFrame = CFrame.new(2.69999982e-005, -11.7615213, 0.428021312, 1, -1.85015523e-008, -5.47521495e-009, -1.85012912e-008, -1.0000031, -5.96046448e-008, -5.47550272e-009, 3.57627869e-007, -1.00000358)
  1253. p26.CanCollide = false
  1254. p26.Locked = true
  1255. p26.FormFactor = Enum.FormFactor.Custom
  1256. p26.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1257. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1262. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1263. b26 = Instance.new("BlockMesh", p26)
  1264. b26.Name = "Mesh"
  1265. b26.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  1266. p27 = Instance.new("Part", m8)
  1267. p27.BrickColor = BrickColor.new("Really red")
  1268. p27.Material = Enum.Material.Metal
  1269. p27.Name = "Block"
  1270. p27.CFrame = CFrame.new(2.69999982e-005, -11.850069, -0.782109976, 1, -4.36853398e-008, -4.90951173e-008, -5.8728709e-008, -0.258819818, -0.965928853, 2.94898914e-008, 0.965929329, -0.25881961)
  1271. p27.CanCollide = false
  1272. p27.Locked = true
  1273. p27.FormFactor = Enum.FormFactor.Custom
  1274. p27.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1275. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1280. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1281. b27 = Instance.new("BlockMesh", p27)
  1282. b27.Name = "Mesh"
  1283. b27.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1284. p28 = Instance.new("Part", m8)
  1285. p28.BrickColor = BrickColor.new("Really black")
  1286. p28.Material = Enum.Material.SmoothPlastic
  1287. p28.Reflectance = 0.0099999997764826
  1288. p28.Name = "Circle"
  1289. p28.CFrame = CFrame.new(2.69999964e-005, -11.7615204, -0.52384901, 1, -3.82200298e-008, -1.58313824e-008, -1.58311213e-008, 5.96046448e-008, -1.0000031, 3.82198913e-008, 1.00000346, 3.57627869e-007)
  1290. p28.CanCollide = false
  1291. p28.Locked = true
  1292. p28.FormFactor = Enum.FormFactor.Custom
  1293. p28.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1294. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1295. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1296. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1297. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1298. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1299. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1300. b28 = Instance.new("CylinderMesh", p28)
  1301. b28.Name = "Mesh"
  1302. b28.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  1303. p29 = Instance.new("Part", m8)
  1304. p29.BrickColor = BrickColor.new("Really black")
  1305. p29.Material = Enum.Material.Metal
  1306. p29.Reflectance = 0.40000000596046
  1307. p29.Name = "Block"
  1308. p29.CFrame = CFrame.new(2.69999964e-005, -11.8228655, 1.48447084, 1, -1.48910964e-008, -1.22697976e-008, -1.85012574e-008, -0.920508504, -0.390730202, -5.47632872e-009, 0.39073059, -0.920508862)
  1309. p29.CanCollide = false
  1310. p29.Locked = true
  1311. p29.FormFactor = Enum.FormFactor.Custom
  1312. p29.Size = Vector3.new(0.220499977, 0.220499977, 0.31728977)
  1313. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1314. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1315. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1316. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1317. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1318. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1319. b29 = Instance.new("BlockMesh", p29)
  1320. b29.Name = "Mesh"
  1321. b29.Scale = Vector3.new(0.267712682, 0.803138077, 1)
  1322. p30 = Instance.new("Part", m8)
  1323. p30.BrickColor = BrickColor.new("Really red")
  1324. p30.Material = Enum.Material.Metal
  1325. p30.Name = "Block"
  1326. p30.CFrame = CFrame.new(2.69999928e-005, -11.850069, -1.35027885, 1, -4.36853398e-008, -4.90951102e-008, -5.87287019e-008, -0.25881964, -0.965928614, 2.94898825e-008, 0.96592921, -0.258819699)
  1327. p30.CanCollide = false
  1328. p30.Locked = true
  1329. p30.FormFactor = Enum.FormFactor.Custom
  1330. p30.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1331. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1332. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1333. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1334. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1335. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1336. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1337. b30 = Instance.new("BlockMesh", p30)
  1338. b30.Name = "Mesh"
  1339. b30.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1340. p31 = Instance.new("Part", m8)
  1341. p31.BrickColor = BrickColor.new("Really red")
  1342. p31.Material = Enum.Material.Neon
  1343. p31.Reflectance = 0.40000000596046
  1344. p31.Name = "Block"
  1345. p31.CFrame = CFrame.new(2.69999928e-005, -11.8927851, 0.869306803, -1, -7.71367752e-008, 3.05927976e-008, 7.41768247e-008, -0.996197402, -0.0871561319, 3.71997153e-008, -0.0871560946, 0.996197999)
  1346. p31.CanCollide = false
  1347. p31.Locked = true
  1348. p31.FormFactor = Enum.FormFactor.Custom
  1349. p31.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1350. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1353. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1354. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1356. b31 = Instance.new("BlockMesh", p31)
  1357. b31.Name = "Mesh"
  1358. b31.Scale = Vector3.new(0.334640861, 0.133856371, 0.870066345)
  1359. p32 = Instance.new("Part", m8)
  1360. p32.BrickColor = BrickColor.new("Really red")
  1361. p32.Material = Enum.Material.Metal
  1362. p32.Name = "Block"
  1363. p32.CFrame = CFrame.new(2.6999991e-005, -11.850071, -1.29862738, 1, -3.936497e-008, -6.27974615e-008, -5.91275011e-008, 0.0871559605, -0.996197343, 4.46881891e-008, 0.996197939, 0.0871561021)
  1364. p32.CanCollide = false
  1365. p32.Locked = true
  1366. p32.FormFactor = Enum.FormFactor.Custom
  1367. p32.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1368. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1369. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1371. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1372. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. b32 = Instance.new("BlockMesh", p32)
  1375. b32.Name = "Mesh"
  1376. b32.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1377. p33 = Instance.new("Part", m8)
  1378. p33.BrickColor = BrickColor.new("Really black")
  1379. p33.Material = Enum.Material.Metal
  1380. p33.Reflectance = 0.40000000596046
  1381. p33.Name = "Block"
  1382. p33.CFrame = CFrame.new(2.69999928e-005, -11.7615213, 0.693662167, 1, -1.8501531e-008, -5.47520784e-009, -1.85013107e-008, -1.00000262, -1.49011612e-007, -5.47550894e-009, 2.38418579e-007, -1.00000322)
  1383. p33.CanCollide = false
  1384. p33.Locked = true
  1385. p33.FormFactor = Enum.FormFactor.Custom
  1386. p33.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1387. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1390. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1391. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1392. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1393. b33 = Instance.new("BlockMesh", p33)
  1394. b33.Name = "Mesh"
  1395. b33.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  1396. p34 = Instance.new("Part", m8)
  1397. p34.BrickColor = BrickColor.new("Really red")
  1398. p34.Material = Enum.Material.Metal
  1399. p34.Name = "Block"
  1400. p34.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.988716245, 1, -4.08901997e-008, -5.9526613e-008, -5.95264993e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  1401. p34.CanCollide = false
  1402. p34.Locked = true
  1403. p34.FormFactor = Enum.FormFactor.Custom
  1404. p34.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1405. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1407. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1409. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1410. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1411. b34 = Instance.new("BlockMesh", p34)
  1412. b34.Name = "Mesh"
  1413. b34.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1414. p35 = Instance.new("Part", m8)
  1415. p35.BrickColor = BrickColor.new("Really red")
  1416. p35.Material = Enum.Material.Metal
  1417. p35.Name = "Block"
  1418. p35.CFrame = CFrame.new(2.69999928e-005, -11.8500662, -1.50523794, 1, -4.08901997e-008, -5.95266094e-008, -5.95265028e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  1419. p35.CanCollide = false
  1420. p35.Locked = true
  1421. p35.FormFactor = Enum.FormFactor.Custom
  1422. p35.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1423. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1424. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1429. b35 = Instance.new("BlockMesh", p35)
  1430. b35.Name = "Mesh"
  1431. b35.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1432. p36 = Instance.new("Part", m8)
  1433. p36.BrickColor = BrickColor.new("Really red")
  1434. p36.Material = Enum.Material.Metal
  1435. p36.Name = "Block"
  1436. p36.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.86679816, 1, -1.85015203e-008, -5.47520784e-009, -1.85013214e-008, -1.00000262, -1.49011612e-007, -5.47550938e-009, 2.38418579e-007, -1.00000322)
  1437. p36.CanCollide = false
  1438. p36.Locked = true
  1439. p36.FormFactor = Enum.FormFactor.Custom
  1440. p36.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1441. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1442. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1443. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1444. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1446. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1447. b36 = Instance.new("BlockMesh", p36)
  1448. b36.Name = "Mesh"
  1449. b36.Scale = Vector3.new(0.401568979, 0.200784534, 0.267712682)
  1450. p37 = Instance.new("Part", m8)
  1451. p37.BrickColor = BrickColor.new("Really red")
  1452. p37.Material = Enum.Material.Marble
  1453. p37.Name = "Circle"
  1454. p37.CFrame = CFrame.new(2.6999991e-005, -11.7319965, -0.523848772, 1, -3.82200369e-008, -1.58313576e-008, -1.58311444e-008, 1.49011612e-007, -1.00000262, 3.8219877e-008, 1.00000322, 2.38418579e-007)
  1455. p37.CanCollide = false
  1456. p37.Locked = true
  1457. p37.FormFactor = Enum.FormFactor.Custom
  1458. p37.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1459. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1465. b37 = Instance.new("CylinderMesh", p37)
  1466. b37.Name = "Mesh"
  1467. b37.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  1468. p38 = Instance.new("Part", m8)
  1469. p38.BrickColor = BrickColor.new("Really black")
  1470. p38.Material = Enum.Material.Metal
  1471. p38.Name = "Block"
  1472. p38.CFrame = CFrame.new(2.69999928e-005, -11.8021069, -1.64543033, 1, -4.08901997e-008, -5.95266023e-008, -5.95265099e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  1473. p38.CanCollide = false
  1474. p38.Locked = true
  1475. p38.FormFactor = Enum.FormFactor.Custom
  1476. p38.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1477. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1478. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1482. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1483. b38 = Instance.new("BlockMesh", p38)
  1484. b38.Name = "Mesh"
  1485. b38.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  1486. p39 = Instance.new("Part", m8)
  1487. p39.BrickColor = BrickColor.new("Really black")
  1488. p39.Material = Enum.Material.Metal
  1489. p39.Name = "Block"
  1490. p39.CFrame = CFrame.new(2.6999991e-005, -11.8980207, -1.64543033, 1, -4.08901997e-008, -5.95265988e-008, -5.95265135e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  1491. p39.CanCollide = false
  1492. p39.Locked = true
  1493. p39.FormFactor = Enum.FormFactor.Custom
  1494. p39.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1495. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1500. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1501. b39 = Instance.new("BlockMesh", p39)
  1502. b39.Name = "Mesh"
  1503. b39.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  1504. p40 = Instance.new("Part", m8)
  1505. p40.BrickColor = BrickColor.new("Really black")
  1506. p40.Material = Enum.Material.Metal
  1507. p40.Name = "Block"
  1508. p40.CFrame = CFrame.new(2.6999991e-005, -11.9044991, -1.84857893, 1, 2.62652719e-007, 4.66475456e-007, -2.72653665e-007, -0.500001431, 0.866027534, 4.6070295e-007, -0.866027951, -0.500001788)
  1509. p40.CanCollide = false
  1510. p40.Locked = true
  1511. p40.FormFactor = Enum.FormFactor.Custom
  1512. p40.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1513. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1518. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1519. b40 = Instance.new("BlockMesh", p40)
  1520. b40.Name = "Mesh"
  1521. b40.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  1522. p41 = Instance.new("Part", m8)
  1523. p41.BrickColor = BrickColor.new("Really red")
  1524. p41.Material = Enum.Material.Neon
  1525. p41.Reflectance = 0.40000000596046
  1526. p41.Name = "Block"
  1527. p41.CFrame = CFrame.new(2.6999991e-005, -11.8956079, 0.422182083, 1, -1.56492277e-008, -8.1476486e-008, -1.31610101e-008, 0.939694941, -0.34202069, 8.19153172e-008, 0.34202072, 0.939695537)
  1528. p41.CanCollide = false
  1529. p41.Locked = true
  1530. p41.FormFactor = Enum.FormFactor.Custom
  1531. p41.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1532. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1536. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1537. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1538. b41 = Instance.new("BlockMesh", p41)
  1539. b41.Name = "Mesh"
  1540. b41.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  1541. p42 = Instance.new("Part", m8)
  1542. p42.BrickColor = BrickColor.new("Earth green")
  1543. p42.Material = Enum.Material.Metal
  1544. p42.Name = "Block"
  1545. p42.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.664048076, 1, -4.0890118e-008, -5.95265348e-008, -5.95265384e-008, 1.49011612e-007, -1.00000226, 4.08901286e-008, 1.00000286, 3.42726707e-007)
  1546. p42.CanCollide = false
  1547. p42.Locked = true
  1548. p42.FormFactor = Enum.FormFactor.Custom
  1549. p42.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1550. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1554. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1555. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1556. b42 = Instance.new("BlockMesh", p42)
  1557. b42.Name = "Mesh"
  1558. b42.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  1559. p43 = Instance.new("Part", m8)
  1560. p43.BrickColor = BrickColor.new("Really black")
  1561. p43.Material = Enum.Material.Metal
  1562. p43.Name = "Block"
  1563. p43.CFrame = CFrame.new(2.69999964e-005, -11.7292862, -1.76739728, 1, 6.57225172e-008, -2.99325187e-008, -5.95263288e-008, 0.984809816, 0.173648655, 4.08903809e-008, -0.173648939, 0.984810352)
  1564. p43.CanCollide = false
  1565. p43.Locked = true
  1566. p43.FormFactor = Enum.FormFactor.Custom
  1567. p43.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1568. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1571. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1572. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1573. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1574. b43 = Instance.new("BlockMesh", p43)
  1575. b43.Name = "Mesh"
  1576. b43.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  1577. p44 = Instance.new("Part", m8)
  1578. p44.BrickColor = BrickColor.new("Really red")
  1579. p44.Material = Enum.Material.Marble
  1580. p44.Name = "Circle"
  1581. p44.CFrame = CFrame.new(2.69999946e-005, -11.968133, -0.641907811, 1, -3.82199516e-008, -1.58312723e-008, -1.58311995e-008, 1.49011612e-007, -1.00000203, 3.8219941e-008, 1.00000262, 3.27825546e-007)
  1582. p44.CanCollide = false
  1583. p44.Locked = true
  1584. p44.FormFactor = Enum.FormFactor.Custom
  1585. p44.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1586. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1590. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1591. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1592. b44 = Instance.new("CylinderMesh", p44)
  1593. b44.Name = "Mesh"
  1594. b44.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  1595. p45 = Instance.new("Part", m8)
  1596. p45.BrickColor = BrickColor.new("Really red")
  1597. p45.Material = Enum.Material.Neon
  1598. p45.Reflectance = 0.40000000596046
  1599. p45.Name = "Block"
  1600. p45.CFrame = CFrame.new(2.69999964e-005, -11.8956099, -0.0648244023, 1, -1.56492419e-008, -8.14764718e-008, -1.31610207e-008, 0.939694583, -0.342020601, 8.19152959e-008, 0.342020601, 0.93969512)
  1601. p45.CanCollide = false
  1602. p45.Locked = true
  1603. p45.FormFactor = Enum.FormFactor.Custom
  1604. p45.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1605. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1607. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1608. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1609. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1610. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1611. b45 = Instance.new("BlockMesh", p45)
  1612. b45.Name = "Mesh"
  1613. b45.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  1614. p46 = Instance.new("Part", m8)
  1615. p46.BrickColor = BrickColor.new("Really black")
  1616. p46.Material = Enum.Material.Metal
  1617. p46.Name = "Block"
  1618. p46.CFrame = CFrame.new(2.69999946e-005, -11.8500729, -0.582874656, 1, -4.08901037e-008, -5.95265135e-008, -5.95265313e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
  1619. p46.CanCollide = false
  1620. p46.Locked = true
  1621. p46.FormFactor = Enum.FormFactor.Custom
  1622. p46.Size = Vector3.new(0.236122593, 0.220499977, 0.354183882)
  1623. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1626. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1627. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1628. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1629. b46 = Instance.new("BlockMesh", p46)
  1630. b46.Name = "Mesh"
  1631. b46.Scale = Vector3.new(1, 0.401569068, 1)
  1632. p47 = Instance.new("Part", m8)
  1633. p47.BrickColor = BrickColor.new("Earth green")
  1634. p47.Material = Enum.Material.Metal
  1635. p47.Name = "Block"
  1636. p47.CFrame = CFrame.new(2.69999946e-005, -11.850071, -1.56426501, 1, -4.08901037e-008, -5.95265099e-008, -5.95265348e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
  1637. p47.CanCollide = false
  1638. p47.Locked = true
  1639. p47.FormFactor = Enum.FormFactor.Custom
  1640. p47.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1641. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1642. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1643. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1644. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1645. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1646. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1647. b47 = Instance.new("BlockMesh", p47)
  1648. b47.Name = "Mesh"
  1649. b47.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  1650. p48 = Instance.new("Part", m8)
  1651. p48.BrickColor = BrickColor.new("Really red")
  1652. p48.Material = Enum.Material.Metal
  1653. p48.Name = "Block"
  1654. p48.CFrame = CFrame.new(2.69999964e-005, -11.8500748, -1.04036665, 1, -3.75603939e-008, -6.5922805e-008, -5.83990385e-008, 0.173648417, -0.984809697, 4.84371583e-008, 0.984810054, 0.173648626)
  1655. p48.CanCollide = false
  1656. p48.Locked = true
  1657. p48.FormFactor = Enum.FormFactor.Custom
  1658. p48.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1659. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1660. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1661. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1662. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1663. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1664. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1665. b48 = Instance.new("BlockMesh", p48)
  1666. b48.Name = "Mesh"
  1667. b48.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1668. p49 = Instance.new("Part", m8)
  1669. p49.BrickColor = BrickColor.new("Really red")
  1670. p49.Material = Enum.Material.Metal
  1671. p49.Name = "Block"
  1672. p49.CFrame = CFrame.new(2.69999928e-005, -11.8500729, -0.730450988, 1, -3.7560401e-008, -6.59227979e-008, -5.83990456e-008, 0.173648179, -0.984809756, 4.84371476e-008, 0.984810114, 0.173648387)
  1673. p49.CanCollide = false
  1674. p49.Locked = true
  1675. p49.FormFactor = Enum.FormFactor.Custom
  1676. p49.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1677. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1678. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1679. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1680. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1681. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1682. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1683. b49 = Instance.new("BlockMesh", p49)
  1684. b49.Name = "Mesh"
  1685. b49.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1686. p50 = Instance.new("Part", m8)
  1687. p50.BrickColor = BrickColor.new("Really black")
  1688. p50.Material = Enum.Material.Metal
  1689. p50.Reflectance = 0.40000000596046
  1690. p50.Name = "Block"
  1691. p50.CFrame = CFrame.new(2.69999928e-005, -11.9042749, 1.22774267, 1, -1.79535924e-008, -7.06764602e-009, -1.85012361e-008, -0.996196568, -0.0871560201, -5.47609824e-009, 0.0871561989, -0.996196926)
  1692. p50.CanCollide = false
  1693. p50.Locked = true
  1694. p50.FormFactor = Enum.FormFactor.Custom
  1695. p50.Size = Vector3.new(0.220499977, 0.220499977, 0.287774384)
  1696. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1697. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1698. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1699. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1700. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1701. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1702. b50 = Instance.new("BlockMesh", p50)
  1703. b50.Name = "Mesh"
  1704. b50.Scale = Vector3.new(0.267712682, 0.936994493, 1)
  1705. p51 = Instance.new("Part", m8)
  1706. p51.BrickColor = BrickColor.new("Really red")
  1707. p51.Material = Enum.Material.Metal
  1708. p51.Name = "Block"
  1709. p51.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.40193033, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558785, -0.996196568, 4.46882424e-008, 0.996196926, 0.0871560574)
  1710. p51.CanCollide = false
  1711. p51.Locked = true
  1712. p51.FormFactor = Enum.FormFactor.Custom
  1713. p51.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1714. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1715. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1716. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1717. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1719. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1720. b51 = Instance.new("BlockMesh", p51)
  1721. b51.Name = "Mesh"
  1722. b51.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1723. p52 = Instance.new("Part", m8)
  1724. p52.BrickColor = BrickColor.new("Really red")
  1725. p52.Material = Enum.Material.Metal
  1726. p52.Name = "Block"
  1727. p52.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.09201384, 1, -4.21244408e-008, -5.61351641e-008, -5.95929883e-008, -0.0871557593, -0.996196628, 3.70716471e-008, 0.996196985, -0.0871556401)
  1728. p52.CanCollide = false
  1729. p52.Locked = true
  1730. p52.FormFactor = Enum.FormFactor.Custom
  1731. p52.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1732. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1733. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1734. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1735. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1736. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1737. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1738. b52 = Instance.new("BlockMesh", p52)
  1739. b52.Name = "Mesh"
  1740. b52.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1741. p53 = Instance.new("Part", m8)
  1742. p53.BrickColor = BrickColor.new("Really black")
  1743. p53.Material = Enum.Material.Metal
  1744. p53.Name = "Block"
  1745. p53.CFrame = CFrame.new(2.69999928e-005, -11.7956429, -1.84857762, 1, 6.51748948e-008, 3.11061044e-008, -5.95261795e-008, 0.500001013, 0.866027117, 4.08900611e-008, -0.866027415, 0.500001013)
  1746. p53.CanCollide = false
  1747. p53.Locked = true
  1748. p53.FormFactor = Enum.FormFactor.Custom
  1749. p53.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1750. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1751. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1753. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1754. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1755. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1756. b53 = Instance.new("BlockMesh", p53)
  1757. b53.Name = "Mesh"
  1758. b53.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  1759. p54 = Instance.new("Part", m8)
  1760. p54.BrickColor = BrickColor.new("Really black")
  1761. p54.Material = Enum.Material.SmoothPlastic
  1762. p54.Reflectance = 0.0099999997764826
  1763. p54.Name = "Circle"
  1764. p54.CFrame = CFrame.new(2.69999928e-005, -11.9386101, -0.523846626, 1, -3.82199445e-008, -1.58312456e-008, -1.58311995e-008, 1.04308441e-007, -1.00000203, 3.82199303e-008, 1.00000226, 2.75671823e-007)
  1765. p54.CanCollide = false
  1766. p54.Locked = true
  1767. p54.FormFactor = Enum.FormFactor.Custom
  1768. p54.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1769. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1770. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1771. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1772. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1773. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1774. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1775. b54 = Instance.new("CylinderMesh", p54)
  1776. b54.Name = "Mesh"
  1777. b54.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  1778. p55 = Instance.new("Part", m8)
  1779. p55.BrickColor = BrickColor.new("Really black")
  1780. p55.Material = Enum.Material.Metal
  1781. p55.Reflectance = 0.40000000596046
  1782. p55.Name = "Block"
  1783. p55.CFrame = CFrame.new(2.69999928e-005, -11.7615232, -0.103249788, 1, -1.85014084e-008, -5.47530199e-009, -1.85013729e-008, -1.00000203, -1.04308441e-007, -5.47541257e-009, 2.75671823e-007, -1.00000226)
  1784. p55.CanCollide = false
  1785. p55.Locked = true
  1786. p55.FormFactor = Enum.FormFactor.Custom
  1787. p55.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1788. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1790. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1791. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1792. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1793. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1794. b55 = Instance.new("BlockMesh", p55)
  1795. b55.Name = "Mesh"
  1796. b55.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  1797. p56 = Instance.new("Part", m8)
  1798. p56.BrickColor = BrickColor.new("Really black")
  1799. p56.Material = Enum.Material.Metal
  1800. p56.Reflectance = 0.40000000596046
  1801. p56.Name = "Block"
  1802. p56.CFrame = CFrame.new(2.69999928e-005, -11.9091034, -0.368891358, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
  1803. p56.CanCollide = false
  1804. p56.Locked = true
  1805. p56.FormFactor = Enum.FormFactor.Custom
  1806. p56.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1807. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1809. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1810. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1811. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1812. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1813. b56 = Instance.new("BlockMesh", p56)
  1814. b56.Name = "Mesh"
  1815. b56.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  1816. p57 = Instance.new("Part", m8)
  1817. p57.BrickColor = BrickColor.new("Really black")
  1818. p57.Material = Enum.Material.Metal
  1819. p57.Reflectance = 0.40000000596046
  1820. p57.Name = "Block"
  1821. p57.CFrame = CFrame.new(2.69999928e-005, -11.9091005, 0.693658948, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
  1822. p57.CanCollide = false
  1823. p57.Locked = true
  1824. p57.FormFactor = Enum.FormFactor.Custom
  1825. p57.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1826. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1827. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1828. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1829. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1830. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1831. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1832. b57 = Instance.new("BlockMesh", p57)
  1833. b57.Name = "Mesh"
  1834. b57.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  1835. p58 = Instance.new("Part", m8)
  1836. p58.BrickColor = BrickColor.new("Really red")
  1837. p58.Material = Enum.Material.Marble
  1838. p58.Name = "Block"
  1839. p58.CFrame = CFrame.new(2.69999928e-005, -11.850071, -0.523846745, 1, -4.08901073e-008, -5.95264922e-008, -5.95265384e-008, 1.04308441e-007, -1.00000203, 4.08901144e-008, 1.00000226, 2.75671823e-007)
  1840. p58.CanCollide = false
  1841. p58.Locked = true
  1842. p58.FormFactor = Enum.FormFactor.Custom
  1843. p58.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  1844. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1845. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1846. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1847. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1848. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1849. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1850. b58 = Instance.new("BlockMesh", p58)
  1851. b58.Name = "Mesh"
  1852. b58.Scale = Vector3.new(0.936994374, 0.133856371, 1)
  1853. p59 = Instance.new("Part", m8)
  1854. p59.BrickColor = BrickColor.new("Really red")
  1855. p59.Material = Enum.Material.Metal
  1856. p59.Name = "Block"
  1857. p59.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.62329435, 1, -1.85014031e-008, -5.47530021e-009, -1.85013782e-008, -1.00000203, -1.04308441e-007, -5.47540946e-009, 2.75671823e-007, -1.00000226)
  1858. p59.CanCollide = false
  1859. p59.Locked = true
  1860. p59.FormFactor = Enum.FormFactor.Custom
  1861. p59.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1862. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1864. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1865. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1866. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1867. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1868. b59 = Instance.new("BlockMesh", p59)
  1869. b59.Name = "Mesh"
  1870. b59.Scale = Vector3.new(0.602353573, 0.200784534, 0.468497276)
  1871. p60 = Instance.new("Part", m8)
  1872. p60.BrickColor = BrickColor.new("Really red")
  1873. p60.Material = Enum.Material.Marble
  1874. p60.Name = "Circle"
  1875. p60.CFrame = CFrame.new(2.69999928e-005, -11.9755096, -0.523859799, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
  1876. p60.CanCollide = false
  1877. p60.Locked = true
  1878. p60.FormFactor = Enum.FormFactor.Custom
  1879. p60.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1880. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1881. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1882. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1883. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1884. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1885. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1886. b60 = Instance.new("CylinderMesh", p60)
  1887. b60.Name = "Mesh"
  1888. b60.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  1889. p61 = Instance.new("Part", m8)
  1890. p61.BrickColor = BrickColor.new("Really black")
  1891. p61.Material = Enum.Material.Metal
  1892. p61.Name = "Circle"
  1893. p61.CFrame = CFrame.new(2.69999928e-005, -12.0271645, -0.582878888, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
  1894. p61.CanCollide = false
  1895. p61.Locked = true
  1896. p61.FormFactor = Enum.FormFactor.Custom
  1897. p61.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  1898. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1899. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1900. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1901. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1902. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1903. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1904. b61 = Instance.new("CylinderMesh", p61)
  1905. b61.Name = "Mesh"
  1906. b61.Scale = Vector3.new(1, 0.401569068, 1)
  1907. p62 = Instance.new("Part", m8)
  1908. p62.BrickColor = BrickColor.new("Really red")
  1909. p62.Material = Enum.Material.Metal
  1910. p62.Name = "Block"
  1911. p62.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.833758533, 1, -4.08901002e-008, -5.95264851e-008, -5.95265455e-008, -4.47034836e-008, -1.00000203, 4.08901002e-008, 1.00000226, 1.2665987e-007)
  1912. p62.CanCollide = false
  1913. p62.Locked = true
  1914. p62.FormFactor = Enum.FormFactor.Custom
  1915. p62.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1916. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1917. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1918. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1919. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1920. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1921. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1922. b62 = Instance.new("BlockMesh", p62)
  1923. b62.Name = "Mesh"
  1924. b62.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1925. p63 = Instance.new("Part", m8)
  1926. p63.BrickColor = BrickColor.new("Really red")
  1927. p63.Material = Enum.Material.Metal
  1928. p63.Name = "Block"
  1929. p63.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.14366531, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558636, -0.996196747, 4.4688246e-008, 0.996196866, 0.0871560499)
  1930. p63.CanCollide = false
  1931. p63.Locked = true
  1932. p63.FormFactor = Enum.FormFactor.Custom
  1933. p63.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1934. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1935. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1936. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1937. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1938. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1939. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1940. b63 = Instance.new("BlockMesh", p63)
  1941. b63.Name = "Mesh"
  1942. b63.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1943. p64 = Instance.new("Part", m8)
  1944. p64.BrickColor = BrickColor.new("Really black")
  1945. p64.Material = Enum.Material.SmoothPlastic
  1946. p64.Reflectance = 0.0099999997764826
  1947. p64.Name = "Block"
  1948. p64.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.523846924, 1, -4.08901002e-008, -5.95264957e-008, -5.95265419e-008, 1.04308128e-007, -1.00000203, 4.0890118e-008, 1.00000215, 2.83122063e-007)
  1949. p64.CanCollide = false
  1950. p64.Locked = true
  1951. p64.FormFactor = Enum.FormFactor.Custom
  1952. p64.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1953. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1954. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1955. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1956. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1957. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1958. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1959. b64 = Instance.new("BlockMesh", p64)
  1960. b64.Name = "Mesh"
  1961. b64.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  1962. p65 = Instance.new("Part", m8)
  1963. p65.BrickColor = BrickColor.new("Really red")
  1964. p65.Material = Enum.Material.Metal
  1965. p65.Name = "Block"
  1966. p65.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.885411739, 1, -3.75603939e-008, -6.59227908e-008, -5.83990456e-008, 0.173648402, -0.984809816, 4.84371547e-008, 0.984809875, 0.173648596)
  1967. p65.CanCollide = false
  1968. p65.Locked = true
  1969. p65.FormFactor = Enum.FormFactor.Custom
  1970. p65.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  1971. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1972. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1973. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1974. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1975. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1976. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1977. b65 = Instance.new("BlockMesh", p65)
  1978. b65.Name = "Mesh"
  1979. b65.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  1980. p66 = Instance.new("Part", m8)
  1981. p66.BrickColor = BrickColor.new("Really black")
  1982. p66.Material = Enum.Material.Metal
  1983. p66.Reflectance = 0.40000000596046
  1984. p66.Name = "Block"
  1985. p66.CFrame = CFrame.new(2.69999946e-005, -11.7501383, 1.2199297, 1, -1.79537896e-008, -7.06697278e-009, -1.85013764e-008, -0.996196747, -0.0871560127, -5.47540502e-009, 0.0871562064, -0.996196806)
  1986. p66.CanCollide = false
  1987. p66.Locked = true
  1988. p66.FormFactor = Enum.FormFactor.Custom
  1989. p66.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  1990. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1991. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1992. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1993. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1994. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1995. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1996. b66 = Instance.new("BlockMesh", p66)
  1997. b66.Name = "Mesh"
  1998. b66.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  1999. p67 = Instance.new("Part", m8)
  2000. p67.BrickColor = BrickColor.new("Really red")
  2001. p67.Material = Enum.Material.Metal
  2002. p67.Name = "Block"
  2003. p67.CFrame = CFrame.new(2.69999928e-005, -11.8500738, -1.45358396, 1, -4.36852119e-008, -4.90949965e-008, -5.87287552e-008, -0.258819461, -0.96592778, 2.94899358e-008, 0.965927899, -0.258819312)
  2004. p67.CanCollide = false
  2005. p67.Locked = true
  2006. p67.FormFactor = Enum.FormFactor.Custom
  2007. p67.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2008. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2009. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2010. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2011. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2012. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2013. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2014. b67 = Instance.new("BlockMesh", p67)
  2015. b67.Name = "Mesh"
  2016. b67.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  2017. p68 = Instance.new("Part", m8)
  2018. p68.BrickColor = BrickColor.new("Really black")
  2019. p68.Material = Enum.Material.Metal
  2020. p68.Reflectance = 0.40000000596046
  2021. p68.Name = "Block"
  2022. p68.CFrame = CFrame.new(2.69999946e-005, -11.9090977, 0.162382364, 1, -1.85012148e-008, -5.47590062e-009, -1.85012077e-008, -1.00000191, -1.1920929e-007, -5.47599832e-009, 2.98023224e-007, -1.00000203)
  2023. p68.CanCollide = false
  2024. p68.Locked = true
  2025. p68.FormFactor = Enum.FormFactor.Custom
  2026. p68.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  2027. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2028. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2029. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2030. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2031. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2032. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2033. b68 = Instance.new("BlockMesh", p68)
  2034. b68.Name = "Mesh"
  2035. b68.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  2036. p69 = Instance.new("Part", m8)
  2037. p69.BrickColor = BrickColor.new("Earth green")
  2038. p69.Material = Enum.Material.Metal
  2039. p69.Name = "Block"
  2040. p69.CFrame = CFrame.new(2.69999946e-005, -11.8500662, -1.6085372, 1, -4.08901002e-008, -5.9526478e-008, -5.95265455e-008, 1.1920929e-007, -1.00000191, 4.08901073e-008, 1.00000203, 2.98023224e-007)
  2041. p69.CanCollide = false
  2042. p69.Locked = true
  2043. p69.FormFactor = Enum.FormFactor.Custom
  2044. p69.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2045. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2046. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2047. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2048. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2049. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2050. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2051. b69 = Instance.new("BlockMesh", p69)
  2052. b69.Name = "Mesh"
  2053. b69.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  2054. p70 = Instance.new("Part", m8)
  2055. p70.BrickColor = BrickColor.new("Really red")
  2056. p70.Material = Enum.Material.Marble
  2057. p70.Name = "Circle"
  2058. p70.CFrame = CFrame.new(2.69999946e-005, -11.7320013, -0.641902268, 1, -3.82199374e-008, -1.58312261e-008, -1.5831219e-008, 1.1920929e-007, -1.00000191, 3.82199268e-008, 1.00000203, 2.98023224e-007)
  2059. p70.CanCollide = false
  2060. p70.Locked = true
  2061. p70.FormFactor = Enum.FormFactor.Custom
  2062. p70.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2063. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2064. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2065. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2066. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2067. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2068. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2069. b70 = Instance.new("CylinderMesh", p70)
  2070. b70.Name = "Mesh"
  2071. b70.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  2072. p71 = Instance.new("WedgePart", m8)
  2073. p71.BrickColor = BrickColor.new("Really red")
  2074. p71.Material = Enum.Material.Neon
  2075. p71.Reflectance = 0.40000000596046
  2076. p71.Name = "Wedge"
  2077. p71.CFrame = CFrame.new(2.69999946e-005, -11.8880224, 0.31500864, -1, 5.94633809e-009, -9.26972419e-008, -8.91409044e-008, -0.342020452, 0.939694583, -2.61165116e-008, 0.939694643, 0.342020303)
  2078. p71.CanCollide = false
  2079. p71.Locked = true
  2080. p71.FormFactor = Enum.FormFactor.Custom
  2081. p71.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2082. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2083. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2084. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2085. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2086. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. b71 = Instance.new("SpecialMesh", p71)
  2089. b71.MeshType = Enum.MeshType.Wedge
  2090. b71.Name = "Mesh"
  2091. b71.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2092. p72 = Instance.new("WedgePart", m8)
  2093. p72.BrickColor = BrickColor.new("Really red")
  2094. p72.Material = Enum.Material.Neon
  2095. p72.Reflectance = 0.40000000596046
  2096. p72.Name = "Wedge"
  2097. p72.CFrame = CFrame.new(2.69999964e-005, -11.8783607, 0.789086521, 1, -5.68298901e-008, -8.86828389e-011, -5.04137887e-009, -0.0871561319, -0.996196628, 5.66059342e-008, 0.996196628, -0.0871559829)
  2098. p72.CanCollide = false
  2099. p72.Locked = true
  2100. p72.FormFactor = Enum.FormFactor.Custom
  2101. p72.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2102. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2103. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2104. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2105. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2106. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. b72 = Instance.new("SpecialMesh", p72)
  2109. b72.MeshType = Enum.MeshType.Wedge
  2110. b72.Name = "Mesh"
  2111. b72.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  2112. p73 = Instance.new("WedgePart", m8)
  2113. p73.BrickColor = BrickColor.new("Really red")
  2114. p73.Material = Enum.Material.Neon
  2115. p73.Reflectance = 0.40000000596046
  2116. p73.Name = "Wedge"
  2117. p73.CFrame = CFrame.new(2.69999946e-005, -11.9179726, -0.200317383, -1, 8.86055176e-008, -9.63062732e-008, 1.2080335e-007, 0.342020512, -0.939694524, -5.03233473e-008, -0.939694524, -0.342020392)
  2118. p73.CanCollide = false
  2119. p73.Locked = true
  2120. p73.FormFactor = Enum.FormFactor.Custom
  2121. p73.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2122. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2123. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2126. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2128. b73 = Instance.new("SpecialMesh", p73)
  2129. b73.MeshType = Enum.MeshType.Wedge
  2130. b73.Name = "Mesh"
  2131. b73.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2132. p74 = Instance.new("WedgePart", m8)
  2133. p74.BrickColor = BrickColor.new("Really red")
  2134. p74.Material = Enum.Material.Neon
  2135. p74.Reflectance = 0.40000000596046
  2136. p74.Name = "Wedge"
  2137. p74.CFrame = CFrame.new(2.69999946e-005, -11.8857021, 0.788440466, 1, -3.05928971e-008, 8.75114523e-008, -8.45122159e-008, 0.087156117, 0.996196568, -3.81037424e-008, -0.996196568, 0.0871560276)
  2138. p74.CanCollide = false
  2139. p74.Locked = true
  2140. p74.FormFactor = Enum.FormFactor.Custom
  2141. p74.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2142. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2144. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2145. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2146. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2147. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2148. b74 = Instance.new("SpecialMesh", p74)
  2149. b74.MeshType = Enum.MeshType.Wedge
  2150. b74.Name = "Mesh"
  2151. b74.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2152. p75 = Instance.new("WedgePart", m8)
  2153. p75.BrickColor = BrickColor.new("Really red")
  2154. p75.Material = Enum.Material.Neon
  2155. p75.Reflectance = 0.40000000596046
  2156. p75.Name = "Wedge"
  2157. p75.CFrame = CFrame.new(2.69999946e-005, -11.8681011, -0.402033836, 1, -8.62400213e-008, 8.8834895e-009, 2.11481392e-008, 0.342020482, 0.939694464, -8.40776622e-008, -0.939694464, 0.342020422)
  2158. p75.CanCollide = false
  2159. p75.Locked = true
  2160. p75.FormFactor = Enum.FormFactor.Custom
  2161. p75.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2162. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2163. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2164. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2165. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2166. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2167. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2168. b75 = Instance.new("SpecialMesh", p75)
  2169. b75.MeshType = Enum.MeshType.Wedge
  2170. b75.Name = "Mesh"
  2171. b75.Scale = Vector3.new(0.334640861, 0.267712742, 0.200784534)
  2172. p76 = Instance.new("WedgePart", m8)
  2173. p76.BrickColor = BrickColor.new("Really red")
  2174. p76.Material = Enum.Material.Neon
  2175. p76.Reflectance = 0.40000000596046
  2176. p76.Name = "Wedge"
  2177. p76.CFrame = CFrame.new(2.69999946e-005, -11.8880215, -0.171991348, -1, 5.94633143e-009, -9.26972206e-008, -8.91408973e-008, -0.342020363, 0.939694405, -2.61165383e-008, 0.939694405, 0.342020303)
  2178. p76.CanCollide = false
  2179. p76.Locked = true
  2180. p76.FormFactor = Enum.FormFactor.Custom
  2181. p76.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2182. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2183. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2184. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2185. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2186. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2187. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2188. b76 = Instance.new("SpecialMesh", p76)
  2189. b76.MeshType = Enum.MeshType.Wedge
  2190. b76.Name = "Mesh"
  2191. b76.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2192. p77 = Instance.new("WedgePart", m8)
  2193. p77.BrickColor = BrickColor.new("Really red")
  2194. p77.Material = Enum.Material.Neon
  2195. p77.Reflectance = 0.40000000596046
  2196. p77.Name = "Wedge"
  2197. p77.CFrame = CFrame.new(2.69999946e-005, -11.9557362, 1.02495766, -1, 8.82909745e-008, -9.99014986e-008, 1.1934894e-007, 0.258819342, -0.965927422, -5.94261955e-008, -0.965927422, -0.258819282)
  2198. p77.CanCollide = false
  2199. p77.Locked = true
  2200. p77.FormFactor = Enum.FormFactor.Custom
  2201. p77.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2202. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2203. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2204. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2205. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2206. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2207. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2208. b77 = Instance.new("SpecialMesh", p77)
  2209. b77.MeshType = Enum.MeshType.Wedge
  2210. b77.Name = "Mesh"
  2211. b77.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2212. p78 = Instance.new("WedgePart", m8)
  2213. p78.BrickColor = BrickColor.new("Really red")
  2214. p78.Material = Enum.Material.Neon
  2215. p78.Reflectance = 0.40000000596046
  2216. p78.Name = "Wedge"
  2217. p78.CFrame = CFrame.new(2.69999946e-005, -11.8602781, -0.161903143, -1, 8.14764078e-008, 5.27443866e-009, 2.29101609e-008, 0.342020273, -0.939694166, -7.83668526e-008, -0.939694166, -0.342020243)
  2218. p78.CanCollide = false
  2219. p78.Locked = true
  2220. p78.FormFactor = Enum.FormFactor.Custom
  2221. p78.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2222. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2223. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2224. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2225. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2226. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2227. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2228. b78 = Instance.new("SpecialMesh", p78)
  2229. b78.MeshType = Enum.MeshType.Wedge
  2230. b78.Name = "Mesh"
  2231. b78.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2232. p79 = Instance.new("WedgePart", m8)
  2233. p79.BrickColor = BrickColor.new("Really red")
  2234. p79.Material = Enum.Material.Neon
  2235. p79.Reflectance = 0.40000000596046
  2236. p79.Name = "Wedge"
  2237. p79.CFrame = CFrame.new(2.69999964e-005, -11.9133091, 0.0700842142, 1, -1.68899177e-007, 5.27444577e-009, -5.28105097e-008, -0.342020273, -0.939694166, 1.60517516e-007, 0.939694166, -0.342020243)
  2238. p79.CanCollide = false
  2239. p79.Locked = true
  2240. p79.FormFactor = Enum.FormFactor.Custom
  2241. p79.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2242. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2243. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2244. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2245. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2246. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2247. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2248. b79 = Instance.new("SpecialMesh", p79)
  2249. b79.MeshType = Enum.MeshType.Wedge
  2250. b79.Name = "Mesh"
  2251. b79.Scale = Vector3.new(0.334640861, 0.535425484, 0.401569068)
  2252. p80 = Instance.new("WedgePart", m8)
  2253. p80.BrickColor = BrickColor.new("Really black")
  2254. p80.Material = Enum.Material.Metal
  2255. p80.Reflectance = 0.40000000596046
  2256. p80.Name = "Wedge"
  2257. p80.CFrame = CFrame.new(2.69999964e-005, -11.9147787, 1.51684833, -1, 1.58138e-008, 2.8589703e-008, 3.25942473e-008, 0.422618747, 0.906309128, 2.24968311e-009, 0.906309128, -0.422618806)
  2258. p80.CanCollide = false
  2259. p80.Locked = true
  2260. p80.FormFactor = Enum.FormFactor.Custom
  2261. p80.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  2262. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2263. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2264. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2265. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2266. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2267. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2268. b80 = Instance.new("SpecialMesh", p80)
  2269. b80.MeshType = Enum.MeshType.Wedge
  2270. b80.Name = "Mesh"
  2271. b80.Scale = Vector3.new(0.267712682, 1, 0.133856341)
  2272. p81 = Instance.new("WedgePart", m8)
  2273. p81.BrickColor = BrickColor.new("Really red")
  2274. p81.Material = Enum.Material.Neon
  2275. p81.Reflectance = 0.40000000596046
  2276. p81.Name = "Wedge"
  2277. p81.CFrame = CFrame.new(2.69999964e-005, -11.8880205, -0.00143384933, 1, -8.62400285e-008, 8.88349216e-009, 2.11481286e-008, 0.342020214, 0.939694047, -8.40776266e-008, -0.939694047, 0.342020124)
  2278. p81.CanCollide = false
  2279. p81.Locked = true
  2280. p81.FormFactor = Enum.FormFactor.Custom
  2281. p81.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2282. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2283. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2284. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2285. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2286. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2287. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. b81 = Instance.new("SpecialMesh", p81)
  2289. b81.MeshType = Enum.MeshType.Wedge
  2290. b81.Name = "Mesh"
  2291. b81.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  2292. p82 = Instance.new("WedgePart", m8)
  2293. p82.BrickColor = BrickColor.new("Really black")
  2294. p82.Material = Enum.Material.Metal
  2295. p82.Reflectance = 0.40000000596046
  2296. p82.Name = "Wedge"
  2297. p82.CFrame = CFrame.new(2.69999964e-005, -11.1964474, 1.88168073, 1, -2.43563321e-008, -1.04780362e-007, -1.2949517e-008, 0.939693809, -0.342020929, 1.06791781e-007, 0.342020839, 0.939693809)
  2298. p82.CanCollide = false
  2299. p82.Locked = true
  2300. p82.FormFactor = Enum.FormFactor.Custom
  2301. p82.Size = Vector3.new(0.220499977, 0.314338177, 0.220499977)
  2302. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2303. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2304. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2305. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2306. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2307. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2308. b82 = Instance.new("SpecialMesh", p82)
  2309. b82.MeshType = Enum.MeshType.Wedge
  2310. b82.Name = "Mesh"
  2311. b82.Scale = Vector3.new(0.261019886, 1, 0.307869673)
  2312. p83 = Instance.new("WedgePart", m8)
  2313. p83.BrickColor = BrickColor.new("Really black")
  2314. p83.Material = Enum.Material.Metal
  2315. p83.Reflectance = 0.40000000596046
  2316. p83.Name = "Wedge"
  2317. p83.CFrame = CFrame.new(2.69999982e-005, -11.1028252, 1.9750396, -1, -2.43563356e-008, 1.73575856e-008, -1.695091e-008, 0.939693809, 0.342020959, -2.46411389e-008, 0.34202081, -0.939693809)
  2318. p83.CanCollide = false
  2319. p83.Locked = true
  2320. p83.FormFactor = Enum.FormFactor.Custom
  2321. p83.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2322. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2324. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2326. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2327. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2328. b83 = Instance.new("SpecialMesh", p83)
  2329. b83.MeshType = Enum.MeshType.Wedge
  2330. b83.Name = "Mesh"
  2331. b83.Scale = Vector3.new(0.261019886, 0.337987304, 0.204131007)
  2332. p84 = Instance.new("WedgePart", m8)
  2333. p84.BrickColor = BrickColor.new("Really red")
  2334. p84.Material = Enum.Material.Neon
  2335. p84.Reflectance = 0.40000000596046
  2336. p84.Name = "Wedge"
  2337. p84.CFrame = CFrame.new(2.69999964e-005, -11.9309464, 0.202805281, -1, -1.18273746e-009, 8.8834895e-009, 8.75221495e-009, -0.342020243, 0.939694047, 1.92697125e-009, 0.939694047, 0.342020094)
  2338. p84.CanCollide = false
  2339. p84.Locked = true
  2340. p84.FormFactor = Enum.FormFactor.Custom
  2341. p84.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2342. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2343. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2344. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2345. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2346. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2347. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2348. b84 = Instance.new("SpecialMesh", p84)
  2349. b84.MeshType = Enum.MeshType.Wedge
  2350. b84.Name = "Mesh"
  2351. b84.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2352. p85 = Instance.new("WedgePart", m8)
  2353. p85.BrickColor = BrickColor.new("Really black")
  2354. p85.Material = Enum.Material.Metal
  2355. p85.Reflectance = 0.40000000596046
  2356. p85.Name = "Wedge"
  2357. p85.CFrame = CFrame.new(2.69999964e-005, -11.7129288, 1.75927424, -1, -2.76164442e-008, 9.79634507e-009, -1.16697887e-008, 0.681997418, 0.731356382, -2.68784923e-008, 0.731356263, -0.681997478)
  2358. p85.CanCollide = false
  2359. p85.Locked = true
  2360. p85.FormFactor = Enum.FormFactor.Custom
  2361. p85.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  2362. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2363. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2364. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2365. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2366. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2367. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2368. b85 = Instance.new("SpecialMesh", p85)
  2369. b85.MeshType = Enum.MeshType.Wedge
  2370. b85.Name = "Mesh"
  2371. b85.Scale = Vector3.new(0.267712682, 1, 0.264366329)
  2372. p86 = Instance.new("WedgePart", m8)
  2373. p86.BrickColor = BrickColor.new("Really red")
  2374. p86.Material = Enum.Material.Neon
  2375. p86.Reflectance = 0.40000000596046
  2376. p86.Name = "Wedge"
  2377. p86.CFrame = CFrame.new(2.7e-005, -11.9805536, 1.1176064, -1, -8.68188743e-010, 1.24787238e-008, 1.22781785e-008, -0.258819252, 0.965927005, 2.39117615e-009, 0.965927005, 0.258819193)
  2378. p86.CanCollide = false
  2379. p86.Locked = true
  2380. p86.FormFactor = Enum.FormFactor.Custom
  2381. p86.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2382. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2383. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2384. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2385. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2386. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2387. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2388. b86 = Instance.new("SpecialMesh", p86)
  2389. b86.MeshType = Enum.MeshType.Wedge
  2390. b86.Name = "Mesh"
  2391. b86.Scale = Vector3.new(0.334640861, 0.602353632, 0.133856341)
  2392. p87 = Instance.new("WedgePart", m8)
  2393. p87.BrickColor = BrickColor.new("Really red")
  2394. p87.Material = Enum.Material.Neon
  2395. p87.Reflectance = 0.40000000596046
  2396. p87.Name = "Wedge"
  2397. p87.CFrame = CFrame.new(2.69999982e-005, -11.8886356, 0.251966357, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
  2398. p87.CanCollide = false
  2399. p87.Locked = true
  2400. p87.FormFactor = Enum.FormFactor.Custom
  2401. p87.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2402. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2403. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2404. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2405. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2406. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2407. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2408. b87 = Instance.new("SpecialMesh", p87)
  2409. b87.MeshType = Enum.MeshType.Wedge
  2410. b87.Name = "Mesh"
  2411. b87.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  2412. p88 = Instance.new("WedgePart", m8)
  2413. p88.BrickColor = BrickColor.new("Really red")
  2414. p88.Material = Enum.Material.Neon
  2415. p88.Reflectance = 0.40000000596046
  2416. p88.Name = "Wedge"
  2417. p88.CFrame = CFrame.new(2.7e-005, -11.869071, 0.470699608, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
  2418. p88.CanCollide = false
  2419. p88.Locked = true
  2420. p88.FormFactor = Enum.FormFactor.Custom
  2421. p88.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2422. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2423. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2424. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2425. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2426. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2427. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2428. b88 = Instance.new("SpecialMesh", p88)
  2429. b88.MeshType = Enum.MeshType.Wedge
  2430. b88.Name = "Mesh"
  2431. b88.Scale = Vector3.new(0.334640861, 0.602353632, 0.267712682)
  2432. p89 = Instance.new("WedgePart", m8)
  2433. p89.BrickColor = BrickColor.new("Really red")
  2434. p89.Material = Enum.Material.Neon
  2435. p89.Reflectance = 0.40000000596046
  2436. p89.Name = "Wedge"
  2437. p89.CFrame = CFrame.new(2.69999982e-005, -11.9583426, -0.0893729925, -1, -1.18272325e-009, 8.88348239e-009, 8.75221673e-009, -0.342020214, 0.93969357, 1.92696215e-009, 0.93969357, 0.342020154)
  2438. p89.CanCollide = false
  2439. p89.Locked = true
  2440. p89.FormFactor = Enum.FormFactor.Custom
  2441. p89.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2442. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2443. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2444. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2445. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2446. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2447. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2448. b89 = Instance.new("SpecialMesh", p89)
  2449. b89.MeshType = Enum.MeshType.Wedge
  2450. b89.Name = "Mesh"
  2451. b89.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  2452. p90 = Instance.new("WedgePart", m8)
  2453. p90.BrickColor = BrickColor.new("Really red")
  2454. p90.Material = Enum.Material.Neon
  2455. p90.Reflectance = 0.40000000596046
  2456. p90.Name = "Wedge"
  2457. p90.CFrame = CFrame.new(2.69999982e-005, -11.8805695, 0.729635715, 1, -3.05929149e-008, 8.75114452e-008, -8.45121022e-008, 0.0871560574, 0.996195555, -3.81037033e-008, -0.996195555, 0.0871560574)
  2458. p90.CanCollide = false
  2459. p90.Locked = true
  2460. p90.FormFactor = Enum.FormFactor.Custom
  2461. p90.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2462. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2463. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2464. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2465. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2466. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2467. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2468. b90 = Instance.new("SpecialMesh", p90)
  2469. b90.MeshType = Enum.MeshType.Wedge
  2470. b90.Name = "Mesh"
  2471. b90.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  2472. p91 = Instance.new("WedgePart", m8)
  2473. p91.BrickColor = BrickColor.new("Really black")
  2474. p91.Material = Enum.Material.Metal
  2475. p91.Reflectance = 0.40000000596046
  2476. p91.Name = "Wedge"
  2477. p91.CFrame = CFrame.new(2.69999982e-005, -11.2718382, 1.82602453, -1, 1.16832744e-007, -9.28606454e-008, -1.69508567e-008, -0.707107246, -0.707107663, -1.4827576e-007, -0.707107663, 0.707107246)
  2478. p91.CanCollide = false
  2479. p91.Locked = true
  2480. p91.FormFactor = Enum.FormFactor.Custom
  2481. p91.Size = Vector3.new(0.220499977, 0.401408434, 0.220499977)
  2482. p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2483. p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2484. p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2485. p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2486. p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2487. p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2488. b91 = Instance.new("SpecialMesh", p91)
  2489. b91.MeshType = Enum.MeshType.Wedge
  2490. b91.Name = "Mesh"
  2491. b91.Scale = Vector3.new(0.267712682, 1, 0.200784534)
  2492. p92 = Instance.new("WedgePart", m8)
  2493. p92.BrickColor = BrickColor.new("Really red")
  2494. p92.Material = Enum.Material.Neon
  2495. p92.Reflectance = 0.40000000596046
  2496. p92.Name = "Wedge"
  2497. p92.CFrame = CFrame.new(2.69999982e-005, -11.984252, 1.01731598, -1, -8.68163763e-010, 1.24787114e-008, 1.22781865e-008, -0.258819163, 0.965926766, 2.39115083e-009, 0.965926766, 0.258819163)
  2498. p92.CanCollide = false
  2499. p92.Locked = true
  2500. p92.FormFactor = Enum.FormFactor.Custom
  2501. p92.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2502. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2503. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2504. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2505. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2507. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2508. b92 = Instance.new("SpecialMesh", p92)
  2509. b92.MeshType = Enum.MeshType.Wedge
  2510. b92.Name = "Mesh"
  2511. b92.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2512. p93 = Instance.new("WedgePart", m8)
  2513. p93.BrickColor = BrickColor.new("Really red")
  2514. p93.Material = Enum.Material.Neon
  2515. p93.Reflectance = 0.40000000596046
  2516. p93.Name = "Wedge"
  2517. p93.CFrame = CFrame.new(2.69999964e-005, -11.9214983, 0.99980092, 1, -8.93497187e-008, 2.29101715e-008, -2.29101325e-008, 2.98023224e-007, 1.00000083, -8.9349804e-008, -1.00000083, 2.98023224e-007)
  2518. p93.CanCollide = false
  2519. p93.Locked = true
  2520. p93.FormFactor = Enum.FormFactor.Custom
  2521. p93.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2522. p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2523. p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2524. p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2525. p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2526. p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2527. p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2528. b93 = Instance.new("SpecialMesh", p93)
  2529. b93.MeshType = Enum.MeshType.Wedge
  2530. b93.Name = "Mesh"
  2531. b93.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  2532. p94 = Instance.new("WedgePart", m8)
  2533. p94.BrickColor = BrickColor.new("Really red")
  2534. p94.Material = Enum.Material.Neon
  2535. p94.Reflectance = 0.40000000596046
  2536. p94.Name = "Wedge"
  2537. p94.CFrame = CFrame.new(2.69999964e-005, -11.9032125, 0.212900162, -1, 8.8605475e-008, -9.63062732e-008, 1.20803207e-007, 0.342020005, -0.93969363, -5.03233366e-008, -0.93969363, -0.342020005)
  2538. p94.CanCollide = false
  2539. p94.Locked = true
  2540. p94.FormFactor = Enum.FormFactor.Custom
  2541. p94.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2542. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2543. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2544. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2545. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2546. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2547. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. b94 = Instance.new("SpecialMesh", p94)
  2549. b94.MeshType = Enum.MeshType.Wedge
  2550. b94.Name = "Mesh"
  2551. b94.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2552. p95 = Instance.new("WedgePart", m8)
  2553. p95.BrickColor = BrickColor.new("Really black")
  2554. p95.Material = Enum.Material.Metal
  2555. p95.Reflectance = 0.40000000596046
  2556. p95.Name = "Wedge"
  2557. p95.CFrame = CFrame.new(2.69999964e-005, -11.361845, 1.9233377, -1, -2.94099678e-008, 5.43784395e-009, -1.69508834e-008, 0.707107186, 0.707107663, -2.46411602e-008, 0.707107663, -0.707107186)
  2558. p95.CanCollide = false
  2559. p95.Locked = true
  2560. p95.FormFactor = Enum.FormFactor.Custom
  2561. p95.Size = Vector3.new(0.220499977, 0.391078025, 0.222102806)
  2562. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2563. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2564. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2565. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2566. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2567. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2568. b95 = Instance.new("SpecialMesh", p95)
  2569. b95.MeshType = Enum.MeshType.Wedge
  2570. b95.Name = "Mesh"
  2571. b95.Scale = Vector3.new(0.261019886, 1, 1)
  2572. p96 = Instance.new("WedgePart", m8)
  2573. p96.BrickColor = BrickColor.new("Really red")
  2574. p96.Material = Enum.Material.Neon
  2575. p96.Reflectance = 0.40000000596046
  2576. p96.Name = "Wedge"
  2577. p96.CFrame = CFrame.new(2.69999982e-005, -11.9530287, 1.26521814, -1, -3.29206387e-008, 2.51881929e-008, 1.58094231e-008, 0.258819431, 0.965926588, -3.83181202e-008, 0.965926588, -0.258819431)
  2578. p96.CanCollide = false
  2579. p96.Locked = true
  2580. p96.FormFactor = Enum.FormFactor.Custom
  2581. p96.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2582. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2583. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2584. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2585. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2586. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. b96 = Instance.new("SpecialMesh", p96)
  2589. b96.MeshType = Enum.MeshType.Wedge
  2590. b96.Name = "Mesh"
  2591. b96.Scale = Vector3.new(0.334640861, 0.736209989, 0.133856341)
  2592. p97 = Instance.new("WedgePart", m8)
  2593. p97.BrickColor = BrickColor.new("Really red")
  2594. p97.Material = Enum.Material.Neon
  2595. p97.Reflectance = 0.40000000596046
  2596. p97.Name = "Wedge"
  2597. p97.CFrame = CFrame.new(2.69999964e-005, -11.9457083, -0.210409045, -1, -1.18269794e-009, 8.88346818e-009, 8.75222206e-009, -0.342020214, 0.939693332, 1.92694349e-009, 0.939693332, 0.342020214)
  2598. p97.CanCollide = false
  2599. p97.Locked = true
  2600. p97.FormFactor = Enum.FormFactor.Custom
  2601. p97.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2602. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2603. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2604. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2608. b97 = Instance.new("SpecialMesh", p97)
  2609. b97.MeshType = Enum.MeshType.Wedge
  2610. b97.Name = "Mesh"
  2611. b97.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2612. p98 = Instance.new("WedgePart", m8)
  2613. p98.BrickColor = BrickColor.new("Really red")
  2614. p98.Material = Enum.Material.Neon
  2615. p98.Reflectance = 0.40000000596046
  2616. p98.Name = "Wedge"
  2617. p98.CFrame = CFrame.new(2.7e-005, -11.9322329, 0.816780686, 1, -1.68899135e-007, 5.27447064e-009, -5.2810492e-008, -0.342020094, -0.939693272, 1.60517359e-007, 0.939693272, -0.342020094)
  2618. p98.CanCollide = false
  2619. p98.Locked = true
  2620. p98.FormFactor = Enum.FormFactor.Custom
  2621. p98.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2622. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. b98 = Instance.new("SpecialMesh", p98)
  2629. b98.MeshType = Enum.MeshType.Wedge
  2630. b98.Name = "Mesh"
  2631. b98.Scale = Vector3.new(0.334640861, 0.669281721, 0.267712682)
  2632. p99 = Instance.new("WedgePart", m8)
  2633. p99.BrickColor = BrickColor.new("Really red")
  2634. p99.Material = Enum.Material.Neon
  2635. p99.Reflectance = 0.40000000596046
  2636. p99.Name = "Wedge"
  2637. p99.CFrame = CFrame.new(2.69999982e-005, -11.9055624, 1.3254329, -1, -3.49906557e-008, 2.22318874e-008, 1.58180669e-008, 0.173648253, 0.984808207, -3.83196053e-008, 0.984808207, -0.173648253)
  2638. p99.CanCollide = false
  2639. p99.Locked = true
  2640. p99.FormFactor = Enum.FormFactor.Custom
  2641. p99.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2642. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2648. b99 = Instance.new("SpecialMesh", p99)
  2649. b99.MeshType = Enum.MeshType.Wedge
  2650. b99.Name = "Mesh"
  2651. b99.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  2652. p100 = Instance.new("WedgePart", m8)
  2653. p100.BrickColor = BrickColor.new("Really red")
  2654. p100.Material = Enum.Material.Neon
  2655. p100.Reflectance = 0.40000000596046
  2656. p100.Name = "Wedge"
  2657. p100.CFrame = CFrame.new(2.69999982e-005, -11.9114323, 1.08247674, -1, 1.18015713e-007, 8.75114381e-008, 7.68926611e-008, -0.0871561319, 0.996195078, 1.2519385e-007, 0.996195078, 0.0871561319)
  2658. p100.CanCollide = false
  2659. p100.Locked = true
  2660. p100.FormFactor = Enum.FormFactor.Custom
  2661. p100.Size = Vector3.new(0.220499977, 0.236122593, 0.220499977)
  2662. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2665. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2666. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2668. b100 = Instance.new("SpecialMesh", p100)
  2669. b100.MeshType = Enum.MeshType.Wedge
  2670. b100.Name = "Mesh"
  2671. b100.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  2672. p101 = Instance.new("WedgePart", m8)
  2673. p101.BrickColor = BrickColor.new("Really red")
  2674. p101.Material = Enum.Material.Neon
  2675. p101.Reflectance = 0.40000000596046
  2676. p101.Name = "Wedge"
  2677. p101.CFrame = CFrame.new(2.69999982e-005, -11.8602819, 0.575987279, -1, 8.14763652e-008, 5.27446709e-009, 2.29101644e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
  2678. p101.CanCollide = false
  2679. p101.Locked = true
  2680. p101.FormFactor = Enum.FormFactor.Custom
  2681. p101.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2682. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2683. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2684. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2687. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2688. b101 = Instance.new("SpecialMesh", p101)
  2689. b101.MeshType = Enum.MeshType.Wedge
  2690. b101.Name = "Mesh"
  2691. b101.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2692. p102 = Instance.new("WedgePart", m8)
  2693. p102.BrickColor = BrickColor.new("Really red")
  2694. p102.Material = Enum.Material.Neon
  2695. p102.Reflectance = 0.40000000596046
  2696. p102.Name = "Wedge"
  2697. p102.CFrame = CFrame.new(2.69999982e-005, -11.8709736, -0.283571124, -1, 8.14763652e-008, 5.27447064e-009, 2.29101609e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
  2698. p102.CanCollide = false
  2699. p102.Locked = true
  2700. p102.FormFactor = Enum.FormFactor.Custom
  2701. p102.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2702. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2703. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2704. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2705. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2706. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2707. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2708. b102 = Instance.new("SpecialMesh", p102)
  2709. b102.MeshType = Enum.MeshType.Wedge
  2710. b102.Name = "Mesh"
  2711. b102.Scale = Vector3.new(0.334640861, 0.736209989, 0.334640861)
  2712. p103 = Instance.new("WedgePart", m8)
  2713. p103.BrickColor = BrickColor.new("Really red")
  2714. p103.Material = Enum.Material.Neon
  2715. p103.Reflectance = 0.40000000596046
  2716. p103.Name = "Wedge"
  2717. p103.CFrame = CFrame.new(2.69999982e-005, -11.9097681, 0.739346266, 1, -8.65546141e-008, 1.24786919e-008, 1.03484972e-008, 0.258819103, 0.965926111, -8.68351009e-008, -0.965926111, 0.258819103)
  2718. p103.CanCollide = false
  2719. p103.Locked = true
  2720. p103.FormFactor = Enum.FormFactor.Custom
  2721. p103.Size = Vector3.new(0.220499977, 0.221364915, 0.220499977)
  2722. p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2723. p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2724. p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2725. p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2726. p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2727. p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2728. b103 = Instance.new("SpecialMesh", p103)
  2729. b103.MeshType = Enum.MeshType.Wedge
  2730. b103.Name = "Mesh"
  2731. b103.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  2732. p104 = Instance.new("WedgePart", m8)
  2733. p104.BrickColor = BrickColor.new("Really red")
  2734. p104.Material = Enum.Material.Neon
  2735. p104.Reflectance = 0.40000000596046
  2736. p104.Name = "Wedge"
  2737. p104.CFrame = CFrame.new(2.69999964e-005, -11.9271755, 0.55203414, 1, -1.68899149e-007, 5.27447863e-009, -5.28104778e-008, -0.342019916, -0.939692855, 1.60517274e-007, 0.939692855, -0.342019916)
  2738. p104.CanCollide = false
  2739. p104.Locked = true
  2740. p104.FormFactor = Enum.FormFactor.Custom
  2741. p104.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2742. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2744. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2745. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2746. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2747. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2748. b104 = Instance.new("SpecialMesh", p104)
  2749. b104.MeshType = Enum.MeshType.Wedge
  2750. b104.Name = "Mesh"
  2751. b104.Scale = Vector3.new(0.334640861, 0.535425484, 0.267712682)
  2752. p105 = Instance.new("WedgePart", m8)
  2753. p105.BrickColor = BrickColor.new("Really black")
  2754. p105.Material = Enum.Material.Metal
  2755. p105.Reflectance = 0.40000000596046
  2756. p105.Name = "Wedge"
  2757. p105.CFrame = CFrame.new(2.69999982e-005, -11.3177481, 1.88445807, -1, -2.94099785e-008, 5.43784395e-009, -1.69508549e-008, 0.707106531, 0.707107127, -2.46411282e-008, 0.707107127, -0.707106531)
  2758. p105.CanCollide = false
  2759. p105.Locked = true
  2760. p105.FormFactor = Enum.FormFactor.Custom
  2761. p105.Size = Vector3.new(0.220499977, 0.383699238, 0.220499977)
  2762. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2763. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2764. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2765. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2766. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2767. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2768. b105 = Instance.new("SpecialMesh", p105)
  2769. b105.MeshType = Enum.MeshType.Wedge
  2770. b105.Name = "Mesh"
  2771. b105.Scale = Vector3.new(0.267712682, 1, 0.468497276)
  2772. p106 = Instance.new("WedgePart", m8)
  2773. p106.BrickColor = BrickColor.new("Really red")
  2774. p106.Material = Enum.Material.Neon
  2775. p106.Reflectance = 0.40000000596046
  2776. p106.Name = "Wedge"
  2777. p106.CFrame = CFrame.new(2.69999964e-005, -11.8602819, 0.325106204, -1, 8.14763723e-008, 5.27446709e-009, 2.29101538e-008, 0.342019886, -0.939692736, -7.83667247e-008, -0.939692736, -0.342019886)
  2778. p106.CanCollide = false
  2779. p106.Locked = true
  2780. p106.FormFactor = Enum.FormFactor.Custom
  2781. p106.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2782. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2783. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2784. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2785. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2786. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2787. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2788. b106 = Instance.new("SpecialMesh", p106)
  2789. b106.MeshType = Enum.MeshType.Wedge
  2790. b106.Name = "Mesh"
  2791. b106.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2792. p107 = Instance.new("WedgePart", m8)
  2793. p107.BrickColor = BrickColor.new("Really red")
  2794. p107.Material = Enum.Material.Neon
  2795. p107.Reflectance = 0.40000000596046
  2796. p107.Name = "Wedge"
  2797. p107.CFrame = CFrame.new(2.69999982e-005, -11.9731445, 1.13999915, 1, -8.93497187e-008, 2.29101502e-008, -2.29101129e-008, 3.87430248e-007, 1, -8.93497258e-008, -1, 3.87430276e-007)
  2798. p107.CanCollide = false
  2799. p107.Locked = true
  2800. p107.FormFactor = Enum.FormFactor.Custom
  2801. p107.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2802. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2803. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2804. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2805. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2806. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2807. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2808. b107 = Instance.new("SpecialMesh", p107)
  2809. b107.MeshType = Enum.MeshType.Wedge
  2810. b107.Name = "Mesh"
  2811. b107.Scale = Vector3.new(0.334640861, 0.468497276, 0.133856341)
  2812. p108 = Instance.new("WedgePart", m8)
  2813. p108.BrickColor = BrickColor.new("Black")
  2814. p108.Material = Enum.Material.Metal
  2815. p108.Reflectance = 0.40000000596046
  2816. p108.Name = "Wedge"
  2817. p108.CFrame = CFrame.new(2.69999982e-005, -12.0124025, 1.01832807, 1, 3.82198948e-008, 2.11711555e-008, -2.11711537e-008, -2.98023224e-008, 1, 3.82198913e-008, -1, -2.98023224e-008)
  2818. p108.CanCollide = false
  2819. p108.Locked = true
  2820. p108.FormFactor = Enum.FormFactor.Custom
  2821. p108.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2822. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2825. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2826. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2827. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2828. b108 = Instance.new("SpecialMesh", p108)
  2829. b108.MeshType = Enum.MeshType.Wedge
  2830. b108.Name = "Mesh"
  2831. b108.Scale = Vector3.new(0.267712682, 0.669281721, 0.0669281706)
  2832. p109 = Instance.new("WedgePart", m8)
  2833. p109.BrickColor = BrickColor.new("Really red")
  2834. p109.Material = Enum.Material.Neon
  2835. p109.Reflectance = 0.40000000596046
  2836. p109.Name = "Wedge"
  2837. p109.CFrame = CFrame.new(2.7e-005, -11.9461164, 0.330772072, -1, -1.18270771e-009, 8.88346818e-009, 8.75223805e-009, -0.342019796, 0.939692795, 1.92694571e-009, 0.939692795, 0.342019796)
  2838. p109.CanCollide = false
  2839. p109.Locked = true
  2840. p109.FormFactor = Enum.FormFactor.Custom
  2841. p109.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2842. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2843. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2844. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2845. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2846. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2847. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2848. b109 = Instance.new("SpecialMesh", p109)
  2849. b109.MeshType = Enum.MeshType.Wedge
  2850. b109.Name = "Mesh"
  2851. b109.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  2852. p110 = Instance.new("WedgePart", m8)
  2853. p110.BrickColor = BrickColor.new("Really red")
  2854. p110.Material = Enum.Material.Neon
  2855. p110.Reflectance = 0.40000000596046
  2856. p110.Name = "Wedge"
  2857. p110.CFrame = CFrame.new(2.69999982e-005, -11.8880196, 0.565889001, -1, 5.94638294e-009, -9.26972632e-008, -8.91407268e-008, -0.342019916, 0.939692736, -2.61165312e-008, 0.939692736, 0.342019916)
  2858. p110.CanCollide = false
  2859. p110.Locked = true
  2860. p110.FormFactor = Enum.FormFactor.Custom
  2861. p110.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  2862. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2863. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2864. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2865. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2868. b110 = Instance.new("SpecialMesh", p110)
  2869. b110.MeshType = Enum.MeshType.Wedge
  2870. b110.Name = "Mesh"
  2871. b110.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  2872. p111 = Instance.new("Part", m8)
  2873. p111.BrickColor = BrickColor.new("Really black")
  2874. p111.Material = Enum.Material.Metal
  2875. p111.Transparency = 1
  2876. p111.Name = "Hitbox"
  2877. p111.CFrame = CFrame.new(2.7e-005, -11.550066, 0.678469002, 1, -4.08900576e-008, -5.9526446e-008, -5.9526446e-008, 0, -1, 4.08900576e-008, 1, -2.43403981e-015)
  2878. p111.CanCollide = false
  2879. p111.Locked = true
  2880. p111.FormFactor = Enum.FormFactor.Custom
  2881. p111.Size = Vector3.new(0.22, 2.57, 1.22)
  2882. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2883. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2884. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2886. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2887. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2888. b111 = Instance.new("BlockMesh", p111)
  2889. b111.Name = "Mesh"
  2890. w1 = Instance.new("Weld", p1)
  2891. w1.Name = "Block_Weld"
  2892. w1.Part0 = p1
  2893. w1.C0 = CFrame.new(-2.69832744e-005, -0.186136514, 1.51893806, 1, -1.84926652e-008, -5.47947643e-009, -1.44443195e-008, -0.906307817, 0.4226183, -1.2781431e-008, -0.42261833, -0.906307876)
  2894. w1.Part1 = p2
  2895. w1.C1 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  2896. w2 = Instance.new("Weld", p2)
  2897. w2.Name = "Block_Weld"
  2898. w2.Part0 = p2
  2899. w2.C0 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  2900. w2.Part1 = p3
  2901. w2.C1 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  2902. w3 = Instance.new("Weld", p3)
  2903. w3.Name = "Block_Weld"
  2904. w3.Part0 = p3
  2905. w3.C0 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  2906. w3.Part1 = p4
  2907. w3.C1 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  2908. w4 = Instance.new("Weld", p4)
  2909. w4.Name = "Block_Weld"
  2910. w4.Part0 = p4
  2911. w4.C0 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  2912. w4.Part1 = p5
  2913. w4.C1 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
  2914. w5 = Instance.new("Weld", p5)
  2915. w5.Name = "Block_Weld"
  2916. w5.Part0 = p5
  2917. w5.C0 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
  2918. w5.Part1 = p6
  2919. w5.C1 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  2920. w6 = Instance.new("Weld", p6)
  2921. w6.Name = "Block_Weld"
  2922. w6.Part0 = p6
  2923. w6.C0 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  2924. w6.Part1 = p7
  2925. w6.C1 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
  2926. w7 = Instance.new("Weld", p7)
  2927. w7.Name = "Block_Weld"
  2928. w7.Part0 = p7
  2929. w7.C0 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
  2930. w7.Part1 = p8
  2931. w7.C1 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
  2932. w8 = Instance.new("Weld", p8)
  2933. w8.Name = "Block_Weld"
  2934. w8.Part0 = p8
  2935. w8.C0 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
  2936. w8.Part1 = p9
  2937. w8.C1 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  2938. w9 = Instance.new("Weld", p9)
  2939. w9.Name = "Block_Weld"
  2940. w9.Part0 = p9
  2941. w9.C0 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  2942. w9.Part1 = p10
  2943. w9.C1 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
  2944. w10 = Instance.new("Weld", p10)
  2945. w10.Name = "Circle_Weld"
  2946. w10.Part0 = p10
  2947. w10.C0 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
  2948. w10.Part1 = p11
  2949. w10.C1 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  2950. w11 = Instance.new("Weld", p11)
  2951. w11.Name = "Block_Weld"
  2952. w11.Part0 = p11
  2953. w11.C0 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  2954. w11.Part1 = p12
  2955. w11.C1 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  2956. w12 = Instance.new("Weld", p12)
  2957. w12.Name = "Block_Weld"
  2958. w12.Part0 = p12
  2959. w12.C0 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  2960. w12.Part1 = p13
  2961. w12.C1 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  2962. w13 = Instance.new("Weld", p13)
  2963. w13.Name = "Block_Weld"
  2964. w13.Part0 = p13
  2965. w13.C0 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  2966. w13.Part1 = p14
  2967. w13.C1 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
  2968. w14 = Instance.new("Weld", p14)
  2969. w14.Name = "Block_Weld"
  2970. w14.Part0 = p14
  2971. w14.C0 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
  2972. w14.Part1 = p15
  2973. w14.C1 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  2974. w15 = Instance.new("Weld", p15)
  2975. w15.Name = "Handle_Weld"
  2976. w15.Part0 = p15
  2977. w15.C0 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  2978. w15.Part1 = p16
  2979. w15.C1 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  2980. w16 = Instance.new("Weld", p16)
  2981. w16.Name = "Block_Weld"
  2982. w16.Part0 = p16
  2983. w16.C0 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  2984. w16.Part1 = p17
  2985. w16.C1 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
  2986. w17 = Instance.new("Weld", p17)
  2987. w17.Name = "Block_Weld"
  2988. w17.Part0 = p17
  2989. w17.C0 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
  2990. w17.Part1 = p18
  2991. w17.C1 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
  2992. w18 = Instance.new("Weld", p18)
  2993. w18.Name = "Block_Weld"
  2994. w18.Part0 = p18
  2995. w18.C0 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
  2996. w18.Part1 = p19
  2997. w18.C1 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  2998. w19 = Instance.new("Weld", p19)
  2999. w19.Name = "Block_Weld"
  3000. w19.Part0 = p19
  3001. w19.C0 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  3002. w19.Part1 = p20
  3003. w19.C1 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  3004. w20 = Instance.new("Weld", p20)
  3005. w20.Name = "Block_Weld"
  3006. w20.Part0 = p20
  3007. w20.C0 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  3008. w20.Part1 = p21
  3009. w20.C1 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
  3010. w21 = Instance.new("Weld", p21)
  3011. w21.Name = "Block_Weld"
  3012. w21.Part0 = p21
  3013. w21.C0 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
  3014. w21.Part1 = p22
  3015. w21.C1 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3016. w22 = Instance.new("Weld", p22)
  3017. w22.Name = "Block_Weld"
  3018. w22.Part0 = p22
  3019. w22.C0 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3020. w22.Part1 = p23
  3021. w22.C1 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3022. w23 = Instance.new("Weld", p23)
  3023. w23.Name = "Block_Weld"
  3024. w23.Part0 = p23
  3025. w23.C0 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3026. w23.Part1 = p24
  3027. w23.C1 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
  3028. w24 = Instance.new("Weld", p24)
  3029. w24.Name = "Block_Weld"
  3030. w24.Part0 = p24
  3031. w24.C0 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
  3032. w24.Part1 = p25
  3033. w24.C1 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3034. w25 = Instance.new("Weld", p25)
  3035. w25.Name = "Block_Weld"
  3036. w25.Part0 = p25
  3037. w25.C0 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3038. w25.Part1 = p26
  3039. w25.C1 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3040. w26 = Instance.new("Weld", p26)
  3041. w26.Name = "Block_Weld"
  3042. w26.Part0 = p26
  3043. w26.C0 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3044. w26.Part1 = p27
  3045. w26.C1 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
  3046. w27 = Instance.new("Weld", p27)
  3047. w27.Name = "Circle_Weld"
  3048. w27.Part0 = p27
  3049. w27.C0 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
  3050. w27.Part1 = p28
  3051. w27.C1 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3052. w28 = Instance.new("Weld", p28)
  3053. w28.Name = "Block_Weld"
  3054. w28.Part0 = p28
  3055. w28.C0 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3056. w28.Part1 = p29
  3057. w28.C1 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
  3058. w29 = Instance.new("Weld", p29)
  3059. w29.Name = "Block_Weld"
  3060. w29.Part0 = p29
  3061. w29.C0 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
  3062. w29.Part1 = p30
  3063. w29.C1 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  3064. w30 = Instance.new("Weld", p30)
  3065. w30.Name = "Block_Weld"
  3066. w30.Part0 = p30
  3067. w30.C0 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  3068. w30.Part1 = p31
  3069. w30.C1 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
  3070. w31 = Instance.new("Weld", p31)
  3071. w31.Name = "Block_Weld"
  3072. w31.Part0 = p31
  3073. w31.C0 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
  3074. w31.Part1 = p32
  3075. w31.C1 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  3076. w32 = Instance.new("Weld", p32)
  3077. w32.Name = "Block_Weld"
  3078. w32.Part0 = p32
  3079. w32.C0 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  3080. w32.Part1 = p33
  3081. w32.C1 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3082. w33 = Instance.new("Weld", p33)
  3083. w33.Name = "Block_Weld"
  3084. w33.Part0 = p33
  3085. w33.C0 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3086. w33.Part1 = p34
  3087. w33.C1 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3088. w34 = Instance.new("Weld", p34)
  3089. w34.Name = "Block_Weld"
  3090. w34.Part0 = p34
  3091. w34.C0 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3092. w34.Part1 = p35
  3093. w34.C1 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3094. w35 = Instance.new("Weld", p35)
  3095. w35.Name = "Block_Weld"
  3096. w35.Part0 = p35
  3097. w35.C0 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3098. w35.Part1 = p36
  3099. w35.C1 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3100. w36 = Instance.new("Weld", p36)
  3101. w36.Name = "Circle_Weld"
  3102. w36.Part0 = p36
  3103. w36.C0 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3104. w36.Part1 = p37
  3105. w36.C1 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3106. w37 = Instance.new("Weld", p37)
  3107. w37.Name = "Block_Weld"
  3108. w37.Part0 = p37
  3109. w37.C0 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3110. w37.Part1 = p38
  3111. w37.C1 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3112. w38 = Instance.new("Weld", p38)
  3113. w38.Name = "Block_Weld"
  3114. w38.Part0 = p38
  3115. w38.C0 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3116. w38.Part1 = p39
  3117. w38.C1 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3118. w39 = Instance.new("Weld", p39)
  3119. w39.Name = "Block_Weld"
  3120. w39.Part0 = p39
  3121. w39.C0 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3122. w39.Part1 = p40
  3123. w39.C1 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
  3124. w40 = Instance.new("Weld", p40)
  3125. w40.Name = "Block_Weld"
  3126. w40.Part0 = p40
  3127. w40.C0 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
  3128. w40.Part1 = p41
  3129. w40.C1 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  3130. w41 = Instance.new("Weld", p41)
  3131. w41.Name = "Block_Weld"
  3132. w41.Part0 = p41
  3133. w41.C0 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  3134. w41.Part1 = p42
  3135. w41.C1 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3136. w42 = Instance.new("Weld", p42)
  3137. w42.Name = "Block_Weld"
  3138. w42.Part0 = p42
  3139. w42.C0 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3140. w42.Part1 = p43
  3141. w42.C1 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
  3142. w43 = Instance.new("Weld", p43)
  3143. w43.Name = "Circle_Weld"
  3144. w43.Part0 = p43
  3145. w43.C0 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
  3146. w43.Part1 = p44
  3147. w43.C1 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3148. w44 = Instance.new("Weld", p44)
  3149. w44.Name = "Block_Weld"
  3150. w44.Part0 = p44
  3151. w44.C0 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3152. w44.Part1 = p45
  3153. w44.C1 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  3154. w45 = Instance.new("Weld", p45)
  3155. w45.Name = "Block_Weld"
  3156. w45.Part0 = p45
  3157. w45.C0 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  3158. w45.Part1 = p46
  3159. w45.C1 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3160. w46 = Instance.new("Weld", p46)
  3161. w46.Name = "Block_Weld"
  3162. w46.Part0 = p46
  3163. w46.C0 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3164. w46.Part1 = p47
  3165. w46.C1 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3166. w47 = Instance.new("Weld", p47)
  3167. w47.Name = "Block_Weld"
  3168. w47.Part0 = p47
  3169. w47.C0 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3170. w47.Part1 = p48
  3171. w47.C1 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  3172. w48 = Instance.new("Weld", p48)
  3173. w48.Name = "Block_Weld"
  3174. w48.Part0 = p48
  3175. w48.C0 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  3176. w48.Part1 = p49
  3177. w48.C1 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
  3178. w49 = Instance.new("Weld", p49)
  3179. w49.Name = "Block_Weld"
  3180. w49.Part0 = p49
  3181. w49.C0 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
  3182. w49.Part1 = p50
  3183. w49.C1 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
  3184. w50 = Instance.new("Weld", p50)
  3185. w50.Name = "Block_Weld"
  3186. w50.Part0 = p50
  3187. w50.C0 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
  3188. w50.Part1 = p51
  3189. w50.C1 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  3190. w51 = Instance.new("Weld", p51)
  3191. w51.Name = "Block_Weld"
  3192. w51.Part0 = p51
  3193. w51.C0 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  3194. w51.Part1 = p52
  3195. w51.C1 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  3196. w52 = Instance.new("Weld", p52)
  3197. w52.Name = "Block_Weld"
  3198. w52.Part0 = p52
  3199. w52.C0 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  3200. w52.Part1 = p53
  3201. w52.C1 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
  3202. w53 = Instance.new("Weld", p53)
  3203. w53.Name = "Circle_Weld"
  3204. w53.Part0 = p53
  3205. w53.C0 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
  3206. w53.Part1 = p54
  3207. w53.C1 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3208. w54 = Instance.new("Weld", p54)
  3209. w54.Name = "Block_Weld"
  3210. w54.Part0 = p54
  3211. w54.C0 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3212. w54.Part1 = p55
  3213. w54.C1 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3214. w55 = Instance.new("Weld", p55)
  3215. w55.Name = "Block_Weld"
  3216. w55.Part0 = p55
  3217. w55.C0 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3218. w55.Part1 = p56
  3219. w55.C1 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  3220. w56 = Instance.new("Weld", p56)
  3221. w56.Name = "Block_Weld"
  3222. w56.Part0 = p56
  3223. w56.C0 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  3224. w56.Part1 = p57
  3225. w56.C1 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  3226. w57 = Instance.new("Weld", p57)
  3227. w57.Name = "Block_Weld"
  3228. w57.Part0 = p57
  3229. w57.C0 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  3230. w57.Part1 = p58
  3231. w57.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3232. w58 = Instance.new("Weld", p58)
  3233. w58.Name = "Block_Weld"
  3234. w58.Part0 = p58
  3235. w58.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3236. w58.Part1 = p59
  3237. w58.C1 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3238. w59 = Instance.new("Weld", p59)
  3239. w59.Name = "Circle_Weld"
  3240. w59.Part0 = p59
  3241. w59.C0 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  3242. w59.Part1 = p60
  3243. w59.C1 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3244. w60 = Instance.new("Weld", p60)
  3245. w60.Name = "Circle_Weld"
  3246. w60.Part0 = p60
  3247. w60.C0 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3248. w60.Part1 = p61
  3249. w60.C1 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3250. w61 = Instance.new("Weld", p61)
  3251. w61.Name = "Block_Weld"
  3252. w61.Part0 = p61
  3253. w61.C0 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3254. w61.Part1 = p62
  3255. w61.C1 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
  3256. w62 = Instance.new("Weld", p62)
  3257. w62.Name = "Block_Weld"
  3258. w62.Part0 = p62
  3259. w62.C0 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
  3260. w62.Part1 = p63
  3261. w62.C1 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  3262. w63 = Instance.new("Weld", p63)
  3263. w63.Name = "Block_Weld"
  3264. w63.Part0 = p63
  3265. w63.C0 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  3266. w63.Part1 = p64
  3267. w63.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3268. w64 = Instance.new("Weld", p64)
  3269. w64.Name = "Block_Weld"
  3270. w64.Part0 = p64
  3271. w64.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3272. w64.Part1 = p65
  3273. w64.C1 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  3274. w65 = Instance.new("Weld", p65)
  3275. w65.Name = "Block_Weld"
  3276. w65.Part0 = p65
  3277. w65.C0 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  3278. w65.Part1 = p66
  3279. w65.C1 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
  3280. w66 = Instance.new("Weld", p66)
  3281. w66.Name = "Block_Weld"
  3282. w66.Part0 = p66
  3283. w66.C0 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
  3284. w66.Part1 = p67
  3285. w66.C1 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  3286. w67 = Instance.new("Weld", p67)
  3287. w67.Name = "Block_Weld"
  3288. w67.Part0 = p67
  3289. w67.C0 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  3290. w67.Part1 = p68
  3291. w67.C1 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  3292. w68 = Instance.new("Weld", p68)
  3293. w68.Name = "Block_Weld"
  3294. w68.Part0 = p68
  3295. w68.C0 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  3296. w68.Part1 = p69
  3297. w68.C1 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3298. w69 = Instance.new("Weld", p69)
  3299. w69.Name = "Circle_Weld"
  3300. w69.Part0 = p69
  3301. w69.C0 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3302. w69.Part1 = p70
  3303. w69.C1 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3304. w70 = Instance.new("Weld", p70)
  3305. w70.Name = "Wedge_Weld"
  3306. w70.Part0 = p70
  3307. w70.C0 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  3308. w70.Part1 = p71
  3309. w70.C1 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  3310. w71 = Instance.new("Weld", p71)
  3311. w71.Name = "Wedge_Weld"
  3312. w71.Part0 = p71
  3313. w71.C0 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  3314. w71.Part1 = p72
  3315. w71.C1 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
  3316. w72 = Instance.new("Weld", p72)
  3317. w72.Name = "Wedge_Weld"
  3318. w72.Part0 = p72
  3319. w72.C0 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
  3320. w72.Part1 = p73
  3321. w72.C1 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
  3322. w73 = Instance.new("Weld", p73)
  3323. w73.Name = "Wedge_Weld"
  3324. w73.Part0 = p73
  3325. w73.C0 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
  3326. w73.Part1 = p74
  3327. w73.C1 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
  3328. w74 = Instance.new("Weld", p74)
  3329. w74.Name = "Wedge_Weld"
  3330. w74.Part0 = p74
  3331. w74.C0 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
  3332. w74.Part1 = p75
  3333. w74.C1 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
  3334. w75 = Instance.new("Weld", p75)
  3335. w75.Name = "Wedge_Weld"
  3336. w75.Part0 = p75
  3337. w75.C0 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
  3338. w75.Part1 = p76
  3339. w75.C1 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  3340. w76 = Instance.new("Weld", p76)
  3341. w76.Name = "Wedge_Weld"
  3342. w76.Part0 = p76
  3343. w76.C0 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  3344. w76.Part1 = p77
  3345. w76.C1 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
  3346. w77 = Instance.new("Weld", p77)
  3347. w77.Name = "Wedge_Weld"
  3348. w77.Part0 = p77
  3349. w77.C0 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
  3350. w77.Part1 = p78
  3351. w77.C1 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  3352. w78 = Instance.new("Weld", p78)
  3353. w78.Name = "Wedge_Weld"
  3354. w78.Part0 = p78
  3355. w78.C0 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  3356. w78.Part1 = p79
  3357. w78.C1 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  3358. w79 = Instance.new("Weld", p79)
  3359. w79.Name = "Wedge_Weld"
  3360. w79.Part0 = p79
  3361. w79.C0 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  3362. w79.Part1 = p80
  3363. w79.C1 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
  3364. w80 = Instance.new("Weld", p80)
  3365. w80.Name = "Wedge_Weld"
  3366. w80.Part0 = p80
  3367. w80.C0 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
  3368. w80.Part1 = p81
  3369. w80.C1 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
  3370. w81 = Instance.new("Weld", p81)
  3371. w81.Name = "Wedge_Weld"
  3372. w81.Part0 = p81
  3373. w81.C0 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
  3374. w81.Part1 = p82
  3375. w81.C1 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
  3376. w82 = Instance.new("Weld", p82)
  3377. w82.Name = "Wedge_Weld"
  3378. w82.Part0 = p82
  3379. w82.C0 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
  3380. w82.Part1 = p83
  3381. w82.C1 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
  3382. w83 = Instance.new("Weld", p83)
  3383. w83.Name = "Wedge_Weld"
  3384. w83.Part0 = p83
  3385. w83.C0 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
  3386. w83.Part1 = p84
  3387. w83.C1 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
  3388. w84 = Instance.new("Weld", p84)
  3389. w84.Name = "Wedge_Weld"
  3390. w84.Part0 = p84
  3391. w84.C0 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
  3392. w84.Part1 = p85
  3393. w84.C1 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
  3394. w85 = Instance.new("Weld", p85)
  3395. w85.Name = "Wedge_Weld"
  3396. w85.Part0 = p85
  3397. w85.C0 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
  3398. w85.Part1 = p86
  3399. w85.C1 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
  3400. w86 = Instance.new("Weld", p86)
  3401. w86.Name = "Wedge_Weld"
  3402. w86.Part0 = p86
  3403. w86.C0 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
  3404. w86.Part1 = p87
  3405. w86.C1 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  3406. w87 = Instance.new("Weld", p87)
  3407. w87.Name = "Wedge_Weld"
  3408. w87.Part0 = p87
  3409. w87.C0 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  3410. w87.Part1 = p88
  3411. w87.C1 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  3412. w88 = Instance.new("Weld", p88)
  3413. w88.Name = "Wedge_Weld"
  3414. w88.Part0 = p88
  3415. w88.C0 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  3416. w88.Part1 = p89
  3417. w88.C1 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
  3418. w89 = Instance.new("Weld", p89)
  3419. w89.Name = "Wedge_Weld"
  3420. w89.Part0 = p89
  3421. w89.C0 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
  3422. w89.Part1 = p90
  3423. w89.C1 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
  3424. w90 = Instance.new("Weld", p90)
  3425. w90.Name = "Wedge_Weld"
  3426. w90.Part0 = p90
  3427. w90.C0 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
  3428. w90.Part1 = p91
  3429. w90.C1 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
  3430. w91 = Instance.new("Weld", p91)
  3431. w91.Name = "Wedge_Weld"
  3432. w91.Part0 = p91
  3433. w91.C0 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
  3434. w91.Part1 = p92
  3435. w91.C1 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
  3436. w92 = Instance.new("Weld", p92)
  3437. w92.Name = "Wedge_Weld"
  3438. w92.Part0 = p92
  3439. w92.C0 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
  3440. w92.Part1 = p93
  3441. w92.C1 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  3442. w93 = Instance.new("Weld", p93)
  3443. w93.Name = "Wedge_Weld"
  3444. w93.Part0 = p93
  3445. w93.C0 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  3446. w93.Part1 = p94
  3447. w93.C1 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
  3448. w94 = Instance.new("Weld", p94)
  3449. w94.Name = "Wedge_Weld"
  3450. w94.Part0 = p94
  3451. w94.C0 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
  3452. w94.Part1 = p95
  3453. w94.C1 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  3454. w95 = Instance.new("Weld", p95)
  3455. w95.Name = "Wedge_Weld"
  3456. w95.Part0 = p95
  3457. w95.C0 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  3458. w95.Part1 = p96
  3459. w95.C1 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
  3460. w96 = Instance.new("Weld", p96)
  3461. w96.Name = "Wedge_Weld"
  3462. w96.Part0 = p96
  3463. w96.C0 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
  3464. w96.Part1 = p97
  3465. w96.C1 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
  3466. w97 = Instance.new("Weld", p97)
  3467. w97.Name = "Wedge_Weld"
  3468. w97.Part0 = p97
  3469. w97.C0 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
  3470. w97.Part1 = p98
  3471. w97.C1 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  3472. w98 = Instance.new("Weld", p98)
  3473. w98.Name = "Wedge_Weld"
  3474. w98.Part0 = p98
  3475. w98.C0 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  3476. w98.Part1 = p99
  3477. w98.C1 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
  3478. w99 = Instance.new("Weld", p99)
  3479. w99.Name = "Wedge_Weld"
  3480. w99.Part0 = p99
  3481. w99.C0 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
  3482. w99.Part1 = p100
  3483. w99.C1 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
  3484. w100 = Instance.new("Weld", p100)
  3485. w100.Name = "Wedge_Weld"
  3486. w100.Part0 = p100
  3487. w100.C0 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
  3488. w100.Part1 = p101
  3489. w100.C1 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  3490. w101 = Instance.new("Weld", p101)
  3491. w101.Name = "Wedge_Weld"
  3492. w101.Part0 = p101
  3493. w101.C0 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  3494. w101.Part1 = p102
  3495. w101.C1 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  3496. w102 = Instance.new("Weld", p102)
  3497. w102.Name = "Wedge_Weld"
  3498. w102.Part0 = p102
  3499. w102.C0 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  3500. w102.Part1 = p103
  3501. w102.C1 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
  3502. w103 = Instance.new("Weld", p103)
  3503. w103.Name = "Wedge_Weld"
  3504. w103.Part0 = p103
  3505. w103.C0 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
  3506. w103.Part1 = p104
  3507. w103.C1 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  3508. w104 = Instance.new("Weld", p104)
  3509. w104.Name = "Wedge_Weld"
  3510. w104.Part0 = p104
  3511. w104.C0 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  3512. w104.Part1 = p105
  3513. w104.C1 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  3514. w105 = Instance.new("Weld", p105)
  3515. w105.Name = "Wedge_Weld"
  3516. w105.Part0 = p105
  3517. w105.C0 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  3518. w105.Part1 = p106
  3519. w105.C1 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  3520. w106 = Instance.new("Weld", p106)
  3521. w106.Name = "Wedge_Weld"
  3522. w106.Part0 = p106
  3523. w106.C0 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  3524. w106.Part1 = p107
  3525. w106.C1 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  3526. w107 = Instance.new("Weld", p107)
  3527. w107.Name = "Wedge_Weld"
  3528. w107.Part0 = p107
  3529. w107.C0 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  3530. w107.Part1 = p108
  3531. w107.C1 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
  3532. w108 = Instance.new("Weld", p108)
  3533. w108.Name = "Wedge_Weld"
  3534. w108.Part0 = p108
  3535. w108.C0 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
  3536. w108.Part1 = p109
  3537. w108.C1 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
  3538. w109 = Instance.new("Weld", p109)
  3539. w109.Name = "Wedge_Weld"
  3540. w109.Part0 = p109
  3541. w109.C0 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
  3542. w109.Part1 = p110
  3543. w109.C1 = CFrame.new(2.70390519e-005, -0.43863076, -0.44942081, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  3544. w110 = Instance.new("Weld", p110)
  3545. w110.Name = "Hitbox_Weld"
  3546. w110.Part0 = p110
  3547. w110.C0 = CFrame.new(2.7, -0.44, -0.6, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  3548. w110.Part1 = p111
  3549. w110.C1 = CFrame.new(-2.7, -0.68, 0.61, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  3550. m8.Parent = rarm
  3551. m8:MakeJoints()
  3552. ----------------------------------------------------
  3553. local cor8 = Instance.new("Part", rarm.Zyrodoxa)
  3554. cor8.Name = "Thingy"
  3555. cor8.Locked = true
  3556. cor8.BottomSurface = 0
  3557. cor8.CanCollide = false
  3558. cor8.Size = Vector3.new(1, 1, 1)
  3559. cor8.Transparency = 1
  3560. cor8.TopSurface = 0
  3561. corw8 = Instance.new("Weld", cor8)
  3562. corw8.Part0 = rarm
  3563. corw8.Part1 = cor8
  3564. corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
  3565. corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3566. weld8 = Instance.new("Weld", rarm.Zyrodoxa)
  3567. weld8.Part0 = cor8
  3568. weld8.Part1 = rarm.Zyrodoxa.Handle
  3569. weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3570. ----------------------------------------------------
  3571. models = {m,m2,m3,m4,m5,m6,m7,m8}
  3572. parts = {}
  3573. Stepped:connect(function()
  3574. for i,v in pairs(models) do
  3575. for _, a in pairs(v:GetChildren()) do
  3576. if v:IsA("Part") and v.Name ~= "Thingy" then
  3577. table.insert(parts, a)
  3578. for i,v in pairs(parts) do
  3579. v.CanCollide = false
  3580. end
  3581. end
  3582. end
  3583. end
  3584. end)
  3585. ----------------------------------------------------
  3586. local animpose = "Idle1"
  3587. local lastanimpose = "Idle1"
  3588. local grab = false
  3589. local Smooth = 1
  3590. local sine = 0
  3591. local change = 1
  3592. local val = 0
  3593. local ffing = false
  3594. ----------------------------------------------------
  3595. --[[local hitbox = rarm.Zyrodoxa.Hitbox--Zyrodoxa is the name of the dagger k
  3596.  
  3597. function FindHumanoids()
  3598. local function c_region(Position, Size)
  3599. local SizeOffset = Size/2
  3600. local Point1 = Position - SizeOffset
  3601. local Point2 = Position + SizeOffset
  3602. local a = Instance.new("Part", workspace)
  3603. a.Anchored = true
  3604. a.Size = Size
  3605. a.Position = Position
  3606. print("Hey!, I'm making a part!")
  3607. return Region3.new(Point1, Point2)
  3608. end
  3609.  
  3610. local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  3611. local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  3612. local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  3613. local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  3614.  
  3615. local regions = {a, b, c, d}
  3616.  
  3617. local found_humanoids = {}
  3618. local already_found = {char.Name}
  3619.  
  3620. for _, region in pairs(regions) do
  3621. for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
  3622. print(part, part.Parent, part.Name) ---nope
  3623. if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  3624. local humanoid = part.Parent:FindFirstChild("Humanoid")
  3625. local name = humanoid.Parent.Name
  3626. local exists = false
  3627. for _, n in pairs(already_found) do
  3628. if n == name then
  3629. exists = true
  3630. end
  3631. end
  3632. if not exists then
  3633. table.insert(already_found, name)
  3634. table.insert(found_humanoids, humanoid)
  3635. end
  3636. elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  3637. local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  3638. local name = humanoid.Parent.Parent.Name
  3639. local exists = false
  3640. for _, n in pairs(already_found) do
  3641. if n == name then
  3642. exists = true
  3643. end
  3644. end
  3645. if not exists then
  3646. table.insert(already_found, name)
  3647. table.insert(found_humanoids, humanoid)
  3648. end
  3649. end
  3650. end
  3651. end
  3652. return found_humanoids
  3653. end
  3654.  
  3655. local humanoids = FindHumanoids()
  3656. if #humanoids == 0 then
  3657. for i, v in pairs(humanoids) do
  3658. print(v.Parent.Name)
  3659. if Debounces.Slashing == true then
  3660. v:TakeDamage(math.random(10,20) * math.random(1,3)) --max 60 damage?
  3661. elseif Debounces.Slashing == false then
  3662. wait()
  3663. end
  3664. end
  3665. wait(0.3)
  3666. end]]--
  3667. ----------------------------------------------------
  3668. --[[mouse.KeyDown:connect(function(key)
  3669. if key == "f" then
  3670. if Debounces.CanAttack == true then
  3671. Debounces.CanAttack = false
  3672. Debounces.NoIdl = true
  3673. Debounces.on = true
  3674. for i = 1, 20 do
  3675. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  3676. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3677. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
  3678. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  3679. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  3680. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  3681. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  3682. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6,0.6,-0.2)*CFrame.Angles(math.rad(8),math.rad(22),math.rad(15)), 0.8)
  3683. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  3684. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6,0.6,0.2)*CFrame.Angles(math.rad(-8),math.rad(12),math.rad(-12)), 0.8)
  3685. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  3686. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1)*CFrame.Angles(math.rad(-15),math.rad(0),math.rad(0)), 0.5)
  3687. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.5)
  3688. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
  3689. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
  3690. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.1)
  3691. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(5)), 0.1)
  3692. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(3), math.rad(0), math.rad(0)), 0.1)
  3693. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-5)), 0.1)
  3694. if Debounces.on == false then
  3695. break
  3696. end
  3697. fat.Event:wait()
  3698. end
  3699. end
  3700. end
  3701. end)]]--
  3702. ----------------------------------------------------
  3703. mod4 = Instance.new("Model",char)
  3704.  
  3705. ptez = {0.7, 0.8, 0.9, 1}
  3706.  
  3707. function FindNearestTorso(Position,Distance,SinglePlayer)
  3708. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3709. local List = {}
  3710. for i,v in pairs(workspace:GetChildren())do
  3711. if v:IsA("Model")then
  3712. if v:findFirstChild("Torso")then
  3713. if v ~= char then
  3714. if(v.Torso.Position -Position).magnitude <= Distance then
  3715. table.insert(List,v)
  3716. end
  3717. end
  3718. end
  3719. end
  3720. end
  3721. return List
  3722. end
  3723.  
  3724. function Slam()
  3725. local part=Instance.new('Part',mod4)
  3726. part.Anchored=true
  3727. part.CanCollide=false
  3728. part.FormFactor='Custom'
  3729. part.Size=Vector3.new(.2,.2,.2)
  3730. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  3731. part.Transparency=.7
  3732. part.BrickColor=BrickColor.new('Really black')
  3733. mesh=Instance.new('SpecialMesh',part)
  3734. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3735. mesh.Scale=Vector3.new(3,3,3)
  3736. local part2=Instance.new('Part',mod4)
  3737. part2.Anchored=true
  3738. part2.CanCollide=false
  3739. part2.FormFactor='Custom'
  3740. part2.Size=Vector3.new(.2,.2,.2)
  3741. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  3742. part2.Transparency=.7
  3743. part2.BrickColor=BrickColor.new('Really red')
  3744. mesh2=Instance.new('SpecialMesh',part2)
  3745. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3746. mesh2.Scale=Vector3.new(3,1.5,3)
  3747. x = Instance.new("Sound",larm)
  3748. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3749. x.Pitch = ptez[math.random(1,#ptez)]
  3750. x.Volume = 1
  3751. wait(.1)
  3752. x1 = Instance.new("Sound",larm)
  3753. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  3754. x1.Pitch = ptez[math.random(1,#ptez)]
  3755. x1.Volume = 1
  3756. wait(.1)
  3757. x:Play()
  3758. x1:Play()
  3759. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  3760. if v:FindFirstChild('Humanoid') then
  3761. v.Humanoid:TakeDamage(math.random(30,45))
  3762. end
  3763. end
  3764. coroutine.resume(coroutine.create(function()
  3765. for i=0,0.62,0.13 do
  3766. wait()
  3767. part.CFrame=part.CFrame
  3768. part.Transparency=i
  3769. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3770. part2.CFrame=part2.CFrame
  3771. part2.Transparency=i
  3772. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3773. end
  3774. part.Parent=nil
  3775. part2.Parent=nil
  3776. x:Destroy()
  3777. end))
  3778. end
  3779. ----------------------------------------------------
  3780. wPart = function(x,y,z,color,tr,cc,an,parent)
  3781. local wp = Instance.new('WedgePart',parent or Weapon)
  3782. wp.formFactor = 'Custom'
  3783. wp.Size = Vector3.new(x,y,z)
  3784. wp.BrickColor = BrickColor.new(color)
  3785. wp.CanCollide = cc
  3786. wp.Transparency = tr
  3787. wp.Anchored = an
  3788. wp.TopSurface,wp.BottomSurface = 0,0
  3789. return wp
  3790. end
  3791.  
  3792. Mesh = function(par,num,x,y,z)
  3793. local msh = _
  3794. if num == 1 then
  3795. msh = Instance.new("CylinderMesh",par)
  3796. elseif num == 2 then
  3797. msh = Instance.new("SpecialMesh",par)
  3798. msh.MeshType = 3
  3799. elseif num == 3 then
  3800. msh = Instance.new("BlockMesh",par)
  3801. elseif num == 4 then
  3802. msh = Instance.new("SpecialMesh",par)
  3803. msh.MeshType = "Torso"
  3804. elseif type(num) == 'string' then
  3805. msh = Instance.new("SpecialMesh",par)
  3806. msh.MeshId = num
  3807. end
  3808. msh.Scale = Vector3.new(x,y,z)
  3809. return msh
  3810. end
  3811.  
  3812. local function CFrameFromTopBack(at, top, back)
  3813. local right = top:Cross(back)
  3814. return CFrame.new(at.x, at.y, at.z,
  3815. right.x, top.x, back.x,
  3816. right.y, top.y, back.y,
  3817. right.z, top.z, back.z)
  3818. end
  3819.  
  3820. function Triangle(a, b, c)
  3821. local edg1 = (c-a):Dot((b-a).unit)
  3822. local edg2 = (a-b):Dot((c-b).unit)
  3823. local edg3 = (b-c):Dot((a-c).unit)
  3824. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  3825. a, b, c = a, b, c
  3826. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  3827. a, b, c = b, c, a
  3828. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  3829. a, b, c = c, a, b
  3830. else
  3831. print("unreachable")
  3832. end
  3833. local len1 = (c-a):Dot((b-a).unit)
  3834. local len2 = (b-a).magnitude - len1
  3835. local width = (a + (b-a).unit*len1 - c).magnitude
  3836. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  3837. local list = {}
  3838. if len1 > 0.01 then
  3839. local w1 = wPart(0,0,0,'Really red',0.5,false,true,char)
  3840. local sz = Vector3.new(0.2, width, len1)
  3841. w1.Size = sz
  3842. local sp = Mesh(w1,2,0,0,0)
  3843. sp.MeshType='Wedge'
  3844. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  3845. w1:BreakJoints()
  3846. w1.Anchored = true
  3847. w1.Transparency = 0.7
  3848. Spawn(function()
  3849. for i=0,1,0.1 do
  3850. fat.Event:wait()
  3851. w1.Transparency=w1.Transparency+0.03
  3852. end
  3853. end)
  3854. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  3855. table.insert(list,w1)
  3856. end
  3857. if len2 > 0.01 then
  3858. local w2 = wPart(0,0,0,'Really red',0.5,false,true,char)
  3859. local sz = Vector3.new(0.2, width, len2)
  3860. w2.Size = sz
  3861. local sp = Mesh(w2,2,0,0,0)
  3862. sp.MeshType='Wedge'
  3863. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  3864. w2:BreakJoints()
  3865. w2.Anchored = true
  3866. w2.Transparency = 0.7
  3867. Spawn(function()
  3868. for i=0,1,0.1 do
  3869. fat.Event:wait()
  3870. w2.Transparency=w2.Transparency+0.03
  3871. end
  3872. end)
  3873. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  3874. table.insert(list,w2)
  3875. end
  3876. return unpack(list)
  3877. end
  3878.  
  3879. function trail(p,t,h)
  3880. Spawn(function()
  3881. local blcf = p.CFrame
  3882. local scfr = blcf
  3883. for i=1,t do
  3884. local blcf = p.CFrame
  3885. if scfr and (p.Position-scfr.p).magnitude > .1 then
  3886. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  3887. if a then game.Debris:AddItem(a,1) end
  3888. if b then game.Debris:AddItem(b,1) end
  3889. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  3890. if a then game.Debris:AddItem(a,1) end
  3891. if b then game.Debris:AddItem(b,1) end
  3892. scfr = blcf
  3893. elseif not scfr then
  3894. scfr = blcf
  3895. end
  3896. fat.Event:wait()
  3897. end
  3898. scfr=nil
  3899. end)
  3900. end
  3901. --trail(char.Sword.Blade,1e1000,5)
  3902. ----------------------------------------------------
  3903. function Dmg()
  3904. local partofdeath = rarm.Zyrodoxa.Hitbox
  3905. local function CreateRegion3FromLocAndSize(Position, Size)
  3906. local SizeOffset = Size/2
  3907. local Point1 = Position - SizeOffset
  3908. local Point2 = Position + SizeOffset
  3909. return Region3.new(Point1, Point2)
  3910. end
  3911. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  3912. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  3913. Spawn(function()
  3914. if Debounces.Slashing == true and Debounces.Slashed == false then
  3915. Debounces.Slashed = true
  3916. ypcall(function()
  3917. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  3918. humanoid:TakeDamage(math.random(10,18))
  3919. end)
  3920. wait(.4)
  3921. Debounces.Slashed = false
  3922. end
  3923. end)
  3924. end
  3925. end
  3926. ----------------------------------------------------
  3927. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  3928. ptz = {0.7, 0.8, 0.9, 1}
  3929. idz = {"161006212", "161006195"}
  3930. function attackone()
  3931. for i = 1, 13 do
  3932. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.3, -1, -0.3) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  3933. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
  3934. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2, 0.5, -0.3)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(-10)), 0.3)
  3935. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.3)
  3936. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.4)*CFrame.Angles(math.rad(-30),math.rad(0),math.rad(-10)), 0.5)
  3937. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(-40),math.rad(0)), 0.5)
  3938. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
  3939. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
  3940. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
  3941. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(1, -1, 0) * CFrame.Angles(math.rad(18), math.rad(0), math.rad(15)), 0.7)
  3942. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.4, -1.3, 0) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  3943. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(15)), 0.5)
  3944. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  3945. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.5)
  3946. if Debounces.on == false then
  3947. break
  3948. end
  3949. fat.Event:wait()
  3950. end
  3951. trail(rarm.Zyrodoxa.Hitbox,20,2)
  3952. Debounces.Slashing = true
  3953. wait(0.2)
  3954. --[[z = Instance.new("Sound", hed)
  3955. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3956. z.Pitch = ptz[math.random(1,#ptz)]
  3957. z.Volume = 1
  3958. wait(.01)
  3959. z:Play()]]--
  3960. for i = 1, 14 do
  3961. Dmg()
  3962. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  3963. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
  3964. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0.4)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(100)), 0.4)
  3965. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.4)
  3966. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, -0.3)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(-20)), 0.4)
  3967. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.4)
  3968. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
  3969. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  3970. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
  3971. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(-1, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  3972. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  3973. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-14), math.rad(0), math.rad(15)), 0.5)
  3974. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  3975. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(-10)), 0.5)
  3976. if Debounces.on == false then break end
  3977. rs:wait()
  3978. end
  3979. Debounces.Slashing = false
  3980. end
  3981. function attacktwo()
  3982. Debounces.Slashing = true
  3983. for i = 1, 14 do
  3984. Dmg()
  3985. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
  3986. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
  3987. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(80)), 0.7)
  3988. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  3989. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad (-70)), 0.5)
  3990. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  3991. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-90), math.rad(0)), 0.5)
  3992. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  3993. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -2) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
  3994. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  3995. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
  3996. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  3997. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
  3998. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  3999. if Debounces.on == false then
  4000. break
  4001. end
  4002. rs:wait()
  4003. end
  4004. end
  4005. ----------------------------------------------------
  4006. ComboNum = 0
  4007. mouse.Button1Down:connect(function()
  4008. if Debounces.CanAttack == true then
  4009. Debounces.CanAttack = false
  4010. Debounces.NoIdl = true
  4011. Debounces.on = true
  4012. if ComboNum == 0 then
  4013. attackone()
  4014. elseif ComboNum == 1 then
  4015. attacktwo()
  4016. --[[elseif ComboNum == 2 then
  4017. attackthree()]]--
  4018. end
  4019. ComboNum = ComboNum + 1
  4020. Debounces.CanAttack = true
  4021. Debounces.on = false
  4022. wait(.5)
  4023. if Debounces.CanAttack == true then
  4024. ComboNum = 0
  4025. Debounces.NoIdl = false
  4026. end
  4027. end
  4028. end)
  4029. ----------------------------------------------------
  4030. definition = 5
  4031. bc = {}
  4032. bezierparts = {}
  4033. function NoOutline(Part)
  4034. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  4035. end
  4036. function draw(p,d)
  4037. for i=1,d do
  4038. local t = i/d
  4039. bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
  4040. end
  4041.  
  4042. Spawn(function() fat.Event:wait()
  4043. for i,v in pairs(bezierparts) do
  4044. v.Transparency = 1
  4045. end
  4046. end)
  4047. end
  4048. --local points = {larm.Position,rarn.Position,invisipart.Position}
  4049. --draw(points,definition)
  4050.  
  4051. fat.Event:wait()
  4052.  
  4053. rpart = Instance.new("Part",rarm)
  4054. NoOutline(rpart)
  4055. rpart.Anchored = false
  4056. rpart.Size = Vector3.new(1,1,1)
  4057. rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  4058. rpart.Transparency = 1
  4059. newWeld(rarm, rpart, 0, 0, 0)
  4060. rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  4061. lpart = Instance.new("Part",larm)
  4062. NoOutline(lpart)
  4063. lpart.Anchored = false
  4064. lpart.Size = Vector3.new(1,1,1)
  4065. lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  4066. lpart.Transparency = 1
  4067. newWeld(larm, lpart, 0, 0, 0)
  4068. lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  4069. invisipart = Instance.new("Part",torso)
  4070. NoOutline(invisipart)
  4071. invisipart.Anchored = false
  4072. invisipart.Size = Vector3.new(1,1,1)
  4073. invisipart.Transparency = 1
  4074. invisipart.CFrame = torso.CFrame
  4075. newWeld(torso, invisipart, 0, 0, 0)
  4076. invisipart.Weld.C1 = CFrame.new(0, 0, 6)
  4077. table.insert(bezierparts, rpart)
  4078. table.insert(bezierparts, lpart)
  4079. table.insert(bezierparts, invisipart)
  4080. for i = 1, 40 do
  4081. local points = {lpart.Position,invisipart.Position,rpart.Position}
  4082. draw(points,definition)
  4083. --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
  4084. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.1)
  4085. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  4086. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-90)), 0.1)
  4087. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  4088. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
  4089. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  4090. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  4091. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4092. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  4093. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  4094. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  4095. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  4096. if Debounces.on == false then
  4097. break
  4098. end
  4099. fat.Event:wait()
  4100. end
  4101. for i,v in pairs(bezierparts) do
  4102. v:Destroy()
  4103. end
  4104. --draw(points,definition)
  4105. if Debounces.CanAttack == false then
  4106. Debounces.CanAttack = true
  4107. Debounces.NoIdl = false
  4108. Debounces.on = false
  4109. end
  4110.  
  4111. ----------------------------------------------------
  4112. pitches = {0.85, 0.9, 0.95, 1, 1.05, 1.1}
  4113. IDs = {"415880409","415880478"}
  4114. mouse.KeyDown:connect(function(key)
  4115. if key == "h" then
  4116. if Debounces.CanJoke == true then
  4117. Debounces.CanJoke = false
  4118. z = Instance.new("Sound",hed)
  4119. z.SoundId = "rbxassetid://"..IDs[math.random(1,#IDs)]
  4120. z.Pitch = 1
  4121. z.Volume = 1
  4122. z1 = Instance.new("Sound",hed)
  4123. z1.SoundId = z.SoundId
  4124. z1.Pitch = 1
  4125. z1.Volume = 1
  4126. wait()
  4127. z:Play()
  4128. z1:Play()
  4129. wait(20)
  4130. z:Destroy()
  4131. z1:Destroy()
  4132. if Debounces.CanJoke == false then
  4133. Debounces.CanJoke = true
  4134. end
  4135. end
  4136. end
  4137. end)
  4138. ----------------------------------------------------
  4139. mouse.KeyDown:connect(function(key)
  4140. if key == "j" then
  4141. if Debounces.CanJoke == true then
  4142. Debounces.CanJoke = false
  4143. z = Instance.new("Sound",hed)
  4144. z.SoundId = "rbxassetid://415859013"
  4145. z.Pitch = pitches[math.random(1,#pitches)]
  4146. z.Volume = 1
  4147. wait()
  4148. z:Play()
  4149. wait(2)
  4150. z:Destroy()
  4151. if Debounces.CanJoke == false then
  4152. Debounces.CanJoke = true
  4153. end
  4154. end
  4155. end
  4156. end)
  4157. ----------------------------------------------------
  4158. mouse.KeyDown:connect(function(key)
  4159. if key == "k" then
  4160. if Debounces.CanJoke == true then
  4161. Debounces.CanJoke = false
  4162. z = Instance.new("Sound",hed)
  4163. z.SoundId = "rbxassetid://415859085"
  4164. z.Pitch = pitches[math.random(1,#pitches)]
  4165. z.Volume = 1
  4166. wait()
  4167. z:Play()
  4168. wait(2)
  4169. z:Destroy()
  4170. if Debounces.CanJoke == false then
  4171. Debounces.CanJoke = true
  4172. end
  4173. end
  4174. end
  4175. end)
  4176. ----------------------------------------------------
  4177. Grab = false
  4178. mouse.KeyDown:connect(function(key)
  4179. if key == "z" then
  4180. Debounces.on = true
  4181. Debounces.NoIdl = true
  4182. Debounces.ks = true
  4183. if Grab == false then
  4184. gp = nil
  4185. for i = 1, 20 do
  4186. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  4187. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4188. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-80)), 0.2)
  4189. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4190. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
  4191. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4192. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
  4193. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4194. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  4195. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4196. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  4197. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4198. if Debounces.on == false then break end
  4199. fat.Event:wait()
  4200. end
  4201. con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
  4202. ht = hit.Parent
  4203. for i,v in pairs(ht:GetChildren()) do
  4204. if v:IsA("Part") then
  4205. v.CanCollide = false
  4206. v.CustomPhysicalProperties = PhysicalProperties.new(0.001,0.001,0.001,0.001,0.001)
  4207. end
  4208. end
  4209. hum1=ht:FindFirstChild('Humanoid')
  4210. if hum1 ~= nil then
  4211. if Debounces.ks==true then
  4212. z = Instance.new("Sound",hed)
  4213. z.SoundId = "rbxassetid://169380525"
  4214. z.Volume = 1
  4215. z:Play()
  4216. Debounces.ks=false
  4217. end
  4218. hum1.PlatformStand=true
  4219. hum1:ChangeState'Physics'
  4220. gp = ht
  4221. Grab = true
  4222. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
  4223. asd.Parent = larm
  4224. asd.Name = "asd"
  4225. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
  4226. stanceToggle = "Grabbed"
  4227. --[[elseif hum1 == nil then
  4228. con1:disconnect()
  4229. wait() return]]--
  4230. end
  4231. end)
  4232. for i = 1, 20 do
  4233. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  4234. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4235. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.65,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  4236. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4237. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
  4238. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4239. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  4240. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4241. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  4242. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4243. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  4244. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4245. if Debounces.on == false then break end
  4246. fat.Event:wait()
  4247. end
  4248. con1:disconnect()
  4249. Debounces.on = false
  4250. Debounces.NoIdl = false
  4251. elseif Grab == true then
  4252. Grab = false
  4253. --[[for i = 1, 16 do
  4254. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(60)), 0.3)
  4255. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.5)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-60)), 0.3)
  4256. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
  4257. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  4258. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  4259. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  4260. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
  4261. if Debounces.on == false then end
  4262. rs:wait()
  4263. end]]--
  4264. for i = 1, 16 do
  4265. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.3)
  4266. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.5)
  4267. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(140),math.rad(0),math.rad(0)), 0.3)
  4268. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(60)), 0.5)
  4269. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
  4270. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4271. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
  4272. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4273. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(-20)), 0.3)
  4274. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  4275. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  4276. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4277. if Debounces.on == false then end
  4278. rs:wait()
  4279. end
  4280. for i = 1, 12 do
  4281. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.6)
  4282. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4283. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.3,-0.1)*CFrame.Angles(math.rad(45),math.rad(0),math.rad(-32)), 0.6)
  4284. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4285. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(40), math.rad(14)),0.6)
  4286. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4287. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(0)), 0.6)
  4288. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.5)
  4289. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
  4290. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  4291. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.4, .2, -0.8) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.6)
  4292. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(20), math.rad(0)), 0.4)
  4293. if Debounces.on == false then end
  4294. rs:wait()
  4295. end
  4296. Slam()
  4297. if gp ~= nil then
  4298. for i,v in pairs(larm:GetChildren()) do
  4299. if v.Name == "asd" and v:IsA("Weld") then
  4300. v:Remove()
  4301. end
  4302. if v:IsA("Part") then
  4303. v.CanCollide = true
  4304. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  4305. end
  4306. end
  4307. end
  4308. stanceToggle = "Idle1"
  4309. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  4310. bv.maxForce = Vector3.new(400000, 400000, 400000)
  4311. bv.P = 125000
  4312. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  4313. ht=nil
  4314. Debounces.on = false
  4315. Debounces.NoIdl = false
  4316. elseif ht == nil then wait()
  4317. Grab = false
  4318. Debounces.on = false
  4319. Debounces.NoIdl = false
  4320. end
  4321. end
  4322. end)
  4323. ----------------------------------------------------
  4324. Change = false
  4325. mouse.KeyDown:connect(function(key)
  4326. if key == "n" then
  4327. if Change == false then
  4328. Change = true
  4329. stanceToggle = "Idle2"
  4330. elseif Change == true then
  4331. Change = false
  4332. stanceToggle = "Idle1"
  4333. end
  4334. end
  4335. end)
  4336. ----------------------------------------------------
  4337. mouse.KeyDown:connect(function(key)
  4338. if string.byte(key) == 52 then
  4339. Swing = 2
  4340. char.Humanoid.WalkSpeed = 28
  4341. end
  4342. end)
  4343. mouse.KeyUp:connect(function(key)
  4344. if string.byte(key) == 52 then
  4345. Swing = 1
  4346. char.Humanoid.WalkSpeed = 16
  4347. end
  4348. end)
  4349. ----------------------------------------------------
  4350.  
  4351. jump = false
  4352. rs:connect(function()
  4353. if char.Humanoid.Jump == true then
  4354. jump = true
  4355. else
  4356. jump = false
  4357. end
  4358. char.Humanoid.FreeFalling:connect(function(f)
  4359. if f then
  4360. ffing = true
  4361. else
  4362. ffing = false
  4363. end
  4364. end)
  4365. sine = sine + change
  4366. if jump == true then
  4367. animpose = "Jumping"
  4368. elseif ffing == true then
  4369. animpose = "Freefalling"
  4370. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  4371. animpose = "Idle"
  4372. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  4373. animpose = "Walking"
  4374. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  4375. animpose = "Running"
  4376. end
  4377. RightLeg = CFrame.new(0.5,-1,0)
  4378. LeftLeg = CFrame.new(-0.5,-1,0)
  4379.  
  4380. lefth = (torso.CFrame*LeftLeg)
  4381. righth = (torso.CFrame*RightLeg)
  4382.  
  4383. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  4384.  
  4385. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  4386.  
  4387. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  4388. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  4389. if animpose ~= lastanimpose then
  4390. sine = 0
  4391. if Debounces.NoIdl == false then
  4392. if stanceToggle == "Idle1" then
  4393. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-12-4*math.cos(sine/22)),math.rad(-12-2*math.cos(sine/22)),math.rad(12+2*math.cos(sine/22))), 0.3)
  4394. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,-0.2)*CFrame.Angles(math.rad(20+4*math.cos(sine/22)),math.rad(-22-2*math.cos(sine/22)),math.rad(-15-2*math.cos(sine/22))), 0.3)
  4395. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-12+2.5*math.cos(sine/22)),math.rad(0),math.rad(0)), 0.2)
  4396. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-2+2*math.cos(sine/22)), math.rad(0), 0), 0.2)
  4397. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(5), math.rad(-5)), 0.2)
  4398. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(-5), math.rad(5)), 0.2)
  4399. elseif stanceToggle == "Idle2" then
  4400. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-22-4*math.cos(sine/12)),math.rad(-40-2*math.cos(sine/12)),math.rad(24+2*math.cos(sine/12))), 0.3)
  4401. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.6,-0.6)*CFrame.Angles(math.rad(90+4*math.cos(sine/12)),math.rad(0),math.rad(50-2*math.cos(sine/12))), 0.3)
  4402. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-6+2.5*math.cos(sine/12)),math.rad(0),math.rad(0)), 0.2)
  4403. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20+2*math.cos(sine/12)), math.rad(0), 0), 0.2)
  4404. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.4, -1) * CFrame.Angles(math.rad(-7-2*math.cos(sine/12)), math.rad(7), math.rad(-5)), 0.2)
  4405. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -0.2) * CFrame.Angles(math.rad(-30-2*math.cos(sine/12)), math.rad(-9), math.rad(5)), 0.2)
  4406. end
  4407. fat.Event:wait()
  4408. end
  4409. else
  4410. end
  4411. lastanimpose = animpose
  4412. if Debounces.NoIdl == false then
  4413. if animpose == "Idle" then
  4414. change = 0.5
  4415. if stanceToggle == "Idle1" then
  4416. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05+0.03*math.cos(sine/5), 0-0.1*math.cos(sine/10)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4417. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0+8*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.3)
  4418.  
  4419. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6+0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),-0.2-0.1*math.cos(sine/10))*CFrame.Angles(math.rad(8+2.5*math.cos(sine/10)),math.rad(22+7*math.cos(sine/10)),math.rad(15+2*math.cos(sine/10))), 0.8)
  4420. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4421. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6-0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),0.2+0.1*math.cos(sine/10))*CFrame.Angles(math.rad(-8-2.5*math.cos(sine/10)),math.rad(12+5*math.cos(sine/10)),math.rad(-12-3*math.cos(sine/10))), 0.8)
  4422. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4423. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.05*math.cos(sine/10))*CFrame.Angles(math.rad(-15+3*math.cos(sine/10)),math.rad(0),math.rad(0)), 0.5)
  4424. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20-3*math.cos(sine/10)),math.rad(0)), 0.5)
  4425. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6+3*math.cos(sine/10)), math.rad(0), 0), 0.1)
  4426. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0-0.08*math.cos(sine/10), -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20+3*math.cos(sine/10)), 0), 0.1)
  4427. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14+0.06*math.cos(sine/10)) * CFrame.Angles(math.rad(-3-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  4428. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10-3*math.cos(sine/10)), math.rad(5+3*math.cos(sine/10))), 0.1)
  4429. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(8-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  4430. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10-3*math.cos(sine/10)), math.rad(-5+3*math.cos(sine/10))), 0.1)
  4431. elseif stanceToggle == "Idle2" then
  4432.  
  4433. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4434. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65-0.1*math.cos(sine/3),0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20-2*math.cos(sine/3))), 0.1)
  4435. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  4436. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.23, 0.5, -.56) * CFrame.Angles(math.rad(88+4*math.cos(sine/3)), 0, math.rad(45)), 0.6)
  4437. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  4438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(-10+2*math.cos(sine/6)), 0, 0), 0.8)
  4439. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  4440. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  4441. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-5-10*math.cos(sine/18)), math.sin(sine/36)/3, 0), 0.3)
  4442. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4443. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.15) * CFrame.Angles(math.rad(-9-2*math.cos(sine/6)), 0, 0), 0.8)
  4444. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1-0.1*math.cos(sine/3), 0+0.04*math.cos(sine/6)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)), 0.8)
  4445. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56-2*math.cos(sine/6)), 0, 0), 0.8)
  4446. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.8)
  4447. elseif stanceToggle == "Grabbed" then
  4448. grab = true
  4449. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4450. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4451. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
  4452. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  4453. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(90+4*math.cos(sine/14)),math.rad(0),math.rad(-80+4*math.cos(sine/14))), 0.3)
  4454. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  4455. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3)
  4456. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4457. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  4458. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  4459. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  4460. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  4461. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  4462. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  4463. end
  4464. elseif animpose == "Walking" then
  4465. if stanceToggle == "Grabbed" then
  4466. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4467. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4468. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  4469. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  4470. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120+4*math.cos(sine/2)),math.rad(0),math.rad(-30+4*math.cos(sine/4))), 0.3)
  4471. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  4472. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  4473. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  4474. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  4475. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  4476. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  4477. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  4478. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  4479. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  4480. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  4481. elseif stanceToggle ~= "Grabbed" then
  4482. change = 1
  4483. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4484. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4485.  
  4486. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  4487. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  4488. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5+.05*math.cos(sine/2), -math.sin(sine/4)/4)*CFrame.Angles(math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(-10-7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  4489. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  4490. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  4491. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  4492. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  4493. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  4494. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  4495. --lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.9-0.24*math.cos(sine/4)/2.8, -0.05 + math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)-math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  4496. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  4497. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  4498. --rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.9+0.24*math.cos(sine/4)/2.8, -0.05 + -math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)+math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  4499. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  4500. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  4501. end
  4502. elseif animpose == "Running" then
  4503. change = 1
  4504. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4505. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4506.  
  4507. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.24+.6*math.cos(sine/4)/1.4, 0.54, 0+0.8*math.cos(sine/4)) * CFrame.Angles(math.rad(6-140*math.cos(sine/4)/1.2), math.rad(0), math.rad(-20+70*math.cos(sine/4))), 0.2)
  4508. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  4509. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24+.6*math.cos(sine/4)/1.4, 0.54, 0-0.8*math.cos(sine/4))*CFrame.Angles(math.rad(6+140*math.cos(sine/4)/1.2), math.rad(0), math.rad(20+70*math.cos(sine/4))), 0.2)
  4510. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4511. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-8+12*math.cos(sine/2)/1.5), math.rad(0+12*math.cos(sine/4)), math.rad(0)),0.2)
  4512. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.5)
  4513. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/2)/1.7, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/2)/1.5), math.rad(0-12*math.cos(sine/4))-root.RotVelocity.Y/10, math.rad(0)+root.RotVelocity.Y/20), 0.2)
  4514. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  4515. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.8-0.4*math.cos(sine/4)/2, math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + -math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  4516. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4517. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8+0.4*math.cos(sine/4)/2, -math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  4518. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4519. elseif animpose == "Jumping" then
  4520.  
  4521. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4522. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4523. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.2)
  4524. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  4525. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.2)
  4526. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4527. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
  4528. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4529. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  4530. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  4531. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4532. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  4533. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4534. elseif animpose == "Freefalling" then
  4535.  
  4536. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  4537. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4538. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-40),math.rad(20),math.rad(50)), 0.2)
  4539. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  4540. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(110),math.rad(-20),math.rad(-30)), 0.2)
  4541. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  4542. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  4543. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  4544. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  4545. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.5, 0.2) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  4546. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4547. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.6) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.2)
  4548. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  4549. end
  4550. end
  4551. end)
  4552. hum.MaxHealth = 5000
  4553. wait(3)
  4554. hum.Health = 5000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement