Advertisement
yoyo74456

IDunno

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