Advertisement
Robloxian_Scripter

Cyber Monarch

Mar 25th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 361.99 KB | None | 0 0
  1. --//====================================================\\--
  2. --|| CREATED BY SHACKLUSTER
  3. --\\====================================================//--
  4.  
  5. wait(0.2)
  6.  
  7.  
  8.  
  9.  
  10. plr = game:GetService("Players").LocalPlayer
  11. char = plr.Character
  12. hum = char.Humanoid
  13. local cam = game.Workspace.CurrentCamera
  14. Camera = cam
  15. local CamInterrupt = false
  16. local TwoD = false
  17. local TargetInfo = {nil, nil}
  18. cam.CameraType = "Custom"
  19. t = char.Torso
  20. h = char.Head
  21. ra = char["Right Arm"]
  22. la = char["Left Arm"]
  23. rl = char["Right Leg"]
  24. ll = char["Left Leg"]
  25. tors = char.Torso
  26. lleg = char["Left Leg"]
  27. root = char.HumanoidRootPart
  28. hed = char.Head
  29. rleg = char["Right Leg"]
  30. rarm = char["Right Arm"]
  31. larm = char["Left Arm"]
  32. radian = math.rad
  33. random = math.random
  34. Vec3 = Vector3.new
  35. Inst = Instance.new
  36. cFrame = CFrame.new
  37. Euler = CFrame.fromEulerAnglesXYZ
  38. vt = Vector3.new
  39. bc = BrickColor.new
  40. br = BrickColor.random
  41. it = Instance.new
  42. cf = CFrame.new
  43. local eff = true
  44. local shielding = false
  45.  
  46. local Booleans = {
  47. CamFollow = true,
  48. GyroUse = true
  49. }
  50.  
  51. function lerp(object, newCFrame, alpha)
  52. return object:lerp(newCFrame, alpha)
  53. end
  54.  
  55. local Directer = Inst("BodyGyro", root)
  56. Directer.MaxTorque = Vec3(0, 0, 0)
  57. Directer.P = 600000
  58. local CPart = Inst("Part")
  59. CPart.Anchored = true
  60. CPart.CanCollide = false
  61. CPart.Locked = true
  62. CPart.Transparency = 1
  63.  
  64. local rainbowmode = false
  65. local chaosmode = false
  66.  
  67. kan = Instance.new("Sound",char)
  68. kan.Volume = 1.25
  69. kan.TimePosition = 0
  70. kan.PlaybackSpeed = 1
  71. kan.Pitch = 1
  72. kan.SoundId = "rbxassetid://0"
  73. kan.Name = "wrecked"
  74. kan.Looped = true
  75. kan:Play()
  76.  
  77. function newTheme(ID,timepos,pitch,vol)
  78. local kanz = kan
  79. --kanz:Stop()
  80. --kanz.Volume = vol
  81. --kanz.TimePosition = timepos
  82. kanz.PlaybackSpeed = pitch
  83. kanz.Pitch = pitch
  84. kanz.SoundId = ID
  85. kanz.Name = "wrecked"
  86. kanz.Looped = true
  87. kanz.Volume = 0.3
  88. --kanz:Play()
  89. --coroutine.resume(coroutine.create(function()
  90. --wait(0.05)
  91. --end))
  92. end
  93.  
  94. function newThemeCust(ID,timepos,pitch,vol)
  95. local kanz = kan
  96. kanz:Stop()
  97. kanz.Volume = vol
  98. kanz.TimePosition = timepos
  99. kanz.PlaybackSpeed = pitch
  100. kanz.Pitch = pitch
  101. kanz.SoundId = ID
  102. kanz.Name = "wrecked"
  103. kanz.Looped = true
  104. kanz:Play()
  105. coroutine.resume(coroutine.create(function()
  106. wait(0.05)
  107. end))
  108. end
  109.  
  110.  
  111.  
  112. function CameraShake(Times, Power, PlayerTarget)
  113. coroutine.resume(coroutine.create(function()
  114. FV = Instance.new("BoolValue", PlayerTarget)
  115. FV.Name = "CameraShake"
  116. for ShakeNum=1,Times do
  117. swait()
  118. local ef=Power
  119. if ef>=1 then
  120. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  121. else
  122. ef=Power*10
  123. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  124. end
  125. end
  126. Humanoid.CameraOffset = Vector3.new(0,0,0)
  127. FV:Destroy()
  128. end))
  129. end
  130.  
  131. function CameraEnshaking(Length,Intensity)
  132. coroutine.resume(coroutine.create(function()
  133. local intensity = 1*Intensity
  134. local rotM = 0.01*Intensity
  135. for i = 0, Length, 0.1 do
  136. swait()
  137. intensity = intensity - 0.05*Intensity/Length
  138. rotM = rotM - 0.0005*Intensity/Length
  139. hum.CameraOffset = Vec3(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity)))
  140. cam.CFrame = cam.CFrame * cFrame(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity))) * Euler(radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM)
  141. end
  142. Humanoid.CameraOffset = Vec3(0, 0, 0)
  143. end))
  144. end
  145. CamShake=function(Part,Distan,Power,Times)
  146. local de=Part.Position
  147. for i,v in pairs(workspace:children()) do
  148. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  149. for _,c in pairs(v:children()) do
  150. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  151. local Noob=v.Humanoid
  152. if Noob~=nil then
  153. coroutine.resume(coroutine.create(function()
  154. FV = Instance.new("BoolValue", Noob)
  155. FV.Name = "CameraShake"
  156. for ShakeNum=1,Times do
  157. swait()
  158. local ef=Power
  159. if ef>=1 then
  160. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  161. else
  162. ef=Power*10
  163. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  164. end
  165. end
  166. Humanoid.CameraOffset = Vector3.new(0,0,0)
  167. FV:Destroy()
  168. end))
  169. CameraShake(Times, Power, Noob)
  170. end
  171. end
  172. end
  173. end
  174. end
  175. end
  176.  
  177. function chatfunc(text,color)
  178. local chat = coroutine.wrap(function()
  179. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  180. Character:FindFirstChild("TalkingBillBoard"):destroy()
  181. end
  182. local naeeym2 = Instance.new("BillboardGui",Character)
  183. naeeym2.Size = UDim2.new(0,100,0,40)
  184. naeeym2.StudsOffset = Vector3.new(0,3,0)
  185. naeeym2.Adornee = Character.Head
  186. naeeym2.Name = "TalkingBillBoard"
  187. local tecks2 = Instance.new("TextLabel",naeeym2)
  188. tecks2.BackgroundTransparency = 1
  189. tecks2.BorderSizePixel = 0
  190. tecks2.Text = ""
  191. tecks2.Font = "SciFi"
  192. tecks2.TextSize = 30
  193. tecks2.TextStrokeTransparency = 0
  194. tecks2.TextColor3 = color
  195. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  196. tecks2.Size = UDim2.new(1,0,0.5,0)
  197. local tecks3 = Instance.new("TextLabel",naeeym2)
  198. tecks3.BackgroundTransparency = 1
  199. tecks3.BorderSizePixel = 0
  200. tecks3.Text = ""
  201. tecks3.Font = "SciFi"
  202. tecks3.TextSize = 30
  203. tecks3.TextStrokeTransparency = 0
  204. tecks3.TextColor3 = Color3.new(0,0,0)
  205. tecks3.TextStrokeColor3 = color
  206. tecks3.Size = UDim2.new(1,0,0.5,0)
  207. coroutine.resume(coroutine.create(function()
  208. while true do
  209. swait(1)
  210. plr.Character.wrecked.Volume = 0.3
  211. if chaosmode == true then
  212. tecks2.TextColor3 = BrickColor.random().Color
  213. tecks3.TextStrokeColor3 = BrickColor.random().Color
  214. end
  215. tecks2.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  216. tecks3.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  217. tecks2.Rotation = math.random(-5,5)
  218. tecks3.Rotation = math.random(-5,5)
  219. end
  220. end))
  221. for i = 1,string.len(text),1 do
  222. CFuncs["Sound"].Create("rbxassetid://274118116", char, 0.25, 0.115)
  223. tecks2.Text = string.sub(text,1,i)
  224. tecks3.Text = string.sub(text,1,i)
  225. swait(1)
  226. end
  227. wait(1)
  228. local randomrot = math.random(1,2)
  229. if randomrot == 1 then
  230. for i = 1, 50 do
  231. swait()
  232. tecks2.Rotation = tecks2.Rotation - .75
  233. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  234. tecks2.TextTransparency = tecks2.TextTransparency + .04
  235. tecks3.Rotation = tecks2.Rotation + .75
  236. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  237. tecks3.TextTransparency = tecks2.TextTransparency + .04
  238. end
  239. elseif randomrot == 2 then
  240. for i = 1, 50 do
  241. swait()
  242. tecks2.Rotation = tecks2.Rotation + .75
  243. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  244. tecks2.TextTransparency = tecks2.TextTransparency + .04
  245. tecks3.Rotation = tecks2.Rotation - .75
  246. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  247. tecks3.TextTransparency = tecks2.TextTransparency + .04
  248. end
  249. end
  250. naeeym2:Destroy()
  251. end)
  252. chat()
  253. end
  254.  
  255.  
  256. local Create = LoadLibrary("RbxUtility").Create
  257.  
  258. CFuncs = {
  259. ["Part"] = {
  260. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  261. local Part = Create("Part"){
  262. Parent = Parent,
  263. Reflectance = Reflectance,
  264. Transparency = Transparency,
  265. CanCollide = false,
  266. Locked = true,
  267. BrickColor = BrickColor.new(tostring(BColor)),
  268. Name = Name,
  269. Size = Size,
  270. Material = Material,
  271. }
  272. RemoveOutlines(Part)
  273. return Part
  274. end;
  275. };
  276.  
  277. ["Mesh"] = {
  278. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  279. local Msh = Create(Mesh){
  280. Parent = Part,
  281. Offset = OffSet,
  282. Scale = Scale,
  283. }
  284. if Mesh == "SpecialMesh" then
  285. Msh.MeshType = MeshType
  286. Msh.MeshId = MeshId
  287. end
  288. return Msh
  289. end;
  290. };
  291.  
  292. ["Mesh"] = {
  293. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  294. local Msh = Create(Mesh){
  295. Parent = Part,
  296. Offset = OffSet,
  297. Scale = Scale,
  298. }
  299. if Mesh == "SpecialMesh" then
  300. Msh.MeshType = MeshType
  301. Msh.MeshId = MeshId
  302. end
  303. return Msh
  304. end;
  305. };
  306.  
  307. ["Weld"] = {
  308. Create = function(Parent, Part0, Part1, C0, C1)
  309. local Weld = Create("Weld"){
  310. Parent = Parent,
  311. Part0 = Part0,
  312. Part1 = Part1,
  313. C0 = C0,
  314. C1 = C1,
  315. }
  316. return Weld
  317. end;
  318. };
  319.  
  320. ["Sound"] = {
  321. Create = function(id, par, vol, pit)
  322. coroutine.resume(coroutine.create(function()
  323. local S = Create("Sound"){
  324. Volume = vol,
  325. Name = "EffectSoundo",
  326. Pitch = pit or 1,
  327. SoundId = id,
  328. Parent = par or workspace,
  329. }
  330. wait()
  331. S:play()
  332. game:GetService("Debris"):AddItem(S, 10)
  333. end))
  334. end;
  335. };
  336.  
  337. ["LongSound"] = {
  338. Create = function(id, par, vol, pit)
  339. coroutine.resume(coroutine.create(function()
  340. local S = Create("Sound"){
  341. Volume = vol,
  342. Pitch = pit or 1,
  343. SoundId = id,
  344. Parent = par or workspace,
  345. }
  346. wait()
  347. S:play()
  348. game:GetService("Debris"):AddItem(S, 30)
  349. end))
  350. end;
  351. };
  352.  
  353. ["ParticleEmitter"] = {
  354. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  355. local fp = Create("ParticleEmitter"){
  356. Parent = Parent,
  357. Color = ColorSequence.new(Color1, Color2),
  358. LightEmission = LightEmission,
  359. Size = Size,
  360. Texture = Texture,
  361. Transparency = Transparency,
  362. ZOffset = ZOffset,
  363. Acceleration = Accel,
  364. Drag = Drag,
  365. LockedToPart = LockedToPart,
  366. VelocityInheritance = VelocityInheritance,
  367. EmissionDirection = EmissionDirection,
  368. Enabled = Enabled,
  369. Lifetime = LifeTime,
  370. Rate = Rate,
  371. Rotation = Rotation,
  372. RotSpeed = RotSpeed,
  373. Speed = Speed,
  374. VelocitySpread = VelocitySpread,
  375. }
  376. return fp
  377. end;
  378. };
  379.  
  380. CreateTemplate = {
  381.  
  382. };
  383. }
  384.  
  385.  
  386.  
  387. New = function(Object, Parent, Name, Data)
  388. local Object = Instance.new(Object)
  389. for Index, Value in pairs(Data or {}) do
  390. Object[Index] = Value
  391. end
  392. Object.Parent = Parent
  393. Object.Name = Name
  394. return Object
  395. end
  396. local halocolor = BrickColor.new("Dark blue")
  397. local halocolor2 = BrickColor.new("Dark blue")
  398. local starcolor = BrickColor.new("Dark blue")
  399. local lunacolor = BrickColor.new("Dark blue")
  400. local lunacolor2 = BrickColor.new("Dark blue")
  401. local wepcolor = BrickColor.new("Dark blue")
  402. local maincolor = BrickColor.new("Dark blue")
  403. local m = Instance.new("Model",char)
  404. local m2 = Instance.new("Model",char)
  405. local m3 = Instance.new("Model",char)
  406. local mw1 = Instance.new("Model",char)
  407. local mw2 = Instance.new("Model",char)
  408.  
  409. local extrawingmod1 = Instance.new("Model",char)
  410. local extrawingmod2 = Instance.new("Model",char)
  411.  
  412. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  413. local p = Instance.new("Part")
  414. p.TopSurface = 0
  415. p.BottomSurface = 0
  416. p.Parent = parent
  417. p.Size = Vector3.new(0.1,0.1,0.1)
  418. p.Transparency = transparency
  419. p.Reflectance = reflectance
  420. p.CanCollide = false
  421. p.Locked = true
  422. p.BrickColor = brickcolor
  423. p.Material = material
  424. return p
  425. end
  426.  
  427. function CreateMesh(parent,meshtype,x1,y1,z1)
  428. local mesh = Instance.new("SpecialMesh",parent)
  429. mesh.MeshType = meshtype
  430. mesh.Scale = Vector3.new(x1*10,y1*10,z1*10)
  431. return mesh
  432. end
  433.  
  434. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  435. local mesh = Instance.new("SpecialMesh",parent)
  436. mesh.MeshType = "FileMesh"
  437. mesh.MeshId = meshid
  438. mesh.Scale = Vector3.new(x1,y1,z1)
  439. return mesh
  440. end
  441.  
  442.  
  443. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  444. local mesh = Instance.new("SpecialMesh",parent)
  445. mesh.MeshType = "FileMesh"
  446. mesh.MeshId = meshid
  447. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  448. mesh.Scale = Vector3.new(x1,y1,z1)
  449. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  450. return mesh
  451. end
  452.  
  453. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  454. local weld = Instance.new("Weld")
  455. weld.Parent = parent
  456. weld.Part0 = part0
  457. weld.Part1 = part1
  458. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  459. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  460. return weld
  461. end
  462.  
  463.  
  464. --------------
  465. local secondchar = Instance.new("Model",char)
  466. local GhostCol = BrickColor.new("Dark blue")
  467. local sectors = CreateParta(secondchar,1,0,"Neon",GhostCol)
  468. CreateMesh(sectors,"Brick",2*8,2*8,1*8)
  469. local torsweld = CreateWeld(sectors,root,sectors,1,-1,-2,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  470.  
  471. local seclarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  472. CreateMesh(seclarm,"Brick",1*8,2*8,1*8)
  473. local larmsweld = CreateWeld(seclarm,sectors,seclarm,1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  474.  
  475. local secrarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  476. CreateMesh(secrarm,"Brick",1*8,2*8,1*8)
  477. local rarmsweld = CreateWeld(secrarm,sectors,secrarm,-1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  478.  
  479. local seclleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  480. CreateMesh(seclleg,"Brick",1*8,2*8,1*8)
  481. local llegsweld = CreateWeld(seclleg,sectors,seclleg,0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  482.  
  483. local secrleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  484. CreateMesh(secrleg,"Brick",1*8,2*8,1*8)
  485. local rlegsweld = CreateWeld(secrleg,sectors,secrleg,-0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  486.  
  487. local seched = CreateParta(secondchar,1,0,"Neon",GhostCol)
  488. CreateMesh(seched,"Brick",1*8,1*8,1*8)
  489. local hedsweld = CreateWeld(seched,sectors,seched,0,-1.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  490. --------------
  491. local sorb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  492. CreateWeld(sorb,rarm,sorb,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  493. local sorb2 = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  494. CreateWeld(sorb2,larm,sorb2,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  495.  
  496. local handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  497. CreateMesh(handle,"Brick",0,0,0)
  498. local handlexweld = CreateWeld(handlex,tors,handlex,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  499. local valuaring = 10
  500. for i = 0, 49 do
  501. valuaring = valuaring + 10
  502. rn = CreateParta(mw2,0,0,"Neon",halocolor)
  503. CreateMesh(rn,"Brick",0.25,0.1,0.1)
  504. CreateWeld(rn,handlex,rn,0,1,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  505. end
  506.  
  507. handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  508. CreateMesh(handle,"Brick",0,0,0)
  509. CreateWeld(handlex,tors,handlex,0,-3,-2.1,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  510. local valuaring = 10
  511. for i = 0, 49 do
  512. valuaring = valuaring + 10
  513. rn = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  514. CreateMesh(rn,"Brick",0.5,0.2,0.2)
  515. CreateWeld(rn,handlex,rn,0,2,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  516. end
  517.  
  518.  
  519. local handle = CreateParta(m,1,1,"Neon",maincolor)
  520. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  521. local handleweld = CreateWeld(handle,tors,handle,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  522.  
  523. --- Left wing.
  524.  
  525. local lwing1 = CreateParta(m,1,1,"Neon",maincolor)
  526. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  527. local lwing1weld = CreateWeld(lwing1,handle,lwing1,3,0,0,math.rad(5),math.rad(0),math.rad(12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  528.  
  529. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  530. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  531. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  532. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  533. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  534. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  535. A0 = Instance.new('Attachment',wed)
  536. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  537. CreateMesh(wed,"Wedge",0.05,0.5,3)
  538. CreateWeld(wed,lwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  539. A1 = Instance.new('Attachment',wed)
  540. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  541. CreateMesh(wed,"Wedge",0.05,3,0.5)
  542. CreateWeld(wed,lwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  543.  
  544. tl1 = Instance.new('Trail',wed)
  545. tl1.Attachment0 = A0
  546. tl1.Attachment1 = A1
  547. --tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  548. tl1.LightEmission = 1
  549. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  550. tl1.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  551. tl1.Lifetime = 0.6
  552.  
  553.  
  554. local lwing2 = CreateParta(m,1,1,"Neon",maincolor)
  555. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  556. local lwing2weld = CreateWeld(lwing2,handle,lwing2,4,1,0,math.rad(10),math.rad(0),math.rad(25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  557.  
  558. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  559. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  560. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  561. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  562. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  563. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  564. A0 = Instance.new('Attachment',wed)
  565. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  566. CreateMesh(wed,"Wedge",0.05,0.5,3)
  567. CreateWeld(wed,lwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  568. A1 = Instance.new('Attachment',wed)
  569. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  570. CreateMesh(wed,"Wedge",0.05,3,0.5)
  571. CreateWeld(wed,lwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  572.  
  573. tl2 = Instance.new('Trail',wed)
  574. tl2.Attachment0 = A0
  575. tl2.Attachment1 = A1
  576. --tl2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  577. tl2.LightEmission = 1
  578. tl2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  579. tl2.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  580. tl2.Lifetime = 0.6
  581.  
  582. local lwing3 = CreateParta(m,1,1,"Neon",maincolor)
  583. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  584. local lwing3weld = CreateWeld(lwing3,handle,lwing3,4.75,2,0,math.rad(15),math.rad(0),math.rad(37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  585.  
  586. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  587. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  588. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  589. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  590. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  591. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  592. A0 = Instance.new('Attachment',wed)
  593. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  594. CreateMesh(wed,"Wedge",0.05,0.5,3)
  595. CreateWeld(wed,lwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  596. A1 = Instance.new('Attachment',wed)
  597. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  598. CreateMesh(wed,"Wedge",0.05,3,0.5)
  599. CreateWeld(wed,lwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  600.  
  601. tl3 = Instance.new('Trail',wed)
  602. tl3.Attachment0 = A0
  603. tl3.Attachment1 = A1
  604. --tl3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  605. tl3.LightEmission = 1
  606. tl3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  607. tl3.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  608. tl3.Lifetime = 0.6
  609.  
  610. tl1.Enabled = false
  611. tl2.Enabled = false
  612. tl3.Enabled = false
  613. local lwing4 = CreateParta(m,1,1,"Neon",maincolor)
  614. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  615. local lwing4weld = CreateWeld(lwing4,handle,lwing4,5.75,3,0,math.rad(20),math.rad(0),math.rad(50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  616.  
  617. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  618. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  619. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  620. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  621. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  622. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  623. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  624. CreateMesh(wed,"Wedge",0.05,0.5,3)
  625. CreateWeld(wed,lwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  626. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  627. CreateMesh(wed,"Wedge",0.05,3,0.5)
  628. CreateWeld(wed,lwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  629.  
  630. local lwing5 = CreateParta(m,1,1,"Neon",maincolor)
  631. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  632. local lwing5weld = CreateWeld(lwing5,handle,lwing5,6.75,4,0,math.rad(25),math.rad(0),math.rad(62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  633.  
  634. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  635. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  636. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  637. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  638. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  639. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  640. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  641. CreateMesh(wed,"Wedge",0.05,0.5,3)
  642. CreateWeld(wed,lwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  643. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  644. CreateMesh(wed,"Wedge",0.05,3,0.5)
  645. CreateWeld(wed,lwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  646.  
  647. local lwing6 = CreateParta(m,1,1,"Neon",maincolor)
  648. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  649. local lwing6weld = CreateWeld(lwing6,handle,lwing6,7.75,5,0,math.rad(30),math.rad(0),math.rad(75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  650.  
  651. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  652. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  653. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  654. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  655. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  656. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  657. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  658. CreateMesh(wed,"Wedge",0.05,0.5,3)
  659. CreateWeld(wed,lwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  660. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  661. CreateMesh(wed,"Wedge",0.05,3,0.5)
  662. CreateWeld(wed,lwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  663.  
  664. -- Right wing.
  665.  
  666. local rwing1 = CreateParta(m,1,1,"Neon",maincolor)
  667. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  668. local rwing1weld = CreateWeld(rwing1,handle,rwing1,-3,0,0,math.rad(5),math.rad(0),math.rad(-12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  669.  
  670. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  671. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  672. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  673. A0 = Instance.new('Attachment',wed)
  674. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  675. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  676. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  677. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  678. CreateMesh(wed,"Wedge",0.05,0.5,3)
  679. CreateWeld(wed,rwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  680. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  681. CreateMesh(wed,"Wedge",0.05,3,0.5)
  682. CreateWeld(wed,rwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  683. A1 = Instance.new('Attachment',wed)
  684.  
  685. tr1 = Instance.new('Trail',wed)
  686. tr1.Attachment0 = A0
  687. tr1.Attachment1 = A1
  688. --tr1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  689. tr1.LightEmission = 1
  690. tr1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  691. tr1.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  692. tr1.Lifetime = 0.6
  693.  
  694. local rwing2 = CreateParta(m,1,1,"Neon",maincolor)
  695. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  696. local rwing2weld = CreateWeld(rwing2,handle,rwing2,-4,1,0,math.rad(10),math.rad(0),math.rad(-25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  697.  
  698. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  699. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  700. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  701. A0 = Instance.new('Attachment',wed)
  702. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  703. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  704. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  705. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  706. CreateMesh(wed,"Wedge",0.05,0.5,3)
  707. CreateWeld(wed,rwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  708. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  709. CreateMesh(wed,"Wedge",0.05,3,0.5)
  710. CreateWeld(wed,rwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  711. A1 = Instance.new('Attachment',wed)
  712.  
  713. tr2 = Instance.new('Trail',wed)
  714. tr2.Attachment0 = A0
  715. tr2.Attachment1 = A1
  716. --tr2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  717. tr2.LightEmission = 1
  718. tr2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  719. tr2.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  720. tr2.Lifetime = 0.6
  721.  
  722. local rwing3 = CreateParta(m,1,1,"Neon",maincolor)
  723. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  724. local rwing3weld = CreateWeld(rwing3,handle,rwing3,-4.75,2,0,math.rad(15),math.rad(0),math.rad(-37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  725.  
  726. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  727. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  728. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  729. A0 = Instance.new('Attachment',wed)
  730. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  731. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  732. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  733. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  734. CreateMesh(wed,"Wedge",0.05,0.5,3)
  735. CreateWeld(wed,rwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  736. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  737. CreateMesh(wed,"Wedge",0.05,3,0.5)
  738. CreateWeld(wed,rwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  739. A1 = Instance.new('Attachment',wed)
  740.  
  741. tr3 = Instance.new('Trail',wed)
  742. tr3.Attachment0 = A0
  743. tr3.Attachment1 = A1
  744. --tr3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  745. tr3.LightEmission = 1
  746. tr3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  747. tr3.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  748. tr3.Lifetime = 0.6
  749.  
  750.  
  751. local rwing4 = CreateParta(m,1,1,"Neon",maincolor)
  752. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  753. local rwing4weld = CreateWeld(rwing4,handle,rwing4,-5.75,3,0,math.rad(20),math.rad(0),math.rad(-50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  754.  
  755. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  756. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  757. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  758. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  759. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  760. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  761. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  762. CreateMesh(wed,"Wedge",0.05,0.5,3)
  763. CreateWeld(wed,rwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  764. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  765. CreateMesh(wed,"Wedge",0.05,3,0.5)
  766. CreateWeld(wed,rwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  767.  
  768. local rwing5 = CreateParta(m,1,1,"Neon",maincolor)
  769. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  770. local rwing5weld = CreateWeld(rwing5,handle,rwing5,-6.75,4,0,math.rad(25),math.rad(0),math.rad(-62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  771.  
  772. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  773. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  774. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  775. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  776. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  777. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  778. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  779. CreateMesh(wed,"Wedge",0.05,0.5,3)
  780. CreateWeld(wed,rwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  781. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  782. CreateMesh(wed,"Wedge",0.05,3,0.5)
  783. CreateWeld(wed,rwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  784.  
  785. local rwing6 = CreateParta(m,1,1,"Neon",maincolor)
  786. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  787. local rwing6weld = CreateWeld(rwing6,handle,rwing6,-7.75,3,0,math.rad(30),math.rad(0),math.rad(-75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  788.  
  789. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  790. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  791. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  792. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  793. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  794. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  795. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  796. CreateMesh(wed,"Wedge",0.05,0.5,3)
  797. CreateWeld(wed,rwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  798. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  799. CreateMesh(wed,"Wedge",0.05,3,0.5)
  800. CreateWeld(wed,rwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  801.  
  802. ---- HERES THE RING
  803.  
  804.  
  805. --[[ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  806. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  807. CreateWeld(ran,larm,ran,0,0.15,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  808. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  809. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  810. CreateWeld(ran,larm,ran,0,0.155,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  811. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  812. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  813. CreateWeld(ran,larm,ran,0,0.155,-0.025,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  814.  
  815.  
  816. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  817. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  818. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  819.  
  820. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  821. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  822. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  823.  
  824.  
  825.  
  826. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  827. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  828. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  829.  
  830. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  831. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  832. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  833.  
  834. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  835. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  836. CreateWeld(gane,larm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  837.  
  838. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  839. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  840. CreateWeld(star,larm,star,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  841. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  842. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  843. CreateWeld(starl,larm,starl,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  844.  
  845. --- second ring
  846.  
  847. ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  848. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  849. CreateWeld(ran,rarm,ran,0,0.15,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  850. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  851. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  852. CreateWeld(ran,rarm,ran,0,0.155,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  853. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  854. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  855. CreateWeld(ran,rarm,ran,0,0.155,-0.025,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  856.  
  857. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  858. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  859. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  860.  
  861. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  862. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  863. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  864.  
  865.  
  866.  
  867. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  868. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  869. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  870.  
  871. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  872. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  873. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  874.  
  875. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  876. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  877. CreateWeld(gane,rarm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  878.  
  879. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  880. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  881. CreateWeld(star,rarm,star,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  882. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  883. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  884. CreateWeld(starl,rarm,starl,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))]]--
  885.  
  886.  
  887.  
  888. for i, v in pairs(m:GetChildren()) do
  889. if v:IsA("Part") then
  890. v.BrickColor = BrickColor.new("Dark blue")
  891. v.Material = "Glass"
  892. end
  893. end
  894. for i, v in pairs(m2:GetChildren()) do
  895. if v:IsA("Part") then
  896. v.BrickColor = BrickColor.new("Dark blue")
  897. v.Material = "Granite"
  898. end
  899. end
  900. for i, v in pairs(m3:GetChildren()) do
  901. if v:IsA("Part") then
  902. v.BrickColor = BrickColor.new("Dark blue")
  903. v.Material = "Neon"
  904. end
  905. end
  906. for i, v in pairs(mw2:GetChildren()) do
  907. if v:IsA("Part") then
  908. v.BrickColor = BrickColor.new("Dark blue")
  909. v.Material = "Neon"
  910. end
  911. end
  912. for i, v in pairs(mw1:GetChildren()) do
  913. if v:IsA("Part") then
  914. v.Transparency = 1
  915. v.BrickColor = BrickColor.new("Dark blue")
  916. v.Material = "Neon"
  917. end
  918. end
  919. for i, v in pairs(extrawingmod1:GetChildren()) do
  920. if v:IsA("Part") then
  921. v.Transparency = 1
  922. v.BrickColor = BrickColor.new("Dark blue")
  923. v.Material = "Neon"
  924. end
  925. end
  926. for i, v in pairs(extrawingmod2:GetChildren()) do
  927. if v:IsA("Part") then
  928. v.Transparency = 1
  929. v.BrickColor = BrickColor.new("Dark blue")
  930. v.Material = "Neon"
  931. end
  932. end
  933. local MAINRUINCOLOR = BrickColor.new("Dark blue")
  934. ------
  935. --Thanks for using Build2Script Plugin by jarredbcv!
  936. local player = "LocalPlayer"
  937. local Character = game.Players[player].Character
  938. local Torso = Character.Torso
  939. local LeftArm = Character["Left Arm"]
  940. local RightArm = Character["Right Arm"]
  941. local LeftLeg = Character["Left Leg"]
  942. local RightLeg = Character["Right Leg"]
  943. local Head = Character.Head
  944. local RootPart = Character.HumanoidRootPart
  945.  
  946. local m = Instance.new("Model")
  947. m.Name = "VTX"
  948. --[[m1 = Instance.new("Model")
  949. m1.Name = "Torso"
  950. m1.Parent = m
  951. m2 = Instance.new("Model")
  952. m2.Name = "Head"
  953. m2.Parent = m
  954. m3 = Instance.new("Model")
  955. m3.Name = "RightArm"
  956. m3.Parent = m
  957. m4 = Instance.new("Model")
  958. m4.Name = "LeftLeg"
  959. m4.Parent = m
  960. m5 = Instance.new("Model")
  961. m5.Name = "RightLeg"
  962. m5.Parent = m
  963. m6 = Instance.new("Model")
  964. m6.Name = "LeftArm"
  965. m6.Parent = m--]]
  966. p1 = Instance.new("Part", m)
  967. p1.BrickColor = BrickColor.new("Dark blue")
  968. p1.Material = Enum.Material.SmoothPlastic
  969. p1.Reflectance = 0.5
  970. p1.Name = "DiamondMesh"
  971. p1.CFrame = CFrame.new(4.43766785, 155.454346, 39.9999847, -4.37113883e-008, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -1, -4.3159529e-005, -4.37113883e-008)
  972. p1.CanCollide = false
  973. p1.FormFactor = Enum.FormFactor.Symmetric
  974. p1.Elasticity = 0
  975. p1.Size = Vector3.new(0.512455523, 0.512455463, 0.512455463)
  976. b1 = Instance.new("SpecialMesh", p1)
  977. b1.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  978. b1.TextureId = ""
  979. b1.MeshType = Enum.MeshType.FileMesh
  980. b1.Name = "Mesh"
  981. b1.Scale = Vector3.new(0.512455523, 0.230604947, 0.102491096)
  982. --[[p2 = Instance.new("Part", m)
  983. p2.BrickColor = BrickColor.new("Dark blue")
  984. p2.Name = "Torso"
  985. p2.CFrame = CFrame.new(3.81999993, 156.276108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  986. p2.CanCollide = false
  987. p2.FormFactor = Enum.FormFactor.Symmetric
  988. p2.Size = Vector3.new(2, 2, 1)
  989. p2.BottomSurface = Enum.SurfaceType.Smooth
  990. p2.TopSurface = Enum.SurfaceType.Smooth--]]
  991. p2 = Torso
  992. p3 = Instance.new("Part", m)
  993. p3.BrickColor = BrickColor.new("Dark blue")
  994. p3.Material = Enum.Material.SmoothPlastic
  995. p3.Name = "apart"
  996. p3.CFrame = CFrame.new(3.18215108, 156.94046, 39.948761, 3.0473866e-005, -1, -3.05175763e-005, -3.05603571e-005, -3.05185094e-005, 1, -1, -3.04729328e-005, -3.05612884e-005)
  997. p3.CanCollide = false
  998. p3.FormFactor = Enum.FormFactor.Custom
  999. p3.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  1000. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1005. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1006. b2 = Instance.new("SpecialMesh", p3)
  1007. b2.MeshType = Enum.MeshType.Brick
  1008. b2.Name = "Mesh"
  1009. b2.Scale = Vector3.new(1, 1.01999998, 0.5)
  1010. p4 = Instance.new("Part", m)
  1011. p4.BrickColor = BrickColor.new("Dark blue")
  1012. p4.Material = Enum.Material.Neon
  1013. p4.Name = "apart"
  1014. p4.CFrame = CFrame.new(4.59140301, 156.658615, 39.9999924, -1, 4.30663385e-005, 4.43833414e-010, 1.85536919e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  1015. p4.CanCollide = false
  1016. p4.FormFactor = Enum.FormFactor.Custom
  1017. p4.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1018. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1022. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1023. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1024. b3 = Instance.new("SpecialMesh", p4)
  1025. b3.MeshType = Enum.MeshType.Cylinder
  1026. b3.Name = "Mesh"
  1027. b3.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1028. p5 = Instance.new("Part", m)
  1029. p5.BrickColor = BrickColor.new("Dark blue")
  1030. p5.Material = Enum.Material.SmoothPlastic
  1031. p5.Name = "apart"
  1032. p5.CFrame = CFrame.new(4.28393078, 155.428711, 39.9999886, -4.37102727e-008, 2.75157674e-012, 1, -4.3159529e-005, 1, -1.96809236e-012, -1, -4.3159529e-005, -4.37139782e-008)
  1033. p5.CanCollide = false
  1034. p5.FormFactor = Enum.FormFactor.Custom
  1035. p5.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1036. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1042. b4 = Instance.new("SpecialMesh", p5)
  1043. b4.MeshType = Enum.MeshType.Cylinder
  1044. b4.Name = "Mesh"
  1045. b4.Scale = Vector3.new(0.417481065, 1, 1)
  1046. p6 = Instance.new("Part", m)
  1047. p6.BrickColor = BrickColor.new("Dark blue")
  1048. p6.Name = "apart"
  1049. p6.CFrame = CFrame.new(4.59140301, 157.171066, 39.9999886, -1, 4.30663385e-005, 4.43833775e-010, 1.85536952e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  1050. p6.CanCollide = false
  1051. p6.FormFactor = Enum.FormFactor.Custom
  1052. p6.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1053. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. b5 = Instance.new("SpecialMesh", p6)
  1060. b5.MeshType = Enum.MeshType.Cylinder
  1061. b5.Name = "Mesh"
  1062. b5.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1063. p7 = Instance.new("Part", m)
  1064. p7.BrickColor = BrickColor.new("Dark blue")
  1065. p7.Material = Enum.Material.Neon
  1066. p7.Name = "apart"
  1067. p7.CFrame = CFrame.new(4.07894754, 156.453629, 39.974369, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
  1068. p7.CanCollide = false
  1069. p7.FormFactor = Enum.FormFactor.Custom
  1070. p7.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  1071. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1073. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1077. b6 = Instance.new("SpecialMesh", p7)
  1078. b6.MeshType = Enum.MeshType.Brick
  1079. b6.Name = "Mesh"
  1080. b6.Scale = Vector3.new(1.04999995, 0.899999976, 0.25)
  1081. p8 = Instance.new("Part", m)
  1082. p8.BrickColor = BrickColor.new("Dark blue")
  1083. p8.Material = Enum.Material.SmoothPlastic
  1084. p8.Name = "apart"
  1085. p8.CFrame = CFrame.new(4.38642168, 155.428711, 39.9999886, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
  1086. p8.CanCollide = false
  1087. p8.FormFactor = Enum.FormFactor.Custom
  1088. p8.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1089. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1092. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. b7 = Instance.new("SpecialMesh", p8)
  1096. b7.MeshType = Enum.MeshType.Cylinder
  1097. b7.Name = "Mesh"
  1098. b7.Scale = Vector3.new(0.417481065, 1, 1)
  1099. p9 = Instance.new("Part", m)
  1100. p9.BrickColor = BrickColor.new("Dark blue")
  1101. p9.Material = Enum.Material.Neon
  1102. p9.Name = "apart"
  1103. p9.CFrame = CFrame.new(4.59140301, 156.914856, 39.9999886, -1, 9.14653137e-005, 3.05217691e-005, 9.14681077e-005, 1, 9.14653137e-005, -3.05133999e-005, 9.14681077e-005, -1)
  1104. p9.CanCollide = false
  1105. p9.FormFactor = Enum.FormFactor.Custom
  1106. p9.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1107. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1108. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1109. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1110. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. b8 = Instance.new("SpecialMesh", p9)
  1114. b8.MeshType = Enum.MeshType.Brick
  1115. b8.Name = "Mesh"
  1116. b8.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  1117. p10 = Instance.new("Part", m)
  1118. p10.BrickColor = BrickColor.new("Dark blue")
  1119. p10.Material = Enum.Material.SmoothPlastic
  1120. p10.Name = "apart"
  1121. p10.CFrame = CFrame.new(2.66969562, 157.811615, 40.8967972, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  1122. p10.CanCollide = false
  1123. p10.FormFactor = Enum.FormFactor.Custom
  1124. p10.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1125. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. b9 = Instance.new("SpecialMesh", p10)
  1132. b9.MeshType = Enum.MeshType.Brick
  1133. b9.Name = "Mesh"
  1134. b9.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  1135. p11 = Instance.new("Part", m)
  1136. p11.BrickColor = BrickColor.new("Dark blue")
  1137. p11.Material = Enum.Material.Neon
  1138. p11.Name = "apart"
  1139. p11.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032066, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  1140. p11.CanCollide = false
  1141. p11.FormFactor = Enum.FormFactor.Custom
  1142. p11.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1143. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1149. b10 = Instance.new("SpecialMesh", p11)
  1150. b10.MeshType = Enum.MeshType.Brick
  1151. b10.Name = "Mesh"
  1152. b10.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  1153. p12 = Instance.new("Part", m)
  1154. p12.BrickColor = BrickColor.new("Dark blue")
  1155. p12.Material = Enum.Material.SmoothPlastic
  1156. p12.Name = "apart"
  1157. p12.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032104, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  1158. p12.CanCollide = false
  1159. p12.FormFactor = Enum.FormFactor.Custom
  1160. p12.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1161. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1162. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1166. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1167. b11 = Instance.new("SpecialMesh", p12)
  1168. b11.MeshType = Enum.MeshType.Brick
  1169. b11.Name = "Mesh"
  1170. b11.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  1171. p13 = Instance.new("Part", m)
  1172. p13.BrickColor = BrickColor.new("Dark blue")
  1173. p13.Material = Enum.Material.Neon
  1174. p13.Name = "apart"
  1175. p13.CFrame = CFrame.new(4.2839303, 155.428711, 40, -4.37154632e-008, -3.63797881e-012, 1, -4.31595254e-005, 1, 0, -1, -4.3159529e-005, -4.37144365e-008)
  1176. p13.CanCollide = false
  1177. p13.FormFactor = Enum.FormFactor.Custom
  1178. p13.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1179. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1181. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1182. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1183. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1184. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1185. b12 = Instance.new("SpecialMesh", p13)
  1186. b12.MeshType = Enum.MeshType.Cylinder
  1187. b12.Name = "Mesh"
  1188. b12.Scale = Vector3.new(0.208740532, 1.00999999, 1.00999999)
  1189. p14 = Instance.new("Part", m)
  1190. p14.BrickColor = BrickColor.new("Dark blue")
  1191. p14.Material = Enum.Material.SmoothPlastic
  1192. p14.Name = "apart"
  1193. p14.CFrame = CFrame.new(3.82271981, 155.428711, 40, 1, -3.63780295e-012, 4.07496259e-012, 1.88656274e-012, 1, -3.63797881e-012, -3.04822834e-012, 8.24700363e-020, 1)
  1194. p14.CanCollide = false
  1195. p14.FormFactor = Enum.FormFactor.Custom
  1196. p14.Size = Vector3.new(1.02491105, 0.245498881, 2.04982185)
  1197. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1198. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1199. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1201. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1202. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1203. b13 = Instance.new("SpecialMesh", p14)
  1204. b13.MeshType = Enum.MeshType.Brick
  1205. b13.Name = "Mesh"
  1206. b13.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  1207. p15 = Instance.new("Part", m)
  1208. p15.BrickColor = BrickColor.new("Dark blue")
  1209. p15.Material = Enum.Material.Neon
  1210. p15.Name = "apart"
  1211. p15.CFrame = CFrame.new(4.59140301, 156.914841, 39.7437744, -1, 4.30663349e-005, 4.50222831e-010, 1.85340143e-009, 5.34494757e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  1212. p15.CanCollide = false
  1213. p15.FormFactor = Enum.FormFactor.Custom
  1214. p15.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1215. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1218. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1219. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1220. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1221. b14 = Instance.new("SpecialMesh", p15)
  1222. b14.MeshType = Enum.MeshType.Cylinder
  1223. b14.Name = "Mesh"
  1224. b14.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1225. p16 = Instance.new("Part", m)
  1226. p16.BrickColor = BrickColor.new("Dark blue")
  1227. p16.Material = Enum.Material.Neon
  1228. p16.Name = "apart"
  1229. p16.CFrame = CFrame.new(2.66969585, 157.811615, 40.8968086, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738605e-005)
  1230. p16.CanCollide = false
  1231. p16.FormFactor = Enum.FormFactor.Custom
  1232. p16.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1233. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1234. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1235. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1236. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1237. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1239. b15 = Instance.new("SpecialMesh", p16)
  1240. b15.MeshType = Enum.MeshType.Brick
  1241. b15.Name = "Mesh"
  1242. b15.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  1243. p17 = Instance.new("Part", m)
  1244. p17.BrickColor = BrickColor.new("Dark blue")
  1245. p17.Material = Enum.Material.SmoothPlastic
  1246. p17.Name = "apart"
  1247. p17.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  1248. p17.CanCollide = false
  1249. p17.FormFactor = Enum.FormFactor.Custom
  1250. p17.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1251. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1252. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1253. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1254. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. b16 = Instance.new("SpecialMesh", p17)
  1258. b16.MeshType = Enum.MeshType.Cylinder
  1259. b16.Name = "Mesh"
  1260. b16.Scale = Vector3.new(0.417480975, 1, 1)
  1261. p18 = Instance.new("Part", m)
  1262. p18.BrickColor = BrickColor.new("Dark blue")
  1263. p18.Material = Enum.Material.Neon
  1264. p18.Name = "apart"
  1265. p18.CFrame = CFrame.new(4.59140301, 156.914825, 40.2562294, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  1266. p18.CanCollide = false
  1267. p18.FormFactor = Enum.FormFactor.Custom
  1268. p18.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1269. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1270. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1271. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1273. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. b17 = Instance.new("SpecialMesh", p18)
  1276. b17.MeshType = Enum.MeshType.Cylinder
  1277. b17.Name = "Mesh"
  1278. b17.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1279. p19 = Instance.new("Part", m)
  1280. p19.BrickColor = BrickColor.new("Dark blue")
  1281. p19.Material = Enum.Material.Neon
  1282. p19.Name = "apart"
  1283. p19.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  1284. p19.CanCollide = false
  1285. p19.FormFactor = Enum.FormFactor.Custom
  1286. p19.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1287. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. b18 = Instance.new("SpecialMesh", p19)
  1294. b18.MeshType = Enum.MeshType.Brick
  1295. b18.Name = "Mesh"
  1296. b18.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  1297. p20 = Instance.new("Part", m)
  1298. p20.BrickColor = BrickColor.new("Dark blue")
  1299. p20.Material = Enum.Material.SmoothPlastic
  1300. p20.Name = "apart"
  1301. p20.CFrame = CFrame.new(4.46329021, 156.914825, 40.0000191, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
  1302. p20.CanCollide = false
  1303. p20.FormFactor = Enum.FormFactor.Custom
  1304. p20.Size = Vector3.new(2.04982209, 0.256227732, 1.02491093)
  1305. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1307. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1309. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1310. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1311. b19 = Instance.new("SpecialMesh", p20)
  1312. b19.MeshType = Enum.MeshType.Torso
  1313. b19.Name = "Mesh"
  1314. p21 = Instance.new("Part", m)
  1315. p21.BrickColor = BrickColor.new("Dark blue")
  1316. p21.Material = Enum.Material.SmoothPlastic
  1317. p21.Name = "apart"
  1318. p21.CFrame = CFrame.new(4.07894802, 156.453613, 39.9743843, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
  1319. p21.CanCollide = false
  1320. p21.FormFactor = Enum.FormFactor.Custom
  1321. p21.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  1322. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1323. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1324. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1325. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1327. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1328. b20 = Instance.new("SpecialMesh", p21)
  1329. b20.MeshType = Enum.MeshType.Brick
  1330. b20.Name = "Mesh"
  1331. b20.Scale = Vector3.new(1.03999996, 1.00999999, 1.00999999)
  1332. p22 = Instance.new("Part", m)
  1333. p22.BrickColor = BrickColor.new("Dark blue")
  1334. p22.Material = Enum.Material.Neon
  1335. p22.Name = "apart"
  1336. p22.CFrame = CFrame.new(3.18215108, 156.940445, 39.9487801, 3.04738605e-005, -1, -3.05175818e-005, -3.05603644e-005, -3.05185094e-005, 1, -1, -3.0472931e-005, -3.05612739e-005)
  1337. p22.CanCollide = false
  1338. p22.FormFactor = Enum.FormFactor.Custom
  1339. p22.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  1340. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1341. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1342. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1343. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1344. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1345. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1346. b21 = Instance.new("SpecialMesh", p22)
  1347. b21.MeshType = Enum.MeshType.Brick
  1348. b21.Name = "Mesh"
  1349. b21.Scale = Vector3.new(1, 1.02999997, 0.25)
  1350. p23 = Instance.new("Part", m)
  1351. p23.BrickColor = BrickColor.new("Dark blue")
  1352. p23.Material = Enum.Material.SmoothPlastic
  1353. p23.Name = "apart"
  1354. p23.CFrame = CFrame.new(3.82272005, 156.402344, 40.0000038, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  1355. p23.CanCollide = false
  1356. p23.FormFactor = Enum.FormFactor.Custom
  1357. p23.Size = Vector3.new(1.02491105, 2.04982185, 2.04982185)
  1358. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1359. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1360. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1361. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1362. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1363. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1364. p24 = Instance.new("Part", m)
  1365. p24.BrickColor = BrickColor.new("Dark blue")
  1366. p24.Material = Enum.Material.SmoothPlastic
  1367. p24.Name = "apart"
  1368. p24.CFrame = CFrame.new(3.82272005, 155.172455, 39.4875526, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  1369. p24.CanCollide = false
  1370. p24.FormFactor = Enum.FormFactor.Custom
  1371. p24.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  1372. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1375. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1376. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1377. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1378. b22 = Instance.new("SpecialMesh", p24)
  1379. b22.MeshType = Enum.MeshType.Brick
  1380. b22.Name = "Mesh"
  1381. b22.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1382. p25 = Instance.new("Part", m)
  1383. p25.BrickColor = BrickColor.new("Dark blue")
  1384. p25.Material = Enum.Material.SmoothPlastic
  1385. p25.Name = "apart"
  1386. p25.CFrame = CFrame.new(3.82272005, 155.172455, 40.512455, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  1387. p25.CanCollide = false
  1388. p25.FormFactor = Enum.FormFactor.Custom
  1389. p25.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  1390. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1391. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1392. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1393. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1394. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1395. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1396. b23 = Instance.new("SpecialMesh", p25)
  1397. b23.MeshType = Enum.MeshType.Brick
  1398. b23.Name = "Mesh"
  1399. b23.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1400. p26 = Instance.new("Part", m)
  1401. p26.BrickColor = BrickColor.new("Dark blue")
  1402. p26.Material = Enum.Material.SmoothPlastic
  1403. p26.Name = "apart"
  1404. p26.CFrame = CFrame.new(2.66969609, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738514e-005)
  1405. p26.CanCollide = false
  1406. p26.FormFactor = Enum.FormFactor.Custom
  1407. p26.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1408. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1409. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1410. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1411. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1412. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1413. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1414. b24 = Instance.new("SpecialMesh", p26)
  1415. b24.MeshType = Enum.MeshType.Brick
  1416. b24.Name = "Mesh"
  1417. p27 = Instance.new("Part", m)
  1418. p27.BrickColor = BrickColor.new("Dark blue")
  1419. p27.Material = Enum.Material.SmoothPlastic
  1420. p27.Name = "apart"
  1421. p27.CFrame = CFrame.new(3.82269621, 157.4785, 40.0000038, 5.34812571e-005, -1, -4.31585941e-005, 1, 5.34812607e-005, 1.38243195e-009, 9.4587449e-010, -4.31585941e-005, 1)
  1422. p27.CanCollide = false
  1423. p27.FormFactor = Enum.FormFactor.Custom
  1424. p27.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1425. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1429. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1430. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1431. b25 = Instance.new("SpecialMesh", p27)
  1432. b25.MeshType = Enum.MeshType.Cylinder
  1433. b25.Name = "Mesh"
  1434. b25.Scale = Vector3.new(0.417481065, 1, 1)
  1435. p28 = Instance.new("Part", m)
  1436. p28.BrickColor = BrickColor.new("Dark blue")
  1437. p28.Material = Enum.Material.SmoothPlastic
  1438. p28.Name = "apart"
  1439. p28.CFrame = CFrame.new(3.18215108, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
  1440. p28.CanCollide = false
  1441. p28.FormFactor = Enum.FormFactor.Custom
  1442. p28.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  1443. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1444. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1446. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1447. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1448. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1449. b26 = Instance.new("SpecialMesh", p28)
  1450. b26.MeshType = Enum.MeshType.Wedge
  1451. b26.Name = "Mesh"
  1452. p29 = Instance.new("Part", m)
  1453. p29.BrickColor = BrickColor.new("Dark blue")
  1454. p29.Material = Enum.Material.SmoothPlastic
  1455. p29.Name = "apart"
  1456. p29.CFrame = CFrame.new(3.82272005, 156.556107, 40.0000076, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
  1457. p29.CanCollide = false
  1458. p29.FormFactor = Enum.FormFactor.Custom
  1459. p29.Size = Vector3.new(1.02491105, 1.74234843, 1.84483957)
  1460. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1465. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1466. b27 = Instance.new("SpecialMesh", p29)
  1467. b27.MeshType = Enum.MeshType.Brick
  1468. b27.Name = "Mesh"
  1469. b27.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1470. p30 = Instance.new("Part", m)
  1471. p30.BrickColor = BrickColor.new("Dark blue")
  1472. p30.Material = Enum.Material.SmoothPlastic
  1473. p30.Name = "apart"
  1474. p30.CFrame = CFrame.new(2.92592335, 156.914825, 39.1032219, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
  1475. p30.CanCollide = false
  1476. p30.FormFactor = Enum.FormFactor.Custom
  1477. p30.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  1478. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1482. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1483. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1484. b28 = Instance.new("SpecialMesh", p30)
  1485. b28.MeshType = Enum.MeshType.Wedge
  1486. b28.Name = "Mesh"
  1487. p31 = Instance.new("Part", m)
  1488. p31.BrickColor = BrickColor.new("Dark blue")
  1489. p31.Material = Enum.Material.SmoothPlastic
  1490. p31.Name = "apart"
  1491. p31.CFrame = CFrame.new(2.92592359, 156.91481, 40.8968201, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
  1492. p31.CanCollide = false
  1493. p31.FormFactor = Enum.FormFactor.Custom
  1494. p31.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  1495. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1500. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1501. b29 = Instance.new("SpecialMesh", p31)
  1502. b29.MeshType = Enum.MeshType.Wedge
  1503. b29.Name = "Mesh"
  1504. p32 = Instance.new("Part", m)
  1505. p32.BrickColor = BrickColor.new("Dark blue")
  1506. p32.Material = Enum.Material.SmoothPlastic
  1507. p32.Name = "apart"
  1508. p32.CFrame = CFrame.new(3.82272077, 156.556091, 40.9736748, 1, 3.05171161e-005, 3.05180401e-005, 3.05180401e-005, -1, -3.04301611e-005, 3.05171125e-005, 3.04310706e-005, -1)
  1509. p32.CanCollide = false
  1510. p32.FormFactor = Enum.FormFactor.Custom
  1511. p32.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  1512. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1518. b30 = Instance.new("SpecialMesh", p32)
  1519. b30.MeshType = Enum.MeshType.Wedge
  1520. b30.Name = "Mesh"
  1521. b30.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  1522. p33 = Instance.new("Part", m)
  1523. p33.BrickColor = BrickColor.new("Dark blue")
  1524. p33.Material = Enum.Material.SmoothPlastic
  1525. p33.Name = "apart"
  1526. p33.CFrame = CFrame.new(2.66969681, 157.8116, 40.8968201, -3.05612957e-005, 1, -3.05175763e-005, -3.04729383e-005, -3.05185094e-005, -1, -1, -3.05603571e-005, 3.04738496e-005)
  1527. p33.CanCollide = false
  1528. p33.FormFactor = Enum.FormFactor.Custom
  1529. p33.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1530. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1536. b31 = Instance.new("SpecialMesh", p33)
  1537. b31.MeshType = Enum.MeshType.Brick
  1538. b31.Name = "Mesh"
  1539. p34 = Instance.new("Part", m)
  1540. p34.BrickColor = BrickColor.new("Dark blue")
  1541. p34.Material = Enum.Material.SmoothPlastic
  1542. p34.Name = "apart"
  1543. p34.CFrame = CFrame.new(3.82269669, 157.581009, 40.0000153, 5.34812571e-005, -1, -4.31585904e-005, 1, 5.34812607e-005, 1.38061296e-009, 9.47693479e-010, -4.31585977e-005, 1)
  1544. p34.CanCollide = false
  1545. p34.FormFactor = Enum.FormFactor.Custom
  1546. p34.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1547. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. b32 = Instance.new("SpecialMesh", p34)
  1554. b32.MeshType = Enum.MeshType.Cylinder
  1555. b32.Name = "Mesh"
  1556. b32.Scale = Vector3.new(0.417481065, 0.899999976, 1)
  1557. p35 = Instance.new("Part", m)
  1558. p35.BrickColor = BrickColor.new("Dark blue")
  1559. p35.Material = Enum.Material.SmoothPlastic
  1560. p35.Name = "apart"
  1561. p35.CFrame = CFrame.new(3.82272053, 155.633682, 40.4612274, 1, 3.05171161e-005, 3.05180365e-005, 3.05180401e-005, -1, -3.04301593e-005, 3.05171143e-005, 3.04310706e-005, -1)
  1562. p35.CanCollide = false
  1563. p35.FormFactor = Enum.FormFactor.Custom
  1564. p35.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  1565. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1566. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1567. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1568. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1571. b33 = Instance.new("SpecialMesh", p35)
  1572. b33.MeshType = Enum.MeshType.Wedge
  1573. b33.Name = "Mesh"
  1574. b33.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  1575. p36 = Instance.new("Part", m)
  1576. p36.BrickColor = BrickColor.new("Dark blue")
  1577. p36.Material = Enum.Material.SmoothPlastic
  1578. p36.Name = "apart"
  1579. p36.CFrame = CFrame.new(3.82272053, 156.556107, 39.0263557, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
  1580. p36.CanCollide = false
  1581. p36.FormFactor = Enum.FormFactor.Custom
  1582. p36.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  1583. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. b34 = Instance.new("SpecialMesh", p36)
  1590. b34.MeshType = Enum.MeshType.Wedge
  1591. b34.Name = "Mesh"
  1592. b34.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  1593. p37 = Instance.new("Part", m)
  1594. p37.BrickColor = BrickColor.new("Dark blue")
  1595. p37.Material = Enum.Material.SmoothPlastic
  1596. p37.Name = "apart"
  1597. p37.CFrame = CFrame.new(3.82272053, 155.633682, 39.5388374, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
  1598. p37.CanCollide = false
  1599. p37.FormFactor = Enum.FormFactor.Custom
  1600. p37.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  1601. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1602. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1603. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1604. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1605. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1607. b35 = Instance.new("SpecialMesh", p37)
  1608. b35.MeshType = Enum.MeshType.Wedge
  1609. b35.Name = "Mesh"
  1610. b35.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  1611. p38 = Instance.new("Part", m)
  1612. p38.BrickColor = BrickColor.new("Dark blue")
  1613. p38.Material = Enum.Material.SmoothPlastic
  1614. p38.Name = "apart"
  1615. p38.CFrame = CFrame.new(3.18215156, 157.811584, 40.8968277, -3.05612957e-005, 1, -3.05175708e-005, -3.04729365e-005, -3.05185131e-005, -1, -1, -3.05603608e-005, 3.04738478e-005)
  1616. p38.CanCollide = false
  1617. p38.FormFactor = Enum.FormFactor.Custom
  1618. p38.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  1619. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1620. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1621. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1622. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1623. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. b36 = Instance.new("SpecialMesh", p38)
  1626. b36.MeshType = Enum.MeshType.Wedge
  1627. b36.Name = "Mesh"
  1628. p39 = Instance.new("Part", m)
  1629. p39.BrickColor = BrickColor.new("Dark blue")
  1630. p39.Material = Enum.Material.SmoothPlastic
  1631. p39.Name = "apart"
  1632. p39.CFrame = CFrame.new(3.18215156, 156.940414, 39.9487991, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
  1633. p39.CanCollide = false
  1634. p39.FormFactor = Enum.FormFactor.Custom
  1635. p39.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  1636. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1637. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1638. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1639. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1640. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1641. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1642. b37 = Instance.new("SpecialMesh", p39)
  1643. b37.MeshType = Enum.MeshType.Brick
  1644. b37.Name = "Mesh"
  1645. b37.Scale = Vector3.new(1, 1.00999999, 1.00999999)
  1646. p40 = Instance.new("Part", m)
  1647. p40.BrickColor = BrickColor.new("Dark blue")
  1648. p40.Material = Enum.Material.SmoothPlastic
  1649. p40.Name = "apart"
  1650. p40.CFrame = CFrame.new(3.18215179, 156.94043, 40.0000381, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
  1651. p40.CanCollide = false
  1652. p40.FormFactor = Enum.FormFactor.Custom
  1653. p40.Size = Vector3.new(1.53736663, 0.256227732, 0.973665357)
  1654. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1655. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1656. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1657. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1658. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1659. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1660. b38 = Instance.new("SpecialMesh", p40)
  1661. b38.MeshType = Enum.MeshType.Torso
  1662. b38.Name = "Mesh"
  1663. p41 = Instance.new("Part", m)
  1664. p41.BrickColor = BrickColor.new("Dark blue")
  1665. p41.Material = Enum.Material.SmoothPlastic
  1666. p41.Name = "apart"
  1667. p41.CFrame = CFrame.new(4.43766689, 158.093491, 39.9999962, -1, 4.30663349e-005, 4.51109372e-010, 1.85900717e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.34494757e-005)
  1668. p41.CanCollide = false
  1669. p41.FormFactor = Enum.FormFactor.Custom
  1670. p41.Size = Vector3.new(0.409964442, 0.922419786, 0.922419786)
  1671. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1672. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1673. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1674. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1675. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1676. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1677. b39 = Instance.new("SpecialMesh", p41)
  1678. b39.MeshType = Enum.MeshType.Sphere
  1679. b39.Name = "Mesh"
  1680. p42 = Instance.new("Part", m)
  1681. p42.BrickColor = BrickColor.new("Dark blue")
  1682. p42.Material = Enum.Material.SmoothPlastic
  1683. p42.Name = "apart"
  1684. p42.CFrame = CFrame.new(3.82272005, 158.093506, 39.2825584, -3.05612848e-005, -1, -3.05175745e-005, -3.05603535e-005, 3.05185167e-005, -1, 1, -3.05603608e-005, -3.05612921e-005)
  1685. p42.CanCollide = false
  1686. p42.FormFactor = Enum.FormFactor.Custom
  1687. p42.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  1688. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1689. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1690. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1691. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1692. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1693. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1694. b40 = Instance.new("SpecialMesh", p42)
  1695. b40.MeshType = Enum.MeshType.Sphere
  1696. b40.Name = "Mesh"
  1697. p43 = Instance.new("Part", m)
  1698. p43.BrickColor = BrickColor.new("Dark blue")
  1699. p43.Material = Enum.Material.SmoothPlastic
  1700. p43.Name = "apart"
  1701. p43.CFrame = CFrame.new(4.3864212, 158.093475, 39.9999924, -1, 4.30663349e-005, 4.50970816e-010, 1.8563604e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.3449472e-005)
  1702. p43.CanCollide = false
  1703. p43.FormFactor = Enum.FormFactor.Custom
  1704. p43.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1705. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1706. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1707. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1708. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1709. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1710. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1711. b41 = Instance.new("SpecialMesh", p43)
  1712. b41.MeshType = Enum.MeshType.Cylinder
  1713. b41.Name = "Mesh"
  1714. b41.Scale = Vector3.new(0.417480975, 1, 1)
  1715. p44 = Instance.new("Part", m)
  1716. p44.BrickColor = BrickColor.new("Dark blue")
  1717. p44.Material = Enum.Material.SmoothPlastic
  1718. p44.Name = "apart"
  1719. p44.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
  1720. p44.CanCollide = false
  1721. p44.FormFactor = Enum.FormFactor.Custom
  1722. p44.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1723. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1724. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1725. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1726. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1727. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1728. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1729. b42 = Instance.new("SpecialMesh", p44)
  1730. b42.MeshType = Enum.MeshType.Cylinder
  1731. b42.Name = "Mesh"
  1732. b42.Scale = Vector3.new(0.626221538, 1, 1)
  1733. p45 = Instance.new("Part", m)
  1734. p45.BrickColor = BrickColor.new("Dark blue")
  1735. p45.Material = Enum.Material.Neon
  1736. p45.Name = "apart"
  1737. p45.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
  1738. p45.CanCollide = false
  1739. p45.FormFactor = Enum.FormFactor.Custom
  1740. p45.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1741. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1742. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1743. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1744. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1745. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1746. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1747. b43 = Instance.new("SpecialMesh", p45)
  1748. b43.MeshType = Enum.MeshType.Cylinder
  1749. b43.Name = "Mesh"
  1750. b43.Scale = Vector3.new(0.313110769, 1.00999999, 1.00999999)
  1751. p46 = Instance.new("Part", m)
  1752. p46.BrickColor = BrickColor.new("Dark blue")
  1753. p46.Material = Enum.Material.SmoothPlastic
  1754. p46.Name = "apart"
  1755. p46.CFrame = CFrame.new(3.82271981, 158.093491, 40.7174263, -3.05612884e-005, -1, -3.05175763e-005, -3.05603571e-005, 3.05185131e-005, -1, 1, -3.05603571e-005, -3.05612884e-005)
  1756. p46.CanCollide = false
  1757. p46.FormFactor = Enum.FormFactor.Custom
  1758. p46.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  1759. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1760. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1761. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1762. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1763. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1764. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1765. b44 = Instance.new("SpecialMesh", p46)
  1766. b44.MeshType = Enum.MeshType.Sphere
  1767. b44.Name = "Mesh"
  1768. p47 = Instance.new("Part", m)
  1769. p47.BrickColor = BrickColor.new("Dark blue")
  1770. --[[p47.Name = "Head"
  1771. p47.CFrame = CFrame.new(3.81999993, 157.776108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1772. p47.CanCollide = false
  1773. p47.FormFactor = Enum.FormFactor.Symmetric
  1774. p47.Size = Vector3.new(2, 1, 1)
  1775. p47.BottomSurface = Enum.SurfaceType.Smooth
  1776. p47.TopSurface = Enum.SurfaceType.Smooth--]]
  1777. p47 = Head
  1778. p48 = Instance.new("Part", m)
  1779. p48.BrickColor = BrickColor.new("Dark blue")
  1780. p48.Material = Enum.Material.Neon
  1781. p48.Name = "apart"
  1782. p48.CFrame = CFrame.new(3.05403709, 158.529068, 39.8975182, -3.05612884e-005, 1, -3.05166468e-005, 6.10798015e-005, -3.05147805e-005, -1, -1, -3.05631511e-005, -6.10788702e-005)
  1783. p48.CanCollide = false
  1784. p48.FormFactor = Enum.FormFactor.Custom
  1785. p48.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  1786. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1787. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1788. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1790. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1791. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1792. b45 = Instance.new("SpecialMesh", p48)
  1793. b45.MeshType = Enum.MeshType.Wedge
  1794. b45.Name = "Mesh"
  1795. b45.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  1796. p49 = Instance.new("Part", m)
  1797. p49.BrickColor = BrickColor.new("Dark blue")
  1798. p49.Material = Enum.Material.SmoothPlastic
  1799. p49.Name = "apart"
  1800. p49.CFrame = CFrame.new(4.69389391, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
  1801. p49.CanCollide = false
  1802. p49.FormFactor = Enum.FormFactor.Custom
  1803. p49.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  1804. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1805. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1806. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1809. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1810. b46 = Instance.new("SpecialMesh", p49)
  1811. b46.MeshType = Enum.MeshType.Brick
  1812. b46.Name = "Mesh"
  1813. b46.Scale = Vector3.new(0.417481035, 1.00999999, 0.834961772)
  1814. p50 = Instance.new("Part", m)
  1815. p50.BrickColor = BrickColor.new("Dark blue")
  1816. p50.Material = Enum.Material.SmoothPlastic
  1817. p50.Name = "apart"
  1818. p50.CFrame = CFrame.new(4.64264822, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
  1819. p50.CanCollide = false
  1820. p50.FormFactor = Enum.FormFactor.Custom
  1821. p50.Size = Vector3.new(0.245498881, 0.409964353, 0.307473242)
  1822. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1823. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1824. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1825. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1826. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1827. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1828. b47 = Instance.new("SpecialMesh", p50)
  1829. b47.MeshType = Enum.MeshType.Brick
  1830. b47.Name = "Mesh"
  1831. b47.Scale = Vector3.new(0.417481035, 1, 1)
  1832. p51 = Instance.new("Part", m)
  1833. p51.BrickColor = BrickColor.new("Dark blue")
  1834. p51.Material = Enum.Material.Neon
  1835. p51.Name = "apart"
  1836. p51.CFrame = CFrame.new(3.05403709, 158.195969, 39.8974838, -0.000274701917, -0.99999994, -3.04719488e-005, 0.000183053358, -3.05222311e-005, 1, -0.99999994, 0.000274696329, 0.000183061755)
  1837. p51.CanCollide = false
  1838. p51.FormFactor = Enum.FormFactor.Custom
  1839. p51.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1840. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1841. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1842. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1843. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1844. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1845. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1846. b48 = Instance.new("SpecialMesh", p51)
  1847. b48.MeshType = Enum.MeshType.Wedge
  1848. b48.Name = "Mesh"
  1849. b48.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  1850. p52 = Instance.new("Part", m)
  1851. p52.BrickColor = BrickColor.new("Dark blue")
  1852. p52.Material = Enum.Material.SmoothPlastic
  1853. p52.Name = "apart"
  1854. p52.CFrame = CFrame.new(3.2077713, 158.272842, 40.7174377, 0.000228409393, -0.965923071, 0.258828998, -0.000213359453, 0.258829027, 0.96592319, -0.99999994, -0.000275849539, -0.00014696976)
  1855. p52.CanCollide = false
  1856. p52.FormFactor = Enum.FormFactor.Custom
  1857. p52.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  1858. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1859. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1860. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1861. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1862. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1864. b49 = Instance.new("SpecialMesh", p52)
  1865. b49.MeshType = Enum.MeshType.Wedge
  1866. b49.Name = "Mesh"
  1867. b49.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  1868. p53 = Instance.new("Part", m)
  1869. p53.BrickColor = BrickColor.new("Dark blue")
  1870. p53.Material = Enum.Material.SmoothPlastic
  1871. p53.Name = "apart"
  1872. p53.CFrame = CFrame.new(3.82271767, 158.093475, 39.9999886, -3.05612375e-005, -1, -3.04430723e-005, -3.05603317e-005, 3.0502677e-005, -1.00000012, 1, -3.05603717e-005, -3.05613357e-005)
  1873. p53.CanCollide = false
  1874. p53.FormFactor = Enum.FormFactor.Custom
  1875. p53.Size = Vector3.new(1.43487537, 0.512455463, 0.512455463)
  1876. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1877. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1878. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1879. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1880. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1881. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1882. b50 = Instance.new("SpecialMesh", p53)
  1883. b50.MeshType = Enum.MeshType.Cylinder
  1884. b50.Name = "Mesh"
  1885. p54 = Instance.new("Part", m)
  1886. p54.BrickColor = BrickColor.new("Dark blue")
  1887. p54.Material = Enum.Material.SmoothPlastic
  1888. p54.Name = "apart"
  1889. p54.CFrame = CFrame.new(3.82271767, 158.093491, 39.4363022, 3.07936716e-008, -3.99507094e-011, 1, -1.00000012, -0.000152631663, -2.78741936e-008, 0.000152631561, -1, 2.18273732e-011)
  1890. p54.CanCollide = false
  1891. p54.FormFactor = Enum.FormFactor.Custom
  1892. p54.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  1893. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1894. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1895. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1896. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1897. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1898. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1899. b51 = Instance.new("SpecialMesh", p54)
  1900. b51.MeshType = Enum.MeshType.Torso
  1901. b51.Name = "Mesh"
  1902. b51.Scale = Vector3.new(1, 0.417480916, 1)
  1903. p55 = Instance.new("Part", m)
  1904. p55.BrickColor = BrickColor.new("Dark blue")
  1905. p55.Material = Enum.Material.SmoothPlastic
  1906. p55.Name = "apart"
  1907. p55.CFrame = CFrame.new(3.05403447, 158.195984, 39.6669159, -0.000274701975, -0.99999994, -3.05464528e-005, 0.000183053344, -3.05380709e-005, 1.00000012, -1, 0.000274696329, 0.000183061798)
  1908. p55.CanCollide = false
  1909. p55.FormFactor = Enum.FormFactor.Custom
  1910. p55.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  1911. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1912. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1913. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1914. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1915. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1916. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1917. b52 = Instance.new("SpecialMesh", p55)
  1918. b52.MeshType = Enum.MeshType.Wedge
  1919. b52.Name = "Mesh"
  1920. p56 = Instance.new("Part", m)
  1921. p56.BrickColor = BrickColor.new("Dark blue")
  1922. p56.Material = Enum.Material.SmoothPlastic
  1923. p56.Name = "apart"
  1924. p56.CFrame = CFrame.new(2.7465601, 158.529114, 39.8975143, -0.000274701975, -0.999999881, -3.05464528e-005, 0.000183053344, -3.05380672e-005, 1.00000012, -1, 0.0002746963, 0.000183061798)
  1925. p56.CanCollide = false
  1926. p56.FormFactor = Enum.FormFactor.Custom
  1927. p56.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  1928. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1929. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1930. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1931. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1932. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1933. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1934. b53 = Instance.new("SpecialMesh", p56)
  1935. b53.MeshType = Enum.MeshType.Wedge
  1936. b53.Name = "Mesh"
  1937. b53.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  1938. p57 = Instance.new("Part", m)
  1939. p57.BrickColor = BrickColor.new("Dark blue")
  1940. p57.Material = Enum.Material.SmoothPlastic
  1941. p57.Name = "apart"
  1942. p57.CFrame = CFrame.new(3.05403423, 158.529099, 40.1024895, -3.05613503e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989571e-005, -1.00000012, -1, -3.05630856e-005, -6.10789066e-005)
  1943. p57.CanCollide = false
  1944. p57.FormFactor = Enum.FormFactor.Custom
  1945. p57.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  1946. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1947. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1948. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1949. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1950. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1951. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1952. b54 = Instance.new("SpecialMesh", p57)
  1953. b54.MeshType = Enum.MeshType.Wedge
  1954. b54.Name = "Mesh"
  1955. b54.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  1956. p58 = Instance.new("Part", m)
  1957. p58.BrickColor = BrickColor.new("Dark blue")
  1958. p58.Material = Enum.Material.SmoothPlastic
  1959. p58.Name = "apart"
  1960. p58.CFrame = CFrame.new(3.82271719, 158.093506, 40.5636864, -1.18223397e-007, 6.08786355e-011, 0.999999881, 1.00000012, -4.36484697e-008, 5.95373422e-008, 4.37539711e-008, 1, 6.57935928e-011)
  1961. p58.CanCollide = false
  1962. p58.FormFactor = Enum.FormFactor.Custom
  1963. p58.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  1964. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1965. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1966. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1967. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1968. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1969. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1970. b55 = Instance.new("SpecialMesh", p58)
  1971. b55.MeshType = Enum.MeshType.Torso
  1972. b55.Name = "Mesh"
  1973. b55.Scale = Vector3.new(1, 0.417480916, 1)
  1974. p59 = Instance.new("Part", m)
  1975. p59.BrickColor = BrickColor.new("Dark blue")
  1976. p59.Material = Enum.Material.SmoothPlastic
  1977. p59.Name = "apart"
  1978. p59.CFrame = CFrame.new(3.82271719, 158.093506, 39.9999809, 5.34067403e-005, -0.999999881, -4.31585322e-005, 1.00000012, 5.34654391e-005, 1.43842538e-009, 9.74580416e-010, -4.31586632e-005, 1)
  1979. p59.CanCollide = false
  1980. p59.FormFactor = Enum.FormFactor.Custom
  1981. p59.Size = Vector3.new(1.02491105, 1.02491093, 1.02491093)
  1982. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1983. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1984. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1985. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1986. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1987. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1988. b56 = Instance.new("SpecialMesh", p59)
  1989. b56.MeshType = Enum.MeshType.Brick
  1990. b56.Name = "Mesh"
  1991. p60 = Instance.new("Part", m)
  1992. p60.BrickColor = BrickColor.new("Dark blue")
  1993. p60.Material = Enum.Material.Neon
  1994. p60.Name = "apart"
  1995. p60.CFrame = CFrame.new(3.05403423, 158.529114, 40.1024895, -3.05613539e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989553e-005, -1.00000012, -1, -3.05630856e-005, -6.10789139e-005)
  1996. p60.CanCollide = false
  1997. p60.FormFactor = Enum.FormFactor.Custom
  1998. p60.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  1999. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2000. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2001. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2002. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2003. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2004. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2005. b57 = Instance.new("SpecialMesh", p60)
  2006. b57.MeshType = Enum.MeshType.Wedge
  2007. b57.Name = "Mesh"
  2008. b57.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  2009. p61 = Instance.new("Part", m)
  2010. p61.BrickColor = BrickColor.new("Dark blue")
  2011. p61.Material = Enum.Material.SmoothPlastic
  2012. p61.Name = "apart"
  2013. p61.CFrame = CFrame.new(3.05403423, 158.19603, 39.89748, -0.000274701946, -0.999999821, -3.05464564e-005, 0.000183053315, -3.05380599e-005, 1.00000012, -0.99999994, 0.000274696271, 0.000183061798)
  2014. p61.CanCollide = false
  2015. p61.FormFactor = Enum.FormFactor.Custom
  2016. p61.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2017. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2018. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2019. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2020. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2021. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2022. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2023. b58 = Instance.new("SpecialMesh", p61)
  2024. b58.MeshType = Enum.MeshType.Wedge
  2025. b58.Name = "Mesh"
  2026. b58.Scale = Vector3.new(0.417481065, 1, 1)
  2027. p62 = Instance.new("Part", m)
  2028. p62.BrickColor = BrickColor.new("Dark blue")
  2029. p62.Material = Enum.Material.SmoothPlastic
  2030. p62.Name = "apart"
  2031. p62.CFrame = CFrame.new(3.20776844, 158.272903, 40.7686882, 0.000228409335, -0.965923011, 0.258828908, -0.000213359541, 0.258829057, 0.965923309, -0.99999994, -0.000275849598, -0.000146969687)
  2032. p62.CanCollide = false
  2033. p62.FormFactor = Enum.FormFactor.Custom
  2034. p62.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2035. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2036. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2037. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2038. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2039. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2040. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2041. b59 = Instance.new("SpecialMesh", p62)
  2042. b59.MeshType = Enum.MeshType.Wedge
  2043. b59.Name = "Mesh"
  2044. b59.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2045. p63 = Instance.new("Part", m)
  2046. p63.BrickColor = BrickColor.new("Dark blue")
  2047. p63.Material = Enum.Material.SmoothPlastic
  2048. p63.Name = "apart"
  2049. p63.CFrame = CFrame.new(3.05403471, 158.196045, 40.1024666, -0.000274702004, -0.999999821, -3.05771828e-005, 0.000183053315, -3.04877758e-005, 1.00000024, -1, 0.000274696242, 0.000183061857)
  2050. p63.CanCollide = false
  2051. p63.FormFactor = Enum.FormFactor.Custom
  2052. p63.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2053. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2054. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2055. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2056. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2057. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2058. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2059. b60 = Instance.new("SpecialMesh", p63)
  2060. b60.MeshType = Enum.MeshType.Wedge
  2061. b60.Name = "Mesh"
  2062. b60.Scale = Vector3.new(0.417481065, 1, 1)
  2063. p64 = Instance.new("Part", m)
  2064. p64.BrickColor = BrickColor.new("Dark blue")
  2065. p64.Material = Enum.Material.SmoothPlastic
  2066. p64.Name = "apart"
  2067. p64.CFrame = CFrame.new(2.7465601, 158.529175, 40.3330841, -0.000274702004, -0.999999762, -3.05771828e-005, 0.000183053315, -3.0487774e-005, 1.00000024, -1, 0.000274696213, 0.000183061857)
  2068. p64.CanCollide = false
  2069. p64.FormFactor = Enum.FormFactor.Custom
  2070. p64.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  2071. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2073. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2074. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2075. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2076. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2077. b61 = Instance.new("SpecialMesh", p64)
  2078. b61.MeshType = Enum.MeshType.Wedge
  2079. b61.Name = "Mesh"
  2080. b61.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  2081. p65 = Instance.new("Part", m)
  2082. p65.BrickColor = BrickColor.new("Dark blue")
  2083. p65.Material = Enum.Material.SmoothPlastic
  2084. p65.Name = "apart"
  2085. p65.CFrame = CFrame.new(2.74655938, 158.52919, 39.6668968, -0.000274702004, -0.999999702, -3.05771828e-005, 0.000183053315, -3.04877722e-005, 1.00000024, -1, 0.000274696184, 0.000183061857)
  2086. p65.CanCollide = false
  2087. p65.FormFactor = Enum.FormFactor.Custom
  2088. p65.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  2089. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2091. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2092. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2093. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2094. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2095. b62 = Instance.new("SpecialMesh", p65)
  2096. b62.MeshType = Enum.MeshType.Wedge
  2097. b62.Name = "Mesh"
  2098. b62.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  2099. p66 = Instance.new("Part", m)
  2100. p66.BrickColor = BrickColor.new("Dark blue")
  2101. p66.Material = Enum.Material.SmoothPlastic
  2102. p66.Name = "apart"
  2103. p66.CFrame = CFrame.new(3.05403376, 158.196106, 40.3330727, -0.000274702004, -0.999999642, -3.05771828e-005, 0.000183053315, -3.04877703e-005, 1.00000024, -1, 0.000274696155, 0.000183061857)
  2104. p66.CanCollide = false
  2105. p66.FormFactor = Enum.FormFactor.Custom
  2106. p66.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  2107. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2109. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2110. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2111. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2112. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2113. b63 = Instance.new("SpecialMesh", p66)
  2114. b63.MeshType = Enum.MeshType.Wedge
  2115. b63.Name = "Mesh"
  2116. p67 = Instance.new("Part", m)
  2117. p67.BrickColor = BrickColor.new("Dark blue")
  2118. p67.Material = Enum.Material.Neon
  2119. p67.Name = "apart"
  2120. p67.CFrame = CFrame.new(3.05403376, 158.196106, 40.1024437, -0.000274702004, -0.999999583, -3.05771828e-005, 0.000183053315, -3.04877685e-005, 1.00000024, -1, 0.000274696125, 0.000183061857)
  2121. p67.CanCollide = false
  2122. p67.FormFactor = Enum.FormFactor.Custom
  2123. p67.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2124. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2126. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2128. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2129. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2130. b64 = Instance.new("SpecialMesh", p67)
  2131. b64.MeshType = Enum.MeshType.Wedge
  2132. b64.Name = "Mesh"
  2133. b64.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  2134. p68 = Instance.new("Part", m)
  2135. p68.BrickColor = BrickColor.new("Dark blue")
  2136. p68.Material = Enum.Material.SmoothPlastic
  2137. p68.Name = "apart"
  2138. p68.CFrame = CFrame.new(2.74655938, 158.529221, 40.1024551, -0.000274702004, -0.999999523, -3.05771828e-005, 0.000183053315, -3.04877667e-005, 1.00000024, -1, 0.000274696096, 0.000183061857)
  2139. p68.CanCollide = false
  2140. p68.FormFactor = Enum.FormFactor.Custom
  2141. p68.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2142. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2144. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2145. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2146. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2147. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2148. b65 = Instance.new("SpecialMesh", p68)
  2149. b65.MeshType = Enum.MeshType.Wedge
  2150. b65.Name = "Mesh"
  2151. b65.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  2152. p69 = Instance.new("Part", m)
  2153. p69.BrickColor = BrickColor.new("Dark blue")
  2154. p69.Material = Enum.Material.SmoothPlastic
  2155. p69.Name = "apart"
  2156. p69.CFrame = CFrame.new(3.05403352, 158.529205, 40.3330612, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  2157. p69.CanCollide = false
  2158. p69.FormFactor = Enum.FormFactor.Custom
  2159. p69.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  2160. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2161. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2162. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2163. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2164. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2165. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2166. b66 = Instance.new("SpecialMesh", p69)
  2167. b66.MeshType = Enum.MeshType.Wedge
  2168. b66.Name = "Mesh"
  2169. b66.Scale = Vector3.new(1, 1, 0.626221359)
  2170. p70 = Instance.new("Part", m)
  2171. p70.BrickColor = BrickColor.new("Dark blue")
  2172. p70.Material = Enum.Material.SmoothPlastic
  2173. p70.Name = "apart"
  2174. p70.CFrame = CFrame.new(3.05403328, 158.529221, 39.89748, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  2175. p70.CanCollide = false
  2176. p70.FormFactor = Enum.FormFactor.Custom
  2177. p70.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  2178. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2179. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2180. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2181. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2182. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2183. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2184. b67 = Instance.new("SpecialMesh", p70)
  2185. b67.MeshType = Enum.MeshType.Wedge
  2186. b67.Name = "Mesh"
  2187. b67.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  2188. p71 = Instance.new("Part", m)
  2189. p71.BrickColor = BrickColor.new("Dark blue")
  2190. p71.Material = Enum.Material.Neon
  2191. p71.Name = "apart"
  2192. p71.CFrame = CFrame.new(3.82271624, 158.093628, 40.6661491, -3.05610884e-005, -0.999999523, -3.04123096e-005, -3.05602262e-005, 3.05529975e-005, -1.00000024, 1, -3.05606263e-005, -3.0561383e-005)
  2193. p71.CanCollide = false
  2194. p71.FormFactor = Enum.FormFactor.Custom
  2195. p71.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2196. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2197. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2198. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2199. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2200. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2201. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2202. b68 = Instance.new("SpecialMesh", p71)
  2203. b68.MeshType = Enum.MeshType.Cylinder
  2204. b68.Name = "Mesh"
  2205. b68.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  2206. p72 = Instance.new("Part", m)
  2207. p72.BrickColor = BrickColor.new("Dark blue")
  2208. p72.Material = Enum.Material.SmoothPlastic
  2209. p72.Name = "apart"
  2210. p72.CFrame = CFrame.new(3.05403328, 158.529221, 39.6668777, -3.05614631e-005, 0.999999523, -3.04113764e-005, 6.10796851e-005, -3.05492686e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  2211. p72.CanCollide = false
  2212. p72.FormFactor = Enum.FormFactor.Custom
  2213. p72.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  2214. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2217. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2218. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2219. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2220. b69 = Instance.new("SpecialMesh", p72)
  2221. b69.MeshType = Enum.MeshType.Wedge
  2222. b69.Name = "Mesh"
  2223. b69.Scale = Vector3.new(1, 1, 0.626221359)
  2224. p73 = Instance.new("Part", m)
  2225. p73.BrickColor = BrickColor.new("Dark blue")
  2226. p73.Material = Enum.Material.SmoothPlastic
  2227. p73.Name = "apart"
  2228. p73.CFrame = CFrame.new(3.20776749, 158.27298, 39.2312889, 0.000228409161, -0.965922713, 0.258828849, -0.000213359599, 0.258829117, 0.965923429, -1, -0.00027584983, -0.000146969658)
  2229. p73.CanCollide = false
  2230. p73.FormFactor = Enum.FormFactor.Custom
  2231. p73.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2232. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2236. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2237. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2238. b70 = Instance.new("SpecialMesh", p73)
  2239. b70.MeshType = Enum.MeshType.Wedge
  2240. b70.Name = "Mesh"
  2241. b70.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2242. p74 = Instance.new("Part", m)
  2243. p74.BrickColor = BrickColor.new("Dark blue")
  2244. p74.Material = Enum.Material.SmoothPlastic
  2245. p74.Name = "apart"
  2246. p74.CFrame = CFrame.new(3.20777059, 158.27298, 39.282547, 0.000228409161, -0.965922713, 0.258828819, -0.000213359614, 0.258829117, 0.965923369, -1.00000012, -0.000275849859, -0.000146969644)
  2247. p74.CanCollide = false
  2248. p74.FormFactor = Enum.FormFactor.Custom
  2249. p74.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2250. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2251. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2252. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2253. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2254. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2255. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2256. b71 = Instance.new("SpecialMesh", p74)
  2257. b71.MeshType = Enum.MeshType.Wedge
  2258. b71.Name = "Mesh"
  2259. b71.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2260. p75 = Instance.new("Part", m)
  2261. p75.BrickColor = BrickColor.new("Dark blue")
  2262. p75.Material = Enum.Material.Neon
  2263. p75.Name = "apart"
  2264. p75.CFrame = CFrame.new(3.82271242, 158.093628, 39.3337746, -3.05610592e-005, -0.999999583, -3.03685665e-005, -3.05602152e-005, 3.05473804e-005, -1.00000036, 1.00000024, -3.05606482e-005, -3.05614085e-005)
  2265. p75.CanCollide = false
  2266. p75.FormFactor = Enum.FormFactor.Custom
  2267. p75.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2268. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2269. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2270. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2271. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2272. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2274. b72 = Instance.new("SpecialMesh", p75)
  2275. b72.MeshType = Enum.MeshType.Cylinder
  2276. b72.Name = "Mesh"
  2277. b72.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  2278. p76 = Instance.new("Part", m)
  2279. p76.BrickColor = BrickColor.new("Dark blue")
  2280. p76.Material = Enum.Material.Neon
  2281. p76.Name = "apart"
  2282. p76.CFrame = CFrame.new(4.6938858, 158.093613, 39.999958, -0.999999583, 4.30660984e-005, 1.49448169e-007, 3.07118171e-008, 5.34493374e-005, -1.00000036, -4.30666332e-005, -1.00000024, -5.34495957e-005)
  2283. p76.CanCollide = false
  2284. p76.FormFactor = Enum.FormFactor.Custom
  2285. p76.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  2286. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2287. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2289. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2290. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2291. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2292. b73 = Instance.new("SpecialMesh", p76)
  2293. b73.MeshType = Enum.MeshType.Brick
  2294. b73.Name = "Mesh"
  2295. b73.Scale = Vector3.new(0.421655834, 1.01999998, 0.333984703)
  2296. p77 = Instance.new("Part", m)
  2297. p77.BrickColor = BrickColor.new("Dark blue")
  2298. p77.Material = Enum.Material.Neon
  2299. p77.Name = "apart"
  2300. p77.CFrame = CFrame.new(2.74655533, 158.529221, 40.1024628, -0.000274702033, -0.999999523, -3.06209367e-005, 0.000183053286, -3.04933837e-005, 1.00000036, -1.00000012, 0.000274696125, 0.0001830619)
  2301. p77.CanCollide = false
  2302. p77.FormFactor = Enum.FormFactor.Custom
  2303. p77.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2304. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2305. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2306. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2307. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2308. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2309. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2310. b74 = Instance.new("SpecialMesh", p77)
  2311. b74.MeshType = Enum.MeshType.Wedge
  2312. b74.Name = "Mesh"
  2313. b74.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  2314. p78 = Instance.new("Part", m)
  2315. p78.BrickColor = BrickColor.new("Dark blue")
  2316. p78.Material = Enum.Material.Neon
  2317. p78.Name = "apart"
  2318. p78.CFrame = CFrame.new(2.74655509, 158.529236, 39.8974838, -0.000274702033, -0.999999464, -3.06209367e-005, 0.000183053286, -3.04933819e-005, 1.00000036, -1.00000012, 0.000274696096, 0.0001830619)
  2319. p78.CanCollide = false
  2320. p78.FormFactor = Enum.FormFactor.Custom
  2321. p78.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2322. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2324. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2326. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2327. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2328. b75 = Instance.new("SpecialMesh", p78)
  2329. b75.MeshType = Enum.MeshType.Wedge
  2330. b75.Name = "Mesh"
  2331. b75.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  2332. p79 = Instance.new("Part", m)
  2333. p79.BrickColor = BrickColor.new("Dark blue")
  2334. p79.Material = Enum.Material.SmoothPlastic
  2335. p79.Name = "apart"
  2336. p79.CFrame = CFrame.new(3.82272029, 157.171036, 41.537384, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
  2337. p79.CanCollide = false
  2338. p79.FormFactor = Enum.FormFactor.Custom
  2339. p79.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2340. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2341. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2342. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2343. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2344. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2345. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2346. b76 = Instance.new("SpecialMesh", p79)
  2347. b76.MeshType = Enum.MeshType.Brick
  2348. b76.Name = "Mesh"
  2349. b76.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2350. p80 = Instance.new("Part", m)
  2351. p80.BrickColor = BrickColor.new("Dark blue")
  2352. p80.Material = Enum.Material.SmoothPlastic
  2353. p80.Name = "apart"
  2354. p80.CFrame = CFrame.new(3.82272029, 157.350388, 41.9729614, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
  2355. p80.CanCollide = false
  2356. p80.FormFactor = Enum.FormFactor.Custom
  2357. p80.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2358. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2359. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2360. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2361. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2362. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2363. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2364. b77 = Instance.new("SpecialMesh", p80)
  2365. b77.MeshType = Enum.MeshType.Cylinder
  2366. b77.Name = "Mesh"
  2367. b77.Scale = Vector3.new(1.01999998, 1, 1)
  2368. p81 = Instance.new("Part", m)
  2369. p81.BrickColor = BrickColor.new("Dark blue")
  2370. p81.Material = Enum.Material.SmoothPlastic
  2371. p81.Name = "apart"
  2372. p81.CFrame = CFrame.new(3.41275811, 157.555359, 42.3316841, 1, 1.11727404e-005, -4.16862822e-005, -4.16866351e-005, 0.500085592, -0.865975857, 1.11713871e-005, 0.865975857, 0.500085592)
  2373. p81.CanCollide = false
  2374. p81.FormFactor = Enum.FormFactor.Custom
  2375. p81.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2376. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2377. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2378. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2379. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2380. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2381. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2382. b78 = Instance.new("SpecialMesh", p81)
  2383. b78.MeshType = Enum.MeshType.Wedge
  2384. b78.Name = "Mesh"
  2385. b78.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2386. p82 = Instance.new("Part", m)
  2387. p82.BrickColor = BrickColor.new("Dark blue")
  2388. p82.Material = Enum.Material.SmoothPlastic
  2389. p82.Name = "apart"
  2390. p82.CFrame = CFrame.new(3.82271981, 156.018005, 41.4092636, 1, 3.05180438e-005, -3.05171125e-005, -3.05171106e-005, 0.99999994, 3.05180401e-005, 3.05180401e-005, -3.05171106e-005, 0.99999994)
  2391. p82.CanCollide = false
  2392. p82.FormFactor = Enum.FormFactor.Custom
  2393. p82.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  2394. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2395. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2396. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2397. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2398. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2399. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2400. b79 = Instance.new("SpecialMesh", p82)
  2401. b79.MeshType = Enum.MeshType.Wedge
  2402. b79.Name = "Mesh"
  2403. b79.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2404. p83 = Instance.new("Part", m)
  2405. p83.BrickColor = BrickColor.new("Dark blue")
  2406. p83.Material = Enum.Material.SmoothPlastic
  2407. p83.Name = "apart"
  2408. p83.CFrame = CFrame.new(3.82271981, 156.018005, 41.9217148, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  2409. p83.CanCollide = false
  2410. p83.FormFactor = Enum.FormFactor.Custom
  2411. p83.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2412. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2413. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2414. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2415. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2416. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2417. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2418. b80 = Instance.new("SpecialMesh", p83)
  2419. b80.MeshType = Enum.MeshType.Brick
  2420. b80.Name = "Mesh"
  2421. b80.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2422. p84 = Instance.new("Part", m)
  2423. p84.BrickColor = BrickColor.new("Dark blue")
  2424. p84.Material = Enum.Material.SmoothPlastic
  2425. p84.Name = "apart"
  2426. p84.CFrame = CFrame.new(3.82271981, 155.633667, 41.5373764, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  2427. p84.CanCollide = false
  2428. p84.FormFactor = Enum.FormFactor.Custom
  2429. p84.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2430. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2431. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2432. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2433. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2434. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2435. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2436. b81 = Instance.new("SpecialMesh", p84)
  2437. b81.MeshType = Enum.MeshType.Brick
  2438. b81.Name = "Mesh"
  2439. b81.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2440. p85 = Instance.new("Part", m)
  2441. p85.BrickColor = BrickColor.new("Dark blue")
  2442. p85.Material = Enum.Material.SmoothPlastic
  2443. p85.Name = "apart"
  2444. p85.CFrame = CFrame.new(4.23268604, 157.555389, 42.331665, 1, 1.11727377e-005, -4.16862786e-005, -4.16866387e-005, 0.500085652, -0.865975916, 1.1171388e-005, 0.865975916, 0.500085652)
  2445. p85.CanCollide = false
  2446. p85.FormFactor = Enum.FormFactor.Custom
  2447. p85.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2448. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2449. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2450. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2451. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2452. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2453. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2454. b82 = Instance.new("SpecialMesh", p85)
  2455. b82.MeshType = Enum.MeshType.Wedge
  2456. b82.Name = "Mesh"
  2457. b82.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2458. p86 = Instance.new("Part", m)
  2459. p86.BrickColor = BrickColor.new("Dark blue")
  2460. p86.Material = Enum.Material.SmoothPlastic
  2461. p86.Name = "apart"
  2462. p86.CFrame = CFrame.new(3.82272005, 156.402374, 41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2463. p86.CanCollide = false
  2464. p86.FormFactor = Enum.FormFactor.Custom
  2465. p86.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  2466. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2467. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2468. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2469. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2470. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2471. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2472. b83 = Instance.new("SpecialMesh", p86)
  2473. b83.MeshType = Enum.MeshType.Wedge
  2474. b83.Name = "Mesh"
  2475. b83.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2476. p87 = Instance.new("Part", m)
  2477. p87.BrickColor = BrickColor.new("Dark blue")
  2478. p87.Material = Enum.Material.SmoothPlastic
  2479. p87.Name = "apart"
  2480. p87.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2481. p87.CanCollide = false
  2482. p87.FormFactor = Enum.FormFactor.Custom
  2483. p87.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  2484. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2485. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2486. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2487. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2488. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2489. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2490. b84 = Instance.new("SpecialMesh", p87)
  2491. b84.MeshType = Enum.MeshType.Brick
  2492. b84.Name = "Mesh"
  2493. b84.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  2494. p88 = Instance.new("Part", m)
  2495. p88.BrickColor = BrickColor.new("Dark blue")
  2496. p88.Material = Enum.Material.SmoothPlastic
  2497. p88.Name = "apart"
  2498. p88.CFrame = CFrame.new(3.82272005, 157.350418, 41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2499. p88.CanCollide = false
  2500. p88.FormFactor = Enum.FormFactor.Custom
  2501. p88.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2502. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2503. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2504. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2505. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2507. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2508. b85 = Instance.new("SpecialMesh", p88)
  2509. b85.MeshType = Enum.MeshType.Cylinder
  2510. b85.Name = "Mesh"
  2511. b85.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  2512. p89 = Instance.new("Part", m)
  2513. p89.BrickColor = BrickColor.new("Dark blue")
  2514. p89.Material = Enum.Material.Neon
  2515. p89.Name = "apart"
  2516. p89.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2517. p89.CanCollide = false
  2518. p89.FormFactor = Enum.FormFactor.Custom
  2519. p89.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  2520. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2521. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2522. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2523. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2524. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2525. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2526. b86 = Instance.new("SpecialMesh", p89)
  2527. b86.MeshType = Enum.MeshType.Brick
  2528. b86.Name = "Mesh"
  2529. b86.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  2530. p90 = Instance.new("Part", m)
  2531. p90.BrickColor = BrickColor.new("Dark blue")
  2532. p90.Material = Enum.Material.SmoothPlastic
  2533. p90.Name = "apart"
  2534. p90.CFrame = CFrame.new(3.82272005, 156.402374, 41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2535. p90.CanCollide = false
  2536. p90.FormFactor = Enum.FormFactor.Custom
  2537. p90.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2538. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2539. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2540. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2541. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2542. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2543. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2544. --[[p91 = Instance.new("Part", m)
  2545. p91.BrickColor = BrickColor.new("Bright orange")
  2546. p91.Name = "Right Arm"
  2547. p91.CFrame = CFrame.new(3.81999993, 156.276108, 41.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2548. p91.CanCollide = false
  2549. p91.FormFactor = Enum.FormFactor.Symmetric
  2550. p91.Size = Vector3.new(1, 2, 1)
  2551. p91.BottomSurface = Enum.SurfaceType.Smooth
  2552. p91.TopSurface = Enum.SurfaceType.Smooth--]]
  2553. p91 = RightArm
  2554. p92 = Instance.new("Part", m)
  2555. p92.BrickColor = BrickColor.new("Dark blue")
  2556. p92.Material = Enum.Material.SmoothPlastic
  2557. p92.Name = "apart"
  2558. p92.CFrame = CFrame.new(3.82272005, 154.35257, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2559. p92.CanCollide = false
  2560. p92.FormFactor = Enum.FormFactor.Custom
  2561. p92.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2562. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2563. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2564. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2565. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2566. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2567. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2568. --[[p93 = Instance.new("Part", m)
  2569. p93.BrickColor = BrickColor.new("Earth green")
  2570. p93.Name = "Left Leg"
  2571. p93.CFrame = CFrame.new(3.81999993, 154.276123, 39.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2572. p93.CanCollide = false
  2573. p93.FormFactor = Enum.FormFactor.Symmetric
  2574. p93.Size = Vector3.new(1, 2, 1)
  2575. p93.BottomSurface = Enum.SurfaceType.Smooth
  2576. p93.TopSurface = Enum.SurfaceType.Smooth--]]
  2577. p93 = LeftLeg
  2578. p94 = Instance.new("Part", m)
  2579. p94.BrickColor = BrickColor.new("Dark blue")
  2580. p94.Material = Enum.Material.SmoothPlastic
  2581. p94.Name = "apart"
  2582. p94.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2583. p94.CanCollide = false
  2584. p94.FormFactor = Enum.FormFactor.Custom
  2585. p94.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2586. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2591. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2592. b87 = Instance.new("SpecialMesh", p94)
  2593. b87.MeshType = Enum.MeshType.Brick
  2594. b87.Name = "Mesh"
  2595. b87.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2596. p95 = Instance.new("Part", m)
  2597. p95.BrickColor = BrickColor.new("Dark blue")
  2598. p95.Material = Enum.Material.SmoothPlastic
  2599. p95.Name = "apart"
  2600. p95.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2601. p95.CanCollide = false
  2602. p95.FormFactor = Enum.FormFactor.Custom
  2603. p95.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2604. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2608. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2609. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2610. b88 = Instance.new("SpecialMesh", p95)
  2611. b88.MeshType = Enum.MeshType.Brick
  2612. b88.Name = "Mesh"
  2613. b88.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  2614. p96 = Instance.new("Part", m)
  2615. p96.BrickColor = BrickColor.new("Dark blue")
  2616. p96.Material = Enum.Material.Neon
  2617. p96.Name = "apart"
  2618. p96.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2619. p96.CanCollide = false
  2620. p96.FormFactor = Enum.FormFactor.Custom
  2621. p96.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2622. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. b89 = Instance.new("SpecialMesh", p96)
  2629. b89.MeshType = Enum.MeshType.Brick
  2630. b89.Name = "Mesh"
  2631. b89.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  2632. p97 = Instance.new("Part", m)
  2633. p97.BrickColor = BrickColor.new("Dark blue")
  2634. p97.Material = Enum.Material.Neon
  2635. p97.Name = "apart"
  2636. p97.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2637. p97.CanCollide = false
  2638. p97.FormFactor = Enum.FormFactor.Custom
  2639. p97.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2640. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2642. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. b90 = Instance.new("SpecialMesh", p97)
  2647. b90.MeshType = Enum.MeshType.Brick
  2648. b90.Name = "Mesh"
  2649. b90.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  2650. p98 = Instance.new("Part", m)
  2651. p98.BrickColor = BrickColor.new("Dark blue")
  2652. p98.Material = Enum.Material.SmoothPlastic
  2653. p98.Name = "apart"
  2654. p98.CFrame = CFrame.new(3.56649303, 154.045105, 39.4362946, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
  2655. p98.CanCollide = false
  2656. p98.FormFactor = Enum.FormFactor.Custom
  2657. p98.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  2658. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2659. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2660. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2661. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2662. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. b91 = Instance.new("SpecialMesh", p98)
  2665. b91.MeshType = Enum.MeshType.Wedge
  2666. b91.Name = "Mesh"
  2667. b91.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2668. p99 = Instance.new("Part", m)
  2669. p99.BrickColor = BrickColor.new("Dark blue")
  2670. p99.Material = Enum.Material.SmoothPlastic
  2671. p99.Name = "apart"
  2672. p99.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
  2673. p99.CanCollide = false
  2674. p99.FormFactor = Enum.FormFactor.Custom
  2675. p99.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  2676. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2677. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2678. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2679. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2680. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2682. b92 = Instance.new("SpecialMesh", p99)
  2683. b92.MeshType = Enum.MeshType.Torso
  2684. b92.Name = "Mesh"
  2685. b92.Scale = Vector3.new(1, 1, 1.01999998)
  2686. p100 = Instance.new("Part", m)
  2687. p100.BrickColor = BrickColor.new("Dark blue")
  2688. p100.Material = Enum.Material.SmoothPlastic
  2689. p100.Name = "apart"
  2690. p100.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2691. p100.CanCollide = false
  2692. p100.FormFactor = Enum.FormFactor.Custom
  2693. p100.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2694. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2695. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2696. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2697. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2698. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2700. b93 = Instance.new("SpecialMesh", p100)
  2701. b93.MeshType = Enum.MeshType.Brick
  2702. b93.Name = "Mesh"
  2703. b93.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  2704. p101 = Instance.new("Part", m)
  2705. p101.BrickColor = BrickColor.new("Dark blue")
  2706. p101.Material = Enum.Material.SmoothPlastic
  2707. p101.Name = "apart"
  2708. p101.CFrame = CFrame.new(3.82272005, 153.378906, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2709. p101.CanCollide = false
  2710. p101.FormFactor = Enum.FormFactor.Custom
  2711. p101.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  2712. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2714. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. b94 = Instance.new("SpecialMesh", p101)
  2719. b94.MeshType = Enum.MeshType.Brick
  2720. b94.Name = "Mesh"
  2721. b94.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  2722. p102 = Instance.new("Part", m)
  2723. p102.BrickColor = BrickColor.new("Dark blue")
  2724. p102.Material = Enum.Material.SmoothPlastic
  2725. p102.Name = "apart"
  2726. p102.CFrame = CFrame.new(3.82272005, 153.635132, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2727. p102.CanCollide = false
  2728. p102.FormFactor = Enum.FormFactor.Custom
  2729. p102.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  2730. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2733. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2734. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. b95 = Instance.new("SpecialMesh", p102)
  2737. b95.MeshType = Enum.MeshType.Brick
  2738. b95.Name = "Mesh"
  2739. b95.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2740. --[[p103 = Instance.new("Part", m)
  2741. p103.BrickColor = BrickColor.new("Dark blue")
  2742. p103.Name = "Right Leg"
  2743. p103.CFrame = CFrame.new(3.81999993, 154.276123, 40.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2744. p103.CanCollide = false
  2745. p103.FormFactor = Enum.FormFactor.Symmetric
  2746. p103.Size = Vector3.new(1, 2, 1)
  2747. p103.BottomSurface = Enum.SurfaceType.Smooth
  2748. p103.TopSurface = Enum.SurfaceType.Smooth--]]
  2749. p103 = RightLeg
  2750. p104 = Instance.new("Part", m)
  2751. p104.BrickColor = BrickColor.new("Dark blue")
  2752. p104.Material = Enum.Material.SmoothPlastic
  2753. p104.Name = "apart"
  2754. p104.CFrame = CFrame.new(3.82272005, 154.35257, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2755. p104.CanCollide = false
  2756. p104.FormFactor = Enum.FormFactor.Custom
  2757. p104.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2758. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2763. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2764. p105 = Instance.new("Part", m)
  2765. p105.BrickColor = BrickColor.new("Dark blue")
  2766. p105.Material = Enum.Material.SmoothPlastic
  2767. p105.Name = "apart"
  2768. p105.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2769. p105.CanCollide = false
  2770. p105.FormFactor = Enum.FormFactor.Custom
  2771. p105.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2772. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2773. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2774. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2775. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2776. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. b96 = Instance.new("SpecialMesh", p105)
  2779. b96.MeshType = Enum.MeshType.Brick
  2780. b96.Name = "Mesh"
  2781. b96.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  2782. p106 = Instance.new("Part", m)
  2783. p106.BrickColor = BrickColor.new("Dark blue")
  2784. p106.Material = Enum.Material.SmoothPlastic
  2785. p106.Name = "apart"
  2786. p106.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2787. p106.CanCollide = false
  2788. p106.FormFactor = Enum.FormFactor.Custom
  2789. p106.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2790. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2791. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2792. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2793. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2794. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. b97 = Instance.new("SpecialMesh", p106)
  2797. b97.MeshType = Enum.MeshType.Brick
  2798. b97.Name = "Mesh"
  2799. b97.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2800. p107 = Instance.new("Part", m)
  2801. p107.BrickColor = BrickColor.new("Dark blue")
  2802. p107.Material = Enum.Material.SmoothPlastic
  2803. p107.Name = "apart"
  2804. p107.CFrame = CFrame.new(3.56649303, 154.045105, 40.5636902, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
  2805. p107.CanCollide = false
  2806. p107.FormFactor = Enum.FormFactor.Custom
  2807. p107.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  2808. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2809. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2810. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2811. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2812. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2813. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2814. b98 = Instance.new("SpecialMesh", p107)
  2815. b98.MeshType = Enum.MeshType.Wedge
  2816. b98.Name = "Mesh"
  2817. b98.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2818. p108 = Instance.new("Part", m)
  2819. p108.BrickColor = BrickColor.new("Dark blue")
  2820. p108.Material = Enum.Material.SmoothPlastic
  2821. p108.Name = "apart"
  2822. p108.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
  2823. p108.CanCollide = false
  2824. p108.FormFactor = Enum.FormFactor.Custom
  2825. p108.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  2826. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2827. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2828. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2829. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2830. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2831. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2832. b99 = Instance.new("SpecialMesh", p108)
  2833. b99.MeshType = Enum.MeshType.Torso
  2834. b99.Name = "Mesh"
  2835. b99.Scale = Vector3.new(1, 1, 1.01999998)
  2836. p109 = Instance.new("Part", m)
  2837. p109.BrickColor = BrickColor.new("Dark blue")
  2838. p109.Material = Enum.Material.SmoothPlastic
  2839. p109.Name = "apart"
  2840. p109.CFrame = CFrame.new(3.82272005, 153.635132, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2841. p109.CanCollide = false
  2842. p109.FormFactor = Enum.FormFactor.Custom
  2843. p109.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  2844. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2845. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2846. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2847. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2848. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2849. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2850. b100 = Instance.new("SpecialMesh", p109)
  2851. b100.MeshType = Enum.MeshType.Brick
  2852. b100.Name = "Mesh"
  2853. b100.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2854. p110 = Instance.new("Part", m)
  2855. p110.BrickColor = BrickColor.new("Dark blue")
  2856. p110.Material = Enum.Material.SmoothPlastic
  2857. p110.Name = "apart"
  2858. p110.CFrame = CFrame.new(3.82272005, 153.378906, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2859. p110.CanCollide = false
  2860. p110.FormFactor = Enum.FormFactor.Custom
  2861. p110.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  2862. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2863. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2864. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2865. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2868. b101 = Instance.new("SpecialMesh", p110)
  2869. b101.MeshType = Enum.MeshType.Brick
  2870. b101.Name = "Mesh"
  2871. b101.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  2872. p111 = Instance.new("Part", m)
  2873. p111.BrickColor = BrickColor.new("Dark blue")
  2874. p111.Material = Enum.Material.SmoothPlastic
  2875. p111.Name = "apart"
  2876. p111.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2877. p111.CanCollide = false
  2878. p111.FormFactor = Enum.FormFactor.Custom
  2879. p111.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2880. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2881. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2882. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2883. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2884. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2886. b102 = Instance.new("SpecialMesh", p111)
  2887. b102.MeshType = Enum.MeshType.Brick
  2888. b102.Name = "Mesh"
  2889. b102.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  2890. p112 = Instance.new("Part", m)
  2891. p112.BrickColor = BrickColor.new("Dark blue")
  2892. p112.Material = Enum.Material.Neon
  2893. p112.Name = "apart"
  2894. p112.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2895. p112.CanCollide = false
  2896. p112.FormFactor = Enum.FormFactor.Custom
  2897. p112.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2898. p112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2899. p112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2900. p112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2901. p112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2902. p112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2903. p112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2904. b103 = Instance.new("SpecialMesh", p112)
  2905. b103.MeshType = Enum.MeshType.Brick
  2906. b103.Name = "Mesh"
  2907. b103.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  2908. p113 = Instance.new("Part", m)
  2909. p113.BrickColor = BrickColor.new("Dark blue")
  2910. p113.Material = Enum.Material.Neon
  2911. p113.Name = "apart"
  2912. p113.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  2913. p113.CanCollide = false
  2914. p113.FormFactor = Enum.FormFactor.Custom
  2915. p113.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2916. p113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2917. p113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2918. p113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2919. p113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2920. p113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2921. p113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2922. b104 = Instance.new("SpecialMesh", p113)
  2923. b104.MeshType = Enum.MeshType.Brick
  2924. b104.Name = "Mesh"
  2925. b104.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  2926. p114 = Instance.new("Part", m)
  2927. p114.BrickColor = BrickColor.new("Dark blue")
  2928. p114.Material = Enum.Material.SmoothPlastic
  2929. p114.Name = "apart"
  2930. p114.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270462, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
  2931. p114.CanCollide = false
  2932. p114.FormFactor = Enum.FormFactor.Custom
  2933. p114.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2934. p114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2935. p114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2936. p114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2937. p114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2938. p114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. p114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2940. b105 = Instance.new("SpecialMesh", p114)
  2941. b105.MeshType = Enum.MeshType.Cylinder
  2942. b105.Name = "Mesh"
  2943. b105.Scale = Vector3.new(1.01999998, 1, 1)
  2944. p115 = Instance.new("Part", m)
  2945. p115.BrickColor = BrickColor.new("Dark blue")
  2946. p115.Material = Enum.Material.SmoothPlastic
  2947. p115.Name = "apart"
  2948. p115.CFrame = CFrame.new(3.82272005, 157.171097, 38.4626236, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
  2949. p115.CanCollide = false
  2950. p115.FormFactor = Enum.FormFactor.Custom
  2951. p115.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2952. p115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2953. p115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2954. p115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2955. p115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2956. p115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2957. p115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2958. b106 = Instance.new("SpecialMesh", p115)
  2959. b106.MeshType = Enum.MeshType.Brick
  2960. b106.Name = "Mesh"
  2961. b106.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2962. --[[p116 = Instance.new("Part", m)
  2963. p116.BrickColor = BrickColor.new("Dark blue")
  2964. p116.Name = "Left Arm"
  2965. p116.CFrame = CFrame.new(3.81999993, 156.276138, 38.5000076, -4.37103154e-008, -2.72848411e-012, -1, 0, 1, 0, 1, 0, -4.37175913e-008)
  2966. p116.CanCollide = false
  2967. p116.FormFactor = Enum.FormFactor.Symmetric
  2968. p116.Size = Vector3.new(1, 2, 1)
  2969. p116.BottomSurface = Enum.SurfaceType.Smooth
  2970. p116.TopSurface = Enum.SurfaceType.Smooth--]]
  2971. p116 = LeftArm
  2972. p117 = Instance.new("Part", m)
  2973. p117.BrickColor = BrickColor.new("Dark blue")
  2974. p117.Material = Enum.Material.SmoothPlastic
  2975. p117.Name = "apart"
  2976. p117.CFrame = CFrame.new(4.232687, 157.55545, 37.668335, -1, 4.16358271e-005, 1.11714198e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424664e-005, -0.865983546, -0.500072539)
  2977. p117.CanCollide = false
  2978. p117.FormFactor = Enum.FormFactor.Custom
  2979. p117.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2980. p117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2981. p117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2982. p117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2983. p117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2984. p117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2985. p117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2986. b107 = Instance.new("SpecialMesh", p117)
  2987. b107.MeshType = Enum.MeshType.Wedge
  2988. b107.Name = "Mesh"
  2989. b107.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2990. p118 = Instance.new("Part", m)
  2991. p118.BrickColor = BrickColor.new("Dark blue")
  2992. p118.Material = Enum.Material.SmoothPlastic
  2993. p118.Name = "apart"
  2994. p118.CFrame = CFrame.new(3.82272029, 156.018066, 38.0782814, 1, -2.6537661e-012, 0, -8.34776692e-013, 1, 0, 3.63797881e-012, 0, 1)
  2995. p118.CanCollide = false
  2996. p118.FormFactor = Enum.FormFactor.Custom
  2997. p118.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2998. p118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. p118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. p118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3001. p118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3002. p118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3003. p118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3004. b108 = Instance.new("SpecialMesh", p118)
  3005. b108.MeshType = Enum.MeshType.Brick
  3006. b108.Name = "Mesh"
  3007. b108.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3008. p119 = Instance.new("Part", m)
  3009. p119.BrickColor = BrickColor.new("Dark blue")
  3010. p119.Material = Enum.Material.SmoothPlastic
  3011. p119.Name = "apart"
  3012. p119.CFrame = CFrame.new(3.82272029, 156.402405, 38.0782814, -1, 3.04301539e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171197e-005, 3.04310852e-005, -1)
  3013. p119.CanCollide = false
  3014. p119.FormFactor = Enum.FormFactor.Custom
  3015. p119.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  3016. p119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. p119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. p119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3019. p119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3020. p119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3021. p119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3022. b109 = Instance.new("SpecialMesh", p119)
  3023. b109.MeshType = Enum.MeshType.Wedge
  3024. b109.Name = "Mesh"
  3025. b109.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3026. p120 = Instance.new("Part", m)
  3027. p120.BrickColor = BrickColor.new("Dark blue")
  3028. p120.Material = Enum.Material.SmoothPlastic
  3029. p120.Name = "apart"
  3030. p120.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270424, 1, -9.09494702e-013, 9.09494702e-013, -9.09494702e-013, 1, 0, 1.36424205e-012, 0, 1)
  3031. p120.CanCollide = false
  3032. p120.FormFactor = Enum.FormFactor.Custom
  3033. p120.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  3034. p120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. p120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. p120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3037. p120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3038. p120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3039. p120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3040. b110 = Instance.new("SpecialMesh", p120)
  3041. b110.MeshType = Enum.MeshType.Cylinder
  3042. b110.Name = "Mesh"
  3043. b110.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  3044. p121 = Instance.new("Part", m)
  3045. p121.BrickColor = BrickColor.new("Dark blue")
  3046. p121.Material = Enum.Material.SmoothPlastic
  3047. p121.Name = "apart"
  3048. p121.CFrame = CFrame.new(3.41275764, 157.555435, 37.6683273, -1, 4.16358271e-005, 1.1171418e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424627e-005, -0.865983546, -0.500072539)
  3049. p121.CanCollide = false
  3050. p121.FormFactor = Enum.FormFactor.Custom
  3051. p121.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  3052. p121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. p121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. p121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3055. p121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3056. p121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3057. p121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3058. b111 = Instance.new("SpecialMesh", p121)
  3059. b111.MeshType = Enum.MeshType.Wedge
  3060. b111.Name = "Mesh"
  3061. b111.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  3062. p122 = Instance.new("Part", m)
  3063. p122.BrickColor = BrickColor.new("Dark blue")
  3064. p122.Material = Enum.Material.SmoothPlastic
  3065. p122.Name = "apart"
  3066. p122.CFrame = CFrame.new(3.82272029, 156.018051, 38.590744, -1, 3.04301557e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171179e-005, 3.04310852e-005, -1)
  3067. p122.CanCollide = false
  3068. p122.FormFactor = Enum.FormFactor.Custom
  3069. p122.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  3070. p122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3071. p122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3072. p122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3073. p122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3074. p122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3075. p122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3076. b112 = Instance.new("SpecialMesh", p122)
  3077. b112.MeshType = Enum.MeshType.Wedge
  3078. b112.Name = "Mesh"
  3079. b112.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3080. p123 = Instance.new("Part", m)
  3081. p123.BrickColor = BrickColor.new("Dark blue")
  3082. p123.Material = Enum.Material.SmoothPlastic
  3083. p123.Name = "apart"
  3084. p123.CFrame = CFrame.new(3.82272005, 155.633713, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3085. p123.CanCollide = false
  3086. p123.FormFactor = Enum.FormFactor.Custom
  3087. p123.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  3088. p123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3089. p123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3090. p123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3091. p123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3092. p123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3093. p123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3094. b113 = Instance.new("SpecialMesh", p123)
  3095. b113.MeshType = Enum.MeshType.Brick
  3096. b113.Name = "Mesh"
  3097. b113.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3098. p124 = Instance.new("Part", m)
  3099. p124.BrickColor = BrickColor.new("Dark blue")
  3100. p124.Material = Enum.Material.Neon
  3101. p124.Name = "apart"
  3102. p124.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3103. p124.CanCollide = false
  3104. p124.FormFactor = Enum.FormFactor.Custom
  3105. p124.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  3106. p124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. p124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. p124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. p124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3110. p124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. p124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. b114 = Instance.new("SpecialMesh", p124)
  3113. b114.MeshType = Enum.MeshType.Brick
  3114. b114.Name = "Mesh"
  3115. b114.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  3116. p125 = Instance.new("Part", m)
  3117. p125.BrickColor = BrickColor.new("Dark blue")
  3118. p125.Material = Enum.Material.SmoothPlastic
  3119. p125.Name = "apart"
  3120. p125.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3121. p125.CanCollide = false
  3122. p125.FormFactor = Enum.FormFactor.Custom
  3123. p125.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  3124. p125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3125. p125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3126. p125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3127. p125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3128. p125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. p125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. b115 = Instance.new("SpecialMesh", p125)
  3131. b115.MeshType = Enum.MeshType.Brick
  3132. b115.Name = "Mesh"
  3133. b115.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  3134. p126 = Instance.new("Part", m)
  3135. p126.BrickColor = BrickColor.new("Dark blue")
  3136. p126.Material = Enum.Material.SmoothPlastic
  3137. p126.Name = "apart"
  3138. p126.CFrame = CFrame.new(3.82272005, 156.40239, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3139. p126.CanCollide = false
  3140. p126.FormFactor = Enum.FormFactor.Custom
  3141. p126.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  3142. p126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3143. p126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3144. p126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3145. p126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. p126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. p126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3148. w1 = Instance.new("Weld", p1)
  3149. w1.Name = "Torso_Weld"
  3150. w1.Part0 = p1
  3151. w1.C0 = CFrame.new(40.0074806, -173.696487, -4.43766594, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3152. w1.Part1 = p2
  3153. w1.C1 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3154. w2 = Instance.new("Weld", p2)
  3155. w2.Name = "apart_Weld"
  3156. w2.Part0 = p2
  3157. w2.C0 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3158. w2.Part1 = p3
  3159. w2.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3160. w3 = Instance.new("Weld", p3)
  3161. w3.Name = "apart_Weld"
  3162. w3.Part0 = p3
  3163. w3.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3164. w3.Part1 = p4
  3165. w3.C1 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3166. w4 = Instance.new("Weld", p4)
  3167. w4.Name = "apart_Weld"
  3168. w4.Part0 = p4
  3169. w4.C0 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3170. w4.Part1 = p5
  3171. w4.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3172. w5 = Instance.new("Weld", p5)
  3173. w5.Name = "apart_Weld"
  3174. w5.Part0 = p5
  3175. w5.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3176. w5.Part1 = p6
  3177. w5.C1 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3178. w6 = Instance.new("Weld", p6)
  3179. w6.Name = "apart_Weld"
  3180. w6.Part0 = p6
  3181. w6.C0 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3182. w6.Part1 = p7
  3183. w6.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3184. w7 = Instance.new("Weld", p7)
  3185. w7.Name = "apart_Weld"
  3186. w7.Part0 = p7
  3187. w7.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3188. w7.Part1 = p8
  3189. w7.C1 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3190. w8 = Instance.new("Weld", p8)
  3191. w8.Name = "apart_Weld"
  3192. w8.Part0 = p8
  3193. w8.C0 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3194. w8.Part1 = p9
  3195. w8.C1 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
  3196. w9 = Instance.new("Weld", p9)
  3197. w9.Name = "apart_Weld"
  3198. w9.Part0 = p9
  3199. w9.C0 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
  3200. w9.Part1 = p10
  3201. w9.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3202. w10 = Instance.new("Weld", p10)
  3203. w10.Name = "apart_Weld"
  3204. w10.Part0 = p10
  3205. w10.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3206. w10.Part1 = p11
  3207. w10.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3208. w11 = Instance.new("Weld", p11)
  3209. w11.Name = "apart_Weld"
  3210. w11.Part0 = p11
  3211. w11.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3212. w11.Part1 = p12
  3213. w11.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3214. w12 = Instance.new("Weld", p12)
  3215. w12.Name = "apart_Weld"
  3216. w12.Part0 = p12
  3217. w12.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3218. w12.Part1 = p13
  3219. w12.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3220. w13 = Instance.new("Weld", p13)
  3221. w13.Name = "apart_Weld"
  3222. w13.Part0 = p13
  3223. w13.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3224. w13.Part1 = p14
  3225. w13.C1 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3226. w14 = Instance.new("Weld", p14)
  3227. w14.Name = "apart_Weld"
  3228. w14.Part0 = p14
  3229. w14.C0 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3230. w14.Part1 = p15
  3231. w14.C1 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3232. w15 = Instance.new("Weld", p15)
  3233. w15.Name = "apart_Weld"
  3234. w15.Part0 = p15
  3235. w15.C0 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3236. w15.Part1 = p16
  3237. w15.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3238. w16 = Instance.new("Weld", p16)
  3239. w16.Name = "apart_Weld"
  3240. w16.Part0 = p16
  3241. w16.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3242. w16.Part1 = p17
  3243. w16.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3244. w17 = Instance.new("Weld", p17)
  3245. w17.Name = "apart_Weld"
  3246. w17.Part0 = p17
  3247. w17.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3248. w17.Part1 = p18
  3249. w17.C1 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3250. w18 = Instance.new("Weld", p18)
  3251. w18.Name = "apart_Weld"
  3252. w18.Part0 = p18
  3253. w18.C0 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3254. w18.Part1 = p19
  3255. w18.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3256. w19 = Instance.new("Weld", p19)
  3257. w19.Name = "apart_Weld"
  3258. w19.Part0 = p19
  3259. w19.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3260. w19.Part1 = p20
  3261. w19.C1 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3262. w20 = Instance.new("Weld", p20)
  3263. w20.Name = "apart_Weld"
  3264. w20.Part0 = p20
  3265. w20.C0 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3266. w20.Part1 = p21
  3267. w20.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3268. w21 = Instance.new("Weld", p21)
  3269. w21.Name = "apart_Weld"
  3270. w21.Part0 = p21
  3271. w21.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3272. w21.Part1 = p22
  3273. w21.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3274. w22 = Instance.new("Weld", p22)
  3275. w22.Name = "apart_Weld"
  3276. w22.Part0 = p22
  3277. w22.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3278. w22.Part1 = p23
  3279. w22.C1 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3280. w23 = Instance.new("Weld", p23)
  3281. w23.Name = "apart_Weld"
  3282. w23.Part0 = p23
  3283. w23.C0 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3284. w23.Part1 = p24
  3285. w23.C1 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3286. w24 = Instance.new("Weld", p24)
  3287. w24.Name = "apart_Weld"
  3288. w24.Part0 = p24
  3289. w24.C0 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3290. w24.Part1 = p25
  3291. w24.C1 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3292. w25 = Instance.new("Weld", p25)
  3293. w25.Name = "apart_Weld"
  3294. w25.Part0 = p25
  3295. w25.C0 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3296. w25.Part1 = p26
  3297. w25.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3298. w26 = Instance.new("Weld", p26)
  3299. w26.Name = "apart_Weld"
  3300. w26.Part0 = p26
  3301. w26.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3302. w26.Part1 = p27
  3303. w26.C1 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3304. w27 = Instance.new("Weld", p27)
  3305. w27.Name = "apart_Weld"
  3306. w27.Part0 = p27
  3307. w27.C0 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3308. w27.Part1 = p28
  3309. w27.C1 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3310. w28 = Instance.new("Weld", p28)
  3311. w28.Name = "apart_Weld"
  3312. w28.Part0 = p28
  3313. w28.C0 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3314. w28.Part1 = p29
  3315. w28.C1 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3316. w29 = Instance.new("Weld", p29)
  3317. w29.Name = "apart_Weld"
  3318. w29.Part0 = p29
  3319. w29.C0 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3320. w29.Part1 = p30
  3321. w29.C1 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3322. w30 = Instance.new("Weld", p30)
  3323. w30.Name = "apart_Weld"
  3324. w30.Part0 = p30
  3325. w30.C0 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3326. w30.Part1 = p31
  3327. w30.C1 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3328. w31 = Instance.new("Weld", p31)
  3329. w31.Name = "apart_Weld"
  3330. w31.Part0 = p31
  3331. w31.C0 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3332. w31.Part1 = p32
  3333. w31.C1 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3334. w32 = Instance.new("Weld", p32)
  3335. w32.Name = "apart_Weld"
  3336. w32.Part0 = p32
  3337. w32.C0 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3338. w32.Part1 = p33
  3339. w32.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3340. w33 = Instance.new("Weld", p33)
  3341. w33.Name = "apart_Weld"
  3342. w33.Part0 = p33
  3343. w33.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3344. w33.Part1 = p34
  3345. w33.C1 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3346. w34 = Instance.new("Weld", p34)
  3347. w34.Name = "apart_Weld"
  3348. w34.Part0 = p34
  3349. w34.C0 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3350. w34.Part1 = p35
  3351. w34.C1 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3352. w35 = Instance.new("Weld", p35)
  3353. w35.Name = "apart_Weld"
  3354. w35.Part0 = p35
  3355. w35.C0 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3356. w35.Part1 = p36
  3357. w35.C1 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3358. w36 = Instance.new("Weld", p36)
  3359. w36.Name = "apart_Weld"
  3360. w36.Part0 = p36
  3361. w36.C0 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3362. w36.Part1 = p37
  3363. w36.C1 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3364. w37 = Instance.new("Weld", p37)
  3365. w37.Name = "apart_Weld"
  3366. w37.Part0 = p37
  3367. w37.C0 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3368. w37.Part1 = p38
  3369. w37.C1 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3370. w38 = Instance.new("Weld", p38)
  3371. w38.Name = "apart_Weld"
  3372. w38.Part0 = p38
  3373. w38.C0 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3374. w38.Part1 = p39
  3375. w38.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3376. w39 = Instance.new("Weld", p39)
  3377. w39.Name = "apart_Weld"
  3378. w39.Part0 = p39
  3379. w39.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3380. w39.Part1 = p40
  3381. w39.C1 = CFrame.new(40.0052567, 3.18871641, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3382. w40 = Instance.new("Weld", p41)
  3383. w40.Name = "apart_Weld"
  3384. w40.Part0 = p41
  3385. w40.C0 = CFrame.new(4.43938923, 39.9903679, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3386. w40.Part1 = p42
  3387. w40.C1 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3388. w41 = Instance.new("Weld", p42)
  3389. w41.Name = "apart_Weld"
  3390. w41.Part0 = p42
  3391. w41.C0 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3392. w41.Part1 = p43
  3393. w41.C1 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3394. w42 = Instance.new("Weld", p43)
  3395. w42.Name = "apart_Weld"
  3396. w42.Part0 = p43
  3397. w42.C0 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3398. w42.Part1 = p44
  3399. w42.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3400. w43 = Instance.new("Weld", p44)
  3401. w43.Name = "apart_Weld"
  3402. w43.Part0 = p44
  3403. w43.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3404. w43.Part1 = p45
  3405. w43.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3406. w44 = Instance.new("Weld", p45)
  3407. w44.Name = "apart_Weld"
  3408. w44.Part0 = p45
  3409. w44.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3410. w44.Part1 = p46
  3411. w44.C1 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3412. w45 = Instance.new("Weld", p46)
  3413. w45.Name = "Head_Weld"
  3414. w45.Part0 = p46
  3415. w45.C0 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3416. w45.Part1 = p47
  3417. w45.C1 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3418. w46 = Instance.new("Weld", p47)
  3419. w46.Name = "apart_Weld"
  3420. w46.Part0 = p47
  3421. w46.C0 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3422. w46.Part1 = p48
  3423. w46.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3424. w47 = Instance.new("Weld", p48)
  3425. w47.Name = "apart_Weld"
  3426. w47.Part0 = p48
  3427. w47.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3428. w47.Part1 = p49
  3429. w47.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3430. w48 = Instance.new("Weld", p49)
  3431. w48.Name = "apart_Weld"
  3432. w48.Part0 = p49
  3433. w48.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3434. w48.Part1 = p50
  3435. w48.C1 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3436. w49 = Instance.new("Weld", p50)
  3437. w49.Name = "apart_Weld"
  3438. w49.Part0 = p50
  3439. w49.C0 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3440. w49.Part1 = p51
  3441. w49.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3442. w50 = Instance.new("Weld", p51)
  3443. w50.Name = "apart_Weld"
  3444. w50.Part0 = p51
  3445. w50.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3446. w50.Part1 = p52
  3447. w50.C1 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3448. w51 = Instance.new("Weld", p52)
  3449. w51.Name = "apart_Weld"
  3450. w51.Part0 = p52
  3451. w51.C0 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3452. w51.Part1 = p53
  3453. w51.C1 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3454. w52 = Instance.new("Weld", p53)
  3455. w52.Name = "apart_Weld"
  3456. w52.Part0 = p53
  3457. w52.C0 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3458. w52.Part1 = p54
  3459. w52.C1 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
  3460. w53 = Instance.new("Weld", p54)
  3461. w53.Name = "apart_Weld"
  3462. w53.Part0 = p54
  3463. w53.C0 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
  3464. w53.Part1 = p55
  3465. w53.C1 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3466. w54 = Instance.new("Weld", p55)
  3467. w54.Name = "apart_Weld"
  3468. w54.Part0 = p55
  3469. w54.C0 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3470. w54.Part1 = p56
  3471. w54.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3472. w55 = Instance.new("Weld", p56)
  3473. w55.Name = "apart_Weld"
  3474. w55.Part0 = p56
  3475. w55.C0 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3476. w55.Part1 = p57
  3477. w55.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3478. w56 = Instance.new("Weld", p57)
  3479. w56.Name = "apart_Weld"
  3480. w56.Part0 = p57
  3481. w56.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3482. w56.Part1 = p58
  3483. w56.C1 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  3484. w57 = Instance.new("Weld", p58)
  3485. w57.Name = "apart_Weld"
  3486. w57.Part0 = p58
  3487. w57.C0 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  3488. w57.Part1 = p59
  3489. w57.C1 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3490. w58 = Instance.new("Weld", p59)
  3491. w58.Name = "apart_Weld"
  3492. w58.Part0 = p59
  3493. w58.C0 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3494. w58.Part1 = p60
  3495. w58.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3496. w59 = Instance.new("Weld", p60)
  3497. w59.Name = "apart_Weld"
  3498. w59.Part0 = p60
  3499. w59.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3500. w59.Part1 = p61
  3501. w59.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3502. w60 = Instance.new("Weld", p61)
  3503. w60.Name = "apart_Weld"
  3504. w60.Part0 = p61
  3505. w60.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3506. w60.Part1 = p62
  3507. w60.C1 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3508. w61 = Instance.new("Weld", p62)
  3509. w61.Name = "apart_Weld"
  3510. w61.Part0 = p62
  3511. w61.C0 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3512. w61.Part1 = p63
  3513. w61.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3514. w62 = Instance.new("Weld", p63)
  3515. w62.Name = "apart_Weld"
  3516. w62.Part0 = p63
  3517. w62.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3518. w62.Part1 = p64
  3519. w62.C1 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3520. w63 = Instance.new("Weld", p64)
  3521. w63.Name = "apart_Weld"
  3522. w63.Part0 = p64
  3523. w63.C0 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3524. w63.Part1 = p65
  3525. w63.C1 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3526. w64 = Instance.new("Weld", p65)
  3527. w64.Name = "apart_Weld"
  3528. w64.Part0 = p65
  3529. w64.C0 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3530. w64.Part1 = p66
  3531. w64.C1 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3532. w65 = Instance.new("Weld", p66)
  3533. w65.Name = "apart_Weld"
  3534. w65.Part0 = p66
  3535. w65.C0 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3536. w65.Part1 = p67
  3537. w65.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3538. w66 = Instance.new("Weld", p67)
  3539. w66.Name = "apart_Weld"
  3540. w66.Part0 = p67
  3541. w66.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3542. w66.Part1 = p68
  3543. w66.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3544. w67 = Instance.new("Weld", p68)
  3545. w67.Name = "apart_Weld"
  3546. w67.Part0 = p68
  3547. w67.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3548. w67.Part1 = p69
  3549. w67.C1 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3550. w68 = Instance.new("Weld", p69)
  3551. w68.Name = "apart_Weld"
  3552. w68.Part0 = p69
  3553. w68.C0 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3554. w68.Part1 = p70
  3555. w68.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3556. w69 = Instance.new("Weld", p70)
  3557. w69.Name = "apart_Weld"
  3558. w69.Part0 = p70
  3559. w69.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3560. w69.Part1 = p71
  3561. w69.C1 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3562. w70 = Instance.new("Weld", p71)
  3563. w70.Name = "apart_Weld"
  3564. w70.Part0 = p71
  3565. w70.C0 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3566. w70.Part1 = p72
  3567. w70.C1 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3568. w71 = Instance.new("Weld", p72)
  3569. w71.Name = "apart_Weld"
  3570. w71.Part0 = p72
  3571. w71.C0 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3572. w71.Part1 = p73
  3573. w71.C1 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3574. w72 = Instance.new("Weld", p73)
  3575. w72.Name = "apart_Weld"
  3576. w72.Part0 = p73
  3577. w72.C0 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3578. w72.Part1 = p74
  3579. w72.C1 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3580. w73 = Instance.new("Weld", p74)
  3581. w73.Name = "apart_Weld"
  3582. w73.Part0 = p74
  3583. w73.C0 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3584. w73.Part1 = p75
  3585. w73.C1 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3586. w74 = Instance.new("Weld", p75)
  3587. w74.Name = "apart_Weld"
  3588. w74.Part0 = p75
  3589. w74.C0 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3590. w74.Part1 = p76
  3591. w74.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3592. w75 = Instance.new("Weld", p76)
  3593. w75.Name = "apart_Weld"
  3594. w75.Part0 = p76
  3595. w75.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3596. w75.Part1 = p77
  3597. w75.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3598. w76 = Instance.new("Weld", p77)
  3599. w76.Name = "apart_Weld"
  3600. w76.Part0 = p77
  3601. w76.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3602. w76.Part1 = p78
  3603. w76.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3604. w77 = Instance.new("Weld", p79)
  3605. w77.Name = "apart_Weld"
  3606. w77.Part0 = p79
  3607. w77.C0 = CFrame.new(-3.82272005, -175.414932, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3608. w77.Part1 = p80
  3609. w77.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3610. w78 = Instance.new("Weld", p80)
  3611. w78.Name = "apart_Weld"
  3612. w78.Part0 = p80
  3613. w78.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3614. w78.Part1 = p81
  3615. w78.C1 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  3616. w79 = Instance.new("Weld", p81)
  3617. w79.Name = "apart_Weld"
  3618. w79.Part0 = p81
  3619. w79.C0 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  3620. w79.Part1 = p82
  3621. w79.C1 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
  3622. w80 = Instance.new("Weld", p82)
  3623. w80.Name = "apart_Weld"
  3624. w80.Part0 = p82
  3625. w80.C0 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
  3626. w80.Part1 = p83
  3627. w80.C1 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3628. w81 = Instance.new("Weld", p83)
  3629. w81.Name = "apart_Weld"
  3630. w81.Part0 = p83
  3631. w81.C0 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3632. w81.Part1 = p84
  3633. w81.C1 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3634. w82 = Instance.new("Weld", p84)
  3635. w82.Name = "apart_Weld"
  3636. w82.Part0 = p84
  3637. w82.C0 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3638. w82.Part1 = p85
  3639. w82.C1 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  3640. w83 = Instance.new("Weld", p85)
  3641. w83.Name = "apart_Weld"
  3642. w83.Part0 = p85
  3643. w83.C0 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  3644. w83.Part1 = p86
  3645. w83.C1 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3646. w84 = Instance.new("Weld", p86)
  3647. w84.Name = "apart_Weld"
  3648. w84.Part0 = p86
  3649. w84.C0 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3650. w84.Part1 = p87
  3651. w84.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3652. w85 = Instance.new("Weld", p87)
  3653. w85.Name = "apart_Weld"
  3654. w85.Part0 = p87
  3655. w85.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3656. w85.Part1 = p88
  3657. w85.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3658. w86 = Instance.new("Weld", p88)
  3659. w86.Name = "apart_Weld"
  3660. w86.Part0 = p88
  3661. w86.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3662. w86.Part1 = p89
  3663. w86.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3664. w87 = Instance.new("Weld", p89)
  3665. w87.Name = "apart_Weld"
  3666. w87.Part0 = p89
  3667. w87.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3668. w87.Part1 = p90
  3669. w87.C1 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3670. w88 = Instance.new("Weld", p90)
  3671. w88.Name = "Right Arm_Weld"
  3672. w88.Part0 = p90
  3673. w88.C0 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3674. w88.Part1 = p91
  3675. w88.C1 = CFrame.new(-41.5, -174.519974, 3.82000184, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3676. w89 = Instance.new("Weld", p92)
  3677. w89.Name = "Left Leg_Weld"
  3678. w89.Part0 = p92
  3679. w89.C0 = CFrame.new(-3.82272005, -172.59642, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3680. w89.Part1 = p93
  3681. w89.C1 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3682. w90 = Instance.new("Weld", p93)
  3683. w90.Name = "apart_Weld"
  3684. w90.Part0 = p93
  3685. w90.C0 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3686. w90.Part1 = p94
  3687. w90.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3688. w91 = Instance.new("Weld", p94)
  3689. w91.Name = "apart_Weld"
  3690. w91.Part0 = p94
  3691. w91.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3692. w91.Part1 = p95
  3693. w91.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3694. w92 = Instance.new("Weld", p95)
  3695. w92.Name = "apart_Weld"
  3696. w92.Part0 = p95
  3697. w92.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3698. w92.Part1 = p96
  3699. w92.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3700. w93 = Instance.new("Weld", p96)
  3701. w93.Name = "apart_Weld"
  3702. w93.Part0 = p96
  3703. w93.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3704. w93.Part1 = p97
  3705. w93.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3706. w94 = Instance.new("Weld", p97)
  3707. w94.Name = "apart_Weld"
  3708. w94.Part0 = p97
  3709. w94.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3710. w94.Part1 = p98
  3711. w94.C1 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  3712. w95 = Instance.new("Weld", p98)
  3713. w95.Name = "apart_Weld"
  3714. w95.Part0 = p98
  3715. w95.C0 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  3716. w95.Part1 = p99
  3717. w95.C1 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3718. w96 = Instance.new("Weld", p99)
  3719. w96.Name = "apart_Weld"
  3720. w96.Part0 = p99
  3721. w96.C0 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3722. w96.Part1 = p100
  3723. w96.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3724. w97 = Instance.new("Weld", p100)
  3725. w97.Name = "apart_Weld"
  3726. w97.Part0 = p100
  3727. w97.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3728. w97.Part1 = p101
  3729. w97.C1 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3730. w98 = Instance.new("Weld", p101)
  3731. w98.Name = "apart_Weld"
  3732. w98.Part0 = p101
  3733. w98.C0 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3734. w98.Part1 = p102
  3735. w98.C1 = CFrame.new(-3.82272005, -171.878983, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3736. w99 = Instance.new("Weld", p103)
  3737. w99.Name = "apart_Weld"
  3738. w99.Part0 = p103
  3739. w99.C0 = CFrame.new(-40.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3740. w99.Part1 = p104
  3741. w99.C1 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3742. w100 = Instance.new("Weld", p104)
  3743. w100.Name = "apart_Weld"
  3744. w100.Part0 = p104
  3745. w100.C0 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3746. w100.Part1 = p105
  3747. w100.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3748. w101 = Instance.new("Weld", p105)
  3749. w101.Name = "apart_Weld"
  3750. w101.Part0 = p105
  3751. w101.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3752. w101.Part1 = p106
  3753. w101.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3754. w102 = Instance.new("Weld", p106)
  3755. w102.Name = "apart_Weld"
  3756. w102.Part0 = p106
  3757. w102.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3758. w102.Part1 = p107
  3759. w102.C1 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  3760. w103 = Instance.new("Weld", p107)
  3761. w103.Name = "apart_Weld"
  3762. w103.Part0 = p107
  3763. w103.C0 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  3764. w103.Part1 = p108
  3765. w103.C1 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3766. w104 = Instance.new("Weld", p108)
  3767. w104.Name = "apart_Weld"
  3768. w104.Part0 = p108
  3769. w104.C0 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3770. w104.Part1 = p109
  3771. w104.C1 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3772. w105 = Instance.new("Weld", p109)
  3773. w105.Name = "apart_Weld"
  3774. w105.Part0 = p109
  3775. w105.C0 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3776. w105.Part1 = p110
  3777. w105.C1 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3778. w106 = Instance.new("Weld", p110)
  3779. w106.Name = "apart_Weld"
  3780. w106.Part0 = p110
  3781. w106.C0 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3782. w106.Part1 = p111
  3783. w106.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3784. w107 = Instance.new("Weld", p111)
  3785. w107.Name = "apart_Weld"
  3786. w107.Part0 = p111
  3787. w107.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3788. w107.Part1 = p112
  3789. w107.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3790. w108 = Instance.new("Weld", p112)
  3791. w108.Name = "apart_Weld"
  3792. w108.Part0 = p112
  3793. w108.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3794. w108.Part1 = p113
  3795. w108.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3796. w109 = Instance.new("Weld", p114)
  3797. w109.Name = "apart_Weld"
  3798. w109.Part0 = p114
  3799. w109.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3800. w109.Part1 = p115
  3801. w109.C1 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3802. w110 = Instance.new("Weld", p115)
  3803. w110.Name = "Left Arm_Weld"
  3804. w110.Part0 = p115
  3805. w110.C0 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3806. w110.Part1 = p116
  3807. w110.C1 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3808. w111 = Instance.new("Weld", p116)
  3809. w111.Name = "apart_Weld"
  3810. w111.Part0 = p116
  3811. w111.C0 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3812. w111.Part1 = p117
  3813. w111.C1 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  3814. w112 = Instance.new("Weld", p117)
  3815. w112.Name = "apart_Weld"
  3816. w112.Part0 = p117
  3817. w112.C0 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  3818. w112.Part1 = p118
  3819. w112.C1 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3820. w113 = Instance.new("Weld", p118)
  3821. w113.Name = "apart_Weld"
  3822. w113.Part0 = p118
  3823. w113.C0 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3824. w113.Part1 = p119
  3825. w113.C1 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  3826. w114 = Instance.new("Weld", p119)
  3827. w114.Name = "apart_Weld"
  3828. w114.Part0 = p119
  3829. w114.C0 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  3830. w114.Part1 = p120
  3831. w114.C1 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3832. w115 = Instance.new("Weld", p120)
  3833. w115.Name = "apart_Weld"
  3834. w115.Part0 = p120
  3835. w115.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3836. w115.Part1 = p121
  3837. w115.C1 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  3838. w116 = Instance.new("Weld", p121)
  3839. w116.Name = "apart_Weld"
  3840. w116.Part0 = p121
  3841. w116.C0 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  3842. w116.Part1 = p122
  3843. w116.C1 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  3844. w117 = Instance.new("Weld", p122)
  3845. w117.Name = "apart_Weld"
  3846. w117.Part0 = p122
  3847. w117.C0 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  3848. w117.Part1 = p123
  3849. w117.C1 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3850. w118 = Instance.new("Weld", p123)
  3851. w118.Name = "apart_Weld"
  3852. w118.Part0 = p123
  3853. w118.C0 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3854. w118.Part1 = p124
  3855. w118.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3856. w119 = Instance.new("Weld", p124)
  3857. w119.Name = "apart_Weld"
  3858. w119.Part0 = p124
  3859. w119.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3860. w119.Part1 = p125
  3861. w119.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3862. w120 = Instance.new("Weld", p125)
  3863. w120.Name = "apart_Weld"
  3864. w120.Part0 = p125
  3865. w120.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3866. w120.Part1 = p126
  3867. w120.C1 = CFrame.new(-3.82272005, -174.64624, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3868. m.Parent = game:service("Workspace")
  3869. m:MakeJoints()
  3870.  
  3871. RightArm.Transparency=1
  3872. LeftArm.Transparency=1
  3873. LeftLeg.Transparency=1
  3874. RightLeg.Transparency=1
  3875.  
  3876. --==//Wings and Halo\\==--
  3877. Player=game:GetService('Players').LocalPlayer
  3878. Character=Player.Character
  3879. Mouse=Player:GetMouse()
  3880. m=Instance.new('Model',Character)
  3881.  
  3882. local function weldBetween(a, b)
  3883. local weldd = Instance.new("ManualWeld")
  3884. weldd.Part0 = a
  3885. weldd.Part1 = b
  3886. weldd.C0 = CFrame.new()
  3887. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3888. weldd.Parent = a
  3889. return weldd
  3890. end
  3891.  
  3892. it=Instance.new
  3893.  
  3894. function nooutline(part)
  3895. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3896. end
  3897.  
  3898. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3899. local fp=it("Part")
  3900. fp.formFactor=formfactor
  3901. fp.Parent=parent
  3902. fp.Reflectance=reflectance
  3903. fp.Transparency=transparency
  3904. fp.CanCollide=false
  3905. fp.Locked=true
  3906. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3907. fp.Name=name
  3908. fp.Size=size
  3909. fp.Position=Character.Torso.Position
  3910. nooutline(fp)
  3911. fp.Material=material
  3912. fp:BreakJoints()
  3913. return fp
  3914. end
  3915.  
  3916. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3917. local mesh=it(Mesh)
  3918. mesh.Parent=part
  3919. if Mesh=="SpecialMesh" then
  3920. mesh.MeshType=meshtype
  3921. mesh.MeshId=meshid
  3922. end
  3923. mesh.Offset=offset
  3924. mesh.Scale=scale
  3925. return mesh
  3926. end
  3927.  
  3928. function weld(parent,part0,part1,c0,c1)
  3929. local weld=it("Weld")
  3930. weld.Parent=parent
  3931. weld.Part0=part0
  3932. weld.Part1=part1
  3933. weld.C0=c0
  3934. weld.C1=c1
  3935. return weld
  3936. end
  3937.  
  3938. handle=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,1,"Medium stone grey","Handle",Vector3.new(0.05, 0.05, 0.05))
  3939. handleweld=weld(m,Character["Torso"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0100221634, -0.0175542831, 0.00262880325, 1.00000155, -2.14157415e-28, 0.000332000374, -2.14157415e-28, 1, -7.1100246e-32, -0.000332000374, 4.7754458e-39, 1.00000155))
  3940. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.837632179, 0.333232641, 0.251318902))
  3941. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.700101852, 1.86904049, 0.891112566, 0.75275898, -0.636865616, 0.166612804, -0.638960898, -0.7677508, -0.0478571169, 0.158395648, -0.0704337358, -0.984863639))
  3942. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.483554214, 0.333232641, 0.251318902))
  3943. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.37859869, 1.42097473, -0.884177685, 0.638928056, -0.767751753, -0.0482810065, 0.752649307, 0.636864662, -0.167112693, 0.159049526, 0.0704338774, 0.984758258))
  3944. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  3945. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.17693233, 0.404156685, 0.899710178, -0.498539031, -0.866677165, -0.0181981921, -0.852276921, 0.493872404, -0.172391862, 0.158395648, -0.0704337358, -0.984863639))
  3946. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.246144727, 0.200000003, 0.200000003))
  3947. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79093742, -5.0165062, 0.899179935, 0.541946113, 0.839977741, 0.0270888023, 0.825355411, -0.538030386, 0.171220094, 0.158395648, -0.0704337358, -0.984863639))
  3948. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0973593965, 0.702734888))
  3949. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341453254, 0.333232641, 0.251318902))
  3950. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.104499578, -3.89063263, 0.891108513, -0.488824785, 0.86104399, -0.140196726, 0.857885361, 0.503629029, 0.101955876, 0.158395648, -0.0704337358, -0.984863639))
  3951. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.0836575, 0.333232641, 0.251318902))
  3952. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.94126606, -0.604771733, 0.891101122, -0.929736614, -0.346456975, -0.124752127, -0.332426131, 0.93541801, -0.120362103, 0.158395648, -0.0704337358, -0.984863639))
  3953. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  3954. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.36515665, -5.39487457, -0.875785828, -0.81914556, 0.56619513, 0.0918044075, -0.551099241, -0.821256638, 0.147748649, 0.159049526, 0.0704338774, 0.984758258))
  3955. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.649142921, 0.236052051, 0.251318902))
  3956. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.47317219, 0.354777813, 0.891096592, -0.973336935, -0.178759843, -0.143757522, -0.165928766, 0.981368423, -0.0968705565, 0.158395648, -0.0704337358, -0.984863639))
  3957. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157688, 0.0928658471, 0.140546978))
  3958. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.34740114, -4.54231548, 0.89917922, 0.41211924, 0.911129892, 0.00112016883, 0.897259653, -0.406056136, 0.173346102, 0.158395648, -0.0704337358, -0.984863639))
  3959. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.46827829, 0.952135324, 0.251318902))
  3960. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.65370083, -0.36060524, 0.891111851, 0.857885361, 0.503629029, 0.101955876, 0.488824785, -0.86104399, 0.140196726, 0.158395648, -0.0704337358, -0.984863639))
  3961. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.623012781, 0.333232641, 0.251318902))
  3962. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.530793428, 1.99753952, 0.891105652, -0.00560906343, -0.997500598, 0.0704358295, -0.98736304, -0.00563243032, -0.158394843, 0.158395648, -0.0704337358, -0.984863639))
  3963. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  3964. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.18585587, 0.349413395, 0.899714947, 0.971388578, -0.167668134, 0.168219566, -0.176978514, -0.983324349, 0.0418606214, 0.158395648, -0.0704337358, -0.984863639))
  3965. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392539173, 0.333232641, 0.251318902))
  3966. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.81200981, 0.265833378, 0.891103268, 0.857885361, 0.503629029, 0.101955876, 0.488824785, -0.86104399, 0.140196726, 0.158395648, -0.0704337358, -0.984863639))
  3967. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.388688922, 0.200000003, 0.200000003))
  3968. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.989244938, -3.72903919, 0.899180412, 0.129879355, 0.990271866, -0.0499324463, 0.978799522, -0.12000373, 0.166002661, 0.158395648, -0.0704337358, -0.984863639))
  3969. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.195967019, 0.702734888))
  3970. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.471516728, 0.234877661, 0.251318902))
  3971. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.747990608, -0.87575531, 0.891108036, -0.630366266, 0.760510743, -0.155771062, 0.759970784, 0.645493984, 0.0760625526, 0.158395648, -0.0704337358, -0.984863639))
  3972. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  3973. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.98905087, -7.80519533, -0.875741005, -0.480350316, 0.876951933, 0.0148584386, -0.862538993, -0.475389123, 0.17331171, 0.159049526, 0.0704338774, 0.984758258))
  3974. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.483554214, 0.333232641, 0.251318902))
  3975. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.31697559, 1.35000134, 0.89109993, -0.638960898, -0.7677508, -0.0478571169, -0.75275898, 0.636865616, -0.166612804, 0.158395648, -0.0704337358, -0.984863639))
  3976. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.88196522, 0.514088511, 0.251318902))
  3977. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.4933629, -2.56108665, 0.891094208, 0.342967689, 0.939270735, -0.0120140137, 0.925899744, -0.335871369, 0.172932908, 0.158395648, -0.0704337358, -0.984863639))
  3978. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(8.67960358, 0.333232433, 0.161478281))
  3979. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.57341194, -0.117282867, -0.875673294, 0.889293849, -0.443437904, -0.111914277, 0.428796589, 0.893533587, -0.133164987, 0.159049526, 0.0704338774, 0.984758258))
  3980. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.471516728, 0.234877661, 0.251318902))
  3981. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.807125092, -0.948737144, -0.884182453, 0.630263746, 0.760509849, -0.156189755, -0.759919405, 0.645495176, 0.076566793, 0.159049526, 0.0704338774, 0.984758258))
  3982. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.246144727, 0.200000003, 0.200000003))
  3983. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.84341717, -5.09448719, -0.876107216, -0.541927397, 0.839978278, 0.0274483506, -0.825242281, -0.53802973, 0.171768188, 0.159049526, 0.0704338774, 0.984758258))
  3984. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0973593965, 0.702734888))
  3985. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.72853518, 0.276367128, 0.200000003))
  3986. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.92755938, 0.762280822, -0.873428345, -0.951270163, -0.255978465, 0.171949551, 0.264187902, -0.964113414, 0.0262883995, 0.159049526, 0.0704338774, 0.984758258))
  3987. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  3988. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526303, 0.0796965212, 0.120615982))
  3989. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.23291898, -2.68892288, -0.876105785, -0.774011075, 0.628090024, 0.0800876692, -0.612875879, -0.774946809, 0.154413998, 0.159049526, 0.0704338774, 0.984758258))
  3990. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.30827716, 0.200000003, 0.200000003))
  3991. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.0651021, -0.632002354, -0.876111984, -0.858350456, 0.50268954, 0.102678612, -0.487795562, -0.861593068, 0.140409455, 0.159049526, 0.0704338774, 0.984758258))
  3992. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.142394558, 0.826475263))
  3993. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.974742055, 0.804455996, 0.200000003))
  3994. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.33538294, -4.73545551, -0.875673294, -0.073296383, 0.995541811, -0.059367422, -0.984549403, -0.0627364814, 0.163502961, 0.159049526, 0.0704338774, 0.984758258))
  3995. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  3996. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330954, 0.200000003, 0.200000003))
  3997. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.95088196, -7.30414772, -0.875742435, -0.56724745, 0.822897077, 0.0327595398, -0.808047295, -0.563808382, 0.17083481, 0.159049526, 0.0704338774, 0.984758258))
  3998. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  3999. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.46827829, 0.952135324, 0.251318902))
  4000. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.73588848, -0.40621233, -0.884181976, -0.857817829, 0.503629148, 0.102525368, -0.488731652, -0.861044168, 0.140521377, 0.159049526, 0.0704338774, 0.984758258))
  4001. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.42655277, 0.474159241, 0.200000003))
  4002. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.87717533, -1.32662773, -0.872437, -0.835002363, 0.541791916, 0.096110858, -0.526764631, -0.837556481, 0.144984186, 0.159049526, 0.0704338774, 0.984758258))
  4003. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  4004. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(5.21506357, 0.20021978, 0.0970228091))
  4005. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.07851458, -1.58847284, -0.875841618, 0.738140345, 0.653911829, -0.165988639, -0.655636132, 0.753285348, 0.0520142578, 0.159049526, 0.0704338774, 0.984758258))
  4006. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.26049519, 0.284894377, 0.200000003))
  4007. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.43603611, 0.764592171, -0.87389946, -0.807647109, -0.564388216, 0.170811653, 0.567816854, -0.822499335, -0.0328799486, 0.159049526, 0.0704338774, 0.984758258))
  4008. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  4009. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.0836575, 0.333232641, 0.251318902))
  4010. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.03015041, -0.574133396, -0.884183884, 0.929653645, -0.346456975, -0.125369355, 0.332346082, 0.935418129, -0.120582908, 0.159049526, 0.0704338774, 0.984758258))
  4011. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.88196522, 0.514088511, 0.251318902))
  4012. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.52700329, -2.6488533, -0.884180069, -0.342975736, 0.939270914, -0.0117864367, -0.925784886, -0.335871369, 0.173547685, 0.159049526, 0.0704338774, 0.984758258))
  4013. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.333568811, 0.200000003, 0.200000003))
  4014. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.54901314, -2.15040779, -0.876101971, -0.559423566, 0.828299344, 0.0311095063, -0.813483357, -0.555841386, 0.171142966, 0.159049526, 0.0704338774, 0.984758258))
  4015. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168176889, 0.603079915))
  4016. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.623012781, 0.333232641, 0.251318902))
  4017. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.532396793, 2.09151459, -0.884161949, 0.00565586146, -0.997500718, 0.0704322308, 0.987257838, -0.00563246012, -0.159050345, 0.159049526, 0.0704338774, 0.984758258))
  4018. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4019. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.15353775, -1.38181496, 0.899710655, -0.971388578, 0.167667985, -0.168219551, 0.176978365, 0.983324289, -0.0418606475, 0.158395648, -0.0704337358, -0.984863639))
  4020. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.23805618, 0.345994473, 0.200000003))
  4021. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.56607056, 0.541192055, 0.901857138, 0.951383591, -0.255979359, 0.171317831, -0.264171213, -0.964112818, 0.0264634844, 0.158395648, -0.0704337358, -0.984863639))
  4022. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  4023. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.02377248, 0.109218024, 0.165295035))
  4024. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.6075983, 0.0951771736, -0.876103401, -0.8881374, 0.445839584, 0.11155571, -0.431186944, -0.892337799, 0.133465528, 0.159049526, 0.0704338774, 0.984758258))
  4025. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  4026. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.3123312, -6.54397392, -0.875741005, -0.56724745, 0.822897077, 0.0327595398, -0.808047295, -0.563808382, 0.17083481, 0.159049526, 0.0704338774, 0.984758258))
  4027. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  4028. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.570847034, 0.200000003, 0.200000003))
  4029. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.08688402, 1.61658335, -0.876107216, -0.469388247, -0.872112572, 0.138188854, 0.868553102, -0.484209657, -0.105648227, 0.159049526, 0.0704338774, 0.984758258))
  4030. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125247687, 0.496580422))
  4031. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.837632179, 0.333232641, 0.251318902))
  4032. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.771085739, 1.93069386, -0.884171486, -0.752648413, -0.636865735, 0.167112619, 0.638929069, -0.7677508, -0.0482812412, 0.159049526, 0.0704338774, 0.984758258))
  4033. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.649142921, 0.236052051, 0.251318902))
  4034. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.56598759, 0.369503975, -0.884170532, 0.973241329, -0.178759933, -0.144403696, 0.165864408, 0.981368542, -0.0969808325, 0.159049526, 0.0704338774, 0.984758258))
  4035. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.828803003, 0.684012294, 0.200000003))
  4036. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.81264782, -4.15558147, 0.89956212, 0.418314397, 0.908299923, 0.00231892825, 0.894388199, -0.412347406, 0.173334211, 0.158395648, -0.0704337358, -0.984863639))
  4037. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4038. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.47297621, 0.200000003, 0.200000003))
  4039. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.43650723, 0.103844166, -0.876109123, -0.888450921, 0.445189804, 0.111652821, -0.430540204, -0.892662048, 0.133384258, 0.159049526, 0.0704338774, 0.984758258))
  4040. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.280385196, 0.826475263))
  4041. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.421605587, 0.200000003, 0.200000003))
  4042. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.385073185, -4.24829006, -0.87610054, 0.2262768, 0.968300164, -0.105803393, -0.960993707, 0.239654273, 0.138070092, 0.159049526, 0.0704338774, 0.984758258))
  4043. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.25689742, 0.826475263))
  4044. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  4045. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-10.7668295, -1.35262012, -0.875671387, -0.840006173, 0.533750474, 0.097494185, -0.518748343, -0.842703938, 0.144057631, 0.159049526, 0.0704338774, 0.984758258))
  4046. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392539173, 0.333232641, 0.251318902))
  4047. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.89422512, 0.220214367, -0.884170055, -0.857817829, 0.503629148, 0.102525368, -0.488731652, -0.861044168, 0.140521377, 0.159049526, 0.0704338774, 0.984758258))
  4048. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4049. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.69456816, -2.22814298, -0.876106262, -0.97177875, 0.187195092, 0.143564135, -0.174230143, -0.979794621, 0.098219417, 0.159049526, 0.0704338774, 0.984758258))
  4050. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.86967802, 0.0687980205, 0.496580422))
  4051. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  4052. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.00764418, -9.00028801, -0.87567091, -0.142560482, 0.988636971, -0.0476866253, -0.976927102, -0.132802248, 0.167283282, 0.159049526, 0.0704338774, 0.984758258))
  4053. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.17940784, 0.322034985, 0.200000003))
  4054. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.7252779, -0.298906803, -0.872979641, -0.967677772, 0.208867818, 0.141351685, -0.195728391, -0.975404441, 0.101377606, 0.159049526, 0.0704338774, 0.984758258))
  4055. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  4056. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341453254, 0.333232641, 0.251318902))
  4057. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.150129795, -3.97287154, -0.884187698, 0.488732785, 0.861043513, -0.140521526, -0.857817173, 0.50363034, 0.102525182, 0.159049526, 0.0704338774, 0.984758258))
  4058. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  4059. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.89297867, -5.11195469, 0.899503708, -0.463223636, 0.875570774, -0.137118191, 0.871975482, 0.477927923, 0.106060021, 0.158395648, -0.0704337358, -0.984863639))
  4060. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4061. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.262121707, 0.200000003, 0.200000003))
  4062. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.11748409, 0.0639610291, -0.876108646, -0.975656867, 0.163778692, 0.145865351, -0.151008502, -0.983979702, 0.0947682038, 0.159049526, 0.0704338774, 0.984758258))
  4063. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.121075168, 0.702734888))
  4064. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.73925114, 0.378740221, 0.200000003))
  4065. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.10012627, -1.02225876, -0.872441292, -0.835002363, 0.541791916, 0.096110858, -0.526764631, -0.837556481, 0.144984186, 0.159049526, 0.0704338774, 0.984758258))
  4066. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  4067. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.23805618, 0.345994473, 0.200000003))
  4068. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.65635395, 0.567358971, -0.873436451, -0.951270163, -0.255978465, 0.171949551, 0.264187902, -0.964113414, 0.0262883995, 0.159049526, 0.0704338774, 0.984758258))
  4069. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  4070. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.317000091, 0.200000003, 0.200000003))
  4071. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.31575251, 1.44009209, -0.875844002, -0.738136292, -0.653916478, 0.165988311, 0.655640781, -0.753281236, -0.0520153008, 0.159049526, 0.0704338774, 0.984758258))
  4072. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.680042028, 0.485114038))
  4073. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.33351707, 0.243160099, 0.117830887))
  4074. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.10377502, -1.5553863, -0.875781059, 0.915228903, 0.36352247, -0.173820481, -0.370224476, 0.928919315, -0.00664507039, 0.159049526, 0.0704338774, 0.984758258))
  4075. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.388688922, 0.200000003, 0.200000003))
  4076. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.00266516, -3.82210827, -0.87610817, -0.1299126, 0.990272045, -0.0498463511, -0.978689373, -0.12000373, 0.16665253, 0.159049526, 0.0704338774, 0.984758258))
  4077. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.195967019, 0.702734888))
  4078. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.86096573, 0.200000003, 0.200000003))
  4079. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.73538971, 1.31504488, -0.876113892, -0.953327179, -0.248355001, 0.171736494, 0.256665647, -0.966105103, 0.0276457798, 0.159049526, 0.0704338774, 0.984758258))
  4080. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.177244052, 0.702734888))
  4081. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.487054616, 0.200000003, 0.200000003))
  4082. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.27444363, 1.05640697, -0.876102924, -0.73989594, -0.651889443, 0.166127533, 0.653654456, -0.755036175, -0.051568944, 0.159049526, 0.0704338774, 0.984758258))
  4083. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103197038, 0.496580422))
  4084. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.253317922, 0.200000003, 0.200000003))
  4085. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.61122799, -1.7631793, -0.87610817, -0.799769223, 0.59401983, 0.0866847336, -0.578860283, -0.801361322, 0.150809377, 0.159049526, 0.0704338774, 0.984758258))
  4086. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.154354557, 0.496580422))
  4087. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.384985864, 0.200000003, 0.200000003))
  4088. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.60626459, 1.37513888, -0.875784874, -0.915224373, -0.363533467, 0.173820555, 0.370235354, -0.928914726, 0.00664297398, 0.159049526, 0.0704338774, 0.984758258))
  4089. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.825887859, 0.589154541))
  4090. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.95976114, 0.345994473, 0.200000003))
  4091. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.4043808, 0.513969898, 0.901859522, 0.951383591, -0.255979359, 0.171317831, -0.264171213, -0.964112818, 0.0264634844, 0.158395648, -0.0704337358, -0.984863639))
  4092. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  4093. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.307646036, 0.200000003, 0.200000003))
  4094. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.62449265, -2.36927128, -0.876119614, -0.559423566, 0.828299344, 0.0311095063, -0.813483357, -0.555841386, 0.171142966, 0.159049526, 0.0704338774, 0.984758258))
  4095. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.187458321, 0.603079915))
  4096. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.24669528, 0.227562711, 0.200000003))
  4097. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.96907568, 0.94747901, -0.873895645, -0.807647109, -0.564388216, 0.170811653, 0.567816854, -0.822499335, -0.0328799486, 0.159049526, 0.0704338774, 0.984758258))
  4098. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  4099. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526318, 0.200000003, 0.200000003))
  4100. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.27017307, -3.09353781, 0.899179935, 0.85719502, 0.504842997, 0.101758048, 0.490034342, -0.860332966, 0.140340403, 0.158395648, -0.0704337358, -0.984863639))
  4101. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.33206898, 0.603079915))
  4102. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.29378319, 0.0500000007, 0.120615982))
  4103. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.39287758, 1.34701824, 0.899183035, 0.916340232, -0.361013323, 0.173193529, -0.367747515, -0.929897368, 0.0073583317, 0.158395648, -0.0704337358, -0.984863639))
  4104. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  4105. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.79792404, -2.28564715, -0.875847816, -0.976712883, 0.156730622, 0.146540001, -0.144020423, -0.985126853, 0.0937215909, 0.159049526, 0.0704338774, 0.984758258))
  4106. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4107. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.07483196, 0.200000003, 0.200000003))
  4108. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.64972115, 1.51036119, 0.899181604, 0.916063786, -0.361711085, 0.173198968, -0.368435085, -0.929625928, 0.00722833769, 0.158395648, -0.0704337358, -0.984863639))
  4109. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.204597339, 0.603079915))
  4110. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  4111. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.93610978, -5.19544029, -0.875783443, 0.46313253, 0.875570893, -0.13742584, -0.871905088, 0.477927983, 0.106638886, 0.159049526, 0.0704338774, 0.984758258))
  4112. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4113. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.211238876, 0.200000003, 0.200000003))
  4114. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.28640366, -3.05552244, -0.876101494, -0.857127726, 0.504843056, 0.102327086, -0.489941061, -0.860333085, 0.140665859, 0.159049526, 0.0704338774, 0.984758258))
  4115. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0835528523, 0.603079915))
  4116. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.307646036, 0.200000003, 0.200000003))
  4117. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.57033062, -2.29242516, 0.899165154, 0.559443235, 0.828299642, 0.0307380427, 0.813597262, -0.555840611, 0.170602739, 0.158395648, -0.0704337358, -0.984863639))
  4118. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.187458321, 0.603079915))
  4119. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.72026825, 0.186172783, 0.120615982))
  4120. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.42092252, -2.46699524, -0.876100063, -0.708025157, 0.70327878, 0.0640523657, -0.688047945, -0.707416654, 0.161725104, 0.159049526, 0.0704338774, 0.984758258))
  4121. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.50757241, 0.0500000007, 0.140546978))
  4122. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.32861137, 0.540556192, -0.876111031, -0.983388245, 0.0997137427, 0.15169625, -0.087509498, -0.992520452, 0.0851232708, 0.159049526, 0.0704338774, 0.984758258))
  4123. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.693274379, 0.200000003, 0.200000003))
  4124. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.58943653, 1.6636641, -0.876110077, -0.733404636, -0.659314036, 0.165610179, 0.660929382, -0.748561621, -0.0532070324, 0.159049526, 0.0704338774, 0.984758258))
  4125. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.152109027, 0.603079915))
  4126. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.591511309, 0.200000003, 0.200000003))
  4127. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.91192293, 0.90885371, -0.876109123, -0.916216314, -0.361035317, 0.173802093, 0.36777404, -0.929888785, 0.0071101794, 0.159049526, 0.0704338774, 0.984758258))
  4128. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125329256, 0.603079915))
  4129. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(7.38008833, 0.283340693, 0.137301654))
  4130. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.05869627, -0.744317532, -0.875728607, 0.983619809, -0.0970442891, -0.151924595, 0.0848645568, 0.992784798, -0.0847150087, 0.159049526, 0.0704338774, 0.984758258))
  4131. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917462, 0.200000003, 0.200000003))
  4132. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.74045277, -6.00325108, -0.87610817, -0.213370487, 0.976331234, -0.0353698544, -0.963941395, -0.204491541, 0.170313492, 0.159049526, 0.0704338774, 0.984758258))
  4133. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.455075413, 0.826475263))
  4134. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.384985864, 0.200000003, 0.200000003))
  4135. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.51955318, 1.33892965, 0.899498224, 0.91533941, -0.363533497, 0.173212782, -0.370230854, -0.928914666, 0.00688865362, 0.158395648, -0.0704337358, -0.984863639))
  4136. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.825887859, 0.589154541))
  4137. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.25244117, 0.200000003, 0.200000003))
  4138. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.79386044, 0.731644154, -0.8761096, -0.983451426, 0.0989937782, 0.151757956, -0.086796023, -0.992592514, 0.0850131959, 0.159049526, 0.0704338774, 0.984758258))
  4139. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.238405704, 0.702734888))
  4140. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.22495015, 0.200000003, 0.200000003))
  4141. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.55459309, 1.00351143, 0.899181366, 0.938224554, -0.300057799, 0.172353849, -0.307655454, -0.951317191, 0.0185548104, 0.158395648, -0.0704337358, -0.984863639))
  4142. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103905462, 0.603079915))
  4143. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.211238876, 0.200000003, 0.200000003))
  4144. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.20426083, -3.0098033, 0.899184942, 0.85719502, 0.504842997, 0.101758048, 0.490034342, -0.860332966, 0.140340403, 0.158395648, -0.0704337358, -0.984863639))
  4145. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0835528523, 0.603079915))
  4146. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  4147. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.42288208, -3.13142538, -0.875778198, -0.871902943, 0.477931917, 0.106638268, -0.463136405, -0.875568628, 0.137426317, 0.159049526, 0.0704338774, 0.984758258))
  4148. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4149. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  4150. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.58907557, 0.518524766, -0.875790119, -0.948702931, -0.265176654, 0.172192782, 0.273262948, -0.961624026, 0.0246446058, 0.159049526, 0.0704338774, 0.984758258))
  4151. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.336782306, 0.200000003, 0.200000003))
  4152. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.19369125, -3.31674337, -0.875786781, -0.962302089, 0.233980119, 0.138687283, -0.220645562, -0.969686866, 0.104993097, 0.159049526, 0.0704338774, 0.984758258))
  4153. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.761616349, 0.589154541))
  4154. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.591511309, 0.200000003, 0.200000003))
  4155. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.8250742, 0.872862339, 0.899178505, 0.916331172, -0.361035287, 0.173193634, -0.367769092, -0.929888546, 0.0073542241, 0.158395648, -0.0704337358, -0.984863639))
  4156. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125329256, 0.603079915))
  4157. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.333568811, 0.200000003, 0.200000003))
  4158. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.49489403, -2.07356834, 0.89918375, 0.559443235, 0.828299642, 0.0307380427, 0.813597262, -0.555840611, 0.170602739, 0.158395648, -0.0704337358, -0.984863639))
  4159. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168176889, 0.603079915))
  4160. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  4161. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.94836664, -4.43407345, -0.875843525, 0.144032344, 0.985124946, -0.0937233791, -0.976711154, 0.156742603, 0.146538854, 0.159049526, 0.0704338774, 0.984758258))
  4162. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4163. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.95976114, 0.345994473, 0.200000003))
  4164. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.49467325, 0.540156007, -0.873429775, -0.951270163, -0.255978465, 0.171949551, 0.264187902, -0.964113414, 0.0262883995, 0.159049526, 0.0704338774, 0.984758258))
  4165. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  4166. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.33351707, 0.243160099, 0.117830887))
  4167. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.01703262, -1.51913595, 0.899508238, -0.915344, 0.36352244, -0.173212707, 0.370219886, 0.928919137, -0.00689074118, 0.158395648, -0.0704337358, -0.984863639))
  4168. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.74704808, 0.0796965286, 0.120615996))
  4169. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.67314529, 1.54036009, -0.87610817, -0.916225195, -0.361013353, 0.173801929, 0.367752343, -0.929897428, 0.00711429445, 0.159049526, 0.0704338774, 0.984758258))
  4170. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.739121258, 0.702058196, 0.200000003))
  4171. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.54637194, 1.82349014, 0.899509907, 0.733514249, -0.659313917, 0.165123075, -0.660964429, -0.748561442, -0.0527683012, 0.158395648, -0.0704337358, -0.984863639))
  4172. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4173. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392433375, 0.200000003, 0.200000003))
  4174. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.68182468, -5.37684155, -0.875736237, -0.757740498, 0.648114979, 0.0760275126, -0.632881582, -0.758278489, 0.156452954, 0.159049526, 0.0704338774, 0.984758258))
  4175. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.887468517, 0.686508358))
  4176. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.693274379, 0.200000003, 0.200000003))
  4177. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.52033567, 1.59994698, 0.899183273, 0.733514249, -0.659313917, 0.165123075, -0.660964429, -0.748561442, -0.0527683012, 0.158395648, -0.0704337358, -0.984863639))
  4178. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.152109027, 0.603079915))
  4179. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  4180. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.12457132, -5.95018005, -0.87573719, 0.808053374, 0.563799441, -0.170835152, -0.567238748, 0.822903156, 0.032757692, 0.159049526, 0.0704338774, 0.984758258))
  4181. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  4182. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.274662942, 0.200000003, 0.200000003))
  4183. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.54910898, -1.58295965, -0.876111984, -0.799769223, 0.59401983, 0.0866847336, -0.578860283, -0.801361322, 0.150809377, 0.159049526, 0.0704338774, 0.984758258))
  4184. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.138478085, 0.496580422))
  4185. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  4186. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.42267799, -4.25300503, 0.8995049, 0.871973336, 0.477931857, 0.106059402, 0.46322751, -0.875568509, 0.137118652, 0.158395648, -0.0704337358, -0.984863639))
  4187. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4188. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.56158078, 0.305075049, 0.200000003))
  4189. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.34251595, 1.32768679, 0.899502039, 0.91533941, -0.363533497, 0.173212782, -0.370230854, -0.928914666, 0.00688865362, 0.158395648, -0.0704337358, -0.984863639))
  4190. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4191. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  4192. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.05005693, -5.18684959, -0.875727177, -0.56724745, 0.822897077, 0.0327595398, -0.808047295, -0.563808382, 0.17083481, 0.159049526, 0.0704338774, 0.984758258))
  4193. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  4194. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.22495015, 0.200000003, 0.200000003))
  4195. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.64358711, 1.03381026, -0.876112461, -0.938109934, -0.300057769, 0.172976762, 0.307667822, -0.95131737, 0.0183506738, 0.159049526, 0.0704338774, 0.984758258))
  4196. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103905462, 0.603079915))
  4197. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.10932434, 0.750047624, 0.200000003))
  4198. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.85736561, 1.10140848, 0.899503469, 0.91533941, -0.363533497, 0.173212782, -0.370230854, -0.928914666, 0.00688865362, 0.158395648, -0.0704337358, -0.984863639))
  4199. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4200. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29263294, 0.873988032, 0.200000003))
  4201. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.54222918, 0.257477522, -0.875741959, -0.98361975, 0.0970465839, 0.151924402, -0.0848668888, -0.992784739, 0.0847153515, 0.159049526, 0.0704338774, 0.984758258))
  4202. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4203. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  4204. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.49904728, 0.49146986, 0.899506807, 0.948817015, -0.265176624, 0.171562821, -0.273246467, -0.961623907, 0.0248259045, 0.158395648, -0.0704337358, -0.984863639))
  4205. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.448602259, 0.200000003, 0.200000003))
  4206. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.80941677, 0.534244776, -0.875730991, -0.98361975, 0.0970465839, 0.151924402, -0.0848668888, -0.992784739, 0.0847153515, 0.159049526, 0.0704338774, 0.984758258))
  4207. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.962360442, 0.686508358))
  4208. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  4209. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.50616503, -4.29614449, -0.875782967, -0.871902943, 0.477931917, 0.106638268, -0.463136405, -0.875568628, 0.137426317, 0.159049526, 0.0704338774, 0.984758258))
  4210. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4211. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625893, 0.200000003, 0.200000003))
  4212. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.97065163, -4.90537262, 0.899504185, 0.871973336, 0.477931857, 0.106059402, 0.46322751, -0.875568509, 0.137118652, 0.158395648, -0.0704337358, -0.984863639))
  4213. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4214. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.608597696, 0.578079879, 0.200000003))
  4215. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1083169, 1.80063629, -0.875847816, -0.469388247, -0.872112572, 0.138188854, 0.868553102, -0.484209657, -0.105648227, 0.159049526, 0.0704338774, 0.984758258))
  4216. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4217. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526318, 0.200000003, 0.200000003))
  4218. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.3522954, -3.13926458, -0.876105785, -0.857127726, 0.504843056, 0.102327086, -0.489941061, -0.860333085, 0.140665859, 0.159049526, 0.0704338774, 0.984758258))
  4219. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.33206898, 0.603079915))
  4220. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.06531036, 0.0500000007, 0.0993160605))
  4221. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.56546021, 1.44687796, -0.876111984, -0.739910543, -0.651872754, 0.166128725, 0.653638124, -0.755050898, -0.0515652709, 0.159049526, 0.0704338774, 0.984758258))
  4222. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.52024531, 1.02788341, 0.200000003))
  4223. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.61408281, -0.455251217, -0.875657082, -0.889293075, 0.443439215, 0.111914068, -0.428797871, -0.893532991, 0.133165151, 0.159049526, 0.0704338774, 0.984758258))
  4224. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4225. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.45713082, 0.200000003, 0.200000003))
  4226. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.281674862, -3.94838238, -0.876116276, 0.2262768, 0.968300164, -0.105803393, -0.960993707, 0.239654273, 0.138070092, 0.159049526, 0.0704338774, 0.984758258))
  4227. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.230473682, 0.826475263))
  4228. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.56158078, 0.305075049, 0.200000003))
  4229. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.42926836, 1.36390948, -0.875774384, -0.915224373, -0.363533467, 0.173820555, 0.370235354, -0.928914726, 0.00664297398, 0.159049526, 0.0704338774, 0.984758258))
  4230. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4231. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  4232. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.83779812, -0.573298454, -0.875739098, -0.969506621, 0.199523836, 0.142315388, -0.186458915, -0.97735858, 0.100020275, 0.159049526, 0.0704338774, 0.984758258))
  4233. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.870492697, 0.0928658396, 0.140546978))
  4234. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.38876915, 0.723852158, -0.876095772, -0.983388186, 0.0997137725, 0.151696235, -0.0875094682, -0.992520332, 0.0851232633, 0.159049526, 0.0704338774, 0.984758258))
  4235. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.10932434, 0.750047624, 0.200000003))
  4236. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.94407701, 1.13763809, -0.875790596, -0.915224373, -0.363533467, 0.173820555, 0.370235354, -0.928914726, 0.00664297398, 0.159049526, 0.0704338774, 0.984758258))
  4237. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4238. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.461534649, 0.208747551, 0.200000003))
  4239. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.17923641, -6.52787971, -0.875675201, -0.483447194, 0.875237703, 0.0154812383, -0.860807121, -0.478537917, 0.173257172, 0.159049526, 0.0704338774, 0.984758258))
  4240. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4241. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.828803003, 0.684012294, 0.200000003))
  4242. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.85343742, -4.2402482, -0.875724792, -0.418312132, 0.908300459, 0.00259637786, -0.8942734, -0.412346601, 0.173928082, 0.159049526, 0.0704338774, 0.984758258))
  4243. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4244. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.913425505, 0.6175946, 0.200000003))
  4245. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.30013657, 1.24447751, -0.875851631, -0.738136292, -0.653916478, 0.165988311, 0.655640781, -0.753281236, -0.0520153008, 0.159049526, 0.0704338774, 0.984758258))
  4246. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4247. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.839287937, 0.216936618, 0.140546992))
  4248. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.29211879, -4.32275438, -0.87610817, -0.319203496, 0.947547734, -0.0162179098, -0.934247613, -0.311756849, 0.173189729, 0.159049526, 0.0704338774, 0.984758258))
  4249. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.336782306, 0.200000003, 0.200000003))
  4250. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.10181999, -3.29676151, 0.899507761, 0.962393939, 0.233980119, 0.138048366, 0.220715255, -0.969686866, 0.104846425, 0.158395648, -0.0704337358, -0.984863639))
  4251. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.761616349, 0.589154541))
  4252. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407956, 0.200000003, 0.200000003))
  4253. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.14126825, -3.78194141, -0.875845432, -0.976712883, 0.156730622, 0.146540001, -0.144020423, -0.985126853, 0.0937215909, 0.159049526, 0.0704338774, 0.984758258))
  4254. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4255. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.01290989, 0.962117612, 0.200000003))
  4256. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.44734335, 0.891662359, -0.875675201, -0.982319713, 0.111090571, 0.150709957, -0.0987823308, -0.991311431, 0.0868574828, 0.159049526, 0.0704338774, 0.984758258))
  4257. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4258. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  4259. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.15770626, 0.745937824, -0.875843525, -0.802185714, -0.572220147, 0.170489728, 0.575506628, -0.817070067, -0.0345102772, 0.159049526, 0.0704338774, 0.984758258))
  4260. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.93836689, 0.403167814, 0.200000003))
  4261. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.57442474, -0.526028156, -0.872991085, -0.967677772, 0.208867818, 0.141351685, -0.195728391, -0.975404441, 0.101377606, 0.159049526, 0.0704338774, 0.984758258))
  4262. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  4263. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.48964572, 0.284894377, 0.200000003))
  4264. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.56921101, 0.786990643, -0.873892307, -0.807647109, -0.564388216, 0.170811653, 0.567816854, -0.822499335, -0.0328799486, 0.159049526, 0.0704338774, 0.984758258))
  4265. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  4266. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.277308941, 0.200000003, 0.200000003))
  4267. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.99809504, -2.40779257, -0.875842094, -0.980583131, -0.104658842, 0.165860862, 0.114745811, -0.992011011, 0.0524203293, 0.159049526, 0.0704338774, 0.984758258))
  4268. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.627120495, 0.485114038))
  4269. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  4270. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.68997478, -3.24473429, -0.875843525, -0.976712883, 0.156730622, 0.146540001, -0.144020423, -0.985126853, 0.0937215909, 0.159049526, 0.0704338774, 0.984758258))
  4271. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4272. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  4273. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.89048958, -6.02958012, -0.875672817, -0.243149132, 0.969522953, -0.0300733093, -0.956863761, -0.234658495, 0.171328068, 0.159049526, 0.0704338774, 0.984758258))
  4274. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4275. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.689254642, 0.200000003, 0.200000003))
  4276. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.5018568, -0.0120916367, -0.876114368, -0.983387887, 0.0997155309, 0.151696071, -0.0875111818, -0.992520094, 0.0851235166, 0.159049526, 0.0704338774, 0.984758258))
  4277. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.146039113, 0.702734888))
  4278. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.52759397, 0.226363361, 0.200000003))
  4279. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.63227272, -0.129740715, -0.875666618, -0.889293075, 0.443439215, 0.111914068, -0.428797871, -0.893532991, 0.133165151, 0.159049526, 0.0704338774, 0.984758258))
  4280. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4281. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.950080097, 0.200000003, 0.200000003))
  4282. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.41164923, 0.585349321, -0.876114845, -0.982319713, 0.111090571, 0.150709957, -0.0987823308, -0.991311431, 0.0868574828, 0.159049526, 0.0704338774, 0.984758258))
  4283. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.208453938, 0.826475263))
  4284. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.74704808, 0.0796965286, 0.120615996))
  4285. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.58631611, 1.50436735, 0.899174213, 0.916340232, -0.361013263, 0.173193499, -0.367747486, -0.929897308, 0.00735833915, 0.158395648, -0.0704337358, -0.984863639))
  4286. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4287. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.07369995, 1.16664958, -0.876113892, -0.780671895, -0.601626754, 0.16911833, 0.604368508, -0.795666158, -0.0407026894, 0.159049526, 0.0704338774, 0.984758258))
  4288. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.926127851, 0.0855565146, 0.496580422))
  4289. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4290. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.74881744, -2.29708672, -0.876101971, -0.97177875, 0.187195092, 0.143564135, -0.174230143, -0.979794621, 0.098219417, 0.159049526, 0.0704338774, 0.984758258))
  4291. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.837925136, 0.273428023, 0.496580422))
  4292. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  4293. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.33937263, -3.08826828, 0.899504662, 0.871973336, 0.477931857, 0.106059402, 0.46322751, -0.875568509, 0.137118652, 0.158395648, -0.0704337358, -0.984863639))
  4294. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4295. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.14002848, 0.418082207, 0.200000003))
  4296. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.64916849, -0.14515686, -0.875666618, -0.889293075, 0.443439215, 0.111914068, -0.428797871, -0.893532991, 0.133165151, 0.159049526, 0.0704338774, 0.984758258))
  4297. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4298. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.739121258, 0.702058196, 0.200000003))
  4299. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.61546993, 1.88718963, -0.875779152, -0.733404636, -0.659314036, 0.165610179, 0.660929382, -0.748561621, -0.0532070324, 0.159049526, 0.0704338774, 0.984758258))
  4300. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4301. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.81962168, 0.355486691, 0.200000003))
  4302. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.2727437, 0.521142721, -0.875736237, -0.98361975, 0.0970465839, 0.151924402, -0.0848668888, -0.992784739, 0.0847153515, 0.159049526, 0.0704338774, 0.984758258))
  4303. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4304. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.68831873, 0.818068683, 0.200000003))
  4305. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.87881756, 1.57551706, -0.875736713, -0.953327179, -0.248355001, 0.171736494, 0.256665647, -0.966105103, 0.0276457798, 0.159049526, 0.0704338774, 0.984758258))
  4306. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4307. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.585665047, 0.483350217, 0.200000003))
  4308. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.4817338, -1.67744541, -0.875833035, -0.936863124, 0.325422734, 0.128038183, -0.311444491, -0.942941964, 0.117745221, 0.159049526, 0.0704338774, 0.984758258))
  4309. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4310. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.29378319, 0.0500000007, 0.120615982))
  4311. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.47974777, 1.38302839, -0.876102448, -0.916225195, -0.361013412, 0.173801944, 0.367752373, -0.929897487, 0.0071143019, 0.159049526, 0.0704338774, 0.984758258))
  4312. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.07483196, 0.200000003, 0.200000003))
  4313. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.73652315, 1.54641891, -0.87610817, -0.915948868, -0.361711085, 0.173807219, 0.368439823, -0.929626107, 0.00698385015, 0.159049526, 0.0704338774, 0.984758258))
  4314. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.204597339, 0.603079915))
  4315. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157717, 0.200000003, 0.200000003))
  4316. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.9201827, -5.19203568, -0.876105785, -0.541927397, 0.839978278, 0.0274483506, -0.825242281, -0.53802973, 0.171768188, 0.159049526, 0.0704338774, 0.984758258))
  4317. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.386941314, 0.702734888))
  4318. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  4319. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.37494802, -7.62555504, -0.875649452, -0.243149132, 0.969522953, -0.0300733093, -0.956863761, -0.234658495, 0.171328068, 0.159049526, 0.0704338774, 0.984758258))
  4320. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4321. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.289486945, 0.200000003, 0.200000003))
  4322. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.65015411, -5.88851833, -0.876107216, -0.213370487, 0.976331234, -0.0353698544, -0.963941395, -0.204491541, 0.170313492, 0.159049526, 0.0704338774, 0.984758258))
  4323. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.114502862, 0.826475263))
  4324. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  4325. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.13230658, -5.9491291, -0.875666618, 0.956864119, 0.234657556, -0.171328053, -0.243148223, 0.969523311, -0.0300734807, 0.159049526, 0.0704338774, 0.984758258))
  4326. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4327. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.711270273, 0.587012351, 0.200000003))
  4328. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.76559043, -2.35450935, -0.875779629, -0.778230727, 0.622715831, 0.0811535791, -0.607508659, -0.779271603, 0.153856456, 0.159049526, 0.0704338774, 0.984758258))
  4329. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4330. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.593074083, 0.153296009, 0.0993160754))
  4331. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.13903046, -1.75554442, 0.899179697, 0.897796094, 0.425415128, 0.113968335, 0.410948753, -0.902253151, 0.130619064, 0.158395648, -0.0704337358, -0.984863639))
  4332. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28581667, 0.251201004, 0.200000003))
  4333. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.52307987, 1.43080831, -0.875840187, -0.738136292, -0.653916478, 0.165988311, 0.655640781, -0.753281236, -0.0520153008, 0.159049526, 0.0704338774, 0.984758258))
  4334. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4335. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.81962168, 0.355486691, 0.200000003))
  4336. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.17900562, 0.528181553, 0.899546862, 0.983720183, 0.0970456004, 0.151271403, 0.0849221796, -0.992784619, 0.0846586972, 0.158395648, -0.0704337358, -0.984863639))
  4337. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4338. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.593074083, 0.153296009, 0.0993160754))
  4339. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.22492075, -1.79367971, -0.876101494, -0.897720635, 0.425415218, 0.114564329, -0.410861999, -0.902253389, 0.130892023, 0.159049526, 0.0704338774, 0.984758258))
  4340. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.86096573, 0.200000003, 0.200000003))
  4341. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.64489841, 1.28957129, 0.89918232, 0.953440905, -0.248355046, 0.171103463, -0.25664717, -0.966105044, 0.0278160498, 0.158395648, -0.0704337358, -0.984863639))
  4342. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.177244052, 0.702734888))
  4343. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.448602259, 0.200000003, 0.200000003))
  4344. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.71567822, 0.541264057, 0.899555683, 0.983720183, 0.0970456004, 0.151271403, 0.0849221796, -0.992784619, 0.0846586972, 0.158395648, -0.0704337358, -0.984863639))
  4345. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.962360442, 0.686508358))
  4346. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.77303123, 0.0569577813, 0.16529502))
  4347. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.62776089, -0.0802702904, 0.899173975, 0.888211191, 0.445839524, 0.110966101, 0.431275398, -0.892337739, 0.133179083, 0.158395648, -0.0704337358, -0.984863639))
  4348. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.35848251, 0.200000003, 0.200000003))
  4349. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.09059107, -4.07705545, -0.876107216, -0.1299126, 0.990272045, -0.0498463511, -0.978689373, -0.12000373, 0.16665253, 0.159049526, 0.0704338774, 0.984758258))
  4350. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.218434557, 0.702734888))
  4351. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544916272, 0.225188985, 0.200000003))
  4352. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.1258769, -8.51951981, -0.875674248, -0.243149132, 0.969522953, -0.0300733093, -0.956863761, -0.234658495, 0.171328068, 0.159049526, 0.0704338774, 0.984758258))
  4353. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4354. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.81062156, 0.200000003, 0.200000003))
  4355. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.56451988, -0.770327568, -0.876095295, -0.888136804, 0.445840418, 0.111555554, -0.431187809, -0.892337322, 0.133465618, 0.159049526, 0.0704338774, 0.984758258))
  4356. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.171754241, 0.826475263))
  4357. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.885024369, 0.200000003, 0.200000003))
  4358. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.60015965, 1.58135319, -0.876099586, -0.739420414, -0.652438164, 0.166090012, 0.65419215, -0.75456202, -0.0516897105, 0.159049526, 0.0704338774, 0.984758258))
  4359. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168466955, 0.496580422))
  4360. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.35848251, 0.200000003, 0.200000003))
  4361. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07717514, -3.98405743, 0.89918375, 0.129879355, 0.990271866, -0.0499324463, 0.978799522, -0.12000373, 0.166002661, 0.158395648, -0.0704337358, -0.984863639))
  4362. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.218434557, 0.702734888))
  4363. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.68831873, 0.818068683, 0.200000003))
  4364. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.7883234, 1.5500679, 0.899549246, 0.953440905, -0.248355046, 0.171103463, -0.25664717, -0.966105044, 0.0278160498, 0.158395648, -0.0704337358, -0.984863639))
  4365. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4366. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.6140852, 0.403167814, 0.200000003))
  4367. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.29368877, -0.540122628, 0.902308226, 0.967771351, 0.208867699, 0.140709192, 0.19579564, -0.975404263, 0.101247497, 0.158395648, -0.0704337358, -0.984863639))
  4368. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  4369. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625893, 0.200000003, 0.200000003))
  4370. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.05418491, -4.94852543, -0.87578392, -0.871902943, 0.477931917, 0.106638268, -0.463136405, -0.875568628, 0.137426317, 0.159049526, 0.0704338774, 0.984758258))
  4371. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  4372. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.17940784, 0.322034985, 0.200000003))
  4373. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.63292789, -0.281317264, 0.90230751, 0.967771351, 0.208867699, 0.140709192, 0.19579564, -0.975404263, 0.101247497, 0.158395648, -0.0704337358, -0.984863639))
  4374. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  4375. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  4376. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.9951973, -5.11057854, 0.899551868, 0.567268908, 0.822896957, 0.0323830284, 0.808160365, -0.563808322, 0.170298159, 0.158395648, -0.0704337358, -0.984863639))
  4377. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  4378. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392433375, 0.200000003, 0.200000003))
  4379. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.60902596, -5.31743908, 0.899554253, 0.757790625, 0.64811492, 0.0755244941, 0.632985294, -0.758278489, 0.156032622, 0.158395648, -0.0704337358, -0.984863639))
  4380. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.887468517, 0.686508358))
  4381. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  4382. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.25744534, -6.4676342, 0.899554729, 0.567268908, 0.822896957, 0.0323830284, 0.808160365, -0.563808322, 0.170298159, 0.158395648, -0.0704337358, -0.984863639))
  4383. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  4384. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29263294, 0.873988032, 0.200000003))
  4385. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.44844723, 0.264499307, 0.899559975, 0.983720183, 0.0970456004, 0.151271403, 0.0849221796, -0.992784619, 0.0846586972, 0.158395648, -0.0704337358, -0.984863639))
  4386. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  4387. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.711270273, 0.587012351, 0.200000003))
  4388. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.69082737, -2.29750347, 0.899507284, 0.778284431, 0.622715771, 0.0806369483, 0.607610583, -0.779271603, 0.153452963, 0.158395648, -0.0704337358, -0.984863639))
  4389. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  4390. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330954, 0.200000003, 0.200000003))
  4391. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.89600754, -7.22783756, 0.899558783, 0.567268908, 0.822896957, 0.0323830284, 0.808160365, -0.563808322, 0.170298159, 0.158395648, -0.0704337358, -0.984863639))
  4392. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  4393. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.987072945, 0.255135655, 0.16529505))
  4394. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.71047688, -4.6296978, 0.899176836, -0.0336004198, 0.99649024, -0.0766696334, 0.986806989, 0.0452355742, 0.155473113, 0.158395648, -0.0704337358, -0.984863639))
  4395. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.93836689, 0.403167814, 0.200000003))
  4396. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.48208714, -0.508446693, 0.902300596, 0.967771351, 0.208867699, 0.140709192, 0.19579564, -0.975404263, 0.101247497, 0.158395648, -0.0704337358, -0.984863639))
  4397. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  4398. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.81062156, 0.200000003, 0.200000003))
  4399. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.47948933, -0.730221033, 0.899180651, 0.888210654, 0.445840329, 0.110965937, 0.431276202, -0.892337203, 0.133179173, 0.158395648, -0.0704337358, -0.984863639))
  4400. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.171754241, 0.826475263))
  4401. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.80793524, 0.474159241, 0.200000003))
  4402. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.09872341, -1.28934956, -0.872449875, -0.835002363, 0.541791916, 0.096110858, -0.526764631, -0.837556481, 0.144984186, 0.159049526, 0.0704338774, 0.984758258))
  4403. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  4404. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.615124702, 0.0656226948, 0.0993160754))
  4405. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.90129137, 1.57645273, -0.876101017, -0.739910543, -0.651872814, 0.166128725, 0.653638065, -0.755050838, -0.0515652671, 0.159049526, 0.0704338774, 0.984758258))
  4406. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.77303123, 0.0569577813, 0.16529502))
  4407. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.71281719, -0.12038517, -0.876109123, -0.88813746, 0.445839614, 0.111555718, -0.431186944, -0.892337859, 0.133465528, 0.159049526, 0.0704338774, 0.984758258))
  4408. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.6140852, 0.403167814, 0.200000003))
  4409. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.38605118, -0.557724476, -0.872985363, -0.967677772, 0.208867818, 0.141351685, -0.195728391, -0.975404441, 0.101377606, 0.159049526, 0.0704338774, 0.984758258))
  4410. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  4411. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.72853518, 0.276367128, 0.200000003))
  4412. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.83732796, 0.73610878, 0.901870728, 0.951383591, -0.255979359, 0.171317831, -0.264171213, -0.964112818, 0.0264634844, 0.158395648, -0.0704337358, -0.984863639))
  4413. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  4414. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.262121707, 0.200000003, 0.200000003))
  4415. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.02445412, 0.0772790313, 0.899172306, 0.975753427, 0.163778633, 0.145217553, 0.151071489, -0.983979583, 0.0946677923, 0.158395648, -0.0704337358, -0.984863639))
  4416. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.121075168, 0.702734888))
  4417. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.987072945, 0.255135655, 0.16529505))
  4418. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.70833468, -4.723629, -0.876116276, 0.0335495621, 0.996490359, -0.0766920745, -0.986703634, 0.045235604, 0.156128243, 0.159049526, 0.0704338774, 0.984758258))
  4419. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  4420. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-10.6862888, -1.30415058, 0.89962697, 0.840070486, 0.533750415, 0.096936509, 0.51884377, -0.842703879, 0.143713042, 0.158395648, -0.0704337358, -0.984863639))
  4421. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917462, 0.200000003, 0.200000003))
  4422. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.71909857, -5.91170692, 0.899182796, 0.213346913, 0.976331115, -0.035511367, 0.964054167, -0.204491556, 0.169673428, 0.158395648, -0.0704337358, -0.984863639))
  4423. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.455075413, 0.826475263))
  4424. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.461534649, 0.208747551, 0.200000003))
  4425. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.13227654, -6.44646263, 0.899623156, 0.483456552, 0.875237942, 0.0151602253, 0.860922158, -0.478537083, 0.172685549, 0.158395648, -0.0704337358, -0.984863639))
  4426. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4427. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.30827716, 0.200000003, 0.200000003))
  4428. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.98289776, -0.586512566, 0.899170399, 0.858418167, 0.502689481, 0.102108754, 0.487888604, -0.861592889, 0.140085429, 0.158395648, -0.0704337358, -0.984863639))
  4429. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.142394558, 0.826475263))
  4430. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.06531036, 0.0500000007, 0.0993160605))
  4431. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.49573326, 1.38384151, 0.899169683, 0.740020633, -0.651872694, 0.165637314, -0.65367198, -0.755050719, -0.0511313789, 0.158395648, -0.0704337358, -0.984863639))
  4432. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.615124702, 0.0656226948, 0.0993160754))
  4433. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.83156061, 1.51341534, 0.899182796, 0.740020573, -0.651872635, 0.165637314, -0.65367192, -0.755050659, -0.0511313714, 0.158395648, -0.0704337358, -0.984863639))
  4434. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(5.21506357, 0.20021978, 0.0970228091))
  4435. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.00895405, -1.52527142, 0.899441719, -0.738250315, 0.653911769, -0.165498421, 0.655670524, 0.753285229, 0.0515790507, 0.158395648, -0.0704337358, -0.984863639))
  4436. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.01290989, 0.962117612, 0.200000003))
  4437. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.35375977, 0.899987698, 0.899623871, 0.982419491, 0.111090541, 0.150057733, 0.0988400206, -0.991311312, 0.0867917389, 0.158395648, -0.0704337358, -0.984863639))
  4438. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4439. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4440. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.65613461, -2.28155923, 0.899180412, 0.97187376, 0.187194049, 0.142919019, 0.174294397, -0.979794621, 0.0981034413, 0.158395648, -0.0704337358, -0.984863639))
  4441. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.837925136, 0.273428023, 0.496580422))
  4442. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.885024369, 0.200000003, 0.200000003))
  4443. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.53051615, 1.51825809, 0.899175406, 0.739530563, -0.652438164, 0.165598929, -0.654226303, -0.754561961, -0.0512554646, 0.158395648, -0.0704337358, -0.984863639))
  4444. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168466955, 0.496580422))
  4445. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4446. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.60183334, -2.21259737, 0.899178982, 0.97187376, 0.187194049, 0.142919019, 0.174294397, -0.979794621, 0.0981034413, 0.158395648, -0.0704337358, -0.984863639))
  4447. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.86967802, 0.0687980205, 0.496580422))
  4448. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.608597696, 0.578079879, 0.200000003))
  4449. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.06458545, 1.71746063, 0.899444103, 0.469479233, -0.872112989, 0.137876973, -0.868623555, -0.484208882, -0.105071731, 0.158395648, -0.0704337358, -0.984863639))
  4450. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4451. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.26049519, 0.284894377, 0.200000003))
  4452. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.35979939, 0.709637642, 0.901391029, 0.807760298, -0.564388156, 0.170275271, -0.56783843, -0.822499216, -0.0325030573, 0.158395648, -0.0704337358, -0.984863639))
  4453. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  4454. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.487054616, 0.200000003, 0.200000003))
  4455. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.20471144, 0.993402481, 0.899175167, 0.74000591, -0.651889324, 0.165636152, -0.653688312, -0.755036056, -0.0511350483, 0.158395648, -0.0704337358, -0.984863639))
  4456. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103197038, 0.496580422))
  4457. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  4458. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.86629438, -5.93879318, 0.899615288, 0.243128091, 0.969523191, -0.0302347708, 0.956977606, -0.234657571, 0.170692697, 0.158395648, -0.0704337358, -0.984863639))
  4459. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4460. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.45713082, 0.200000003, 0.200000003))
  4461. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.302171409, -3.85664177, 0.899174929, -0.226347059, 0.968300045, -0.105653003, 0.961084962, 0.239654273, 0.137432054, 0.158395648, -0.0704337358, -0.984863639))
  4462. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.230473682, 0.826475263))
  4463. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(8.67960358, 0.333232433, 0.161478281))
  4464. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.48829556, -0.157133818, 0.899628162, -0.889367282, -0.44343856, -0.111323729, -0.428885609, 0.893533111, -0.132880211, 0.158395648, -0.0704337358, -0.984863639))
  4465. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.02377248, 0.109218024, 0.165295035))
  4466. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.52259731, 0.13526392, 0.899174929, 0.888211131, 0.445839494, 0.110966086, 0.431275398, -0.89233768, 0.133179069, 0.158395648, -0.0704337358, -0.984863639))
  4467. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.47297621, 0.200000003, 0.200000003))
  4468. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.35146236, 0.143870831, 0.899175167, 0.888524592, 0.445189714, 0.111062989, 0.430628598, -0.892661929, 0.13309826, 0.158395648, -0.0704337358, -0.984863639))
  4469. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.280385196, 0.826475263))
  4470. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.289486945, 0.200000003, 0.200000003))
  4471. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.62878847, -5.79698372, 0.899180174, 0.213346913, 0.976331115, -0.035511367, 0.964054167, -0.204491556, 0.169673428, 0.158395648, -0.0704337358, -0.984863639))
  4472. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.114502862, 0.826475263))
  4473. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544916272, 0.225188985, 0.200000003))
  4474. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.10166311, -8.42869759, 0.89962101, 0.243128091, 0.969523191, -0.0302347708, 0.956977606, -0.234657571, 0.170692697, 0.158395648, -0.0704337358, -0.984863639))
  4475. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4476. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.52759397, 0.226363361, 0.200000003))
  4477. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.54712391, -0.0898849964, 0.899624348, 0.889367104, 0.443439037, 0.111323655, 0.428886175, -0.893532872, 0.132880285, 0.158395648, -0.0704337358, -0.984863639))
  4478. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4479. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.950080097, 0.200000003, 0.200000003))
  4480. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.31802368, 0.593690634, 0.899173021, 0.982419491, 0.111090541, 0.150057733, 0.0988400206, -0.991311312, 0.0867917389, 0.158395648, -0.0704337358, -0.984863639))
  4481. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.208453938, 0.826475263))
  4482. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.73925114, 0.378740221, 0.200000003))
  4483. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.0200882, -0.97302866, 0.902845383, 0.835065901, 0.541791797, 0.0955565274, 0.526860714, -0.837556362, 0.144634306, 0.158395648, -0.0704337358, -0.984863639))
  4484. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  4485. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.42655277, 0.474159241, 0.200000003))
  4486. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.79708099, -1.27738047, 0.902848959, 0.835065901, 0.541791797, 0.0955565274, 0.526860714, -0.837556362, 0.144634306, 0.158395648, -0.0704337358, -0.984863639))
  4487. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  4488. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  4489. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.04142857, -5.9249177, 0.899623394, -0.956977844, 0.234656647, -0.170692667, 0.243127227, 0.96952343, -0.0302349348, 0.158395648, -0.0704337358, -0.984863639))
  4490. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4491. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  4492. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.35073805, -7.53473663, 0.899620056, 0.243128091, 0.969523191, -0.0302347708, 0.956977606, -0.234657571, 0.170692697, 0.158395648, -0.0704337358, -0.984863639))
  4493. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4494. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.974742055, 0.804455996, 0.200000003))
  4495. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.32731676, -4.64178848, 0.89961648, 0.0732559189, 0.995541811, -0.0594160855, 0.984657824, -0.0627355278, 0.162849188, 0.158395648, -0.0704337358, -0.984863639))
  4496. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4497. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.52024531, 1.02788341, 0.200000003))
  4498. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.52893353, -0.415368557, 0.899619102, 0.889367104, 0.443439037, 0.111323655, 0.428886175, -0.893532872, 0.132880285, 0.158395648, -0.0704337358, -0.984863639))
  4499. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4500. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.80793524, 0.474159241, 0.200000003))
  4501. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.01865196, -1.240098, 0.902853489, 0.835065901, 0.541791797, 0.0955565274, 0.526860714, -0.837556362, 0.144634306, 0.158395648, -0.0704337358, -0.984863639))
  4502. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  4503. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.14002848, 0.418082207, 0.200000003))
  4504. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.56400204, -0.105271816, 0.899624109, 0.889367104, 0.443439037, 0.111323655, 0.428886175, -0.893532872, 0.132880285, 0.158395648, -0.0704337358, -0.984863639))
  4505. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  4506. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.421605587, 0.200000003, 0.200000003))
  4507. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.405569971, -4.15652847, 0.899177074, -0.226347059, 0.968300045, -0.105653003, 0.961084962, 0.239654273, 0.137432054, 0.158395648, -0.0704337358, -0.984863639))
  4508. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.25689742, 0.826475263))
  4509. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157688, 0.0928658471, 0.140546978))
  4510. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.38760376, -4.62725306, -0.876109123, -0.412119269, 0.911129475, 0.00139382645, -0.897144139, -0.40605697, 0.173941851, 0.159049526, 0.0704338774, 0.984758258))
  4511. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4512. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.955852509, 0.625712156, -0.875572681, -0.852161765, -0.493873715, 0.172957763, 0.498528183, -0.866676629, -0.0185293108, 0.159049526, 0.0704338774, 0.984758258))
  4513. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  4514. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.93570781, -4.34092236, 0.899439335, -0.144093618, 0.985125005, -0.0936274603, 0.976808131, 0.156741619, 0.145890474, 0.158395648, -0.0704337358, -0.984863639))
  4515. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4516. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(7.38008833, 0.283340693, 0.137301654))
  4517. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.96492386, -0.751348019, 0.899559975, -0.983720541, -0.097042948, -0.151271641, -0.0849195123, 0.992784858, -0.0846583024, 0.158395648, -0.0704337358, -0.984863639))
  4518. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4519. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.875217438, 0.577329636, 0.8997159, 0.852276325, -0.493873656, 0.172391832, -0.498540312, -0.866676569, -0.0181984361, 0.158395648, -0.0704337358, -0.984863639))
  4520. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.317000091, 0.200000003, 0.200000003))
  4521. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.24620485, 1.37683487, 0.899437904, 0.738246202, -0.653916538, 0.165498123, -0.655675173, -0.753281176, -0.0515800938, 0.158395648, -0.0704337358, -0.984863639))
  4522. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.680042028, 0.485114038))
  4523. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4524. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.612905502, 0.709106445, 0.899713516, 0.75275749, -0.636867404, 0.16661267, -0.638962567, -0.76774931, -0.0478575006, 0.158395648, -0.0704337358, -0.984863639))
  4525. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.24669528, 0.227562711, 0.200000003))
  4526. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.89282131, 0.892552376, 0.901396751, 0.807760298, -0.564388156, 0.170275271, -0.56783843, -0.822499216, -0.0325030573, 0.158395648, -0.0704337358, -0.984863639))
  4527. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  4528. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  4529. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.04824734, -5.89530945, 0.899547577, -0.808166444, 0.563799381, -0.170298517, 0.567260206, 0.822903037, 0.0323811881, 0.158395648, -0.0704337358, -0.984863639))
  4530. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  4531. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.277308941, 0.200000003, 0.200000003))
  4532. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.90485382, -2.41978216, 0.899445057, 0.980692923, -0.104658872, 0.165209725, -0.114710905, -0.992010891, 0.0524963699, 0.158395648, -0.0704337358, -0.984863639))
  4533. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.627120495, 0.485114038))
  4534. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28581667, 0.251201004, 0.200000003))
  4535. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.45351076, 1.36759567, 0.899456739, 0.738246202, -0.653916538, 0.165498123, -0.655675173, -0.753281176, -0.0515800938, 0.158395648, -0.0704337358, -0.984863639))
  4536. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4537. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  4538. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.70473862, -2.27298903, 0.899447203, 0.97680974, 0.156730592, 0.145891517, 0.14408268, -0.985126793, 0.0936258137, 0.158395648, -0.0704337358, -0.984863639))
  4539. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4540. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407956, 0.200000003, 0.200000003))
  4541. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.04809093, -3.76932192, 0.899433136, 0.97680974, 0.156730592, 0.145891517, 0.14408268, -0.985126793, 0.0936258137, 0.158395648, -0.0704337358, -0.984863639))
  4542. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4543. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.48964572, 0.284894377, 0.200000003))
  4544. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.49291515, 0.732042313, 0.901394367, 0.807760298, -0.564388156, 0.170275271, -0.56783843, -0.822499216, -0.0325030573, 0.158395648, -0.0704337358, -0.984863639))
  4545. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  4546. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4547. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.00004673, 1.10830212, 0.899176121, 0.780784011, -0.601626694, 0.168599859, -0.60439539, -0.795666099, -0.0403015167, 0.158395648, -0.0704337358, -0.984863639))
  4548. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.926127851, 0.0855565146, 0.496580422))
  4549. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.274662942, 0.200000003, 0.200000003))
  4550. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.47231865, -1.52871323, 0.899180651, 0.799826324, 0.594019651, 0.0861538053, 0.57896024, -0.801361203, 0.150424898, 0.158395648, -0.0704337358, -0.984863639))
  4551. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.138478085, 0.496580422))
  4552. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  4553. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.08194923, 0.690246582, 0.899447441, 0.802298605, -0.572220087, 0.169957012, -0.575529337, -0.817069888, -0.0341282785, 0.158395648, -0.0704337358, -0.984863639))
  4554. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.870492697, 0.0928658396, 0.140546978))
  4555. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.29508305, 0.731118441, 0.899173498, 0.9834885, 0.0997146666, 0.151043221, 0.0875668675, -0.992520273, 0.0850651413, 0.158395648, -0.0704337358, -0.984863639))
  4556. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157717, 0.200000003, 0.200000003))
  4557. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.86768246, -5.11404228, 0.899182558, 0.541946113, 0.839977741, 0.0270888023, 0.825355411, -0.538030386, 0.171220094, 0.158395648, -0.0704337358, -0.984863639))
  4558. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.386941314, 0.702734888))
  4559. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.570847034, 0.200000003, 0.200000003))
  4560. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.04313016, 1.53340054, 0.899173021, 0.469479233, -0.872112989, 0.137876973, -0.868623555, -0.484208882, -0.105071731, 0.158395648, -0.0704337358, -0.984863639))
  4561. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125247687, 0.496580422))
  4562. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.253317922, 0.200000003, 0.200000003))
  4563. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.53444767, -1.70892, 0.899178028, 0.799826324, 0.594019651, 0.0861538053, 0.57896024, -0.801361203, 0.150424898, 0.158395648, -0.0704337358, -0.984863639))
  4564. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.154354557, 0.496580422))
  4565. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  4566. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.74527073, -0.556594372, 0.899551868, 0.969600797, 0.199523777, 0.141671658, 0.186525285, -0.97735852, 0.0998963192, 0.158395648, -0.0704337358, -0.984863639))
  4567. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.50757241, 0.0500000007, 0.140546978))
  4568. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.23492336, 0.547811508, 0.899180412, 0.9834885, 0.0997146964, 0.151043236, 0.0875668675, -0.992520332, 0.0850651488, 0.158395648, -0.0704337358, -0.984863639))
  4569. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.913425505, 0.6175946, 0.200000003))
  4570. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.23053312, 1.18124676, 0.899436474, 0.738246202, -0.653916538, 0.165498123, -0.655675173, -0.753281176, -0.0515800938, 0.158395648, -0.0704337358, -0.984863639))
  4571. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4572. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  4573. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.59684658, -3.23211718, 0.899447203, 0.97680974, 0.156730592, 0.145891517, 0.14408268, -0.985126793, 0.0936258137, 0.158395648, -0.0704337358, -0.984863639))
  4574. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  4575. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.72026825, 0.186172783, 0.120615982))
  4576. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.3527813, -2.4022789, 0.899178505, 0.708067238, 0.703278601, 0.0635823458, 0.688155055, -0.707416534, 0.1612681, 0.158395648, -0.0704337358, -0.984863639))
  4577. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4578. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.683907509, 0.770748854, -0.875570297, -0.752646863, -0.636867464, 0.167112529, 0.638930738, -0.76774931, -0.0482816175, 0.159049526, 0.0704338774, 0.984758258))
  4579. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.585665047, 0.483350217, 0.200000003))
  4580. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.39219284, -1.64878547, 0.899446249, 0.936947465, 0.325422674, 0.127416179, 0.311522603, -0.942941844, 0.117538266, 0.158395648, -0.0704337358, -0.984863639))
  4581. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  4582. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4583. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.86477071, 0.713346481, -0.875574112, 0.177005127, -0.983324409, 0.0417434536, 0.97127682, 0.167667001, -0.168864429, 0.159049526, 0.0704338774, 0.984758258))
  4584. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.25244117, 0.200000003, 0.200000003))
  4585. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.7002039, 0.738850355, 0.899182081, 0.983551681, 0.0989937484, 0.151104987, 0.0868525133, -0.992592335, 0.0849554017, 0.158395648, -0.0704337358, -0.984863639))
  4586. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.238405704, 0.702734888))
  4587. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.839287937, 0.216936618, 0.140546992))
  4588. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.26070261, -4.23413277, 0.89917016, 0.319192618, 0.947547555, -0.0164296925, 0.934362292, -0.311756849, 0.172569364, 0.158395648, -0.0704337358, -0.984863639))
  4589. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.689254642, 0.200000003, 0.200000003))
  4590. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.40810013, -0.00480878353, 0.899180889, 0.983488262, 0.0997154713, 0.151043147, 0.087567687, -0.992519975, 0.0850652456, 0.158395648, -0.0704337358, -0.984863639))
  4591. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.146039113, 0.702734888))
  4592. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  4593. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.27816868, 0.36729759, -0.875572681, -0.971276879, -0.167668194, 0.168864504, 0.177006349, -0.983324409, 0.0417432524, 0.159049526, 0.0704338774, 0.984758258))
  4594. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4595. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.24585152, -1.39969897, -0.875568867, 0.97127676, 0.167668015, -0.168864489, -0.17700617, 0.983324349, -0.0417432785, 0.159049526, 0.0704338774, 0.984758258))
  4596. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  4597. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.99300385, -8.90743637, 0.899626732, 0.142528698, 0.988636851, -0.0477811359, 0.977037787, -0.132802278, 0.166634604, 0.158395648, -0.0704337358, -0.984863639))
  4598. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  4599. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.94237328, -7.7235775, 0.899553537, 0.480360001, 0.876951873, 0.0145396311, 0.862653852, -0.475389123, 0.17273891, 0.158395648, -0.0704337358, -0.984863639))
  4600. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4601. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.846886158, 0.621031761, 0.899709225, -0.176977322, -0.983324349, 0.0418608226, -0.971388578, 0.167666942, -0.168219492, 0.158395648, -0.0704337358, -0.984863639))
  4602. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.167585015, 0.0656226873, 0.0993160605))
  4603. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.77898407, -1.92497277, 0.899177313, 0.934770584, 0.331936687, 0.126600191, 0.317995548, -0.940668523, 0.118416734, 0.158395648, -0.0704337358, -0.984863639))
  4604. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  4605. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.60343695, -4.16727877, -0.875849724, -0.956498504, 0.258096755, 0.136025012, -0.244582146, -0.963548362, 0.108420044, 0.159049526, 0.0704338774, 0.984758258))
  4606. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4607. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.283630848, 0.916330338, -0.875573158, -0.165863439, -0.981368661, 0.096980691, 0.973241448, -0.178758949, -0.1444038, 0.159049526, 0.0704338774, 0.984758258))
  4608. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4609. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.36431217, -0.183939934, 0.8997159, -0.759969652, -0.645495474, -0.0760622695, -0.630367577, 0.76050961, -0.155771151, 0.158395648, -0.0704337358, -0.984863639))
  4610. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  4611. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.212973595, 1.0695591, -0.87556839, -0.488728732, -0.861045897, 0.140521064, 0.857819378, -0.503626227, -0.102525853, 0.159049526, 0.0704338774, 0.984758258))
  4612. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4613. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43735743, -0.124714851, -0.875572205, 0.759919107, -0.645495534, -0.0765667409, 0.630264044, 0.76050961, -0.156189799, 0.159049526, 0.0704338774, 0.984758258))
  4614. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4615. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.45576286, -0.432270765, 0.89970994, -0.857886434, -0.503627419, -0.101956159, -0.488823175, 0.861045182, -0.140196547, 0.158395648, -0.0704337358, -0.984863639))
  4616. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  4617. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.28656006, -5.34329987, 0.899504423, 0.819206297, 0.566195071, 0.0912605822, 0.551197171, -0.821256518, 0.147382587, 0.158395648, -0.0704337358, -0.984863639))
  4618. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238588))
  4619. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.38829231, -0.792639971, 0.899710655, -0.973336995, -0.178759843, -0.143757522, -0.165928707, 0.981368542, -0.0968705416, 0.158395648, -0.0704337358, -0.984863639))
  4620. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917283, 0.109218009, 0.16529502))
  4621. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.96528482, -5.18345737, -0.876111031, -0.0664858893, 0.995951891, -0.0604967251, -0.985032797, -0.0558502376, 0.163088515, 0.159049526, 0.0704338774, 0.984758258))
  4622. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4623. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.35685253, -0.233741045, 0.899713993, 0.973336995, 0.178759813, 0.143757522, 0.165928677, -0.981368542, 0.0968705341, 0.158395648, -0.0704337358, -0.984863639))
  4624. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917283, 0.109218009, 0.16529502))
  4625. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.95789385, -5.08970642, 0.899176598, 0.066445671, 0.995951772, -0.0605406985, 0.985140741, -0.0558502674, 0.162434459, 0.158395648, -0.0704337358, -0.984863639))
  4626. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  4627. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.167333841, 0.987339973, 0.899712086, 0.488821954, -0.861045837, 0.140196383, -0.857887089, -0.503626227, -0.101956345, 0.158395648, -0.0704337358, -0.984863639))
  4628. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  4629. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.22531652, 0.484791756, -0.875574112, 0.49852699, -0.866677225, -0.018529065, 0.85216248, 0.493872464, -0.172957778, 0.159049526, 0.0704338774, 0.984758258))
  4630. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4631. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.29839766, 0.823468208, 0.899716139, 0.165927812, -0.981368661, 0.0968704, -0.973336995, -0.178758949, -0.143757612, 0.158395648, -0.0704337358, -0.984863639))
  4632. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.167585015, 0.0656226873, 0.0993160605))
  4633. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.86831379, -1.954216, -0.876111984, -0.934686542, 0.331936747, 0.127220765, -0.317916811, -0.940668702, 0.118627973, 0.159049526, 0.0704338774, 0.984758258))
  4634. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238588))
  4635. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48115635, -0.777873993, -0.875567436, 0.973241389, -0.178759843, -0.144403726, 0.165864334, 0.981368661, -0.0969808325, 0.159049526, 0.0704338774, 0.984758258))
  4636. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4637. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.44971752, -0.248507977, -0.875571251, -0.973241389, 0.178759813, 0.144403726, -0.165864304, -0.981368661, 0.0969808325, 0.159049526, 0.0704338774, 0.984758258))
  4638. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  4639. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.51207829, -4.1450429, 0.899453878, 0.956588447, 0.258096665, 0.135389939, 0.24465403, -0.963548183, 0.108257495, 0.158395648, -0.0704337358, -0.984863639))
  4640. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526303, 0.0796965212, 0.120615982))
  4641. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.15853882, -2.63138103, 0.899187326, 0.774064064, 0.628089964, 0.0795738399, 0.61297822, -0.77494669, 0.154006928, 0.158395648, -0.0704337358, -0.984863639))
  4642. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  4643. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.53797483, -0.386631012, -0.875575066, 0.857818782, -0.503627419, -0.102525659, 0.488730013, 0.861045241, -0.140521199, 0.159049526, 0.0704338774, 0.984758258))
  4644. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.763193846, 0.163541555, 1.09027684))
  4645. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.419935763, 1.12170887, 1.25058079, -0.158687159, 0.98589474, -0.0532010235, 0.0053470307, -0.0530247763, -0.998580575, -0.987316012, -0.15874587, 0.00314274291))
  4646. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4647. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.4000001, 0.200000033, 2))
  4648. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.348431528, 1.0679574, 1.2725935, -0.158687159, 0.98589474, -0.0532010235, 0.0053470307, -0.0530247763, -0.998580575, -0.987316012, -0.15874587, 0.00314274291))
  4649. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4650. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.4000001, 0.200000033, 2))
  4651. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.333662987, 1.06742907, 1.36449051, -0.158651814, -0.98589474, 0.0533063821, -0.00601008674, -0.0530247763, -0.99857676, 0.98731792, -0.15874587, 0.00248716492))
  4652. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4653. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.763193846, 0.163541555, 1.09027684))
  4654. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.405167103, 1.12118006, 1.3424778, -0.158651814, -0.98589474, 0.0533063821, -0.00601008674, -0.0530247763, -0.99857676, 0.98731792, -0.15874587, 0.00248716492))
  4655. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4656.  
  4657. game.StarterGui:SetCore("SendNotification", {
  4658. Title = "Loading";
  4659. Text = "Loading Edit";
  4660. Duration = 5;
  4661. Button1 = "Ok";
  4662. })
  4663. Player = game:GetService("Players").LocalPlayer
  4664. Character = Player.Character
  4665. local txt = Instance.new("BillboardGui", Character)
  4666. txt.Adornee = Character.Head
  4667. txt.Name = "_status"
  4668. txt.Size = UDim2.new(2, 0, 1.2, 0)
  4669. txt.StudsOffset = Vector3.new(-9, 8, 0)
  4670. local text = Instance.new("TextLabel", txt)
  4671. text.Size = UDim2.new(10, 0, 7, 0)
  4672. text.FontSize = "Size12"
  4673. text.TextScaled = true
  4674. text.TextTransparency = 0
  4675. text.BackgroundTransparency = 1
  4676. text.TextTransparency = 0
  4677. text.TextStrokeTransparency = 0
  4678. text.TextColor3 = Color3.fromRGB(196,40,28)
  4679. text.Font = "Cartoon"
  4680. text.Text = "Cyber Monarch"
  4681. Player = game:GetService("Players").LocalPlayer
  4682. PlayerGui = Player.PlayerGui
  4683. Cam = workspace.CurrentCamera
  4684. Backpack = Player.Backpack
  4685. Character = Player.Character
  4686. Humanoid = Character.Humanoid
  4687. Mouse = Player:GetMouse()
  4688. RootPart = Character["HumanoidRootPart"]
  4689. Torso = Character["Torso"]
  4690. Head = Character["Head"]
  4691. RightArm = Character["Right Arm"]
  4692. LeftArm = Character["Left Arm"]
  4693. RightLeg = Character["Right Leg"]
  4694. LeftLeg = Character["Left Leg"]
  4695. RootJoint = RootPart["RootJoint"]
  4696. Neck = Torso["Neck"]
  4697. RightShoulder = Torso["Right Shoulder"]
  4698. LeftShoulder = Torso["Left Shoulder"]
  4699. RightHip = Torso["Right Hip"]
  4700. LeftHip = Torso["Left Hip"]
  4701. local sick = Instance.new("Sound",Character)
  4702. sick.SoundId = "rbxassetid://170282324"
  4703. sick.Looped = true
  4704. sick.Volume = 1
  4705.  
  4706. IT = Instance.new
  4707. CF = CFrame.new
  4708. VT = Vector3.new
  4709. RAD = math.rad
  4710. C3 = Color3.new
  4711. UD2 = UDim2.new
  4712. BRICKC = BrickColor.new
  4713. ANGLES = CFrame.Angles
  4714. EULER = CFrame.fromEulerAnglesXYZ
  4715. COS = math.cos
  4716. ACOS = math.acos
  4717. SIN = math.sin
  4718. ASIN = math.asin
  4719. ABS = math.abs
  4720. MRANDOM = math.random
  4721. FLOOR = math.floor
  4722.  
  4723. --//=================================\\
  4724. --|| USEFUL VALUES
  4725. --\\=================================//
  4726.  
  4727. Animation_Speed = 3
  4728. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  4729. local Speed = 45
  4730. local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  4731. local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  4732. local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
  4733. local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
  4734. local DAMAGEMULTIPLIER = 1
  4735. local ANIM = "Idle"
  4736. local ATTACK = false
  4737. local EQUIPPED = false
  4738. local HOLD = false
  4739. local COMBO = 1
  4740. local Rooted = false
  4741. local SINE = 0
  4742. local KEYHOLD = false
  4743. local CHANGE = 2 / Animation_Speed
  4744. local WALKINGANIM = false
  4745. local VALUE1 = false
  4746. local VALUE2 = false
  4747. local ROBLOXIDLEANIMATION = IT("Animation")
  4748. ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
  4749. ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
  4750. --ROBLOXIDLEANIMATION.Parent = Humanoid
  4751. local WEAPONGUI = IT("ScreenGui", PlayerGui)
  4752. WEAPONGUI.Name = "Weapon GUI"
  4753. local Effects = IT("Folder", Character)
  4754. Effects.Name = "Effects"
  4755. local ANIMATOR = Humanoid.Animator
  4756. local ANIMATE = Character.Animate
  4757. local UNANCHOR = true
  4758. local HITPOS = nil
  4759. local HITFLOOR = nil
  4760. local LEFTWINGS = {}
  4761. local RIGHTWINGS = {}
  4762. local BODY = {}
  4763.  
  4764. --//=================================\\
  4765. --\\=================================//
  4766.  
  4767.  
  4768. --//=================================\\
  4769. --|| SAZERENOS' ARTIFICIAL HEARTBEAT
  4770. --\\=================================//
  4771.  
  4772. ArtificialHB = Instance.new("BindableEvent", script)
  4773. ArtificialHB.Name = "ArtificialHB"
  4774.  
  4775. script:WaitForChild("ArtificialHB")
  4776.  
  4777. frame = Frame_Speed
  4778. tf = 0
  4779. allowframeloss = false
  4780. tossremainder = false
  4781. lastframe = tick()
  4782. script.ArtificialHB:Fire()
  4783.  
  4784. game:GetService("RunService").Heartbeat:connect(function(s, p)
  4785. tf = tf + s
  4786. if tf >= frame then
  4787. if allowframeloss then
  4788. script.ArtificialHB:Fire()
  4789. lastframe = tick()
  4790. else
  4791. for i = 1, math.floor(tf / frame) do
  4792. script.ArtificialHB:Fire()
  4793. end
  4794. lastframe = tick()
  4795. end
  4796. if tossremainder then
  4797. tf = 0
  4798. else
  4799. tf = tf - frame * math.floor(tf / frame)
  4800. end
  4801. end
  4802. end)
  4803.  
  4804. --//=================================\\
  4805. --\\=================================//
  4806.  
  4807. --//=================================\\
  4808. --|| SOME FUNCTIONS
  4809. --\\=================================//
  4810.  
  4811. function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  4812. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  4813. end
  4814.  
  4815. function PositiveAngle(NUMBER)
  4816. if NUMBER >= 0 then
  4817. NUMBER = 0
  4818. end
  4819. return NUMBER
  4820. end
  4821.  
  4822. function NegativeAngle(NUMBER)
  4823. if NUMBER <= 0 then
  4824. NUMBER = 0
  4825. end
  4826. return NUMBER
  4827. end
  4828.  
  4829. function Swait(NUMBER)
  4830. if NUMBER == 0 or NUMBER == nil then
  4831. ArtificialHB.Event:wait()
  4832. else
  4833. for i = 1, NUMBER do
  4834. ArtificialHB.Event:wait()
  4835. end
  4836. end
  4837. end
  4838.  
  4839. function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  4840. local NEWMESH = IT(MESH)
  4841. if MESH == "SpecialMesh" then
  4842. NEWMESH.MeshType = MESHTYPE
  4843. if MESHID ~= "nil" and MESHID ~= "" then
  4844. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  4845. end
  4846. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  4847. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  4848. end
  4849. end
  4850. NEWMESH.Offset = OFFSET or VT(0, 0, 0)
  4851. NEWMESH.Scale = SCALE
  4852. NEWMESH.Parent = PARENT
  4853. return NEWMESH
  4854. end
  4855.  
  4856. function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR)
  4857. local NEWPART = IT("Part")
  4858. NEWPART.formFactor = FORMFACTOR
  4859. NEWPART.Reflectance = REFLECTANCE
  4860. NEWPART.Transparency = TRANSPARENCY
  4861. NEWPART.CanCollide = false
  4862. NEWPART.Locked = true
  4863. NEWPART.Anchored = true
  4864. if ANCHOR == false then
  4865. NEWPART.Anchored = false
  4866. end
  4867. NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
  4868. NEWPART.Name = NAME
  4869. NEWPART.Size = SIZE
  4870. NEWPART.Position = Torso.Position
  4871. NEWPART.Material = MATERIAL
  4872. NEWPART:BreakJoints()
  4873. NEWPART.Parent = PARENT
  4874. return NEWPART
  4875. end
  4876.  
  4877. local function weldBetween(a, b)
  4878. local weldd = Instance.new("ManualWeld")
  4879. weldd.Part0 = a
  4880. weldd.Part1 = b
  4881. weldd.C0 = CFrame.new()
  4882. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4883. weldd.Parent = a
  4884. return weldd
  4885. end
  4886.  
  4887.  
  4888. function QuaternionFromCFrame(cf)
  4889. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  4890. local trace = m00 + m11 + m22
  4891. if trace > 0 then
  4892. local s = math.sqrt(1 + trace)
  4893. local recip = 0.5 / s
  4894. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  4895. else
  4896. local i = 0
  4897. if m11 > m00 then
  4898. i = 1
  4899. end
  4900. if m22 > (i == 0 and m00 or m11) then
  4901. i = 2
  4902. end
  4903. if i == 0 then
  4904. local s = math.sqrt(m00 - m11 - m22 + 1)
  4905. local recip = 0.5 / s
  4906. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  4907. elseif i == 1 then
  4908. local s = math.sqrt(m11 - m22 - m00 + 1)
  4909. local recip = 0.5 / s
  4910. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  4911. elseif i == 2 then
  4912. local s = math.sqrt(m22 - m00 - m11 + 1)
  4913. local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  4914. end
  4915. end
  4916. end
  4917.  
  4918. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  4919. local xs, ys, zs = x + x, y + y, z + z
  4920. local wx, wy, wz = w * xs, w * ys, w * zs
  4921. local xx = x * xs
  4922. local xy = x * ys
  4923. local xz = x * zs
  4924. local yy = y * ys
  4925. local yz = y * zs
  4926. local zz = z * zs
  4927. return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy))
  4928. end
  4929.  
  4930. function QuaternionSlerp(a, b, t)
  4931. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  4932. local startInterp, finishInterp;
  4933. if cosTheta >= 0.0001 then
  4934. if (1 - cosTheta) > 0.0001 then
  4935. local theta = ACOS(cosTheta)
  4936. local invSinTheta = 1 / SIN(theta)
  4937. startInterp = SIN((1 - t) * theta) * invSinTheta
  4938. finishInterp = SIN(t * theta) * invSinTheta
  4939. else
  4940. startInterp = 1 - t
  4941. finishInterp = t
  4942. end
  4943. else
  4944. if (1 + cosTheta) > 0.0001 then
  4945. local theta = ACOS(-cosTheta)
  4946. local invSinTheta = 1 / SIN(theta)
  4947. startInterp = SIN((t - 1) * theta) * invSinTheta
  4948. finishInterp = SIN(t * theta) * invSinTheta
  4949. else
  4950. startInterp = t - 1
  4951. finishInterp = t
  4952. end
  4953. end
  4954. return a[1] * startInterp + b[1] * finishInterp, a[2] * startInterp + b[2] * finishInterp, a[3] * startInterp + b[3] * finishInterp, a[4] * startInterp + b[4] * finishInterp
  4955. end
  4956.  
  4957. function Clerp(a, b, t)
  4958. local qa = {QuaternionFromCFrame(a)}
  4959. local qb = {QuaternionFromCFrame(b)}
  4960. local ax, ay, az = a.x, a.y, a.z
  4961. local bx, by, bz = b.x, b.y, b.z
  4962. local _t = 1 - t
  4963. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  4964. end
  4965.  
  4966. function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME)
  4967. local frame = IT("Frame")
  4968. frame.BackgroundTransparency = TRANSPARENCY
  4969. frame.BorderSizePixel = BORDERSIZEPIXEL
  4970. frame.Position = POSITION
  4971. frame.Size = SIZE
  4972. frame.BackgroundColor3 = COLOR
  4973. frame.BorderColor3 = BORDERCOLOR
  4974. frame.Name = NAME
  4975. frame.Parent = PARENT
  4976. return frame
  4977. end
  4978.  
  4979. function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
  4980. local label = IT("TextLabel")
  4981. label.BackgroundTransparency = 1
  4982. label.Size = UD2(1, 0, 1, 0)
  4983. label.Position = UD2(0, 0, 0, 0)
  4984. label.TextColor3 = TEXTCOLOR
  4985. label.TextStrokeColor3 = BRICKC"Really red".Color
  4986. label.TextStrokeTransparency = STROKETRANSPARENCY
  4987. label.TextTransparency = TRANSPARENCY
  4988. label.FontSize = TEXTFONTSIZE
  4989. label.Font = TEXTFONT
  4990. label.BorderSizePixel = BORDERSIZEPIXEL
  4991. label.TextScaled = false
  4992. label.Text = TEXT
  4993. label.Name = NAME
  4994. label.Parent = PARENT
  4995. return label
  4996. end
  4997.  
  4998. function NoOutlines(PART)
  4999. PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
  5000. end
  5001.  
  5002. function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
  5003. local NEWWELD = IT(TYPE)
  5004. NEWWELD.Part0 = PART0
  5005. NEWWELD.Part1 = PART1
  5006. NEWWELD.C0 = C0
  5007. NEWWELD.C1 = C1
  5008. NEWWELD.Parent = PARENT
  5009. return NEWWELD
  5010. end
  5011.  
  5012. local S = IT("Sound")
  5013. function CreateSound(ID, PARENT, VOLUME, PITCH, DOESLOOP)
  5014. local NEWSOUND = nil
  5015. coroutine.resume(coroutine.create(function()
  5016. NEWSOUND = S:Clone()
  5017. NEWSOUND.Parent = PARENT
  5018. NEWSOUND.Volume = VOLUME
  5019. NEWSOUND.Pitch = PITCH
  5020. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  5021. NEWSOUND:play()
  5022. NEWSOUND.Name = "Audio"
  5023. if DOESLOOP == true then
  5024. NEWSOUND.Looped = true
  5025. else
  5026. repeat Swait() until NEWSOUND.Playing == false
  5027. NEWSOUND:remove()
  5028. end
  5029. end))
  5030. return NEWSOUND
  5031. end
  5032.  
  5033. function CFrameFromTopBack(at, top, back)
  5034. local right = top:Cross(back)
  5035. return CF(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z)
  5036. end
  5037.  
  5038. --WACKYEFFECT({EffectType = "", Size = VT(1,1,1), Size2 = VT(0,0,0), Transparency = 0, Transparency2 = 1, CFrame = CF(), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5039. function WACKYEFFECT(Table)
  5040. local TYPE = (Table.EffectType or "Sphere")
  5041. local SIZE = (Table.Size or VT(1,1,1))
  5042. local ENDSIZE = (Table.Size2 or VT(0,0,0))
  5043. local TRANSPARENCY = (Table.Transparency or 0)
  5044. local ENDTRANSPARENCY = (Table.Transparency2 or 1)
  5045. local CFRAME = (Table.CFrame or Torso.CFrame)
  5046. local MOVEDIRECTION = (Table.MoveToPos or nil)
  5047. local ROTATION1 = (Table.RotationX or 0)
  5048. local ROTATION2 = (Table.RotationY or 0)
  5049. local ROTATION3 = (Table.RotationZ or 0)
  5050. local MATERIAL = (Table.Material or "Neon")
  5051. local COLOR = (Table.Color or C3(1,1,1))
  5052. local TIME = (Table.Time or 45)
  5053. local SOUNDID = (Table.SoundID or nil)
  5054. local SOUNDPITCH = (Table.SoundPitch or nil)
  5055. local SOUNDVOLUME = (Table.SoundVolume or nil)
  5056. coroutine.resume(coroutine.create(function()
  5057. local PLAYSSOUND = false
  5058. local SOUND = nil
  5059. local EFFECT = CreatePart(3, Effects, MATERIAL, 0, TRANSPARENCY, BRICKC("Pearl"), "Effect", VT(1,1,1), true)
  5060. if SOUNDID ~= nil and SOUNDPITCH ~= nil and SOUNDVOLUME ~= nil then
  5061. PLAYSSOUND = true
  5062. SOUND = CreateSound(SOUNDID, EFFECT, SOUNDVOLUME, SOUNDPITCH, false)
  5063. end
  5064. EFFECT.Color = COLOR
  5065. local MSH = nil
  5066. if TYPE == "Sphere" then
  5067. MSH = CreateMesh("SpecialMesh", EFFECT, "Sphere", "", "", SIZE, VT(0,0,0))
  5068. elseif TYPE == "Block" then
  5069. MSH = IT("BlockMesh",EFFECT)
  5070. MSH.Scale = VT(SIZE.X,SIZE.X,SIZE.X)
  5071. elseif TYPE == "Box" then
  5072. MSH = IT("BlockMesh",EFFECT)
  5073. MSH.Scale = SIZE
  5074. elseif TYPE == "Wave" then
  5075. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "20329976", "", SIZE, VT(0,0,-SIZE.X/8))
  5076. elseif TYPE == "Ring" then
  5077. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "559831844", "", VT(SIZE.X,SIZE.X,0.1), VT(0,0,0))
  5078. elseif TYPE == "Slash" then
  5079. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662586858", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  5080. elseif TYPE == "Round Slash" then
  5081. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662585058", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  5082. elseif TYPE == "Swirl" then
  5083. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "1051557", "", SIZE, VT(0,0,0))
  5084. elseif TYPE == "Skull" then
  5085. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "4770583", "", SIZE, VT(0,0,0))
  5086. elseif TYPE == "Crystal" then
  5087. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "9756362", "", SIZE, VT(0,0,0))
  5088. end
  5089. if MSH ~= nil then
  5090. local MOVESPEED = nil
  5091. if MOVEDIRECTION ~= nil then
  5092. MOVESPEED = (CFRAME.p - MOVEDIRECTION).Magnitude/TIME
  5093. end
  5094. local GROWTH = SIZE - ENDSIZE
  5095. local TRANS = TRANSPARENCY - ENDTRANSPARENCY
  5096. if TYPE == "Block" then
  5097. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  5098. else
  5099. EFFECT.CFrame = CFRAME
  5100. end
  5101. for LOOP = 1, TIME do
  5102. Swait()
  5103. MSH.Scale = MSH.Scale - GROWTH/TIME
  5104. if TYPE == "Wave" then
  5105. MSH.Offset = VT(0,0,-MSH.Scale.X/8)
  5106. end
  5107. EFFECT.Transparency = EFFECT.Transparency - TRANS/TIME
  5108. if TYPE == "Block" then
  5109. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  5110. else
  5111. EFFECT.CFrame = EFFECT.CFrame*ANGLES(RAD(ROTATION1),RAD(ROTATION2),RAD(ROTATION3))
  5112. end
  5113. if MOVEDIRECTION ~= nil then
  5114. local ORI = EFFECT.Orientation
  5115. EFFECT.CFrame = CF(EFFECT.Position,MOVEDIRECTION)*CF(0,0,-MOVESPEED)
  5116. EFFECT.Orientation = ORI
  5117. end
  5118. end
  5119. if PLAYSSOUND == false then
  5120. EFFECT:remove()
  5121. else
  5122. repeat Swait() until SOUND.Playing == false
  5123. EFFECT:remove()
  5124. end
  5125. else
  5126. if PLAYSSOUND == false then
  5127. EFFECT:remove()
  5128. else
  5129. repeat Swait() until SOUND.Playing == false
  5130. EFFECT:remove()
  5131. end
  5132. end
  5133. end))
  5134. end
  5135.  
  5136. function Shatter(Part)
  5137. if Part.Transparency == 0 then
  5138. local SOUNDPART = CreatePart(3, Effects, "Neon", 0, 1, Part.BrickColor, "OOF", VT(0,0,0))
  5139. Debris:AddItem(SOUNDPART,5)
  5140. CreateSound("84005018", SOUNDPART, 3, MRANDOM(8,12)/10, false)
  5141. local SIZE = Part.Size.X + Part.Size.Y + Part.Size.Z
  5142. local SIZESET = SIZE/4
  5143. local XOffset = Part.Size.X*1.5/SIZESET
  5144. local YOffset = Part.Size.Y*1.5/SIZESET
  5145. local ZOffset = Part.Size.Z*1.5/SIZESET
  5146. for x = 1, math.ceil(XOffset) do
  5147. for y = 1, math.ceil(YOffset) do
  5148. for z = 1, math.ceil(ZOffset) do
  5149. local SHARD = CreatePart(3, Effects, "Neon", 0, 0, Part.BrickColor, "Shard", VT(SIZE,SIZE,SIZE)/10, false)
  5150. SHARD.CanCollide = true
  5151. SHARD.CFrame = Part.CFrame*CF((Part.Size.X/2-x/4),(Part.Size.Y/2-y/4),(Part.Size.Z/2-z/4))
  5152. SHARD.Velocity = VT(MRANDOM(-15,15),MRANDOM(-15,15),MRANDOM(-15,15))*3
  5153. Debris:AddItem(SHARD,MRANDOM(10,25)/3)
  5154. end
  5155. end
  5156. end
  5157. end
  5158. Part:remove()
  5159. end
  5160.  
  5161. function MakeForm(PART,TYPE)
  5162. if TYPE == "Cyl" then
  5163. local MSH = IT("CylinderMesh",PART)
  5164. elseif TYPE == "Ball" then
  5165. local MSH = IT("SpecialMesh",PART)
  5166. MSH.MeshType = "Sphere"
  5167. elseif TYPE == "Wedge" then
  5168. local MSH = IT("SpecialMesh",PART)
  5169. MSH.MeshType = "Wedge"
  5170. end
  5171. end
  5172.  
  5173. Debris = game:GetService("Debris")
  5174.  
  5175. function CastProperRay(StartPos, EndPos, Distance, Ignore)
  5176. local DIRECTION = CF(StartPos,EndPos).lookVector
  5177. return Raycast(StartPos, DIRECTION, Distance, Ignore)
  5178. end
  5179.  
  5180. function turnto(position)
  5181. RootPart.CFrame=CFrame.new(RootPart.CFrame.p,VT(position.X,RootPart.Position.Y,position.Z)) * CFrame.new(0, 0, 0)
  5182. end
  5183.  
  5184. --//=================================\\
  5185. --|| WEAPON CREATION
  5186. --\\=================================//
  5187.  
  5188. local Back = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Wing", VT(1,1,0.35),false)
  5189. CreateWeldOrSnapOrMotor("Weld", Torso, Torso, Back, CF(0, 0.5, 1.2) * ANGLES(RAD(0),RAD(0),RAD(45)), CF(0, 0, 0))
  5190.  
  5191. local ANGLE = 35
  5192. for i = 1, 5 do
  5193. local Wing = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Wing", VT(0.15,2+(i/2),0.15),false)
  5194. local WingWeld = CreateWeldOrSnapOrMotor("Weld", Wing, Torso, Wing, CF(0, 1, 0) * ANGLES(RAD(90), RAD(0), RAD(0)) * CF(0,1,0) * ANGLES(RAD(0), RAD(0), RAD(90)) * ANGLES(RAD(ANGLE), RAD(0), RAD(0)) * CF(0,3+(i/10),0) , CF(0, 0, 0))
  5195. local Wing2 = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Wing", VT(0.25,1,0.25),false)
  5196. CreateWeldOrSnapOrMotor("Weld", Wing, Wing, Wing2, CF(0, 2+(i/2), 0) * ANGLES(RAD(25), RAD(0), RAD(0)), CF(0, 1, 0))
  5197. ANGLE = ANGLE - 15
  5198. table.insert(LEFTWINGS,WingWeld)
  5199. end
  5200. ANGLE = 35
  5201. for i = 1, 5 do
  5202. local Wing = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Wing", VT(0.15,2+(i/2),0.15),false)
  5203. local WingWeld = CreateWeldOrSnapOrMotor("Weld", Wing, Torso, Wing, CF(0, 1, 0) * ANGLES(RAD(90), RAD(0), RAD(0)) * CF(0,1,0) * ANGLES(RAD(0), RAD(0), RAD(-90)) * ANGLES(RAD(ANGLE), RAD(0), RAD(0)) * CF(0,3+(i/10),0) , CF(0, 0, 0))
  5204. local Wing2 = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Wing", VT(0.25,1,0.25),false)
  5205. CreateWeldOrSnapOrMotor("Weld", Wing, Wing, Wing2, CF(0, 2+(i/2), 0) * ANGLES(RAD(25), RAD(0), RAD(0)), CF(0, 1, 0))
  5206. ANGLE = ANGLE - 15
  5207. table.insert(RIGHTWINGS,WingWeld)
  5208. end
  5209. local Eye = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Eye", VT(0.3,0.3,0.3),false)
  5210. local EyeWeld = CreateWeldOrSnapOrMotor("Weld", Head, Head, Eye, CF(0,0.2,0) * ANGLES(RAD(-5),RAD(25),RAD(0)) * CF(0,0,-0.45), CF(0,0,0))
  5211. local Eye2 = CreatePart(3, Character, "Neon", 0, 0.5, "Really red", "Eye", VT(0.5,0.5,0.29),false)
  5212. local EyeWeld2 = CreateWeldOrSnapOrMotor("Weld", Head, Head, Eye2, CF(0,0.2,0) * ANGLES(RAD(-5),RAD(25),RAD(0)) * CF(0,0,-0.45), CF(0,0,0))
  5213.  
  5214. local Eye3 = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Eye", VT(0.1,0.1,0.31),false)
  5215. local EyeWeld3 = CreateWeldOrSnapOrMotor("Weld", Head, Head, Eye3, CF(0,0.2,0) * ANGLES(RAD(-5),RAD(-25),RAD(0)) * CF(0,0,-0.45), CF(0,0,0))
  5216.  
  5217. local SKILLTEXTCOLOR = BRICKC"Really red".Color
  5218. local SKILLFONT = "SciFi"
  5219. local SKILLTEXTSIZE = 6
  5220.  
  5221. local naeeym2 = Instance.new("BillboardGui",Character)
  5222. naeeym2.AlwaysOnTop = true
  5223. naeeym2.Size = UDim2.new(5,35,2,15)
  5224. naeeym2.StudsOffset = Vector3.new(0,1.2,0)
  5225. naeeym2.Adornee = Character.Head
  5226. naeeym2.Name = "Name"
  5227. naeeym2.PlayerToHideFrom = Player
  5228. local tecks2 = Instance.new("TextLabel",naeeym2)
  5229. tecks2.BackgroundTransparency = 1
  5230. tecks2.TextScaled = true
  5231. tecks2.BorderSizePixel = 0
  5232. tecks2.Text = "Cyber Monarch"
  5233. tecks2.Font = SKILLFONT
  5234. tecks2.TextSize = 30
  5235. tecks2.TextStrokeTransparency = 0
  5236. tecks2.TextColor3 = C3(0,0,0)
  5237. tecks2.TextStrokeColor3 = BRICKC"Really red".Color
  5238. tecks2.Size = UDim2.new(1,0,0.5,0)
  5239. tecks2.Parent = naeeym2
  5240.  
  5241. for _, c in pairs(Character:GetChildren()) do
  5242. if c.ClassName == "Part" then
  5243. table.insert(BODY,{c,Character})
  5244. for _, q in pairs(c:GetChildren()) do
  5245. if q.ClassName == "Motor6D" or q.ClassName == "Weld" or q.ClassName == "ManualWeld" then
  5246. table.insert(BODY,{q,c})
  5247. end
  5248. end
  5249. end
  5250. end
  5251.  
  5252. function refit()
  5253. Character.Parent = workspace
  5254. for e = 1, #BODY do
  5255. if BODY[e] ~= nil then
  5256. local STUFF = BODY[e]
  5257. local PART = STUFF[1]
  5258. local PARENT = STUFF[2]
  5259. PART.Parent = PARENT
  5260. end
  5261. end
  5262. end
  5263.  
  5264. Humanoid.HealthChanged:connect(function()
  5265. Humanoid.Parent = nil
  5266. Humanoid.MaxHealth = "inf"
  5267. Humanoid.Health = "inf"
  5268. refit()
  5269. Humanoid.Parent = Character
  5270. end)
  5271.  
  5272. Humanoid.Died:connect(function()
  5273. Humanoid.Parent = nil
  5274. Humanoid.MaxHealth = "inf"
  5275. Humanoid.Health = "inf"
  5276. refit()
  5277. Humanoid.Parent = Character
  5278. end)
  5279.  
  5280. local SKILL1FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.23, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 1 Frame")
  5281. local SKILL2FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.50, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 2 Frame")
  5282. local SKILL3FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.23, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 3 Frame")
  5283. local SKILL4FRAME = CreateFrame(WEAPONGUI, 0.75, 2, UD2(0.50, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 4 Frame")
  5284.  
  5285. local SKILL1TEXT = CreateLabel(SKILL1FRAME, "[Z] Cyber Out-Burst", C3(50/255, 0/255, 0/255), SKILLTEXTSIZE, SKILLFONT, 0, 2, 0.7, "Text 1")
  5286. local SKILL2TEXT = CreateLabel(SKILL2FRAME, "[B] Techno Beam", C3(50/255, 0/255, 0/255), SKILLTEXTSIZE, SKILLFONT, 0, 2, 0.7, "Text 2")
  5287. local SKILL3TEXT = CreateLabel(SKILL3FRAME, "[C] Techno Warp", C3(50/255, 0/255, 0/255), SKILLTEXTSIZE, SKILLFONT, 0, 2, 0.7, "Text 3")
  5288. local SKILL4TEXT = CreateLabel(SKILL4FRAME, "[V] Cyber Smash", C3(50/255, 0/255, 0/255), SKILLTEXTSIZE, SKILLFONT, 0, 2, 0.7, "Text 4")
  5289.  
  5290. --//=================================\\
  5291. --|| DAMAGING
  5292. --\\=================================//
  5293.  
  5294. function killnearest(position,range,EFFECT)
  5295. for i,v in ipairs(workspace:GetChildren()) do
  5296. local body = v:GetChildren()
  5297. for part = 1, #body do
  5298. if((body[part].ClassName == "Part" or body[part].ClassName == "MeshPart") and v ~= Character) then
  5299. local SIZE = body[part].Size.Magnitude
  5300. if(body[part].Position - position).Magnitude < range + SIZE/2 then
  5301. if v.ClassName == "Model" then
  5302. if v:FindFirstChildOfClass("Humanoid") ~= nil then
  5303. if v:FindFirstChildOfClass("Humanoid").Health > 0 then
  5304. v:BreakJoints()
  5305. if EFFECT == "Glitch" then
  5306. coroutine.resume(coroutine.create(function()
  5307. local ORIGINPOS = body[part].CFrame
  5308. local SIZE = body[part].Size
  5309. for i = 1, 100 do
  5310. Swait()
  5311. local PART = body[part]
  5312. PART.Anchored = true
  5313. PART.Size = SIZE*MRANDOM(5,15)/10
  5314. PART.CFrame = ORIGINPOS*CF(MRANDOM(-15,15)/15,MRANDOM(-15,15)/15,MRANDOM(-15,15)/15)
  5315. end
  5316. body[part]:remove()
  5317. end))
  5318. elseif EFFECT == "Shatter" then
  5319. for _, c in pairs(v:GetChildren()) do
  5320. if c.ClassName == "Part" or c.ClassName == "MeshPart" then
  5321. Shatter(c)
  5322. end
  5323. end
  5324. end
  5325. end
  5326. end
  5327. end
  5328. end
  5329. end
  5330. end
  5331. end
  5332. end
  5333.  
  5334. --//=================================\\
  5335. --|| ATTACK FUNCTIONS AND STUFF
  5336. --\\=================================//
  5337.  
  5338. function IceWall()
  5339. ATTACK = true
  5340. Rooted = true
  5341. local IceMaterializeSounds = {
  5342. "333476017",
  5343. "333475981",
  5344. "333475957",
  5345. "333475929"
  5346. }
  5347. for i=0, 2, 0.1 / Animation_Speed do
  5348. Swait()
  5349. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(45)), 0.5 / Animation_Speed)
  5350. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-45)), 0.5 / Animation_Speed)
  5351. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(45)) * RIGHTSHOULDERC0, 0.5 / Animation_Speed)
  5352. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  5353. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5354. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5355. end
  5356. coroutine.resume(coroutine.create(function()
  5357. local POS = RootPart.CFrame * CF(0,0,-5)
  5358. local OFFSET = 0.1
  5359. local WallPiece = CreatePart(3, Effects, "Ice", 0, 0.75, COLOR, "Ice", VT(5,75,5))
  5360. WallPiece.CFrame = POS
  5361. AoEDamage(WallPiece.Position,6,3,4,5,false,2,2,false)
  5362. CreateSound(IceMaterializeSounds[MRANDOM(1,#IceMaterializeSounds)], WallPiece, 3, 1)
  5363. WallPiece.CanCollide = true
  5364. coroutine.resume(coroutine.create(function()
  5365. Swait(150)
  5366. WallPiece.Anchored = false
  5367. WallPiece.CanCollide = false
  5368. end))
  5369. for i = 1, 2 do
  5370. coroutine.resume(coroutine.create(function()
  5371. local OFF = OFFSET
  5372. for i = 1, 30 do
  5373. Swait()
  5374. local WallPiece = CreatePart(3, Effects, "Ice", 0, 0.75, COLOR, "Ice", VT(5,75,5))
  5375. WallPiece.CanCollide = true
  5376. WallPiece.CFrame = POS*CF(OFF*(i*10),0,0)
  5377. coroutine.resume(coroutine.create(function()
  5378. Swait(150-i*1.3)
  5379. WallPiece.Anchored = false
  5380. WallPiece.CanCollide = false
  5381. end))
  5382. AoEDamage(WallPiece.Position,6,3,4,5,false,2,2,false)
  5383. end
  5384. end))
  5385. OFFSET = OFFSET - 0.2
  5386. end
  5387. end))
  5388. for i=0, 2, 0.1 / Animation_Speed do
  5389. Swait()
  5390. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-45)), 0.5 / Animation_Speed)
  5391. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(45)), 0.5 / Animation_Speed)
  5392. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(20), RAD(45), RAD(45)) * RIGHTSHOULDERC0, 0.5 / Animation_Speed)
  5393. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  5394. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5395. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5396. end
  5397. ATTACK = false
  5398. Rooted = false
  5399. end
  5400.  
  5401.  
  5402.  
  5403. function IceChuck()
  5404. local IceMaterializeSounds = {
  5405. "333476017",
  5406. "333475981",
  5407. "333475957",
  5408. "333475929"
  5409. }
  5410. ATTACK = true
  5411. Rooted = true
  5412. for i=0, 0.6, 0.1 / Animation_Speed do
  5413. Swait()
  5414. turnto(Mouse.Hit.p)
  5415. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(35)), 0.5 / Animation_Speed)
  5416. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-35)), 0.5 / Animation_Speed)
  5417. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(-45)) * RIGHTSHOULDERC0, 0.5 / Animation_Speed)
  5418. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  5419. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5420. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5421. end
  5422. local GEM = CreatePart(3, Effects, "Ice", 0, 0.25, COLOR, "Ice", VT(2,2,2))
  5423. CreateMesh("SpecialMesh", GEM, "FileMesh", "9756362", "", VT(2,2,2), VT(0,0,0))
  5424. GEM.CFrame = CF(RightArm.CFrame*CF(0,-1.3,0).p)
  5425. MagicSphere(GEM.Size,35,GEM.CFrame,COLOR,VT(0.1,0.1,0.1))
  5426. CreateSound(IceMaterializeSounds[MRANDOM(1,#IceMaterializeSounds)], RootPart, 3, 1.3)
  5427. coroutine.resume(coroutine.create(function()
  5428. repeat
  5429. Swait()
  5430. Trail(GEM)
  5431. until GEM.Parent == nil
  5432. end))
  5433. coroutine.resume(coroutine.create(function()
  5434. FireArc(GEM,Mouse.Hit.p,30,30,false)
  5435. MagicSphere(GEM.Size,35,GEM.CFrame,COLOR,VT(1,1,1))
  5436. MagicSphere(GEM.Size,35,GEM.CFrame,COLOR,VT(0.75,0.75,0.75))
  5437. MagicSphere(GEM.Size,35,GEM.CFrame,COLOR,VT(0.5,0.5,0.5))
  5438. CreateDebreeRing(GEM,GEM.Position+VT(0,0,0),1.5,VT(1,1,1),35)
  5439. AoEDamage(GEM.Position,15,25,54,5,false,2,2,false)
  5440. AoEStun(GEM.Position,5,2)
  5441. GEM.Parent = nil
  5442. end))
  5443. for i=0, 0.6, 0.1 / Animation_Speed do
  5444. Swait()
  5445. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-35)), 0.5 / Animation_Speed)
  5446. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(35)), 0.5 / Animation_Speed)
  5447. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(45)) * RIGHTSHOULDERC0, 0.5 / Animation_Speed)
  5448. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  5449. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5450. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5 / Animation_Speed)
  5451. end
  5452. ATTACK = false
  5453. Rooted = false
  5454. end
  5455.  
  5456.  
  5457.  
  5458. function CyberOutburst()
  5459. if HITFLOOR ~= nil then
  5460. ATTACK = true
  5461. Rooted = true
  5462. for i=0, 2, 0.1 / Animation_Speed do
  5463. Swait()
  5464. WACKYEFFECT({EffectType = "Box", Size = VT(1,1,1), Size2 = VT(0,0,0), Transparency = 1, Transparency2 = 0, CFrame = Torso.CFrame*ANGLES(RAD(MRANDOM(-180,180)),RAD(MRANDOM(-180,180)),RAD(MRANDOM(-180,180)))*CF(0,15,0), MoveToPos = Torso.Position, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5465. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(15 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5466. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(0 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5467. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1, 0.5 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(0), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(-90 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5468. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1, 0 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(25), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(90 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5469. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5470. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5471. end
  5472. for i=0, 2, 0.1 / Animation_Speed do
  5473. Swait()
  5474. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(15 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5475. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(0 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5476. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1, 0.5 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(0), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(-90 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5477. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1, 0 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(25), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(90 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5478. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5479. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5480. end
  5481. WACKYEFFECT({EffectType = "Block", Size = VT(1,1,1), Size2 = VT(25,25,25), Transparency = 0.25, Transparency2 = 1, CFrame = Torso.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = C3(0,0,0), SoundID = 178452241, SoundPitch = 0.6, SoundVolume = 6})
  5482. WACKYEFFECT({EffectType = "Block", Size = VT(1,1,1), Size2 = VT(35,35,35), Transparency = 0.5, Transparency2 = 1, CFrame = Torso.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = 178452241, SoundPitch = 0.8, SoundVolume = 4})
  5483. WACKYEFFECT({EffectType = "Block", Size = VT(1,1,1), Size2 = VT(40,40,40), Transparency = 0.75, Transparency2 = 1, CFrame = Torso.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = 178452241, SoundPitch = 1, SoundVolume = 2})
  5484. for i=0, 0.4, 0.1 / Animation_Speed do
  5485. Swait()
  5486. killnearest(Torso.Position,45,"Glitch")
  5487. WACKYEFFECT({Time = 75, EffectType = "Box", Size = VT(1,1,1), Size2 = VT(5,5,5), Transparency = 0, Transparency2 = 1, CFrame = Torso.CFrame, MoveToPos = Torso.CFrame*ANGLES(RAD(MRANDOM(-180,180)),RAD(MRANDOM(-180,180)),RAD(MRANDOM(-180,180)))*CF(0,15,0).p, RotationX = MRANDOM(-5,5), RotationY = MRANDOM(-5,5), RotationZ = MRANDOM(-5,5), Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5488. WACKYEFFECT({Time = 45, EffectType = "Box", Size = VT(1,1,1), Size2 = VT(10,10,10), Transparency = 0, Transparency2 = 1, CFrame = CF(HITPOS), MoveToPos = CF(HITPOS)*ANGLES(RAD(0),RAD(MRANDOM(-180,180)),RAD(0))*CF(0,0,55).p, RotationX = MRANDOM(-5,5), RotationY = MRANDOM(-5,5), RotationZ = MRANDOM(-5,5), Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5489. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(-25 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5490. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(0 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5491. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.025 * COS(SINE / 12), 0) * ANGLES(RAD(-35), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(12 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5492. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.025 * COS(SINE / 12), 0) * ANGLES(RAD(-35), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(-12 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5493. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(20.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5494. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(20.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5495. end
  5496. ATTACK = false
  5497. Rooted = false
  5498. end
  5499. end
  5500.  
  5501. function Technobeam()
  5502. ATTACK = true
  5503. Rooted = false
  5504. local GYRO = IT("BodyGyro",RootPart)
  5505. GYRO.D = 100
  5506. GYRO.P = 2000
  5507. GYRO.MaxTorque = VT(0,4000000,0)
  5508. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  5509. CreateSound("93724183", RightArm, 5, 1, false)
  5510. for i=1, 35 do
  5511. Swait()
  5512. WACKYEFFECT({Time = 5, EffectType = "Block", Size = VT(5,5,5), Size2 = VT(0,0,0), Transparency = 1, Transparency2 = 0.25, CFrame = RightArm.CFrame*CF(0,-5,0), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = nil, SoundPitch = 0.6, SoundVolume = 6})
  5513. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  5514. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(4 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(45)), 1 / Animation_Speed)
  5515. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-45 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5516. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.025 * COS(SINE / 12), -0.5) * ANGLES(RAD(90), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(45 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5517. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.025 * COS(SINE / 12), 0) * ANGLES(RAD(0), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(-12 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5518. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-7.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5519. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-7.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5520. end
  5521. local BEAM = CreatePart(3, Effects, "Neon", 0, 1, "Really red", "Lazer", VT(0,0,0))
  5522. local LOOP = CreateSound("415700134", RightArm, 5, 1, false)
  5523. local TOCH = BEAM.Touched:Connect(function(hit)
  5524. if hit.Anchored == false and hit.Parent ~= Head and hit.Parent ~= Character and hit.Parent ~= Effects then
  5525. Shatter(hit)
  5526. end
  5527. end)
  5528. local I = 0
  5529. repeat
  5530. Swait()
  5531. I = I + 1
  5532. if I <= 10 then
  5533. BEAM.Transparency = BEAM.Transparency - 0.1
  5534. end
  5535. local STARTPOS = RightArm.CFrame*CF(0,-4,0).p
  5536. local ENDHIT,ENDPOS = CastProperRay(STARTPOS,Mouse.Hit.p,650,Character)
  5537. local DISTANCE = (STARTPOS - ENDPOS).Magnitude
  5538. BEAM.CFrame = CF(STARTPOS,ENDPOS)*CF(0,0,-DISTANCE/2)*ANGLES(RAD(0),RAD(0),RAD(I*5))
  5539. BEAM.Size = VT(2,2,DISTANCE)
  5540. WACKYEFFECT({Time = 5, EffectType = "Box", Size = VT(1,1,1), Size2 = VT(1,1,1), Transparency = 0, Transparency2 = 1, CFrame = CF(ENDPOS), MoveToPos = CF(ENDPOS)*ANGLES(RAD(MRANDOM(-180,180)),RAD(MRANDOM(-180,180)),RAD(MRANDOM(-180,180)))*CF(0,15,0).p, RotationX = MRANDOM(-5,5), RotationY = MRANDOM(-5,5), RotationZ = MRANDOM(-5,5), Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5541. WACKYEFFECT({Time = 5, EffectType = "Block", Size = VT(5,5,5), Size2 = VT(0,0,0), Transparency = 0, Transparency2 = 0.25, CFrame = RightArm.CFrame*CF(0,-4,0), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = nil, SoundPitch = 0.6, SoundVolume = 6})
  5542. WACKYEFFECT({Time = 5, EffectType = "Block", Size = VT(5,5,5), Size2 = VT(0,0,0), Transparency = 0, Transparency2 = 0.25, CFrame = CF(ENDPOS), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = nil, SoundPitch = 0.6, SoundVolume = 6})
  5543. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  5544. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(4 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(45)), 1 / Animation_Speed)
  5545. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-45 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5546. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.025 * COS(SINE / 12), -0.5) * ANGLES(RAD(90), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(45 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5547. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.025 * COS(SINE / 12), 0) * ANGLES(RAD(0), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(-12 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5548. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-7.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5549. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-7.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5550. if ENDHIT ~= nil then
  5551. if ENDHIT.Anchored == false and ENDHIT.Parent ~= Effects then
  5552. Shatter(ENDHIT)
  5553. end
  5554. end
  5555. until LOOP.Playing == false
  5556. GYRO:remove()
  5557. BEAM:remove()
  5558. ATTACK = false
  5559. Rooted = false
  5560. end
  5561.  
  5562. function Technowarp()
  5563. local FRAME = RootPart.Position
  5564. for i = 1, 6 do
  5565. WACKYEFFECT({Time = 15, EffectType = "Box", Size = VT(2,0,2), Size2 = VT(0,35,0), Transparency = 0.5, Transparency2 = 0.5, CFrame = CF(Torso.Position)*ANGLES(RAD(0),RAD(i*(360/5)),RAD(0))*CF(6,0,0), MoveToPos = nil, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Really red".Color, SoundID = 1177785010, SoundPitch = 1, SoundVolume = 2})
  5566. end
  5567. RootPart.CFrame = CF(Mouse.Hit.p+VT(0,6,0),VT(FRAME.X,RootPart.Position.Y,FRAME.Z))
  5568. for i = 1, 6 do
  5569. WACKYEFFECT({Time = 15, EffectType = "Box", Size = VT(2,0,2), Size2 = VT(0,35,0), Transparency = 0.5, Transparency2 = 0.5, CFrame = CF(Torso.Position)*ANGLES(RAD(0),RAD(i*(360/5)),RAD(0))*CF(6,0,0), MoveToPos = nil, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Really red".Color, SoundID = 1177785010, SoundPitch = 1, SoundVolume = 2})
  5570. end
  5571. end
  5572.  
  5573. function CyberSmash()
  5574. ATTACK = true
  5575. Rooted = false
  5576. local GYRO = IT("BodyGyro",RootPart)
  5577. GYRO.D = 100
  5578. GYRO.P = 2000
  5579. GYRO.MaxTorque = VT(0,4000000,0)
  5580. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  5581. local SMASH = CreatePart(3, Effects, "Neon", 0, 1, "Really red", "Block", VT(25,25,25))
  5582. SMASH.CanCollide = true
  5583. SMASH.Color = C3(0,0,0)
  5584. local EF = Instance.new("SelectionBox",SMASH)
  5585. EF.Adornee = SMASH
  5586. EF.Color = BrickColor.new("Really red")
  5587. EF.LineThickness = 0.2
  5588. EF.Transparency = 1
  5589. coroutine.resume(coroutine.create(function()
  5590. for i = 1, 20 do
  5591. Swait()
  5592. SMASH.Transparency = SMASH.Transparency - 0.05
  5593. EF.Transparency = SMASH.Transparency
  5594. end
  5595. end))
  5596. repeat
  5597. SMASH.CFrame = CF(Mouse.Hit.p)*CF(0,35,0)
  5598. Swait()
  5599. GYRO.cframe = CF(RootPart.Position,SMASH.Position)
  5600. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(-15 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(45)), 1 / Animation_Speed)
  5601. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-45 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5602. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.025 * COS(SINE / 12), -0.5) * ANGLES(RAD(130), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(45 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5603. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.025 * COS(SINE / 12), 0) * ANGLES(RAD(0), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(-12 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5604. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(7.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5605. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(7.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5606. until HOLD == true and SMASH.Transparency < 0.99
  5607. for i = 1, 25 do
  5608. Swait()
  5609. SMASH.CFrame = SMASH.CFrame*CF(0,15/25,0)
  5610. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(-25 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(45)), 1 / Animation_Speed)
  5611. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-45 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5612. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.75 + 0.025 * COS(SINE / 12), -0.5) * ANGLES(RAD(160), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(45 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5613. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.025 * COS(SINE / 12), 0) * ANGLES(RAD(0), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(-12 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5614. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(7.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5615. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(7.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5616. end
  5617. local TOCH = SMASH.Touched:Connect(function(hit)
  5618. if hit.Anchored == false and hit.Parent ~= Head and hit.Parent ~= Character and hit.Parent ~= Effects then
  5619. Shatter(hit)
  5620. end
  5621. end)
  5622. local n0 = nil
  5623. local HITFLOOR,HITPOS = Raycast(SMASH.Position, (CF(SMASH.Position, SMASH.Position + VT(0, -1, 0))).lookVector, 25000, Character)
  5624. if HITFLOOR ~= nil then
  5625. if HITFLOOR.Anchored == false and HITFLOOR.Parent ~= workspace then
  5626. if HITFLOOR.Parent:FindFirstChildOfClass("Humanoid") or HITFLOOR.Parent.Parent:FindFirstChildOfClass("Humanoid") then
  5627. if HITFLOOR.Parent.ClassName == "Model" then
  5628. HITFLOOR.Parent:BreakJoints()
  5629. elseif HITFLOOR.Parent.Parent.ClassName == "Model" then
  5630. HITFLOOR.Parent.Parent:BreakJoints()
  5631. end
  5632. end
  5633. local POS = HITPOS
  5634. n0,HITPOS = Raycast(POS, (CF(POS, POS + VT(0, -1, 0))).lookVector, 25000, HITFLOOR.Parent)
  5635. end
  5636. end
  5637. killnearest(HITPOS,SMASH.Size.X/1.3,"Shatter")
  5638. SMASH.CFrame = CF(HITPOS+VT(0,SMASH.Size.Y/2,0))
  5639. WACKYEFFECT({Time = 25, EffectType = "Box", Size = VT(24,0,24), Size2 = VT(75,2,75), Transparency = 0, Transparency2 = 1, CFrame = CF(HITPOS), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = SKILLTEXTCOLOR, SoundID = 130972023, SoundPitch = 1, SoundVolume = 10})
  5640. for i = 1, 25 do
  5641. Swait()
  5642. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(25 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(45)), 1 / Animation_Speed)
  5643. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-45 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5644. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.025 * COS(SINE / 12), -0.5) * ANGLES(RAD(30), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(45 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5645. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.025 * COS(SINE / 12), 0) * ANGLES(RAD(0), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(-12 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5646. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(7.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5647. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(7.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5648. end
  5649. coroutine.resume(coroutine.create(function()
  5650. wait(0.2)
  5651. TOCH:disconnect()
  5652. wait(1.8)
  5653. for i = 1, 100 do
  5654. Swait()
  5655. SMASH.Transparency = i/100
  5656. end
  5657. for i = 1, 10 do
  5658. Swait()
  5659. EF.Transparency = EF.Transparency + 0.1
  5660. end
  5661. SMASH:remove()
  5662. end))
  5663. GYRO:remove()
  5664. ATTACK = false
  5665. Rooted = false
  5666. end
  5667.  
  5668. --//=================================\\
  5669. --|| ASSIGN THINGS TO KEYS
  5670. --\\=================================//
  5671.  
  5672. function MouseDown(Mouse)
  5673. HOLD = true
  5674. if ATTACK == false then
  5675. end
  5676. end
  5677.  
  5678. function MouseUp(Mouse)
  5679. HOLD = false
  5680. end
  5681.  
  5682. function KeyDown(Key)
  5683. if Key ~= "w" and Key ~= "a" and Key ~= "s" and Key ~= "d" then
  5684. KEYHOLD = true
  5685. if Key == "z" and ATTACK == false then
  5686. CyberOutburst()
  5687. end
  5688.  
  5689. if Key == "b" and ATTACK == false then
  5690. Technobeam()
  5691. end
  5692.  
  5693. if Key == "c" and ATTACK == false then
  5694. Technowarp()
  5695. end
  5696.  
  5697. if Key == "v" and ATTACK == false then
  5698. CyberSmash()
  5699. end
  5700.  
  5701. if Key == "t" then
  5702. local TAUNT = CreateSound("132392118", Head, 10, 0.8)
  5703. TAUNT.TimePosition = 1.1
  5704.  
  5705. if Key == "m" then
  5706. IceChuck()
  5707. end
  5708.  
  5709.  
  5710. if Key == "n" then
  5711. IceWall()
  5712. end
  5713. end
  5714. end
  5715. end
  5716.  
  5717. function KeyUp(Key)
  5718. if Key ~= "w" and Key ~= "a" and Key ~= "s" and Key ~= "d" then
  5719. KEYHOLD = false
  5720. end
  5721. end
  5722.  
  5723. Mouse.Button1Down:connect(function(NEWKEY)
  5724. MouseDown(NEWKEY)
  5725. end)
  5726. Mouse.Button1Up:connect(function(NEWKEY)
  5727. MouseUp(NEWKEY)
  5728. end)
  5729. Mouse.KeyDown:connect(function(NEWKEY)
  5730. KeyDown(NEWKEY)
  5731. end)
  5732. Mouse.KeyUp:connect(function(NEWKEY)
  5733. KeyUp(NEWKEY)
  5734. end)
  5735.  
  5736. --//=================================\\
  5737. --\\=================================//
  5738.  
  5739.  
  5740. function unanchor()
  5741. if UNANCHOR == true then
  5742. g = Character:GetChildren()
  5743. for i = 1, #g do
  5744. if g[i].ClassName == "Part" then
  5745. g[i].Anchored = false
  5746. end
  5747. end
  5748. end
  5749. end
  5750.  
  5751.  
  5752. --//=================================\\
  5753. --|| WRAP THE WHOLE SCRIPT UP
  5754. --\\=================================//
  5755.  
  5756. Humanoid.Changed:connect(function(Jump)
  5757. if Jump == "Jump" and (Disable_Jump == true) then
  5758. Humanoid.Jump = false
  5759. end
  5760. end)
  5761.  
  5762. Humanoid.HipHeight = 2
  5763.  
  5764. while true do
  5765. Swait()
  5766. refit()
  5767. Character.Parent = workspace
  5768. Humanoid.Parent = Character
  5769. ANIMATE.Parent = nil
  5770. local IDLEANIMATION = Humanoid:LoadAnimation(ROBLOXIDLEANIMATION)
  5771. IDLEANIMATION:Play()
  5772. SINE = SINE + CHANGE
  5773. local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude
  5774. local TORSOVERTICALVELOCITY = RootPart.Velocity.y
  5775. HITFLOOR,HITPOS = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 25, Character)
  5776. local WALKSPEEDVALUE = 6 / (Humanoid.WalkSpeed / 16)
  5777. EyeWeld3.C1 = Clerp(EyeWeld3.C1,CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(-SINE*2)), 1 / Animation_Speed)
  5778. EyeWeld2.C1 = Clerp(EyeWeld2.C1,CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(-SINE*2)), 1 / Animation_Speed)
  5779. EyeWeld.C1 = Clerp(EyeWeld.C1,CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(SINE*2)), 1 / Animation_Speed)
  5780. for LW = 1, #LEFTWINGS do
  5781. if LEFTWINGS[LW] ~= nil then
  5782. LEFTWINGS[LW].C1 = Clerp(LEFTWINGS[LW].C1, CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(2.5 * SIN(SINE / 12)), RAD(0), RAD(-3 + 3 * SIN(SINE / 12))), 1 / Animation_Speed)
  5783. end
  5784. end
  5785. for RW = 1, #RIGHTWINGS do
  5786. if RIGHTWINGS[RW] ~= nil then
  5787. RIGHTWINGS[RW].C1 = Clerp(RIGHTWINGS[RW].C1, CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(2.5 * SIN(SINE / 12)), RAD(0), RAD(3 - 3 * SIN(SINE / 12))), 1 / Animation_Speed)
  5788. end
  5789. end
  5790. if ATTACK == false then
  5791. if TORSOVELOCITY < 1 then
  5792. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(4 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5793. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(0 - 4 * SIN(SINE / 12))), 1 / Animation_Speed)
  5794. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1, 0.5 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(0), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(-90 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5795. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1, 0 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(25), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(90 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5796. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-7.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5797. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-7.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5798. elseif TORSOVELOCITY > 1 then
  5799. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(15 + 2.5 * SIN(SINE / 12)), RAD(0), RAD(2.5 + 2.5 * SIN(SINE / 12))), 1 / Animation_Speed)
  5800. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-10 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-2.5 - 2.5 * SIN(SINE / 12))), 1 / Animation_Speed)
  5801. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1, 0.5 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(0), RAD(0 - 7.5 * SIN(SINE / 12)), RAD(-90 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5802. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1, 0 + 0.025 * COS(SINE / 12), -1) * ANGLES(RAD(25), RAD(0 + 7.5 * SIN(SINE / 12)), RAD(90 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5803. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-25-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 5.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5804. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5805. end
  5806. end
  5807. for _, c in pairs(Character:GetChildren()) do
  5808. if c.ClassName == "Part" and c.Name ~= "Eye" then
  5809. c.Material = "Neon"
  5810. if c:FindFirstChildOfClass("ParticleEmitter") then
  5811. c:FindFirstChildOfClass("ParticleEmitter"):remove()
  5812. end
  5813. if c ~= Head and c ~= RootPart and c:FindFirstChild("BoxEffect") == nil then
  5814. local EF = Instance.new("SelectionBox",c)
  5815. EF.Adornee = c
  5816. EF.Color = BrickColor.new("Really red")
  5817. EF.LineThickness = 0.01
  5818. EF.Transparency = 0
  5819. EF.Name = "BoxEffect"
  5820. end
  5821. c.Color = C3(0,0,0)
  5822. if c == Head then
  5823. --[[if c:FindFirstChild("Dominus") == nil then
  5824. local M = CreateMesh("SpecialMesh", c, "FileMesh", "162384581", "162384608", VT(1,1,1)*1.1, VT(0,0,0))
  5825. M.Name = "Dominus"
  5826. end]]--
  5827. if c:FindFirstChild("face") then
  5828. c.face:remove()
  5829. end
  5830. end
  5831. elseif c.ClassName == "Shirt" or c.ClassName == "Pants" or c.ClassName == "CharacterMesh" or c.ClassName == "Accessory" or c.Name == "Body Colors" then
  5832. c:remove()
  5833. end
  5834. end
  5835. if HITFLOOR ~= nil and MRANDOM(1,6) == 1 then
  5836. local POSITION = CF(HITPOS)*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0))*CF(MRANDOM(5,15),0,0).p
  5837. local BOXFLOOR,BOXPOS = Raycast(POSITION+VT(0,1,0), (CF(POSITION, POSITION + VT(0, -1, 0))).lookVector, 5, Character)
  5838. if BOXFLOOR ~= nil then
  5839. WACKYEFFECT({EffectType = "Box", Size = VT(2,0,2), Size2 = VT(0,15,0), Transparency = 0.5, Transparency2 = 0.5, CFrame = CF(BOXPOS), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Really red".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5840. end
  5841. end
  5842. unanchor()
  5843. Humanoid.MaxHealth = "inf"
  5844. Humanoid.Health = "inf"
  5845. if Rooted == false then
  5846. Disable_Jump = false
  5847. Humanoid.WalkSpeed = Speed
  5848. elseif Rooted == true then
  5849. Disable_Jump = true
  5850. Humanoid.WalkSpeed = 0
  5851. end
  5852. for _, c in pairs(workspace:GetChildren()) do
  5853. if c.ClassName == "Model" and c:FindFirstChild("Humanoid") and c ~= Character then
  5854. end
  5855. end
  5856. script.Parent = WEAPONGUI
  5857. Humanoid.Name = "Monarch"
  5858. sick.Parent = Effects
  5859. sick.Pitch = 0.85
  5860. sick.Playing = true
  5861. for _, q in pairs(Head:GetChildren()) do
  5862. if q.ClassName == "Sound" and q.Name ~= "Audio" then
  5863. q:remove()
  5864. end
  5865. end
  5866. Humanoid.DisplayDistanceType = "None"
  5867. end
  5868.  
  5869. --//=================================\\
  5870. --\\=================================//
  5871.  
  5872.  
  5873.  
  5874.  
  5875.  
  5876. --//====================================================\\--
  5877. --|| END OF SCRIPT
  5878. --\\====================================================//--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement