Robloxian_Scripter

Untitled

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