Advertisement
memberhero

for my friend luigifelix dont touch

Oct 15th, 2016
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 212.38 KB | None | 0 0
  1. -- Ezio Suit --
  2. -- Local Script --
  3.  
  4. script.Parent = nil
  5.  
  6. local plr = game.Players.LocalPlayer
  7. local char = plr.Character
  8. local hum = char.Humanoid
  9. local tar = char["Torso"]
  10.  
  11. local par = char
  12.  
  13. local capename = "sCape"
  14. if par:FindFirstChild(capename) then par[capename]:Destroy() end
  15.  
  16. local Parts = {}
  17. local capeLength = 4 -- studs
  18. local partAm = 25
  19. local startWidth = 2.2
  20. local endWidth = 3.4
  21. local thickness = .1
  22. local ups = 30 -- updates per second
  23. local clr = BrickColor.new("Really black")
  24. local hood = true
  25. local suit = true
  26. local phys = true
  27.  
  28.  
  29. local widthCh = (endWidth-startWidth)/partAm
  30. local zSiz = capeLength/partAm
  31.  
  32.  
  33. local Model = Instance.new("Model",par)
  34. Model.Name = capename
  35.  
  36. function weld(p0,p1,c0,c1)
  37. local w = Instance.new("Weld",Model)
  38. w.Part0 = p0
  39. w.Part1 = p1
  40. w.C0 = c0 or CFrame.new()
  41. w.C1 = c1 or CFrame.new()
  42. return w
  43. end
  44.  
  45. function invcol(c)
  46. c = c.Color
  47. return BrickColor.new(Color3.new(1-c.b,1-c.g,1-c.r))
  48. end
  49.  
  50. local part = Instance.new("Part",Model)
  51. Instance.new("BlockMesh",part)
  52. part.FormFactor = "Custom"
  53. part.BrickColor = clr
  54. part.FormFactor = "Custom"
  55. part.Size = Vector3.new(.2,.2,.2)
  56. part.Parent = Model
  57. part:BreakJoints()
  58. part.Reflectance = 0
  59. part.CanCollide = false
  60. part.Locked = true
  61. part.Mesh.Scale = Vector3.new(startWidth,thickness,1+(thickness))/.2
  62. part.TopSurface = "Smooth"
  63. part.BottomSurface = "Smooth"
  64. weld(tar,part,CFrame.new(0,.989,0))
  65.  
  66. local tor,la,ra,ll,rl,hd = char:FindFirstChild("Torso"),char:FindFirstChild("Left Arm"),char:FindFirstChild("Right Arm"),
  67. char:FindFirstChild("Left Leg"), char:FindFirstChild("Right Leg"), char:FindFirstChild("Head")
  68.  
  69. pcall(function() la.Transparency = 0 end)
  70. pcall(function() ra.Transparency = 0 end)
  71. pcall(function() ll.Transparency = 0 end)
  72. pcall(function() rl.Transparency = 0 end)
  73. pcall(function() hd.Transparency = 0 end)
  74. pcall(function() tar.Transparency = 0 end)
  75.  
  76. if not hood or not suit then
  77. pcall(function() hd.face.Face = "Front" end)
  78. end
  79.  
  80. if hood then
  81. for i,v in pairs(char:GetChildren()) do if v:IsA("Hat") then pcall(function() v.Handle.Transparency = 1 end) end end
  82. local hood = part:Clone()
  83. hood.Parent = Model
  84. hood.Mesh:Destroy()
  85. local m = Instance.new("SpecialMesh",hood)
  86. m.MeshId = "http://www.roblox.com/asset/?id=16952952"
  87. m.TextureId = "http://www.roblox.com/asset/?id=91740209"
  88. m.Scale = Vector3.new(1.06,1.06,1.06)
  89. m.VertexColor = Vector3.new(clr.Color.r,clr.Color.g,clr.Color.b)
  90. weld(hd,hood,CFrame.new(0,0.3,-.08))
  91. end
  92. if suit then
  93. part.Mesh.Scale = Vector3.new(2,thickness,1+thickness)/.2
  94. pcall(function() la.Transparency = 1 end)
  95. pcall(function() ra.Transparency = 1 end)
  96. pcall(function() ll.Transparency = 1 end)
  97. pcall(function() rl.Transparency = 1 end)
  98. pcall(function() tar.Transparency = 1 end)
  99. if hd and hood then
  100. local hd2 = hd:Clone()
  101. hd2.Parent = Model
  102. weld(hd,hd2)
  103. hd.Transparency = 1
  104. hd2.Transparency = 0
  105. pcall(function() hd2.face:Destroy() end)
  106. pcall(function() hd2.Mesh.Scale = hd2.Mesh.Scale + Vector3.new(.01,.01,.01) end)
  107. pcall(function() hd.face.Face = "Bottom" end)
  108. hd2.BrickColor = BrickColor.new("Really black")
  109. local bbg = Instance.new("BillboardGui",hd2)
  110. bbg.Size = UDim2.new(2,0,1,0)
  111. bbg.SizeOffset = Vector2.new(0,1.2)
  112. local tl = Instance.new("TextLabel",bbg)
  113. tl.BackgroundTransparency = 1
  114. tl.Size = UDim2.new(1,0,.4,0)
  115. tl.TextScaled = true
  116. tl.Text = char.Name--"Assassin"
  117. tl.TextTransparency = .9
  118. tl.TextColor3 = Color3.new(1,0,0)
  119. end
  120. local p = part:Clone()
  121. p.BrickColor = BrickColor.new("Dark stone grey")
  122. p.Reflectance = .4
  123. p.Parent = Model
  124. p.Mesh.Scale = Vector3.new(1.2,.3,.1)/.2
  125. weld(ra,p,CFrame.new(0,1,-.5) * CFrame.Angles(math.rad(20),0,math.rad(5)))
  126. p = p:Clone()
  127. p.Parent = Model
  128. weld(ra,p,CFrame.new(0,1,.5) * CFrame.Angles(math.rad(-20),0,math.rad(5)))
  129.  
  130. p = p:Clone()
  131. p.Parent = Model
  132. p.Mesh.Scale = Vector3.new(1.2,.4,.1)/.2
  133. weld(ra,p,CFrame.new(-.02,1.15,-.275) * CFrame.Angles(math.rad(80),math.rad(5),math.rad(2.5)))
  134. p = p:Clone()
  135. p.Parent = Model
  136. weld(ra,p,CFrame.new(-.02,1.15,.275) * CFrame.Angles(math.rad(-80),math.rad(-5),math.rad(2.5)))
  137.  
  138. p = p:Clone()
  139. p.Parent = Model
  140. p.Mesh.Scale = Vector3.new(1.2,.2,.1)/.2
  141. weld(ra,p,CFrame.new(-.03,1.185,0) * CFrame.Angles(math.rad(90),math.rad(5),math.rad(0)))
  142. p = p:Clone()
  143. p.Parent = Model
  144. p.Mesh.Scale = Vector3.new(.1,.2,1)/.2
  145. weld(ra,p,CFrame.new(.55,.975,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)))
  146. p = p:Clone()
  147. p.Parent = Model
  148. p.Mesh.Scale = Vector3.new(.1,.2,.9)/.2
  149. weld(ra,p,CFrame.new(.54,1.095,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)))
  150. p = p:Clone()
  151. p.Parent = Model
  152. p.Mesh.Scale = Vector3.new(.1,.2,1)/.2
  153. weld(ra,p,CFrame.new(-.34,1.025,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)))
  154.  
  155. local p2 = p:Clone()
  156. p2.BrickColor = clr
  157. p2.Parent = Model
  158. p2.Mesh.Scale = Vector3.new(.1,1.35,.2)/.2
  159. weld(ra,p2,CFrame.new(.5,-.35,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  160. p2 = p2:Clone()
  161. p2.Parent = Model
  162. p2.Mesh.Scale = Vector3.new(.1,.5,.2)/.2
  163. weld(ra,p2,CFrame.new(.499,0.055,-.145) * CFrame.Angles(math.rad(30),math.rad(0),math.rad(0)))
  164. p2 = p2:Clone()
  165. p2.Parent = Model
  166. p2.Mesh.Scale = Vector3.new(.1,.5,.2)/.2
  167. weld(ra,p2,CFrame.new(.499,0.055,.145) * CFrame.Angles(math.rad(-30),math.rad(0),math.rad(0)))
  168. p2 = p2:Clone()
  169. p2.Parent = Model
  170. p2.Mesh.Scale = Vector3.new(.1,.905,.2)/.2
  171. weld(ra,p2,CFrame.new(.498,-.569,-.255) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  172. p2 = p2:Clone()
  173. p2.Parent = Model
  174. p2.Mesh.Scale = Vector3.new(.1,.905,.2)/.2
  175. weld(ra,p2,CFrame.new(.498,-.569,.255) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  176. p2 = p2:Clone()
  177. p2.Parent = Model
  178. p2.Mesh.Scale = Vector3.new(1.05,.1,.199)/.2
  179. weld(ra,p2,CFrame.new(.0249,-1,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  180. p2 = p2:Clone()
  181. p2.Parent = Model
  182. p2.Mesh.Scale = Vector3.new(1.05,.1,.199)/.2
  183. weld(ra,p2,CFrame.new(.0235,-1,.255) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  184. p2 = p2:Clone()
  185. p2.Parent = Model
  186. p2.Mesh.Scale = Vector3.new(1.05,.1,.199)/.2
  187. weld(ra,p2,CFrame.new(.0235,-1,-.255) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  188. p2 = p2:Clone()
  189. p2.Parent = Model
  190. p2.Mesh.Scale = Vector3.new(.7,.7,1.1)/.2
  191. weld(ra,p2,CFrame.new(0,-.5,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  192.  
  193. p = p:Clone()
  194. p.Parent = Model
  195. p.Mesh.Scale = Vector3.new(1.05,1.05,1.05)/.2
  196. weld(ra,p,CFrame.new(0,-.5,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  197.  
  198.  
  199. p = part:Clone()
  200. p.Parent = Model
  201. p.Mesh.Scale = Vector3.new(1.01,1.01,1.01)/.2
  202. weld(ra,p,CFrame.new(0,0.5,0))
  203. local p3 = part:Clone()
  204. p3.Parent = Model
  205. p3.Mesh:Destroy()
  206. Instance.new("SpecialMesh",p3).MeshType = Enum.MeshType.Wedge
  207. p3.Mesh.Scale = Vector3.new(1.05,1.05,1.21)/.2
  208. weld(la,p3,CFrame.new(-.1,.5,0) * CFrame.Angles(math.rad(180),math.rad(90),math.rad(0)))
  209. p = p:Clone()
  210. p.Parent = Model
  211. p.Mesh:Destroy()
  212. p.BrickColor = BrickColor.new("Brick yellow")
  213. Instance.new("SpecialMesh",p).MeshType = Enum.MeshType.Brick
  214. p.Mesh.Scale = Vector3.new(1,2,1)/.2
  215. weld(la,p,CFrame.new(0,0,0))
  216. p = p:Clone()
  217. p.Parent = Model
  218. p.BrickColor = invcol(clr)
  219. p.Mesh.Scale = Vector3.new(1.05,1.5,1.04)/.2
  220. weld(la,p,CFrame.new(0,.25,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  221.  
  222. p = part:Clone()
  223. p.BrickColor = invcol(clr)
  224. p.Parent = Model
  225. p.Mesh.Scale = Vector3.new(2.1,.2,1.099)/.2
  226. weld(tar,p,CFrame.new(0,-.91,0))
  227. p = p:Clone()
  228. p.Parent = Model
  229. p.Mesh.Scale = Vector3.new(.2,2.41,1.099)/.2
  230. weld(tar,p,CFrame.new(0,0.05,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(40)))
  231. p = p:Clone()
  232. p.Parent = Model
  233. p.Mesh.Scale = Vector3.new(.1,.1,1.099)/.2
  234. weld(tar,p,CFrame.new(-.8,.95,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  235.  
  236. p = part:Clone()
  237. p.Parent = Model
  238. p.Mesh.Scale = Vector3.new(2.003,2.003,1.003)/.2
  239. weld(tar,p,CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  240.  
  241. p = p:Clone()
  242. p.Parent = Model
  243. p.Mesh.Scale = Vector3.new(1.003,2.003,1.003)/.2
  244. weld(ll,p,CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  245. p = p:Clone()
  246. p.Parent = Model
  247. p.Mesh.Scale = Vector3.new(1.003,2.003,1.003)/.2
  248. weld(rl,p,CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)))
  249. end
  250.  
  251. local Main = part:Clone()
  252. Main.Parent = Model
  253. Main.Mesh.Scale = Vector3.new(startWidth/.2,thickness/Main.Size.Y,zSiz/Main.Size.X)
  254. Main:BreakJoints()
  255.  
  256. local M1 = Instance.new("Motor6D")
  257. M1.MaxVelocity = 0
  258. M1.Part0 = tar
  259. M1.Part1 = Main
  260. M1.C0 = CFrame.new(0,1,.5) * CFrame.Angles(0,math.pi/2,0)
  261. M1.C1 = CFrame.new(0,0,-zSiz/2) * CFrame.Angles(0,math.pi/2,0)
  262. M1.Parent = Model
  263. --[[
  264. local p2 = Main:Clone()
  265. p2.Parent = Model
  266. p2.Size = Vector3.new(.2,p2.Size.X,.2)
  267. p2.Mesh:Destroy()
  268. Instance.new("CylinderMesh",p2).Scale = Vector3.new(1,.99,1)
  269. local W = Instance.new("Weld",Model)
  270. W.Part0 = Main
  271. W.Part1 = p2
  272. W.C0 = CFrame.new(0,0,-zSiz/2) * CFrame.Angles(0,0,math.pi/2)]]
  273. local last = Main
  274.  
  275. for i=1,partAm-1 do
  276. local p = Main:Clone()
  277. p.Parent = Model
  278. local sz = widthCh*i/.2
  279. p.Mesh.Scale = Vector3.new(p.Mesh.Scale.X + sz,p.Mesh.Scale.Y,p.Mesh.Scale.Z)
  280. p:BreakJoints()
  281. local M = M1:Clone()
  282. M.C0 = CFrame.new(0,0,zSiz/2) * CFrame.Angles(0,math.pi/2,0)
  283. M.Part0 = last
  284. M.Part1 = p
  285. M.Parent = Model
  286.  
  287. table.insert(Parts,{p = M, l = 0, an = 0})
  288. last = p
  289. end
  290.  
  291. function Lerp(start,goal,alpha)
  292. return start* (1-alpha) + goal*alpha
  293. end
  294.  
  295. local mode = "idle"
  296.  
  297. function getForwardSpeed()
  298. local FwVec = tar.Velocity * tar.CFrame.lookVector
  299. FwVec = Vector3.new(FwVec.X > -0.05 and FwVec.X or 0, 0, FwVec.Z > -0.05 and FwVec.Z or 0)
  300. return FwVec.X + FwVec.Z
  301. end
  302.  
  303. function getBackwardSpeed()
  304. local BwVec = tar.Velocity * tar.CFrame.lookVector
  305. BwVec = Vector3.new(BwVec.X < 0.05 and BwVec.X or 0, 0, BwVec.Z < 0.05 and BwVec.Z or 0)
  306. return BwVec.X + BwVec.Z
  307. end
  308.  
  309. function getMainAlpha()
  310. return .2
  311. end
  312.  
  313. function getAngle()
  314. if mode == "run" then return math.max(0.1,math.min(2-(getForwardSpeed()/16)^0.50,1)) end
  315. if mode == "jump" then return 1.55 end
  316. if mode == "fall" then return -1.2 end
  317. if mode == "moonwalk" then return 1.50 end
  318. return 1.55
  319. end
  320.  
  321. function getWaveAm()
  322. if mode == "run" then return 1 end
  323. if mode == "jump" then return 3 end
  324. if mode == "fall" then return 1 end
  325. if mode == "moonwalk" then return 1 end
  326. return .1
  327. end
  328.  
  329. function getWaveSize()
  330. if mode == "run" then return .1 end
  331. if mode == "jump" then return .1 end
  332. if mode == "fall" then return .1 end
  333. if mode == "moonwalk" then return .01 end
  334. return math.rad(1)
  335. end
  336.  
  337. while Model ~= nil and Model.Parent ~= nil and tar ~= nil and not closeall do
  338. local verVel = tar.CFrame:vectorToObjectSpace(tar.Velocity).Y
  339. if verVel < -5 then
  340. mode = "fall"
  341. elseif verVel > 5 then
  342. mode = "jump"
  343. else
  344. if getForwardSpeed() > 0 or getBackwardSpeed() > 0 then
  345. if getForwardSpeed() > char.Humanoid.WalkSpeed/2 then
  346. mode = "run"
  347. else
  348. mode = "moonwalk"
  349. end
  350. else
  351. mode = "idle"
  352. end
  353. end
  354. local wave = (math.abs((tick() % (1/getWaveAm()))-(1/getWaveAm()/2)) - (1/getWaveAm()/2)) *(getWaveAm()*getWaveSize())
  355.  
  356. M1.CurrentAngle = Lerp(M1.CurrentAngle,getAngle(),.2)+wave -- .2 = 50
  357.  
  358. local an = M1.CurrentAngle
  359. local blkd = false
  360. local blkan = 0
  361. for i,v in pairs(Parts) do
  362.  
  363. local ang = Lerp((v.an-an),0,0.4 + (0.05*(partAm/10))) -- .7 = 50
  364. v.p.CurrentAngle = ang
  365.  
  366. if capeLength > 4 and phys then
  367. local part0 = v.p.Part0
  368. local part1 = v.p.Part1
  369. local x = part0.Mesh.Scale.X*.2
  370. local lblkd = false
  371. local am = 3
  372. for a=1,am do
  373. local pos0 = (part0.CFrame * CFrame.new(-x/2+x/am*a,0,0)).p + Vector3.new(0,thickness,0)
  374. local pos1= (part1.CFrame * CFrame.new(-x/2+x/am*a,0,0)).p - Vector3.new(0,thickness,0)
  375. local hit,ray = workspace:FindPartOnRayWithIgnoreList(Ray.new(pos0,(pos1-pos0).unit*(pos0-pos1).magnitude),{Model,workspace.CurrentCamera,char})
  376. if hit and hit.CanCollide then
  377. lblkd = true
  378. break
  379. end
  380. end
  381. if blkd and not lblkd then
  382. ang = 1.55--blkan
  383. elseif lblkd then
  384. if not blkd then
  385. ang = -an
  386. blkan = an
  387. end
  388. end
  389. blkd = lblkd
  390.  
  391. v.p.CurrentAngle = ang
  392. end
  393.  
  394. v.an = an
  395. an = an + ang
  396. end
  397.  
  398.  
  399.  
  400.  
  401. local char = p.Character
  402. local mouse = p:GetMouse()
  403. local larm = char["Left Arm"]
  404. local rarm = char["Right Arm"]
  405. local lleg = char["Left Leg"]
  406. local rleg = char["Right Leg"]
  407. local hed = char.Head
  408. local torso = char.Torso
  409. z = Instance.new("Sound", torso)
  410. z.SoundId = "rbxassetid://200514784" -- Put Music ID Here.
  411. z.Looped = true
  412. z.Pitch = 0.73
  413. z.Volume = 1
  414. wait(.1)
  415. z:Play()
  416. local hum = char.Humanoid
  417. local cam = game.Workspace.CurrentCamera
  418. local root = char.HumanoidRootPart
  419. local deb = false
  420. local shot = 0
  421. local stanceToggle = "Normal"
  422. local l = game:GetService("Lighting")
  423. local runs = game:GetService("RunService")
  424. local debris=game:service"Debris"
  425. local rs = runs.RenderStepped
  426. local hb = runs.Heartbeat
  427. local step = runs.Stepped
  428. local stanceToggle = "Normal"
  429. math.randomseed(os.time())
  430. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  431. ptz = {0.75, 0.8, 0.85, 0.9, 0.95, 1}
  432. idz = {"231917856", "231917863"}
  433. ----------------------------------------------------
  434. --[[for i,v in pairs(char:children()) do
  435. if v:IsA("Hat") then
  436. v:Destroy()
  437. end
  438. end]]--
  439. for i,v in pairs (hed:GetChildren()) do
  440. if v:IsA("Sound") then
  441. v:Destroy()
  442. end
  443. end
  444. ----------------------------------------------------
  445. Debounces = {
  446. CanAttack = true;
  447. CanJoke = true;
  448. NoIdl = false;
  449. Slashing = false;
  450. Slashed = false;
  451. ks = false;
  452. RKick = false;
  453. RKicked = false;
  454. }
  455. ----------------------------------------------------
  456. function weld5(part0, part1, c0, c1)
  457. weeld=Instance.new("Weld", part0)
  458. weeld.Part0=part0
  459. weeld.Part1=part1
  460. weeld.C0=c0
  461. weeld.C1=c1
  462. return weeld
  463. end
  464. ----------------------------------------------------
  465. function lerp(a, b, t) -- Linear interpolation
  466. return a + (b - a)*t
  467. end
  468.  
  469. function slerp(a, b, t) --Spherical interpolation
  470. dot = a:Dot(b)
  471. if dot > 0.99999 or dot < -0.99999 then
  472. return t <= 0.5 and a or b
  473. else
  474. r = math.acos(dot)
  475. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  476. end
  477. end
  478.  
  479. function matrixInterpolate(a, b, t)
  480. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  481. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  482. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  483. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  484. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  485. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  486. local t = v1:Dot(v2)
  487. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  488. return CFrame.new()
  489. end
  490. return CFrame.new(
  491. v0.x, v0.y, v0.z,
  492. v1.x, v1.y, v1.z,
  493. v2.x, v2.y, v2.z,
  494. v3.x, v3.y, v3.z)
  495. end
  496. ----------------------------------------------------
  497. function genWeld(a,b)
  498. local w = Instance.new("Weld",a)
  499. w.Part0 = a
  500. w.Part1 = b
  501. return w
  502. end
  503. function weld(a, b)
  504. local weld = Instance.new("Weld")
  505. weld.Name = "W"
  506. weld.Part0 = a
  507. weld.Part1 = b
  508. weld.C0 = a.CFrame:inverse() * b.CFrame
  509. weld.Parent = a
  510. return weld;
  511. end
  512. ----------------------------------------------------
  513. function Lerp(c1,c2,al)
  514. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  515. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  516. for i,v in pairs(com1) do
  517. com1[i] = v+(com2[i]-v)*al
  518. end
  519. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  520. end
  521. ----------------------------------------------------
  522. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  523. local wld = Instance.new("Weld", wp1)
  524. wld.Part0 = wp0
  525. wld.Part1 = wp1
  526. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  527. end
  528. ----------------------------------------------------
  529. function Tween(a,b,c)
  530. return a+(b-a)*c
  531. end
  532. ----------------------------------------------------
  533. function NewPart(prnt,siz,cf,col,mat)
  534. local prt=Instance.new("Part")
  535. prt.Parent=prnt
  536. prt.FormFactor=3
  537. prt.Name="Part"
  538. prt.Size=siz
  539. prt.CanCollide=false
  540. prt.Anchored=true
  541. prt.Locked=true
  542. prt.TopSurface=10
  543. prt.BottomSurface=10
  544. prt.FrontSurface=10
  545. prt.BackSurface=10
  546. prt.LeftSurface=10
  547. prt.RightSurface=10
  548. prt:BreakJoints()
  549. prt.CFrame=cf or CFrame.new(30,10,30)
  550. prt.Material=mat
  551. prt.BrickColor=BrickColor.new(col)
  552. m=Instance.new("SpecialMesh",prt)
  553. m.MeshType=6
  554. return prt
  555. end
  556. ----------------------------------------------------
  557. newWeld(torso, larm, -1.5, 0.5, 0)
  558. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  559. newWeld(torso, rarm, 1.5, 0.5, 0)
  560. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  561. newWeld(torso, hed, 0, 1.5, 0)
  562. newWeld(torso, lleg, -0.5, -1, 0)
  563. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  564. newWeld(torso, rleg, 0.5, -1, 0)
  565. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  566. newWeld(root, torso, 0, -1, 0)
  567. torso.Weld.C1 = CFrame.new(0, -1, 0)
  568. ----------------------------------------------------
  569. z = Instance.new("Sound",char)
  570. z.SoundId = "rbxassetid://343691920"
  571. z.Looped = true
  572. z.Volume = 1
  573. z.Pitch = 1
  574. wait(1)
  575. --z:Play()
  576. ----------------------------------------------------
  577. local m = Instance.new("Model")
  578. m.Name = "Sword"
  579. p1 = Instance.new("Part", m)
  580. p1.BrickColor = BrickColor.new("Really red")
  581. p1.Material = Enum.Material.SmoothPlastic
  582. p1.Reflectance = 0.30000001192093
  583. p1.CFrame = CFrame.new(0.0817779973, 16.9978428, 24.1231575, 4.35829861e-008, -3.15302451e-010, -1, -1.2260136e-008, 1.00000417, -2.07065101e-010, 1.00000417, 1.22591297e-008, 4.31318767e-008)
  584. p1.CanCollide = false
  585. p1.Locked = true
  586. p1.FormFactor = Enum.FormFactor.Custom
  587. p1.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  588. p1.BottomSurface = Enum.SurfaceType.Smooth
  589. p1.TopSurface = Enum.SurfaceType.Smooth
  590. b1 = Instance.new("SpecialMesh", p1)
  591. b1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  592. b1.TextureId = ""
  593. b1.MeshType = Enum.MeshType.FileMesh
  594. b1.Name = "Mesh"
  595. b1.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  596. p2 = Instance.new("Part", m)
  597. p2.BrickColor = BrickColor.new("Really red")
  598. p2.Material = Enum.Material.SmoothPlastic
  599. p2.Reflectance = 0.30000001192093
  600. p2.CFrame = CFrame.new(-0.091170989, 17.6237793, 24.1108494, 4.40342767e-008, -4.2354209e-010, -1, -1.22612445e-008, 1.00001252, -9.88276266e-011, 1.00001252, 1.22582255e-008, 4.2680945e-008)
  601. p2.CanCollide = false
  602. p2.Locked = true
  603. p2.FormFactor = Enum.FormFactor.Custom
  604. p2.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  605. p2.BottomSurface = Enum.SurfaceType.Smooth
  606. p2.TopSurface = Enum.SurfaceType.Smooth
  607. b2 = Instance.new("SpecialMesh", p2)
  608. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  609. b2.TextureId = ""
  610. b2.MeshType = Enum.MeshType.FileMesh
  611. b2.Name = "Mesh"
  612. b2.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  613. p3 = Instance.new("Part", m)
  614. p3.BrickColor = BrickColor.new("Really red")
  615. p3.Material = Enum.Material.SmoothPlastic
  616. p3.Reflectance = 0.30000001192093
  617. p3.CFrame = CFrame.new(-0.001290977, 17.3269539, 23.416975, -1, -5.31782618e-010, -7.71617437e-010, 9.4117214e-012, 1.00002086, 1.22623529e-008, -1.49195145e-009, 1.22573214e-008, -1.00002086)
  618. p3.CanCollide = false
  619. p3.Locked = true
  620. p3.FormFactor = Enum.FormFactor.Custom
  621. p3.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  622. p3.BottomSurface = Enum.SurfaceType.Smooth
  623. p3.TopSurface = Enum.SurfaceType.Smooth
  624. b3 = Instance.new("SpecialMesh", p3)
  625. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  626. b3.TextureId = ""
  627. b3.MeshType = Enum.MeshType.FileMesh
  628. b3.Name = "Mesh"
  629. b3.Scale = Vector3.new(0.204801083, 0.204801321, 0.136534423)
  630. p4 = Instance.new("Part", m)
  631. p4.BrickColor = BrickColor.new("Black")
  632. p4.CFrame = CFrame.new(-0.00478596753, 17.3274307, 23.980545, 1, -1.23001165e-009, -6.40024533e-010, -1.1765143e-010, 1.22634614e-008, 1.00002921, 1.95034877e-009, -1.00002921, 1.22564172e-008)
  633. p4.CanCollide = false
  634. p4.Locked = true
  635. p4.FormFactor = Enum.FormFactor.Custom
  636. p4.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  637. p4.TopSurface = Enum.SurfaceType.Weld
  638. b4 = Instance.new("SpecialMesh", p4)
  639. b4.MeshId = "http://www.roblox.com/asset/?id=1033714"
  640. b4.TextureId = ""
  641. b4.MeshType = Enum.MeshType.FileMesh
  642. b4.Name = "Mesh"
  643. b4.VertexColor = Vector3.new(0, 0.899999976, 0.699999988)
  644. b4.Scale = Vector3.new(0.0455113538, 0.455114096, 0.0455114767)
  645. p5 = Instance.new("Part", m)
  646. p5.BrickColor = BrickColor.new("Really black")
  647. p5.Material = Enum.Material.Neon
  648. p5.Reflectance = 0.5
  649. p5.Transparency = 0.0099999997764826
  650. p5.CFrame = CFrame.new(-0.00582695846, 17.0333862, 24.0054722, -1, -3.17473727e-008, 8.22757613e-008, -8.72001635e-008, 0.342033029, -0.939727962, -2.40875098e-009, -0.939727962, -0.342033029)
  651. p5.CanCollide = false
  652. p5.Locked = true
  653. p5.FormFactor = Enum.FormFactor.Custom
  654. p5.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  655. b5 = Instance.new("SpecialMesh", p5)
  656. b5.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  657. b5.TextureId = ""
  658. b5.MeshType = Enum.MeshType.FileMesh
  659. b5.Name = "Mesh"
  660. b5.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  661. p6 = Instance.new("Part", m)
  662. p6.BrickColor = BrickColor.new("Really red")
  663. p6.Material = Enum.Material.SmoothPlastic
  664. p6.Reflectance = 0.30000001192093
  665. p6.CFrame = CFrame.new(-0.0911659524, 17.3251324, 24.1947174, 4.58651641e-008, -8.57646398e-010, -1, 0, 1.00004601, 3.3526959e-010, 1.00004601, 0, 4.08515106e-008)
  666. p6.CanCollide = false
  667. p6.Locked = true
  668. p6.FormFactor = Enum.FormFactor.Custom
  669. p6.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  670. p6.BottomSurface = Enum.SurfaceType.Smooth
  671. p6.TopSurface = Enum.SurfaceType.Smooth
  672. b6 = Instance.new("SpecialMesh", p6)
  673. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  674. b6.TextureId = ""
  675. b6.MeshType = Enum.MeshType.FileMesh
  676. b6.Name = "Mesh"
  677. b6.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  678. p7 = Instance.new("Part", m)
  679. p7.BrickColor = BrickColor.new("Really red")
  680. p7.Material = Enum.Material.SmoothPlastic
  681. p7.Reflectance = 0.30000001192093
  682. p7.CFrame = CFrame.new(-0.00128895044, 17.3275337, 23.4541702, -1, -9.6589059e-010, -2.60252264e-009, 4.43512033e-010, 1.00005436, 1.00633792e-012, -3.32286376e-009, -1.006348e-012, -1.00005436)
  683. p7.CanCollide = false
  684. p7.Locked = true
  685. p7.FormFactor = Enum.FormFactor.Custom
  686. p7.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  687. p7.BottomSurface = Enum.SurfaceType.Smooth
  688. p7.TopSurface = Enum.SurfaceType.Smooth
  689. b7 = Instance.new("SpecialMesh", p7)
  690. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  691. b7.TextureId = ""
  692. b7.MeshType = Enum.MeshType.FileMesh
  693. b7.Name = "Mesh"
  694. b7.Scale = Vector3.new(0.141085163, 0.150187641, 0.0728183538)
  695. p8 = Instance.new("Part", m)
  696. p8.BrickColor = BrickColor.new("Really red")
  697. p8.Material = Enum.Material.SmoothPlastic
  698. p8.Reflectance = 0.30000001192093
  699. p8.CFrame = CFrame.new(-0.0911709517, 16.9988403, 24.124567, 4.67748862e-008, -1.07413611e-009, -1, -2.01272679e-012, 1.0000627, 5.5175492e-010, 1.0000627, -2.01271768e-012, 3.99425133e-008)
  700. p8.CanCollide = false
  701. p8.Locked = true
  702. p8.FormFactor = Enum.FormFactor.Custom
  703. p8.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  704. p8.BottomSurface = Enum.SurfaceType.Smooth
  705. p8.TopSurface = Enum.SurfaceType.Smooth
  706. b8 = Instance.new("SpecialMesh", p8)
  707. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  708. b8.TextureId = ""
  709. b8.MeshType = Enum.MeshType.FileMesh
  710. b8.Name = "Mesh"
  711. b8.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  712. p9 = Instance.new("Part", m)
  713. p9.BrickColor = BrickColor.new("Really red")
  714. p9.Material = Enum.Material.SmoothPlastic
  715. p9.Reflectance = 0.30000001192093
  716. p9.CFrame = CFrame.new(0.0817780346, 17.0240288, 24.112257, 4.72262052e-008, -1.18238208e-009, -1, -3.01911295e-012, 1.00007105, 6.59998722e-010, 1.00007105, -3.01909929e-012, 3.94915567e-008)
  717. p9.CanCollide = false
  718. p9.Locked = true
  719. p9.FormFactor = Enum.FormFactor.Custom
  720. p9.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  721. p9.BottomSurface = Enum.SurfaceType.Smooth
  722. p9.TopSurface = Enum.SurfaceType.Smooth
  723. b9 = Instance.new("SpecialMesh", p9)
  724. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  725. b9.TextureId = ""
  726. b9.MeshType = Enum.MeshType.FileMesh
  727. b9.Name = "Mesh"
  728. b9.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  729. p10 = Instance.new("Part", m)
  730. p10.BrickColor = BrickColor.new("Really red")
  731. p10.Material = Enum.Material.SmoothPlastic
  732. p10.Reflectance = 0.30000001192093
  733. p10.CFrame = CFrame.new(-0.00128594786, 17.3279648, 23.4923096, -1, -1.29062894e-009, -3.96357436e-009, 7.68243857e-010, 1.00007939, 4.02548698e-012, -4.68392258e-009, -4.02549782e-012, -1.00007939)
  734. p10.CanCollide = false
  735. p10.Locked = true
  736. p10.FormFactor = Enum.FormFactor.Custom
  737. p10.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  738. p10.BottomSurface = Enum.SurfaceType.Smooth
  739. p10.TopSurface = Enum.SurfaceType.Smooth
  740. b10 = Instance.new("SpecialMesh", p10)
  741. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  742. b10.TextureId = ""
  743. b10.MeshType = Enum.MeshType.FileMesh
  744. b10.Name = "Mesh"
  745. b10.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  746. p11 = Instance.new("Part", m)
  747. p11.BrickColor = BrickColor.new("Really red")
  748. p11.Material = Enum.Material.Neon
  749. p11.Reflectance = 0.5
  750. p11.Transparency = 0.30000001192093
  751. p11.CFrame = CFrame.new(-0.00582293561, 17.1578236, 24.0415058, -1, -3.45386226e-008, 8.19521944e-008, -8.65539533e-008, 0.342050195, -0.939775169, -5.14234655e-009, -0.939775169, -0.342050195)
  752. p11.CanCollide = false
  753. p11.Locked = true
  754. p11.FormFactor = Enum.FormFactor.Custom
  755. p11.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  756. b11 = Instance.new("SpecialMesh", p11)
  757. b11.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  758. b11.TextureId = ""
  759. b11.MeshType = Enum.MeshType.FileMesh
  760. b11.Name = "Mesh"
  761. b11.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  762. p12 = Instance.new("Part", m)
  763. p12.BrickColor = BrickColor.new("Really red")
  764. p12.Material = Enum.Material.SmoothPlastic
  765. p12.Reflectance = 0.30000001192093
  766. p12.CFrame = CFrame.new(0.081781067, 17.6252537, 24.1378975, 4.85987641e-008, -1.50826196e-009, -1, 0, 1.00009632, 9.8587094e-010, 1.00009632, 0, 3.81200884e-008)
  767. p12.CanCollide = false
  768. p12.Locked = true
  769. p12.FormFactor = Enum.FormFactor.Custom
  770. p12.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  771. p12.BottomSurface = Enum.SurfaceType.Smooth
  772. p12.TopSurface = Enum.SurfaceType.Smooth
  773. b12 = Instance.new("SpecialMesh", p12)
  774. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  775. b12.TextureId = ""
  776. b12.MeshType = Enum.MeshType.FileMesh
  777. b12.Name = "Mesh"
  778. b12.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  779. p13 = Instance.new("Part", m)
  780. p13.BrickColor = BrickColor.new("Really red")
  781. p13.Material = Enum.Material.SmoothPlastic
  782. p13.Reflectance = 0.30000001192093
  783. p13.CFrame = CFrame.new(-0.0911709294, 17.6003609, 24.1255779, 4.90500973e-008, -1.61651148e-009, -1, -1.00640351e-012, 1.00010467, 1.09411835e-009, 1.00010467, -1.00639896e-012, 3.76691176e-008)
  784. p13.CanCollide = false
  785. p13.Locked = true
  786. p13.FormFactor = Enum.FormFactor.Custom
  787. p13.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  788. p13.BottomSurface = Enum.SurfaceType.Smooth
  789. p13.TopSurface = Enum.SurfaceType.Smooth
  790. b13 = Instance.new("SpecialMesh", p13)
  791. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  792. b13.TextureId = ""
  793. b13.MeshType = Enum.MeshType.FileMesh
  794. b13.Name = "Mesh"
  795. b13.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  796. p14 = Instance.new("Part", m)
  797. p14.BrickColor = BrickColor.new("Really black")
  798. p14.Material = Enum.Material.Neon
  799. p14.Reflectance = 0.5
  800. p14.Transparency = 0.0099999997764826
  801. p14.CFrame = CFrame.new(-0.00582291186, 17.1595592, 24.0385437, -1, -3.59332226e-008, 8.17913985e-008, -8.62302869e-008, 0.342058837, -0.939798892, -6.50784671e-009, -0.939798892, -0.342058837)
  802. p14.CanCollide = false
  803. p14.Locked = true
  804. p14.FormFactor = Enum.FormFactor.Custom
  805. p14.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  806. b14 = Instance.new("SpecialMesh", p14)
  807. b14.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  808. b14.TextureId = ""
  809. b14.MeshType = Enum.MeshType.FileMesh
  810. b14.Name = "Mesh"
  811. b14.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  812. p15 = Instance.new("Part", m)
  813. p15.BrickColor = BrickColor.new("Really red")
  814. p15.Material = Enum.Material.SmoothPlastic
  815. p15.Reflectance = 0.30000001192093
  816. p15.CFrame = CFrame.new(0.0817780942, 17.6473274, 24.125988, 4.99642638e-008, -1.83414528e-009, -1, 0, 1.00012159, 1.31174716e-009, 1.00012159, 0, 3.67556794e-008)
  817. p15.CanCollide = false
  818. p15.Locked = true
  819. p15.FormFactor = Enum.FormFactor.Custom
  820. p15.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  821. p15.BottomSurface = Enum.SurfaceType.Smooth
  822. p15.TopSurface = Enum.SurfaceType.Smooth
  823. b15 = Instance.new("SpecialMesh", p15)
  824. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  825. b15.TextureId = ""
  826. b15.MeshType = Enum.MeshType.FileMesh
  827. b15.Name = "Mesh"
  828. b15.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  829. p16 = Instance.new("Part", m)
  830. p16.BrickColor = BrickColor.new("Really black")
  831. p16.Material = Enum.Material.Neon
  832. p16.Reflectance = 0.5
  833. p16.Transparency = 0.0099999997764826
  834. p16.CFrame = CFrame.new(-0.00581388921, 17.3299732, 23.85042, 1, -6.70165434e-009, -1.94239758e-009, -1.41999779e-009, 1.00637185e-012, 1.00012994, 7.42203454e-009, -1.00012994, -1.00642454e-012)
  835. p16.CanCollide = false
  836. p16.Locked = true
  837. p16.FormFactor = Enum.FormFactor.Custom
  838. p16.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  839. b16 = Instance.new("SpecialMesh", p16)
  840. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  841. b16.TextureId = ""
  842. b16.MeshType = Enum.MeshType.FileMesh
  843. b16.Name = "Mesh"
  844. b16.Scale = Vector3.new(0.115295447, 0.288239002, 0.115295798)
  845. p17 = Instance.new("Part", m)
  846. p17.BrickColor = BrickColor.new("Really red")
  847. p17.Material = Enum.Material.Neon
  848. p17.Reflectance = 0.5
  849. p17.Transparency = 0.30000001192093
  850. p17.CFrame = CFrame.new(-0.00582687836, 17.033802, 24.0114479, -1, -3.73345159e-008, 8.16281727e-008, -8.59066134e-008, 0.34206748, -0.939822674, -7.88048204e-009, -0.939822674, -0.34206748)
  851. p17.CanCollide = false
  852. p17.Locked = true
  853. p17.FormFactor = Enum.FormFactor.Custom
  854. p17.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  855. b17 = Instance.new("SpecialMesh", p17)
  856. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  857. b17.TextureId = ""
  858. b17.MeshType = Enum.MeshType.FileMesh
  859. b17.Name = "Mesh"
  860. b17.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  861. p18 = Instance.new("Part", m)
  862. p18.BrickColor = BrickColor.new("Really black")
  863. p18.Material = Enum.Material.Neon
  864. p18.Reflectance = 0.5
  865. p18.Transparency = 0.0099999997764826
  866. p18.CFrame = CFrame.new(-0.00582286948, 17.506052, 24.0348091, 1, -6.42979714e-009, -4.6364903e-009, -1.63763048e-009, -0.342070431, 0.939830661, 8.34332603e-009, -0.939830661, -0.342070431)
  867. p18.CanCollide = false
  868. p18.Locked = true
  869. p18.FormFactor = Enum.FormFactor.Custom
  870. p18.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  871. b18 = Instance.new("SpecialMesh", p18)
  872. b18.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  873. b18.TextureId = ""
  874. b18.MeshType = Enum.MeshType.FileMesh
  875. b18.Name = "Mesh"
  876. b18.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  877. p19 = Instance.new("Part", m)
  878. p19.BrickColor = BrickColor.new("Really red")
  879. p19.Material = Enum.Material.SmoothPlastic
  880. p19.Reflectance = 0.30000001192093
  881. p19.CFrame = CFrame.new(-0.091168873, 17.626297, 24.1393166, 5.18002103e-008, -2.26601116e-009, -1, 2.98023224e-008, 1.00015533, 1.74360792e-009, 1.00015533, -2.98023224e-008, 3.49211859e-008)
  882. p19.CanCollide = false
  883. p19.Locked = true
  884. p19.FormFactor = Enum.FormFactor.Custom
  885. p19.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  886. p19.BottomSurface = Enum.SurfaceType.Smooth
  887. p19.TopSurface = Enum.SurfaceType.Smooth
  888. b19 = Instance.new("SpecialMesh", p19)
  889. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  890. b19.TextureId = ""
  891. b19.MeshType = Enum.MeshType.FileMesh
  892. b19.Name = "Mesh"
  893. b19.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  894. p20 = Instance.new("Part", m)
  895. p20.BrickColor = BrickColor.new("Really red")
  896. p20.Material = Enum.Material.Neon
  897. p20.Reflectance = 0.5
  898. p20.Transparency = 0.30000001192093
  899. p20.CFrame = CFrame.new(-0.00582686067, 17.6325226, 24.0075035, 1, -7.21604465e-009, -5.15064613e-009, -1.85186089e-009, -0.342076212, 0.939846516, 9.25801658e-009, -0.939846516, -0.342076212)
  900. p20.CanCollide = false
  901. p20.Locked = true
  902. p20.FormFactor = Enum.FormFactor.Custom
  903. p20.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  904. b20 = Instance.new("SpecialMesh", p20)
  905. b20.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  906. b20.TextureId = ""
  907. b20.MeshType = Enum.MeshType.FileMesh
  908. b20.Name = "Mesh"
  909. b20.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  910. p21 = Instance.new("Part", m)
  911. p21.BrickColor = BrickColor.new("Really black")
  912. p21.Material = Enum.Material.Neon
  913. p21.Reflectance = 0.5
  914. p21.Transparency = 0.0099999997764826
  915. p21.CFrame = CFrame.new(-0.00582685182, 17.6313725, 24.0041409, 1, -7.61518404e-009, -5.40870415e-009, -1.95783967e-009, -0.342079103, 0.939854443, 9.72134995e-009, -0.939854443, -0.342079103)
  916. p21.CanCollide = false
  917. p21.Locked = true
  918. p21.FormFactor = Enum.FormFactor.Custom
  919. p21.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  920. b21 = Instance.new("SpecialMesh", p21)
  921. b21.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  922. b21.TextureId = ""
  923. b21.MeshType = Enum.MeshType.FileMesh
  924. b21.Name = "Mesh"
  925. b21.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  926. p22 = Instance.new("Part", m)
  927. p22.BrickColor = BrickColor.new("Really red")
  928. p22.Material = Enum.Material.Neon
  929. p22.Reflectance = 0.5
  930. p22.Transparency = 0.30000001192093
  931. p22.CFrame = CFrame.new(-0.00581384357, 17.3308601, 23.8497276, 1, -9.4642818e-009, -2.58623145e-009, -2.06381934e-009, -5.96046448e-008, 1.00018072, 1.0184686e-008, -1.00018072, -5.96046448e-008)
  932. p22.CanCollide = false
  933. p22.Locked = true
  934. p22.FormFactor = Enum.FormFactor.Custom
  935. p22.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  936. b22 = Instance.new("SpecialMesh", p22)
  937. b22.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  938. b22.TextureId = ""
  939. b22.MeshType = Enum.MeshType.FileMesh
  940. b22.Name = "Mesh"
  941. b22.Scale = Vector3.new(0.182045415, 0.455114096, 0.182045907)
  942. p23 = Instance.new("Part", m)
  943. p23.BrickColor = BrickColor.new("Really red")
  944. p23.Material = Enum.Material.SmoothPlastic
  945. p23.Reflectance = 0.30000001192093
  946. p23.CFrame = CFrame.new(0.0817781463, 17.6018543, 24.1276073, 5.3636704e-008, -2.69449041e-009, -1, 5.96041367e-008, 1.00018907, 2.17207852e-009, 1.00018907, -5.96061511e-008, 3.30861596e-008)
  947. p23.CanCollide = false
  948. p23.Locked = true
  949. p23.FormFactor = Enum.FormFactor.Custom
  950. p23.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  951. p23.BottomSurface = Enum.SurfaceType.Smooth
  952. p23.TopSurface = Enum.SurfaceType.Smooth
  953. b23 = Instance.new("SpecialMesh", p23)
  954. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  955. b23.TextureId = ""
  956. b23.MeshType = Enum.MeshType.FileMesh
  957. b23.Name = "Mesh"
  958. b23.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  959. p24 = Instance.new("Part", m)
  960. p24.BrickColor = BrickColor.new("Really red")
  961. p24.Material = Enum.Material.SmoothPlastic
  962. p24.Reflectance = 0.30000001192093
  963. p24.CFrame = CFrame.new(0.0817811489, 17.0261841, 24.1403275, 5.40880798e-008, -2.80274981e-009, -1, 5.96036287e-008, 1.00019741, 2.28033592e-009, 1.00019741, -5.96076575e-008, 3.26351461e-008)
  964. p24.CanCollide = false
  965. p24.Locked = true
  966. p24.FormFactor = Enum.FormFactor.Custom
  967. p24.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  968. p24.BottomSurface = Enum.SurfaceType.Smooth
  969. p24.TopSurface = Enum.SurfaceType.Smooth
  970. b24 = Instance.new("SpecialMesh", p24)
  971. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  972. b24.TextureId = ""
  973. b24.MeshType = Enum.MeshType.FileMesh
  974. b24.Name = "Mesh"
  975. b24.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  976. p25 = Instance.new("Part", m)
  977. p25.BrickColor = BrickColor.new("Really red")
  978. p25.Material = Enum.Material.SmoothPlastic
  979. p25.Reflectance = 0.30000001192093
  980. p25.CFrame = CFrame.new(-0.0911658406, 17.3279057, 24.1985741, 5.45394592e-008, -2.9110101e-009, -1, 5.96031207e-008, 1.00020576, 2.38859421e-009, 1.00020576, -5.96091638e-008, 3.21841291e-008)
  981. p25.CanCollide = false
  982. p25.Locked = true
  983. p25.FormFactor = Enum.FormFactor.Custom
  984. p25.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  985. p25.BottomSurface = Enum.SurfaceType.Smooth
  986. p25.TopSurface = Enum.SurfaceType.Smooth
  987. b25 = Instance.new("SpecialMesh", p25)
  988. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  989. b25.TextureId = ""
  990. b25.MeshType = Enum.MeshType.FileMesh
  991. b25.Name = "Mesh"
  992. b25.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  993. p26 = Instance.new("Part", m)
  994. p26.BrickColor = BrickColor.new("Really red")
  995. p26.Material = Enum.Material.SmoothPlastic
  996. p26.Reflectance = 0.30000001192093
  997. p26.CFrame = CFrame.new(0.0817781538, 17.0480747, 24.1282158, 5.49908421e-008, -3.01927128e-009, -1, 5.96026126e-008, 1.0002141, 2.49685339e-009, 1.0002141, -5.96106702e-008, 3.17331086e-008)
  998. p26.CanCollide = false
  999. p26.Locked = true
  1000. p26.FormFactor = Enum.FormFactor.Custom
  1001. p26.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1002. p26.BottomSurface = Enum.SurfaceType.Smooth
  1003. p26.TopSurface = Enum.SurfaceType.Smooth
  1004. b26 = Instance.new("SpecialMesh", p26)
  1005. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1006. b26.TextureId = ""
  1007. b26.MeshType = Enum.MeshType.FileMesh
  1008. b26.Name = "Mesh"
  1009. b26.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  1010. p27 = Instance.new("Part", m)
  1011. p27.BrickColor = BrickColor.new("Really red")
  1012. p27.Material = Enum.Material.Neon
  1013. p27.Reflectance = 0.5
  1014. p27.Transparency = 0.30000001192093
  1015. p27.CFrame = CFrame.new(-0.0058228299, 17.5086784, 24.0401821, 1, -9.95665062e-009, -6.94975455e-009, -2.60511146e-009, -0.342096329, 0.93990171, 1.2448691e-008, -0.93990171, -0.342096329)
  1016. p27.CanCollide = false
  1017. p27.Locked = true
  1018. p27.FormFactor = Enum.FormFactor.Custom
  1019. p27.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1020. b27 = Instance.new("SpecialMesh", p27)
  1021. b27.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1022. b27.TextureId = ""
  1023. b27.MeshType = Enum.MeshType.FileMesh
  1024. b27.Name = "Mesh"
  1025. b27.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  1026. p28 = Instance.new("Part", m)
  1027. p28.BrickColor = BrickColor.new("Really red")
  1028. p28.Material = Enum.Material.SmoothPlastic
  1029. p28.Reflectance = 0.30000001192093
  1030. p28.CFrame = CFrame.new(-0.0911708325, 17.0483608, 24.128624, 5.59055877e-008, -3.23352145e-009, -1, 5.96046448e-008, 1.00023103, 2.71109712e-009, 1.00023103, -5.96046448e-008, 3.08190948e-008)
  1031. p28.CanCollide = false
  1032. p28.Locked = true
  1033. p28.FormFactor = Enum.FormFactor.Custom
  1034. p28.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1035. p28.BottomSurface = Enum.SurfaceType.Smooth
  1036. p28.TopSurface = Enum.SurfaceType.Smooth
  1037. b28 = Instance.new("SpecialMesh", p28)
  1038. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1039. b28.TextureId = ""
  1040. b28.MeshType = Enum.MeshType.FileMesh
  1041. b28.Name = "Mesh"
  1042. b28.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  1043. p29 = Instance.new("Part", m)
  1044. p29.BrickColor = BrickColor.new("Really red")
  1045. p29.Material = Enum.Material.SmoothPlastic
  1046. p29.Reflectance = 0.30000001192093
  1047. p29.CFrame = CFrame.new(-0.0911708325, 17.0268955, 24.1163101, 5.63569813e-008, -3.34178551e-009, -1, 5.96041367e-008, 1.00023937, 2.81935919e-009, 1.00023937, -5.96061511e-008, 3.03680636e-008)
  1048. p29.CanCollide = false
  1049. p29.Locked = true
  1050. p29.FormFactor = Enum.FormFactor.Custom
  1051. p29.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1052. p29.BottomSurface = Enum.SurfaceType.Smooth
  1053. p29.TopSurface = Enum.SurfaceType.Smooth
  1054. b29 = Instance.new("SpecialMesh", p29)
  1055. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1056. b29.TextureId = ""
  1057. b29.MeshType = Enum.MeshType.FileMesh
  1058. b29.Name = "Mesh"
  1059. b29.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  1060. p30 = Instance.new("Part", m)
  1061. p30.BrickColor = BrickColor.new("Really red")
  1062. p30.Material = Enum.Material.SmoothPlastic
  1063. p30.Reflectance = 0.30000001192093
  1064. p30.CFrame = CFrame.new(-0.0911708325, 17.6495552, 24.1290302, 5.68083784e-008, -3.45005047e-009, -1, 5.96036287e-008, 1.00024772, 2.92762214e-009, 1.00024772, -5.96076575e-008, 2.99170289e-008)
  1065. p30.CanCollide = false
  1066. p30.Locked = true
  1067. p30.FormFactor = Enum.FormFactor.Custom
  1068. p30.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1069. p30.BottomSurface = Enum.SurfaceType.Smooth
  1070. p30.TopSurface = Enum.SurfaceType.Smooth
  1071. b30 = Instance.new("SpecialMesh", p30)
  1072. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1073. b30.TextureId = ""
  1074. b30.MeshType = Enum.MeshType.FileMesh
  1075. b30.Name = "Mesh"
  1076. b30.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  1077. p31 = Instance.new("Part", m)
  1078. p31.BrickColor = BrickColor.new("Really red")
  1079. p31.Material = Enum.Material.SmoothPlastic
  1080. p31.Reflectance = 0.30000001192093
  1081. p31.CFrame = CFrame.new(0.0817831606, 17.3287735, 24.199791, 5.72597791e-008, -3.55831631e-009, -1, 5.96031207e-008, 1.00025606, 3.03588599e-009, 1.00025606, -5.96091638e-008, 2.94659888e-008)
  1082. p31.CanCollide = false
  1083. p31.Locked = true
  1084. p31.FormFactor = Enum.FormFactor.Custom
  1085. p31.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1086. p31.BottomSurface = Enum.SurfaceType.Smooth
  1087. p31.TopSurface = Enum.SurfaceType.Smooth
  1088. b31 = Instance.new("SpecialMesh", p31)
  1089. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1090. b31.TextureId = ""
  1091. b31.MeshType = Enum.MeshType.FileMesh
  1092. b31.Name = "Mesh"
  1093. b31.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  1094. p32 = Instance.new("Part", m)
  1095. p32.BrickColor = BrickColor.new("Really red")
  1096. p32.Material = Enum.Material.SmoothPlastic
  1097. p32.Reflectance = 0.30000001192093
  1098. p32.CFrame = CFrame.new(0.0817781538, 17.6282234, 24.1169167, 5.77111834e-008, -3.66658304e-009, -1, 5.96026126e-008, 1.00026441, 3.14415072e-009, 1.00026441, -5.96106702e-008, 2.90149451e-008)
  1099. p32.CanCollide = false
  1100. p32.Locked = true
  1101. p32.FormFactor = Enum.FormFactor.Custom
  1102. p32.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1103. p32.BottomSurface = Enum.SurfaceType.Smooth
  1104. p32.TopSurface = Enum.SurfaceType.Smooth
  1105. b32 = Instance.new("SpecialMesh", p32)
  1106. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1107. b32.TextureId = ""
  1108. b32.MeshType = Enum.MeshType.FileMesh
  1109. b32.Name = "Mesh"
  1110. b32.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  1111. p33 = Instance.new("Part", m)
  1112. p33.BrickColor = BrickColor.new("Really red")
  1113. p33.Material = Enum.Material.SmoothPlastic
  1114. p33.Reflectance = 0.30000001192093
  1115. p33.CFrame = CFrame.new(0.081783168, 17.3290653, 24.2001972, 5.81625947e-008, -3.77485065e-009, -1, 5.96021046e-008, 1.00027275, 3.25241634e-009, 1.00027275, -5.96121765e-008, 2.85638979e-008)
  1116. p33.CanCollide = false
  1117. p33.Locked = true
  1118. p33.FormFactor = Enum.FormFactor.Custom
  1119. p33.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1120. p33.BottomSurface = Enum.SurfaceType.Smooth
  1121. p33.TopSurface = Enum.SurfaceType.Smooth
  1122. b33 = Instance.new("SpecialMesh", p33)
  1123. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1124. b33.TextureId = ""
  1125. b33.MeshType = Enum.MeshType.FileMesh
  1126. b33.Name = "Mesh"
  1127. b33.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  1128. p34 = Instance.new("Part", m)
  1129. p34.BrickColor = BrickColor.new("Really red")
  1130. p34.Material = Enum.Material.SmoothPlastic
  1131. p34.Reflectance = 0.30000001192093
  1132. p34.CFrame = CFrame.new(-0.0911688283, 17.027607, 24.1423588, 5.86140096e-008, -3.88311916e-009, -1, 5.96015965e-008, 1.0002811, 3.36068284e-009, 1.0002811, -5.96136829e-008, 2.81128472e-008)
  1133. p34.CanCollide = false
  1134. p34.Locked = true
  1135. p34.FormFactor = Enum.FormFactor.Custom
  1136. p34.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1137. p34.BottomSurface = Enum.SurfaceType.Smooth
  1138. p34.TopSurface = Enum.SurfaceType.Smooth
  1139. b34 = Instance.new("SpecialMesh", p34)
  1140. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1141. b34.TextureId = ""
  1142. b34.MeshType = Enum.MeshType.FileMesh
  1143. b34.Name = "Mesh"
  1144. b34.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  1145. p35 = Instance.new("Part", m)
  1146. p35.BrickColor = BrickColor.new("Really red")
  1147. p35.Material = Enum.Material.Neon
  1148. p35.CFrame = CFrame.new(0.00079318881, 16.6618919, 24.1201324, 1.48590857e-007, 7.99790578e-005, -1, -0.996490002, 0.0871035904, 6.82584687e-006, 0.0871035904, 0.996490002, 7.96798267e-005)
  1149. p35.CanCollide = false
  1150. p35.Locked = true
  1151. p35.FormFactor = Enum.FormFactor.Custom
  1152. p35.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1153. p35.BottomSurface = Enum.SurfaceType.Smooth
  1154. p35.TopSurface = Enum.SurfaceType.Smooth
  1155. b35 = Instance.new("SpecialMesh", p35)
  1156. b35.MeshType = Enum.MeshType.Sphere
  1157. b35.Name = "Mesh"
  1158. b35.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  1159. p36 = Instance.new("Part", m)
  1160. p36.BrickColor = BrickColor.new("Really red")
  1161. p36.Material = Enum.Material.Neon
  1162. p36.CFrame = CFrame.new(0.000820193964, 17.8605766, 24.1365757, -6.68205757e-008, -7.99445916e-005, 1, 0.966234148, -0.25882116, -2.06344412e-005, 0.25882116, 0.966234148, 7.72948988e-005)
  1163. p36.CanCollide = false
  1164. p36.Locked = true
  1165. p36.FormFactor = Enum.FormFactor.Custom
  1166. p36.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  1167. p36.BottomSurface = Enum.SurfaceType.Smooth
  1168. p36.TopSurface = Enum.SurfaceType.Smooth
  1169. b36 = Instance.new("SpecialMesh", p36)
  1170. b36.MeshType = Enum.MeshType.Sphere
  1171. b36.Name = "Mesh"
  1172. b36.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1173. p37 = Instance.new("Part", m)
  1174. p37.BrickColor = BrickColor.new("Really red")
  1175. p37.Material = Enum.Material.Neon
  1176. p37.CFrame = CFrame.new(0.000820202637, 18.0012093, 24.120554, -5.89434421e-008, -7.99551053e-005, 1, 0.996507406, -0.087105006, -6.91361038e-006, 0.087105006, 0.996507406, 7.97143366e-005)
  1177. p37.CanCollide = false
  1178. p37.Locked = true
  1179. p37.FormFactor = Enum.FormFactor.Custom
  1180. p37.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1181. p37.BottomSurface = Enum.SurfaceType.Smooth
  1182. p37.TopSurface = Enum.SurfaceType.Smooth
  1183. b37 = Instance.new("SpecialMesh", p37)
  1184. b37.MeshType = Enum.MeshType.Sphere
  1185. b37.Name = "Mesh"
  1186. b37.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  1187. p38 = Instance.new("Part", m)
  1188. p38.BrickColor = BrickColor.new("Really red")
  1189. p38.Material = Enum.Material.Neon
  1190. p38.CFrame = CFrame.new(0.000820217829, 16.8028069, 24.1370029, 1.59892807e-007, 7.99534173e-005, -1, -0.966251016, 0.258825779, 2.05475681e-005, 0.258825779, 0.966251016, 7.72621788e-005)
  1191. p38.CanCollide = false
  1192. p38.Locked = true
  1193. p38.FormFactor = Enum.FormFactor.Custom
  1194. p38.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  1195. p38.BottomSurface = Enum.SurfaceType.Smooth
  1196. p38.TopSurface = Enum.SurfaceType.Smooth
  1197. b38 = Instance.new("SpecialMesh", p38)
  1198. b38.MeshType = Enum.MeshType.Sphere
  1199. b38.Name = "Mesh"
  1200. b38.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1201. p39 = Instance.new("Part", m)
  1202. p39.BrickColor = BrickColor.new("Gold")
  1203. p39.Material = Enum.Material.SmoothPlastic
  1204. p39.Reflectance = 0.20000000298023
  1205. p39.Name = "Circle"
  1206. p39.CFrame = CFrame.new(-0.00478575425, 17.3325539, 25.3061905, 1, -1.65309757e-008, -4.80958988e-008, 3.98413249e-008, -1.20796713e-007, 1.00032449, 1.86919351e-008, -1.00032449, -1.17619138e-007)
  1207. p39.CanCollide = false
  1208. p39.Locked = true
  1209. p39.FormFactor = Enum.FormFactor.Custom
  1210. p39.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1211. p39.BottomSurface = Enum.SurfaceType.Smooth
  1212. p39.TopSurface = Enum.SurfaceType.Smooth
  1213. b39 = Instance.new("CylinderMesh", p39)
  1214. b39.Name = "Mesh"
  1215. b39.Scale = Vector3.new(0.400286943, 0.423637152, 0.467001528)
  1216. p40 = Instance.new("Part", m)
  1217. p40.BrickColor = BrickColor.new("Really black")
  1218. p40.Material = Enum.Material.SmoothPlastic
  1219. p40.Name = "Block"
  1220. p40.CFrame = CFrame.new(-0.00477576628, 17.2029457, 24.1130314, -1, -1.92565636e-007, 9.19236101e-008, -8.34673628e-008, -1.63873466e-007, -1.00033283, 1.56490643e-007, -1.00033283, 1.60694682e-007)
  1221. p40.CanCollide = false
  1222. p40.Locked = true
  1223. p40.FormFactor = Enum.FormFactor.Custom
  1224. p40.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1225. p40.BottomSurface = Enum.SurfaceType.Smooth
  1226. p40.TopSurface = Enum.SurfaceType.Smooth
  1227. b40 = Instance.new("SpecialMesh", p40)
  1228. b40.MeshType = Enum.MeshType.Wedge
  1229. b40.Name = "WedgeMesh"
  1230. b40.Scale = Vector3.new(0.533715904, 0.200143531, 0.773888171)
  1231. p41 = Instance.new("Part", m)
  1232. p41.BrickColor = BrickColor.new("Really black")
  1233. p41.Material = Enum.Material.SmoothPlastic
  1234. p41.Name = "Block"
  1235. p41.CFrame = CFrame.new(-0.0047757579, 17.4648685, 24.1132374, 1, 1.56679448e-007, -4.60911309e-009, -4.09274037e-009, -7.64161499e-008, 1.00034118, 1.93782128e-007, -1.00034118, -7.32396686e-008)
  1236. p41.CanCollide = false
  1237. p41.Locked = true
  1238. p41.FormFactor = Enum.FormFactor.Custom
  1239. p41.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1240. p41.BottomSurface = Enum.SurfaceType.Smooth
  1241. p41.TopSurface = Enum.SurfaceType.Smooth
  1242. b41 = Instance.new("SpecialMesh", p41)
  1243. b41.MeshType = Enum.MeshType.Wedge
  1244. b41.Name = "WedgeMesh"
  1245. b41.Scale = Vector3.new(0.533715904, 0.200143531, 0.760545254)
  1246. p42 = Instance.new("Part", m)
  1247. p42.BrickColor = BrickColor.new("Really black")
  1248. p42.Material = Enum.Material.SmoothPlastic
  1249. p42.Name = "Circle"
  1250. p42.CFrame = CFrame.new(-0.00477172295, 17.3329887, 25.4724331, -6.16132638e-008, -1, -5.37222489e-009, -7.64230563e-008, 3.54596352e-009, 1.00034952, -1.00034952, 2.36759945e-008, -7.32485077e-008)
  1251. p42.CanCollide = false
  1252. p42.Locked = true
  1253. p42.FormFactor = Enum.FormFactor.Custom
  1254. p42.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1255. p42.BottomSurface = Enum.SurfaceType.Smooth
  1256. p42.TopSurface = Enum.SurfaceType.Smooth
  1257. b42 = Instance.new("CylinderMesh", p42)
  1258. b42.Name = "Mesh"
  1259. b42.Scale = Vector3.new(0.667144895, 0.400287062, 0.667144954)
  1260. p43 = Instance.new("Part", m)
  1261. p43.BrickColor = BrickColor.new("Really black")
  1262. p43.Material = Enum.Material.SmoothPlastic
  1263. p43.Name = "Circle"
  1264. p43.CFrame = CFrame.new(-0.00478171511, 17.3331299, 25.3588276, 1, -1.83507538e-008, -4.85290101e-008, 3.94096844e-008, -1.20799953e-007, 1.00035787, 2.05117843e-008, -1.00035787, -1.17623841e-007)
  1265. p43.CanCollide = false
  1266. p43.Locked = true
  1267. p43.FormFactor = Enum.FormFactor.Custom
  1268. p43.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1269. p43.BottomSurface = Enum.SurfaceType.Smooth
  1270. p43.TopSurface = Enum.SurfaceType.Smooth
  1271. b43 = Instance.new("CylinderMesh", p43)
  1272. b43.Name = "Mesh"
  1273. b43.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  1274. p44 = Instance.new("Part", m)
  1275. p44.BrickColor = BrickColor.new("Really red")
  1276. p44.Material = Enum.Material.Neon
  1277. p44.CFrame = CFrame.new(0.0008072583, 17.5270195, 23.6464233, -9.34702626e-008, -7.99179834e-005, 1, 0.940010309, 0.342218608, 2.74279228e-005, -0.342218608, 0.940010309, 7.51314947e-005)
  1278. p44.CanCollide = false
  1279. p44.Locked = true
  1280. p44.FormFactor = Enum.FormFactor.Custom
  1281. p44.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1282. p44.BottomSurface = Enum.SurfaceType.Smooth
  1283. p44.TopSurface = Enum.SurfaceType.Smooth
  1284. b44 = Instance.new("SpecialMesh", p44)
  1285. b44.MeshType = Enum.MeshType.Sphere
  1286. b44.Name = "Mesh"
  1287. b44.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1288. p45 = Instance.new("Part", m)
  1289. p45.BrickColor = BrickColor.new("Really red")
  1290. p45.Material = Enum.Material.Neon
  1291. p45.CFrame = CFrame.new(0.00080726546, 17.6835766, 23.6418419, -8.36607796e-008, -7.99489135e-005, 1, 0.766281724, 0.6430884, 5.14687308e-005, -0.6430884, 0.766281724, 6.12501899e-005)
  1292. p45.CanCollide = false
  1293. p45.Locked = true
  1294. p45.FormFactor = Enum.FormFactor.Custom
  1295. p45.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  1296. p45.BottomSurface = Enum.SurfaceType.Smooth
  1297. p45.TopSurface = Enum.SurfaceType.Smooth
  1298. b45 = Instance.new("SpecialMesh", p45)
  1299. b45.MeshType = Enum.MeshType.Sphere
  1300. b45.Name = "Mesh"
  1301. b45.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1302. p46 = Instance.new("Part", m)
  1303. p46.BrickColor = BrickColor.new("Really red")
  1304. p46.Material = Enum.Material.Neon
  1305. p46.CFrame = CFrame.new(0.000824270712, 17.7363682, 23.5002213, -7.51324478e-008, -7.99625777e-005, 1, 0.642974615, 0.766388476, 6.13208758e-005, -0.766388476, 0.642974615, 5.13978084e-005)
  1306. p46.CanCollide = false
  1307. p46.Locked = true
  1308. p46.FormFactor = Enum.FormFactor.Custom
  1309. p46.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1310. p46.BottomSurface = Enum.SurfaceType.Smooth
  1311. p46.TopSurface = Enum.SurfaceType.Smooth
  1312. b46 = Instance.new("SpecialMesh", p46)
  1313. b46.MeshType = Enum.MeshType.Sphere
  1314. b46.Name = "Mesh"
  1315. b46.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1316. p47 = Instance.new("Part", m)
  1317. p47.BrickColor = BrickColor.new("Really black")
  1318. p47.Material = Enum.Material.SmoothPlastic
  1319. p47.Name = "Handle"
  1320. p47.CFrame = CFrame.new(-0.00476768985, 17.3337212, 24.8452072, 1, -2.01071089e-008, -4.89962986e-008, 3.89482011e-008, -1.52160879e-007, 1.0003922, 2.22717063e-008, -1.0003922, -1.45863055e-007)
  1321. p47.CanCollide = false
  1322. p47.Locked = true
  1323. p47.FormFactor = Enum.FormFactor.Custom
  1324. p47.Size = Vector3.new(0.341090173, 1.06951797, 0.341090739)
  1325. p47.BottomSurface = Enum.SurfaceType.Smooth
  1326. p47.TopSurface = Enum.SurfaceType.Smooth
  1327. b47 = Instance.new("CylinderMesh", p47)
  1328. b47.Name = "Mesh"
  1329. b47.Scale = Vector3.new(0.333572447, 1, 0.467001528)
  1330. p48 = Instance.new("Part", m)
  1331. p48.BrickColor = BrickColor.new("Really black")
  1332. p48.Material = Enum.Material.SmoothPlastic
  1333. p48.Name = "Block"
  1334. p48.CFrame = CFrame.new(-0.00476769311, 17.1517487, 24.2165375, 1, 5.40123679e-009, -2.12932623e-008, -4.88056529e-009, -1.00040054, -1.51509539e-007, 2.20023999e-008, 1.45210194e-007, -1.00040054)
  1335. p48.CanCollide = false
  1336. p48.Locked = true
  1337. p48.FormFactor = Enum.FormFactor.Custom
  1338. p48.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  1339. p48.BottomSurface = Enum.SurfaceType.Smooth
  1340. p48.TopSurface = Enum.SurfaceType.Smooth
  1341. b48 = Instance.new("SpecialMesh", p48)
  1342. b48.MeshType = Enum.MeshType.Wedge
  1343. b48.Name = "WedgeMesh"
  1344. b48.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  1345. p49 = Instance.new("Part", m)
  1346. p49.BrickColor = BrickColor.new("Really black")
  1347. p49.Material = Enum.Material.SmoothPlastic
  1348. p49.Name = "Block"
  1349. p49.CFrame = CFrame.new(-0.00476768566, 17.5161419, 24.2167358, -1, -9.29322965e-008, -2.1751827e-008, -8.24696684e-008, 1.00040889, -1.51509795e-007, -2.24609593e-008, -1.45212695e-007, -1.00040889)
  1350. p49.CanCollide = false
  1351. p49.Locked = true
  1352. p49.FormFactor = Enum.FormFactor.Custom
  1353. p49.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  1354. p49.BottomSurface = Enum.SurfaceType.Smooth
  1355. p49.TopSurface = Enum.SurfaceType.Smooth
  1356. b49 = Instance.new("SpecialMesh", p49)
  1357. b49.MeshType = Enum.MeshType.Wedge
  1358. b49.Name = "WedgeMesh"
  1359. b49.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  1360. p50 = Instance.new("Part", m)
  1361. p50.BrickColor = BrickColor.new("Really black")
  1362. p50.Material = Enum.Material.SmoothPlastic
  1363. p50.Name = "Block"
  1364. p50.CFrame = CFrame.new(-0.00477567874, 17.6471729, 24.1264477, 1, -2.22103953e-008, -5.61780666e-009, -5.09713516e-009, -1.51509767e-007, 1.00041723, 2.29195471e-008, -1.00041723, -1.45214912e-007)
  1365. p50.CanCollide = false
  1366. p50.Locked = true
  1367. p50.FormFactor = Enum.FormFactor.Custom
  1368. p50.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1369. p50.BottomSurface = Enum.SurfaceType.Smooth
  1370. p50.TopSurface = Enum.SurfaceType.Smooth
  1371. b50 = Instance.new("BlockMesh", p50)
  1372. b50.Name = "Mesh"
  1373. b50.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  1374. p51 = Instance.new("Part", m)
  1375. p51.BrickColor = BrickColor.new("Really black")
  1376. p51.Material = Enum.Material.SmoothPlastic
  1377. p51.Name = "Block"
  1378. p51.CFrame = CFrame.new(-0.0047756657, 17.0212688, 24.126646, 1, -2.26689671e-008, -5.72609116e-009, -5.20541787e-009, -1.51510022e-007, 1.00042558, 2.33781261e-008, -1.00042558, -1.45217129e-007)
  1379. p51.CanCollide = false
  1380. p51.Locked = true
  1381. p51.FormFactor = Enum.FormFactor.Custom
  1382. p51.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1383. p51.BottomSurface = Enum.SurfaceType.Smooth
  1384. p51.TopSurface = Enum.SurfaceType.Smooth
  1385. b51 = Instance.new("BlockMesh", p51)
  1386. b51.Name = "Mesh"
  1387. b51.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  1388. p52 = Instance.new("Part", m)
  1389. p52.BrickColor = BrickColor.new("Really black")
  1390. p52.Material = Enum.Material.SmoothPlastic
  1391. p52.Name = "Block"
  1392. p52.CFrame = CFrame.new(-0.00477165729, 17.334446, 24.1609974, 1, -2.31275425e-008, -5.83437654e-009, -5.31370148e-009, -1.51510278e-007, 1.00043392, 2.38367086e-008, -1.00043392, -1.45219346e-007)
  1393. p52.CanCollide = false
  1394. p52.Locked = true
  1395. p52.FormFactor = Enum.FormFactor.Custom
  1396. p52.Size = Vector3.new(0.341090173, 0.341090739, 0.523380995)
  1397. p52.BottomSurface = Enum.SurfaceType.Smooth
  1398. p52.TopSurface = Enum.SurfaceType.Smooth
  1399. b52 = Instance.new("BlockMesh", p52)
  1400. b52.Name = "Mesh"
  1401. b52.Scale = Vector3.new(0.533715785, 0.0667145103, 1)
  1402. p53 = Instance.new("Part", m)
  1403. p53.BrickColor = BrickColor.new("Really red")
  1404. p53.Material = Enum.Material.Neon
  1405. p53.Name = "Circle"
  1406. p53.CFrame = CFrame.new(-0.00477161724, 17.3345947, 25.4747982, -6.65724826e-008, -1, -6.5974981e-009, -1.07784714e-007, 4.76686246e-009, 1.00044227, -1.00044227, 1.87171736e-008, -1.01495679e-007)
  1407. p53.CanCollide = false
  1408. p53.Locked = true
  1409. p53.FormFactor = Enum.FormFactor.Custom
  1410. p53.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1411. p53.BottomSurface = Enum.SurfaceType.Smooth
  1412. p53.TopSurface = Enum.SurfaceType.Smooth
  1413. b53 = Instance.new("CylinderMesh", p53)
  1414. b53.Name = "Mesh"
  1415. b53.Scale = Vector3.new(0.533715785, 0.467001498, 0.42771104)
  1416. p54 = Instance.new("Part", m)
  1417. p54.BrickColor = BrickColor.new("Really black")
  1418. p54.Material = Enum.Material.Neon
  1419. p54.Name = "Circle"
  1420. p54.CFrame = CFrame.new(-0.00477160793, 17.3347397, 25.4750118, -6.70239686e-008, -1, -6.7057826e-009, -1.07784665e-007, 4.87513985e-009, 1.00045061, -1.00045061, 1.82660429e-008, -1.01497477e-007)
  1421. p54.CanCollide = false
  1422. p54.Locked = true
  1423. p54.FormFactor = Enum.FormFactor.Custom
  1424. p54.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1425. p54.BottomSurface = Enum.SurfaceType.Smooth
  1426. p54.TopSurface = Enum.SurfaceType.Smooth
  1427. b54 = Instance.new("CylinderMesh", p54)
  1428. b54.Name = "Mesh"
  1429. b54.Scale = Vector3.new(0.533715785, 0.490944952, 0.188277081)
  1430. p55 = Instance.new("Part", m)
  1431. p55.BrickColor = BrickColor.new("Really red")
  1432. p55.Material = Enum.Material.Metal
  1433. p55.CFrame = CFrame.new(-0.00487261312, 17.3358631, 24.8431625, 1.57569445e-007, 7.99628251e-005, -1, -1.00045907, -7.75639055e-005, -1.52042574e-007, -7.75701919e-005, 1.00045907, 7.99498011e-005)
  1434. p55.CanCollide = false
  1435. p55.Locked = true
  1436. p55.FormFactor = Enum.FormFactor.Custom
  1437. p55.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1438. p55.BottomSurface = Enum.SurfaceType.Smooth
  1439. p55.TopSurface = Enum.SurfaceType.Smooth
  1440. b55 = Instance.new("SpecialMesh", p55)
  1441. b55.MeshType = Enum.MeshType.Sphere
  1442. b55.Name = "Mesh"
  1443. b55.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1444. p56 = Instance.new("Part", m)
  1445. p56.BrickColor = BrickColor.new("Really red")
  1446. p56.Material = Enum.Material.Metal
  1447. p56.CFrame = CFrame.new(-0.00489160931, 17.3360176, 24.6020527, 1.57678528e-007, 7.9963298e-005, -1, -1.00046766, -7.75645822e-005, -1.51934799e-007, -7.75708468e-005, 1.00046766, 7.99500122e-005)
  1448. p56.CanCollide = false
  1449. p56.Locked = true
  1450. p56.FormFactor = Enum.FormFactor.Custom
  1451. p56.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1452. p56.BottomSurface = Enum.SurfaceType.Smooth
  1453. p56.TopSurface = Enum.SurfaceType.Smooth
  1454. b56 = Instance.new("SpecialMesh", p56)
  1455. b56.MeshType = Enum.MeshType.Sphere
  1456. b56.Name = "Mesh"
  1457. b56.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1458. p57 = Instance.new("Part", m)
  1459. p57.BrickColor = BrickColor.new("Really red")
  1460. p57.Material = Enum.Material.Metal
  1461. p57.CFrame = CFrame.new(-0.00487858616, 17.3361664, 25.1031246, 1.57787611e-007, 7.9963771e-005, -1, -1.00047624, -7.75652588e-005, -1.51827024e-007, -7.75715016e-005, 1.00047624, 7.99502232e-005)
  1462. p57.CanCollide = false
  1463. p57.Locked = true
  1464. p57.FormFactor = Enum.FormFactor.Custom
  1465. p57.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1466. p57.BottomSurface = Enum.SurfaceType.Smooth
  1467. p57.TopSurface = Enum.SurfaceType.Smooth
  1468. b57 = Instance.new("SpecialMesh", p57)
  1469. b57.MeshType = Enum.MeshType.Sphere
  1470. b57.Name = "Mesh"
  1471. b57.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1472. p58 = Instance.new("Part", m)
  1473. p58.BrickColor = BrickColor.new("Really black")
  1474. p58.Material = Enum.Material.SmoothPlastic
  1475. p58.Name = "Block"
  1476. p58.CFrame = CFrame.new(-0.00478160288, 16.9596806, 24.0546551, 1, 1.48938852e-007, -1.81332169e-007, 1.68964405e-007, -1.07752044e-007, 1.0004847, 2.01558578e-007, -1.0004847, -1.01534603e-007)
  1477. p58.CanCollide = false
  1478. p58.Locked = true
  1479. p58.FormFactor = Enum.FormFactor.Custom
  1480. p58.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1481. p58.BottomSurface = Enum.SurfaceType.Smooth
  1482. p58.TopSurface = Enum.SurfaceType.Smooth
  1483. b58 = Instance.new("SpecialMesh", p58)
  1484. b58.MeshType = Enum.MeshType.Wedge
  1485. b58.Name = "WedgeMesh"
  1486. b58.Scale = Vector3.new(0.533715785, 0.43030858, 0.0667144954)
  1487. p59 = Instance.new("Part", m)
  1488. p59.BrickColor = BrickColor.new("Really black")
  1489. p59.Material = Enum.Material.SmoothPlastic
  1490. p59.Name = "Block"
  1491. p59.CFrame = CFrame.new(-0.00478159869, 17.711134, 24.0548553, -1, -2.01216096e-007, 9.40176719e-008, -8.1391633e-008, -1.95222029e-007, -1.00049305, 1.47857392e-007, -1.00049305, 1.89007366e-007)
  1492. p59.CanCollide = false
  1493. p59.Locked = true
  1494. p59.FormFactor = Enum.FormFactor.Custom
  1495. p59.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1496. p59.BottomSurface = Enum.SurfaceType.Smooth
  1497. p59.TopSurface = Enum.SurfaceType.Smooth
  1498. b59 = Instance.new("SpecialMesh", p59)
  1499. b59.MeshType = Enum.MeshType.Wedge
  1500. b59.Name = "WedgeMesh"
  1501. b59.Scale = Vector3.new(0.533715785, 0.430308461, 0.066714488)
  1502. p60 = Instance.new("Part", m)
  1503. p60.BrickColor = BrickColor.new("Really black")
  1504. p60.Material = Enum.Material.SmoothPlastic
  1505. p60.Name = "Block"
  1506. p60.CFrame = CFrame.new(-0.00477158185, 16.9599533, 24.151247, -1, -6.06010246e-008, -6.70318911e-009, 6.18247498e-009, 1.95222356e-007, 1.00050139, -1.15000091e-007, 1.00050139, -1.89009967e-007)
  1507. p60.CanCollide = false
  1508. p60.Locked = true
  1509. p60.FormFactor = Enum.FormFactor.Custom
  1510. p60.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1511. p60.BottomSurface = Enum.SurfaceType.Smooth
  1512. p60.TopSurface = Enum.SurfaceType.Smooth
  1513. b60 = Instance.new("SpecialMesh", p60)
  1514. b60.MeshType = Enum.MeshType.Wedge
  1515. b60.Name = "WedgeMesh"
  1516. b60.Scale = Vector3.new(0.533715785, 0.133429006, 0.0667144954)
  1517. p61 = Instance.new("Part", m)
  1518. p61.BrickColor = BrickColor.new("Really black")
  1519. p61.Material = Enum.Material.SmoothPlastic
  1520. p61.Name = "Block"
  1521. p61.CFrame = CFrame.new(-0.00477157859, 17.7114239, 24.1514492, 1, 1.14698487e-007, -8.06112936e-008, -9.3758139e-008, 1.07750871e-007, -1.00050974, -5.9477852e-008, 1.00050974, 1.01540152e-007)
  1522. p61.CanCollide = false
  1523. p61.Locked = true
  1524. p61.FormFactor = Enum.FormFactor.Custom
  1525. p61.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1526. p61.BottomSurface = Enum.SurfaceType.Smooth
  1527. p61.TopSurface = Enum.SurfaceType.Smooth
  1528. b61 = Instance.new("SpecialMesh", p61)
  1529. b61.MeshType = Enum.MeshType.Wedge
  1530. b61.Name = "WedgeMesh"
  1531. b61.Scale = Vector3.new(0.533715785, 0.133429006, 0.066714488)
  1532. p62 = Instance.new("Part", m)
  1533. p62.BrickColor = BrickColor.new("Really red")
  1534. p62.Material = Enum.Material.Neon
  1535. p62.CFrame = CFrame.new(0.00079741748, 16.927433, 23.5033798, -1.67933258e-008, 7.99278641e-005, -1, -0.643061221, -0.766491234, -6.12398726e-005, -0.766491234, 0.643061221, 5.13551895e-005)
  1536. p62.CanCollide = false
  1537. p62.Locked = true
  1538. p62.FormFactor = Enum.FormFactor.Custom
  1539. p62.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1540. p62.BottomSurface = Enum.SurfaceType.Smooth
  1541. p62.TopSurface = Enum.SurfaceType.Smooth
  1542. b62 = Instance.new("SpecialMesh", p62)
  1543. b62.MeshType = Enum.MeshType.Sphere
  1544. b62.Name = "Mesh"
  1545. b62.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1546. p63 = Instance.new("Part", m)
  1547. p63.BrickColor = BrickColor.new("Really red")
  1548. p63.Material = Enum.Material.Neon
  1549. p63.CFrame = CFrame.new(0.000782429241, 17.1366653, 23.6502075, -3.03043635e-009, 7.99336412e-005, -1, -0.940160811, -0.342273146, -2.7342714e-005, -0.342273146, 0.940160811, 7.50943873e-005)
  1550. p63.CanCollide = false
  1551. p63.Locked = true
  1552. p63.FormFactor = Enum.FormFactor.Custom
  1553. p63.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1554. p63.BottomSurface = Enum.SurfaceType.Smooth
  1555. p63.TopSurface = Enum.SurfaceType.Smooth
  1556. b63 = Instance.new("SpecialMesh", p63)
  1557. b63.MeshType = Enum.MeshType.Sphere
  1558. b63.Name = "Mesh"
  1559. b63.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1560. p64 = Instance.new("Part", m)
  1561. p64.BrickColor = BrickColor.new("Really red")
  1562. p64.Material = Enum.Material.Neon
  1563. p64.Name = "Blade"
  1564. p64.CFrame = CFrame.new(0.000641356688, 17.335743, 20.9020824, 7.15408532e-009, 7.99334157e-005, -1, -1.00053501, -7.74263026e-005, 4.5656634e-010, -7.74243817e-005, 1.00053501, 7.99181071e-005)
  1565. p64.CanCollide = false
  1566. p64.Locked = true
  1567. p64.FormFactor = Enum.FormFactor.Custom
  1568. p64.Size = Vector3.new(0.341090173, 5.01877022, 0.341090739)
  1569. p64.BottomSurface = Enum.SurfaceType.Smooth
  1570. p64.TopSurface = Enum.SurfaceType.Smooth
  1571. b64 = Instance.new("SpecialMesh", p64)
  1572. b64.MeshType = Enum.MeshType.Sphere
  1573. b64.Name = "Mesh"
  1574. b64.Scale = Vector3.new(0.787231028, 1, 0.333572537)
  1575. p65 = Instance.new("Part", m)
  1576. p65.BrickColor = BrickColor.new("Really red")
  1577. p65.Material = Enum.Material.Neon
  1578. p65.CFrame = CFrame.new(0.00080744864, 16.980526, 23.6458302, -1.31658453e-008, 7.99317349e-005, -1, -0.766410947, -0.643196464, -5.13876876e-005, -0.643196464, 0.766410947, 6.12100048e-005)
  1579. p65.CanCollide = false
  1580. p65.Locked = true
  1581. p65.FormFactor = Enum.FormFactor.Custom
  1582. p65.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  1583. p65.BottomSurface = Enum.SurfaceType.Smooth
  1584. p65.TopSurface = Enum.SurfaceType.Smooth
  1585. b65 = Instance.new("SpecialMesh", p65)
  1586. b65.MeshType = Enum.MeshType.Sphere
  1587. b65.Name = "Mesh"
  1588. b65.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1589. p66 = Instance.new("Part", m)
  1590. p66.BrickColor = BrickColor.new("Really red")
  1591. p66.Material = Enum.Material.Neon
  1592. p66.CFrame = CFrame.new(0.000547376403, 17.3361092, 21.0322189, 7.37782102e-009, 7.99343616e-005, -1, -1.00055218, -7.74254731e-005, 6.87577995e-010, -7.74232903e-005, 1.00055218, 7.99185291e-005)
  1593. p66.CanCollide = false
  1594. p66.Locked = true
  1595. p66.FormFactor = Enum.FormFactor.Custom
  1596. p66.Size = Vector3.new(0.341090173, 3.76720667, 0.341090739)
  1597. p66.BottomSurface = Enum.SurfaceType.Smooth
  1598. p66.TopSurface = Enum.SurfaceType.Smooth
  1599. b66 = Instance.new("SpecialMesh", p66)
  1600. b66.MeshType = Enum.MeshType.Sphere
  1601. b66.Name = "Mesh"
  1602. b66.Scale = Vector3.new(0.920660138, 1, 0.333572537)
  1603. p67 = Instance.new("Part", m)
  1604. p67.BrickColor = BrickColor.new("Gold")
  1605. p67.Material = Enum.Material.SmoothPlastic
  1606. p67.Reflectance = 0.30000001192093
  1607. p67.Name = "Circle"
  1608. p67.CFrame = CFrame.new(-0.00478551397, 17.336647, 24.348484, 1, 3.08064045e-008, -3.62128816e-008, -5.07114386e-008, 2.21291032e-007, -1.00056064, 3.00788088e-008, 1.00056064, 2.23485017e-007)
  1609. p67.CanCollide = false
  1610. p67.Locked = true
  1611. p67.FormFactor = Enum.FormFactor.Custom
  1612. p67.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1613. p67.BottomSurface = Enum.SurfaceType.Smooth
  1614. p67.TopSurface = Enum.SurfaceType.Smooth
  1615. b67 = Instance.new("CylinderMesh", p67)
  1616. b67.Name = "Mesh"
  1617. b67.Scale = Vector3.new(0.400286883, 0.533716023, 0.467001468)
  1618. p68 = Instance.new("Part", m)
  1619. p68.BrickColor = BrickColor.new("Gold")
  1620. p68.Material = Enum.Material.SmoothPlastic
  1621. p68.Reflectance = 0.30000001192093
  1622. p68.Name = "Circle"
  1623. p68.CFrame = CFrame.new(-0.00478850631, 17.3367958, 24.2894917, 1, 3.12650421e-008, -3.61045807e-008, -5.08201019e-008, 2.21288374e-007, -1.00056899, 3.05374463e-008, 1.00056899, 2.23491384e-007)
  1624. p68.CanCollide = false
  1625. p68.Locked = true
  1626. p68.FormFactor = Enum.FormFactor.Custom
  1627. p68.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1628. p68.BottomSurface = Enum.SurfaceType.Smooth
  1629. p68.TopSurface = Enum.SurfaceType.Smooth
  1630. b68 = Instance.new("CylinderMesh", p68)
  1631. b68.Name = "Mesh"
  1632. b68.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  1633. p69 = Instance.new("Part", m)
  1634. p69.BrickColor = BrickColor.new("Really black")
  1635. p69.Material = Enum.Material.SmoothPlastic
  1636. p69.Name = "Block"
  1637. p69.CFrame = CFrame.new(-0.00478150323, 17.0238495, 24.0341129, -1, -2.05844628e-007, 9.51298489e-008, -8.02730185e-008, -1.76898766e-007, -1.00057733, 1.43231958e-007, -1.00057733, 1.79107602e-007)
  1638. p69.CanCollide = false
  1639. p69.Locked = true
  1640. p69.FormFactor = Enum.FormFactor.Custom
  1641. p69.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1642. p69.BottomSurface = Enum.SurfaceType.Smooth
  1643. p69.TopSurface = Enum.SurfaceType.Smooth
  1644. b69 = Instance.new("SpecialMesh", p69)
  1645. b69.MeshType = Enum.MeshType.Wedge
  1646. b69.Name = "WedgeMesh"
  1647. b69.Scale = Vector3.new(0.533715904, 0.29687953, 0.300215244)
  1648. p70 = Instance.new("Part", m)
  1649. p70.BrickColor = BrickColor.new("Really black")
  1650. p70.Material = Enum.Material.SmoothPlastic
  1651. p70.Name = "Block"
  1652. p70.CFrame = CFrame.new(-0.00478149857, 17.6501446, 24.0343189, 1, 1.43400342e-007, -7.81537324e-009, -7.30847916e-009, -8.94201833e-008, 1.00058568, 2.07126419e-007, -1.00058568, -9.16313638e-008)
  1653. p70.CanCollide = false
  1654. p70.Locked = true
  1655. p70.FormFactor = Enum.FormFactor.Custom
  1656. p70.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1657. p70.BottomSurface = Enum.SurfaceType.Smooth
  1658. p70.TopSurface = Enum.SurfaceType.Smooth
  1659. b70 = Instance.new("SpecialMesh", p70)
  1660. b70.MeshType = Enum.MeshType.Wedge
  1661. b70.Name = "WedgeMesh"
  1662. b70.Scale = Vector3.new(0.533715785, 0.29687953, 0.300215244)
  1663. w1 = Instance.new("Weld", p1)
  1664. w1.Name = "Part_Weld"
  1665. w1.Part0 = p1
  1666. w1.C0 = CFrame.new(-24.1230564, -16.9977722, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1667. w1.Part1 = p2
  1668. w1.C1 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1669. w2 = Instance.new("Weld", p2)
  1670. w2.Name = "Part_Weld"
  1671. w2.Part0 = p2
  1672. w2.C0 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1673. w2.Part1 = p3
  1674. w2.C1 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1675. w3 = Instance.new("Weld", p3)
  1676. w3.Name = "Part_Weld"
  1677. w3.Part0 = p3
  1678. w3.C0 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1679. w3.Part1 = p4
  1680. w3.C1 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1681. w4 = Instance.new("Weld", p4)
  1682. w4.Name = "Part_Weld"
  1683. w4.Part0 = p4
  1684. w4.C0 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1685. w4.Part1 = p5
  1686. w4.C1 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1687. w5 = Instance.new("Weld", p5)
  1688. w5.Name = "Part_Weld"
  1689. w5.Part0 = p5
  1690. w5.C0 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1691. w5.Part1 = p6
  1692. w5.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1693. w6 = Instance.new("Weld", p6)
  1694. w6.Name = "Part_Weld"
  1695. w6.Part0 = p6
  1696. w6.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1697. w6.Part1 = p7
  1698. w6.C1 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1699. w7 = Instance.new("Weld", p7)
  1700. w7.Name = "Part_Weld"
  1701. w7.Part0 = p7
  1702. w7.C0 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1703. w7.Part1 = p8
  1704. w7.C1 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1705. w8 = Instance.new("Weld", p8)
  1706. w8.Name = "Part_Weld"
  1707. w8.Part0 = p8
  1708. w8.C0 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1709. w8.Part1 = p9
  1710. w8.C1 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1711. w9 = Instance.new("Weld", p9)
  1712. w9.Name = "Part_Weld"
  1713. w9.Part0 = p9
  1714. w9.C0 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1715. w9.Part1 = p10
  1716. w9.C1 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1717. w10 = Instance.new("Weld", p10)
  1718. w10.Name = "Part_Weld"
  1719. w10.Part0 = p10
  1720. w10.C0 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1721. w10.Part1 = p11
  1722. w10.C1 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1723. w11 = Instance.new("Weld", p11)
  1724. w11.Name = "Part_Weld"
  1725. w11.Part0 = p11
  1726. w11.C0 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1727. w11.Part1 = p12
  1728. w11.C1 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1729. w12 = Instance.new("Weld", p12)
  1730. w12.Name = "Part_Weld"
  1731. w12.Part0 = p12
  1732. w12.C0 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1733. w12.Part1 = p13
  1734. w12.C1 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1735. w13 = Instance.new("Weld", p13)
  1736. w13.Name = "Part_Weld"
  1737. w13.Part0 = p13
  1738. w13.C0 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1739. w13.Part1 = p14
  1740. w13.C1 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1741. w14 = Instance.new("Weld", p14)
  1742. w14.Name = "Part_Weld"
  1743. w14.Part0 = p14
  1744. w14.C0 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1745. w14.Part1 = p15
  1746. w14.C1 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1747. w15 = Instance.new("Weld", p15)
  1748. w15.Name = "Part_Weld"
  1749. w15.Part0 = p15
  1750. w15.C0 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1751. w15.Part1 = p16
  1752. w15.C1 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1753. w16 = Instance.new("Weld", p16)
  1754. w16.Name = "Part_Weld"
  1755. w16.Part0 = p16
  1756. w16.C0 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1757. w16.Part1 = p17
  1758. w16.C1 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1759. w17 = Instance.new("Weld", p17)
  1760. w17.Name = "Part_Weld"
  1761. w17.Part0 = p17
  1762. w17.C0 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1763. w17.Part1 = p18
  1764. w17.C1 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1765. w18 = Instance.new("Weld", p18)
  1766. w18.Name = "Part_Weld"
  1767. w18.Part0 = p18
  1768. w18.C0 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1769. w18.Part1 = p19
  1770. w18.C1 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1771. w19 = Instance.new("Weld", p19)
  1772. w19.Name = "Part_Weld"
  1773. w19.Part0 = p19
  1774. w19.C0 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1775. w19.Part1 = p20
  1776. w19.C1 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1777. w20 = Instance.new("Weld", p20)
  1778. w20.Name = "Part_Weld"
  1779. w20.Part0 = p20
  1780. w20.C0 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1781. w20.Part1 = p21
  1782. w20.C1 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1783. w21 = Instance.new("Weld", p21)
  1784. w21.Name = "Part_Weld"
  1785. w21.Part0 = p21
  1786. w21.C0 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1787. w21.Part1 = p22
  1788. w21.C1 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1789. w22 = Instance.new("Weld", p22)
  1790. w22.Name = "Part_Weld"
  1791. w22.Part0 = p22
  1792. w22.C0 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1793. w22.Part1 = p23
  1794. w22.C1 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1795. w23 = Instance.new("Weld", p23)
  1796. w23.Name = "Part_Weld"
  1797. w23.Part0 = p23
  1798. w23.C0 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1799. w23.Part1 = p24
  1800. w23.C1 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1801. w24 = Instance.new("Weld", p24)
  1802. w24.Name = "Part_Weld"
  1803. w24.Part0 = p24
  1804. w24.C0 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1805. w24.Part1 = p25
  1806. w24.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1807. w25 = Instance.new("Weld", p25)
  1808. w25.Name = "Part_Weld"
  1809. w25.Part0 = p25
  1810. w25.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1811. w25.Part1 = p26
  1812. w25.C1 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1813. w26 = Instance.new("Weld", p26)
  1814. w26.Name = "Part_Weld"
  1815. w26.Part0 = p26
  1816. w26.C0 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1817. w26.Part1 = p27
  1818. w26.C1 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1819. w27 = Instance.new("Weld", p27)
  1820. w27.Name = "Part_Weld"
  1821. w27.Part0 = p27
  1822. w27.C0 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1823. w27.Part1 = p28
  1824. w27.C1 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1825. w28 = Instance.new("Weld", p28)
  1826. w28.Name = "Part_Weld"
  1827. w28.Part0 = p28
  1828. w28.C0 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1829. w28.Part1 = p29
  1830. w28.C1 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1831. w29 = Instance.new("Weld", p29)
  1832. w29.Name = "Part_Weld"
  1833. w29.Part0 = p29
  1834. w29.C0 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1835. w29.Part1 = p30
  1836. w29.C1 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1837. w30 = Instance.new("Weld", p30)
  1838. w30.Name = "Part_Weld"
  1839. w30.Part0 = p30
  1840. w30.C0 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1841. w30.Part1 = p31
  1842. w30.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1843. w31 = Instance.new("Weld", p31)
  1844. w31.Name = "Part_Weld"
  1845. w31.Part0 = p31
  1846. w31.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1847. w31.Part1 = p32
  1848. w31.C1 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1849. w32 = Instance.new("Weld", p32)
  1850. w32.Name = "Part_Weld"
  1851. w32.Part0 = p32
  1852. w32.C0 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1853. w32.Part1 = p33
  1854. w32.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1855. w33 = Instance.new("Weld", p33)
  1856. w33.Name = "Part_Weld"
  1857. w33.Part0 = p33
  1858. w33.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1859. w33.Part1 = p34
  1860. w33.C1 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1861. w34 = Instance.new("Weld", p34)
  1862. w34.Name = "Part_Weld"
  1863. w34.Part0 = p34
  1864. w34.C0 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1865. w34.Part1 = p35
  1866. w34.C1 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
  1867. w35 = Instance.new("Weld", p35)
  1868. w35.Name = "Part_Weld"
  1869. w35.Part0 = p35
  1870. w35.C0 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
  1871. w35.Part1 = p36
  1872. w35.C1 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
  1873. w36 = Instance.new("Weld", p36)
  1874. w36.Name = "Part_Weld"
  1875. w36.Part0 = p36
  1876. w36.C0 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
  1877. w36.Part1 = p37
  1878. w36.C1 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
  1879. w37 = Instance.new("Weld", p37)
  1880. w37.Name = "Part_Weld"
  1881. w37.Part0 = p37
  1882. w37.C0 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
  1883. w37.Part1 = p38
  1884. w37.C1 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
  1885. w38 = Instance.new("Weld", p38)
  1886. w38.Name = "Circle_Weld"
  1887. w38.Part0 = p38
  1888. w38.C0 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
  1889. w38.Part1 = p39
  1890. w38.C1 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1891. w39 = Instance.new("Weld", p39)
  1892. w39.Name = "Block_Weld"
  1893. w39.Part0 = p39
  1894. w39.C0 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1895. w39.Part1 = p40
  1896. w39.C1 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1897. w40 = Instance.new("Weld", p40)
  1898. w40.Name = "Block_Weld"
  1899. w40.Part0 = p40
  1900. w40.C0 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1901. w40.Part1 = p41
  1902. w40.C1 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1903. w41 = Instance.new("Weld", p41)
  1904. w41.Name = "Circle_Weld"
  1905. w41.Part0 = p41
  1906. w41.C0 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1907. w41.Part1 = p42
  1908. w41.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1909. w42 = Instance.new("Weld", p42)
  1910. w42.Name = "Circle_Weld"
  1911. w42.Part0 = p42
  1912. w42.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1913. w42.Part1 = p43
  1914. w42.C1 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1915. w43 = Instance.new("Weld", p43)
  1916. w43.Name = "Part_Weld"
  1917. w43.Part0 = p43
  1918. w43.C0 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1919. w43.Part1 = p44
  1920. w43.C1 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
  1921. w44 = Instance.new("Weld", p44)
  1922. w44.Name = "Part_Weld"
  1923. w44.Part0 = p44
  1924. w44.C0 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
  1925. w44.Part1 = p45
  1926. w44.C1 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
  1927. w45 = Instance.new("Weld", p45)
  1928. w45.Name = "Part_Weld"
  1929. w45.Part0 = p45
  1930. w45.C0 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
  1931. w45.Part1 = p46
  1932. w45.C1 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
  1933. w46 = Instance.new("Weld", p46)
  1934. w46.Name = "Handle_Weld"
  1935. w46.Part0 = p46
  1936. w46.C0 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
  1937. w46.Part1 = p47
  1938. w46.C1 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1939. w47 = Instance.new("Weld", p47)
  1940. w47.Name = "Block_Weld"
  1941. w47.Part0 = p47
  1942. w47.C0 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1943. w47.Part1 = p48
  1944. w47.C1 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1945. w48 = Instance.new("Weld", p48)
  1946. w48.Name = "Block_Weld"
  1947. w48.Part0 = p48
  1948. w48.C0 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1949. w48.Part1 = p49
  1950. w48.C1 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1951. w49 = Instance.new("Weld", p49)
  1952. w49.Name = "Block_Weld"
  1953. w49.Part0 = p49
  1954. w49.C0 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1955. w49.Part1 = p50
  1956. w49.C1 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1957. w50 = Instance.new("Weld", p50)
  1958. w50.Name = "Block_Weld"
  1959. w50.Part0 = p50
  1960. w50.C0 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1961. w50.Part1 = p51
  1962. w50.C1 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1963. w51 = Instance.new("Weld", p51)
  1964. w51.Name = "Block_Weld"
  1965. w51.Part0 = p51
  1966. w51.C0 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1967. w51.Part1 = p52
  1968. w51.C1 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1969. w52 = Instance.new("Weld", p52)
  1970. w52.Name = "Circle_Weld"
  1971. w52.Part0 = p52
  1972. w52.C0 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1973. w52.Part1 = p53
  1974. w52.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1975. w53 = Instance.new("Weld", p53)
  1976. w53.Name = "Circle_Weld"
  1977. w53.Part0 = p53
  1978. w53.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1979. w53.Part1 = p54
  1980. w53.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1981. w54 = Instance.new("Weld", p54)
  1982. w54.Name = "Part_Weld"
  1983. w54.Part0 = p54
  1984. w54.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1985. w54.Part1 = p55
  1986. w54.C1 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1987. w55 = Instance.new("Weld", p55)
  1988. w55.Name = "Part_Weld"
  1989. w55.Part0 = p55
  1990. w55.C0 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1991. w55.Part1 = p56
  1992. w55.C1 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1993. w56 = Instance.new("Weld", p56)
  1994. w56.Name = "Part_Weld"
  1995. w56.Part0 = p56
  1996. w56.C0 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1997. w56.Part1 = p57
  1998. w56.C1 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1999. w57 = Instance.new("Weld", p57)
  2000. w57.Name = "Block_Weld"
  2001. w57.Part0 = p57
  2002. w57.C0 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  2003. w57.Part1 = p58
  2004. w57.C1 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
  2005. w58 = Instance.new("Weld", p58)
  2006. w58.Name = "Block_Weld"
  2007. w58.Part0 = p58
  2008. w58.C0 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
  2009. w58.Part1 = p59
  2010. w58.C1 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
  2011. w59 = Instance.new("Weld", p59)
  2012. w59.Name = "Block_Weld"
  2013. w59.Part0 = p59
  2014. w59.C0 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
  2015. w59.Part1 = p60
  2016. w59.C1 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
  2017. w60 = Instance.new("Weld", p60)
  2018. w60.Name = "Block_Weld"
  2019. w60.Part0 = p60
  2020. w60.C0 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
  2021. w60.Part1 = p61
  2022. w60.C1 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
  2023. w61 = Instance.new("Weld", p61)
  2024. w61.Name = "Part_Weld"
  2025. w61.Part0 = p61
  2026. w61.C0 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
  2027. w61.Part1 = p62
  2028. w61.C1 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
  2029. w62 = Instance.new("Weld", p62)
  2030. w62.Name = "Part_Weld"
  2031. w62.Part0 = p62
  2032. w62.C0 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
  2033. w62.Part1 = p63
  2034. w62.C1 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
  2035. w63 = Instance.new("Weld", p63)
  2036. w63.Name = "Blade_Weld"
  2037. w63.Part0 = p63
  2038. w63.C0 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
  2039. w63.Part1 = p64
  2040. w63.C1 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  2041. w64 = Instance.new("Weld", p64)
  2042. w64.Name = "Part_Weld"
  2043. w64.Part0 = p64
  2044. w64.C0 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  2045. w64.Part1 = p65
  2046. w64.C1 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
  2047. w65 = Instance.new("Weld", p65)
  2048. w65.Name = "Part_Weld"
  2049. w65.Part0 = p65
  2050. w65.C0 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
  2051. w65.Part1 = p66
  2052. w65.C1 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  2053. w66 = Instance.new("Weld", p66)
  2054. w66.Name = "Circle_Weld"
  2055. w66.Part0 = p66
  2056. w66.C0 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  2057. w66.Part1 = p67
  2058. w66.C1 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  2059. w67 = Instance.new("Weld", p67)
  2060. w67.Name = "Circle_Weld"
  2061. w67.Part0 = p67
  2062. w67.C0 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  2063. w67.Part1 = p68
  2064. w67.C1 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  2065. w68 = Instance.new("Weld", p68)
  2066. w68.Name = "Block_Weld"
  2067. w68.Part0 = p68
  2068. w68.C0 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  2069. w68.Part1 = p69
  2070. w68.C1 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  2071. w69 = Instance.new("Weld", p69)
  2072. w69.Name = "Block_Weld"
  2073. w69.Part0 = p69
  2074. w69.C0 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  2075. w69.Part1 = p70
  2076. w69.C1 = CFrame.new(0.00477778213, 24.0202408, -17.6398048, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  2077. m.Parent = char
  2078. m:MakeJoints()
  2079. ----------------------------------------------------
  2080. local cor = Instance.new("Part", char.Sword)
  2081. cor.Name = "Thingy"
  2082. cor.Locked = true
  2083. cor.BottomSurface = 0
  2084. cor.CanCollide = false
  2085. cor.Size = Vector3.new(1, 1, 1)
  2086. cor.Transparency = 1
  2087. cor.TopSurface = 0
  2088. corw = Instance.new("Weld", cor)
  2089. corw.Part0 = rarm
  2090. corw.Part1 = cor
  2091. corw.C0 = CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0))
  2092. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2093. weld1 = Instance.new("Weld", char.Sword)
  2094. weld1.Part0 = cor
  2095. weld1.Part1 = char.Sword.Handle
  2096. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2097. ----------------------------------------------------
  2098. local m2 = Instance.new("Model")
  2099. m2.Name = "Wings"
  2100. p1 = Instance.new("Part", m2)
  2101. p1.BrickColor = BrickColor.new("Really red")
  2102. p1.Material = Enum.Material.Neon
  2103. p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117)
  2104. p1.FormFactor = Enum.FormFactor.Custom
  2105. p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2106. p1.BottomSurface = Enum.SurfaceType.Smooth
  2107. p1.TopSurface = Enum.SurfaceType.Smooth
  2108. b1 = Instance.new("SpecialMesh", p1)
  2109. b1.MeshType = Enum.MeshType.Sphere
  2110. b1.Name = "Mesh"
  2111. p2 = Instance.new("Part", m2)
  2112. p2.BrickColor = BrickColor.new("Really red")
  2113. p2.Material = Enum.Material.SmoothPlastic
  2114. p2.Reflectance = 0.30000001192093
  2115. p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783)
  2116. p2.CanCollide = false
  2117. p2.FormFactor = Enum.FormFactor.Custom
  2118. p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2119. p2.BottomSurface = Enum.SurfaceType.Smooth
  2120. p2.TopSurface = Enum.SurfaceType.Smooth
  2121. b2 = Instance.new("SpecialMesh", p2)
  2122. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2123. b2.TextureId = ""
  2124. b2.MeshType = Enum.MeshType.FileMesh
  2125. b2.Name = "Mesh"
  2126. b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2127. p3 = Instance.new("Part", m2)
  2128. p3.BrickColor = BrickColor.new("Really red")
  2129. p3.Material = Enum.Material.SmoothPlastic
  2130. p3.Reflectance = 0.30000001192093
  2131. p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664)
  2132. p3.CanCollide = false
  2133. p3.FormFactor = Enum.FormFactor.Custom
  2134. p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2135. p3.BottomSurface = Enum.SurfaceType.Smooth
  2136. p3.TopSurface = Enum.SurfaceType.Smooth
  2137. b3 = Instance.new("SpecialMesh", p3)
  2138. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2139. b3.TextureId = ""
  2140. b3.MeshType = Enum.MeshType.FileMesh
  2141. b3.Name = "Mesh"
  2142. b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2143. p4 = Instance.new("Part", m2)
  2144. p4.BrickColor = BrickColor.new("Really red")
  2145. p4.Material = Enum.Material.SmoothPlastic
  2146. p4.Reflectance = 0.30000001192093
  2147. p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968)
  2148. p4.CanCollide = false
  2149. p4.FormFactor = Enum.FormFactor.Custom
  2150. p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2151. p4.BottomSurface = Enum.SurfaceType.Smooth
  2152. p4.TopSurface = Enum.SurfaceType.Smooth
  2153. b4 = Instance.new("SpecialMesh", p4)
  2154. b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2155. b4.TextureId = ""
  2156. b4.MeshType = Enum.MeshType.FileMesh
  2157. b4.Name = "Mesh"
  2158. b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2159. p5 = Instance.new("Part", m2)
  2160. p5.BrickColor = BrickColor.new("Really red")
  2161. p5.Material = Enum.Material.SmoothPlastic
  2162. p5.Reflectance = 0.30000001192093
  2163. p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485)
  2164. p5.CanCollide = false
  2165. p5.FormFactor = Enum.FormFactor.Custom
  2166. p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2167. p5.BottomSurface = Enum.SurfaceType.Smooth
  2168. p5.TopSurface = Enum.SurfaceType.Smooth
  2169. b5 = Instance.new("SpecialMesh", p5)
  2170. b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2171. b5.TextureId = ""
  2172. b5.MeshType = Enum.MeshType.FileMesh
  2173. b5.Name = "Mesh"
  2174. b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2175. p6 = Instance.new("Part", m2)
  2176. p6.BrickColor = BrickColor.new("Really red")
  2177. p6.Material = Enum.Material.SmoothPlastic
  2178. p6.Reflectance = 0.30000001192093
  2179. p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366)
  2180. p6.CanCollide = false
  2181. p6.FormFactor = Enum.FormFactor.Custom
  2182. p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2183. p6.BottomSurface = Enum.SurfaceType.Smooth
  2184. p6.TopSurface = Enum.SurfaceType.Smooth
  2185. b6 = Instance.new("SpecialMesh", p6)
  2186. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2187. b6.TextureId = ""
  2188. b6.MeshType = Enum.MeshType.FileMesh
  2189. b6.Name = "Mesh"
  2190. b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2191. p7 = Instance.new("Part", m2)
  2192. p7.BrickColor = BrickColor.new("Really red")
  2193. p7.Material = Enum.Material.SmoothPlastic
  2194. p7.Reflectance = 0.30000001192093
  2195. p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247)
  2196. p7.CanCollide = false
  2197. p7.FormFactor = Enum.FormFactor.Custom
  2198. p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2199. p7.BottomSurface = Enum.SurfaceType.Smooth
  2200. p7.TopSurface = Enum.SurfaceType.Smooth
  2201. b7 = Instance.new("SpecialMesh", p7)
  2202. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2203. b7.TextureId = ""
  2204. b7.MeshType = Enum.MeshType.FileMesh
  2205. b7.Name = "Mesh"
  2206. b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2207. p8 = Instance.new("Part", m2)
  2208. p8.BrickColor = BrickColor.new("Really red")
  2209. p8.Material = Enum.Material.SmoothPlastic
  2210. p8.Reflectance = 0.30000001192093
  2211. p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128)
  2212. p8.CanCollide = false
  2213. p8.FormFactor = Enum.FormFactor.Custom
  2214. p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2215. p8.BottomSurface = Enum.SurfaceType.Smooth
  2216. p8.TopSurface = Enum.SurfaceType.Smooth
  2217. b8 = Instance.new("SpecialMesh", p8)
  2218. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2219. b8.TextureId = ""
  2220. b8.MeshType = Enum.MeshType.FileMesh
  2221. b8.Name = "Mesh"
  2222. b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2223. p9 = Instance.new("Part", m2)
  2224. p9.BrickColor = BrickColor.new("Really red")
  2225. p9.Material = Enum.Material.SmoothPlastic
  2226. p9.Reflectance = 0.30000001192093
  2227. p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843)
  2228. p9.CanCollide = false
  2229. p9.FormFactor = Enum.FormFactor.Custom
  2230. p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2231. p9.BottomSurface = Enum.SurfaceType.Smooth
  2232. p9.TopSurface = Enum.SurfaceType.Smooth
  2233. b9 = Instance.new("SpecialMesh", p9)
  2234. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2235. b9.TextureId = ""
  2236. b9.MeshType = Enum.MeshType.FileMesh
  2237. b9.Name = "Mesh"
  2238. b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2239. p10 = Instance.new("Part", m2)
  2240. p10.BrickColor = BrickColor.new("Really red")
  2241. p10.Material = Enum.Material.SmoothPlastic
  2242. p10.Reflectance = 0.30000001192093
  2243. p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172)
  2244. p10.CanCollide = false
  2245. p10.FormFactor = Enum.FormFactor.Custom
  2246. p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2247. p10.BottomSurface = Enum.SurfaceType.Smooth
  2248. p10.TopSurface = Enum.SurfaceType.Smooth
  2249. b10 = Instance.new("SpecialMesh", p10)
  2250. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2251. b10.TextureId = ""
  2252. b10.MeshType = Enum.MeshType.FileMesh
  2253. b10.Name = "Mesh"
  2254. b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2255. p11 = Instance.new("Part", m2)
  2256. p11.BrickColor = BrickColor.new("Really red")
  2257. p11.Material = Enum.Material.SmoothPlastic
  2258. p11.Reflectance = 0.30000001192093
  2259. p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172)
  2260. p11.CanCollide = false
  2261. p11.FormFactor = Enum.FormFactor.Custom
  2262. p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2263. p11.BottomSurface = Enum.SurfaceType.Smooth
  2264. p11.TopSurface = Enum.SurfaceType.Smooth
  2265. b11 = Instance.new("SpecialMesh", p11)
  2266. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2267. b11.TextureId = ""
  2268. b11.MeshType = Enum.MeshType.FileMesh
  2269. b11.Name = "Mesh"
  2270. b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2271. p12 = Instance.new("Part", m2)
  2272. p12.BrickColor = BrickColor.new("Really red")
  2273. p12.Material = Enum.Material.SmoothPlastic
  2274. p12.Reflectance = 0.30000001192093
  2275. p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922)
  2276. p12.CanCollide = false
  2277. p12.FormFactor = Enum.FormFactor.Custom
  2278. p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2279. p12.BottomSurface = Enum.SurfaceType.Smooth
  2280. p12.TopSurface = Enum.SurfaceType.Smooth
  2281. b12 = Instance.new("SpecialMesh", p12)
  2282. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2283. b12.TextureId = ""
  2284. b12.MeshType = Enum.MeshType.FileMesh
  2285. b12.Name = "Mesh"
  2286. b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2287. p13 = Instance.new("Part", m2)
  2288. p13.BrickColor = BrickColor.new("Really red")
  2289. p13.Material = Enum.Material.SmoothPlastic
  2290. p13.Reflectance = 0.30000001192093
  2291. p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202)
  2292. p13.CanCollide = false
  2293. p13.FormFactor = Enum.FormFactor.Custom
  2294. p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2295. p13.BottomSurface = Enum.SurfaceType.Smooth
  2296. p13.TopSurface = Enum.SurfaceType.Smooth
  2297. b13 = Instance.new("SpecialMesh", p13)
  2298. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2299. b13.TextureId = ""
  2300. b13.MeshType = Enum.MeshType.FileMesh
  2301. b13.Name = "Mesh"
  2302. b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2303. p14 = Instance.new("Part", m2)
  2304. p14.BrickColor = BrickColor.new("Really red")
  2305. p14.Material = Enum.Material.SmoothPlastic
  2306. p14.Reflectance = 0.30000001192093
  2307. p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922)
  2308. p14.CanCollide = false
  2309. p14.FormFactor = Enum.FormFactor.Custom
  2310. p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2311. p14.BottomSurface = Enum.SurfaceType.Smooth
  2312. p14.TopSurface = Enum.SurfaceType.Smooth
  2313. b14 = Instance.new("SpecialMesh", p14)
  2314. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2315. b14.TextureId = ""
  2316. b14.MeshType = Enum.MeshType.FileMesh
  2317. b14.Name = "Mesh"
  2318. b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2319. p15 = Instance.new("Part", m2)
  2320. p15.BrickColor = BrickColor.new("Really red")
  2321. p15.Material = Enum.Material.SmoothPlastic
  2322. p15.Reflectance = 0.30000001192093
  2323. p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266)
  2324. p15.CanCollide = false
  2325. p15.FormFactor = Enum.FormFactor.Custom
  2326. p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2327. p15.BottomSurface = Enum.SurfaceType.Smooth
  2328. p15.TopSurface = Enum.SurfaceType.Smooth
  2329. b15 = Instance.new("SpecialMesh", p15)
  2330. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2331. b15.TextureId = ""
  2332. b15.MeshType = Enum.MeshType.FileMesh
  2333. b15.Name = "Mesh"
  2334. b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2335. p16 = Instance.new("Part", m2)
  2336. p16.BrickColor = BrickColor.new("Really red")
  2337. p16.Material = Enum.Material.SmoothPlastic
  2338. p16.Reflectance = 0.30000001192093
  2339. p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041)
  2340. p16.CanCollide = false
  2341. p16.FormFactor = Enum.FormFactor.Custom
  2342. p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2343. p16.BottomSurface = Enum.SurfaceType.Smooth
  2344. p16.TopSurface = Enum.SurfaceType.Smooth
  2345. b16 = Instance.new("SpecialMesh", p16)
  2346. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2347. b16.TextureId = ""
  2348. b16.MeshType = Enum.MeshType.FileMesh
  2349. b16.Name = "Mesh"
  2350. b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2351. p17 = Instance.new("Part", m2)
  2352. p17.BrickColor = BrickColor.new("Really red")
  2353. p17.Material = Enum.Material.SmoothPlastic
  2354. p17.Reflectance = 0.30000001192093
  2355. p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385)
  2356. p17.CanCollide = false
  2357. p17.FormFactor = Enum.FormFactor.Custom
  2358. p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2359. p17.BottomSurface = Enum.SurfaceType.Smooth
  2360. p17.TopSurface = Enum.SurfaceType.Smooth
  2361. b17 = Instance.new("SpecialMesh", p17)
  2362. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2363. b17.TextureId = ""
  2364. b17.MeshType = Enum.MeshType.FileMesh
  2365. b17.Name = "Mesh"
  2366. b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2367. p18 = Instance.new("Part", m2)
  2368. p18.BrickColor = BrickColor.new("Really red")
  2369. p18.Material = Enum.Material.SmoothPlastic
  2370. p18.Reflectance = 0.30000001192093
  2371. p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381)
  2372. p18.CanCollide = false
  2373. p18.FormFactor = Enum.FormFactor.Custom
  2374. p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2375. p18.BottomSurface = Enum.SurfaceType.Smooth
  2376. p18.TopSurface = Enum.SurfaceType.Smooth
  2377. b18 = Instance.new("SpecialMesh", p18)
  2378. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2379. b18.TextureId = ""
  2380. b18.MeshType = Enum.MeshType.FileMesh
  2381. b18.Name = "Mesh"
  2382. b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2383. p19 = Instance.new("Part", m2)
  2384. p19.BrickColor = BrickColor.new("Really red")
  2385. p19.Material = Enum.Material.SmoothPlastic
  2386. p19.Reflectance = 0.30000001192093
  2387. p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141)
  2388. p19.CanCollide = false
  2389. p19.FormFactor = Enum.FormFactor.Custom
  2390. p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2391. p19.BottomSurface = Enum.SurfaceType.Smooth
  2392. p19.TopSurface = Enum.SurfaceType.Smooth
  2393. b19 = Instance.new("SpecialMesh", p19)
  2394. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2395. b19.TextureId = ""
  2396. b19.MeshType = Enum.MeshType.FileMesh
  2397. b19.Name = "Mesh"
  2398. b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2399. p20 = Instance.new("Part", m2)
  2400. p20.BrickColor = BrickColor.new("Really red")
  2401. p20.Material = Enum.Material.SmoothPlastic
  2402. p20.Reflectance = 0.30000001192093
  2403. p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141)
  2404. p20.CanCollide = false
  2405. p20.FormFactor = Enum.FormFactor.Custom
  2406. p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2407. p20.BottomSurface = Enum.SurfaceType.Smooth
  2408. p20.TopSurface = Enum.SurfaceType.Smooth
  2409. b20 = Instance.new("SpecialMesh", p20)
  2410. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2411. b20.TextureId = ""
  2412. b20.MeshType = Enum.MeshType.FileMesh
  2413. b20.Name = "Mesh"
  2414. b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2415. p21 = Instance.new("Part", m2)
  2416. p21.BrickColor = BrickColor.new("Really red")
  2417. p21.Material = Enum.Material.SmoothPlastic
  2418. p21.Reflectance = 0.30000001192093
  2419. p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023)
  2420. p21.CanCollide = false
  2421. p21.FormFactor = Enum.FormFactor.Custom
  2422. p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2423. p21.BottomSurface = Enum.SurfaceType.Smooth
  2424. p21.TopSurface = Enum.SurfaceType.Smooth
  2425. b21 = Instance.new("SpecialMesh", p21)
  2426. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2427. b21.TextureId = ""
  2428. b21.MeshType = Enum.MeshType.FileMesh
  2429. b21.Name = "Mesh"
  2430. b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2431. p22 = Instance.new("Part", m2)
  2432. p22.BrickColor = BrickColor.new("Really red")
  2433. p22.Material = Enum.Material.SmoothPlastic
  2434. p22.Reflectance = 0.30000001192093
  2435. p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141)
  2436. p22.CanCollide = false
  2437. p22.FormFactor = Enum.FormFactor.Custom
  2438. p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2439. p22.BottomSurface = Enum.SurfaceType.Smooth
  2440. p22.TopSurface = Enum.SurfaceType.Smooth
  2441. b22 = Instance.new("SpecialMesh", p22)
  2442. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2443. b22.TextureId = ""
  2444. b22.MeshType = Enum.MeshType.FileMesh
  2445. b22.Name = "Mesh"
  2446. b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2447. p23 = Instance.new("Part", m2)
  2448. p23.BrickColor = BrickColor.new("Really red")
  2449. p23.Material = Enum.Material.SmoothPlastic
  2450. p23.Reflectance = 0.30000001192093
  2451. p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027)
  2452. p23.CanCollide = false
  2453. p23.FormFactor = Enum.FormFactor.Custom
  2454. p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2455. p23.BottomSurface = Enum.SurfaceType.Smooth
  2456. p23.TopSurface = Enum.SurfaceType.Smooth
  2457. b23 = Instance.new("SpecialMesh", p23)
  2458. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2459. b23.TextureId = ""
  2460. b23.MeshType = Enum.MeshType.FileMesh
  2461. b23.Name = "Mesh"
  2462. b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2463. p24 = Instance.new("Part", m2)
  2464. p24.BrickColor = BrickColor.new("Really red")
  2465. p24.Material = Enum.Material.SmoothPlastic
  2466. p24.Reflectance = 0.30000001192093
  2467. p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087)
  2468. p24.CanCollide = false
  2469. p24.FormFactor = Enum.FormFactor.Custom
  2470. p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2471. p24.BottomSurface = Enum.SurfaceType.Smooth
  2472. p24.TopSurface = Enum.SurfaceType.Smooth
  2473. b24 = Instance.new("SpecialMesh", p24)
  2474. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2475. b24.TextureId = ""
  2476. b24.MeshType = Enum.MeshType.FileMesh
  2477. b24.Name = "Mesh"
  2478. b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2479. p25 = Instance.new("Part", m2)
  2480. p25.BrickColor = BrickColor.new("Really red")
  2481. p25.Material = Enum.Material.SmoothPlastic
  2482. p25.Reflectance = 0.30000001192093
  2483. p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862)
  2484. p25.CanCollide = false
  2485. p25.FormFactor = Enum.FormFactor.Custom
  2486. p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2487. p25.BottomSurface = Enum.SurfaceType.Smooth
  2488. p25.TopSurface = Enum.SurfaceType.Smooth
  2489. b25 = Instance.new("SpecialMesh", p25)
  2490. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2491. b25.TextureId = ""
  2492. b25.MeshType = Enum.MeshType.FileMesh
  2493. b25.Name = "Mesh"
  2494. b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2495. p26 = Instance.new("Part", m2)
  2496. p26.BrickColor = BrickColor.new("Really red")
  2497. p26.Material = Enum.Material.SmoothPlastic
  2498. p26.Reflectance = 0.30000001192093
  2499. p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146)
  2500. p26.CanCollide = false
  2501. p26.FormFactor = Enum.FormFactor.Custom
  2502. p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2503. p26.BottomSurface = Enum.SurfaceType.Smooth
  2504. p26.TopSurface = Enum.SurfaceType.Smooth
  2505. b26 = Instance.new("SpecialMesh", p26)
  2506. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2507. b26.TextureId = ""
  2508. b26.MeshType = Enum.MeshType.FileMesh
  2509. b26.Name = "Mesh"
  2510. b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2511. p27 = Instance.new("Part", m2)
  2512. p27.BrickColor = BrickColor.new("Really red")
  2513. p27.Material = Enum.Material.SmoothPlastic
  2514. p27.Reflectance = 0.30000001192093
  2515. p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732)
  2516. p27.CanCollide = false
  2517. p27.FormFactor = Enum.FormFactor.Custom
  2518. p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2519. p27.BottomSurface = Enum.SurfaceType.Smooth
  2520. p27.TopSurface = Enum.SurfaceType.Smooth
  2521. b27 = Instance.new("SpecialMesh", p27)
  2522. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2523. b27.TextureId = ""
  2524. b27.MeshType = Enum.MeshType.FileMesh
  2525. b27.Name = "Mesh"
  2526. b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2527. p28 = Instance.new("Part", m2)
  2528. p28.BrickColor = BrickColor.new("Really red")
  2529. p28.Material = Enum.Material.SmoothPlastic
  2530. p28.Reflectance = 0.30000001192093
  2531. p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785)
  2532. p28.CanCollide = false
  2533. p28.FormFactor = Enum.FormFactor.Custom
  2534. p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2535. p28.BottomSurface = Enum.SurfaceType.Smooth
  2536. p28.TopSurface = Enum.SurfaceType.Smooth
  2537. b28 = Instance.new("SpecialMesh", p28)
  2538. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2539. b28.TextureId = ""
  2540. b28.MeshType = Enum.MeshType.FileMesh
  2541. b28.Name = "Mesh"
  2542. b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2543. p29 = Instance.new("Part", m2)
  2544. p29.BrickColor = BrickColor.new("Really red")
  2545. p29.Material = Enum.Material.Neon
  2546. p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521)
  2547. p29.FormFactor = Enum.FormFactor.Custom
  2548. p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2549. p29.BottomSurface = Enum.SurfaceType.Smooth
  2550. p29.TopSurface = Enum.SurfaceType.Smooth
  2551. b29 = Instance.new("SpecialMesh", p29)
  2552. b29.MeshType = Enum.MeshType.Sphere
  2553. b29.Name = "Mesh"
  2554. p30 = Instance.new("Part", m2)
  2555. p30.BrickColor = BrickColor.new("Really red")
  2556. p30.Material = Enum.Material.SmoothPlastic
  2557. p30.Reflectance = 0.30000001192093
  2558. p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147)
  2559. p30.CanCollide = false
  2560. p30.FormFactor = Enum.FormFactor.Custom
  2561. p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2562. p30.BottomSurface = Enum.SurfaceType.Smooth
  2563. p30.TopSurface = Enum.SurfaceType.Smooth
  2564. b30 = Instance.new("SpecialMesh", p30)
  2565. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2566. b30.TextureId = ""
  2567. b30.MeshType = Enum.MeshType.FileMesh
  2568. b30.Name = "Mesh"
  2569. b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2570. p31 = Instance.new("Part", m2)
  2571. p31.BrickColor = BrickColor.new("Really red")
  2572. p31.Material = Enum.Material.SmoothPlastic
  2573. p31.Reflectance = 0.30000001192093
  2574. p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485)
  2575. p31.CanCollide = false
  2576. p31.FormFactor = Enum.FormFactor.Custom
  2577. p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2578. p31.BottomSurface = Enum.SurfaceType.Smooth
  2579. p31.TopSurface = Enum.SurfaceType.Smooth
  2580. b31 = Instance.new("SpecialMesh", p31)
  2581. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2582. b31.TextureId = ""
  2583. b31.MeshType = Enum.MeshType.FileMesh
  2584. b31.Name = "Mesh"
  2585. b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2586. p32 = Instance.new("Part", m2)
  2587. p32.BrickColor = BrickColor.new("Really red")
  2588. p32.Material = Enum.Material.SmoothPlastic
  2589. p32.Reflectance = 0.30000001192093
  2590. p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461)
  2591. p32.CanCollide = false
  2592. p32.FormFactor = Enum.FormFactor.Custom
  2593. p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2594. p32.BottomSurface = Enum.SurfaceType.Smooth
  2595. p32.TopSurface = Enum.SurfaceType.Smooth
  2596. b32 = Instance.new("SpecialMesh", p32)
  2597. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2598. b32.TextureId = ""
  2599. b32.MeshType = Enum.MeshType.FileMesh
  2600. b32.Name = "Mesh"
  2601. b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2602. p33 = Instance.new("Part", m2)
  2603. p33.BrickColor = BrickColor.new("Really red")
  2604. p33.Material = Enum.Material.Neon
  2605. p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759)
  2606. p33.FormFactor = Enum.FormFactor.Custom
  2607. p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2608. p33.BottomSurface = Enum.SurfaceType.Smooth
  2609. p33.TopSurface = Enum.SurfaceType.Smooth
  2610. b33 = Instance.new("SpecialMesh", p33)
  2611. b33.MeshType = Enum.MeshType.Sphere
  2612. b33.Name = "Mesh"
  2613. p34 = Instance.new("Part", m2)
  2614. p34.BrickColor = BrickColor.new("Really red")
  2615. p34.Material = Enum.Material.SmoothPlastic
  2616. p34.Reflectance = 0.30000001192093
  2617. p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604)
  2618. p34.CanCollide = false
  2619. p34.FormFactor = Enum.FormFactor.Custom
  2620. p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2621. p34.BottomSurface = Enum.SurfaceType.Smooth
  2622. p34.TopSurface = Enum.SurfaceType.Smooth
  2623. b34 = Instance.new("SpecialMesh", p34)
  2624. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2625. b34.TextureId = ""
  2626. b34.MeshType = Enum.MeshType.FileMesh
  2627. b34.Name = "Mesh"
  2628. b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2629. p35 = Instance.new("Part", m2)
  2630. p35.BrickColor = BrickColor.new("Really red")
  2631. p35.Material = Enum.Material.SmoothPlastic
  2632. p35.Reflectance = 0.30000001192093
  2633. p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909)
  2634. p35.CanCollide = false
  2635. p35.FormFactor = Enum.FormFactor.Custom
  2636. p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2637. p35.BottomSurface = Enum.SurfaceType.Smooth
  2638. p35.TopSurface = Enum.SurfaceType.Smooth
  2639. b35 = Instance.new("SpecialMesh", p35)
  2640. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2641. b35.TextureId = ""
  2642. b35.MeshType = Enum.MeshType.FileMesh
  2643. b35.Name = "Mesh"
  2644. b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2645. p36 = Instance.new("Part", m2)
  2646. p36.BrickColor = BrickColor.new("Really red")
  2647. p36.Material = Enum.Material.SmoothPlastic
  2648. p36.Reflectance = 0.30000001192093
  2649. p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461)
  2650. p36.CanCollide = false
  2651. p36.FormFactor = Enum.FormFactor.Custom
  2652. p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2653. p36.BottomSurface = Enum.SurfaceType.Smooth
  2654. p36.TopSurface = Enum.SurfaceType.Smooth
  2655. b36 = Instance.new("SpecialMesh", p36)
  2656. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2657. b36.TextureId = ""
  2658. b36.MeshType = Enum.MeshType.FileMesh
  2659. b36.Name = "Mesh"
  2660. b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2661. p37 = Instance.new("Part", m2)
  2662. p37.BrickColor = BrickColor.new("Really red")
  2663. p37.Material = Enum.Material.Neon
  2664. p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938)
  2665. p37.FormFactor = Enum.FormFactor.Custom
  2666. p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2667. p37.BottomSurface = Enum.SurfaceType.Smooth
  2668. p37.TopSurface = Enum.SurfaceType.Smooth
  2669. b37 = Instance.new("SpecialMesh", p37)
  2670. b37.MeshType = Enum.MeshType.Sphere
  2671. b37.Name = "Mesh"
  2672. p38 = Instance.new("Part", m2)
  2673. p38.BrickColor = BrickColor.new("Really red")
  2674. p38.Material = Enum.Material.Neon
  2675. p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057)
  2676. p38.FormFactor = Enum.FormFactor.Custom
  2677. p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2678. p38.BottomSurface = Enum.SurfaceType.Smooth
  2679. p38.TopSurface = Enum.SurfaceType.Smooth
  2680. b38 = Instance.new("SpecialMesh", p38)
  2681. b38.MeshType = Enum.MeshType.Sphere
  2682. b38.Name = "Mesh"
  2683. p39 = Instance.new("Part", m2)
  2684. p39.BrickColor = BrickColor.new("Really red")
  2685. p39.Material = Enum.Material.SmoothPlastic
  2686. p39.Reflectance = 0.30000001192093
  2687. p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2688. p39.CanCollide = false
  2689. p39.FormFactor = Enum.FormFactor.Custom
  2690. p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2691. p39.BottomSurface = Enum.SurfaceType.Smooth
  2692. p39.TopSurface = Enum.SurfaceType.Smooth
  2693. b39 = Instance.new("SpecialMesh", p39)
  2694. b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2695. b39.TextureId = ""
  2696. b39.MeshType = Enum.MeshType.FileMesh
  2697. b39.Name = "Mesh"
  2698. b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2699. p40 = Instance.new("Part", m2)
  2700. p40.BrickColor = BrickColor.new("Really red")
  2701. p40.Material = Enum.Material.SmoothPlastic
  2702. p40.Reflectance = 0.30000001192093
  2703. p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2704. p40.CanCollide = false
  2705. p40.FormFactor = Enum.FormFactor.Custom
  2706. p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2707. p40.BottomSurface = Enum.SurfaceType.Smooth
  2708. p40.TopSurface = Enum.SurfaceType.Smooth
  2709. b40 = Instance.new("SpecialMesh", p40)
  2710. b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2711. b40.TextureId = ""
  2712. b40.MeshType = Enum.MeshType.FileMesh
  2713. b40.Name = "Mesh"
  2714. b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2715. p41 = Instance.new("Part", m2)
  2716. p41.BrickColor = BrickColor.new("Really red")
  2717. p41.Material = Enum.Material.SmoothPlastic
  2718. p41.Reflectance = 0.30000001192093
  2719. p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2720. p41.CanCollide = false
  2721. p41.FormFactor = Enum.FormFactor.Custom
  2722. p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2723. p41.BottomSurface = Enum.SurfaceType.Smooth
  2724. p41.TopSurface = Enum.SurfaceType.Smooth
  2725. b41 = Instance.new("SpecialMesh", p41)
  2726. b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2727. b41.TextureId = ""
  2728. b41.MeshType = Enum.MeshType.FileMesh
  2729. b41.Name = "Mesh"
  2730. b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2731. p42 = Instance.new("Part", m2)
  2732. p42.BrickColor = BrickColor.new("Really red")
  2733. p42.Material = Enum.Material.SmoothPlastic
  2734. p42.Reflectance = 0.30000001192093
  2735. p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683)
  2736. p42.CanCollide = false
  2737. p42.FormFactor = Enum.FormFactor.Custom
  2738. p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2739. p42.BottomSurface = Enum.SurfaceType.Smooth
  2740. p42.TopSurface = Enum.SurfaceType.Smooth
  2741. b42 = Instance.new("SpecialMesh", p42)
  2742. b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2743. b42.TextureId = ""
  2744. b42.MeshType = Enum.MeshType.FileMesh
  2745. b42.Name = "Mesh"
  2746. b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2747. p43 = Instance.new("Part", m2)
  2748. p43.BrickColor = BrickColor.new("Really red")
  2749. p43.Material = Enum.Material.SmoothPlastic
  2750. p43.Reflectance = 0.30000001192093
  2751. p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683)
  2752. p43.CanCollide = false
  2753. p43.FormFactor = Enum.FormFactor.Custom
  2754. p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2755. p43.BottomSurface = Enum.SurfaceType.Smooth
  2756. p43.TopSurface = Enum.SurfaceType.Smooth
  2757. b43 = Instance.new("SpecialMesh", p43)
  2758. b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2759. b43.TextureId = ""
  2760. b43.MeshType = Enum.MeshType.FileMesh
  2761. b43.Name = "Mesh"
  2762. b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2763. p44 = Instance.new("Part", m2)
  2764. p44.BrickColor = BrickColor.new("Really red")
  2765. p44.Material = Enum.Material.SmoothPlastic
  2766. p44.Reflectance = 0.30000001192093
  2767. p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683)
  2768. p44.CanCollide = false
  2769. p44.FormFactor = Enum.FormFactor.Custom
  2770. p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2771. p44.BottomSurface = Enum.SurfaceType.Smooth
  2772. p44.TopSurface = Enum.SurfaceType.Smooth
  2773. b44 = Instance.new("SpecialMesh", p44)
  2774. b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2775. b44.TextureId = ""
  2776. b44.MeshType = Enum.MeshType.FileMesh
  2777. b44.Name = "Mesh"
  2778. b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2779. p45 = Instance.new("Part", m2)
  2780. p45.BrickColor = BrickColor.new("Really red")
  2781. p45.Material = Enum.Material.SmoothPlastic
  2782. p45.Reflectance = 0.30000001192093
  2783. p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683)
  2784. p45.CanCollide = false
  2785. p45.FormFactor = Enum.FormFactor.Custom
  2786. p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2787. p45.BottomSurface = Enum.SurfaceType.Smooth
  2788. p45.TopSurface = Enum.SurfaceType.Smooth
  2789. b45 = Instance.new("SpecialMesh", p45)
  2790. b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2791. b45.TextureId = ""
  2792. b45.MeshType = Enum.MeshType.FileMesh
  2793. b45.Name = "Mesh"
  2794. b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2795. p46 = Instance.new("Part", m2)
  2796. p46.BrickColor = BrickColor.new("Really red")
  2797. p46.Material = Enum.Material.SmoothPlastic
  2798. p46.Reflectance = 0.30000001192093
  2799. p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683)
  2800. p46.CanCollide = false
  2801. p46.FormFactor = Enum.FormFactor.Custom
  2802. p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2803. p46.BottomSurface = Enum.SurfaceType.Smooth
  2804. p46.TopSurface = Enum.SurfaceType.Smooth
  2805. b46 = Instance.new("SpecialMesh", p46)
  2806. b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2807. b46.TextureId = ""
  2808. b46.MeshType = Enum.MeshType.FileMesh
  2809. b46.Name = "Mesh"
  2810. b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2811. p47 = Instance.new("Part", m2)
  2812. p47.BrickColor = BrickColor.new("Really red")
  2813. p47.Material = Enum.Material.SmoothPlastic
  2814. p47.Reflectance = 0.30000001192093
  2815. p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683)
  2816. p47.CanCollide = false
  2817. p47.FormFactor = Enum.FormFactor.Custom
  2818. p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2819. p47.BottomSurface = Enum.SurfaceType.Smooth
  2820. p47.TopSurface = Enum.SurfaceType.Smooth
  2821. b47 = Instance.new("SpecialMesh", p47)
  2822. b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2823. b47.TextureId = ""
  2824. b47.MeshType = Enum.MeshType.FileMesh
  2825. b47.Name = "Mesh"
  2826. b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2827. p48 = Instance.new("Part", m2)
  2828. p48.BrickColor = BrickColor.new("Really red")
  2829. p48.Material = Enum.Material.Neon
  2830. p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223)
  2831. p48.FormFactor = Enum.FormFactor.Custom
  2832. p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2833. p48.BottomSurface = Enum.SurfaceType.Smooth
  2834. p48.TopSurface = Enum.SurfaceType.Smooth
  2835. b48 = Instance.new("SpecialMesh", p48)
  2836. b48.MeshType = Enum.MeshType.Sphere
  2837. b48.Name = "Mesh"
  2838. p49 = Instance.new("Part", m2)
  2839. p49.BrickColor = BrickColor.new("Really red")
  2840. p49.Material = Enum.Material.SmoothPlastic
  2841. p49.Reflectance = 0.30000001192093
  2842. p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2843. p49.CanCollide = false
  2844. p49.FormFactor = Enum.FormFactor.Custom
  2845. p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2846. p49.BottomSurface = Enum.SurfaceType.Smooth
  2847. p49.TopSurface = Enum.SurfaceType.Smooth
  2848. b49 = Instance.new("SpecialMesh", p49)
  2849. b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2850. b49.TextureId = ""
  2851. b49.MeshType = Enum.MeshType.FileMesh
  2852. b49.Name = "Mesh"
  2853. b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2854. p50 = Instance.new("Part", m2)
  2855. p50.BrickColor = BrickColor.new("Really red")
  2856. p50.Material = Enum.Material.SmoothPlastic
  2857. p50.Reflectance = 0.30000001192093
  2858. p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2859. p50.CanCollide = false
  2860. p50.FormFactor = Enum.FormFactor.Custom
  2861. p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2862. p50.BottomSurface = Enum.SurfaceType.Smooth
  2863. p50.TopSurface = Enum.SurfaceType.Smooth
  2864. b50 = Instance.new("SpecialMesh", p50)
  2865. b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2866. b50.TextureId = ""
  2867. b50.MeshType = Enum.MeshType.FileMesh
  2868. b50.Name = "Mesh"
  2869. b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2870. p51 = Instance.new("Part", m2)
  2871. p51.BrickColor = BrickColor.new("Really red")
  2872. p51.Material = Enum.Material.SmoothPlastic
  2873. p51.Reflectance = 0.30000001192093
  2874. p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2875. p51.CanCollide = false
  2876. p51.FormFactor = Enum.FormFactor.Custom
  2877. p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2878. p51.BottomSurface = Enum.SurfaceType.Smooth
  2879. p51.TopSurface = Enum.SurfaceType.Smooth
  2880. b51 = Instance.new("SpecialMesh", p51)
  2881. b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2882. b51.TextureId = ""
  2883. b51.MeshType = Enum.MeshType.FileMesh
  2884. b51.Name = "Mesh"
  2885. b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2886. p52 = Instance.new("Part", m2)
  2887. p52.BrickColor = BrickColor.new("Really red")
  2888. p52.Material = Enum.Material.Neon
  2889. p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103)
  2890. p52.FormFactor = Enum.FormFactor.Custom
  2891. p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2892. p52.BottomSurface = Enum.SurfaceType.Smooth
  2893. p52.TopSurface = Enum.SurfaceType.Smooth
  2894. b52 = Instance.new("SpecialMesh", p52)
  2895. b52.MeshType = Enum.MeshType.Sphere
  2896. b52.Name = "Mesh"
  2897. p53 = Instance.new("Part", m2)
  2898. p53.BrickColor = BrickColor.new("Really red")
  2899. p53.Material = Enum.Material.Neon
  2900. p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103)
  2901. p53.FormFactor = Enum.FormFactor.Custom
  2902. p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2903. p53.BottomSurface = Enum.SurfaceType.Smooth
  2904. p53.TopSurface = Enum.SurfaceType.Smooth
  2905. b53 = Instance.new("SpecialMesh", p53)
  2906. b53.MeshType = Enum.MeshType.Sphere
  2907. b53.Name = "Mesh"
  2908. p54 = Instance.new("Part", m2)
  2909. p54.BrickColor = BrickColor.new("Really red")
  2910. p54.Material = Enum.Material.Neon
  2911. p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103)
  2912. p54.FormFactor = Enum.FormFactor.Custom
  2913. p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2914. p54.BottomSurface = Enum.SurfaceType.Smooth
  2915. p54.TopSurface = Enum.SurfaceType.Smooth
  2916. b54 = Instance.new("SpecialMesh", p54)
  2917. b54.MeshType = Enum.MeshType.Sphere
  2918. b54.Name = "Mesh"
  2919. p55 = Instance.new("Part", m2)
  2920. p55.BrickColor = BrickColor.new("Really red")
  2921. p55.Material = Enum.Material.Neon
  2922. p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984)
  2923. p55.FormFactor = Enum.FormFactor.Custom
  2924. p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2925. p55.BottomSurface = Enum.SurfaceType.Smooth
  2926. p55.TopSurface = Enum.SurfaceType.Smooth
  2927. b55 = Instance.new("SpecialMesh", p55)
  2928. b55.MeshType = Enum.MeshType.Sphere
  2929. b55.Name = "Mesh"
  2930. p56 = Instance.new("Part", m2)
  2931. p56.BrickColor = BrickColor.new("Really red")
  2932. p56.Material = Enum.Material.SmoothPlastic
  2933. p56.Reflectance = 0.30000001192093
  2934. p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2935. p56.CanCollide = false
  2936. p56.FormFactor = Enum.FormFactor.Custom
  2937. p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2938. p56.BottomSurface = Enum.SurfaceType.Smooth
  2939. p56.TopSurface = Enum.SurfaceType.Smooth
  2940. b56 = Instance.new("SpecialMesh", p56)
  2941. b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2942. b56.TextureId = ""
  2943. b56.MeshType = Enum.MeshType.FileMesh
  2944. b56.Name = "Mesh"
  2945. b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2946. p57 = Instance.new("Part", m2)
  2947. p57.BrickColor = BrickColor.new("Really red")
  2948. p57.Material = Enum.Material.SmoothPlastic
  2949. p57.Reflectance = 0.30000001192093
  2950. p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2951. p57.CanCollide = false
  2952. p57.FormFactor = Enum.FormFactor.Custom
  2953. p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2954. p57.BottomSurface = Enum.SurfaceType.Smooth
  2955. p57.TopSurface = Enum.SurfaceType.Smooth
  2956. b57 = Instance.new("SpecialMesh", p57)
  2957. b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2958. b57.TextureId = ""
  2959. b57.MeshType = Enum.MeshType.FileMesh
  2960. b57.Name = "Mesh"
  2961. b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2962. p58 = Instance.new("Part", m2)
  2963. p58.BrickColor = BrickColor.new("Really red")
  2964. p58.Material = Enum.Material.SmoothPlastic
  2965. p58.Reflectance = 0.30000001192093
  2966. p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2967. p58.CanCollide = false
  2968. p58.FormFactor = Enum.FormFactor.Custom
  2969. p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2970. p58.BottomSurface = Enum.SurfaceType.Smooth
  2971. p58.TopSurface = Enum.SurfaceType.Smooth
  2972. b58 = Instance.new("SpecialMesh", p58)
  2973. b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2974. b58.TextureId = ""
  2975. b58.MeshType = Enum.MeshType.FileMesh
  2976. b58.Name = "Mesh"
  2977. b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2978. p59 = Instance.new("Part", m2)
  2979. p59.BrickColor = BrickColor.new("Really red")
  2980. p59.Material = Enum.Material.SmoothPlastic
  2981. p59.Reflectance = 0.30000001192093
  2982. p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478)
  2983. p59.CanCollide = false
  2984. p59.FormFactor = Enum.FormFactor.Custom
  2985. p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2986. p59.BottomSurface = Enum.SurfaceType.Smooth
  2987. p59.TopSurface = Enum.SurfaceType.Smooth
  2988. b59 = Instance.new("SpecialMesh", p59)
  2989. b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2990. b59.TextureId = ""
  2991. b59.MeshType = Enum.MeshType.FileMesh
  2992. b59.Name = "Mesh"
  2993. b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2994. p60 = Instance.new("Part", m2)
  2995. p60.BrickColor = BrickColor.new("Really red")
  2996. p60.Material = Enum.Material.SmoothPlastic
  2997. p60.Reflectance = 0.30000001192093
  2998. p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478)
  2999. p60.CanCollide = false
  3000. p60.FormFactor = Enum.FormFactor.Custom
  3001. p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3002. p60.BottomSurface = Enum.SurfaceType.Smooth
  3003. p60.TopSurface = Enum.SurfaceType.Smooth
  3004. b60 = Instance.new("SpecialMesh", p60)
  3005. b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3006. b60.TextureId = ""
  3007. b60.MeshType = Enum.MeshType.FileMesh
  3008. b60.Name = "Mesh"
  3009. b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3010. p61 = Instance.new("Part", m2)
  3011. p61.BrickColor = BrickColor.new("Really red")
  3012. p61.Material = Enum.Material.SmoothPlastic
  3013. p61.Reflectance = 0.30000001192093
  3014. p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478)
  3015. p61.CanCollide = false
  3016. p61.FormFactor = Enum.FormFactor.Custom
  3017. p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3018. p61.BottomSurface = Enum.SurfaceType.Smooth
  3019. p61.TopSurface = Enum.SurfaceType.Smooth
  3020. b61 = Instance.new("SpecialMesh", p61)
  3021. b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3022. b61.TextureId = ""
  3023. b61.MeshType = Enum.MeshType.FileMesh
  3024. b61.Name = "Mesh"
  3025. b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3026. p62 = Instance.new("Part", m2)
  3027. p62.BrickColor = BrickColor.new("Really red")
  3028. p62.Material = Enum.Material.SmoothPlastic
  3029. p62.Reflectance = 0.30000001192093
  3030. p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478)
  3031. p62.CanCollide = false
  3032. p62.FormFactor = Enum.FormFactor.Custom
  3033. p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3034. p62.BottomSurface = Enum.SurfaceType.Smooth
  3035. p62.TopSurface = Enum.SurfaceType.Smooth
  3036. b62 = Instance.new("SpecialMesh", p62)
  3037. b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3038. b62.TextureId = ""
  3039. b62.MeshType = Enum.MeshType.FileMesh
  3040. b62.Name = "Mesh"
  3041. b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3042. p63 = Instance.new("Part", m2)
  3043. p63.BrickColor = BrickColor.new("Really red")
  3044. p63.Material = Enum.Material.SmoothPlastic
  3045. p63.Reflectance = 0.30000001192093
  3046. p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478)
  3047. p63.CanCollide = false
  3048. p63.FormFactor = Enum.FormFactor.Custom
  3049. p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3050. p63.BottomSurface = Enum.SurfaceType.Smooth
  3051. p63.TopSurface = Enum.SurfaceType.Smooth
  3052. b63 = Instance.new("SpecialMesh", p63)
  3053. b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3054. b63.TextureId = ""
  3055. b63.MeshType = Enum.MeshType.FileMesh
  3056. b63.Name = "Mesh"
  3057. b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3058. p64 = Instance.new("Part", m2)
  3059. p64.BrickColor = BrickColor.new("Really red")
  3060. p64.Material = Enum.Material.SmoothPlastic
  3061. p64.Reflectance = 0.30000001192093
  3062. p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478)
  3063. p64.CanCollide = false
  3064. p64.FormFactor = Enum.FormFactor.Custom
  3065. p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3066. p64.BottomSurface = Enum.SurfaceType.Smooth
  3067. p64.TopSurface = Enum.SurfaceType.Smooth
  3068. b64 = Instance.new("SpecialMesh", p64)
  3069. b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3070. b64.TextureId = ""
  3071. b64.MeshType = Enum.MeshType.FileMesh
  3072. b64.Name = "Mesh"
  3073. b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3074. p65 = Instance.new("Part", m2)
  3075. p65.BrickColor = BrickColor.new("Medium stone grey")
  3076. p65.Transparency = 1
  3077. p65.Name = "TorsoPart"
  3078. p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093)
  3079. p65.FormFactor = Enum.FormFactor.Symmetric
  3080. p65.Size = Vector3.new(4, 4, 2)
  3081. w1 = Instance.new("Weld", p1)
  3082. w1.Name = "Part_Weld"
  3083. w1.Part0 = p1
  3084. w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117)
  3085. w1.Part1 = p2
  3086. w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3087. w2 = Instance.new("Weld", p2)
  3088. w2.Name = "Part_Weld"
  3089. w2.Part0 = p2
  3090. w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3091. w2.Part1 = p3
  3092. w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3093. w3 = Instance.new("Weld", p3)
  3094. w3.Name = "Part_Weld"
  3095. w3.Part0 = p3
  3096. w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3097. w3.Part1 = p4
  3098. w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3099. w4 = Instance.new("Weld", p4)
  3100. w4.Name = "Part_Weld"
  3101. w4.Part0 = p4
  3102. w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3103. w4.Part1 = p5
  3104. w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3105. w5 = Instance.new("Weld", p5)
  3106. w5.Name = "Part_Weld"
  3107. w5.Part0 = p5
  3108. w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3109. w5.Part1 = p6
  3110. w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3111. w6 = Instance.new("Weld", p6)
  3112. w6.Name = "Part_Weld"
  3113. w6.Part0 = p6
  3114. w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3115. w6.Part1 = p7
  3116. w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3117. w7 = Instance.new("Weld", p7)
  3118. w7.Name = "Part_Weld"
  3119. w7.Part0 = p7
  3120. w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3121. w7.Part1 = p8
  3122. w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3123. w8 = Instance.new("Weld", p8)
  3124. w8.Name = "Part_Weld"
  3125. w8.Part0 = p8
  3126. w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  3127. w8.Part1 = p9
  3128. w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3129. w9 = Instance.new("Weld", p9)
  3130. w9.Name = "Part_Weld"
  3131. w9.Part0 = p9
  3132. w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3133. w9.Part1 = p10
  3134. w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3135. w10 = Instance.new("Weld", p10)
  3136. w10.Name = "Part_Weld"
  3137. w10.Part0 = p10
  3138. w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3139. w10.Part1 = p11
  3140. w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3141. w11 = Instance.new("Weld", p11)
  3142. w11.Name = "Part_Weld"
  3143. w11.Part0 = p11
  3144. w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3145. w11.Part1 = p12
  3146. w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3147. w12 = Instance.new("Weld", p12)
  3148. w12.Name = "Part_Weld"
  3149. w12.Part0 = p12
  3150. w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3151. w12.Part1 = p13
  3152. w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3153. w13 = Instance.new("Weld", p13)
  3154. w13.Name = "Part_Weld"
  3155. w13.Part0 = p13
  3156. w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3157. w13.Part1 = p14
  3158. w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3159. w14 = Instance.new("Weld", p14)
  3160. w14.Name = "Part_Weld"
  3161. w14.Part0 = p14
  3162. w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3163. w14.Part1 = p15
  3164. w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3165. w15 = Instance.new("Weld", p15)
  3166. w15.Name = "Part_Weld"
  3167. w15.Part0 = p15
  3168. w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3169. w15.Part1 = p16
  3170. w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3171. w16 = Instance.new("Weld", p16)
  3172. w16.Name = "Part_Weld"
  3173. w16.Part0 = p16
  3174. w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3175. w16.Part1 = p17
  3176. w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3177. w17 = Instance.new("Weld", p17)
  3178. w17.Name = "Part_Weld"
  3179. w17.Part0 = p17
  3180. w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3181. w17.Part1 = p18
  3182. w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3183. w18 = Instance.new("Weld", p18)
  3184. w18.Name = "Part_Weld"
  3185. w18.Part0 = p18
  3186. w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3187. w18.Part1 = p19
  3188. w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3189. w19 = Instance.new("Weld", p19)
  3190. w19.Name = "Part_Weld"
  3191. w19.Part0 = p19
  3192. w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3193. w19.Part1 = p20
  3194. w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3195. w20 = Instance.new("Weld", p20)
  3196. w20.Name = "Part_Weld"
  3197. w20.Part0 = p20
  3198. w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3199. w20.Part1 = p21
  3200. w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3201. w21 = Instance.new("Weld", p21)
  3202. w21.Name = "Part_Weld"
  3203. w21.Part0 = p21
  3204. w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3205. w21.Part1 = p22
  3206. w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3207. w22 = Instance.new("Weld", p22)
  3208. w22.Name = "Part_Weld"
  3209. w22.Part0 = p22
  3210. w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3211. w22.Part1 = p23
  3212. w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3213. w23 = Instance.new("Weld", p23)
  3214. w23.Name = "Part_Weld"
  3215. w23.Part0 = p23
  3216. w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3217. w23.Part1 = p24
  3218. w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3219. w24 = Instance.new("Weld", p24)
  3220. w24.Name = "Part_Weld"
  3221. w24.Part0 = p24
  3222. w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3223. w24.Part1 = p25
  3224. w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3225. w25 = Instance.new("Weld", p25)
  3226. w25.Name = "Part_Weld"
  3227. w25.Part0 = p25
  3228. w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3229. w25.Part1 = p26
  3230. w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3231. w26 = Instance.new("Weld", p26)
  3232. w26.Name = "Part_Weld"
  3233. w26.Part0 = p26
  3234. w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  3235. w26.Part1 = p27
  3236. w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3237. w27 = Instance.new("Weld", p27)
  3238. w27.Name = "Part_Weld"
  3239. w27.Part0 = p27
  3240. w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3241. w27.Part1 = p28
  3242. w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3243. w28 = Instance.new("Weld", p28)
  3244. w28.Name = "Part_Weld"
  3245. w28.Part0 = p28
  3246. w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3247. w28.Part1 = p29
  3248. w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  3249. w29 = Instance.new("Weld", p29)
  3250. w29.Name = "Part_Weld"
  3251. w29.Part0 = p29
  3252. w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  3253. w29.Part1 = p30
  3254. w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3255. w30 = Instance.new("Weld", p30)
  3256. w30.Name = "Part_Weld"
  3257. w30.Part0 = p30
  3258. w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3259. w30.Part1 = p31
  3260. w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3261. w31 = Instance.new("Weld", p31)
  3262. w31.Name = "Part_Weld"
  3263. w31.Part0 = p31
  3264. w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  3265. w31.Part1 = p32
  3266. w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3267. w32 = Instance.new("Weld", p32)
  3268. w32.Name = "Part_Weld"
  3269. w32.Part0 = p32
  3270. w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3271. w32.Part1 = p33
  3272. w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  3273. w33 = Instance.new("Weld", p33)
  3274. w33.Name = "Part_Weld"
  3275. w33.Part0 = p33
  3276. w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  3277. w33.Part1 = p34
  3278. w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3279. w34 = Instance.new("Weld", p34)
  3280. w34.Name = "Part_Weld"
  3281. w34.Part0 = p34
  3282. w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3283. w34.Part1 = p35
  3284. w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3285. w35 = Instance.new("Weld", p35)
  3286. w35.Name = "Part_Weld"
  3287. w35.Part0 = p35
  3288. w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  3289. w35.Part1 = p36
  3290. w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3291. w36 = Instance.new("Weld", p36)
  3292. w36.Name = "Part_Weld"
  3293. w36.Part0 = p36
  3294. w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  3295. w36.Part1 = p37
  3296. w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  3297. w37 = Instance.new("Weld", p37)
  3298. w37.Name = "Part_Weld"
  3299. w37.Part0 = p37
  3300. w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  3301. w37.Part1 = p38
  3302. w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  3303. w38 = Instance.new("Weld", p38)
  3304. w38.Name = "Part_Weld"
  3305. w38.Part0 = p38
  3306. w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  3307. w38.Part1 = p39
  3308. w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3309. w39 = Instance.new("Weld", p39)
  3310. w39.Name = "Part_Weld"
  3311. w39.Part0 = p39
  3312. w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3313. w39.Part1 = p40
  3314. w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3315. w40 = Instance.new("Weld", p40)
  3316. w40.Name = "Part_Weld"
  3317. w40.Part0 = p40
  3318. w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3319. w40.Part1 = p41
  3320. w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3321. w41 = Instance.new("Weld", p41)
  3322. w41.Name = "Part_Weld"
  3323. w41.Part0 = p41
  3324. w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3325. w41.Part1 = p42
  3326. w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3327. w42 = Instance.new("Weld", p42)
  3328. w42.Name = "Part_Weld"
  3329. w42.Part0 = p42
  3330. w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3331. w42.Part1 = p43
  3332. w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3333. w43 = Instance.new("Weld", p43)
  3334. w43.Name = "Part_Weld"
  3335. w43.Part0 = p43
  3336. w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3337. w43.Part1 = p44
  3338. w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3339. w44 = Instance.new("Weld", p44)
  3340. w44.Name = "Part_Weld"
  3341. w44.Part0 = p44
  3342. w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3343. w44.Part1 = p45
  3344. w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3345. w45 = Instance.new("Weld", p45)
  3346. w45.Name = "Part_Weld"
  3347. w45.Part0 = p45
  3348. w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3349. w45.Part1 = p46
  3350. w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3351. w46 = Instance.new("Weld", p46)
  3352. w46.Name = "Part_Weld"
  3353. w46.Part0 = p46
  3354. w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3355. w46.Part1 = p47
  3356. w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3357. w47 = Instance.new("Weld", p47)
  3358. w47.Name = "Part_Weld"
  3359. w47.Part0 = p47
  3360. w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  3361. w47.Part1 = p48
  3362. w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  3363. w48 = Instance.new("Weld", p48)
  3364. w48.Name = "Part_Weld"
  3365. w48.Part0 = p48
  3366. w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  3367. w48.Part1 = p49
  3368. w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3369. w49 = Instance.new("Weld", p49)
  3370. w49.Name = "Part_Weld"
  3371. w49.Part0 = p49
  3372. w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3373. w49.Part1 = p50
  3374. w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3375. w50 = Instance.new("Weld", p50)
  3376. w50.Name = "Part_Weld"
  3377. w50.Part0 = p50
  3378. w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3379. w50.Part1 = p51
  3380. w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3381. w51 = Instance.new("Weld", p51)
  3382. w51.Name = "Part_Weld"
  3383. w51.Part0 = p51
  3384. w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3385. w51.Part1 = p52
  3386. w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  3387. w52 = Instance.new("Weld", p52)
  3388. w52.Name = "Part_Weld"
  3389. w52.Part0 = p52
  3390. w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  3391. w52.Part1 = p53
  3392. w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  3393. w53 = Instance.new("Weld", p53)
  3394. w53.Name = "Part_Weld"
  3395. w53.Part0 = p53
  3396. w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  3397. w53.Part1 = p54
  3398. w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  3399. w54 = Instance.new("Weld", p54)
  3400. w54.Name = "Part_Weld"
  3401. w54.Part0 = p54
  3402. w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  3403. w54.Part1 = p55
  3404. w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  3405. w55 = Instance.new("Weld", p55)
  3406. w55.Name = "Part_Weld"
  3407. w55.Part0 = p55
  3408. w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  3409. w55.Part1 = p56
  3410. w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3411. w56 = Instance.new("Weld", p56)
  3412. w56.Name = "Part_Weld"
  3413. w56.Part0 = p56
  3414. w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3415. w56.Part1 = p57
  3416. w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3417. w57 = Instance.new("Weld", p57)
  3418. w57.Name = "Part_Weld"
  3419. w57.Part0 = p57
  3420. w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3421. w57.Part1 = p58
  3422. w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3423. w58 = Instance.new("Weld", p58)
  3424. w58.Name = "Part_Weld"
  3425. w58.Part0 = p58
  3426. w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3427. w58.Part1 = p59
  3428. w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3429. w59 = Instance.new("Weld", p59)
  3430. w59.Name = "Part_Weld"
  3431. w59.Part0 = p59
  3432. w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3433. w59.Part1 = p60
  3434. w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3435. w60 = Instance.new("Weld", p60)
  3436. w60.Name = "Part_Weld"
  3437. w60.Part0 = p60
  3438. w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3439. w60.Part1 = p61
  3440. w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3441. w61 = Instance.new("Weld", p61)
  3442. w61.Name = "Part_Weld"
  3443. w61.Part0 = p61
  3444. w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3445. w61.Part1 = p62
  3446. w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3447. w62 = Instance.new("Weld", p62)
  3448. w62.Name = "Part_Weld"
  3449. w62.Part0 = p62
  3450. w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3451. w62.Part1 = p63
  3452. w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3453. w63 = Instance.new("Weld", p63)
  3454. w63.Name = "Part_Weld"
  3455. w63.Part0 = p63
  3456. w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3457. w63.Part1 = p64
  3458. w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3459. w64 = Instance.new("Weld", p64)
  3460. w64.Name = "TorsoPart_Weld"
  3461. w64.Part0 = p64
  3462. w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3463. w64.Part1 = p65
  3464. w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3465. m2.Parent = char
  3466. m2:MakeJoints()
  3467. ----------------------------------------------------
  3468. local cor2 = Instance.new("Part", char.Wings)
  3469. cor2.Name = "Thingy"
  3470. cor2.Locked = true
  3471. cor2.BottomSurface = 0
  3472. cor2.CanCollide = false
  3473. cor2.Size = Vector3.new(0.2, 0.2, 0.2)
  3474. cor2.Transparency = 1
  3475. cor2.TopSurface = 0
  3476. corw2 = Instance.new("Weld", cor2)
  3477. corw2.Part0 = torso
  3478. corw2.Part1 = cor2
  3479. corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  3480. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3481. weld2 = Instance.new("Weld", char.Wings)
  3482. weld2.Part0 = cor2
  3483. weld2.Part1 = char.Wings.TorsoPart
  3484. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3485. ----------------------------------------------------
  3486. local animpose = "Idle"
  3487. local lastanimpose = "Idle"
  3488. local sine = 0
  3489. local change = 1
  3490. local val = 0
  3491. local ffing = false
  3492. local och = 0
  3493. ----------------------------------------------------
  3494. wPart = function(x,y,z,color,tr,cc,an,parent)
  3495. local wp = Instance.new('WedgePart',parent or Weapon)
  3496. wp.formFactor = 'Custom'
  3497. wp.Size = Vector3.new(x,y,z)
  3498. wp.BrickColor = BrickColor.new(color)
  3499. wp.CanCollide = cc
  3500. wp.Transparency = tr
  3501. wp.Anchored = an
  3502. wp.TopSurface,wp.BottomSurface = 0,0
  3503. return wp
  3504. end
  3505.  
  3506. Mesh = function(par,num,x,y,z)
  3507. local msh = _
  3508. if num == 1 then
  3509. msh = Instance.new("CylinderMesh",par)
  3510. elseif num == 2 then
  3511. msh = Instance.new("SpecialMesh",par)
  3512. msh.MeshType = 3
  3513. elseif num == 3 then
  3514. msh = Instance.new("BlockMesh",par)
  3515. elseif num == 4 then
  3516. msh = Instance.new("SpecialMesh",par)
  3517. msh.MeshType = "Torso"
  3518. elseif type(num) == 'string' then
  3519. msh = Instance.new("SpecialMesh",par)
  3520. msh.MeshId = num
  3521. end
  3522. msh.Scale = Vector3.new(x,y,z)
  3523. return msh
  3524. end
  3525.  
  3526. local function CFrameFromTopBack(at, top, back)
  3527. local right = top:Cross(back)
  3528. return CFrame.new(at.x, at.y, at.z,
  3529. right.x, top.x, back.x,
  3530. right.y, top.y, back.y,
  3531. right.z, top.z, back.z)
  3532. end
  3533.  
  3534. function Triangle(a, b, c)
  3535. local edg1 = (c-a):Dot((b-a).unit)
  3536. local edg2 = (a-b):Dot((c-b).unit)
  3537. local edg3 = (b-c):Dot((a-c).unit)
  3538. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  3539. a, b, c = a, b, c
  3540. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  3541. a, b, c = b, c, a
  3542. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  3543. a, b, c = c, a, b
  3544. else
  3545. print("unreachable")
  3546. end
  3547. local len1 = (c-a):Dot((b-a).unit)
  3548. local len2 = (b-a).magnitude - len1
  3549. local width = (a + (b-a).unit*len1 - c).magnitude
  3550. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  3551. local list = {}
  3552. if len1 > 0.01 then
  3553. local w1 = wPart(0,0,0,'Really red',0.5,false,true,char)
  3554. local sz = Vector3.new(0.2, width, len1)
  3555. w1.Size = sz
  3556. local sp = Mesh(w1,2,0,0,0)
  3557. sp.MeshType='Wedge'
  3558. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  3559. w1:BreakJoints()
  3560. w1.Anchored = true
  3561. w1.Transparency = 0.7
  3562. Spawn(function()
  3563. for i=0,1,0.1 do
  3564. wait()
  3565. w1.Transparency=w1.Transparency+0.03
  3566. end
  3567. end)
  3568. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  3569. table.insert(list,w1)
  3570. end
  3571. if len2 > 0.01 then
  3572. local w2 = wPart(0,0,0,'Really red',0.5,false,true,char)
  3573. local sz = Vector3.new(0.2, width, len2)
  3574. w2.Size = sz
  3575. local sp = Mesh(w2,2,0,0,0)
  3576. sp.MeshType='Wedge'
  3577. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  3578. w2:BreakJoints()
  3579. w2.Anchored = true
  3580. w2.Transparency = 0.7
  3581. Spawn(function()
  3582. for i=0,1,0.1 do
  3583. wait()
  3584. w2.Transparency=w2.Transparency+0.03
  3585. end
  3586. end)
  3587. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  3588. table.insert(list,w2)
  3589. end
  3590. return unpack(list)
  3591. end
  3592.  
  3593. function trail(p,t,h)
  3594. Spawn(function()
  3595. local blcf = p.CFrame
  3596. local scfr = blcf
  3597. for i=1,t do
  3598. local blcf = p.CFrame
  3599. if scfr and (p.Position-scfr.p).magnitude > .1 then
  3600. 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)
  3601. if a then game.Debris:AddItem(a,1) end
  3602. if b then game.Debris:AddItem(b,1) end
  3603. 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)
  3604. if a then game.Debris:AddItem(a,1) end
  3605. if b then game.Debris:AddItem(b,1) end
  3606. scfr = blcf
  3607. elseif not scfr then
  3608. scfr = blcf
  3609. end
  3610. game:service'RunService'.RenderStepped:wait()
  3611. end
  3612. scfr=nil
  3613. end)
  3614. end
  3615. trail(char.Sword.Blade,1e1000,5)
  3616. ----------------------------------------------------
  3617. char.Sword.Blade.Touched:connect(function(ht)
  3618. hit = ht.Parent
  3619. if ht and hit:IsA("Model") then
  3620. if hit:FindFirstChild("Humanoid") then
  3621. if hit.Name ~= p.Name then
  3622. if Debounces.Slashing == true and Debounces.Slashed == false then
  3623. Debounces.Slashed = true
  3624. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,10000))
  3625. wait(.3)
  3626. Debounces.Slashed = false
  3627. end
  3628. end
  3629. end
  3630. elseif ht and hit:IsA("Hat") then
  3631. if hit.Parent.Name ~= p.Name then
  3632. if hit.Parent:FindFirstChild("Humanoid") then
  3633. if Debounces.Slashing == true and Debounces.Slashed == false then
  3634. Debounces.Slashed = true
  3635. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,1000))
  3636. wait(.3)
  3637. Debounces.Slashed = false
  3638. end
  3639. end
  3640. end
  3641. end
  3642. end)
  3643.  
  3644. ----------------------------------------------------
  3645. function attackone()
  3646. for i = 1, 10 do
  3647. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.6, 0.9, -0.62)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(-60)), 0.56)
  3648. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0.2)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.5)
  3649. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(10),math.rad(-46),0), 0.47)
  3650. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-8), math.rad(46), 0), 0.55)
  3651. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.43)
  3652. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.43)
  3653. if Debounces.on == false then break end
  3654. rs:wait()
  3655. end
  3656. --trail(char.Sword.Blade,5,6)
  3657. Debounces.Slashing = true
  3658. z = Instance.new("Sound", hed)
  3659. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3660. z.Pitch = ptz[math.random(1,#ptz)]
  3661. z.Volume = 1
  3662. wait(.01)
  3663. z:Play()
  3664. for i = 1, 10 do
  3665. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, .3)*CFrame.Angles(math.rad(-10),math.rad(-15),math.rad(50)), 0.67)
  3666. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.7, -0.3)*CFrame.Angles(math.rad(80),math.rad(-10),math.rad(-20)), 0.58)
  3667. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(40),0), 0.54)
  3668. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.66)
  3669. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
  3670. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
  3671. if Debounces.on == false then break end
  3672. rs:wait()
  3673. end
  3674. Debounces.Slashing = false
  3675. end
  3676. ----------------------------------------------------
  3677. function attacktwo()
  3678. for i = 1, 5 do
  3679. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.25, 0.9, 0)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(60)), 0.8)
  3680. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.17)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.8)
  3681. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(-10),math.rad(46),0), 0.8)
  3682. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(-46), 0), 0.8)
  3683. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.8)
  3684. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.8)
  3685. if Debounces.on == false then break end
  3686. rs:wait()
  3687. end
  3688. --trail(char.Sword.Blade,5,6)
  3689. Debounces.Slashing = true
  3690. z = Instance.new("Sound", hed)
  3691. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3692. z.Pitch = ptz[math.random(1,#ptz)]
  3693. z.Volume = 1
  3694. wait(.01)
  3695. z:Play()
  3696. for i = 1, 10 do
  3697. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8, 0.5, -0.35)*CFrame.Angles(math.rad(0),math.rad(-15),math.rad(-50)), 0.77)
  3698. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.6, -0.35)*CFrame.Angles(math.rad(-50),math.rad(10),math.rad(-20)), 0.58)
  3699. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.54)
  3700. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-9), math.rad(40), 0), 0.66)
  3701. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
  3702. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
  3703. if Debounces.on == false then break end
  3704. rs:wait()
  3705. end
  3706. Debounces.Slashing = false
  3707. end
  3708. ----------------------------------------------------
  3709. function attackthree()
  3710. for i = 1, 10 do
  3711. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
  3712. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
  3713. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
  3714. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3715. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
  3716. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
  3717. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3718. if Debounces.on == false then
  3719. break
  3720. end
  3721. rs:wait()
  3722. end
  3723. --trail(char.Sword.Blade,5,6)
  3724. Debounces.Slashing = true
  3725. z = Instance.new("Sound", hed)
  3726. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3727. z.Pitch = ptz[math.random(1,#ptz)]
  3728. z.Volume = 1
  3729. wait(.01)
  3730. z:Play()
  3731. for i = 1, 10 do
  3732. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
  3733. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
  3734. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  3735. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  3736. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3737. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3738. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3739. if Debounces.on==false then
  3740. break
  3741. end
  3742. rs:wait()
  3743. end
  3744. Debounces.Slashing = false
  3745. end
  3746. ----------------------------------------------------
  3747. ComboNum = 0
  3748. mouse.Button1Down:connect(function()
  3749. if Debounces.CanAttack == true then
  3750. Debounces.CanAttack = false
  3751. Debounces.NoIdl = true
  3752. Debounces.on = true
  3753. if ComboNum == 0 then
  3754. attackone()
  3755. elseif ComboNum == 1 then
  3756. attacktwo()
  3757. elseif ComboNum == 2 then
  3758. attackthree()
  3759. end
  3760. ComboNum = ComboNum + 1
  3761. Debounces.CanAttack = true
  3762. Debounces.NoIdl = false
  3763. Debounces.on = false
  3764. wait(.5)
  3765. if Debounces.CanAttack == true then
  3766. ComboNum = 0
  3767. end
  3768. end
  3769. end)
  3770. ----------------------------------------------------
  3771. local player = game.Players.LocalPlayer
  3772. local pchar = player.Character
  3773. local mouse = player:GetMouse()
  3774. local cam = workspace.CurrentCamera
  3775.  
  3776. local rad = math.rad
  3777.  
  3778. local keysDown = {}
  3779. local flySpeed = 0
  3780. local MAX_FLY_SPEED = 150
  3781.  
  3782. local canFly = false
  3783. local flyToggled = false
  3784.  
  3785. local forward, side = 0, 0
  3786. local lastForward, lastSide = 0, 0
  3787.  
  3788. local floatBP = Instance.new("BodyPosition")
  3789. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  3790. local flyBV = Instance.new("BodyVelocity")
  3791. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  3792. local turnBG = Instance.new("BodyGyro")
  3793. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  3794.  
  3795. mouse.KeyDown:connect(function(key)
  3796. keysDown[key] = true
  3797.  
  3798. if key == "f" then
  3799. flyToggled = not flyToggled
  3800.  
  3801. if not flyToggled then
  3802. stanceToggle = "Normal"
  3803. floatBP.Parent = nil
  3804. flyBV.Parent = nil
  3805. turnBG.Parent = nil
  3806. root.Velocity = Vector3.new()
  3807. pchar.Humanoid.PlatformStand = false
  3808. end
  3809. end
  3810.  
  3811. end)
  3812. mouse.KeyUp:connect(function(key)
  3813. keysDown[key] = nil
  3814. end)
  3815.  
  3816. local function updateFly()
  3817.  
  3818. if not flyToggled then return end
  3819.  
  3820. lastForward = forward
  3821. lastSide = side
  3822.  
  3823. forward = 0
  3824. side = 0
  3825.  
  3826. if keysDown.w then
  3827. forward = forward + 1
  3828. end
  3829. if keysDown.s then
  3830. forward = forward - 1
  3831. end
  3832. if keysDown.a then
  3833. side = side - 1
  3834. end
  3835. if keysDown.d then
  3836. side = side + 1
  3837. end
  3838.  
  3839. canFly = (forward ~= 0 or side ~= 0)
  3840.  
  3841. if canFly then
  3842. stanceToggle = "Floating"
  3843. turnBG.Parent = root
  3844. floatBP.Parent = nil
  3845. flyBV.Parent = root
  3846.  
  3847. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  3848. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  3849. else
  3850. floatBP.position = root.Position
  3851. floatBP.Parent = root
  3852.  
  3853. flySpeed = flySpeed - 1
  3854. if flySpeed < 0 then flySpeed = 0 end
  3855. end
  3856.  
  3857. local camCF = cam.CoordinateFrame
  3858. local in_forward = canFly and forward or lastForward
  3859. local in_side = canFly and side or lastSide
  3860.  
  3861. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  3862. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  3863.  
  3864. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  3865. 0)
  3866. end
  3867.  
  3868. game:service'RunService'.RenderStepped:connect(function()
  3869. if flyToggled then
  3870. pchar.Humanoid.PlatformStand = true
  3871. end
  3872. updateFly()
  3873. end)
  3874. ----------------------------------------------------
  3875. function Charge()
  3876. pt=Instance.new('Part',torso)
  3877. pt.Anchored=true
  3878. pt.CanCollide=false
  3879. pt.Locked = true
  3880. pt.FormFactor='Custom'
  3881. pt.Size=Vector3.new(1,1,1)
  3882. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3883. pt.Transparency=0.2
  3884. pt.BrickColor=BrickColor.new("Really red")
  3885. msh=Instance.new('SpecialMesh',pt)
  3886. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3887. msh.Scale=Vector3.new(6,3,6)
  3888. pt2=pt:clone()
  3889. pt2.Parent = torso
  3890. pt2.Transparency=0.4
  3891. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3892. pt2.BrickColor=BrickColor.new("Really red")
  3893. msh2=msh:clone()
  3894. msh2.Parent=pt2
  3895. msh2.Scale=Vector3.new(8,4,8)
  3896. pt3=Instance.new('Part',torso)
  3897. pt3.Anchored=true
  3898. pt3.CanCollide=false
  3899. pt3.Locked = true
  3900. pt3.FormFactor='Custom'
  3901. pt3.Size=Vector3.new(1,1,1)
  3902. pt3.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3903. pt3.Transparency=0.6
  3904. pt3.BrickColor=BrickColor.new("Really red")
  3905. msh3=Instance.new('SpecialMesh',pt3)
  3906. msh3.MeshId='http://www.roblox.com/asset/?id=20329976'
  3907. msh3.Scale=Vector3.new(12,6,12)
  3908. pt4=pt:clone()
  3909. pt4.Parent = torso
  3910. pt4.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3911. pt4.Transparency=0.8
  3912. pt4.BrickColor=BrickColor.new("Really red")
  3913. msh4=msh:clone()
  3914. msh4.Parent=pt4
  3915. msh4.Scale=Vector3.new(16,8,16)
  3916. coroutine.resume(coroutine.create(function()
  3917. for i=1, math.huge, 4 do
  3918. if Charging == true then
  3919. wait()
  3920. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.11*math.cos(sine/10)),0)
  3921. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.12*math.cos(sine/12)),0)
  3922. pt3.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.13*math.cos(sine/14)),0)
  3923. pt4.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.14*math.cos(sine/16)),0)
  3924. pt.CFrame = pt.CFrame+Vector3.new(0,0.01,0)
  3925. pt2.CFrame = pt2.CFrame+Vector3.new(0,0.01,0)
  3926. pt3.CFrame = pt3.CFrame+Vector3.new(0,0.01,0)
  3927. pt4.CFrame = pt4.CFrame+Vector3.new(0,0.01,0)
  3928. msh.Scale = msh.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/9),0.05)
  3929. msh2.Scale = msh2.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/7),0.05)
  3930. msh3.Scale = msh3.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/5),0.05)
  3931. msh4.Scale = msh4.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/3),0.05)
  3932. elseif Charging == false then
  3933. pt:Remove()
  3934. pt2:Remove()
  3935. pt3:Remove()
  3936. pt4:Remove()
  3937. break
  3938. end
  3939. end
  3940. end))
  3941. end
  3942. ----------------------------------------------------
  3943. local chot={}
  3944. local cns=0
  3945. mod3 = Instance.new("Model",char)
  3946. mouse.KeyDown:connect(function(key)
  3947. if key == "e" then
  3948. Charging = true
  3949. if Debounces.CanAttack == true then
  3950. Debounces.CanAttack = false
  3951. Debounces.NoIdl = true
  3952. Debounces.on = true
  3953. chot={}
  3954. Charge()
  3955. for i = 1, 20 do
  3956. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(20)), 0.4)
  3957. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-26),math.rad(0),math.rad(-40)), 0.4)
  3958. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.2)
  3959. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-40),math.rad(0),0), 0.2)
  3960. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(0, math.rad(50), math.rad(0)), 0.05)
  3961. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-10)), 0.4)
  3962. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.4)
  3963. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.8, 0.44) * CFrame.Angles(math.rad(-150), math.rad(0), math.rad(0)), 0.4)
  3964. if Debounces.on == false then
  3965. break
  3966. end
  3967. rs:wait()
  3968. end
  3969. local nt=0
  3970. for i=0,5,0.02 do
  3971. nt=nt+1
  3972. cns=i
  3973. if nt>=2 then
  3974. nt=0
  3975. local cho=NewPart(mod3,Vector3.new(2,2,2),char.Sword.Blade.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Really red","Neon")
  3976. debris:AddItem(cho,1)
  3977. cho.Mesh.MeshType=3
  3978. table.insert(chot,cho)
  3979. end
  3980. wait()
  3981. end
  3982. Charging = false
  3983. for i = 1, 10 do
  3984. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
  3985. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
  3986. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
  3987. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3988. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
  3989. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
  3990. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3991. if Debounces.on == false then
  3992. break
  3993. end
  3994. rs:wait()
  3995. end
  3996. Spawn(function()
  3997. local Parts = {}
  3998. for Y = -5,5 do
  3999. local P = Instance.new("Part",char)
  4000. P.Anchored = true
  4001. P.FormFactor = "Custom"
  4002. P.CanCollide = false
  4003. P.Size = Vector3.new(1,2,1)
  4004. P.Material = "Neon"
  4005. P.TopSurface = "SmoothNoOutlines"
  4006. P.BottomSurface = "SmoothNoOutlines"
  4007. P.BrickColor = BrickColor.new("Really red")
  4008. P.Name = tostring(Y)
  4009. local i = (Y+5)/(10)
  4010. i = 1-math.cos(math.pi*i-(math.pi/2))
  4011. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  4012. --[[P.Touched:connect(function(ht)
  4013. local hit = ht.Parent
  4014. if hit:FindFirstChild("Humanoid") then
  4015. hit.Humanoid:TakeDamage(math.random(20,50))
  4016. end
  4017. end)]]--
  4018. P.Touched:connect(function(ht)
  4019. hit = ht.Parent
  4020. if ht and hit:IsA("Model") then
  4021. if hit:FindFirstChild("Humanoid") then
  4022. if hit.Name ~= p.Name then
  4023. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  4024. hit:FindFirstChild("Humanoid").PlatformStand = true
  4025. wait(1)
  4026. end
  4027. end
  4028. elseif ht and hit:IsA("Hat") then
  4029. if hit.Parent.Name ~= p.Name then
  4030. if hit.Parent:FindFirstChild("Humanoid") then
  4031. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  4032. hit:FindFirstChild("Humanoid").PlatformStand = true
  4033. wait(1)
  4034. end
  4035. end
  4036. end
  4037. end)
  4038. Parts[#Parts+1] = P
  4039. end
  4040. local BREAKIT = false
  4041. local CParts = {}
  4042. local Rocks = {}
  4043. local LastPos = nil
  4044. for i = 1,70 do
  4045. for i2,v in pairs(Parts) do
  4046. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  4047. local cf = v.CFrame
  4048. v.Size = v.Size+Vector3.new(1.1,0.35,0.2)
  4049. v.CFrame = cf
  4050. v.Transparency = v.Transparency+0.02
  4051. if v.Transparency >= 0.975 then BREAKIT = true end
  4052. if v.Name == "0" then
  4053. local Ignore = {}
  4054. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4055. if v.Character ~= nil then
  4056. Ignore[#Ignore+1] = v.Character
  4057. end
  4058. end
  4059. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  4060. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  4061. if Hit ~= nil then
  4062. if #Rocks == 0 then
  4063. for i = 1,5 do
  4064. local P = Instance.new("Part",char)
  4065. Rocks[#Rocks+1] = P
  4066. P.Anchored = true
  4067. P.FormFactor = "Custom"
  4068. P.BrickColor = Hit.BrickColor
  4069. P.Material = Hit.Material
  4070. P.TopSurface = "Smooth"
  4071. P.BottomSurface = "Smooth"
  4072. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  4073. end
  4074. end
  4075. for i,P in pairs(Rocks) do
  4076. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  4077. end
  4078. local P = Instance.new("Part",char)
  4079. CParts[#CParts+1] = {P,tick()}
  4080. P.Anchored = true
  4081. P.FormFactor = "Custom"
  4082. P.BrickColor = Hit.BrickColor
  4083. P.Material = Hit.Material
  4084. P.TopSurface = "Smooth"
  4085. P.BottomSurface = "Smooth"
  4086. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  4087. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  4088. Pos = Pos.p
  4089. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  4090. local P = P:Clone()
  4091. CParts[#CParts+1] = {P,tick()}
  4092. P.Parent = char
  4093. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  4094. Pos = Pos.p
  4095. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  4096. if LastPos ~= nil then
  4097. local P = P:Clone()
  4098. CParts[#CParts+1] = {P,tick()}
  4099. P.Parent = char
  4100. P.BrickColor = BrickColor.new("Crimson")
  4101. P.Material = "Granite"
  4102. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  4103. Pos = Pos.p
  4104. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  4105. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  4106. --P.Velocity = Vector3.new(0,-1000,0)
  4107. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  4108. end
  4109. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  4110. end
  4111. end
  4112. end
  4113. if BREAKIT then break end
  4114. wait(0.002)
  4115. end
  4116. for i,v in pairs(Rocks) do
  4117. CParts[#CParts+1] = {v,tick()}
  4118. end
  4119. for i,v in pairs(Parts) do
  4120. v:Destroy()
  4121. end
  4122. Parts = nil
  4123. while true do
  4124. local t = tick()
  4125. local p = nil
  4126. for i,v in pairs(CParts) do
  4127. if t-v[2] > 4 then
  4128. v[1].Transparency = v[1].Transparency+0.05
  4129. if v[1].Transparency >= 1 then
  4130. v[1]:Destroy()
  4131. CParts[i] = nil
  4132. end
  4133. end
  4134. p = v
  4135. end
  4136. if p == nil then break end
  4137. wait(0.002)
  4138. end
  4139. for i,v in pairs(CParts) do
  4140. v:Destroy()
  4141. end
  4142. CParts = {}
  4143. end)
  4144. for i = 1, 10 do
  4145. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
  4146. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
  4147. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  4148. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  4149. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  4150. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  4151. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  4152. if Debounces.on==false then
  4153. break
  4154. end
  4155. rs:wait()
  4156. end
  4157. if Debounces.CanAttack == false then
  4158. Debounces.CanAttack = true
  4159. Debounces.NoIdl = false
  4160. Debounces.on = false
  4161. end
  4162. end
  4163. end
  4164. end)
  4165. ----------------------------------------------------
  4166. mouse.KeyDown:connect(function(key)
  4167. if string.byte(key) == 52 then
  4168. char.Humanoid.WalkSpeed = 28
  4169. end
  4170. end)
  4171. mouse.KeyUp:connect(function(key)
  4172. if string.byte(key) == 52 then
  4173. char.Humanoid.WalkSpeed = 16
  4174. end
  4175. end)
  4176. ----------------------------------------------------
  4177. game:GetService("RunService").RenderStepped:connect(function()
  4178. if char.Humanoid.Jump == true then
  4179. jump = true
  4180. else
  4181. jump = false
  4182. end
  4183. char.Humanoid.FreeFalling:connect(function(f)
  4184. if f then
  4185. ffing = true
  4186. else
  4187. ffing = false
  4188. end
  4189. end)
  4190. sine = sine + change
  4191. if jumpn == true then
  4192. animpose = "Jumping"
  4193. elseif ffing == true then
  4194. animpose = "Freefalling"
  4195. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 5 then
  4196. animpose = "Idle"
  4197. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  4198. animpose = "Walking"
  4199. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  4200. animpose = "Running"
  4201. end
  4202. if animpose ~= lastanimpose then
  4203. sine = 0
  4204. if Debounces.NoIdl == false then
  4205. for i = 1, 2 do
  4206. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  4207. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  4208. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  4209. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  4210. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  4211. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  4212. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  4213. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  4214. end
  4215. wait()
  4216. end
  4217. else
  4218. end
  4219. lastanimpose = animpose
  4220. if Debounces.NoIdl == false then
  4221. if animpose == "Idle" then
  4222. change = 0.5
  4223. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-10),math.rad(-10),math.rad(14+2*math.cos(sine/10))), 0.4)
  4224. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-20),math.rad(6),math.rad(-10-2*math.cos(sine/10))), 0.4)
  4225. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/10)),math.rad(20),0), 0.2)
  4226. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  4227. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.16*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-20), math.rad(0)), 0.05)
  4228. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0-0.1*math.cos(sine/10), -0.55) * CFrame.Angles(math.rad(-10+1*math.cos(sine/10)), math.rad(10), math.rad(-0-2*math.cos(sine/10))), 0.4)
  4229. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1-0.1*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-10), math.rad(0+2*math.cos(sine/10))), 0.4)
  4230. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
  4231. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  4232. --[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(-10+4*math.cos(sine/8)),math.rad(-20-2*math.cos(sine/8)),math.rad(10+2*math.cos(sine/8))), 0.2)
  4233. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(0),math.rad(10+2*math.cos(sine/8)),math.rad(-18-2*math.cos(sine/8))), 0.2)
  4234. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-18),math.rad(20+4*math.cos(sine/8)),0), 0.2)
  4235. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-12-3*math.cos(sine/8)),math.rad(0),0), 0.2)
  4236. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0+2*math.cos(sine/8)), math.rad(-20-4*math.cos(sine/8)), 0), 0.2)
  4237. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-2*math.cos(sine/8)), math.rad(20+4*math.cos(sine/8)), math.rad(-5+1*math.cos(sine/8))), 0.2)
  4238. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0-4*math.cos(sine/8)), math.rad(-10-4*math.cos(sine/8)), math.rad(5+1*math.cos(sine/8))), 0.2)]]--
  4239. elseif animpose == "Walking" then
  4240. change = 1
  4241. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4242. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4243. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  4244. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  4245. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.17*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4246. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  4247. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  4248. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
  4249. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  4250. elseif animpose == "Running" then
  4251. change = 1
  4252. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-22),math.rad(20+2*math.cos(sine/14))), 0.2)
  4253. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-10),math.rad(10),math.rad(-14-2*math.cos(sine/14))), 0.2)
  4254. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(20),0,0), 0.4)
  4255. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  4256. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-40),0, math.rad(0)), 0.05)
  4257. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-8)), 0.4)
  4258. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(8)), 0.4)
  4259. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.05)
  4260. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  4261. end
  4262. end
  4263. och=och+1
  4264. for _,v in pairs(chot) do
  4265. pcall(function()
  4266. v.CFrame=v.CFrame:lerp(char.Sword.Blade.CFrame,0.1)
  4267. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  4268. end)
  4269. end
  4270. end)
  4271. --[[while true do wait(0.2) https://preview.c9users.io/jaspher/rbx_stoof/RMMech.lua
  4272. if charge == true then
  4273. MagicRing(BrickColor.new('Really red'),torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,math.rad(90)),0,-0.2,0,0,0,0,0.4,0.4,0.4,.08)
  4274. end
  4275. end]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement