Advertisement
Robloxian_Scripter

Dead Eye

Mar 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 269.41 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Made by Hellrazor198";
  3. Text = "Loading Banisher Edit";
  4. Duration = 5;
  5. Button1 = "Ok";
  6. Button2 = "Whatever";
  7. })
  8.  
  9. plr = game:GetService("Players").LocalPlayer
  10. char = plr.Character
  11. hum = char.Humanoid
  12. local cam = game.Workspace.CurrentCamera
  13. Camera = cam
  14. local CamInterrupt = false
  15. local TwoD = false
  16. local TargetInfo = {nil, nil}
  17. cam.CameraType = "Custom"
  18. t = char.Torso
  19. h = char.Head
  20. ra = char["Right Arm"]
  21. la = char["Left Arm"]
  22. rl = char["Right Leg"]
  23. ll = char["Left Leg"]
  24. tors = char.Torso
  25. lleg = char["Left Leg"]
  26. root = char.HumanoidRootPart
  27. hed = char.Head
  28. rleg = char["Right Leg"]
  29. rarm = char["Right Arm"]
  30. larm = char["Left Arm"]
  31. radian = math.rad
  32. random = math.random
  33. Vec3 = Vector3.new
  34. Inst = Instance.new
  35. cFrame = CFrame.new
  36. Euler = CFrame.fromEulerAnglesXYZ
  37. vt = Vector3.new
  38. bc = BrickColor.new
  39. br = BrickColor.random
  40. it = Instance.new
  41. cf = CFrame.new
  42. local eff = true
  43. local shielding = false
  44.  
  45. local Booleans = {
  46. CamFollow = true,
  47. GyroUse = true
  48. }
  49.  
  50. function lerp(object, newCFrame, alpha)
  51. return object:lerp(newCFrame, alpha)
  52. end
  53.  
  54. local Directer = Inst("BodyGyro", root)
  55. Directer.MaxTorque = Vec3(0, 0, 0)
  56. Directer.P = 600000
  57. local CPart = Inst("Part")
  58. CPart.Anchored = true
  59. CPart.CanCollide = false
  60. CPart.Locked = true
  61. CPart.Transparency = 1
  62.  
  63. local rainbowmode = false
  64. local chaosmode = false
  65.  
  66. kan = Instance.new("Sound",char)
  67. kan.Volume = 1.25
  68. kan.TimePosition = 0
  69. kan.PlaybackSpeed = 1
  70. kan.Pitch = 1
  71. kan.SoundId = "rbxassetid://0"
  72. kan.Name = "wrecked"
  73. kan.Looped = true
  74. kan:Play()
  75.  
  76. function newTheme(ID,timepos,pitch,vol)
  77. local kanz = kan
  78. --kanz:Stop()
  79. --kanz.Volume = vol
  80. --kanz.TimePosition = timepos
  81. kanz.PlaybackSpeed = pitch
  82. kanz.Pitch = pitch
  83. kanz.SoundId = ID
  84. kanz.Name = "wrecked"
  85. kanz.Looped = true
  86. kanz.Volume = 0.3
  87. --kanz:Play()
  88. --coroutine.resume(coroutine.create(function()
  89. --wait(0.05)
  90. --end))
  91. end
  92.  
  93. function newThemeCust(ID,timepos,pitch,vol)
  94. local kanz = kan
  95. kanz:Stop()
  96. kanz.Volume = vol
  97. kanz.TimePosition = timepos
  98. kanz.PlaybackSpeed = pitch
  99. kanz.Pitch = pitch
  100. kanz.SoundId = ID
  101. kanz.Name = "wrecked"
  102. kanz.Looped = true
  103. kanz:Play()
  104. coroutine.resume(coroutine.create(function()
  105. wait(0.05)
  106. end))
  107. end
  108.  
  109.  
  110.  
  111. function CameraShake(Times, Power, PlayerTarget)
  112. coroutine.resume(coroutine.create(function()
  113. FV = Instance.new("BoolValue", PlayerTarget)
  114. FV.Name = "CameraShake"
  115. for ShakeNum=1,Times do
  116. swait()
  117. local ef=Power
  118. if ef>=1 then
  119. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  120. else
  121. ef=Power*10
  122. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  123. end
  124. end
  125. Humanoid.CameraOffset = Vector3.new(0,0,0)
  126. FV:Destroy()
  127. end))
  128. end
  129.  
  130. function CameraEnshaking(Length,Intensity)
  131. coroutine.resume(coroutine.create(function()
  132. local intensity = 1*Intensity
  133. local rotM = 0.01*Intensity
  134. for i = 0, Length, 0.1 do
  135. swait()
  136. intensity = intensity - 0.05*Intensity/Length
  137. rotM = rotM - 0.0005*Intensity/Length
  138. hum.CameraOffset = Vec3(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity)))
  139. 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)
  140. end
  141. Humanoid.CameraOffset = Vec3(0, 0, 0)
  142. end))
  143. end
  144. CamShake=function(Part,Distan,Power,Times)
  145. local de=Part.Position
  146. for i,v in pairs(workspace:children()) do
  147. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  148. for _,c in pairs(v:children()) do
  149. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  150. local Noob=v.Humanoid
  151. if Noob~=nil then
  152. coroutine.resume(coroutine.create(function()
  153. FV = Instance.new("BoolValue", Noob)
  154. FV.Name = "CameraShake"
  155. for ShakeNum=1,Times do
  156. swait()
  157. local ef=Power
  158. if ef>=1 then
  159. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  160. else
  161. ef=Power*10
  162. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  163. end
  164. end
  165. Humanoid.CameraOffset = Vector3.new(0,0,0)
  166. FV:Destroy()
  167. end))
  168. CameraShake(Times, Power, Noob)
  169. end
  170. end
  171. end
  172. end
  173. end
  174. end
  175.  
  176. function chatfunc(text,color)
  177. local chat = coroutine.wrap(function()
  178. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  179. Character:FindFirstChild("TalkingBillBoard"):destroy()
  180. end
  181. local naeeym2 = Instance.new("BillboardGui",Character)
  182. naeeym2.Size = UDim2.new(0,100,0,40)
  183. naeeym2.StudsOffset = Vector3.new(0,3,0)
  184. naeeym2.Adornee = Character.Head
  185. naeeym2.Name = "TalkingBillBoard"
  186. local tecks2 = Instance.new("TextLabel",naeeym2)
  187. tecks2.BackgroundTransparency = 1
  188. tecks2.BorderSizePixel = 0
  189. tecks2.Text = ""
  190. tecks2.Font = "SciFi"
  191. tecks2.TextSize = 30
  192. tecks2.TextStrokeTransparency = 0
  193. tecks2.TextColor3 = color
  194. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  195. tecks2.Size = UDim2.new(1,0,0.5,0)
  196. local tecks3 = Instance.new("TextLabel",naeeym2)
  197. tecks3.BackgroundTransparency = 1
  198. tecks3.BorderSizePixel = 0
  199. tecks3.Text = ""
  200. tecks3.Font = "SciFi"
  201. tecks3.TextSize = 30
  202. tecks3.TextStrokeTransparency = 0
  203. tecks3.TextColor3 = Color3.new(0,0,0)
  204. tecks3.TextStrokeColor3 = color
  205. tecks3.Size = UDim2.new(1,0,0.5,0)
  206. coroutine.resume(coroutine.create(function()
  207. while true do
  208. swait(1)
  209. plr.Character.wrecked.Volume = 0.3
  210. if chaosmode == true then
  211. tecks2.TextColor3 = BrickColor.random().Color
  212. tecks3.TextStrokeColor3 = BrickColor.random().Color
  213. end
  214. tecks2.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  215. tecks3.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  216. tecks2.Rotation = math.random(-5,5)
  217. tecks3.Rotation = math.random(-5,5)
  218. end
  219. end))
  220. for i = 1,string.len(text),1 do
  221. CFuncs["Sound"].Create("rbxassetid://274118116", char, 0.25, 0.115)
  222. tecks2.Text = string.sub(text,1,i)
  223. tecks3.Text = string.sub(text,1,i)
  224. swait(1)
  225. end
  226. wait(1)
  227. local randomrot = math.random(1,2)
  228. if randomrot == 1 then
  229. for i = 1, 50 do
  230. swait()
  231. tecks2.Rotation = tecks2.Rotation - .75
  232. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  233. tecks2.TextTransparency = tecks2.TextTransparency + .04
  234. tecks3.Rotation = tecks2.Rotation + .75
  235. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  236. tecks3.TextTransparency = tecks2.TextTransparency + .04
  237. end
  238. elseif randomrot == 2 then
  239. for i = 1, 50 do
  240. swait()
  241. tecks2.Rotation = tecks2.Rotation + .75
  242. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  243. tecks2.TextTransparency = tecks2.TextTransparency + .04
  244. tecks3.Rotation = tecks2.Rotation - .75
  245. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  246. tecks3.TextTransparency = tecks2.TextTransparency + .04
  247. end
  248. end
  249. naeeym2:Destroy()
  250. end)
  251. chat()
  252. end
  253.  
  254.  
  255. local Create = LoadLibrary("RbxUtility").Create
  256.  
  257. CFuncs = {
  258. ["Part"] = {
  259. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  260. local Part = Create("Part"){
  261. Parent = Parent,
  262. Reflectance = Reflectance,
  263. Transparency = Transparency,
  264. CanCollide = false,
  265. Locked = true,
  266. BrickColor = BrickColor.new(tostring(BColor)),
  267. Name = Name,
  268. Size = Size,
  269. Material = Material,
  270. }
  271. RemoveOutlines(Part)
  272. return Part
  273. end;
  274. };
  275.  
  276. ["Mesh"] = {
  277. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  278. local Msh = Create(Mesh){
  279. Parent = Part,
  280. Offset = OffSet,
  281. Scale = Scale,
  282. }
  283. if Mesh == "SpecialMesh" then
  284. Msh.MeshType = MeshType
  285. Msh.MeshId = MeshId
  286. end
  287. return Msh
  288. end;
  289. };
  290.  
  291. ["Mesh"] = {
  292. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  293. local Msh = Create(Mesh){
  294. Parent = Part,
  295. Offset = OffSet,
  296. Scale = Scale,
  297. }
  298. if Mesh == "SpecialMesh" then
  299. Msh.MeshType = MeshType
  300. Msh.MeshId = MeshId
  301. end
  302. return Msh
  303. end;
  304. };
  305.  
  306. ["Weld"] = {
  307. Create = function(Parent, Part0, Part1, C0, C1)
  308. local Weld = Create("Weld"){
  309. Parent = Parent,
  310. Part0 = Part0,
  311. Part1 = Part1,
  312. C0 = C0,
  313. C1 = C1,
  314. }
  315. return Weld
  316. end;
  317. };
  318.  
  319. ["Sound"] = {
  320. Create = function(id, par, vol, pit)
  321. coroutine.resume(coroutine.create(function()
  322. local S = Create("Sound"){
  323. Volume = vol,
  324. Name = "EffectSoundo",
  325. Pitch = pit or 1,
  326. SoundId = id,
  327. Parent = par or workspace,
  328. }
  329. wait()
  330. S:play()
  331. game:GetService("Debris"):AddItem(S, 10)
  332. end))
  333. end;
  334. };
  335.  
  336. ["LongSound"] = {
  337. Create = function(id, par, vol, pit)
  338. coroutine.resume(coroutine.create(function()
  339. local S = Create("Sound"){
  340. Volume = vol,
  341. Pitch = pit or 1,
  342. SoundId = id,
  343. Parent = par or workspace,
  344. }
  345. wait()
  346. S:play()
  347. game:GetService("Debris"):AddItem(S, 30)
  348. end))
  349. end;
  350. };
  351.  
  352. ["ParticleEmitter"] = {
  353. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  354. local fp = Create("ParticleEmitter"){
  355. Parent = Parent,
  356. Color = ColorSequence.new(Color1, Color2),
  357. LightEmission = LightEmission,
  358. Size = Size,
  359. Texture = Texture,
  360. Transparency = Transparency,
  361. ZOffset = ZOffset,
  362. Acceleration = Accel,
  363. Drag = Drag,
  364. LockedToPart = LockedToPart,
  365. VelocityInheritance = VelocityInheritance,
  366. EmissionDirection = EmissionDirection,
  367. Enabled = Enabled,
  368. Lifetime = LifeTime,
  369. Rate = Rate,
  370. Rotation = Rotation,
  371. RotSpeed = RotSpeed,
  372. Speed = Speed,
  373. VelocitySpread = VelocitySpread,
  374. }
  375. return fp
  376. end;
  377. };
  378.  
  379. CreateTemplate = {
  380.  
  381. };
  382. }
  383.  
  384.  
  385.  
  386. New = function(Object, Parent, Name, Data)
  387. local Object = Instance.new(Object)
  388. for Index, Value in pairs(Data or {}) do
  389. Object[Index] = Value
  390. end
  391. Object.Parent = Parent
  392. Object.Name = Name
  393. return Object
  394. end
  395. local halocolor = BrickColor.new("Dark blue")
  396. local halocolor2 = BrickColor.new("Dark blue")
  397. local starcolor = BrickColor.new("Dark blue")
  398. local lunacolor = BrickColor.new("Dark blue")
  399. local lunacolor2 = BrickColor.new("Dark blue")
  400. local wepcolor = BrickColor.new("Dark blue")
  401. local maincolor = BrickColor.new("Dark blue")
  402. local m = Instance.new("Model",char)
  403. local m2 = Instance.new("Model",char)
  404. local m3 = Instance.new("Model",char)
  405. local mw1 = Instance.new("Model",char)
  406. local mw2 = Instance.new("Model",char)
  407.  
  408. local extrawingmod1 = Instance.new("Model",char)
  409. local extrawingmod2 = Instance.new("Model",char)
  410.  
  411. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  412. local p = Instance.new("Part")
  413. p.TopSurface = 0
  414. p.BottomSurface = 0
  415. p.Parent = parent
  416. p.Size = Vector3.new(0.1,0.1,0.1)
  417. p.Transparency = transparency
  418. p.Reflectance = reflectance
  419. p.CanCollide = false
  420. p.Locked = true
  421. p.BrickColor = brickcolor
  422. p.Material = material
  423. return p
  424. end
  425.  
  426. function CreateMesh(parent,meshtype,x1,y1,z1)
  427. local mesh = Instance.new("SpecialMesh",parent)
  428. mesh.MeshType = meshtype
  429. mesh.Scale = Vector3.new(x1*10,y1*10,z1*10)
  430. return mesh
  431. end
  432.  
  433. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  434. local mesh = Instance.new("SpecialMesh",parent)
  435. mesh.MeshType = "FileMesh"
  436. mesh.MeshId = meshid
  437. mesh.Scale = Vector3.new(x1,y1,z1)
  438. return mesh
  439. end
  440.  
  441.  
  442. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  443. local mesh = Instance.new("SpecialMesh",parent)
  444. mesh.MeshType = "FileMesh"
  445. mesh.MeshId = meshid
  446. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  447. mesh.Scale = Vector3.new(x1,y1,z1)
  448. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  449. return mesh
  450. end
  451.  
  452. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  453. local weld = Instance.new("Weld")
  454. weld.Parent = parent
  455. weld.Part0 = part0
  456. weld.Part1 = part1
  457. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  458. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  459. return weld
  460. end
  461.  
  462.  
  463. --------------
  464. local secondchar = Instance.new("Model",char)
  465. local GhostCol = BrickColor.new("Dark blue")
  466. local sectors = CreateParta(secondchar,1,0,"Neon",GhostCol)
  467. CreateMesh(sectors,"Brick",2*8,2*8,1*8)
  468. 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))
  469.  
  470. local seclarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  471. CreateMesh(seclarm,"Brick",1*8,2*8,1*8)
  472. 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))
  473.  
  474. local secrarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  475. CreateMesh(secrarm,"Brick",1*8,2*8,1*8)
  476. 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))
  477.  
  478. local seclleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  479. CreateMesh(seclleg,"Brick",1*8,2*8,1*8)
  480. 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))
  481.  
  482. local secrleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  483. CreateMesh(secrleg,"Brick",1*8,2*8,1*8)
  484. 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))
  485.  
  486. local seched = CreateParta(secondchar,1,0,"Neon",GhostCol)
  487. CreateMesh(seched,"Brick",1*8,1*8,1*8)
  488. 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))
  489. --------------
  490. local sorb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  491. 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))
  492. local sorb2 = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  493. 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))
  494.  
  495. local handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  496. CreateMesh(handle,"Brick",0,0,0)
  497. 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))
  498. local valuaring = 10
  499. for i = 0, 49 do
  500. valuaring = valuaring + 10
  501. rn = CreateParta(mw2,0,0,"Neon",halocolor)
  502. CreateMesh(rn,"Brick",0.25,0.1,0.1)
  503. 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))
  504. end
  505.  
  506. handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  507. CreateMesh(handle,"Brick",0,0,0)
  508. 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))
  509. local valuaring = 10
  510. for i = 0, 49 do
  511. valuaring = valuaring + 10
  512. rn = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  513. CreateMesh(rn,"Brick",0.5,0.2,0.2)
  514. 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))
  515. end
  516.  
  517.  
  518. local handle = CreateParta(m,1,1,"Neon",maincolor)
  519. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  520. 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))
  521.  
  522. --- Left wing.
  523.  
  524. local lwing1 = CreateParta(m,1,1,"Neon",maincolor)
  525. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  526. 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))
  527.  
  528. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  529. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  530. 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))
  531. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  532. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  533. 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))
  534. A0 = Instance.new('Attachment',wed)
  535. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  536. CreateMesh(wed,"Wedge",0.05,0.5,3)
  537. 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))
  538. A1 = Instance.new('Attachment',wed)
  539. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  540. CreateMesh(wed,"Wedge",0.05,3,0.5)
  541. 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))
  542.  
  543. tl1 = Instance.new('Trail',wed)
  544. tl1.Attachment0 = A0
  545. tl1.Attachment1 = A1
  546. --tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  547. tl1.LightEmission = 1
  548. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  549. tl1.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  550. tl1.Lifetime = 0.6
  551.  
  552.  
  553. local lwing2 = CreateParta(m,1,1,"Neon",maincolor)
  554. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  555. 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))
  556.  
  557. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  558. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  559. 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))
  560. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  561. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  562. 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))
  563. A0 = Instance.new('Attachment',wed)
  564. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  565. CreateMesh(wed,"Wedge",0.05,0.5,3)
  566. 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))
  567. A1 = Instance.new('Attachment',wed)
  568. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  569. CreateMesh(wed,"Wedge",0.05,3,0.5)
  570. 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))
  571.  
  572. tl2 = Instance.new('Trail',wed)
  573. tl2.Attachment0 = A0
  574. tl2.Attachment1 = A1
  575. --tl2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  576. tl2.LightEmission = 1
  577. tl2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  578. tl2.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  579. tl2.Lifetime = 0.6
  580.  
  581. local lwing3 = CreateParta(m,1,1,"Neon",maincolor)
  582. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  583. 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))
  584.  
  585. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  586. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  587. 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))
  588. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  589. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  590. 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))
  591. A0 = Instance.new('Attachment',wed)
  592. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  593. CreateMesh(wed,"Wedge",0.05,0.5,3)
  594. 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))
  595. A1 = Instance.new('Attachment',wed)
  596. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  597. CreateMesh(wed,"Wedge",0.05,3,0.5)
  598. 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))
  599.  
  600. tl3 = Instance.new('Trail',wed)
  601. tl3.Attachment0 = A0
  602. tl3.Attachment1 = A1
  603. --tl3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  604. tl3.LightEmission = 1
  605. tl3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  606. tl3.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  607. tl3.Lifetime = 0.6
  608.  
  609. tl1.Enabled = false
  610. tl2.Enabled = false
  611. tl3.Enabled = false
  612. local lwing4 = CreateParta(m,1,1,"Neon",maincolor)
  613. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  614. 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))
  615.  
  616. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  617. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  618. 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))
  619. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  620. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  621. 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))
  622. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  623. CreateMesh(wed,"Wedge",0.05,0.5,3)
  624. 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))
  625. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  626. CreateMesh(wed,"Wedge",0.05,3,0.5)
  627. 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))
  628.  
  629. local lwing5 = CreateParta(m,1,1,"Neon",maincolor)
  630. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  631. 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))
  632.  
  633. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  634. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  635. 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))
  636. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  637. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  638. 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))
  639. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  640. CreateMesh(wed,"Wedge",0.05,0.5,3)
  641. 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))
  642. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  643. CreateMesh(wed,"Wedge",0.05,3,0.5)
  644. 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))
  645.  
  646. local lwing6 = CreateParta(m,1,1,"Neon",maincolor)
  647. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  648. 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))
  649.  
  650. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  651. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  652. 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))
  653. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  654. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  655. 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))
  656. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  657. CreateMesh(wed,"Wedge",0.05,0.5,3)
  658. 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))
  659. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  660. CreateMesh(wed,"Wedge",0.05,3,0.5)
  661. 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))
  662.  
  663. -- Right wing.
  664.  
  665. local rwing1 = CreateParta(m,1,1,"Neon",maincolor)
  666. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  667. 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))
  668.  
  669. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  670. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  671. 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))
  672. A0 = Instance.new('Attachment',wed)
  673. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  674. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  675. 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))
  676. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  677. CreateMesh(wed,"Wedge",0.05,0.5,3)
  678. 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))
  679. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  680. CreateMesh(wed,"Wedge",0.05,3,0.5)
  681. 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))
  682. A1 = Instance.new('Attachment',wed)
  683.  
  684. tr1 = Instance.new('Trail',wed)
  685. tr1.Attachment0 = A0
  686. tr1.Attachment1 = A1
  687. --tr1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  688. tr1.LightEmission = 1
  689. tr1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  690. tr1.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  691. tr1.Lifetime = 0.6
  692.  
  693. local rwing2 = CreateParta(m,1,1,"Neon",maincolor)
  694. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  695. 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))
  696.  
  697. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  698. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  699. 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))
  700. A0 = Instance.new('Attachment',wed)
  701. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  702. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  703. 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))
  704. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  705. CreateMesh(wed,"Wedge",0.05,0.5,3)
  706. 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))
  707. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  708. CreateMesh(wed,"Wedge",0.05,3,0.5)
  709. 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))
  710. A1 = Instance.new('Attachment',wed)
  711.  
  712. tr2 = Instance.new('Trail',wed)
  713. tr2.Attachment0 = A0
  714. tr2.Attachment1 = A1
  715. --tr2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  716. tr2.LightEmission = 1
  717. tr2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  718. tr2.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  719. tr2.Lifetime = 0.6
  720.  
  721. local rwing3 = CreateParta(m,1,1,"Neon",maincolor)
  722. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  723. 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))
  724.  
  725. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  726. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  727. 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))
  728. A0 = Instance.new('Attachment',wed)
  729. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  730. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  731. 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))
  732. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  733. CreateMesh(wed,"Wedge",0.05,0.5,3)
  734. 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))
  735. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  736. CreateMesh(wed,"Wedge",0.05,3,0.5)
  737. 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))
  738. A1 = Instance.new('Attachment',wed)
  739.  
  740. tr3 = Instance.new('Trail',wed)
  741. tr3.Attachment0 = A0
  742. tr3.Attachment1 = A1
  743. --tr3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  744. tr3.LightEmission = 1
  745. tr3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  746. tr3.Color = ColorSequence.new(BrickColor.new('Dark blue').Color)
  747. tr3.Lifetime = 0.6
  748.  
  749.  
  750. local rwing4 = CreateParta(m,1,1,"Neon",maincolor)
  751. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  752. 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))
  753.  
  754. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  755. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  756. 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))
  757. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  758. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  759. 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))
  760. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  761. CreateMesh(wed,"Wedge",0.05,0.5,3)
  762. 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))
  763. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  764. CreateMesh(wed,"Wedge",0.05,3,0.5)
  765. 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))
  766.  
  767. local rwing5 = CreateParta(m,1,1,"Neon",maincolor)
  768. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  769. 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))
  770.  
  771. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  772. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  773. 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))
  774. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  775. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  776. 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))
  777. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  778. CreateMesh(wed,"Wedge",0.05,0.5,3)
  779. 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))
  780. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  781. CreateMesh(wed,"Wedge",0.05,3,0.5)
  782. 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))
  783.  
  784. local rwing6 = CreateParta(m,1,1,"Neon",maincolor)
  785. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  786. 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))
  787.  
  788. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  789. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  790. 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))
  791. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  792. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  793. 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))
  794. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  795. CreateMesh(wed,"Wedge",0.05,0.5,3)
  796. 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))
  797. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  798. CreateMesh(wed,"Wedge",0.05,3,0.5)
  799. 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))
  800.  
  801. ---- HERES THE RING
  802.  
  803.  
  804. --[[ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  805. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  806. 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))
  807. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  808. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  809. 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))
  810. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  811. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  812. 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))
  813.  
  814.  
  815. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  816. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  817. 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))
  818.  
  819. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  820. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  821. 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))
  822.  
  823.  
  824.  
  825. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  826. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  827. 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))
  828.  
  829. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  830. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  831. 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))
  832.  
  833. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  834. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  835. 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))
  836.  
  837. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  838. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  839. 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))
  840. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  841. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  842. 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))
  843.  
  844. --- second ring
  845.  
  846. ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  847. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  848. 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))
  849. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  850. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  851. 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))
  852. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  853. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  854. 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))
  855.  
  856. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  857. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  858. 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))
  859.  
  860. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  861. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  862. 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))
  863.  
  864.  
  865.  
  866. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  867. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  868. 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))
  869.  
  870. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  871. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  872. 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))
  873.  
  874. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  875. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  876. 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))
  877.  
  878. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  879. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  880. 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))
  881. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  882. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  883. 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))]]--
  884.  
  885.  
  886.  
  887. for i, v in pairs(m:GetChildren()) do
  888. if v:IsA("Part") then
  889. v.BrickColor = BrickColor.new("Dark blue")
  890. v.Material = "Glass"
  891. end
  892. end
  893. for i, v in pairs(m2:GetChildren()) do
  894. if v:IsA("Part") then
  895. v.BrickColor = BrickColor.new("Dark blue")
  896. v.Material = "Granite"
  897. end
  898. end
  899. for i, v in pairs(m3:GetChildren()) do
  900. if v:IsA("Part") then
  901. v.BrickColor = BrickColor.new("Dark blue")
  902. v.Material = "Neon"
  903. end
  904. end
  905. for i, v in pairs(mw2:GetChildren()) do
  906. if v:IsA("Part") then
  907. v.BrickColor = BrickColor.new("Dark blue")
  908. v.Material = "Neon"
  909. end
  910. end
  911. for i, v in pairs(mw1:GetChildren()) do
  912. if v:IsA("Part") then
  913. v.Transparency = 1
  914. v.BrickColor = BrickColor.new("Dark blue")
  915. v.Material = "Neon"
  916. end
  917. end
  918. for i, v in pairs(extrawingmod1:GetChildren()) do
  919. if v:IsA("Part") then
  920. v.Transparency = 1
  921. v.BrickColor = BrickColor.new("Dark blue")
  922. v.Material = "Neon"
  923. end
  924. end
  925. for i, v in pairs(extrawingmod2:GetChildren()) do
  926. if v:IsA("Part") then
  927. v.Transparency = 1
  928. v.BrickColor = BrickColor.new("Dark blue")
  929. v.Material = "Neon"
  930. end
  931. end
  932. local MAINRUINCOLOR = BrickColor.new("Dark blue")
  933. ------
  934. --Thanks for using Build2Script Plugin by jarredbcv!
  935. local player = "LocalPlayer"
  936. local Character = game.Players[player].Character
  937. local Torso = Character.Torso
  938. local LeftArm = Character["Left Arm"]
  939. local RightArm = Character["Right Arm"]
  940. local LeftLeg = Character["Left Leg"]
  941. local RightLeg = Character["Right Leg"]
  942. local Head = Character.Head
  943. local RootPart = Character.HumanoidRootPart
  944.  
  945. local m = Instance.new("Model")
  946. m.Name = "VTX"
  947. --[[m1 = Instance.new("Model")
  948. m1.Name = "Torso"
  949. m1.Parent = m
  950. m2 = Instance.new("Model")
  951. m2.Name = "Head"
  952. m2.Parent = m
  953. m3 = Instance.new("Model")
  954. m3.Name = "RightArm"
  955. m3.Parent = m
  956. m4 = Instance.new("Model")
  957. m4.Name = "LeftLeg"
  958. m4.Parent = m
  959. m5 = Instance.new("Model")
  960. m5.Name = "RightLeg"
  961. m5.Parent = m
  962. m6 = Instance.new("Model")
  963. m6.Name = "LeftArm"
  964. m6.Parent = m--]]
  965. p1 = Instance.new("Part", m)
  966. p1.BrickColor = BrickColor.new("Dark blue")
  967. p1.Material = Enum.Material.SmoothPlastic
  968. p1.Reflectance = 0.5
  969. p1.Name = "DiamondMesh"
  970. 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)
  971. p1.CanCollide = false
  972. p1.FormFactor = Enum.FormFactor.Symmetric
  973. p1.Elasticity = 0
  974. p1.Size = Vector3.new(0.512455523, 0.512455463, 0.512455463)
  975. b1 = Instance.new("SpecialMesh", p1)
  976. b1.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  977. b1.TextureId = ""
  978. b1.MeshType = Enum.MeshType.FileMesh
  979. b1.Name = "Mesh"
  980. b1.Scale = Vector3.new(0.512455523, 0.230604947, 0.102491096)
  981. --[[p2 = Instance.new("Part", m)
  982. p2.BrickColor = BrickColor.new("Dark blue")
  983. p2.Name = "Torso"
  984. p2.CFrame = CFrame.new(3.81999993, 156.276108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  985. p2.CanCollide = false
  986. p2.FormFactor = Enum.FormFactor.Symmetric
  987. p2.Size = Vector3.new(2, 2, 1)
  988. p2.BottomSurface = Enum.SurfaceType.Smooth
  989. p2.TopSurface = Enum.SurfaceType.Smooth--]]
  990. p2 = Torso
  991. p3 = Instance.new("Part", m)
  992. p3.BrickColor = BrickColor.new("Dark blue")
  993. p3.Material = Enum.Material.SmoothPlastic
  994. p3.Name = "apart"
  995. 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)
  996. p3.CanCollide = false
  997. p3.FormFactor = Enum.FormFactor.Custom
  998. p3.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  999. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1005. b2 = Instance.new("SpecialMesh", p3)
  1006. b2.MeshType = Enum.MeshType.Brick
  1007. b2.Name = "Mesh"
  1008. b2.Scale = Vector3.new(1, 1.01999998, 0.5)
  1009. p4 = Instance.new("Part", m)
  1010. p4.BrickColor = BrickColor.new("Dark blue")
  1011. p4.Material = Enum.Material.Neon
  1012. p4.Name = "apart"
  1013. 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)
  1014. p4.CanCollide = false
  1015. p4.FormFactor = Enum.FormFactor.Custom
  1016. p4.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1017. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1018. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1022. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1023. b3 = Instance.new("SpecialMesh", p4)
  1024. b3.MeshType = Enum.MeshType.Cylinder
  1025. b3.Name = "Mesh"
  1026. b3.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1027. p5 = Instance.new("Part", m)
  1028. p5.BrickColor = BrickColor.new("Dark blue")
  1029. p5.Material = Enum.Material.SmoothPlastic
  1030. p5.Name = "apart"
  1031. 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)
  1032. p5.CanCollide = false
  1033. p5.FormFactor = Enum.FormFactor.Custom
  1034. p5.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1035. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. b4 = Instance.new("SpecialMesh", p5)
  1042. b4.MeshType = Enum.MeshType.Cylinder
  1043. b4.Name = "Mesh"
  1044. b4.Scale = Vector3.new(0.417481065, 1, 1)
  1045. p6 = Instance.new("Part", m)
  1046. p6.BrickColor = BrickColor.new("Dark blue")
  1047. p6.Name = "apart"
  1048. 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)
  1049. p6.CanCollide = false
  1050. p6.FormFactor = Enum.FormFactor.Custom
  1051. p6.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1052. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. b5 = Instance.new("SpecialMesh", p6)
  1059. b5.MeshType = Enum.MeshType.Cylinder
  1060. b5.Name = "Mesh"
  1061. b5.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1062. p7 = Instance.new("Part", m)
  1063. p7.BrickColor = BrickColor.new("Dark blue")
  1064. p7.Material = Enum.Material.Neon
  1065. p7.Name = "apart"
  1066. 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)
  1067. p7.CanCollide = false
  1068. p7.FormFactor = Enum.FormFactor.Custom
  1069. p7.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  1070. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1073. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. b6 = Instance.new("SpecialMesh", p7)
  1077. b6.MeshType = Enum.MeshType.Brick
  1078. b6.Name = "Mesh"
  1079. b6.Scale = Vector3.new(1.04999995, 0.899999976, 0.25)
  1080. p8 = Instance.new("Part", m)
  1081. p8.BrickColor = BrickColor.new("Dark blue")
  1082. p8.Material = Enum.Material.SmoothPlastic
  1083. p8.Name = "apart"
  1084. 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)
  1085. p8.CanCollide = false
  1086. p8.FormFactor = Enum.FormFactor.Custom
  1087. p8.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1088. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1092. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. b7 = Instance.new("SpecialMesh", p8)
  1095. b7.MeshType = Enum.MeshType.Cylinder
  1096. b7.Name = "Mesh"
  1097. b7.Scale = Vector3.new(0.417481065, 1, 1)
  1098. p9 = Instance.new("Part", m)
  1099. p9.BrickColor = BrickColor.new("Dark blue")
  1100. p9.Material = Enum.Material.Neon
  1101. p9.Name = "apart"
  1102. 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)
  1103. p9.CanCollide = false
  1104. p9.FormFactor = Enum.FormFactor.Custom
  1105. p9.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1106. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1107. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1108. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1109. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1110. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. b8 = Instance.new("SpecialMesh", p9)
  1113. b8.MeshType = Enum.MeshType.Brick
  1114. b8.Name = "Mesh"
  1115. b8.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  1116. p10 = Instance.new("Part", m)
  1117. p10.BrickColor = BrickColor.new("Dark blue")
  1118. p10.Material = Enum.Material.SmoothPlastic
  1119. p10.Name = "apart"
  1120. 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)
  1121. p10.CanCollide = false
  1122. p10.FormFactor = Enum.FormFactor.Custom
  1123. p10.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1124. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1125. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. b9 = Instance.new("SpecialMesh", p10)
  1131. b9.MeshType = Enum.MeshType.Brick
  1132. b9.Name = "Mesh"
  1133. b9.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  1134. p11 = Instance.new("Part", m)
  1135. p11.BrickColor = BrickColor.new("Dark blue")
  1136. p11.Material = Enum.Material.Neon
  1137. p11.Name = "apart"
  1138. 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)
  1139. p11.CanCollide = false
  1140. p11.FormFactor = Enum.FormFactor.Custom
  1141. p11.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1142. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. b10 = Instance.new("SpecialMesh", p11)
  1149. b10.MeshType = Enum.MeshType.Brick
  1150. b10.Name = "Mesh"
  1151. b10.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  1152. p12 = Instance.new("Part", m)
  1153. p12.BrickColor = BrickColor.new("Dark blue")
  1154. p12.Material = Enum.Material.SmoothPlastic
  1155. p12.Name = "apart"
  1156. 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)
  1157. p12.CanCollide = false
  1158. p12.FormFactor = Enum.FormFactor.Custom
  1159. p12.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1160. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1161. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1162. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1166. b11 = Instance.new("SpecialMesh", p12)
  1167. b11.MeshType = Enum.MeshType.Brick
  1168. b11.Name = "Mesh"
  1169. b11.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  1170. p13 = Instance.new("Part", m)
  1171. p13.BrickColor = BrickColor.new("Dark blue")
  1172. p13.Material = Enum.Material.Neon
  1173. p13.Name = "apart"
  1174. 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)
  1175. p13.CanCollide = false
  1176. p13.FormFactor = Enum.FormFactor.Custom
  1177. p13.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1178. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1179. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1181. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1182. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1183. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1184. b12 = Instance.new("SpecialMesh", p13)
  1185. b12.MeshType = Enum.MeshType.Cylinder
  1186. b12.Name = "Mesh"
  1187. b12.Scale = Vector3.new(0.208740532, 1.00999999, 1.00999999)
  1188. p14 = Instance.new("Part", m)
  1189. p14.BrickColor = BrickColor.new("Dark blue")
  1190. p14.Material = Enum.Material.SmoothPlastic
  1191. p14.Name = "apart"
  1192. 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)
  1193. p14.CanCollide = false
  1194. p14.FormFactor = Enum.FormFactor.Custom
  1195. p14.Size = Vector3.new(1.02491105, 0.245498881, 2.04982185)
  1196. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1197. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1198. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1199. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1201. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1202. b13 = Instance.new("SpecialMesh", p14)
  1203. b13.MeshType = Enum.MeshType.Brick
  1204. b13.Name = "Mesh"
  1205. b13.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  1206. p15 = Instance.new("Part", m)
  1207. p15.BrickColor = BrickColor.new("Dark blue")
  1208. p15.Material = Enum.Material.Neon
  1209. p15.Name = "apart"
  1210. 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)
  1211. p15.CanCollide = false
  1212. p15.FormFactor = Enum.FormFactor.Custom
  1213. p15.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1214. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1215. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1218. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1219. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1220. b14 = Instance.new("SpecialMesh", p15)
  1221. b14.MeshType = Enum.MeshType.Cylinder
  1222. b14.Name = "Mesh"
  1223. b14.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1224. p16 = Instance.new("Part", m)
  1225. p16.BrickColor = BrickColor.new("Dark blue")
  1226. p16.Material = Enum.Material.Neon
  1227. p16.Name = "apart"
  1228. 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)
  1229. p16.CanCollide = false
  1230. p16.FormFactor = Enum.FormFactor.Custom
  1231. p16.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1232. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1233. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1234. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1235. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1236. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1237. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. b15 = Instance.new("SpecialMesh", p16)
  1239. b15.MeshType = Enum.MeshType.Brick
  1240. b15.Name = "Mesh"
  1241. b15.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  1242. p17 = Instance.new("Part", m)
  1243. p17.BrickColor = BrickColor.new("Dark blue")
  1244. p17.Material = Enum.Material.SmoothPlastic
  1245. p17.Name = "apart"
  1246. 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)
  1247. p17.CanCollide = false
  1248. p17.FormFactor = Enum.FormFactor.Custom
  1249. p17.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1250. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1251. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1252. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1253. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1254. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. b16 = Instance.new("SpecialMesh", p17)
  1257. b16.MeshType = Enum.MeshType.Cylinder
  1258. b16.Name = "Mesh"
  1259. b16.Scale = Vector3.new(0.417480975, 1, 1)
  1260. p18 = Instance.new("Part", m)
  1261. p18.BrickColor = BrickColor.new("Dark blue")
  1262. p18.Material = Enum.Material.Neon
  1263. p18.Name = "apart"
  1264. 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)
  1265. p18.CanCollide = false
  1266. p18.FormFactor = Enum.FormFactor.Custom
  1267. p18.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1268. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1269. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1270. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1271. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1273. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. b17 = Instance.new("SpecialMesh", p18)
  1275. b17.MeshType = Enum.MeshType.Cylinder
  1276. b17.Name = "Mesh"
  1277. b17.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1278. p19 = Instance.new("Part", m)
  1279. p19.BrickColor = BrickColor.new("Dark blue")
  1280. p19.Material = Enum.Material.Neon
  1281. p19.Name = "apart"
  1282. 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)
  1283. p19.CanCollide = false
  1284. p19.FormFactor = Enum.FormFactor.Custom
  1285. p19.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1286. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. b18 = Instance.new("SpecialMesh", p19)
  1293. b18.MeshType = Enum.MeshType.Brick
  1294. b18.Name = "Mesh"
  1295. b18.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  1296. p20 = Instance.new("Part", m)
  1297. p20.BrickColor = BrickColor.new("Dark blue")
  1298. p20.Material = Enum.Material.SmoothPlastic
  1299. p20.Name = "apart"
  1300. 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)
  1301. p20.CanCollide = false
  1302. p20.FormFactor = Enum.FormFactor.Custom
  1303. p20.Size = Vector3.new(2.04982209, 0.256227732, 1.02491093)
  1304. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1307. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1309. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1310. b19 = Instance.new("SpecialMesh", p20)
  1311. b19.MeshType = Enum.MeshType.Torso
  1312. b19.Name = "Mesh"
  1313. p21 = Instance.new("Part", m)
  1314. p21.BrickColor = BrickColor.new("Dark blue")
  1315. p21.Material = Enum.Material.SmoothPlastic
  1316. p21.Name = "apart"
  1317. 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)
  1318. p21.CanCollide = false
  1319. p21.FormFactor = Enum.FormFactor.Custom
  1320. p21.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  1321. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1323. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1324. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1325. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1327. b20 = Instance.new("SpecialMesh", p21)
  1328. b20.MeshType = Enum.MeshType.Brick
  1329. b20.Name = "Mesh"
  1330. b20.Scale = Vector3.new(1.03999996, 1.00999999, 1.00999999)
  1331. p22 = Instance.new("Part", m)
  1332. p22.BrickColor = BrickColor.new("Dark blue")
  1333. p22.Material = Enum.Material.Neon
  1334. p22.Name = "apart"
  1335. 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)
  1336. p22.CanCollide = false
  1337. p22.FormFactor = Enum.FormFactor.Custom
  1338. p22.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  1339. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1340. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1341. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1342. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1343. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1344. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1345. b21 = Instance.new("SpecialMesh", p22)
  1346. b21.MeshType = Enum.MeshType.Brick
  1347. b21.Name = "Mesh"
  1348. b21.Scale = Vector3.new(1, 1.02999997, 0.25)
  1349. p23 = Instance.new("Part", m)
  1350. p23.BrickColor = BrickColor.new("Dark blue")
  1351. p23.Material = Enum.Material.SmoothPlastic
  1352. p23.Name = "apart"
  1353. 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)
  1354. p23.CanCollide = false
  1355. p23.FormFactor = Enum.FormFactor.Custom
  1356. p23.Size = Vector3.new(1.02491105, 2.04982185, 2.04982185)
  1357. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1358. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1359. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1360. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1361. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1362. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1363. p24 = Instance.new("Part", m)
  1364. p24.BrickColor = BrickColor.new("Dark blue")
  1365. p24.Material = Enum.Material.SmoothPlastic
  1366. p24.Name = "apart"
  1367. 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)
  1368. p24.CanCollide = false
  1369. p24.FormFactor = Enum.FormFactor.Custom
  1370. p24.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  1371. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1372. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1375. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1376. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1377. b22 = Instance.new("SpecialMesh", p24)
  1378. b22.MeshType = Enum.MeshType.Brick
  1379. b22.Name = "Mesh"
  1380. b22.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1381. p25 = Instance.new("Part", m)
  1382. p25.BrickColor = BrickColor.new("Dark blue")
  1383. p25.Material = Enum.Material.SmoothPlastic
  1384. p25.Name = "apart"
  1385. 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)
  1386. p25.CanCollide = false
  1387. p25.FormFactor = Enum.FormFactor.Custom
  1388. p25.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  1389. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1390. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1391. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1392. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1393. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1394. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1395. b23 = Instance.new("SpecialMesh", p25)
  1396. b23.MeshType = Enum.MeshType.Brick
  1397. b23.Name = "Mesh"
  1398. b23.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1399. p26 = Instance.new("Part", m)
  1400. p26.BrickColor = BrickColor.new("Dark blue")
  1401. p26.Material = Enum.Material.SmoothPlastic
  1402. p26.Name = "apart"
  1403. 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)
  1404. p26.CanCollide = false
  1405. p26.FormFactor = Enum.FormFactor.Custom
  1406. p26.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1407. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1409. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1410. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1411. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1412. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1413. b24 = Instance.new("SpecialMesh", p26)
  1414. b24.MeshType = Enum.MeshType.Brick
  1415. b24.Name = "Mesh"
  1416. p27 = Instance.new("Part", m)
  1417. p27.BrickColor = BrickColor.new("Dark blue")
  1418. p27.Material = Enum.Material.SmoothPlastic
  1419. p27.Name = "apart"
  1420. 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)
  1421. p27.CanCollide = false
  1422. p27.FormFactor = Enum.FormFactor.Custom
  1423. p27.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1424. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1429. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1430. b25 = Instance.new("SpecialMesh", p27)
  1431. b25.MeshType = Enum.MeshType.Cylinder
  1432. b25.Name = "Mesh"
  1433. b25.Scale = Vector3.new(0.417481065, 1, 1)
  1434. p28 = Instance.new("Part", m)
  1435. p28.BrickColor = BrickColor.new("Dark blue")
  1436. p28.Material = Enum.Material.SmoothPlastic
  1437. p28.Name = "apart"
  1438. 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)
  1439. p28.CanCollide = false
  1440. p28.FormFactor = Enum.FormFactor.Custom
  1441. p28.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  1442. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1443. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1444. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1446. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1447. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1448. b26 = Instance.new("SpecialMesh", p28)
  1449. b26.MeshType = Enum.MeshType.Wedge
  1450. b26.Name = "Mesh"
  1451. p29 = Instance.new("Part", m)
  1452. p29.BrickColor = BrickColor.new("Dark blue")
  1453. p29.Material = Enum.Material.SmoothPlastic
  1454. p29.Name = "apart"
  1455. 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)
  1456. p29.CanCollide = false
  1457. p29.FormFactor = Enum.FormFactor.Custom
  1458. p29.Size = Vector3.new(1.02491105, 1.74234843, 1.84483957)
  1459. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1465. b27 = Instance.new("SpecialMesh", p29)
  1466. b27.MeshType = Enum.MeshType.Brick
  1467. b27.Name = "Mesh"
  1468. b27.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1469. p30 = Instance.new("Part", m)
  1470. p30.BrickColor = BrickColor.new("Dark blue")
  1471. p30.Material = Enum.Material.SmoothPlastic
  1472. p30.Name = "apart"
  1473. 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)
  1474. p30.CanCollide = false
  1475. p30.FormFactor = Enum.FormFactor.Custom
  1476. p30.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  1477. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1478. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1482. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1483. b28 = Instance.new("SpecialMesh", p30)
  1484. b28.MeshType = Enum.MeshType.Wedge
  1485. b28.Name = "Mesh"
  1486. p31 = Instance.new("Part", m)
  1487. p31.BrickColor = BrickColor.new("Dark blue")
  1488. p31.Material = Enum.Material.SmoothPlastic
  1489. p31.Name = "apart"
  1490. 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)
  1491. p31.CanCollide = false
  1492. p31.FormFactor = Enum.FormFactor.Custom
  1493. p31.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  1494. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1500. b29 = Instance.new("SpecialMesh", p31)
  1501. b29.MeshType = Enum.MeshType.Wedge
  1502. b29.Name = "Mesh"
  1503. p32 = Instance.new("Part", m)
  1504. p32.BrickColor = BrickColor.new("Dark blue")
  1505. p32.Material = Enum.Material.SmoothPlastic
  1506. p32.Name = "apart"
  1507. 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)
  1508. p32.CanCollide = false
  1509. p32.FormFactor = Enum.FormFactor.Custom
  1510. p32.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  1511. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. b30 = Instance.new("SpecialMesh", p32)
  1518. b30.MeshType = Enum.MeshType.Wedge
  1519. b30.Name = "Mesh"
  1520. b30.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  1521. p33 = Instance.new("Part", m)
  1522. p33.BrickColor = BrickColor.new("Dark blue")
  1523. p33.Material = Enum.Material.SmoothPlastic
  1524. p33.Name = "apart"
  1525. 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)
  1526. p33.CanCollide = false
  1527. p33.FormFactor = Enum.FormFactor.Custom
  1528. p33.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1529. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. b31 = Instance.new("SpecialMesh", p33)
  1536. b31.MeshType = Enum.MeshType.Brick
  1537. b31.Name = "Mesh"
  1538. p34 = Instance.new("Part", m)
  1539. p34.BrickColor = BrickColor.new("Dark blue")
  1540. p34.Material = Enum.Material.SmoothPlastic
  1541. p34.Name = "apart"
  1542. 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)
  1543. p34.CanCollide = false
  1544. p34.FormFactor = Enum.FormFactor.Custom
  1545. p34.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1546. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1547. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. b32 = Instance.new("SpecialMesh", p34)
  1553. b32.MeshType = Enum.MeshType.Cylinder
  1554. b32.Name = "Mesh"
  1555. b32.Scale = Vector3.new(0.417481065, 0.899999976, 1)
  1556. p35 = Instance.new("Part", m)
  1557. p35.BrickColor = BrickColor.new("Dark blue")
  1558. p35.Material = Enum.Material.SmoothPlastic
  1559. p35.Name = "apart"
  1560. 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)
  1561. p35.CanCollide = false
  1562. p35.FormFactor = Enum.FormFactor.Custom
  1563. p35.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  1564. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1565. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1566. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1567. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1568. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. b33 = Instance.new("SpecialMesh", p35)
  1571. b33.MeshType = Enum.MeshType.Wedge
  1572. b33.Name = "Mesh"
  1573. b33.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  1574. p36 = Instance.new("Part", m)
  1575. p36.BrickColor = BrickColor.new("Dark blue")
  1576. p36.Material = Enum.Material.SmoothPlastic
  1577. p36.Name = "apart"
  1578. 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)
  1579. p36.CanCollide = false
  1580. p36.FormFactor = Enum.FormFactor.Custom
  1581. p36.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  1582. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1583. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. b34 = Instance.new("SpecialMesh", p36)
  1589. b34.MeshType = Enum.MeshType.Wedge
  1590. b34.Name = "Mesh"
  1591. b34.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  1592. p37 = Instance.new("Part", m)
  1593. p37.BrickColor = BrickColor.new("Dark blue")
  1594. p37.Material = Enum.Material.SmoothPlastic
  1595. p37.Name = "apart"
  1596. 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)
  1597. p37.CanCollide = false
  1598. p37.FormFactor = Enum.FormFactor.Custom
  1599. p37.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  1600. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1601. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1602. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1603. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1604. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1605. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. b35 = Instance.new("SpecialMesh", p37)
  1607. b35.MeshType = Enum.MeshType.Wedge
  1608. b35.Name = "Mesh"
  1609. b35.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  1610. p38 = Instance.new("Part", m)
  1611. p38.BrickColor = BrickColor.new("Dark blue")
  1612. p38.Material = Enum.Material.SmoothPlastic
  1613. p38.Name = "apart"
  1614. 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)
  1615. p38.CanCollide = false
  1616. p38.FormFactor = Enum.FormFactor.Custom
  1617. p38.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  1618. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1619. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1620. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1621. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1622. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1623. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. b36 = Instance.new("SpecialMesh", p38)
  1625. b36.MeshType = Enum.MeshType.Wedge
  1626. b36.Name = "Mesh"
  1627. p39 = Instance.new("Part", m)
  1628. p39.BrickColor = BrickColor.new("Dark blue")
  1629. p39.Material = Enum.Material.SmoothPlastic
  1630. p39.Name = "apart"
  1631. 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)
  1632. p39.CanCollide = false
  1633. p39.FormFactor = Enum.FormFactor.Custom
  1634. p39.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  1635. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1636. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1637. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1638. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1639. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1640. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1641. b37 = Instance.new("SpecialMesh", p39)
  1642. b37.MeshType = Enum.MeshType.Brick
  1643. b37.Name = "Mesh"
  1644. b37.Scale = Vector3.new(1, 1.00999999, 1.00999999)
  1645. p40 = Instance.new("Part", m)
  1646. p40.BrickColor = BrickColor.new("Dark blue")
  1647. p40.Material = Enum.Material.SmoothPlastic
  1648. p40.Name = "apart"
  1649. 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)
  1650. p40.CanCollide = false
  1651. p40.FormFactor = Enum.FormFactor.Custom
  1652. p40.Size = Vector3.new(1.53736663, 0.256227732, 0.973665357)
  1653. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1654. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1655. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1656. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1657. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1658. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1659. b38 = Instance.new("SpecialMesh", p40)
  1660. b38.MeshType = Enum.MeshType.Torso
  1661. b38.Name = "Mesh"
  1662. p41 = Instance.new("Part", m)
  1663. p41.BrickColor = BrickColor.new("Dark blue")
  1664. p41.Material = Enum.Material.SmoothPlastic
  1665. p41.Name = "apart"
  1666. 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)
  1667. p41.CanCollide = false
  1668. p41.FormFactor = Enum.FormFactor.Custom
  1669. p41.Size = Vector3.new(0.409964442, 0.922419786, 0.922419786)
  1670. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1671. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1672. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1673. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1674. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1675. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1676. b39 = Instance.new("SpecialMesh", p41)
  1677. b39.MeshType = Enum.MeshType.Sphere
  1678. b39.Name = "Mesh"
  1679. p42 = Instance.new("Part", m)
  1680. p42.BrickColor = BrickColor.new("Dark blue")
  1681. p42.Material = Enum.Material.SmoothPlastic
  1682. p42.Name = "apart"
  1683. 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)
  1684. p42.CanCollide = false
  1685. p42.FormFactor = Enum.FormFactor.Custom
  1686. p42.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  1687. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1688. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1689. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1690. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1691. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1692. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1693. b40 = Instance.new("SpecialMesh", p42)
  1694. b40.MeshType = Enum.MeshType.Sphere
  1695. b40.Name = "Mesh"
  1696. p43 = Instance.new("Part", m)
  1697. p43.BrickColor = BrickColor.new("Dark blue")
  1698. p43.Material = Enum.Material.SmoothPlastic
  1699. p43.Name = "apart"
  1700. 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)
  1701. p43.CanCollide = false
  1702. p43.FormFactor = Enum.FormFactor.Custom
  1703. p43.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1704. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1705. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1706. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1707. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1708. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1709. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1710. b41 = Instance.new("SpecialMesh", p43)
  1711. b41.MeshType = Enum.MeshType.Cylinder
  1712. b41.Name = "Mesh"
  1713. b41.Scale = Vector3.new(0.417480975, 1, 1)
  1714. p44 = Instance.new("Part", m)
  1715. p44.BrickColor = BrickColor.new("Dark blue")
  1716. p44.Material = Enum.Material.SmoothPlastic
  1717. p44.Name = "apart"
  1718. 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)
  1719. p44.CanCollide = false
  1720. p44.FormFactor = Enum.FormFactor.Custom
  1721. p44.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1722. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1723. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1724. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1725. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1726. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1727. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1728. b42 = Instance.new("SpecialMesh", p44)
  1729. b42.MeshType = Enum.MeshType.Cylinder
  1730. b42.Name = "Mesh"
  1731. b42.Scale = Vector3.new(0.626221538, 1, 1)
  1732. p45 = Instance.new("Part", m)
  1733. p45.BrickColor = BrickColor.new("Dark blue")
  1734. p45.Material = Enum.Material.Neon
  1735. p45.Name = "apart"
  1736. 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)
  1737. p45.CanCollide = false
  1738. p45.FormFactor = Enum.FormFactor.Custom
  1739. p45.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1740. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1741. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1742. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1743. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1744. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1745. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1746. b43 = Instance.new("SpecialMesh", p45)
  1747. b43.MeshType = Enum.MeshType.Cylinder
  1748. b43.Name = "Mesh"
  1749. b43.Scale = Vector3.new(0.313110769, 1.00999999, 1.00999999)
  1750. p46 = Instance.new("Part", m)
  1751. p46.BrickColor = BrickColor.new("Dark blue")
  1752. p46.Material = Enum.Material.SmoothPlastic
  1753. p46.Name = "apart"
  1754. 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)
  1755. p46.CanCollide = false
  1756. p46.FormFactor = Enum.FormFactor.Custom
  1757. p46.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  1758. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1759. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1760. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1761. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1762. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1763. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1764. b44 = Instance.new("SpecialMesh", p46)
  1765. b44.MeshType = Enum.MeshType.Sphere
  1766. b44.Name = "Mesh"
  1767. p47 = Instance.new("Part", m)
  1768. p47.BrickColor = BrickColor.new("Dark blue")
  1769. --[[p47.Name = "Head"
  1770. p47.CFrame = CFrame.new(3.81999993, 157.776108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1771. p47.CanCollide = false
  1772. p47.FormFactor = Enum.FormFactor.Symmetric
  1773. p47.Size = Vector3.new(2, 1, 1)
  1774. p47.BottomSurface = Enum.SurfaceType.Smooth
  1775. p47.TopSurface = Enum.SurfaceType.Smooth--]]
  1776. p47 = Head
  1777. p48 = Instance.new("Part", m)
  1778. p48.BrickColor = BrickColor.new("Dark blue")
  1779. p48.Material = Enum.Material.Neon
  1780. p48.Name = "apart"
  1781. 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)
  1782. p48.CanCollide = false
  1783. p48.FormFactor = Enum.FormFactor.Custom
  1784. p48.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  1785. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1786. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1787. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1788. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1790. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1791. b45 = Instance.new("SpecialMesh", p48)
  1792. b45.MeshType = Enum.MeshType.Wedge
  1793. b45.Name = "Mesh"
  1794. b45.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  1795. p49 = Instance.new("Part", m)
  1796. p49.BrickColor = BrickColor.new("Dark blue")
  1797. p49.Material = Enum.Material.SmoothPlastic
  1798. p49.Name = "apart"
  1799. 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)
  1800. p49.CanCollide = false
  1801. p49.FormFactor = Enum.FormFactor.Custom
  1802. p49.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  1803. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1804. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1805. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1806. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1809. b46 = Instance.new("SpecialMesh", p49)
  1810. b46.MeshType = Enum.MeshType.Brick
  1811. b46.Name = "Mesh"
  1812. b46.Scale = Vector3.new(0.417481035, 1.00999999, 0.834961772)
  1813. p50 = Instance.new("Part", m)
  1814. p50.BrickColor = BrickColor.new("Dark blue")
  1815. p50.Material = Enum.Material.SmoothPlastic
  1816. p50.Name = "apart"
  1817. 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)
  1818. p50.CanCollide = false
  1819. p50.FormFactor = Enum.FormFactor.Custom
  1820. p50.Size = Vector3.new(0.245498881, 0.409964353, 0.307473242)
  1821. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1822. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1823. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1824. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1825. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1826. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1827. b47 = Instance.new("SpecialMesh", p50)
  1828. b47.MeshType = Enum.MeshType.Brick
  1829. b47.Name = "Mesh"
  1830. b47.Scale = Vector3.new(0.417481035, 1, 1)
  1831. p51 = Instance.new("Part", m)
  1832. p51.BrickColor = BrickColor.new("Dark blue")
  1833. p51.Material = Enum.Material.Neon
  1834. p51.Name = "apart"
  1835. 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)
  1836. p51.CanCollide = false
  1837. p51.FormFactor = Enum.FormFactor.Custom
  1838. p51.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1839. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1840. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1841. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1842. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1843. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1844. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1845. b48 = Instance.new("SpecialMesh", p51)
  1846. b48.MeshType = Enum.MeshType.Wedge
  1847. b48.Name = "Mesh"
  1848. b48.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  1849. p52 = Instance.new("Part", m)
  1850. p52.BrickColor = BrickColor.new("Dark blue")
  1851. p52.Material = Enum.Material.SmoothPlastic
  1852. p52.Name = "apart"
  1853. 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)
  1854. p52.CanCollide = false
  1855. p52.FormFactor = Enum.FormFactor.Custom
  1856. p52.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  1857. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1858. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1859. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1860. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1861. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1862. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. b49 = Instance.new("SpecialMesh", p52)
  1864. b49.MeshType = Enum.MeshType.Wedge
  1865. b49.Name = "Mesh"
  1866. b49.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  1867. p53 = Instance.new("Part", m)
  1868. p53.BrickColor = BrickColor.new("Dark blue")
  1869. p53.Material = Enum.Material.SmoothPlastic
  1870. p53.Name = "apart"
  1871. 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)
  1872. p53.CanCollide = false
  1873. p53.FormFactor = Enum.FormFactor.Custom
  1874. p53.Size = Vector3.new(1.43487537, 0.512455463, 0.512455463)
  1875. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1876. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1877. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1878. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1879. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1880. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1881. b50 = Instance.new("SpecialMesh", p53)
  1882. b50.MeshType = Enum.MeshType.Cylinder
  1883. b50.Name = "Mesh"
  1884. p54 = Instance.new("Part", m)
  1885. p54.BrickColor = BrickColor.new("Dark blue")
  1886. p54.Material = Enum.Material.SmoothPlastic
  1887. p54.Name = "apart"
  1888. 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)
  1889. p54.CanCollide = false
  1890. p54.FormFactor = Enum.FormFactor.Custom
  1891. p54.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  1892. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1893. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1894. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1895. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1896. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1897. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1898. b51 = Instance.new("SpecialMesh", p54)
  1899. b51.MeshType = Enum.MeshType.Torso
  1900. b51.Name = "Mesh"
  1901. b51.Scale = Vector3.new(1, 0.417480916, 1)
  1902. p55 = Instance.new("Part", m)
  1903. p55.BrickColor = BrickColor.new("Dark blue")
  1904. p55.Material = Enum.Material.SmoothPlastic
  1905. p55.Name = "apart"
  1906. 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)
  1907. p55.CanCollide = false
  1908. p55.FormFactor = Enum.FormFactor.Custom
  1909. p55.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  1910. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1911. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1912. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1913. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1914. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1915. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1916. b52 = Instance.new("SpecialMesh", p55)
  1917. b52.MeshType = Enum.MeshType.Wedge
  1918. b52.Name = "Mesh"
  1919. p56 = Instance.new("Part", m)
  1920. p56.BrickColor = BrickColor.new("Dark blue")
  1921. p56.Material = Enum.Material.SmoothPlastic
  1922. p56.Name = "apart"
  1923. 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)
  1924. p56.CanCollide = false
  1925. p56.FormFactor = Enum.FormFactor.Custom
  1926. p56.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  1927. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1928. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1929. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1930. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1931. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1932. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1933. b53 = Instance.new("SpecialMesh", p56)
  1934. b53.MeshType = Enum.MeshType.Wedge
  1935. b53.Name = "Mesh"
  1936. b53.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  1937. p57 = Instance.new("Part", m)
  1938. p57.BrickColor = BrickColor.new("Dark blue")
  1939. p57.Material = Enum.Material.SmoothPlastic
  1940. p57.Name = "apart"
  1941. 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)
  1942. p57.CanCollide = false
  1943. p57.FormFactor = Enum.FormFactor.Custom
  1944. p57.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  1945. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1946. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1947. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1948. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1949. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1950. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1951. b54 = Instance.new("SpecialMesh", p57)
  1952. b54.MeshType = Enum.MeshType.Wedge
  1953. b54.Name = "Mesh"
  1954. b54.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  1955. p58 = Instance.new("Part", m)
  1956. p58.BrickColor = BrickColor.new("Dark blue")
  1957. p58.Material = Enum.Material.SmoothPlastic
  1958. p58.Name = "apart"
  1959. 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)
  1960. p58.CanCollide = false
  1961. p58.FormFactor = Enum.FormFactor.Custom
  1962. p58.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  1963. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1964. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1965. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1966. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1967. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1968. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1969. b55 = Instance.new("SpecialMesh", p58)
  1970. b55.MeshType = Enum.MeshType.Torso
  1971. b55.Name = "Mesh"
  1972. b55.Scale = Vector3.new(1, 0.417480916, 1)
  1973. p59 = Instance.new("Part", m)
  1974. p59.BrickColor = BrickColor.new("Dark blue")
  1975. p59.Material = Enum.Material.SmoothPlastic
  1976. p59.Name = "apart"
  1977. 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)
  1978. p59.CanCollide = false
  1979. p59.FormFactor = Enum.FormFactor.Custom
  1980. p59.Size = Vector3.new(1.02491105, 1.02491093, 1.02491093)
  1981. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1982. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1983. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1984. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1985. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1986. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1987. b56 = Instance.new("SpecialMesh", p59)
  1988. b56.MeshType = Enum.MeshType.Brick
  1989. b56.Name = "Mesh"
  1990. p60 = Instance.new("Part", m)
  1991. p60.BrickColor = BrickColor.new("Dark blue")
  1992. p60.Material = Enum.Material.Neon
  1993. p60.Name = "apart"
  1994. 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)
  1995. p60.CanCollide = false
  1996. p60.FormFactor = Enum.FormFactor.Custom
  1997. p60.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  1998. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1999. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2000. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2001. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2002. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2003. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2004. b57 = Instance.new("SpecialMesh", p60)
  2005. b57.MeshType = Enum.MeshType.Wedge
  2006. b57.Name = "Mesh"
  2007. b57.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  2008. p61 = Instance.new("Part", m)
  2009. p61.BrickColor = BrickColor.new("Dark blue")
  2010. p61.Material = Enum.Material.SmoothPlastic
  2011. p61.Name = "apart"
  2012. 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)
  2013. p61.CanCollide = false
  2014. p61.FormFactor = Enum.FormFactor.Custom
  2015. p61.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2016. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2017. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2018. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2019. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2020. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2021. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2022. b58 = Instance.new("SpecialMesh", p61)
  2023. b58.MeshType = Enum.MeshType.Wedge
  2024. b58.Name = "Mesh"
  2025. b58.Scale = Vector3.new(0.417481065, 1, 1)
  2026. p62 = Instance.new("Part", m)
  2027. p62.BrickColor = BrickColor.new("Dark blue")
  2028. p62.Material = Enum.Material.SmoothPlastic
  2029. p62.Name = "apart"
  2030. 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)
  2031. p62.CanCollide = false
  2032. p62.FormFactor = Enum.FormFactor.Custom
  2033. p62.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2034. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2035. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2036. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2037. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2038. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2039. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2040. b59 = Instance.new("SpecialMesh", p62)
  2041. b59.MeshType = Enum.MeshType.Wedge
  2042. b59.Name = "Mesh"
  2043. b59.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2044. p63 = Instance.new("Part", m)
  2045. p63.BrickColor = BrickColor.new("Dark blue")
  2046. p63.Material = Enum.Material.SmoothPlastic
  2047. p63.Name = "apart"
  2048. 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)
  2049. p63.CanCollide = false
  2050. p63.FormFactor = Enum.FormFactor.Custom
  2051. p63.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2052. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2053. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2054. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2055. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2056. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2057. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2058. b60 = Instance.new("SpecialMesh", p63)
  2059. b60.MeshType = Enum.MeshType.Wedge
  2060. b60.Name = "Mesh"
  2061. b60.Scale = Vector3.new(0.417481065, 1, 1)
  2062. p64 = Instance.new("Part", m)
  2063. p64.BrickColor = BrickColor.new("Dark blue")
  2064. p64.Material = Enum.Material.SmoothPlastic
  2065. p64.Name = "apart"
  2066. 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)
  2067. p64.CanCollide = false
  2068. p64.FormFactor = Enum.FormFactor.Custom
  2069. p64.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  2070. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2073. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2074. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2075. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2076. b61 = Instance.new("SpecialMesh", p64)
  2077. b61.MeshType = Enum.MeshType.Wedge
  2078. b61.Name = "Mesh"
  2079. b61.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  2080. p65 = Instance.new("Part", m)
  2081. p65.BrickColor = BrickColor.new("Dark blue")
  2082. p65.Material = Enum.Material.SmoothPlastic
  2083. p65.Name = "apart"
  2084. 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)
  2085. p65.CanCollide = false
  2086. p65.FormFactor = Enum.FormFactor.Custom
  2087. p65.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  2088. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2091. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2092. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2093. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2094. b62 = Instance.new("SpecialMesh", p65)
  2095. b62.MeshType = Enum.MeshType.Wedge
  2096. b62.Name = "Mesh"
  2097. b62.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  2098. p66 = Instance.new("Part", m)
  2099. p66.BrickColor = BrickColor.new("Dark blue")
  2100. p66.Material = Enum.Material.SmoothPlastic
  2101. p66.Name = "apart"
  2102. 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)
  2103. p66.CanCollide = false
  2104. p66.FormFactor = Enum.FormFactor.Custom
  2105. p66.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  2106. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2109. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2110. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2111. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2112. b63 = Instance.new("SpecialMesh", p66)
  2113. b63.MeshType = Enum.MeshType.Wedge
  2114. b63.Name = "Mesh"
  2115. p67 = Instance.new("Part", m)
  2116. p67.BrickColor = BrickColor.new("Dark blue")
  2117. p67.Material = Enum.Material.Neon
  2118. p67.Name = "apart"
  2119. 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)
  2120. p67.CanCollide = false
  2121. p67.FormFactor = Enum.FormFactor.Custom
  2122. p67.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2123. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2126. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2128. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2129. b64 = Instance.new("SpecialMesh", p67)
  2130. b64.MeshType = Enum.MeshType.Wedge
  2131. b64.Name = "Mesh"
  2132. b64.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  2133. p68 = Instance.new("Part", m)
  2134. p68.BrickColor = BrickColor.new("Dark blue")
  2135. p68.Material = Enum.Material.SmoothPlastic
  2136. p68.Name = "apart"
  2137. 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)
  2138. p68.CanCollide = false
  2139. p68.FormFactor = Enum.FormFactor.Custom
  2140. p68.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2141. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2142. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2144. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2145. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2146. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2147. b65 = Instance.new("SpecialMesh", p68)
  2148. b65.MeshType = Enum.MeshType.Wedge
  2149. b65.Name = "Mesh"
  2150. b65.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  2151. p69 = Instance.new("Part", m)
  2152. p69.BrickColor = BrickColor.new("Dark blue")
  2153. p69.Material = Enum.Material.SmoothPlastic
  2154. p69.Name = "apart"
  2155. 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)
  2156. p69.CanCollide = false
  2157. p69.FormFactor = Enum.FormFactor.Custom
  2158. p69.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  2159. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2160. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2161. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2162. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2163. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2164. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2165. b66 = Instance.new("SpecialMesh", p69)
  2166. b66.MeshType = Enum.MeshType.Wedge
  2167. b66.Name = "Mesh"
  2168. b66.Scale = Vector3.new(1, 1, 0.626221359)
  2169. p70 = Instance.new("Part", m)
  2170. p70.BrickColor = BrickColor.new("Dark blue")
  2171. p70.Material = Enum.Material.SmoothPlastic
  2172. p70.Name = "apart"
  2173. 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)
  2174. p70.CanCollide = false
  2175. p70.FormFactor = Enum.FormFactor.Custom
  2176. p70.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  2177. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2178. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2179. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2180. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2181. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2182. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2183. b67 = Instance.new("SpecialMesh", p70)
  2184. b67.MeshType = Enum.MeshType.Wedge
  2185. b67.Name = "Mesh"
  2186. b67.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  2187. p71 = Instance.new("Part", m)
  2188. p71.BrickColor = BrickColor.new("Dark blue")
  2189. p71.Material = Enum.Material.Neon
  2190. p71.Name = "apart"
  2191. 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)
  2192. p71.CanCollide = false
  2193. p71.FormFactor = Enum.FormFactor.Custom
  2194. p71.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2195. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2196. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2197. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2198. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2199. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2200. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2201. b68 = Instance.new("SpecialMesh", p71)
  2202. b68.MeshType = Enum.MeshType.Cylinder
  2203. b68.Name = "Mesh"
  2204. b68.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  2205. p72 = Instance.new("Part", m)
  2206. p72.BrickColor = BrickColor.new("Dark blue")
  2207. p72.Material = Enum.Material.SmoothPlastic
  2208. p72.Name = "apart"
  2209. 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)
  2210. p72.CanCollide = false
  2211. p72.FormFactor = Enum.FormFactor.Custom
  2212. p72.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  2213. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2214. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2217. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2218. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2219. b69 = Instance.new("SpecialMesh", p72)
  2220. b69.MeshType = Enum.MeshType.Wedge
  2221. b69.Name = "Mesh"
  2222. b69.Scale = Vector3.new(1, 1, 0.626221359)
  2223. p73 = Instance.new("Part", m)
  2224. p73.BrickColor = BrickColor.new("Dark blue")
  2225. p73.Material = Enum.Material.SmoothPlastic
  2226. p73.Name = "apart"
  2227. 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)
  2228. p73.CanCollide = false
  2229. p73.FormFactor = Enum.FormFactor.Custom
  2230. p73.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2231. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2232. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2236. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2237. b70 = Instance.new("SpecialMesh", p73)
  2238. b70.MeshType = Enum.MeshType.Wedge
  2239. b70.Name = "Mesh"
  2240. b70.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2241. p74 = Instance.new("Part", m)
  2242. p74.BrickColor = BrickColor.new("Dark blue")
  2243. p74.Material = Enum.Material.SmoothPlastic
  2244. p74.Name = "apart"
  2245. 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)
  2246. p74.CanCollide = false
  2247. p74.FormFactor = Enum.FormFactor.Custom
  2248. p74.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2249. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2250. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2251. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2252. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2253. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2254. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2255. b71 = Instance.new("SpecialMesh", p74)
  2256. b71.MeshType = Enum.MeshType.Wedge
  2257. b71.Name = "Mesh"
  2258. b71.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2259. p75 = Instance.new("Part", m)
  2260. p75.BrickColor = BrickColor.new("Dark blue")
  2261. p75.Material = Enum.Material.Neon
  2262. p75.Name = "apart"
  2263. 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)
  2264. p75.CanCollide = false
  2265. p75.FormFactor = Enum.FormFactor.Custom
  2266. p75.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2267. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2268. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2269. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2270. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2271. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2272. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. b72 = Instance.new("SpecialMesh", p75)
  2274. b72.MeshType = Enum.MeshType.Cylinder
  2275. b72.Name = "Mesh"
  2276. b72.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  2277. p76 = Instance.new("Part", m)
  2278. p76.BrickColor = BrickColor.new("Dark blue")
  2279. p76.Material = Enum.Material.Neon
  2280. p76.Name = "apart"
  2281. 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)
  2282. p76.CanCollide = false
  2283. p76.FormFactor = Enum.FormFactor.Custom
  2284. p76.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  2285. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2286. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2287. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2289. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2290. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2291. b73 = Instance.new("SpecialMesh", p76)
  2292. b73.MeshType = Enum.MeshType.Brick
  2293. b73.Name = "Mesh"
  2294. b73.Scale = Vector3.new(0.421655834, 1.01999998, 0.333984703)
  2295. p77 = Instance.new("Part", m)
  2296. p77.BrickColor = BrickColor.new("Dark blue")
  2297. p77.Material = Enum.Material.Neon
  2298. p77.Name = "apart"
  2299. 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)
  2300. p77.CanCollide = false
  2301. p77.FormFactor = Enum.FormFactor.Custom
  2302. p77.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2303. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2304. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2305. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2306. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2307. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2308. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2309. b74 = Instance.new("SpecialMesh", p77)
  2310. b74.MeshType = Enum.MeshType.Wedge
  2311. b74.Name = "Mesh"
  2312. b74.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  2313. p78 = Instance.new("Part", m)
  2314. p78.BrickColor = BrickColor.new("Dark blue")
  2315. p78.Material = Enum.Material.Neon
  2316. p78.Name = "apart"
  2317. 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)
  2318. p78.CanCollide = false
  2319. p78.FormFactor = Enum.FormFactor.Custom
  2320. p78.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2321. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2322. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2324. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2326. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2327. b75 = Instance.new("SpecialMesh", p78)
  2328. b75.MeshType = Enum.MeshType.Wedge
  2329. b75.Name = "Mesh"
  2330. b75.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  2331. p79 = Instance.new("Part", m)
  2332. p79.BrickColor = BrickColor.new("Dark blue")
  2333. p79.Material = Enum.Material.SmoothPlastic
  2334. p79.Name = "apart"
  2335. 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)
  2336. p79.CanCollide = false
  2337. p79.FormFactor = Enum.FormFactor.Custom
  2338. p79.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2339. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2340. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2341. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2342. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2343. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2344. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2345. b76 = Instance.new("SpecialMesh", p79)
  2346. b76.MeshType = Enum.MeshType.Brick
  2347. b76.Name = "Mesh"
  2348. b76.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2349. p80 = Instance.new("Part", m)
  2350. p80.BrickColor = BrickColor.new("Dark blue")
  2351. p80.Material = Enum.Material.SmoothPlastic
  2352. p80.Name = "apart"
  2353. 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)
  2354. p80.CanCollide = false
  2355. p80.FormFactor = Enum.FormFactor.Custom
  2356. p80.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2357. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2358. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2359. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2360. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2361. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2362. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2363. b77 = Instance.new("SpecialMesh", p80)
  2364. b77.MeshType = Enum.MeshType.Cylinder
  2365. b77.Name = "Mesh"
  2366. b77.Scale = Vector3.new(1.01999998, 1, 1)
  2367. p81 = Instance.new("Part", m)
  2368. p81.BrickColor = BrickColor.new("Dark blue")
  2369. p81.Material = Enum.Material.SmoothPlastic
  2370. p81.Name = "apart"
  2371. 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)
  2372. p81.CanCollide = false
  2373. p81.FormFactor = Enum.FormFactor.Custom
  2374. p81.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2375. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2376. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2377. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2378. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2379. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2380. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2381. b78 = Instance.new("SpecialMesh", p81)
  2382. b78.MeshType = Enum.MeshType.Wedge
  2383. b78.Name = "Mesh"
  2384. b78.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2385. p82 = Instance.new("Part", m)
  2386. p82.BrickColor = BrickColor.new("Dark blue")
  2387. p82.Material = Enum.Material.SmoothPlastic
  2388. p82.Name = "apart"
  2389. 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)
  2390. p82.CanCollide = false
  2391. p82.FormFactor = Enum.FormFactor.Custom
  2392. p82.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  2393. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2394. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2395. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2396. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2397. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2398. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2399. b79 = Instance.new("SpecialMesh", p82)
  2400. b79.MeshType = Enum.MeshType.Wedge
  2401. b79.Name = "Mesh"
  2402. b79.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2403. p83 = Instance.new("Part", m)
  2404. p83.BrickColor = BrickColor.new("Dark blue")
  2405. p83.Material = Enum.Material.SmoothPlastic
  2406. p83.Name = "apart"
  2407. p83.CFrame = CFrame.new(3.82271981, 156.018005, 41.9217148, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  2408. p83.CanCollide = false
  2409. p83.FormFactor = Enum.FormFactor.Custom
  2410. p83.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2411. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2412. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2413. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2414. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2415. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2416. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2417. b80 = Instance.new("SpecialMesh", p83)
  2418. b80.MeshType = Enum.MeshType.Brick
  2419. b80.Name = "Mesh"
  2420. b80.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2421. p84 = Instance.new("Part", m)
  2422. p84.BrickColor = BrickColor.new("Dark blue")
  2423. p84.Material = Enum.Material.SmoothPlastic
  2424. p84.Name = "apart"
  2425. p84.CFrame = CFrame.new(3.82271981, 155.633667, 41.5373764, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  2426. p84.CanCollide = false
  2427. p84.FormFactor = Enum.FormFactor.Custom
  2428. p84.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2429. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2430. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2431. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2432. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2433. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2434. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2435. b81 = Instance.new("SpecialMesh", p84)
  2436. b81.MeshType = Enum.MeshType.Brick
  2437. b81.Name = "Mesh"
  2438. b81.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2439. p85 = Instance.new("Part", m)
  2440. p85.BrickColor = BrickColor.new("Dark blue")
  2441. p85.Material = Enum.Material.SmoothPlastic
  2442. p85.Name = "apart"
  2443. 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)
  2444. p85.CanCollide = false
  2445. p85.FormFactor = Enum.FormFactor.Custom
  2446. p85.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2447. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2448. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2449. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2450. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2451. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2452. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2453. b82 = Instance.new("SpecialMesh", p85)
  2454. b82.MeshType = Enum.MeshType.Wedge
  2455. b82.Name = "Mesh"
  2456. b82.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2457. p86 = Instance.new("Part", m)
  2458. p86.BrickColor = BrickColor.new("Dark blue")
  2459. p86.Material = Enum.Material.SmoothPlastic
  2460. p86.Name = "apart"
  2461. p86.CFrame = CFrame.new(3.82272005, 156.402374, 41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2462. p86.CanCollide = false
  2463. p86.FormFactor = Enum.FormFactor.Custom
  2464. p86.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  2465. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2466. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2467. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2468. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2469. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2470. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2471. b83 = Instance.new("SpecialMesh", p86)
  2472. b83.MeshType = Enum.MeshType.Wedge
  2473. b83.Name = "Mesh"
  2474. b83.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2475. p87 = Instance.new("Part", m)
  2476. p87.BrickColor = BrickColor.new("Dark blue")
  2477. p87.Material = Enum.Material.SmoothPlastic
  2478. p87.Name = "apart"
  2479. p87.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2480. p87.CanCollide = false
  2481. p87.FormFactor = Enum.FormFactor.Custom
  2482. p87.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  2483. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2484. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2485. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2486. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2487. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2488. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2489. b84 = Instance.new("SpecialMesh", p87)
  2490. b84.MeshType = Enum.MeshType.Brick
  2491. b84.Name = "Mesh"
  2492. b84.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  2493. p88 = Instance.new("Part", m)
  2494. p88.BrickColor = BrickColor.new("Dark blue")
  2495. p88.Material = Enum.Material.SmoothPlastic
  2496. p88.Name = "apart"
  2497. p88.CFrame = CFrame.new(3.82272005, 157.350418, 41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2498. p88.CanCollide = false
  2499. p88.FormFactor = Enum.FormFactor.Custom
  2500. p88.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2501. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2502. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2503. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2504. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2505. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2507. b85 = Instance.new("SpecialMesh", p88)
  2508. b85.MeshType = Enum.MeshType.Cylinder
  2509. b85.Name = "Mesh"
  2510. b85.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  2511. p89 = Instance.new("Part", m)
  2512. p89.BrickColor = BrickColor.new("Dark blue")
  2513. p89.Material = Enum.Material.Neon
  2514. p89.Name = "apart"
  2515. p89.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2516. p89.CanCollide = false
  2517. p89.FormFactor = Enum.FormFactor.Custom
  2518. p89.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  2519. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2520. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2521. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2522. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2523. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2524. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2525. b86 = Instance.new("SpecialMesh", p89)
  2526. b86.MeshType = Enum.MeshType.Brick
  2527. b86.Name = "Mesh"
  2528. b86.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  2529. p90 = Instance.new("Part", m)
  2530. p90.BrickColor = BrickColor.new("Dark blue")
  2531. p90.Material = Enum.Material.SmoothPlastic
  2532. p90.Name = "apart"
  2533. p90.CFrame = CFrame.new(3.82272005, 156.402374, 41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2534. p90.CanCollide = false
  2535. p90.FormFactor = Enum.FormFactor.Custom
  2536. p90.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2537. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2538. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2539. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2540. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2541. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2542. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2543. --[[p91 = Instance.new("Part", m)
  2544. p91.BrickColor = BrickColor.new("Bright orange")
  2545. p91.Name = "Right Arm"
  2546. p91.CFrame = CFrame.new(3.81999993, 156.276108, 41.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2547. p91.CanCollide = false
  2548. p91.FormFactor = Enum.FormFactor.Symmetric
  2549. p91.Size = Vector3.new(1, 2, 1)
  2550. p91.BottomSurface = Enum.SurfaceType.Smooth
  2551. p91.TopSurface = Enum.SurfaceType.Smooth--]]
  2552. p91 = RightArm
  2553. p92 = Instance.new("Part", m)
  2554. p92.BrickColor = BrickColor.new("Dark blue")
  2555. p92.Material = Enum.Material.SmoothPlastic
  2556. p92.Name = "apart"
  2557. p92.CFrame = CFrame.new(3.82272005, 154.35257, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2558. p92.CanCollide = false
  2559. p92.FormFactor = Enum.FormFactor.Custom
  2560. p92.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2561. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2562. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2563. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2564. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2565. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2566. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2567. --[[p93 = Instance.new("Part", m)
  2568. p93.BrickColor = BrickColor.new("Earth green")
  2569. p93.Name = "Left Leg"
  2570. p93.CFrame = CFrame.new(3.81999993, 154.276123, 39.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2571. p93.CanCollide = false
  2572. p93.FormFactor = Enum.FormFactor.Symmetric
  2573. p93.Size = Vector3.new(1, 2, 1)
  2574. p93.BottomSurface = Enum.SurfaceType.Smooth
  2575. p93.TopSurface = Enum.SurfaceType.Smooth--]]
  2576. p93 = LeftLeg
  2577. p94 = Instance.new("Part", m)
  2578. p94.BrickColor = BrickColor.new("Dark blue")
  2579. p94.Material = Enum.Material.SmoothPlastic
  2580. p94.Name = "apart"
  2581. p94.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2582. p94.CanCollide = false
  2583. p94.FormFactor = Enum.FormFactor.Custom
  2584. p94.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2585. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2586. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2591. b87 = Instance.new("SpecialMesh", p94)
  2592. b87.MeshType = Enum.MeshType.Brick
  2593. b87.Name = "Mesh"
  2594. b87.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2595. p95 = Instance.new("Part", m)
  2596. p95.BrickColor = BrickColor.new("Dark blue")
  2597. p95.Material = Enum.Material.SmoothPlastic
  2598. p95.Name = "apart"
  2599. p95.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2600. p95.CanCollide = false
  2601. p95.FormFactor = Enum.FormFactor.Custom
  2602. p95.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2603. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2604. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2608. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2609. b88 = Instance.new("SpecialMesh", p95)
  2610. b88.MeshType = Enum.MeshType.Brick
  2611. b88.Name = "Mesh"
  2612. b88.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  2613. p96 = Instance.new("Part", m)
  2614. p96.BrickColor = BrickColor.new("Dark blue")
  2615. p96.Material = Enum.Material.Neon
  2616. p96.Name = "apart"
  2617. p96.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2618. p96.CanCollide = false
  2619. p96.FormFactor = Enum.FormFactor.Custom
  2620. p96.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2621. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2622. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. b89 = Instance.new("SpecialMesh", p96)
  2628. b89.MeshType = Enum.MeshType.Brick
  2629. b89.Name = "Mesh"
  2630. b89.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  2631. p97 = Instance.new("Part", m)
  2632. p97.BrickColor = BrickColor.new("Dark blue")
  2633. p97.Material = Enum.Material.Neon
  2634. p97.Name = "apart"
  2635. p97.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2636. p97.CanCollide = false
  2637. p97.FormFactor = Enum.FormFactor.Custom
  2638. p97.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2639. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2640. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2642. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. b90 = Instance.new("SpecialMesh", p97)
  2646. b90.MeshType = Enum.MeshType.Brick
  2647. b90.Name = "Mesh"
  2648. b90.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  2649. p98 = Instance.new("Part", m)
  2650. p98.BrickColor = BrickColor.new("Dark blue")
  2651. p98.Material = Enum.Material.SmoothPlastic
  2652. p98.Name = "apart"
  2653. 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)
  2654. p98.CanCollide = false
  2655. p98.FormFactor = Enum.FormFactor.Custom
  2656. p98.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  2657. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2658. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2659. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2660. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2661. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2662. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. b91 = Instance.new("SpecialMesh", p98)
  2664. b91.MeshType = Enum.MeshType.Wedge
  2665. b91.Name = "Mesh"
  2666. b91.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2667. p99 = Instance.new("Part", m)
  2668. p99.BrickColor = BrickColor.new("Dark blue")
  2669. p99.Material = Enum.Material.SmoothPlastic
  2670. p99.Name = "apart"
  2671. 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)
  2672. p99.CanCollide = false
  2673. p99.FormFactor = Enum.FormFactor.Custom
  2674. p99.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  2675. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2676. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2677. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2678. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2679. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2680. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. b92 = Instance.new("SpecialMesh", p99)
  2682. b92.MeshType = Enum.MeshType.Torso
  2683. b92.Name = "Mesh"
  2684. b92.Scale = Vector3.new(1, 1, 1.01999998)
  2685. p100 = Instance.new("Part", m)
  2686. p100.BrickColor = BrickColor.new("Dark blue")
  2687. p100.Material = Enum.Material.SmoothPlastic
  2688. p100.Name = "apart"
  2689. 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)
  2690. p100.CanCollide = false
  2691. p100.FormFactor = Enum.FormFactor.Custom
  2692. p100.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2693. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2694. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2695. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2696. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2697. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2698. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. b93 = Instance.new("SpecialMesh", p100)
  2700. b93.MeshType = Enum.MeshType.Brick
  2701. b93.Name = "Mesh"
  2702. b93.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  2703. p101 = Instance.new("Part", m)
  2704. p101.BrickColor = BrickColor.new("Dark blue")
  2705. p101.Material = Enum.Material.SmoothPlastic
  2706. p101.Name = "apart"
  2707. 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)
  2708. p101.CanCollide = false
  2709. p101.FormFactor = Enum.FormFactor.Custom
  2710. p101.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  2711. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2712. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2714. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. b94 = Instance.new("SpecialMesh", p101)
  2718. b94.MeshType = Enum.MeshType.Brick
  2719. b94.Name = "Mesh"
  2720. b94.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  2721. p102 = Instance.new("Part", m)
  2722. p102.BrickColor = BrickColor.new("Dark blue")
  2723. p102.Material = Enum.Material.SmoothPlastic
  2724. p102.Name = "apart"
  2725. 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)
  2726. p102.CanCollide = false
  2727. p102.FormFactor = Enum.FormFactor.Custom
  2728. p102.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  2729. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2730. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2733. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2734. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. b95 = Instance.new("SpecialMesh", p102)
  2736. b95.MeshType = Enum.MeshType.Brick
  2737. b95.Name = "Mesh"
  2738. b95.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2739. --[[p103 = Instance.new("Part", m)
  2740. p103.BrickColor = BrickColor.new("Dark blue")
  2741. p103.Name = "Right Leg"
  2742. p103.CFrame = CFrame.new(3.81999993, 154.276123, 40.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2743. p103.CanCollide = false
  2744. p103.FormFactor = Enum.FormFactor.Symmetric
  2745. p103.Size = Vector3.new(1, 2, 1)
  2746. p103.BottomSurface = Enum.SurfaceType.Smooth
  2747. p103.TopSurface = Enum.SurfaceType.Smooth--]]
  2748. p103 = RightLeg
  2749. p104 = Instance.new("Part", m)
  2750. p104.BrickColor = BrickColor.new("Dark blue")
  2751. p104.Material = Enum.Material.SmoothPlastic
  2752. p104.Name = "apart"
  2753. p104.CFrame = CFrame.new(3.82272005, 154.35257, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2754. p104.CanCollide = false
  2755. p104.FormFactor = Enum.FormFactor.Custom
  2756. p104.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2757. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2758. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2763. p105 = Instance.new("Part", m)
  2764. p105.BrickColor = BrickColor.new("Dark blue")
  2765. p105.Material = Enum.Material.SmoothPlastic
  2766. p105.Name = "apart"
  2767. p105.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2768. p105.CanCollide = false
  2769. p105.FormFactor = Enum.FormFactor.Custom
  2770. p105.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2771. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2772. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2773. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2774. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2775. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2776. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. b96 = Instance.new("SpecialMesh", p105)
  2778. b96.MeshType = Enum.MeshType.Brick
  2779. b96.Name = "Mesh"
  2780. b96.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  2781. p106 = Instance.new("Part", m)
  2782. p106.BrickColor = BrickColor.new("Dark blue")
  2783. p106.Material = Enum.Material.SmoothPlastic
  2784. p106.Name = "apart"
  2785. p106.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2786. p106.CanCollide = false
  2787. p106.FormFactor = Enum.FormFactor.Custom
  2788. p106.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2789. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2790. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2791. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2792. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2793. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2794. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. b97 = Instance.new("SpecialMesh", p106)
  2796. b97.MeshType = Enum.MeshType.Brick
  2797. b97.Name = "Mesh"
  2798. b97.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2799. p107 = Instance.new("Part", m)
  2800. p107.BrickColor = BrickColor.new("Dark blue")
  2801. p107.Material = Enum.Material.SmoothPlastic
  2802. p107.Name = "apart"
  2803. 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)
  2804. p107.CanCollide = false
  2805. p107.FormFactor = Enum.FormFactor.Custom
  2806. p107.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  2807. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2808. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2809. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2810. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2811. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2812. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2813. b98 = Instance.new("SpecialMesh", p107)
  2814. b98.MeshType = Enum.MeshType.Wedge
  2815. b98.Name = "Mesh"
  2816. b98.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2817. p108 = Instance.new("Part", m)
  2818. p108.BrickColor = BrickColor.new("Dark blue")
  2819. p108.Material = Enum.Material.SmoothPlastic
  2820. p108.Name = "apart"
  2821. 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)
  2822. p108.CanCollide = false
  2823. p108.FormFactor = Enum.FormFactor.Custom
  2824. p108.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  2825. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2826. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2827. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2828. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2829. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2830. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2831. b99 = Instance.new("SpecialMesh", p108)
  2832. b99.MeshType = Enum.MeshType.Torso
  2833. b99.Name = "Mesh"
  2834. b99.Scale = Vector3.new(1, 1, 1.01999998)
  2835. p109 = Instance.new("Part", m)
  2836. p109.BrickColor = BrickColor.new("Dark blue")
  2837. p109.Material = Enum.Material.SmoothPlastic
  2838. p109.Name = "apart"
  2839. 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)
  2840. p109.CanCollide = false
  2841. p109.FormFactor = Enum.FormFactor.Custom
  2842. p109.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  2843. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2844. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2845. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2846. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2847. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2848. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2849. b100 = Instance.new("SpecialMesh", p109)
  2850. b100.MeshType = Enum.MeshType.Brick
  2851. b100.Name = "Mesh"
  2852. b100.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2853. p110 = Instance.new("Part", m)
  2854. p110.BrickColor = BrickColor.new("Dark blue")
  2855. p110.Material = Enum.Material.SmoothPlastic
  2856. p110.Name = "apart"
  2857. 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)
  2858. p110.CanCollide = false
  2859. p110.FormFactor = Enum.FormFactor.Custom
  2860. p110.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  2861. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2862. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2863. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2864. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2865. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. b101 = Instance.new("SpecialMesh", p110)
  2868. b101.MeshType = Enum.MeshType.Brick
  2869. b101.Name = "Mesh"
  2870. b101.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  2871. p111 = Instance.new("Part", m)
  2872. p111.BrickColor = BrickColor.new("Dark blue")
  2873. p111.Material = Enum.Material.SmoothPlastic
  2874. p111.Name = "apart"
  2875. 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)
  2876. p111.CanCollide = false
  2877. p111.FormFactor = Enum.FormFactor.Custom
  2878. p111.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2879. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2880. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2881. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2882. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2883. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2884. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. b102 = Instance.new("SpecialMesh", p111)
  2886. b102.MeshType = Enum.MeshType.Brick
  2887. b102.Name = "Mesh"
  2888. b102.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  2889. p112 = Instance.new("Part", m)
  2890. p112.BrickColor = BrickColor.new("Dark blue")
  2891. p112.Material = Enum.Material.Neon
  2892. p112.Name = "apart"
  2893. 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)
  2894. p112.CanCollide = false
  2895. p112.FormFactor = Enum.FormFactor.Custom
  2896. p112.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2897. p112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2898. p112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2899. p112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2900. p112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2901. p112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2902. p112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2903. b103 = Instance.new("SpecialMesh", p112)
  2904. b103.MeshType = Enum.MeshType.Brick
  2905. b103.Name = "Mesh"
  2906. b103.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  2907. p113 = Instance.new("Part", m)
  2908. p113.BrickColor = BrickColor.new("Dark blue")
  2909. p113.Material = Enum.Material.Neon
  2910. p113.Name = "apart"
  2911. 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)
  2912. p113.CanCollide = false
  2913. p113.FormFactor = Enum.FormFactor.Custom
  2914. p113.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2915. p113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2916. p113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2917. p113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2918. p113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2919. p113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2920. p113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2921. b104 = Instance.new("SpecialMesh", p113)
  2922. b104.MeshType = Enum.MeshType.Brick
  2923. b104.Name = "Mesh"
  2924. b104.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  2925. p114 = Instance.new("Part", m)
  2926. p114.BrickColor = BrickColor.new("Dark blue")
  2927. p114.Material = Enum.Material.SmoothPlastic
  2928. p114.Name = "apart"
  2929. 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)
  2930. p114.CanCollide = false
  2931. p114.FormFactor = Enum.FormFactor.Custom
  2932. p114.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2933. p114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2934. p114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2935. p114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2936. p114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2937. p114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2938. p114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. b105 = Instance.new("SpecialMesh", p114)
  2940. b105.MeshType = Enum.MeshType.Cylinder
  2941. b105.Name = "Mesh"
  2942. b105.Scale = Vector3.new(1.01999998, 1, 1)
  2943. p115 = Instance.new("Part", m)
  2944. p115.BrickColor = BrickColor.new("Dark blue")
  2945. p115.Material = Enum.Material.SmoothPlastic
  2946. p115.Name = "apart"
  2947. 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)
  2948. p115.CanCollide = false
  2949. p115.FormFactor = Enum.FormFactor.Custom
  2950. p115.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2951. p115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2952. p115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2953. p115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2954. p115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2955. p115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2956. p115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2957. b106 = Instance.new("SpecialMesh", p115)
  2958. b106.MeshType = Enum.MeshType.Brick
  2959. b106.Name = "Mesh"
  2960. b106.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2961. --[[p116 = Instance.new("Part", m)
  2962. p116.BrickColor = BrickColor.new("Dark blue")
  2963. p116.Name = "Left Arm"
  2964. 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)
  2965. p116.CanCollide = false
  2966. p116.FormFactor = Enum.FormFactor.Symmetric
  2967. p116.Size = Vector3.new(1, 2, 1)
  2968. p116.BottomSurface = Enum.SurfaceType.Smooth
  2969. p116.TopSurface = Enum.SurfaceType.Smooth--]]
  2970. p116 = LeftArm
  2971. p117 = Instance.new("Part", m)
  2972. p117.BrickColor = BrickColor.new("Dark blue")
  2973. p117.Material = Enum.Material.SmoothPlastic
  2974. p117.Name = "apart"
  2975. 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)
  2976. p117.CanCollide = false
  2977. p117.FormFactor = Enum.FormFactor.Custom
  2978. p117.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2979. p117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2980. p117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2981. p117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2982. p117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2983. p117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2984. p117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2985. b107 = Instance.new("SpecialMesh", p117)
  2986. b107.MeshType = Enum.MeshType.Wedge
  2987. b107.Name = "Mesh"
  2988. b107.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2989. p118 = Instance.new("Part", m)
  2990. p118.BrickColor = BrickColor.new("Dark blue")
  2991. p118.Material = Enum.Material.SmoothPlastic
  2992. p118.Name = "apart"
  2993. 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)
  2994. p118.CanCollide = false
  2995. p118.FormFactor = Enum.FormFactor.Custom
  2996. p118.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2997. p118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. p118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. p118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. p118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3001. p118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3002. p118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3003. b108 = Instance.new("SpecialMesh", p118)
  3004. b108.MeshType = Enum.MeshType.Brick
  3005. b108.Name = "Mesh"
  3006. b108.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3007. p119 = Instance.new("Part", m)
  3008. p119.BrickColor = BrickColor.new("Dark blue")
  3009. p119.Material = Enum.Material.SmoothPlastic
  3010. p119.Name = "apart"
  3011. 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)
  3012. p119.CanCollide = false
  3013. p119.FormFactor = Enum.FormFactor.Custom
  3014. p119.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  3015. p119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3016. p119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. p119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. p119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3019. p119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3020. p119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3021. b109 = Instance.new("SpecialMesh", p119)
  3022. b109.MeshType = Enum.MeshType.Wedge
  3023. b109.Name = "Mesh"
  3024. b109.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3025. p120 = Instance.new("Part", m)
  3026. p120.BrickColor = BrickColor.new("Dark blue")
  3027. p120.Material = Enum.Material.SmoothPlastic
  3028. p120.Name = "apart"
  3029. 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)
  3030. p120.CanCollide = false
  3031. p120.FormFactor = Enum.FormFactor.Custom
  3032. p120.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  3033. p120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3034. p120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. p120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. p120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3037. p120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3038. p120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3039. b110 = Instance.new("SpecialMesh", p120)
  3040. b110.MeshType = Enum.MeshType.Cylinder
  3041. b110.Name = "Mesh"
  3042. b110.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  3043. p121 = Instance.new("Part", m)
  3044. p121.BrickColor = BrickColor.new("Dark blue")
  3045. p121.Material = Enum.Material.SmoothPlastic
  3046. p121.Name = "apart"
  3047. 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)
  3048. p121.CanCollide = false
  3049. p121.FormFactor = Enum.FormFactor.Custom
  3050. p121.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  3051. p121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3052. p121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. p121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. p121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3055. p121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3056. p121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3057. b111 = Instance.new("SpecialMesh", p121)
  3058. b111.MeshType = Enum.MeshType.Wedge
  3059. b111.Name = "Mesh"
  3060. b111.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  3061. p122 = Instance.new("Part", m)
  3062. p122.BrickColor = BrickColor.new("Dark blue")
  3063. p122.Material = Enum.Material.SmoothPlastic
  3064. p122.Name = "apart"
  3065. 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)
  3066. p122.CanCollide = false
  3067. p122.FormFactor = Enum.FormFactor.Custom
  3068. p122.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  3069. p122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3070. p122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3071. p122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3072. p122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3073. p122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3074. p122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3075. b112 = Instance.new("SpecialMesh", p122)
  3076. b112.MeshType = Enum.MeshType.Wedge
  3077. b112.Name = "Mesh"
  3078. b112.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3079. p123 = Instance.new("Part", m)
  3080. p123.BrickColor = BrickColor.new("Dark blue")
  3081. p123.Material = Enum.Material.SmoothPlastic
  3082. p123.Name = "apart"
  3083. p123.CFrame = CFrame.new(3.82272005, 155.633713, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3084. p123.CanCollide = false
  3085. p123.FormFactor = Enum.FormFactor.Custom
  3086. p123.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  3087. p123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3088. p123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3089. p123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3090. p123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3091. p123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3092. p123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3093. b113 = Instance.new("SpecialMesh", p123)
  3094. b113.MeshType = Enum.MeshType.Brick
  3095. b113.Name = "Mesh"
  3096. b113.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3097. p124 = Instance.new("Part", m)
  3098. p124.BrickColor = BrickColor.new("Dark blue")
  3099. p124.Material = Enum.Material.Neon
  3100. p124.Name = "apart"
  3101. p124.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3102. p124.CanCollide = false
  3103. p124.FormFactor = Enum.FormFactor.Custom
  3104. p124.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  3105. p124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3106. p124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. p124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. p124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. p124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3110. p124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. b114 = Instance.new("SpecialMesh", p124)
  3112. b114.MeshType = Enum.MeshType.Brick
  3113. b114.Name = "Mesh"
  3114. b114.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  3115. p125 = Instance.new("Part", m)
  3116. p125.BrickColor = BrickColor.new("Dark blue")
  3117. p125.Material = Enum.Material.SmoothPlastic
  3118. p125.Name = "apart"
  3119. p125.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3120. p125.CanCollide = false
  3121. p125.FormFactor = Enum.FormFactor.Custom
  3122. p125.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  3123. p125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3124. p125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3125. p125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3126. p125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3127. p125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3128. p125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. b115 = Instance.new("SpecialMesh", p125)
  3130. b115.MeshType = Enum.MeshType.Brick
  3131. b115.Name = "Mesh"
  3132. b115.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  3133. p126 = Instance.new("Part", m)
  3134. p126.BrickColor = BrickColor.new("Dark blue")
  3135. p126.Material = Enum.Material.SmoothPlastic
  3136. p126.Name = "apart"
  3137. p126.CFrame = CFrame.new(3.82272005, 156.40239, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3138. p126.CanCollide = false
  3139. p126.FormFactor = Enum.FormFactor.Custom
  3140. p126.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  3141. p126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3142. p126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3143. p126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3144. p126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3145. p126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. p126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. w1 = Instance.new("Weld", p1)
  3148. w1.Name = "Torso_Weld"
  3149. w1.Part0 = p1
  3150. 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)
  3151. w1.Part1 = p2
  3152. w1.C1 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3153. w2 = Instance.new("Weld", p2)
  3154. w2.Name = "apart_Weld"
  3155. w2.Part0 = p2
  3156. w2.C0 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3157. w2.Part1 = p3
  3158. 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)
  3159. w3 = Instance.new("Weld", p3)
  3160. w3.Name = "apart_Weld"
  3161. w3.Part0 = p3
  3162. 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)
  3163. w3.Part1 = p4
  3164. 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)
  3165. w4 = Instance.new("Weld", p4)
  3166. w4.Name = "apart_Weld"
  3167. w4.Part0 = p4
  3168. 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)
  3169. w4.Part1 = p5
  3170. 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)
  3171. w5 = Instance.new("Weld", p5)
  3172. w5.Name = "apart_Weld"
  3173. w5.Part0 = p5
  3174. 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)
  3175. w5.Part1 = p6
  3176. 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)
  3177. w6 = Instance.new("Weld", p6)
  3178. w6.Name = "apart_Weld"
  3179. w6.Part0 = p6
  3180. 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)
  3181. w6.Part1 = p7
  3182. w6.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3183. w7 = Instance.new("Weld", p7)
  3184. w7.Name = "apart_Weld"
  3185. w7.Part0 = p7
  3186. w7.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3187. w7.Part1 = p8
  3188. w7.C1 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3189. w8 = Instance.new("Weld", p8)
  3190. w8.Name = "apart_Weld"
  3191. w8.Part0 = p8
  3192. w8.C0 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3193. w8.Part1 = p9
  3194. 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)
  3195. w9 = Instance.new("Weld", p9)
  3196. w9.Name = "apart_Weld"
  3197. w9.Part0 = p9
  3198. 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)
  3199. w9.Part1 = p10
  3200. 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)
  3201. w10 = Instance.new("Weld", p10)
  3202. w10.Name = "apart_Weld"
  3203. w10.Part0 = p10
  3204. 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)
  3205. w10.Part1 = p11
  3206. 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)
  3207. w11 = Instance.new("Weld", p11)
  3208. w11.Name = "apart_Weld"
  3209. w11.Part0 = p11
  3210. 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)
  3211. w11.Part1 = p12
  3212. 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)
  3213. w12 = Instance.new("Weld", p12)
  3214. w12.Name = "apart_Weld"
  3215. w12.Part0 = p12
  3216. 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)
  3217. w12.Part1 = p13
  3218. 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)
  3219. w13 = Instance.new("Weld", p13)
  3220. w13.Name = "apart_Weld"
  3221. w13.Part0 = p13
  3222. 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)
  3223. w13.Part1 = p14
  3224. w13.C1 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3225. w14 = Instance.new("Weld", p14)
  3226. w14.Name = "apart_Weld"
  3227. w14.Part0 = p14
  3228. w14.C0 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3229. w14.Part1 = p15
  3230. 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)
  3231. w15 = Instance.new("Weld", p15)
  3232. w15.Name = "apart_Weld"
  3233. w15.Part0 = p15
  3234. 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)
  3235. w15.Part1 = p16
  3236. 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)
  3237. w16 = Instance.new("Weld", p16)
  3238. w16.Name = "apart_Weld"
  3239. w16.Part0 = p16
  3240. 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)
  3241. w16.Part1 = p17
  3242. 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)
  3243. w17 = Instance.new("Weld", p17)
  3244. w17.Name = "apart_Weld"
  3245. w17.Part0 = p17
  3246. 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)
  3247. w17.Part1 = p18
  3248. 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)
  3249. w18 = Instance.new("Weld", p18)
  3250. w18.Name = "apart_Weld"
  3251. w18.Part0 = p18
  3252. 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)
  3253. w18.Part1 = p19
  3254. 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)
  3255. w19 = Instance.new("Weld", p19)
  3256. w19.Name = "apart_Weld"
  3257. w19.Part0 = p19
  3258. 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)
  3259. w19.Part1 = p20
  3260. 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)
  3261. w20 = Instance.new("Weld", p20)
  3262. w20.Name = "apart_Weld"
  3263. w20.Part0 = p20
  3264. 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)
  3265. w20.Part1 = p21
  3266. w20.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3267. w21 = Instance.new("Weld", p21)
  3268. w21.Name = "apart_Weld"
  3269. w21.Part0 = p21
  3270. w21.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3271. w21.Part1 = p22
  3272. 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)
  3273. w22 = Instance.new("Weld", p22)
  3274. w22.Name = "apart_Weld"
  3275. w22.Part0 = p22
  3276. 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)
  3277. w22.Part1 = p23
  3278. w22.C1 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3279. w23 = Instance.new("Weld", p23)
  3280. w23.Name = "apart_Weld"
  3281. w23.Part0 = p23
  3282. w23.C0 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3283. w23.Part1 = p24
  3284. w23.C1 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3285. w24 = Instance.new("Weld", p24)
  3286. w24.Name = "apart_Weld"
  3287. w24.Part0 = p24
  3288. w24.C0 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3289. w24.Part1 = p25
  3290. w24.C1 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3291. w25 = Instance.new("Weld", p25)
  3292. w25.Name = "apart_Weld"
  3293. w25.Part0 = p25
  3294. w25.C0 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3295. w25.Part1 = p26
  3296. 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)
  3297. w26 = Instance.new("Weld", p26)
  3298. w26.Name = "apart_Weld"
  3299. w26.Part0 = p26
  3300. 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)
  3301. w26.Part1 = p27
  3302. 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)
  3303. w27 = Instance.new("Weld", p27)
  3304. w27.Name = "apart_Weld"
  3305. w27.Part0 = p27
  3306. 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)
  3307. w27.Part1 = p28
  3308. 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)
  3309. w28 = Instance.new("Weld", p28)
  3310. w28.Name = "apart_Weld"
  3311. w28.Part0 = p28
  3312. 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)
  3313. w28.Part1 = p29
  3314. w28.C1 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3315. w29 = Instance.new("Weld", p29)
  3316. w29.Name = "apart_Weld"
  3317. w29.Part0 = p29
  3318. w29.C0 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3319. w29.Part1 = p30
  3320. 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)
  3321. w30 = Instance.new("Weld", p30)
  3322. w30.Name = "apart_Weld"
  3323. w30.Part0 = p30
  3324. 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)
  3325. w30.Part1 = p31
  3326. 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)
  3327. w31 = Instance.new("Weld", p31)
  3328. w31.Name = "apart_Weld"
  3329. w31.Part0 = p31
  3330. 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)
  3331. w31.Part1 = p32
  3332. 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)
  3333. w32 = Instance.new("Weld", p32)
  3334. w32.Name = "apart_Weld"
  3335. w32.Part0 = p32
  3336. 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)
  3337. w32.Part1 = p33
  3338. 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)
  3339. w33 = Instance.new("Weld", p33)
  3340. w33.Name = "apart_Weld"
  3341. w33.Part0 = p33
  3342. 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)
  3343. w33.Part1 = p34
  3344. 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)
  3345. w34 = Instance.new("Weld", p34)
  3346. w34.Name = "apart_Weld"
  3347. w34.Part0 = p34
  3348. 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)
  3349. w34.Part1 = p35
  3350. 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)
  3351. w35 = Instance.new("Weld", p35)
  3352. w35.Name = "apart_Weld"
  3353. w35.Part0 = p35
  3354. 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)
  3355. w35.Part1 = p36
  3356. 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)
  3357. w36 = Instance.new("Weld", p36)
  3358. w36.Name = "apart_Weld"
  3359. w36.Part0 = p36
  3360. 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)
  3361. w36.Part1 = p37
  3362. 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)
  3363. w37 = Instance.new("Weld", p37)
  3364. w37.Name = "apart_Weld"
  3365. w37.Part0 = p37
  3366. 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)
  3367. w37.Part1 = p38
  3368. 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)
  3369. w38 = Instance.new("Weld", p38)
  3370. w38.Name = "apart_Weld"
  3371. w38.Part0 = p38
  3372. 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)
  3373. w38.Part1 = p39
  3374. 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)
  3375. w39 = Instance.new("Weld", p39)
  3376. w39.Name = "apart_Weld"
  3377. w39.Part0 = p39
  3378. 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)
  3379. w39.Part1 = p40
  3380. 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)
  3381. w40 = Instance.new("Weld", p41)
  3382. w40.Name = "apart_Weld"
  3383. w40.Part0 = p41
  3384. 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)
  3385. w40.Part1 = p42
  3386. 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)
  3387. w41 = Instance.new("Weld", p42)
  3388. w41.Name = "apart_Weld"
  3389. w41.Part0 = p42
  3390. 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)
  3391. w41.Part1 = p43
  3392. 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)
  3393. w42 = Instance.new("Weld", p43)
  3394. w42.Name = "apart_Weld"
  3395. w42.Part0 = p43
  3396. 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)
  3397. w42.Part1 = p44
  3398. 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)
  3399. w43 = Instance.new("Weld", p44)
  3400. w43.Name = "apart_Weld"
  3401. w43.Part0 = p44
  3402. 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)
  3403. w43.Part1 = p45
  3404. 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)
  3405. w44 = Instance.new("Weld", p45)
  3406. w44.Name = "apart_Weld"
  3407. w44.Part0 = p45
  3408. 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)
  3409. w44.Part1 = p46
  3410. 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)
  3411. w45 = Instance.new("Weld", p46)
  3412. w45.Name = "Head_Weld"
  3413. w45.Part0 = p46
  3414. 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)
  3415. w45.Part1 = p47
  3416. w45.C1 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3417. w46 = Instance.new("Weld", p47)
  3418. w46.Name = "apart_Weld"
  3419. w46.Part0 = p47
  3420. w46.C0 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3421. w46.Part1 = p48
  3422. 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)
  3423. w47 = Instance.new("Weld", p48)
  3424. w47.Name = "apart_Weld"
  3425. w47.Part0 = p48
  3426. 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)
  3427. w47.Part1 = p49
  3428. 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)
  3429. w48 = Instance.new("Weld", p49)
  3430. w48.Name = "apart_Weld"
  3431. w48.Part0 = p49
  3432. 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)
  3433. w48.Part1 = p50
  3434. 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)
  3435. w49 = Instance.new("Weld", p50)
  3436. w49.Name = "apart_Weld"
  3437. w49.Part0 = p50
  3438. 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)
  3439. w49.Part1 = p51
  3440. 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)
  3441. w50 = Instance.new("Weld", p51)
  3442. w50.Name = "apart_Weld"
  3443. w50.Part0 = p51
  3444. 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)
  3445. w50.Part1 = p52
  3446. 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)
  3447. w51 = Instance.new("Weld", p52)
  3448. w51.Name = "apart_Weld"
  3449. w51.Part0 = p52
  3450. 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)
  3451. w51.Part1 = p53
  3452. 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)
  3453. w52 = Instance.new("Weld", p53)
  3454. w52.Name = "apart_Weld"
  3455. w52.Part0 = p53
  3456. 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)
  3457. w52.Part1 = p54
  3458. 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)
  3459. w53 = Instance.new("Weld", p54)
  3460. w53.Name = "apart_Weld"
  3461. w53.Part0 = p54
  3462. 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)
  3463. w53.Part1 = p55
  3464. 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)
  3465. w54 = Instance.new("Weld", p55)
  3466. w54.Name = "apart_Weld"
  3467. w54.Part0 = p55
  3468. 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)
  3469. w54.Part1 = p56
  3470. 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)
  3471. w55 = Instance.new("Weld", p56)
  3472. w55.Name = "apart_Weld"
  3473. w55.Part0 = p56
  3474. 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)
  3475. w55.Part1 = p57
  3476. 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)
  3477. w56 = Instance.new("Weld", p57)
  3478. w56.Name = "apart_Weld"
  3479. w56.Part0 = p57
  3480. 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)
  3481. w56.Part1 = p58
  3482. 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)
  3483. w57 = Instance.new("Weld", p58)
  3484. w57.Name = "apart_Weld"
  3485. w57.Part0 = p58
  3486. 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)
  3487. w57.Part1 = p59
  3488. 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)
  3489. w58 = Instance.new("Weld", p59)
  3490. w58.Name = "apart_Weld"
  3491. w58.Part0 = p59
  3492. 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)
  3493. w58.Part1 = p60
  3494. 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)
  3495. w59 = Instance.new("Weld", p60)
  3496. w59.Name = "apart_Weld"
  3497. w59.Part0 = p60
  3498. 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)
  3499. w59.Part1 = p61
  3500. 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)
  3501. w60 = Instance.new("Weld", p61)
  3502. w60.Name = "apart_Weld"
  3503. w60.Part0 = p61
  3504. 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)
  3505. w60.Part1 = p62
  3506. 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)
  3507. w61 = Instance.new("Weld", p62)
  3508. w61.Name = "apart_Weld"
  3509. w61.Part0 = p62
  3510. 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)
  3511. w61.Part1 = p63
  3512. 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)
  3513. w62 = Instance.new("Weld", p63)
  3514. w62.Name = "apart_Weld"
  3515. w62.Part0 = p63
  3516. 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)
  3517. w62.Part1 = p64
  3518. 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)
  3519. w63 = Instance.new("Weld", p64)
  3520. w63.Name = "apart_Weld"
  3521. w63.Part0 = p64
  3522. 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)
  3523. w63.Part1 = p65
  3524. 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)
  3525. w64 = Instance.new("Weld", p65)
  3526. w64.Name = "apart_Weld"
  3527. w64.Part0 = p65
  3528. 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)
  3529. w64.Part1 = p66
  3530. 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)
  3531. w65 = Instance.new("Weld", p66)
  3532. w65.Name = "apart_Weld"
  3533. w65.Part0 = p66
  3534. 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)
  3535. w65.Part1 = p67
  3536. 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)
  3537. w66 = Instance.new("Weld", p67)
  3538. w66.Name = "apart_Weld"
  3539. w66.Part0 = p67
  3540. 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)
  3541. w66.Part1 = p68
  3542. 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)
  3543. w67 = Instance.new("Weld", p68)
  3544. w67.Name = "apart_Weld"
  3545. w67.Part0 = p68
  3546. 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)
  3547. w67.Part1 = p69
  3548. 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)
  3549. w68 = Instance.new("Weld", p69)
  3550. w68.Name = "apart_Weld"
  3551. w68.Part0 = p69
  3552. 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)
  3553. w68.Part1 = p70
  3554. 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)
  3555. w69 = Instance.new("Weld", p70)
  3556. w69.Name = "apart_Weld"
  3557. w69.Part0 = p70
  3558. 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)
  3559. w69.Part1 = p71
  3560. 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)
  3561. w70 = Instance.new("Weld", p71)
  3562. w70.Name = "apart_Weld"
  3563. w70.Part0 = p71
  3564. 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)
  3565. w70.Part1 = p72
  3566. 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)
  3567. w71 = Instance.new("Weld", p72)
  3568. w71.Name = "apart_Weld"
  3569. w71.Part0 = p72
  3570. 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)
  3571. w71.Part1 = p73
  3572. 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)
  3573. w72 = Instance.new("Weld", p73)
  3574. w72.Name = "apart_Weld"
  3575. w72.Part0 = p73
  3576. 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)
  3577. w72.Part1 = p74
  3578. 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)
  3579. w73 = Instance.new("Weld", p74)
  3580. w73.Name = "apart_Weld"
  3581. w73.Part0 = p74
  3582. 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)
  3583. w73.Part1 = p75
  3584. 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)
  3585. w74 = Instance.new("Weld", p75)
  3586. w74.Name = "apart_Weld"
  3587. w74.Part0 = p75
  3588. 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)
  3589. w74.Part1 = p76
  3590. 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)
  3591. w75 = Instance.new("Weld", p76)
  3592. w75.Name = "apart_Weld"
  3593. w75.Part0 = p76
  3594. 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)
  3595. w75.Part1 = p77
  3596. 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)
  3597. w76 = Instance.new("Weld", p77)
  3598. w76.Name = "apart_Weld"
  3599. w76.Part0 = p77
  3600. 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)
  3601. w76.Part1 = p78
  3602. 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)
  3603. w77 = Instance.new("Weld", p79)
  3604. w77.Name = "apart_Weld"
  3605. w77.Part0 = p79
  3606. w77.C0 = CFrame.new(-3.82272005, -175.414932, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3607. w77.Part1 = p80
  3608. w77.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3609. w78 = Instance.new("Weld", p80)
  3610. w78.Name = "apart_Weld"
  3611. w78.Part0 = p80
  3612. w78.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3613. w78.Part1 = p81
  3614. 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)
  3615. w79 = Instance.new("Weld", p81)
  3616. w79.Name = "apart_Weld"
  3617. w79.Part0 = p81
  3618. 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)
  3619. w79.Part1 = p82
  3620. 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)
  3621. w80 = Instance.new("Weld", p82)
  3622. w80.Name = "apart_Weld"
  3623. w80.Part0 = p82
  3624. 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)
  3625. w80.Part1 = p83
  3626. w80.C1 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3627. w81 = Instance.new("Weld", p83)
  3628. w81.Name = "apart_Weld"
  3629. w81.Part0 = p83
  3630. w81.C0 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3631. w81.Part1 = p84
  3632. w81.C1 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3633. w82 = Instance.new("Weld", p84)
  3634. w82.Name = "apart_Weld"
  3635. w82.Part0 = p84
  3636. w82.C0 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3637. w82.Part1 = p85
  3638. 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)
  3639. w83 = Instance.new("Weld", p85)
  3640. w83.Name = "apart_Weld"
  3641. w83.Part0 = p85
  3642. 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)
  3643. w83.Part1 = p86
  3644. w83.C1 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3645. w84 = Instance.new("Weld", p86)
  3646. w84.Name = "apart_Weld"
  3647. w84.Part0 = p86
  3648. w84.C0 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3649. w84.Part1 = p87
  3650. w84.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3651. w85 = Instance.new("Weld", p87)
  3652. w85.Name = "apart_Weld"
  3653. w85.Part0 = p87
  3654. w85.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3655. w85.Part1 = p88
  3656. w85.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3657. w86 = Instance.new("Weld", p88)
  3658. w86.Name = "apart_Weld"
  3659. w86.Part0 = p88
  3660. w86.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3661. w86.Part1 = p89
  3662. w86.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3663. w87 = Instance.new("Weld", p89)
  3664. w87.Name = "apart_Weld"
  3665. w87.Part0 = p89
  3666. w87.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3667. w87.Part1 = p90
  3668. w87.C1 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3669. w88 = Instance.new("Weld", p90)
  3670. w88.Name = "Right Arm_Weld"
  3671. w88.Part0 = p90
  3672. w88.C0 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3673. w88.Part1 = p91
  3674. w88.C1 = CFrame.new(-41.5, -174.519974, 3.82000184, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3675. w89 = Instance.new("Weld", p92)
  3676. w89.Name = "Left Leg_Weld"
  3677. w89.Part0 = p92
  3678. w89.C0 = CFrame.new(-3.82272005, -172.59642, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3679. w89.Part1 = p93
  3680. w89.C1 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3681. w90 = Instance.new("Weld", p93)
  3682. w90.Name = "apart_Weld"
  3683. w90.Part0 = p93
  3684. w90.C0 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3685. w90.Part1 = p94
  3686. w90.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3687. w91 = Instance.new("Weld", p94)
  3688. w91.Name = "apart_Weld"
  3689. w91.Part0 = p94
  3690. w91.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3691. w91.Part1 = p95
  3692. w91.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3693. w92 = Instance.new("Weld", p95)
  3694. w92.Name = "apart_Weld"
  3695. w92.Part0 = p95
  3696. w92.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3697. w92.Part1 = p96
  3698. w92.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3699. w93 = Instance.new("Weld", p96)
  3700. w93.Name = "apart_Weld"
  3701. w93.Part0 = p96
  3702. w93.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3703. w93.Part1 = p97
  3704. w93.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3705. w94 = Instance.new("Weld", p97)
  3706. w94.Name = "apart_Weld"
  3707. w94.Part0 = p97
  3708. w94.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3709. w94.Part1 = p98
  3710. 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)
  3711. w95 = Instance.new("Weld", p98)
  3712. w95.Name = "apart_Weld"
  3713. w95.Part0 = p98
  3714. 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)
  3715. w95.Part1 = p99
  3716. 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)
  3717. w96 = Instance.new("Weld", p99)
  3718. w96.Name = "apart_Weld"
  3719. w96.Part0 = p99
  3720. 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)
  3721. w96.Part1 = p100
  3722. w96.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3723. w97 = Instance.new("Weld", p100)
  3724. w97.Name = "apart_Weld"
  3725. w97.Part0 = p100
  3726. w97.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3727. w97.Part1 = p101
  3728. w97.C1 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3729. w98 = Instance.new("Weld", p101)
  3730. w98.Name = "apart_Weld"
  3731. w98.Part0 = p101
  3732. w98.C0 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3733. w98.Part1 = p102
  3734. w98.C1 = CFrame.new(-3.82272005, -171.878983, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3735. w99 = Instance.new("Weld", p103)
  3736. w99.Name = "apart_Weld"
  3737. w99.Part0 = p103
  3738. w99.C0 = CFrame.new(-40.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3739. w99.Part1 = p104
  3740. w99.C1 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3741. w100 = Instance.new("Weld", p104)
  3742. w100.Name = "apart_Weld"
  3743. w100.Part0 = p104
  3744. w100.C0 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3745. w100.Part1 = p105
  3746. w100.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3747. w101 = Instance.new("Weld", p105)
  3748. w101.Name = "apart_Weld"
  3749. w101.Part0 = p105
  3750. w101.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3751. w101.Part1 = p106
  3752. w101.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3753. w102 = Instance.new("Weld", p106)
  3754. w102.Name = "apart_Weld"
  3755. w102.Part0 = p106
  3756. w102.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3757. w102.Part1 = p107
  3758. 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)
  3759. w103 = Instance.new("Weld", p107)
  3760. w103.Name = "apart_Weld"
  3761. w103.Part0 = p107
  3762. 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)
  3763. w103.Part1 = p108
  3764. 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)
  3765. w104 = Instance.new("Weld", p108)
  3766. w104.Name = "apart_Weld"
  3767. w104.Part0 = p108
  3768. 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)
  3769. w104.Part1 = p109
  3770. w104.C1 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3771. w105 = Instance.new("Weld", p109)
  3772. w105.Name = "apart_Weld"
  3773. w105.Part0 = p109
  3774. w105.C0 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3775. w105.Part1 = p110
  3776. w105.C1 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3777. w106 = Instance.new("Weld", p110)
  3778. w106.Name = "apart_Weld"
  3779. w106.Part0 = p110
  3780. w106.C0 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3781. w106.Part1 = p111
  3782. w106.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3783. w107 = Instance.new("Weld", p111)
  3784. w107.Name = "apart_Weld"
  3785. w107.Part0 = p111
  3786. w107.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3787. w107.Part1 = p112
  3788. w107.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3789. w108 = Instance.new("Weld", p112)
  3790. w108.Name = "apart_Weld"
  3791. w108.Part0 = p112
  3792. w108.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3793. w108.Part1 = p113
  3794. w108.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3795. w109 = Instance.new("Weld", p114)
  3796. w109.Name = "apart_Weld"
  3797. w109.Part0 = p114
  3798. w109.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3799. w109.Part1 = p115
  3800. w109.C1 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3801. w110 = Instance.new("Weld", p115)
  3802. w110.Name = "Left Arm_Weld"
  3803. w110.Part0 = p115
  3804. w110.C0 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3805. w110.Part1 = p116
  3806. w110.C1 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3807. w111 = Instance.new("Weld", p116)
  3808. w111.Name = "apart_Weld"
  3809. w111.Part0 = p116
  3810. w111.C0 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3811. w111.Part1 = p117
  3812. 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)
  3813. w112 = Instance.new("Weld", p117)
  3814. w112.Name = "apart_Weld"
  3815. w112.Part0 = p117
  3816. 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)
  3817. w112.Part1 = p118
  3818. w112.C1 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3819. w113 = Instance.new("Weld", p118)
  3820. w113.Name = "apart_Weld"
  3821. w113.Part0 = p118
  3822. w113.C0 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3823. w113.Part1 = p119
  3824. 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)
  3825. w114 = Instance.new("Weld", p119)
  3826. w114.Name = "apart_Weld"
  3827. w114.Part0 = p119
  3828. 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)
  3829. w114.Part1 = p120
  3830. w114.C1 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3831. w115 = Instance.new("Weld", p120)
  3832. w115.Name = "apart_Weld"
  3833. w115.Part0 = p120
  3834. w115.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3835. w115.Part1 = p121
  3836. 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)
  3837. w116 = Instance.new("Weld", p121)
  3838. w116.Name = "apart_Weld"
  3839. w116.Part0 = p121
  3840. 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)
  3841. w116.Part1 = p122
  3842. 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)
  3843. w117 = Instance.new("Weld", p122)
  3844. w117.Name = "apart_Weld"
  3845. w117.Part0 = p122
  3846. 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)
  3847. w117.Part1 = p123
  3848. w117.C1 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3849. w118 = Instance.new("Weld", p123)
  3850. w118.Name = "apart_Weld"
  3851. w118.Part0 = p123
  3852. w118.C0 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3853. w118.Part1 = p124
  3854. w118.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3855. w119 = Instance.new("Weld", p124)
  3856. w119.Name = "apart_Weld"
  3857. w119.Part0 = p124
  3858. w119.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3859. w119.Part1 = p125
  3860. w119.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3861. w120 = Instance.new("Weld", p125)
  3862. w120.Name = "apart_Weld"
  3863. w120.Part0 = p125
  3864. w120.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3865. w120.Part1 = p126
  3866. w120.C1 = CFrame.new(-3.82272005, -174.64624, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3867. m.Parent = game:service("Workspace")
  3868. m:MakeJoints()
  3869.  
  3870. RightArm.Transparency=1
  3871. LeftArm.Transparency=1
  3872. LeftLeg.Transparency=1
  3873. RightLeg.Transparency=1
  3874. ------
  3875. --//====================================================\\--
  3876. --|| CREATED BY SHACKLUSTER
  3877. --\\====================================================//--
  3878.  
  3879. wait(0.2)
  3880.  
  3881. Player = game:GetService("Players").LocalPlayer
  3882. PlayerGui = Player.PlayerGui
  3883. Cam = workspace.CurrentCamera
  3884. Backpack = Player.Backpack
  3885. Character = Player.Character
  3886. Humanoid = Character.Humanoid
  3887. Mouse = Player:GetMouse()
  3888. RootPart = Character["HumanoidRootPart"]
  3889. Torso = Character["Torso"]
  3890. Head = Character["Head"]
  3891. RightArm = Character["Right Arm"]
  3892. LeftArm = Character["Left Arm"]
  3893. RightLeg = Character["Right Leg"]
  3894. LeftLeg = Character["Left Leg"]
  3895. RootJoint = RootPart["RootJoint"]
  3896. Neck = Torso["Neck"]
  3897. RightShoulder = Torso["Right Shoulder"]
  3898. LeftShoulder = Torso["Left Shoulder"]
  3899. RightHip = Torso["Right Hip"]
  3900. LeftHip = Torso["Left Hip"]
  3901. local sick = Instance.new("Sound",Torso)
  3902. sick.SoundId = "rbxassetid://342929664"
  3903. sick.Looped = true
  3904. sick.Pitch = 1
  3905. sick.Volume = 3
  3906. sick:Play()
  3907.  
  3908. IT = Instance.new
  3909. CF = CFrame.new
  3910. VT = Vector3.new
  3911. RAD = math.rad
  3912. C3 = Color3.new
  3913. UD2 = UDim2.new
  3914. BRICKC = BrickColor.new
  3915. ANGLES = CFrame.Angles
  3916. EULER = CFrame.fromEulerAnglesXYZ
  3917. COS = math.cos
  3918. ACOS = math.acos
  3919. SIN = math.sin
  3920. ASIN = math.asin
  3921. ABS = math.abs
  3922. MRANDOM = math.random
  3923. FLOOR = math.floor
  3924.  
  3925. --//=================================\\
  3926. --|| USEFUL VALUES
  3927. --\\=================================//
  3928.  
  3929. Animation_Speed = 3
  3930. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  3931. local Speed = 35
  3932. local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  3933. local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  3934. local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
  3935. local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
  3936. local DAMAGEMULTIPLIER = 1
  3937. local ANIM = "Idle"
  3938. local ATTACK = false
  3939. local EQUIPPED = false
  3940. local HOLD = false
  3941. local COMBO = 1
  3942. local Rooted = false
  3943. local SINE = 0
  3944. local KEYHOLD = false
  3945. local CHANGE = 2 / Animation_Speed
  3946. local WALKINGANIM = false
  3947. local VALUE1 = false
  3948. local VALUE2 = false
  3949. local ROBLOXIDLEANIMATION = IT("Animation")
  3950. ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
  3951. ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
  3952. --ROBLOXIDLEANIMATION.Parent = Humanoid
  3953. local WEAPONGUI = IT("ScreenGui", PlayerGui)
  3954. WEAPONGUI.Name = "Weapon GUI"
  3955. local Effects = IT("Folder", Character)
  3956. Effects.Name = "Effects"
  3957. local ANIMATOR = Humanoid.Animator
  3958. local ANIMATE = Character.Animate
  3959. local UNANCHOR = true
  3960. local LAUGHS = {834001699,834001752,834001797,834001828}
  3961. local SONGS = {342929664,342929664,342929664,0}
  3962. local CHOICE = MRANDOM(1,4)
  3963.  
  3964. --//=================================\\
  3965. --\\=================================//
  3966.  
  3967.  
  3968. --//=================================\\
  3969. --|| SAZERENOS' ARTIFICIAL HEARTBEAT
  3970. --\\=================================//
  3971.  
  3972. ArtificialHB = Instance.new("BindableEvent", script)
  3973. ArtificialHB.Name = "ArtificialHB"
  3974.  
  3975. script:WaitForChild("ArtificialHB")
  3976.  
  3977. frame = Frame_Speed
  3978. tf = 0
  3979. allowframeloss = false
  3980. tossremainder = false
  3981. lastframe = tick()
  3982. script.ArtificialHB:Fire()
  3983.  
  3984. game:GetService("RunService").Heartbeat:connect(function(s, p)
  3985. tf = tf + s
  3986. if tf >= frame then
  3987. if allowframeloss then
  3988. script.ArtificialHB:Fire()
  3989. lastframe = tick()
  3990. else
  3991. for i = 1, math.floor(tf / frame) do
  3992. script.ArtificialHB:Fire()
  3993. end
  3994. lastframe = tick()
  3995. end
  3996. if tossremainder then
  3997. tf = 0
  3998. else
  3999. tf = tf - frame * math.floor(tf / frame)
  4000. end
  4001. end
  4002. end)
  4003.  
  4004. --//=================================\\
  4005. --\\=================================//
  4006.  
  4007. --//=================================\\
  4008. --|| SOME FUNCTIONS
  4009. --\\=================================//
  4010.  
  4011. function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  4012. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  4013. end
  4014.  
  4015. function PositiveAngle(NUMBER)
  4016. if NUMBER >= 0 then
  4017. NUMBER = 0
  4018. end
  4019. return NUMBER
  4020. end
  4021.  
  4022. function NegativeAngle(NUMBER)
  4023. if NUMBER <= 0 then
  4024. NUMBER = 0
  4025. end
  4026. return NUMBER
  4027. end
  4028.  
  4029. function Swait(NUMBER)
  4030. if NUMBER == 0 or NUMBER == nil then
  4031. ArtificialHB.Event:wait()
  4032. else
  4033. for i = 1, NUMBER do
  4034. ArtificialHB.Event:wait()
  4035. end
  4036. end
  4037. end
  4038.  
  4039. function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  4040. local NEWMESH = IT(MESH)
  4041. if MESH == "SpecialMesh" then
  4042. NEWMESH.MeshType = MESHTYPE
  4043. if MESHID ~= "nil" and MESHID ~= "" then
  4044. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  4045. end
  4046. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  4047. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  4048. end
  4049. end
  4050. NEWMESH.Offset = OFFSET or VT(0, 0, 0)
  4051. NEWMESH.Scale = SCALE
  4052. NEWMESH.Parent = PARENT
  4053. return NEWMESH
  4054. end
  4055.  
  4056. function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR)
  4057. local NEWPART = IT("Part")
  4058. NEWPART.formFactor = FORMFACTOR
  4059. NEWPART.Reflectance = REFLECTANCE
  4060. NEWPART.Transparency = TRANSPARENCY
  4061. NEWPART.CanCollide = false
  4062. NEWPART.Locked = true
  4063. NEWPART.Anchored = true
  4064. if ANCHOR == false then
  4065. NEWPART.Anchored = false
  4066. end
  4067. NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
  4068. NEWPART.Name = NAME
  4069. NEWPART.Size = SIZE
  4070. NEWPART.Position = Torso.Position
  4071. NEWPART.Material = MATERIAL
  4072. NEWPART:BreakJoints()
  4073. NEWPART.Parent = PARENT
  4074. return NEWPART
  4075. end
  4076.  
  4077. local function weldBetween(a, b)
  4078. local weldd = IT("Weld")
  4079. weldd.Part0 = a
  4080. weldd.Part1 = b
  4081. weldd.C0 = CF()
  4082. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4083. weldd.Parent = a
  4084. return weldd
  4085. end
  4086.  
  4087.  
  4088. function QuaternionFromCFrame(cf)
  4089. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  4090. local trace = m00 + m11 + m22
  4091. if trace > 0 then
  4092. local s = math.sqrt(1 + trace)
  4093. local recip = 0.5 / s
  4094. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  4095. else
  4096. local i = 0
  4097. if m11 > m00 then
  4098. i = 1
  4099. end
  4100. if m22 > (i == 0 and m00 or m11) then
  4101. i = 2
  4102. end
  4103. if i == 0 then
  4104. local s = math.sqrt(m00 - m11 - m22 + 1)
  4105. local recip = 0.5 / s
  4106. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  4107. elseif i == 1 then
  4108. local s = math.sqrt(m11 - m22 - m00 + 1)
  4109. local recip = 0.5 / s
  4110. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  4111. elseif i == 2 then
  4112. local s = math.sqrt(m22 - m00 - m11 + 1)
  4113. local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  4114. end
  4115. end
  4116. end
  4117.  
  4118. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  4119. local xs, ys, zs = x + x, y + y, z + z
  4120. local wx, wy, wz = w * xs, w * ys, w * zs
  4121. local xx = x * xs
  4122. local xy = x * ys
  4123. local xz = x * zs
  4124. local yy = y * ys
  4125. local yz = y * zs
  4126. local zz = z * zs
  4127. 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))
  4128. end
  4129.  
  4130. function QuaternionSlerp(a, b, t)
  4131. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  4132. local startInterp, finishInterp;
  4133. if cosTheta >= 0.0001 then
  4134. if (1 - cosTheta) > 0.0001 then
  4135. local theta = ACOS(cosTheta)
  4136. local invSinTheta = 1 / SIN(theta)
  4137. startInterp = SIN((1 - t) * theta) * invSinTheta
  4138. finishInterp = SIN(t * theta) * invSinTheta
  4139. else
  4140. startInterp = 1 - t
  4141. finishInterp = t
  4142. end
  4143. else
  4144. if (1 + cosTheta) > 0.0001 then
  4145. local theta = ACOS(-cosTheta)
  4146. local invSinTheta = 1 / SIN(theta)
  4147. startInterp = SIN((t - 1) * theta) * invSinTheta
  4148. finishInterp = SIN(t * theta) * invSinTheta
  4149. else
  4150. startInterp = t - 1
  4151. finishInterp = t
  4152. end
  4153. end
  4154. 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
  4155. end
  4156.  
  4157. function Clerp(a, b, t)
  4158. local qa = {QuaternionFromCFrame(a)}
  4159. local qb = {QuaternionFromCFrame(b)}
  4160. local ax, ay, az = a.x, a.y, a.z
  4161. local bx, by, bz = b.x, b.y, b.z
  4162. local _t = 1 - t
  4163. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  4164. end
  4165.  
  4166. function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME)
  4167. local frame = IT("Frame")
  4168. frame.BackgroundTransparency = TRANSPARENCY
  4169. frame.BorderSizePixel = BORDERSIZEPIXEL
  4170. frame.Position = POSITION
  4171. frame.Size = SIZE
  4172. frame.BackgroundColor3 = COLOR
  4173. frame.BorderColor3 = BORDERCOLOR
  4174. frame.Name = NAME
  4175. frame.Parent = PARENT
  4176. return frame
  4177. end
  4178.  
  4179. function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
  4180. local label = IT("TextLabel")
  4181. label.BackgroundTransparency = 1
  4182. label.Size = UD2(1, 0, 1, 0)
  4183. label.Position = UD2(0, 0, 0, 0)
  4184. label.TextColor3 = TEXTCOLOR
  4185. label.TextStrokeTransparency = STROKETRANSPARENCY
  4186. label.TextTransparency = TRANSPARENCY
  4187. label.FontSize = TEXTFONTSIZE
  4188. label.Font = TEXTFONT
  4189. label.BorderSizePixel = BORDERSIZEPIXEL
  4190. label.TextScaled = false
  4191. label.Text = TEXT
  4192. label.Name = NAME
  4193. label.Parent = PARENT
  4194. return label
  4195. end
  4196.  
  4197. function NoOutlines(PART)
  4198. PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
  4199. end
  4200.  
  4201. function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
  4202. local NEWWELD = IT(TYPE)
  4203. NEWWELD.Part0 = PART0
  4204. NEWWELD.Part1 = PART1
  4205. NEWWELD.C0 = C0
  4206. NEWWELD.C1 = C1
  4207. NEWWELD.Parent = PARENT
  4208. return NEWWELD
  4209. end
  4210.  
  4211. local S = IT("Sound")
  4212. function CreateSound(ID, PARENT, VOLUME, PITCH, DOESLOOP)
  4213. local NEWSOUND = nil
  4214. coroutine.resume(coroutine.create(function()
  4215. NEWSOUND = S:Clone()
  4216. NEWSOUND.Parent = PARENT
  4217. NEWSOUND.Volume = VOLUME
  4218. NEWSOUND.Pitch = PITCH
  4219. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  4220. NEWSOUND:play()
  4221. if DOESLOOP == true then
  4222. NEWSOUND.Looped = true
  4223. else
  4224. repeat wait(1) until NEWSOUND.Playing == false
  4225. NEWSOUND:remove()
  4226. end
  4227. end))
  4228. return NEWSOUND
  4229. end
  4230.  
  4231. function CFrameFromTopBack(at, top, back)
  4232. local right = top:Cross(back)
  4233. 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)
  4234. end
  4235.  
  4236. --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(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4237. function WACKYEFFECT(Table)
  4238. local TYPE = (Table.EffectType or "Sphere")
  4239. local SIZE = (Table.Size or VT(1,1,1))
  4240. local ENDSIZE = (Table.Size2 or VT(0,0,0))
  4241. local TRANSPARENCY = (Table.Transparency or 0)
  4242. local ENDTRANSPARENCY = (Table.Transparency2 or 1)
  4243. local CFRAME = (Table.CFrame or Torso.CFrame)
  4244. local MOVEDIRECTION = (Table.MoveToPos or nil)
  4245. local ROTATION1 = (Table.RotationX or 0)
  4246. local ROTATION2 = (Table.RotationY or 0)
  4247. local ROTATION3 = (Table.RotationZ or 0)
  4248. local MATERIAL = (Table.Material or "Neon")
  4249. local COLOR = (Table.Color or C3(0,0,255))
  4250. local TIME = (Table.Time or 45)
  4251. local SOUNDID = (Table.SoundID or nil)
  4252. local SOUNDPITCH = (Table.SoundPitch or nil)
  4253. local SOUNDVOLUME = (Table.SoundVolume or nil)
  4254. coroutine.resume(coroutine.create(function()
  4255. local PLAYSSOUND = false
  4256. local SOUND = nil
  4257. local EFFECT = CreatePart(3, Effects, MATERIAL, 0, TRANSPARENCY, BRICKC("Pearl"), "Effect", VT(1,1,1), true)
  4258. if SOUNDID ~= nil and SOUNDPITCH ~= nil and SOUNDVOLUME ~= nil then
  4259. PLAYSSOUND = true
  4260. SOUND = CreateSound(SOUNDID, EFFECT, SOUNDVOLUME, SOUNDPITCH, false)
  4261. end
  4262. EFFECT.Color = COLOR
  4263. local MSH = nil
  4264. if TYPE == "Sphere" then
  4265. MSH = CreateMesh("SpecialMesh", EFFECT, "Sphere", "", "", SIZE, VT(0,0,0))
  4266. elseif TYPE == "Block" then
  4267. MSH = IT("BlockMesh",EFFECT)
  4268. MSH.Scale = VT(SIZE.X,SIZE.X,SIZE.X)
  4269. elseif TYPE == "Wave" then
  4270. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "20329976", "", SIZE, VT(0,0,-SIZE.X/8))
  4271. elseif TYPE == "Ring" then
  4272. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "559831844", "", VT(SIZE.X,SIZE.X,0.1), VT(0,0,0))
  4273. elseif TYPE == "Slash" then
  4274. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662586858", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  4275. elseif TYPE == "Round Slash" then
  4276. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662585058", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  4277. elseif TYPE == "Swirl" then
  4278. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "1051557", "", SIZE, VT(0,0,0))
  4279. elseif TYPE == "Skull" then
  4280. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "4770583", "", SIZE, VT(0,0,0))
  4281. elseif TYPE == "Crystal" then
  4282. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "9756362", "", SIZE, VT(0,0,0))
  4283. end
  4284. if MSH ~= nil then
  4285. local MOVESPEED = nil
  4286. if MOVEDIRECTION ~= nil then
  4287. MOVESPEED = (CFRAME.p - MOVEDIRECTION).Magnitude/TIME
  4288. end
  4289. local GROWTH = SIZE - ENDSIZE
  4290. local TRANS = TRANSPARENCY - ENDTRANSPARENCY
  4291. if TYPE == "Block" then
  4292. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  4293. else
  4294. EFFECT.CFrame = CFRAME
  4295. end
  4296. for LOOP = 1, TIME+1 do
  4297. Swait()
  4298. MSH.Scale = MSH.Scale - GROWTH/TIME
  4299. if TYPE == "Wave" then
  4300. MSH.Offset = VT(0,0,-MSH.Scale.X/8)
  4301. end
  4302. EFFECT.Transparency = EFFECT.Transparency - TRANS/TIME
  4303. if TYPE == "Block" then
  4304. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  4305. else
  4306. EFFECT.CFrame = EFFECT.CFrame*ANGLES(RAD(ROTATION1),RAD(ROTATION2),RAD(ROTATION3))
  4307. end
  4308. if MOVEDIRECTION ~= nil then
  4309. local ORI = EFFECT.Orientation
  4310. EFFECT.CFrame = CF(EFFECT.Position,MOVEDIRECTION)*CF(0,0,-MOVESPEED)
  4311. EFFECT.Orientation = ORI
  4312. end
  4313. end
  4314. if PLAYSSOUND == false then
  4315. EFFECT:remove()
  4316. else
  4317. SOUND.Stopped:Connect(function()
  4318. EFFECT:remove()
  4319. end)
  4320. end
  4321. else
  4322. if PLAYSSOUND == false then
  4323. EFFECT:remove()
  4324. else
  4325. repeat Swait() until SOUND.Playing == false
  4326. EFFECT:remove()
  4327. end
  4328. end
  4329. end))
  4330. end
  4331.  
  4332. function MakeForm(PART,TYPE)
  4333. if TYPE == "Cyl" then
  4334. local MSH = IT("CylinderMesh",PART)
  4335. elseif TYPE == "Ball" then
  4336. local MSH = IT("SpecialMesh",PART)
  4337. MSH.MeshType = "Sphere"
  4338. elseif TYPE == "Wedge" then
  4339. local MSH = IT("SpecialMesh",PART)
  4340. MSH.MeshType = "Wedge"
  4341. end
  4342. end
  4343.  
  4344. Debris = game:GetService("Debris")
  4345.  
  4346. function CastProperRay(StartPos, EndPos, Distance, Ignore)
  4347. local DIRECTION = CF(StartPos,EndPos).lookVector
  4348. return Raycast(StartPos, DIRECTION, Distance, Ignore)
  4349. end
  4350.  
  4351. function turnto(position)
  4352. RootPart.CFrame=CFrame.new(RootPart.CFrame.p,VT(position.X,RootPart.Position.Y,position.Z)) * CFrame.new(0, 0, 0)
  4353. end
  4354.  
  4355. function SpawnTrail(FROM,TO,BIG)
  4356. local TRAIL = CreatePart(3, Effects, "Neon", 0, 0.5, "Dark blue", "Trail", VT(0,0,0))
  4357. MakeForm(TRAIL,"Cyl")
  4358. local DIST = (FROM - TO).Magnitude
  4359. if BIG == true then
  4360. TRAIL.Size = VT(0.5,DIST,0.5)
  4361. else
  4362. TRAIL.Size = VT(0.25,DIST,0.25)
  4363. end
  4364. TRAIL.CFrame = CF(FROM, TO) * CF(0, 0, -DIST/2) * ANGLES(RAD(90),RAD(0),RAD(0))
  4365. coroutine.resume(coroutine.create(function()
  4366. for i = 1, 5 do
  4367. Swait()
  4368. TRAIL.Transparency = TRAIL.Transparency + 0.1
  4369. end
  4370. TRAIL:remove()
  4371. end))
  4372. end
  4373.  
  4374. local asd = Instance.new("ParticleEmitter")
  4375. asd.Color = ColorSequence.new(Color3.new(170, 0, 0), Color3.new(170, 0, 0))
  4376. asd.LightEmission = .1
  4377. asd.Texture = "http://www.roblox.com/asset/?ID=291880914"
  4378. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.6),NumberSequenceKeypoint.new(1, 2)})
  4379. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  4380. asd.Transparency = bbb
  4381. asd.Size = aaa
  4382. asd.ZOffset = .9
  4383. asd.Acceleration = Vector3.new(0, -15, 0)
  4384. asd.LockedToPart = false
  4385. asd.EmissionDirection = "Back"
  4386. asd.Lifetime = NumberRange.new(1, 2)
  4387. asd.Rotation = NumberRange.new(-100, 100)
  4388. asd.RotSpeed = NumberRange.new(-100, 100)
  4389. asd.Speed = NumberRange.new(10)
  4390. asd.Enabled = false
  4391. asd.VelocitySpread = 999
  4392.  
  4393. function getbloody(victim,amount)
  4394. local PART = CreatePart(3, Effects, "Metal", 0, 1, "Mid gray", "Blood", victim.Size)
  4395. PART.CFrame = victim.CFrame
  4396. local HITPLAYERSOUNDS = {"356551938","264486467"}
  4397. Debris:AddItem(PART,5)
  4398. CreateSound(HITPLAYERSOUNDS[MRANDOM(1, #HITPLAYERSOUNDS)], PART, 1, (math.random(8,12)/10))
  4399. CreateSound(HITPLAYERSOUNDS[MRANDOM(1, #HITPLAYERSOUNDS)], PART, 1, (math.random(8,12)/10))
  4400. CreateSound(HITPLAYERSOUNDS[MRANDOM(1, #HITPLAYERSOUNDS)], PART, 1, (math.random(8,12)/10))
  4401. local prtcl = asd:Clone()
  4402. prtcl.Parent = PART
  4403. prtcl:Emit(amount*10)
  4404. end
  4405.  
  4406. local Particle = IT("ParticleEmitter",nil)
  4407. Particle.Enabled = false
  4408. Particle.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,1),NumberSequenceKeypoint.new(0.3,0.95),NumberSequenceKeypoint.new(1,1)})
  4409. Particle.LightEmission = 0.5
  4410. Particle.Rate = 150
  4411. Particle.ZOffset = 1
  4412. Particle.Rotation = NumberRange.new(-180, 180)
  4413. Particle.RotSpeed = NumberRange.new(-180, 180)
  4414. Particle.Texture = "http://www.roblox.com/asset/?id=304437537"
  4415. Particle.Color = ColorSequence.new(C3(0,0,255),C3(0,0,255))
  4416.  
  4417. --ParticleEmitter({Speed = 5, Drag = 0, Size1 = 1, Size2 = 5, Lifetime1 = 1, Lifetime2 = 1.5, Parent = Torso, Emit = 100, Offset = 360, Enabled = false})
  4418. function ParticleEmitter(Table)
  4419. local PRTCL = Particle:Clone()
  4420. local Speed = Table.Speed or 5
  4421. local Drag = Table.Drag or 0
  4422. local Size1 = Table.Size1 or 1
  4423. local Size2 = Table.Size2 or 5
  4424. local Lifetime1 = Table.Lifetime1 or 1
  4425. local Lifetime2 = Table.Lifetime2 or 1.5
  4426. local Parent = Table.Parent or Torso
  4427. local Emit = Table.Emit or 100
  4428. local Offset = Table.Offset or 360
  4429. local Acel = Table.Acel or VT(0,0,0)
  4430. local Enabled = Table.Enabled or false
  4431. PRTCL.Parent = Parent
  4432. PRTCL.Size = NumberSequence.new(Size1,Size2)
  4433. PRTCL.Lifetime = NumberRange.new(Lifetime1,Lifetime2)
  4434. PRTCL.Speed = NumberRange.new(Speed)
  4435. PRTCL.VelocitySpread = Offset
  4436. PRTCL.Drag = Drag
  4437. PRTCL.Acceleration = Acel
  4438. if Enabled == false then
  4439. PRTCL:Emit(Emit)
  4440. Debris:AddItem(PRTCL,Lifetime2)
  4441. else
  4442. PRTCL.Enabled = true
  4443. end
  4444. return PRTCL
  4445. end
  4446.  
  4447. --//=================================\\
  4448. --|| WEAPON CREATION
  4449. --\\=================================//
  4450.  
  4451. local Handle = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,1.2,0.2),false)
  4452. local RightArmGrasp = CreateWeldOrSnapOrMotor("Weld", Handle, RightArm, Handle, CF(0,-0.8, 0) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0.3, 0))
  4453. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.8,0.2),false)
  4454. MakeForm(Part,"Wedge")
  4455. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0.2, 0.2) * ANGLES(RAD(0), RAD(180), RAD(0)), CF(0, 0, 0))
  4456. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.6),false)
  4457. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4458. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.4,0.4,0.4),false)
  4459. MakeForm(Part,"Cyl")
  4460. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4461. for i = 1, 8 do
  4462. local Piece = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0,0.35,0.41),false)
  4463. CreateWeldOrSnapOrMotor("Weld", Handle, Part, Piece, CF(0, 0, 0) * ANGLES(RAD(0), RAD((360/8)*i), RAD(0)), CF(0, 0, 0))
  4464. end
  4465. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.5,0.2),false)
  4466. MakeForm(Part,"Wedge")
  4467. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.2) * ANGLES(RAD(-135), RAD(0), RAD(0)), CF(0, -0.3, 0))
  4468. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.39,0.41,0.39),false)
  4469. MakeForm(Part,"Cyl")
  4470. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4471. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.5),false)
  4472. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.2) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4473. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.4,0.5),false)
  4474. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.65) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4475. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0,0.6),false)
  4476. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0, 0) * ANGLES(RAD(45), RAD(0), RAD(0)), CF(0, -0.2, -0.3))
  4477. local RightBarrel = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.28,5,0.28),false)
  4478. MakeForm(RightBarrel,"Cyl")
  4479. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, RightBarrel, CF(0, -0.6, 0.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, -2.5, 0))
  4480. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0,0.2,0.2),false)
  4481. MakeForm(Part,"Wedge")
  4482. CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, Part, CF(0, 2.415, 0.15) * ANGLES(RAD(180), RAD(0), RAD(0)), CF(0, 0, 0))
  4483. local RightHole = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.2,0,0.2),false)
  4484. MakeForm(RightHole,"Cyl")
  4485. CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, RightHole, CF(0, 2.5, 0), CF(0, 0, 0))
  4486. local Handle = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,1.2,0.2),false)
  4487. local LeftArmGraps = CreateWeldOrSnapOrMotor("Weld", Handle, LeftArm, Handle, CF(0,-0.8, 0) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0.3, 0))
  4488. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.8,0.2),false)
  4489. MakeForm(Part,"Wedge")
  4490. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0.2, 0.2) * ANGLES(RAD(0), RAD(180), RAD(0)), CF(0, 0, 0))
  4491. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.6),false)
  4492. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4493. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.4,0.4,0.4),false)
  4494. MakeForm(Part,"Cyl")
  4495. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4496. for i = 1, 8 do
  4497. local Piece = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0,0.35,0.41),false)
  4498. CreateWeldOrSnapOrMotor("Weld", Handle, Part, Piece, CF(0, 0, 0) * ANGLES(RAD(0), RAD((360/8)*i), RAD(0)), CF(0, 0, 0))
  4499. end
  4500. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0.5,0.2),false)
  4501. MakeForm(Part,"Wedge")
  4502. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.2) * ANGLES(RAD(-135), RAD(0), RAD(0)), CF(0, -0.3, 0))
  4503. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.39,0.41,0.39),false)
  4504. MakeForm(Part,"Cyl")
  4505. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4506. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.5,0.5),false)
  4507. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.2) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4508. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.3,0.4,0.5),false)
  4509. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.65) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
  4510. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.2,0,0.6),false)
  4511. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0, 0) * ANGLES(RAD(45), RAD(0), RAD(0)), CF(0, -0.2, -0.3))
  4512. local LeftBarrel = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0.28,5,0.28),false)
  4513. MakeForm(LeftBarrel,"Cyl")
  4514. CreateWeldOrSnapOrMotor("Weld", Handle, Handle, LeftBarrel, CF(0, -0.6, 0.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, -2.5, 0))
  4515. local Part = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Part", VT(0,0.2,0.2),false)
  4516. MakeForm(Part,"Wedge")
  4517. CreateWeldOrSnapOrMotor("Weld", Handle, LeftBarrel, Part, CF(0, 2.415, 0.15) * ANGLES(RAD(180), RAD(0), RAD(0)), CF(0, 0, 0))
  4518. local LeftHole = CreatePart(3, Character, "Metal", 0, 0, "Dark red", "Eye", VT(0.2,0,0.2),false)
  4519. MakeForm(LeftHole,"Cyl")
  4520. CreateWeldOrSnapOrMotor("Weld", Handle, LeftBarrel, LeftHole, CF(0, 2.5, 0), CF(0, 0, 0))
  4521. local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.6,0.1,1)/2,false)
  4522. MakeForm(Eye,"Ball")
  4523. CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.2,0) * ANGLES(RAD(0), RAD(-18), RAD(15)), CF(0, 0, 0.4))
  4524. local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.6,0.1,1)/2,false)
  4525. MakeForm(Eye,"Ball")
  4526. CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.2,0) * ANGLES(RAD(0), RAD(18), RAD(-15)), CF(0, 0, 0.4))
  4527. local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.1,1,1)/2,false)
  4528. MakeForm(Eye,"Ball")
  4529. CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.15,0) * ANGLES(RAD(0), RAD(-18), RAD(0)), CF(0, 0, 0.4))
  4530. local Eye = CreatePart(3, Character, "Neon", 0, 0, "Dark red", "Eye", VT(0.1,1,1)/2,false)
  4531. MakeForm(Eye,"Ball")
  4532. CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.15,0) * ANGLES(RAD(0), RAD(18), RAD(0)), CF(0, 0, 0.4))
  4533. local A = IT("Attachment",Torso)
  4534. A.Position = VT(1,1.3,0)
  4535. A.Orientation = VT(-0.098, -89.999, 0.227)
  4536. local B = IT("Attachment",Torso)
  4537. B.Position = VT(-1.3,-0.6,0)
  4538. B.Orientation = VT(-88.911, -68.808, 158.782)
  4539. local ChainLink = IT("Beam",Torso)
  4540. ChainLink.Texture = "rbxassetid://73042633"
  4541. ChainLink.Color = ColorSequence.new(C3(0,0,255))
  4542. ChainLink.TextureSpeed = 1
  4543. ChainLink.FaceCamera = true
  4544. ChainLink.Width0 = 1
  4545. ChainLink.Width1 = 1
  4546. ChainLink.TextureLength = 3
  4547. ChainLink.Attachment0 = A
  4548. ChainLink.Attachment1 = B
  4549. ChainLink.CurveSize0 = 1.6
  4550. ChainLink.CurveSize1 = 1.6
  4551. ChainLink.FaceCamera = true
  4552. ChainLink.Transparency = NumberSequence.new(0)
  4553. local ChainLink = IT("Beam",Torso)
  4554. ChainLink.Texture = "rbxassetid://73042633"
  4555. ChainLink.Color = ColorSequence.new(C3(0,0,255))
  4556. ChainLink.TextureSpeed = 1
  4557. ChainLink.FaceCamera = true
  4558. ChainLink.Width0 = 1
  4559. ChainLink.Width1 = 1
  4560. ChainLink.TextureLength = 3
  4561. ChainLink.Attachment0 = B
  4562. ChainLink.Attachment1 = A
  4563. ChainLink.CurveSize0 = 1.6
  4564. ChainLink.CurveSize1 = 1.6
  4565. ChainLink.FaceCamera = true
  4566. ChainLink.Transparency = NumberSequence.new(0)
  4567. local A = IT("Attachment",Torso)
  4568. A.Position = VT(1.3,-0.85,0)
  4569. A.Orientation = VT(-0.098, -89.999, 0.227)
  4570. local B = IT("Attachment",Torso)
  4571. B.Position = VT(-1,2,0)
  4572. B.Orientation = VT(-88.911, -68.808, 158.782)
  4573. local ChainLink = IT("Beam",Torso)
  4574. ChainLink.Texture = "rbxassetid://73042633"
  4575. ChainLink.Color = ColorSequence.new(C3(0,0,255))
  4576. ChainLink.TextureSpeed = 1
  4577. ChainLink.FaceCamera = true
  4578. ChainLink.Width0 = 1
  4579. ChainLink.Width1 = 1
  4580. ChainLink.TextureLength = 3
  4581. ChainLink.Attachment0 = A
  4582. ChainLink.Attachment1 = B
  4583. ChainLink.CurveSize0 = 1.3
  4584. ChainLink.CurveSize1 = 1.3
  4585. ChainLink.FaceCamera = true
  4586. ChainLink.Transparency = NumberSequence.new(0)
  4587. local ChainLink = IT("Beam",Torso)
  4588. ChainLink.Texture = "rbxassetid://73042633"
  4589. ChainLink.Color = ColorSequence.new(C3(0,0,255))
  4590. ChainLink.TextureSpeed = 1
  4591. ChainLink.FaceCamera = true
  4592. ChainLink.Width0 = 1
  4593. ChainLink.Width1 = 1
  4594. ChainLink.TextureLength = 3
  4595. ChainLink.Attachment0 = B
  4596. ChainLink.Attachment1 = A
  4597. ChainLink.CurveSize0 = 1.3
  4598. ChainLink.CurveSize1 = 1.3
  4599. ChainLink.FaceCamera = true
  4600. ChainLink.Transparency = NumberSequence.new(0)
  4601.  
  4602. local A = IT("Attachment",RightBarrel)
  4603. A.Position = VT(0,-2.5,0)
  4604. local B = IT("Attachment",RightBarrel)
  4605. B.Position = VT(0,2.5,0)
  4606. local Trail = IT("Trail",RightBarrel)
  4607. Trail.Attachment0 = A
  4608. Trail.Attachment1 = B
  4609. Trail.Lifetime = 0.2
  4610. Trail.Color = ColorSequence.new(BRICKC"Dark blue".Color)
  4611. Trail.Transparency = NumberSequence.new(0, 1)
  4612. Trail.Enabled = false
  4613.  
  4614. local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = RightLeg, Emit = 100, Offset = 360, Enabled = true})
  4615. PRT.LockedToPart = true
  4616. local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = LeftLeg, Emit = 100, Offset = 360, Enabled = true})
  4617. PRT.LockedToPart = true
  4618. local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.3, Lifetime2 = 1.5, Parent = Torso, Emit = 100, Offset = 360, Enabled = true})
  4619. PRT.LockedToPart = true
  4620. local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = RightArm, Emit = 100, Offset = 360, Enabled = true})
  4621. PRT.LockedToPart = true
  4622. local PRT = ParticleEmitter({Speed = 0.3, Drag = 3, Size1 = 0.1, Size2 = 0.3, Lifetime1 = 0.2, Lifetime2 = 1, Parent = LeftArm, Emit = 100, Offset = 360, Enabled = true})
  4623. PRT.LockedToPart = true
  4624. for _, c in pairs(Character:GetDescendants()) do
  4625. if c and c.Parent then
  4626. if c.Name == "Handle" and c.Parent.ClassName == "Accessory" then
  4627. local ACCESSORY = c.Parent
  4628. c.Parent = Character
  4629. if c then
  4630. if c:FindFirstChild("HatAttachment") or c:FindFirstChild("FaceFrontAttachment") or c:FindFirstChild("HairAttachment") then
  4631. weldBetween(Head,c)
  4632. else
  4633. weldBetween(Torso,c)
  4634. end
  4635. end
  4636. ACCESSORY:remove()
  4637. elseif c.Parent.ClassName ~= "Accessory" and c.ClassName == "Part" and c.Name ~= "Eye" and c.Parent ~= Effects and c.Parent.Parent ~= Effects then
  4638. c.Material = "Neon"
  4639. c.Color = C3(0,0,255)
  4640. if c:FindFirstChildOfClass("SpecialMesh") then
  4641. c:FindFirstChildOfClass("SpecialMesh").TextureId = ""
  4642. end
  4643. if c == Head then
  4644. if c:FindFirstChild("face") then
  4645. c.face:remove()
  4646. end
  4647. end
  4648. elseif c.ClassName == "Part" and c.Name == "Eye" then
  4649. c.Color = C3(0,0,255)
  4650. c.Material = "Neon"
  4651. elseif c.ClassName == "CharacterMesh" or c.Name == "Body Colors" then
  4652. c:remove()
  4653. elseif (c.ClassName == "Shirt" or c.ClassName == "Pants") and c.Name ~= "Cloth" then
  4654. c:remove()
  4655. end
  4656. end
  4657. end
  4658. local BODY = {}
  4659. for _, c in pairs(Character:GetDescendants()) do
  4660. if c:IsA("BasePart") and c.Name ~= "Handle" then
  4661. if c ~= RootPart and c ~= Torso and c ~= Head and c ~= RightArm and c ~= LeftArm and c ~= RightLeg and c ~= LeftLeg then
  4662. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  4663. end
  4664. table.insert(BODY,{c,c.Parent,c.Material,c.Color,c.Transparency,c.Size,c.Name})
  4665. elseif c:IsA("JointInstance") then
  4666. table.insert(BODY,{c,c.Parent,nil,nil,nil,nil,nil})
  4667. end
  4668. end
  4669. function refit()
  4670. Character.Parent = workspace
  4671. for e = 1, #BODY do
  4672. if BODY[e] ~= nil then
  4673. local STUFF = BODY[e]
  4674. local PART = STUFF[1]
  4675. local PARENT = STUFF[2]
  4676. local MATERIAL = STUFF[3]
  4677. local COLOR = STUFF[4]
  4678. local TRANSPARENCY = STUFF[5]
  4679. --local SIZE = STUFF[6]
  4680. local NAME = STUFF[7]
  4681. if PART.ClassName == "Part" and PART ~= RootPart then
  4682. PART.Material = MATERIAL
  4683. PART.Transparency = TRANSPARENCY
  4684. PART.Name = NAME
  4685. end
  4686. if PART.Parent ~= PARENT then
  4687. Humanoid:remove()
  4688. PART.Parent = PARENT
  4689. Humanoid = IT("Humanoid",Character)
  4690. end
  4691. end
  4692. end
  4693. end
  4694.  
  4695. local SKILLTEXTCOLOR = C3(0,0,255)
  4696. local SKILLFONT = "Fantasy"
  4697. local SKILLTEXTSIZE = 6
  4698.  
  4699. Humanoid.Died:connect(function()
  4700. refit()
  4701. end)
  4702.  
  4703. local SKILL1FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.1, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 1 Frame")
  4704. local SKILL2FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.63, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 2 Frame")
  4705. local SKILL3FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.215, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 3 Frame")
  4706. local SKILL4FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.525, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 4 Frame")
  4707. local SKILL5FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.365, 0, 0.90, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 5 Frame")
  4708. local SKILL6FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.50, 0, 0.85, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 6 Frame")
  4709. local SKILL7FRAME = CreateFrame(WEAPONGUI, 1, 2, UD2(0.23, 0, 0.85, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,255), C3(0, 0, 255), "Skill 7 Frame")
  4710.  
  4711. local SKILL1TEXT = CreateLabel(SKILL1FRAME, "[Z] Fire", SKILLTEXTCOLOR, SKILLTEXTSIZE-1, SKILLFONT, 0, 2, 0, "Text 1")
  4712. local SKILL2TEXT = CreateLabel(SKILL2FRAME, "[B] Lift", SKILLTEXTCOLOR, SKILLTEXTSIZE-1, SKILLFONT, 0, 2, 0, "Text 2")
  4713. local SKILL3TEXT = CreateLabel(SKILL3FRAME, "[C] Cleave", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 3")
  4714. local SKILL4TEXT = CreateLabel(SKILL4FRAME, "[V] Lock n' load", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 4")
  4715. local SKILL5TEXT = CreateLabel(SKILL5FRAME, "[X] Morning Star", SKILLTEXTCOLOR, SKILLTEXTSIZE+1, SKILLFONT, 0, 2, 0, "Text 5")
  4716. local SKILL6TEXT = CreateLabel(SKILL6FRAME, "[G] Deathbound", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 6")
  4717. local SKILL7TEXT = CreateLabel(SKILL7FRAME, "[CLICK] Execute", SKILLTEXTCOLOR, SKILLTEXTSIZE, SKILLFONT, 0, 2, 0, "Text 7")
  4718.  
  4719. --//=================================\\
  4720. --|| DAMAGE FUNCTIONS
  4721. --\\=================================//
  4722.  
  4723. function StatLabel(CFRAME, TEXT, COLOR)
  4724. local STATPART = CreatePart(3, Effects, "SmoothPlastic", 0, 1, "Dark blue", "Effect", VT())
  4725. STATPART.CFrame = CF(CFRAME.p,CFRAME.p+VT(MRANDOM(-5,5),MRANDOM(0,5),MRANDOM(-5,5)))
  4726. local BODYGYRO = IT("BodyGyro", STATPART)
  4727. game:GetService("Debris"):AddItem(STATPART ,5)
  4728. local BILLBOARDGUI = Instance.new("BillboardGui", STATPART)
  4729. BILLBOARDGUI.Adornee = STATPART
  4730. BILLBOARDGUI.Size = UD2(2.5, 0, 2.5 ,0)
  4731. BILLBOARDGUI.StudsOffset = VT(-2, 2, 0)
  4732. BILLBOARDGUI.AlwaysOnTop = false
  4733. local TEXTLABEL = Instance.new("TextLabel", BILLBOARDGUI)
  4734. TEXTLABEL.BackgroundTransparency = 1
  4735. TEXTLABEL.Size = UD2(2.5, 0, 2.5, 0)
  4736. TEXTLABEL.Text = TEXT
  4737. TEXTLABEL.Font = SKILLFONT
  4738. TEXTLABEL.FontSize="Size42"
  4739. TEXTLABEL.TextColor3 = COLOR
  4740. TEXTLABEL.TextStrokeTransparency = 0
  4741. TEXTLABEL.TextScaled = true
  4742. TEXTLABEL.TextWrapped = true
  4743. coroutine.resume(coroutine.create(function(THEPART, THEBODYPOSITION, THETEXTLABEL)
  4744. for i = 1, 50 do
  4745. Swait()
  4746. STATPART.CFrame = STATPART.CFrame * CF(0,0,-0.2)
  4747. TEXTLABEL.TextTransparency = TEXTLABEL.TextTransparency + (1/50)
  4748. TEXTLABEL.TextStrokeTransparency = TEXTLABEL.TextTransparency
  4749. end
  4750. THEPART.Parent = nil
  4751. end),STATPART, TEXTLABEL)
  4752. end
  4753.  
  4754. --//=================================\\
  4755. --|| DAMAGING
  4756. --\\=================================//
  4757.  
  4758. function Kill(Char)
  4759. local NewCharacter = IT("Model",Effects)
  4760. NewCharacter.Name = "Ow im ded ;-;"
  4761. for _, c in pairs(Char:GetDescendants()) do
  4762. if c:IsA("BasePart") and c.Transparency == 0 then
  4763. if c.Parent == Char then
  4764. getbloody(c,5)
  4765. end
  4766. c:BreakJoints()
  4767. c.Material = "Glass"
  4768. c.Color = C3(0,0,255)
  4769. c.CanCollide = true
  4770. c.Transparency = 0.3
  4771. if c:FindFirstChildOfClass("SpecialMesh") then
  4772. c:FindFirstChildOfClass("SpecialMesh").TextureId = ""
  4773. end
  4774. if c.Name == "Head" then
  4775. c:ClearAllChildren()
  4776. c.Size = VT(c.Size.Y,c.Size.Y,c.Size.Y)
  4777. end
  4778. if c.ClassName == "MeshPart" then
  4779. c.TextureID = ""
  4780. end
  4781. if c:FindFirstChildOfClass("BodyPosition") then
  4782. c:FindFirstChildOfClass("BodyPosition"):remove()
  4783. end
  4784. if c:FindFirstChildOfClass("ParticleEmitter") then
  4785. c:FindFirstChildOfClass("ParticleEmitter"):remove()
  4786. end
  4787. c.Parent = NewCharacter
  4788. c.Name = "DeadPart"
  4789. c.Velocity = VT(MRANDOM(-45,45),MRANDOM(-45,45),MRANDOM(-45,45))/15
  4790. c.RotVelocity = VT(MRANDOM(-45,45),MRANDOM(-15,85),MRANDOM(-45,45))
  4791. end
  4792. end
  4793. Char:remove()
  4794. Debris:AddItem(NewCharacter,5)
  4795. end
  4796.  
  4797. function ApplyAoE(POSITION,RANGE,BRUTAL)
  4798. local CHILDREN = workspace:GetDescendants()
  4799. for index, CHILD in pairs(CHILDREN) do
  4800. if CHILD.ClassName == "Model" and CHILD ~= Character then
  4801. local HUM = CHILD:FindFirstChildOfClass("Humanoid")
  4802. if HUM then
  4803. local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
  4804. if TORSO then
  4805. if (TORSO.Position - POSITION).Magnitude <= RANGE then
  4806. if BRUTAL == true then
  4807. Kill(CHILD)
  4808. else
  4809. CHILD:BreakJoints()
  4810. end
  4811. end
  4812. end
  4813. end
  4814. end
  4815. end
  4816. end
  4817.  
  4818. function BulletDetection(FROM,TO,BRUTAL)
  4819. local AIMHIT,AIMPOS,NORMAL = CastProperRay(FROM,TO,2000,Character)
  4820. coroutine.resume(coroutine.create(function()
  4821. if AIMHIT ~= nil then
  4822. if AIMHIT.Parent ~= Character then
  4823. if AIMHIT.Parent:FindFirstChildOfClass("Humanoid") or AIMHIT.Parent.Parent:FindFirstChildOfClass("Humanoid") then
  4824. if AIMHIT.Parent:FindFirstChildOfClass("Humanoid") then
  4825. if BRUTAL == true then
  4826. Kill(AIMHIT.Parent)
  4827. else
  4828. getbloody(AIMHIT,15)
  4829. AIMHIT.Parent:BreakJoints()
  4830. if AIMHIT.Name == "Head" then
  4831. AIMHIT.Name = "HEADSHOT"
  4832. AIMHIT:remove()
  4833. end
  4834. end
  4835. else
  4836. if BRUTAL == true then
  4837. Kill(AIMHIT.Parent.Parent)
  4838. else
  4839. AIMHIT.Parent.Parent:BreakJoints()
  4840. end
  4841. end
  4842. end
  4843. end
  4844. end
  4845. end))
  4846. SpawnTrail(FROM,AIMPOS)
  4847. return AIMHIT,AIMPOS,NORMAL
  4848. end
  4849.  
  4850. --//=================================\\
  4851. --|| ATTACK FUNCTIONS AND STUFF
  4852. --\\=================================//
  4853.  
  4854. function Unload()
  4855. ATTACK = true
  4856. Rooted = false
  4857. repeat
  4858. local GYRO = IT("BodyGyro",RootPart)
  4859. GYRO.D = 175
  4860. GYRO.P = 20000
  4861. GYRO.MaxTorque = VT(0,40000,0)
  4862. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  4863. if COMBO == 1 then
  4864. COMBO = 2
  4865. for i=0, 0.6, 0.1 / Animation_Speed do
  4866. Swait()
  4867. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  4868. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
  4869. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
  4870. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4871. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4872. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  4873. 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)
  4874. end
  4875. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = LeftHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4876. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4877. CreateSound(145080998, LeftHole, 7, 1, false)
  4878. BulletDetection(LeftHole.Position,Mouse.Hit.p,false)
  4879. for i=0, 0.2, 0.1 / Animation_Speed do
  4880. Swait()
  4881. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
  4882. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
  4883. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4884. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4885. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  4886. 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)
  4887. end
  4888. elseif COMBO == 2 then
  4889. COMBO = 1
  4890. for i=0, 0.6, 0.1 / Animation_Speed do
  4891. Swait()
  4892. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  4893. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
  4894. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
  4895. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4896. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4897. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  4898. 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)
  4899. end
  4900. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = RightHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4901. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4902. CreateSound(145080998, RightHole, 7, 1, false)
  4903. BulletDetection(RightHole.Position,Mouse.Hit.p,false)
  4904. for i=0, 0.2, 0.1 / Animation_Speed do
  4905. Swait()
  4906. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
  4907. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
  4908. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4909. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4910. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  4911. 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)
  4912. end
  4913. end
  4914. GYRO:remove()
  4915. until KEYHOLD == false
  4916. ATTACK = false
  4917. Rooted = false
  4918. end
  4919. function Psyo()
  4920. if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  4921. local HUM = Mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  4922. local TORSO = HUM.Parent:FindFirstChild("Torso") or HUM.Parent:FindFirstChild("UpperTorso")
  4923. if TORSO and HUM.Health > 0 then
  4924. ATTACK = true
  4925. Rooted = false
  4926. local GYRO = IT("BodyGyro",RootPart)
  4927. GYRO.D = 275
  4928. GYRO.P = 20000
  4929. GYRO.MaxTorque = VT(0,40000,0)
  4930. for i=0, 0.8, 0.1 / Animation_Speed do
  4931. Swait()
  4932. GYRO.cframe = CF(RootPart.Position,TORSO.Position)
  4933. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4934. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  4935. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(0), RAD(0), RAD(-85)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4936. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.15, -0.5) * ANGLES(RAD(-15), RAD(0), RAD(85)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4937. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  4938. 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)
  4939. end
  4940. local MAGIC = ParticleEmitter({Speed = 5, Drag = 3, Size1 = 1.7, Size2 = 0, Lifetime1 = 1, Lifetime2 = 3, Parent = TORSO, Emit = 100, Offset = 360, Enabled = true})
  4941. MAGIC.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,1),NumberSequenceKeypoint.new(1,0)})
  4942. local grav = Instance.new("BodyPosition",TORSO)
  4943. grav.D = 1500
  4944. grav.P = 20000
  4945. grav.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  4946. grav.position = TORSO.Position+VT(0,15,0)
  4947. Debris:AddItem(grav,10)
  4948. Debris:AddItem(MAGIC,10)
  4949. CreateSound(429459101, Torso, 7, 1, false)
  4950. CreateSound(429459101, TORSO, 7, 1, false)
  4951. for i=0, 1, 0.1 / Animation_Speed do
  4952. Swait()
  4953. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(-35), RAD(0), RAD(0)), 1 / Animation_Speed)
  4954. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  4955. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(125), RAD(-45), RAD(15)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4956. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(125), RAD(45), RAD(-15)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4957. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  4958. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  4959. end
  4960. GYRO:remove()
  4961. ATTACK = false
  4962. Rooted = false
  4963. end
  4964. end
  4965. end
  4966. function Cleave()
  4967. ATTACK = true
  4968. Rooted = false
  4969. local TARGET = nil
  4970. local TORS = nil
  4971. local GYRO = IT("BodyGyro",RootPart)
  4972. GYRO.D = 175
  4973. GYRO.P = 20000
  4974. GYRO.MaxTorque = VT(0,40000,0)
  4975. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  4976. local RANGE = 5
  4977. CreateSound(541909867, Torso, 7, 1, false)
  4978. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(12,0.5,12), Transparency = 0, Transparency2 = 1, CFrame = Torso.CFrame * ANGLES(RAD(90), RAD(0), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4979. for i=0, 1, 0.1 / Animation_Speed do
  4980. Swait()
  4981. RootPart.CFrame = RootPart.CFrame * CF(0,0,-2)
  4982. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  4983. local CHILDREN = workspace:GetDescendants()
  4984. for index, CHILD in pairs(CHILDREN) do
  4985. if CHILD.ClassName == "Model" and CHILD ~= Character then
  4986. local HUM = CHILD:FindFirstChildOfClass("Humanoid")
  4987. if HUM then
  4988. local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
  4989. if TORSO then
  4990. if (TORSO.Position - LeftHole.Position).Magnitude <= RANGE + TORSO.Size.Magnitude/5 then
  4991. RANGE = (TORSO.Position - LeftHole.Position).Magnitude
  4992. TARGET = HUM
  4993. TORS = TORSO
  4994. end
  4995. end
  4996. end
  4997. end
  4998. end
  4999. if TARGET then
  5000. break
  5001. end
  5002. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-80)), 1 / Animation_Speed)
  5003. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(80)), 1 / Animation_Speed)
  5004. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5005. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(-80)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5006. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5007. 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)
  5008. end
  5009. GYRO:remove()
  5010. if TORS and TARGET then
  5011. CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 10, 1, false)
  5012. Rooted = true
  5013. local BODYPOSITION = IT("BodyPosition", TORS)
  5014. BODYPOSITION.P = 2000
  5015. BODYPOSITION.D = 100
  5016. BODYPOSITION.maxForce = VT(math.huge, math.huge, math.huge)
  5017. for i=0, 1, 0.1 / Animation_Speed do
  5018. Swait()
  5019. TORS.CFrame = LeftHole.CFrame * CF(0,TORS.Size.Z/2,0) * ANGLES(RAD(90), RAD(0), RAD(0))
  5020. BODYPOSITION.Position = TORS.Position
  5021. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
  5022. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
  5023. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5024. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(145), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  5025. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5026. 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)
  5027. end
  5028. for i=0, 0.4, 0.1 / Animation_Speed do
  5029. Swait()
  5030. TORS.CFrame = LeftHole.CFrame * CF(0,TORS.Size.Z/2,0) * ANGLES(RAD(90), RAD(0), RAD(0))
  5031. BODYPOSITION.Position = TORS.Position
  5032. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
  5033. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
  5034. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(145), RAD(0), RAD(-65)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5035. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(145), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  5036. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5037. 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)
  5038. end
  5039. local LOOP = 0
  5040. local LOOP2 = 0
  5041. for i=0, 5, 0.1 / Animation_Speed do
  5042. Swait()
  5043. LOOP = LOOP + 1
  5044. TORS.Anchored = true
  5045. LOOP2 = LOOP2 + 1
  5046. if LOOP2 >= 5 then
  5047. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = RightHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5048. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5049. CreateSound(145080998, RightHole, 7, 1, false)
  5050. SpawnTrail(RightHole.Position,RightHole.CFrame*CF(0,500,0).p)
  5051. LOOP2 = 0
  5052. getbloody(TORS,1)
  5053. end
  5054. TORS.CFrame = LeftHole.CFrame * CF(0,TORS.Size.Z/2,0) * ANGLES(RAD(90), RAD(0), RAD(0))
  5055. BODYPOSITION.Position = TORS.Position
  5056. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
  5057. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
  5058. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(145 + 2 * SIN(LOOP / 12)), RAD(0), RAD(-65)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5059. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(145), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 0.5 / Animation_Speed)
  5060. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5061. 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)
  5062. end
  5063. BODYPOSITION:remove()
  5064. if TORS then
  5065. TORS.Anchored = false
  5066. Kill(TORS.Parent)
  5067. end
  5068. end
  5069. ATTACK = false
  5070. Rooted = false
  5071. end
  5072. function Lock_n_Load()
  5073. if Mouse.Target.Parent ~= Character and Mouse.Target.Parent.Parent ~= Character and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  5074. local HUM = Mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  5075. local TORSO = HUM.Parent:FindFirstChild("Torso") or HUM.Parent:FindFirstChild("UpperTorso")
  5076. if TORSO and HUM.Health > 0 then
  5077. CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 7, 1, false)
  5078. ATTACK = true
  5079. Rooted = true
  5080. local GYRO = IT("BodyGyro",RootPart)
  5081. GYRO.D = 175
  5082. GYRO.P = 20000
  5083. GYRO.MaxTorque = VT(0,40000,0)
  5084. if COMBO == 1 then
  5085. COMBO = 2
  5086. for i=0, 1, 0.1 / Animation_Speed do
  5087. Swait()
  5088. GYRO.cframe = CF(RootPart.Position,TORSO.Position)
  5089. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
  5090. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
  5091. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5092. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5093. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5094. 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)
  5095. end
  5096. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = LeftHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5097. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = 5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5098. CreateSound(145080998, LeftHole, 7, 1, false)
  5099. BulletDetection(LeftHole.Position,TORSO.Position,false)
  5100. for i=0, 0.4, 0.1 / Animation_Speed do
  5101. Swait()
  5102. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 1 / Animation_Speed)
  5103. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 1 / Animation_Speed)
  5104. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5105. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(-50)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5106. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5107. 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)
  5108. end
  5109. elseif COMBO == 2 then
  5110. COMBO = 1
  5111. for i=0, 1, 0.1 / Animation_Speed do
  5112. Swait()
  5113. GYRO.cframe = CF(RootPart.Position,TORSO.Position)
  5114. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
  5115. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
  5116. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5117. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5118. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5119. 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)
  5120. end
  5121. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = RightHole.CFrame*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5122. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5123. CreateSound(145080998, RightHole, 7, 1, false)
  5124. BulletDetection(RightHole.Position,TORSO.Position,false)
  5125. for i=0, 0.4, 0.1 / Animation_Speed do
  5126. Swait()
  5127. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
  5128. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-50)), 1 / Animation_Speed)
  5129. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(130), RAD(0), RAD(50)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5130. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5131. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5132. 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)
  5133. end
  5134. end
  5135. GYRO:remove()
  5136. ATTACK = false
  5137. Rooted = false
  5138. end
  5139. end
  5140. end
  5141. function Morning_Star()
  5142. ATTACK = true
  5143. Rooted = true
  5144. CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 7, 1, false)
  5145. for i=0, 1, 0.1 / Animation_Speed do
  5146. Swait()
  5147. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  5148. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5149. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.5) * ANGLES(RAD(0), RAD(0), RAD(-85)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5150. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.15, -0.5) * ANGLES(RAD(-15), RAD(0), RAD(85)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5151. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5152. 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)
  5153. end
  5154. coroutine.resume(coroutine.create(function()
  5155. local POS = Mouse.Hit.p
  5156. local RAY = CreatePart(3, Effects, "Neon", 0, 0, "Dark blue", "Strike", VT(0,2000,0))
  5157. MakeForm(RAY,"Cyl")
  5158. local SPHERE = CreatePart(3, Effects, "Neon", 0, 0, "Dark blue", "Strike", VT(0,0,0))
  5159. MakeForm(SPHERE,"Ball")
  5160. local SHIELD = CreatePart(3, Effects, "Neon", 0, 0.5, "Dark blue", "Strike", VT(0,0,0))
  5161. MakeForm(SHIELD,"Ball")
  5162. SHIELD.CFrame = CF(POS)
  5163. RAY.CFrame = CF(POS)
  5164. SPHERE.CFrame = CF(POS)
  5165. CreateSound(440145570, SPHERE, 10, 0.8, false)
  5166. CreateSound(415700134, SPHERE, 10, 0.8, false)
  5167. for i = 1, 200 do
  5168. Swait()
  5169. WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(0,0,0), Size2 = VT(SPHERE.Size.X*1.2,5+(i),SPHERE.Size.X*1.2), Transparency = 0, Transparency2 = 1, CFrame = SPHERE.CFrame*ANGLES(RAD(0), RAD(i), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = i, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5170. RAY.Size = RAY.Size + VT(0.05,0,0.05)
  5171. SPHERE.Size = SPHERE.Size + VT(2,2,2)
  5172. SHIELD.Size = SPHERE.Size + VT(3,3,3)
  5173. ApplyAoE(SPHERE.Position,SPHERE.Size.X/2,true)
  5174. end
  5175. for i = 1, 45 do
  5176. Swait()
  5177. RAY.Transparency = RAY.Transparency + 1/45
  5178. SPHERE.Transparency = RAY.Transparency
  5179. SHIELD.Transparency = SPHERE.Transparency + 1/45
  5180. end
  5181. RAY:remove()
  5182. SHIELD:remove()
  5183. SPHERE:remove()
  5184. end))
  5185. for i=0, 1, 0.1 / Animation_Speed do
  5186. Swait()
  5187. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(-35), RAD(0), RAD(0)), 1 / Animation_Speed)
  5188. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5189. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, -0.15) * ANGLES(RAD(65), RAD(-45), RAD(85)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5190. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, -0.15) * ANGLES(RAD(65), RAD(45), RAD(-85)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5191. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5192. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5193. end
  5194. ATTACK = false
  5195. Rooted = false
  5196. end
  5197. function Deathbound()
  5198. CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 10, 1, false)
  5199. ATTACK = true
  5200. Rooted = true
  5201. for i=0, 1, 0.1 / Animation_Speed do
  5202. Swait()
  5203. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 1 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  5204. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5205. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 1, 0) * ANGLES(RAD(15), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5206. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 1, 0) * ANGLES(RAD(15), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5207. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5208. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5209. end
  5210. local DONE = false
  5211. local GATE = nil
  5212. local GATESPIN = true
  5213. coroutine.resume(coroutine.create(function()
  5214. repeat
  5215. Swait()
  5216. if GATE ~= nil then
  5217. GATE.CFrame = GATE.CFrame * ANGLES(RAD(0), RAD(-3), RAD(0))
  5218. end
  5219. until GATESPIN == false
  5220. end))
  5221. coroutine.resume(coroutine.create(function()
  5222. repeat
  5223. Swait()
  5224. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0.2 - 0.25 * COS(SINE / 12)) * ANGLES(RAD(15), RAD(0), RAD(0)), 1 / Animation_Speed)
  5225. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5226. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5 + 0.25 * COS(SINE / 12), 0) * ANGLES(RAD(15), RAD(0), RAD(5)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5227. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5 + 0.25 * COS(SINE / 12), 0) * ANGLES(RAD(15), RAD(0), RAD(-5)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5228. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5229. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5230. until DONE == true
  5231. Swait(50)
  5232. for i = 1, 35 do
  5233. Swait(4)
  5234. local FIRED = false
  5235. local CHILDREN = workspace:GetDescendants()
  5236. for index, CHILD in pairs(CHILDREN) do
  5237. if CHILD.ClassName == "Model" and CHILD ~= Character then
  5238. local HUM = CHILD:FindFirstChildOfClass("Humanoid")
  5239. if HUM then
  5240. local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
  5241. if TORSO then
  5242. if (TORSO.Position - GATE.Position).Magnitude <= GATE.Size.X/2.5 + TORSO.Size.Magnitude/5 then
  5243. local HITFLOOR,HITPOS = Raycast(TORSO.Position, (CF(TORSO.Position, TORSO.Position + VT(0, -1, 0))).lookVector, 15, Character)
  5244. local CFRAME = CF(HITPOS)*ANGLES(RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)))
  5245. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = CFRAME*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = 145080998, SoundPitch = 1.5, SoundVolume = 6})
  5246. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5247. SpawnTrail(CFRAME.p,CFRAME*CF(0,1000,0).p)
  5248. Kill(CHILD)
  5249. FIRED = true
  5250. break
  5251. end
  5252. end
  5253. end
  5254. end
  5255. end
  5256. if FIRED == false then
  5257. local CFRAME = GATE.CFrame*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0))*CF(0,0,MRANDOM(2,math.ceil(GATE.Size.X/2.5)))*ANGLES(RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)),RAD(MRANDOM(-15,15)))
  5258. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(1,1.5,1), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = CFRAME*CF(0,0.5,0).p, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = 145080998, SoundPitch = 1.5, SoundVolume = 6})
  5259. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,0.5,2), Transparency = 0, Transparency2 = 1, CFrame = CFRAME, MoveToPos = nil, RotationX = 0, RotationY = -15, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5260. SpawnTrail(CFRAME.p,CFRAME*CF(0,1000,0).p)
  5261. local HITBOD = Raycast(CFRAME.p, (CF(CFRAME.p, CFRAME.p + VT(0, 1, 0))).lookVector, 1000, Character)
  5262. if HITBOD ~= nil then
  5263. if HITBOD.Parent:FindFirstChildOfClass("Humanoid") then
  5264. Kill(HITBOD.Parent)
  5265. end
  5266. end
  5267. end
  5268. end
  5269. for i = 1, 45 do
  5270. Swait()
  5271. GATE.Size = GATE.Size - VT(3,0,3)
  5272. end
  5273. GATESPIN = false
  5274. GATE:remove()
  5275. end))
  5276. Swait(15)
  5277. local HITFLOOR,HITPOS = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 15, Character)
  5278. GATE = CreatePart(3, Effects, "Neon", 0, 1, "Dark blue", "Gate", VT(0,0,0))
  5279. local DECAL = IT("Decal",GATE)
  5280. DECAL.Texture = "http://www.roblox.com/asset/?id=68854060"
  5281. DECAL.Face = "Top"
  5282. GATE.CFrame = CF(HITPOS)
  5283. CreateSound(160772554, GATE, 7, 1.3, false)
  5284. for i = 1, 45 do
  5285. Swait()
  5286. GATE.Size = GATE.Size + VT(3,0,3)
  5287. end
  5288. CreateSound(145080998, RightHole, 7, 1, false)
  5289. CreateSound(145080998, LeftHole, 7, 1, false)
  5290. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,2,2), Transparency = 0, Transparency2 = 1, CFrame = RightHole.CFrame*CF(0,-1,0) * ANGLES(RAD(180), RAD(0), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = -5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5291. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(0.3,0,0.3), Size2 = VT(2,2,2), Transparency = 0, Transparency2 = 1, CFrame = LeftHole.CFrame*CF(0,-1,0) * ANGLES(RAD(180), RAD(0), RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = 5, RotationZ = 0, Material = "Neon", Color = C3(0,0,255), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5292. ATTACK = false
  5293. Rooted = false
  5294. DONE = true
  5295. end
  5296. function Execute()
  5297. ATTACK = true
  5298. Rooted = false
  5299. local Part = CreatePart(3, Character, "Neon", 0, 0, "Dark blue", "Part", VT(0,1,4),false)
  5300. Part.Color = C3(0,0,255)
  5301. MakeForm(Part,"Wedge")
  5302. Part.CanCollide = true
  5303. CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, Part, CF(0, 0, 0) * ANGLES(RAD(90), RAD(0), RAD(135)) *CF(0, 0.5, 0), CF(0, 0, 0))
  5304. for i=10, 10, 10 / Animation_Speed do
  5305. Swait()
  5306. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.2 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(-50)), 10 / Animation_Speed)
  5307. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(50)), 10 / Animation_Speed)
  5308. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(125), RAD(0), RAD(90)) * RIGHTSHOULDERC0, 10 / Animation_Speed)
  5309. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 10 / Animation_Speed)
  5310. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 10 / Animation_Speed)
  5311. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 10 / Animation_Speed)
  5312. end
  5313. Trail.Enabled = true
  5314. CreateSound(541909867, RightBarrel, 7, 1, false)
  5315. local TOCH = Part.Touched:Connect(function(hit)
  5316. if hit.Parent:FindFirstChildOfClass("Humanoid") and hit.Parent ~= Character then
  5317. Kill(hit.Parent)
  5318. end
  5319. end)
  5320. for i=0, 0.35, 0.1 / Animation_Speed do
  5321. Swait()
  5322. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.2 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(50)), 1 / Animation_Speed)
  5323. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-45)), 1 / Animation_Speed)
  5324. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.15, 0.25, -0.3) * ANGLES(RAD(50), RAD(0), RAD(-35)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5325. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5326. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5327. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5328. end
  5329. TOCH:disconnect()
  5330. Trail.Enabled = false
  5331. for i=0, 0.35, 0.1 / Animation_Speed do
  5332. Swait()
  5333. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.2 + 0.25 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(60)), 1 / Animation_Speed)
  5334. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-55)), 1 / Animation_Speed)
  5335. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.15, 0.25, -0.3) * ANGLES(RAD(50), RAD(0), RAD(-45)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5336. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5337. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(75), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5338. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.5, -0.5) * ANGLES(RAD(-35-2.5 * SIN(SINE / 12)), RAD(-90), RAD(0)) * ANGLES(RAD(-8 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 1 / Animation_Speed)
  5339. end
  5340. Part:remove()
  5341. ATTACK = false
  5342. Rooted = false
  5343. end
  5344.  
  5345. --//=================================\\
  5346. --|| ASSIGN THINGS TO KEYS
  5347. --\\=================================//
  5348.  
  5349. function MouseDown(Mouse)
  5350. if ATTACK == false then
  5351. Execute()
  5352. end
  5353. end
  5354.  
  5355. function MouseUp(Mouse)
  5356. HOLD = false
  5357. end
  5358.  
  5359. function KeyDown(Key)
  5360. KEYHOLD = true
  5361. if Key ~= "w" and Key ~= "a" and Key ~= "s" and Key ~= "d" then
  5362. if Key == "z" and ATTACK == false then
  5363. Unload()
  5364.  
  5365. elseif Key == "b" and ATTACK == false then
  5366. Psyo()
  5367.  
  5368. elseif Key == "c" and ATTACK == false then
  5369. Cleave()
  5370.  
  5371. elseif Key == "v" and ATTACK == false then
  5372. Lock_n_Load()
  5373.  
  5374. elseif Key == "g" and ATTACK == false then
  5375. Deathbound()
  5376.  
  5377. elseif Key == "x" and ATTACK == false then
  5378. Morning_Star()
  5379.  
  5380. elseif Key == "t" then
  5381. CreateSound(LAUGHS[MRANDOM(1,#LAUGHS)], Torso, 10, 1, false)
  5382. elseif Key == "1" and ATTACK == false then
  5383. if CHOICE ~= 1 then
  5384. CHOICE = 1
  5385. sick:Play()
  5386. end
  5387. elseif Key == "2" and ATTACK == false then
  5388. if CHOICE ~= 2 then
  5389. CHOICE = 2
  5390. sick:Play()
  5391. end
  5392. elseif Key == "3" and ATTACK == false then
  5393. if CHOICE ~= 3 then
  5394. CHOICE = 3
  5395. sick:Play()
  5396. end
  5397. elseif Key == "4" and ATTACK == false then
  5398. if CHOICE ~= 4 then
  5399. CHOICE = 4
  5400. sick:Play()
  5401. end
  5402. end
  5403. end
  5404. end
  5405.  
  5406. function KeyUp(Key)
  5407. if Key ~= "w" and Key ~= "a" and Key ~= "s" and Key ~= "d" then
  5408. KEYHOLD = false
  5409. end
  5410. end
  5411.  
  5412. Mouse.Button1Down:connect(function(NEWKEY)
  5413. MouseDown(NEWKEY)
  5414. end)
  5415. Mouse.Button1Up:connect(function(NEWKEY)
  5416. MouseUp(NEWKEY)
  5417. end)
  5418. Mouse.KeyDown:connect(function(NEWKEY)
  5419. KeyDown(NEWKEY)
  5420. end)
  5421. Mouse.KeyUp:connect(function(NEWKEY)
  5422. KeyUp(NEWKEY)
  5423. end)
  5424.  
  5425. --//=================================\\
  5426. --\\=================================//
  5427.  
  5428.  
  5429. function unanchor()
  5430. if UNANCHOR == true then
  5431. g = Character:GetChildren()
  5432. for i = 1, #g do
  5433. if g[i].ClassName == "Part" then
  5434. g[i].Anchored = false
  5435. end
  5436. end
  5437. end
  5438. end
  5439.  
  5440.  
  5441. --//=================================\\
  5442. --|| WRAP THE WHOLE SCRIPT UP
  5443. --\\=================================//
  5444.  
  5445. Humanoid.Changed:connect(function(Jump)
  5446. if Jump == "Jump" and (Disable_Jump == true) then
  5447. Humanoid.Jump = false
  5448. end
  5449. end)
  5450.  
  5451. while true do
  5452. Swait()
  5453. Humanoid.HipHeight = 1.5
  5454. script.Parent = WEAPONGUI
  5455. ANIMATE.Parent = nil
  5456. if Humanoid then
  5457. local IDLEANIMATION = Humanoid:LoadAnimation(ROBLOXIDLEANIMATION)
  5458. IDLEANIMATION:Play()
  5459. end
  5460. SINE = SINE + CHANGE
  5461. local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude
  5462. local TORSOVERTICALVELOCITY = RootPart.Velocity.y
  5463. local HITFLOOR = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 4, Character)
  5464. if ATTACK == false then
  5465. if TORSOVELOCITY < 1 then
  5466. 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(25)), 1 / Animation_Speed)
  5467. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-25)), 1 / Animation_Speed)
  5468. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5469. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5470. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.01) * 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)
  5471. 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)
  5472. elseif TORSOVELOCITY > 1 then
  5473. 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(25)), 1 / Animation_Speed)
  5474. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-25 + 4.5 * SIN(SINE / 12)), RAD(0), RAD(-25)), 1 / Animation_Speed)
  5475. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(110), RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(35 + 7.5 * SIN(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5476. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.35 + 0.15 * COS(SINE / 12), 0) * ANGLES(RAD(140 - 12 * SIN(SINE / 12)), RAD(15 + 2.5 * SIN(SINE / 12)), RAD(-35 - 7.5 * SIN(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5477. 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)
  5478. 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)
  5479. end
  5480. end
  5481. RightArmGrasp.C0 = Clerp(RightArmGrasp.C0, CF(0, -0.815+0.05 * SIN(SINE / 12), 0) * ANGLES(RAD(90-4.5 * SIN(SINE / 12)), RAD(-1.5 * SIN(SINE / 12)), RAD(0)), 1 / Animation_Speed)
  5482. LeftArmGraps.C0 = Clerp(LeftArmGraps.C0, CF(0, -0.815+0.05 * SIN(SINE / 12), 0) * ANGLES(RAD(90-4.5 * SIN(SINE / 12)), RAD(1.5 * SIN(SINE / 12)), RAD(0)), 1 / Animation_Speed)
  5483. unanchor()
  5484. Humanoid.MaxHealth = "inf"
  5485. Humanoid.Health = "inf"
  5486. if Rooted == false then
  5487. Disable_Jump = false
  5488. Humanoid.WalkSpeed = Speed
  5489. elseif Rooted == true then
  5490. Disable_Jump = true
  5491. Humanoid.WalkSpeed = 0
  5492. end
  5493. for _, c in pairs(Character:GetDescendants()) do
  5494. if c.ClassName == "Part" and c.Name ~= "Eye" and c.Parent ~= Effects and c.Parent.Parent ~= Effects then
  5495. c.Material = "Neon"
  5496. c.Color = C3(0,0,255)
  5497. if c:FindFirstChildOfClass("SpecialMesh") then
  5498. c:FindFirstChildOfClass("SpecialMesh").TextureId = ""
  5499. end
  5500. if c == Head then
  5501. if c:FindFirstChild("face") then
  5502. c.face:remove()
  5503. end
  5504. end
  5505. elseif c.ClassName == "Part" and c.Name == "Eye" then
  5506. c.Color = C3(0,0,255)
  5507. c.Material = "Neon"
  5508. elseif c.ClassName == "CharacterMesh" or c.Name == "Body Colors" then
  5509. c:remove()
  5510. elseif (c.ClassName == "Shirt" or c.ClassName == "Pants") and c.Name ~= "Cloth" then
  5511. c:remove()
  5512. end
  5513. end
  5514. refit()
  5515. Humanoid.Name = "Deadeyes"
  5516. sick.Parent = Torso
  5517. sick:resume()
  5518. sick.Volume = 5
  5519. sick.Pitch = 1
  5520. sick.SoundId = "rbxassetid://"..SONGS[CHOICE]
  5521. if Head:FindFirstChildOfClass("Sound") then
  5522. Head:FindFirstChildOfClass("Sound"):remove()
  5523. end
  5524. end
  5525.  
  5526. --//=================================\\
  5527. --\\=================================//
  5528.  
  5529.  
  5530.  
  5531.  
  5532.  
  5533. --//====================================================\\--
  5534. --|| END OF SCRIPT
  5535. --\\====================================================//--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement