Advertisement
Guest User

pumpkin overseer script FE

a guest
Sep 22nd, 2019
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 483.49 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153. local p = game.Players.LocalPlayer--300899323
  154. local char = p.Character
  155. local mouse = p:GetMouse()
  156. local larm = char["Left Arm"]
  157. local rarm = char["Right Arm"]
  158. local lleg = char["Left Leg"]
  159. local rleg = char["Right Leg"]
  160. local hed = char.Head
  161. local torso = char.Torso
  162. local hum = char.Humanoid
  163. local cam = game.Workspace.CurrentCamera
  164. local root = char.HumanoidRootPart
  165. local rj = root.RootJoint
  166. local deb = false
  167. local shot = 0
  168. local stanceToggle = "Idle1"
  169. local l = game:GetService("Lighting")
  170. local rs = game:GetService("RunService").RenderStepped
  171. local hb = game:GetService("RunService").Heartbeat
  172. local Stepped = game:GetService("RunService").Stepped
  173. math.randomseed(os.time())
  174. hum.JumpPower = 100
  175. ---------------------
  176.  
  177. -------------
  178. char["Body Colors"].HeadColor = BrickColor.new("Really black")
  179. char["Body Colors"].TorsoColor = BrickColor.new("Lime green")
  180. char["Body Colors"].LeftArmColor = BrickColor.new("Really black")
  181. char["Body Colors"].RightArmColor = BrickColor.new("Really black")
  182. ---------------------------
  183. local Transforming = true
  184. hum.WalkSpeed = 0
  185. local fx = Instance.new("Part",torso)
  186. wit = torso.BrickColor.Color
  187. wit2 = Color3.new(0,0,0)
  188. local glowz = Instance.new("ParticleEmitter",fx)
  189. glowz.LightEmission = 1
  190. glowz.Texture = "rbxassetid://284205403"
  191. glowz.Color = ColorSequence.new(wit)
  192. glowz.Size = NumberSequence.new(5)
  193. glowz.Speed = NumberRange.new(25,50)
  194. glowz.LockedToPart = false
  195. glowz.Transparency = NumberSequence.new(0.75)
  196. glowz.RotSpeed = NumberRange.new(-2000,2000)
  197. glowz.Lifetime = NumberRange.new(1)
  198. glowz.Rate = 50000
  199. glowz.VelocitySpread = 9001
  200. fx.Anchored = true
  201. fx.Material = "Neon"
  202. fx.CanCollide = false
  203. fx.Locked = true
  204. fx.Transparency = 1
  205. fx.Material = "Neon"
  206. fx.Size = Vector3.new(1,1,1)
  207. fx.TopSurface = "SmoothNoOutlines"
  208. fx.BottomSurface = "SmoothNoOutlines"
  209. fx.BrickColor = BrickColor.new("Really black")
  210. fxm = Instance.new("SpecialMesh",fx)
  211. fxm.MeshType = "Sphere"
  212. local sa2 = Instance.new("Sound",torso)
  213. sa2.SoundId = "rbxassetid://93724183"
  214. sa2.Pitch = 0.5
  215. sa2.Volume = 5
  216. sa2.Looped = false
  217. sa2:Play()
  218. local value = 1
  219. fxm.Scale = Vector3.new(1,1,1)
  220. for i = 1, 20 do rs:wait()
  221. value = value - 0.05
  222. fx.Transparency = fx.Transparency - (1/20)
  223. fx.CFrame = torso.CFrame
  224. fxm.Scale = fxm.Scale + Vector3.new(value,value,value)
  225. rs:wait()
  226. end
  227. ----------------------------------------------------
  228. GroundWave1 = function()
  229. local Transforming = true
  230. hum.WalkSpeed = 0
  231. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  232. local Colors = {"White", "Really black"}
  233. local wave = Instance.new("Part", torso)
  234. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  235. wave.Anchored = true
  236. wave.CanCollide = false
  237. wave.Locked = true
  238. wave.Size = Vector3.new(1, 1, 1)
  239. wave.TopSurface = "Smooth"
  240. wave.BottomSurface = "Smooth"
  241. wave.Transparency = 0.35
  242. wave.CFrame = HandCF
  243. wm = Instance.new("SpecialMesh", wave)
  244. wm.MeshId = "rbxassetid://3270017"
  245. coroutine.wrap(function()
  246. for i = 1, 30, 1 do
  247. wm.Scale = Vector3.new(50, 50, 1 + i*50)
  248. wave.Size = wm.Scale
  249. wave.CFrame = HandCF
  250. wave.Transparency = i/30
  251. wait()
  252. end
  253. wait()
  254. wave:Destroy()
  255. end)()
  256. end
  257. ----------------------------------------------------
  258. GroundWave = function()
  259. if Transforming == true then
  260. local value = 5
  261. local value2 = 10
  262. local value3 = 20
  263. local sa2 = Instance.new("Sound",torso)
  264. sa2.SoundId = "rbxassetid://413682983"
  265. sa2.Pitch = 1
  266. sa2.Volume = 10
  267. sa2.Looped = false
  268. sa2:Play()
  269. local wave = Instance.new("Part", torso)
  270. local glowz = Instance.new("ParticleEmitter",wave)
  271. glowz.LightEmission = 1
  272. glowz.Texture = "0"
  273. glowz.Color = ColorSequence.new(wit)
  274. glowz.Size = NumberSequence.new(30)
  275. glowz.Speed = NumberRange.new(25,100)
  276. glowz.LockedToPart = false
  277. glowz.Transparency = NumberSequence.new(0.75)
  278. glowz.RotSpeed = NumberRange.new(-2000,2000)
  279. glowz.Lifetime = NumberRange.new(1)
  280. glowz.Rate = 50000
  281. glowz.VelocitySpread = 9001
  282.  
  283. wave.BrickColor = BrickColor.new("Lime green")
  284. wave.Anchored = true
  285. wave.CanCollide = false
  286. wave.Locked = true
  287. wave.Size = Vector3.new(1, 1, 1)
  288. wave.TopSurface = "Smooth"
  289. wave.BottomSurface = "Smooth"
  290. wave.Transparency = 0.35
  291. wave.CFrame = fx.CFrame
  292. wave.Material = "Neon"
  293. wm = Instance.new("SpecialMesh", wave)
  294. wm.MeshType = "Sphere"
  295. wm.Scale = Vector3.new(1,1,1)
  296. local wave2 = Instance.new("Part", torso)
  297. wave2.BrickColor = BrickColor.new("Lime green")
  298. wave2.Anchored = true
  299. wave2.CanCollide = false
  300. wave2.Locked = true
  301. wave2.Size = Vector3.new(1, 1, 1)
  302. wave2.TopSurface = "Smooth"
  303. wave2.BottomSurface = "Smooth"
  304. wave2.Transparency = 0.35
  305. wave2.CFrame = fx.CFrame
  306. wave2.Material = "Neon"
  307. wm2 = Instance.new("SpecialMesh", wave2)
  308. wm2.MeshType = "FileMesh"
  309. wm2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  310. wm2.Scale = Vector3.new(1,1,1)
  311. local wave3 = Instance.new("Part", torso)
  312. wave3.BrickColor = BrickColor.new("Really black")
  313. wave3.Anchored = true
  314. wave3.CanCollide = false
  315. wave3.Locked = true
  316. wave3.Size = Vector3.new(1, 1, 1)
  317. wave3.TopSurface = "Smooth"
  318. wave3.BottomSurface = "Smooth"
  319. wave3.Transparency = 0.35
  320. wave3.CFrame = fx.CFrame
  321. wave3.Material = "Neon"
  322. wm3 = Instance.new("SpecialMesh", wave3)
  323. wm3.MeshType = "FileMesh"
  324. wm3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  325. wm3.Scale = Vector3.new(1,1,1)
  326. coroutine.wrap(function()
  327. for i = 1, 18, 1 do
  328. value = value - 0.5
  329. value2 = value2 - 0.75*1.5
  330. value3 = value3 - 0.475*1.5
  331. wm.Scale = wm.Scale + Vector3.new(value*3.5,value*3.5,value*3.5)
  332. wm2.Scale = wm.Scale + Vector3.new(value2*3.5,value2*3.5,0.5)
  333. wm3.Scale = wm.Scale + Vector3.new(value3*3.5,value3*3.5,0.25)
  334. --wave.Size = wm.Scale
  335. wave.CFrame = fx.CFrame
  336. wave.Transparency = i/14
  337. --wave2.Size = wm2.Scale
  338. wave2.CFrame = fx.CFrame
  339. wave2.Rotation = Vector3.new(90, 0, 0)
  340. wave2.Transparency = i/14
  341. --wave3.Size = wm3.Scale
  342. wave3.CFrame = fx.CFrame
  343. wave3.Rotation = Vector3.new(90, 0, 0)
  344. wave3.Transparency = i/14
  345. wait()
  346. glowz.Rate = 0
  347.  
  348. end
  349. wait()
  350. wave:Destroy()
  351. wave2:Destroy()
  352. wave3:Destroy()
  353. end)()
  354. elseif Transforming == false then
  355. wait()
  356. end
  357. end
  358.  
  359. for i = 1, 100 do rs:wait()
  360. fx.CFrame = torso.CFrame
  361. end
  362.  
  363. Spawn(function()
  364. while wait(1) do
  365. GroundWave()
  366. end
  367. end)
  368.  
  369. wait(4)
  370.  
  371. Transforming = false
  372.  
  373. local value2 = 1
  374. for i = 1, 20 do rs:wait()
  375. value2 = value2 - 0.05
  376. glowz.Rate = 0
  377.  
  378. fx.Transparency = fx.Transparency + (1/20)
  379. fx.CFrame = torso.CFrame
  380. fxm.Scale = fxm.Scale + Vector3.new(value2,value2,value2)
  381. rs:wait()
  382. end
  383. glowz:Destroy()
  384.  
  385.  
  386. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  387. local valuer = 5
  388. local valuer2 = 10
  389. local valuer3 = 15
  390. local sa2 = Instance.new("Sound",torso)
  391. sa2.SoundId = "rbxassetid://130972023"
  392. sa2.Pitch = 1
  393. sa2.Volume = 5
  394. sa2.Looped = false
  395. sa2:Play()
  396. local sar2 = Instance.new("Sound",torso)
  397. sar2.SoundId = "rbxassetid://153274423"
  398. sar2.Pitch = 1
  399. sar2.Volume = 5
  400. sar2.Looped = false
  401. sar2:Play()
  402. local wave = Instance.new("Part", torso)
  403. wave.BrickColor = BrickColor.new("Lime green")
  404. wave.Anchored = true
  405. wave.CanCollide = false
  406. wave.Locked = true
  407. wave.Size = Vector3.new(1, 1, 1)
  408. wave.TopSurface = "Smooth"
  409. wave.BottomSurface = "Smooth"
  410. wave.Transparency = 0.35
  411. wave.CFrame = HandCF
  412. wm = Instance.new("SpecialMesh", wave)
  413. wm.MeshId = "rbxassetid://3270017"
  414. local wave2 = Instance.new("Part", torso)
  415. wave2.BrickColor = BrickColor.new("Really black")
  416. wave2.Anchored = true
  417. wave2.CanCollide = false
  418. wave2.Locked = true
  419. wave2.Size = Vector3.new(1, 1, 1)
  420. wave2.TopSurface = "Smooth"
  421. wave2.BottomSurface = "Smooth"
  422. wave2.Transparency = 0.35
  423. wave2.CFrame = HandCF
  424. wm2 = Instance.new("SpecialMesh", wave2)
  425. wm2.MeshId = "rbxassetid://3270017"
  426. local wave3 = Instance.new("Part", torso)
  427. wave3.BrickColor = BrickColor.new("Lime green")
  428. wave3.Anchored = true
  429. wave3.CanCollide = false
  430. wave3.Locked = true
  431. wave3.Size = Vector3.new(1, 1, 1)
  432. wave3.TopSurface = "Smooth"
  433. wave3.BottomSurface = "Smooth"
  434. wave3.Transparency = 0.35
  435. wave3.CFrame = HandCF
  436. wm3 = Instance.new("SpecialMesh", wave3)
  437. wm3.MeshId = "rbxassetid://3270017"
  438. coroutine.wrap(function()
  439. for i = 1, 14, 1 do
  440. valuer = valuer - 0.35
  441. valuer2 = valuer - 0.45
  442. valuer3 = valuer3 - 0.475
  443. wm.Scale = wm.Scale + Vector3.new(valuer*2.5,valuer*2.5, 1 + i*200)
  444. wave.Size = wm.Scale
  445. wave.CFrame = HandCF
  446. wave.Transparency = i/14
  447. wm2.Scale = wm2.Scale + Vector3.new(valuer2*2.5,valuer2*2.5, 0 + i*10)
  448. wave2.Size = wm2.Scale
  449. wave2.CFrame = HandCF
  450. wave2.Transparency = i/14
  451. wm3.Scale = wm3.Scale + Vector3.new(valuer3*2.5,valuer3*2.5, 1)
  452. wave3.Size = wm2.Scale
  453. wave3.CFrame = HandCF
  454. wave3.Transparency = i/14
  455. wait()
  456. end
  457. wait()
  458. wave:Destroy()
  459. wave2:Destroy()
  460. end)()
  461. hum.WalkSpeed = 16
  462. --------------------
  463.  
  464. ------------
  465. fire = Instance.new('Fire',hed) -- change the part to where u want it to stick on
  466. fire.Color = Color3.new(0,1,0)
  467. fire.SecondaryColor = Color3.new(0,1,0)
  468. fire.Enabled = true
  469. --------------------------------------------------------------------------------------------------------
  470. plr=game:service'Players'.LocalPlayer
  471. chr=plr.Character
  472. local ms = plr:GetMouse()
  473. CV="Bright red"
  474.  
  475. local txt = Instance.new("BillboardGui", chr)
  476. txt.Adornee = chr.Head
  477. txt.Name = "_status"
  478. txt.Size = UDim2.new(4, 0, 2.5, 0)
  479. txt.StudsOffset = Vector3.new(-4, 2, 0)
  480. local text = Instance.new("TextLabel", txt)
  481. text.Size = UDim2.new(3, 0, 0.5, 0)
  482. text.FontSize = "Size24"
  483. text.TextScaled = true
  484. text.TextTransparency = 0
  485. text.BackgroundTransparency = 1
  486. text.TextTransparency = 0
  487. text.TextStrokeTransparency = 0
  488. text.Font = "Bodoni"
  489. text.TextStrokeColor3 = Color3.new(0,1,0)
  490. text.Text = "Pumpkin Overseer"
  491. --------------------------------------------------------
  492. char["Body Colors"].HeadColor = BrickColor.new("Really black")
  493. char["Body Colors"].TorsoColor = BrickColor.new("Really black")
  494. char["Body Colors"].LeftArmColor = BrickColor.new("Really black")
  495. char["Body Colors"].RightArmColor = BrickColor.new("Really black")
  496. --------------------------------------------------------------
  497. fat = Instance.new("BindableEvent",script)
  498. fat.Name = "Heartbeat"
  499.  
  500. script:WaitForChild("Heartbeat")
  501.  
  502. frame = 1/30
  503. tf = 0
  504. allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
  505. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  506. lastframe = tick()
  507. script.Heartbeat:Fire() --ayy lmao
  508.  
  509. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  510. tf = tf + s
  511. if tf >= frame then
  512. if allowframeloss then
  513. script.Heartbeat:Fire()
  514. lastframe=tick()
  515. else
  516. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  517. for i=1, math.floor(tf/frame) do
  518. script.Heartbeat:Fire()
  519. end
  520. lastframe=tick()
  521. end
  522. if tossremainder then
  523. tf = 0
  524. else
  525. tf = tf - frame * math.floor(tf/frame)
  526. end
  527. end
  528. end)
  529. ----------------------------------------------------
  530. for i,v in pairs(char:children()) do
  531. if v:IsA("Hat") then
  532. v:Destroy()
  533. end
  534. end
  535. for i,v in pairs (hed:GetChildren()) do
  536. if v:IsA("Sound") then
  537. v:Destroy()
  538. end
  539. end
  540. ----------------------------------------------------
  541. Debounces = {
  542. CanAttack = true;
  543. CanJoke = true;
  544. NoIdl = false;
  545. Slashing = false;
  546. Slashed = false;
  547. ks = false;
  548. }
  549. ----------------------------------------------------
  550. function weld5(part0, part1, c0, c1)
  551. weeld=Instance.new("Weld", part0)
  552. weeld.Part0=part0
  553. weeld.Part1=part1
  554. weeld.C0=c0
  555. weeld.C1=c1
  556. return weeld
  557. end
  558. ----------------------------------------------------
  559. function NewPart(prnt,siz,cf,trans,anc,mat,col)
  560. local prt=Instance.new("Part")
  561. prt.Parent=prnt
  562. prt.Name="Part"
  563. prt.Size=siz
  564. prt.CanCollide=false
  565. prt.Anchored=anc
  566. prt.Locked=true
  567. prt.Transparency = trans
  568. prt.TopSurface=10
  569. prt.BottomSurface=10
  570. prt.FrontSurface=10
  571. prt.BackSurface=10
  572. prt.LeftSurface=10
  573. prt.RightSurface=10
  574. prt:BreakJoints()
  575. prt.CFrame=cf or CFrame.new(30,10,30)
  576. prt.Material=mat
  577. prt.BrickColor=BrickColor.new(col)
  578. m=Instance.new("SpecialMesh",prt)
  579. m.MeshType=6
  580. return prt
  581. end
  582. ----------------------------------------------------
  583. function lerp(a, b, t) -- Linear interpolation
  584. return a + (b - a)*t
  585. end
  586.  
  587. function slerp(a, b, t) --Spherical interpolation
  588. dot = a:Dot(b)
  589. if dot > 0.99999 or dot < -0.99999 then
  590. return t <= 0.5 and a or b
  591. else
  592. r = math.acos(dot)
  593. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  594. end
  595. end
  596.  
  597. function matrixInterpolate(a, b, t)
  598. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  599. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  600. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  601. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  602. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  603. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  604. local t = v1:Dot(v2)
  605. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  606. return CFrame.new()
  607. end
  608. return CFrame.new(
  609. v0.x, v0.y, v0.z,
  610. v1.x, v1.y, v1.z,
  611. v2.x, v2.y, v2.z,
  612. v3.x, v3.y, v3.z)
  613. end
  614. ----------------------------------------------------
  615. function genWeld(a,b)
  616. local w = Instance.new("Weld",a)
  617. w.Part0 = a
  618. w.Part1 = b
  619. return w
  620. end
  621. function weld(a, b)
  622. local weld = Instance.new("Weld")
  623. weld.Name = "W"
  624. weld.Part0 = a
  625. weld.Part1 = b
  626. weld.C0 = a.CFrame:inverse() * b.CFrame
  627. weld.Parent = a
  628. return weld;
  629. end
  630. ----------------------------------------------------
  631. function Lerp(c1,c2,al)
  632. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  633. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  634. for i,v in pairs(com1) do
  635. com1[i] = v+(com2[i]-v)*al
  636. end
  637. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  638. end
  639. ----------------------------------------------------
  640. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  641. local wld = Instance.new("Weld", wp1)
  642. wld.Part0 = wp0
  643. wld.Part1 = wp1
  644. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  645. end
  646. ----------------------------------------------------
  647. newWeld(torso, larm, -1.5, 0.5, 0)
  648. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  649. newWeld(torso, rarm, 1.5, 0.5, 0)
  650. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  651. newWeld(torso, hed, 0, 1.5, 0)
  652. newWeld(torso, lleg, -0.5, -1, 0)
  653. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  654. newWeld(torso, rleg, 0.5, -1, 0)
  655. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  656. newWeld(root, torso, 0, -1, 0)
  657. torso.Weld.C1 = CFrame.new(0, -1, 0)
  658. ----------------------------------------------------
  659.  
  660. hed.face.Texture = "http://www.roblox.com/asset/?id=0"
  661. hed.Transparency = 1
  662.  
  663. -----------------------
  664. LittleWave = function()
  665. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  666. local Colors = {"Lime green", "Black","Really black"}
  667. local wave = Instance.new("Part", torso)
  668.  
  669.  
  670. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  671.  
  672.  
  673. wave.Anchored = true
  674. wave.CanCollide = false
  675. wave.Material = "Neon"
  676. wave.Locked = true
  677. wave.Size = Vector3.new(1, 1, 1)
  678. wave.TopSurface = "Smooth"
  679. wave.BottomSurface = "Smooth"
  680. wave.Transparency = 0.35
  681. wave.CFrame = HandCF
  682. wm = Instance.new("SpecialMesh", wave)
  683. wm.MeshId = "rbxassetid://3270017"
  684. coroutine.wrap(function()
  685. for i = 1, 14, 1 do
  686. wm.Scale = Vector3.new(0.8 + i*0.8, 0.8 + i*0.8, 0.8)
  687. wave.Size = wm.Scale
  688. wave.CFrame = HandCF
  689. wave.Transparency = i/14
  690. wait()
  691. end
  692. wait()
  693. wave:Destroy()
  694. end)()
  695. end
  696. Spawn(function()
  697. while wait(.8) do
  698. LittleWave()
  699. end
  700. end)
  701.  
  702. -----------------------------
  703.  
  704. ------------------------
  705.  
  706. -------------------------
  707.  
  708.  
  709. ----------------------------------------------------
  710. z = Instance.new("Sound", char)
  711. z.SoundId = "rbxassetid://435750418"
  712. z.Looped = true
  713. z.Pitch = 1
  714. z.Volume = 7
  715. wait(.1)
  716. z:Play()
  717. ----------------------------------------------------
  718.  
  719.  
  720. ---------------------
  721.  
  722. New = function(Object, Parent, Name, Data)
  723. local Object = Instance.new(Object)
  724. for Index, Value in pairs(Data or {}) do
  725. Object[Index] = Value
  726. end
  727. Object.Parent = Parent
  728. Object.Name = Name
  729. return Object
  730. end
  731. ----------------------------------------------------
  732. --reaper hat
  733. for _,x in pairs(char:children()) do
  734. if x:IsA('Hat') then x:remove() end
  735. if x:IsA('Shirt') then x:remove() end
  736. if x:IsA('Pants') then x:remove() end
  737. end
  738.  
  739. local h = Instance.new('Part', char)
  740. h.Name = 'DK Hood'
  741. h.Size = Vector3.new(0.5,0.5,0.5)
  742. h.CFrame = hed.CFrame
  743. h.CanCollide = false
  744. --
  745. newWeld(hed, h, 0, 0.35, 0)
  746. --
  747. local m = Instance.new('SpecialMesh', h)
  748. m.Name = "Reaper's Cowl"
  749. m.MeshType = 'FileMesh'
  750. m.Scale = Vector3.new(0.5,0.5,0.5)
  751. m.MeshId,m.TextureId = 'http://www.roblox.com/asset/?id=1474596','http://www.roblox.com/asset/?id=103577616'
  752. m.VertexColor = Vector3.new(1,1,1)
  753. local shirt = Instance.new("Shirt",p.Character)
  754. local pants = Instance.new("Pants",p.Character)
  755. shirt.ShirtTemplate = "rbxassetid://233027251"
  756. pants.PantsTemplate = "rbxassetid://149639608"
  757. --Left Arm
  758. m = Instance.new("Model")
  759. m.Name = "LeftArm"
  760. p1 = Instance.new("Part", m)
  761. p1.BrickColor = BrickColor.new("Lime green")
  762. p1.Material = Enum.Material.Granite
  763. p1.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  764. p1.Size = Vector3.new(1, 0.200000048, 1)
  765. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  766. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  767. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  768. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  769. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  770. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  771. b1 = Instance.new("SpecialMesh", p1)
  772. b1.MeshType = Enum.MeshType.Brick
  773. b1.Name = "Mesh"
  774. b1.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  775. p2 = Instance.new("Part", m)
  776. p2.BrickColor = BrickColor.new("Lime green")
  777. p2.Material = Enum.Material.Granite
  778. p2.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  779. p2.Size = Vector3.new(1, 0.200000048, 1)
  780. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  781. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  782. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  783. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  784. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  785. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  786. b2 = Instance.new("SpecialMesh", p2)
  787. b2.MeshType = Enum.MeshType.Brick
  788. b2.Name = "Mesh"
  789. b2.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  790. p3 = Instance.new("Part", m)
  791. p3.BrickColor = BrickColor.new("Lime green")
  792. p3.Material = Enum.Material.Granite
  793. p3.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  794. p3.Size = Vector3.new(1, 0.200000048, 1)
  795. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  796. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  797. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  798. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  799. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  800. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  801. b3 = Instance.new("SpecialMesh", p3)
  802. b3.MeshType = Enum.MeshType.Brick
  803. b3.Name = "Mesh"
  804. b3.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  805. p4 = Instance.new("Part", m)
  806. p4.BrickColor = BrickColor.new("Black")
  807. p4.Material = Enum.Material.SmoothPlastic
  808. p4.Name = "LeftArmPlate"
  809. p4.Size = Vector3.new(1, 2, 1)
  810. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  811. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  812. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  813. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  814. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  815. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  816. b4 = Instance.new("SpecialMesh", p4)
  817. b4.MeshType = Enum.MeshType.Brick
  818. b4.Name = "Mesh"
  819. b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  820. p5 = Instance.new("Part", m)
  821. p5.BrickColor = BrickColor.new("Lime green")
  822. p5.Material = Enum.Material.Granite
  823. p5.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  824. p5.Size = Vector3.new(1, 0.200000048, 1)
  825. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  826. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  827. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  828. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  829. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  830. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  831. b5 = Instance.new("SpecialMesh", p5)
  832. b5.MeshType = Enum.MeshType.Brick
  833. b5.Name = "Mesh"
  834. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  835. p6 = Instance.new("Part", m)
  836. p6.BrickColor = BrickColor.new("Lime green")
  837. p6.Material = Enum.Material.Granite
  838. p6.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  839. p6.Size = Vector3.new(1, 0.200000048, 1)
  840. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  841. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  842. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  843. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  844. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  845. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  846. b6 = Instance.new("SpecialMesh", p6)
  847. b6.MeshType = Enum.MeshType.Brick
  848. b6.Name = "Mesh"
  849. b6.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  850. p7 = Instance.new("Part", m)
  851. p7.BrickColor = BrickColor.new("Lime green")
  852. p7.Material = Enum.Material.Granite
  853. p7.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  854. p7.FormFactor = Enum.FormFactor.Custom
  855. p7.Size = Vector3.new(1, 0.200000048, 1)
  856. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  857. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  858. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  859. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  860. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  861. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  862. b7 = Instance.new("SpecialMesh", p7)
  863. b7.MeshType = Enum.MeshType.Brick
  864. b7.Name = "Mesh"
  865. b7.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  866. p8 = Instance.new("Part", m)
  867. p8.BrickColor = BrickColor.new("Lime green")
  868. p8.Material = Enum.Material.Granite
  869. p8.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  870. p8.FormFactor = Enum.FormFactor.Custom
  871. p8.Size = Vector3.new(1, 0.200000048, 1)
  872. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  873. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  874. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  875. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  876. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  877. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  878. b8 = Instance.new("SpecialMesh", p8)
  879. b8.MeshType = Enum.MeshType.Brick
  880. b8.Name = "Mesh"
  881. b8.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  882. p9 = Instance.new("Part", m)
  883. p9.BrickColor = BrickColor.new("Lime green")
  884. p9.Material = Enum.Material.Granite
  885. p9.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  886. p9.FormFactor = Enum.FormFactor.Custom
  887. p9.Size = Vector3.new(1, 0.200000048, 1)
  888. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  889. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  890. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  891. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  892. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  893. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  894. b9 = Instance.new("SpecialMesh", p9)
  895. b9.MeshType = Enum.MeshType.Brick
  896. b9.Name = "Mesh"
  897. b9.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  898. p10 = Instance.new("Part", m)
  899. p10.BrickColor = BrickColor.new("Black")
  900. p10.Material = Enum.Material.SmoothPlastic
  901. p10.CFrame = CFrame.new(-1.5, 6.78969193, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  902. p10.FormFactor = Enum.FormFactor.Custom
  903. p10.Size = Vector3.new(1, 0.349999994, 1)
  904. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  905. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  906. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  907. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  908. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  909. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  910. b10 = Instance.new("SpecialMesh", p10)
  911. b10.MeshType = Enum.MeshType.Brick
  912. b10.Name = "Mesh"
  913. b10.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  914. p11 = Instance.new("Part", m)
  915. p11.BrickColor = BrickColor.new("Black")
  916. p11.Material = Enum.Material.Metal
  917. p11.CFrame = CFrame.new(-1.5, 6.48969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  918. p11.FormFactor = Enum.FormFactor.Custom
  919. p11.Size = Vector3.new(1, 0.25, 1)
  920. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  921. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  922. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  923. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  924. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  925. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  926. b11 = Instance.new("SpecialMesh", p11)
  927. b11.MeshType = Enum.MeshType.Brick
  928. b11.Name = "Mesh"
  929. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  930. p12 = Instance.new("Part", m)
  931. p12.BrickColor = BrickColor.new("Black")
  932. p12.Material = Enum.Material.Metal
  933. p12.CFrame = CFrame.new(-1.5, 6.18969154, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  934. p12.FormFactor = Enum.FormFactor.Custom
  935. p12.Size = Vector3.new(1, 0.25, 1)
  936. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  937. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  938. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  939. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  940. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  941. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  942. b12 = Instance.new("SpecialMesh", p12)
  943. b12.MeshType = Enum.MeshType.Brick
  944. b12.Name = "Mesh"
  945. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  946. p13 = Instance.new("Part", m)
  947. p13.BrickColor = BrickColor.new("Black")
  948. p13.Material = Enum.Material.Metal
  949. p13.CFrame = CFrame.new(-1.5, 5.88968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  950. p13.FormFactor = Enum.FormFactor.Custom
  951. p13.Size = Vector3.new(1, 0.25, 1)
  952. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  953. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  954. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  955. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  956. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  957. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  958. b13 = Instance.new("SpecialMesh", p13)
  959. b13.MeshType = Enum.MeshType.Brick
  960. b13.Name = "Mesh"
  961. b13.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  962. p14 = Instance.new("Part", m)
  963. p14.BrickColor = BrickColor.new("Black")
  964. p14.Material = Enum.Material.Metal
  965. p14.CFrame = CFrame.new(-1.5, 5.58969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  966. p14.FormFactor = Enum.FormFactor.Custom
  967. p14.Size = Vector3.new(1, 0.25, 1)
  968. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  969. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  970. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  971. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  972. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  973. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  974. b14 = Instance.new("SpecialMesh", p14)
  975. b14.MeshType = Enum.MeshType.Brick
  976. b14.Name = "Mesh"
  977. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  978. p15 = Instance.new("Part", m)
  979. p15.BrickColor = BrickColor.new("Lime green")
  980. p15.Material = Enum.Material.Granite
  981. p15.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  982. p15.FormFactor = Enum.FormFactor.Custom
  983. p15.Size = Vector3.new(1, 1, 1)
  984. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  985. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  986. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  987. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  988. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  989. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  990. b15 = Instance.new("SpecialMesh", p15)
  991. b15.MeshType = Enum.MeshType.Sphere
  992. b15.Name = "Mesh"
  993. p16 = Instance.new("Part", m)
  994. p16.BrickColor = BrickColor.new("Black")
  995. p16.Material = Enum.Material.Metal
  996. p16.CFrame = CFrame.new(-1.49142194, 4.80968094, 21.7695732, 1, 1.67448022e-007, -1.06342185e-007, -2.04123751e-007, 0.500000119, -0.866025269, -6.57511308e-008, 0.866025329, 0.5)
  997. p16.FormFactor = Enum.FormFactor.Custom
  998. p16.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  999. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1005. b16 = Instance.new("SpecialMesh", p16)
  1006. b16.MeshType = Enum.MeshType.Brick
  1007. b16.Name = "Mesh"
  1008. b16.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1009. p17 = Instance.new("Part", m)
  1010. p17.BrickColor = BrickColor.new("Black")
  1011. p17.Material = Enum.Material.SmoothPlastic
  1012. p17.CFrame = CFrame.new(-1.50000083, 5.33968592, 22.4999943, 1, -9.44388034e-009, 5.2184074e-008, -7.54702114e-008, 0.999999881, 2.38418579e-007, 2.60919535e-008, 1.1920929e-007, 0.999999881)
  1013. p17.FormFactor = Enum.FormFactor.Custom
  1014. p17.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  1015. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1016. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1017. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1018. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. b17 = Instance.new("SpecialMesh", p17)
  1022. b17.MeshType = Enum.MeshType.Brick
  1023. b17.Name = "Mesh"
  1024. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1025. p18 = Instance.new("Part", m)
  1026. p18.BrickColor = BrickColor.new("Black")
  1027. p18.Material = Enum.Material.SmoothPlastic
  1028. p18.CFrame = CFrame.new(-1.50000072, 5.33968782, 22.4999962, 1, -3.77485776e-008, 7.82760807e-008, -1.03774902e-007, 0.999999881, 3.57627869e-007, 5.21839532e-008, 2.38418565e-007, 0.999999881)
  1029. p18.FormFactor = Enum.FormFactor.Custom
  1030. p18.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  1031. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1032. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1033. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. b18 = Instance.new("SpecialMesh", p18)
  1038. b18.MeshType = Enum.MeshType.Brick
  1039. b18.Name = "Mesh"
  1040. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1041. p19 = Instance.new("Part", m)
  1042. p19.BrickColor = BrickColor.new("Black")
  1043. p19.Material = Enum.Material.SmoothPlastic
  1044. p19.CFrame = CFrame.new(-1.5000006, 5.33968973, 22.4999981, 1, -6.60532748e-008, 1.04368084e-007, -1.32079592e-007, 0.999999881, 4.76837158e-007, 7.82759457e-008, 3.5762784e-007, 0.999999881)
  1045. p19.FormFactor = Enum.FormFactor.Custom
  1046. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1047. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1048. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1049. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1050. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1051. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1052. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. b19 = Instance.new("SpecialMesh", p19)
  1054. b19.MeshType = Enum.MeshType.Brick
  1055. b19.Name = "Mesh"
  1056. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  1057. p20 = Instance.new("Part", m)
  1058. p20.BrickColor = BrickColor.new("Really black")
  1059. p20.Material = Enum.Material.SmoothPlastic
  1060. p20.CFrame = CFrame.new(-1.50000048, 5.33969164, 22.5, 1, -9.4357965e-008, 1.3046008e-007, -1.60384275e-007, 0.999999881, 5.96046448e-007, 1.04367942e-007, 4.76837101e-007, 0.999999881)
  1061. p20.FormFactor = Enum.FormFactor.Custom
  1062. p20.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1063. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1064. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1065. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1066. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1067. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1068. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1069. b20 = Instance.new("SpecialMesh", p20)
  1070. b20.MeshType = Enum.MeshType.Brick
  1071. b20.Name = "Mesh"
  1072. b20.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1073. p21 = Instance.new("Part", m)
  1074. p21.BrickColor = BrickColor.new("Black")
  1075. p21.Material = Enum.Material.Metal
  1076. p21.CFrame = CFrame.new(-1.93255413, 4.43040705, 22.5000057, -1.61368675e-007, -0.707106769, -0.707106769, -4.62050195e-007, -0.707106471, 0.707106948, -0.999999881, -5.86611463e-007, 4.45824725e-007)
  1077. p21.FormFactor = Enum.FormFactor.Custom
  1078. p21.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  1079. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1080. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1081. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1082. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1083. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1084. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1085. b21 = Instance.new("SpecialMesh", p21)
  1086. b21.MeshType = Enum.MeshType.Wedge
  1087. b21.Name = "Mesh"
  1088. b21.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1089. p22 = Instance.new("Part", m)
  1090. p22.BrickColor = BrickColor.new("Black")
  1091. p22.Material = Enum.Material.Metal
  1092. p22.CFrame = CFrame.new(-2.22184062, 4.80970049, 22.5000057, -6.50768897e-008, 0.866025269, 0.50000006, -7.82806978e-007, 0.499999732, -0.866025329, -0.999999881, 3.74247918e-007, -2.56530342e-007)
  1093. p22.FormFactor = Enum.FormFactor.Custom
  1094. p22.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1095. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1097. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1098. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1099. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1100. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1101. b22 = Instance.new("SpecialMesh", p22)
  1102. b22.MeshType = Enum.MeshType.Brick
  1103. b22.Name = "Mesh"
  1104. b22.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1105. p23 = Instance.new("Part", m)
  1106. p23.BrickColor = BrickColor.new("Black")
  1107. p23.Material = Enum.Material.Metal
  1108. p23.CFrame = CFrame.new(-2.41184235, 5.35969734, 22.5000076, -1.73507274e-007, 0.98480767, 0.17364803, -8.28146199e-007, 0.173647702, -0.984807611, -0.999999881, 1.49283139e-007, -3.43238185e-007)
  1109. p23.FormFactor = Enum.FormFactor.Custom
  1110. p23.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1111. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1117. b23 = Instance.new("SpecialMesh", p23)
  1118. b23.MeshType = Enum.MeshType.Brick
  1119. b23.Name = "Mesh"
  1120. b23.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1121. p24 = Instance.new("Part", m)
  1122. p24.BrickColor = BrickColor.new("Black")
  1123. p24.Material = Enum.Material.Metal
  1124. p24.CFrame = CFrame.new(-2.41184616, 5.92969847, 22.5000076, -1.73507232e-007, 0.984807611, -0.173648104, -8.12965368e-007, -0.173648402, -0.984807432, -0.999999881, 2.02498356e-008, -3.8854634e-007)
  1125. p24.FormFactor = Enum.FormFactor.Custom
  1126. p24.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1127. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1133. b24 = Instance.new("SpecialMesh", p24)
  1134. b24.MeshType = Enum.MeshType.Brick
  1135. b24.Name = "Mesh"
  1136. b24.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1137. p25 = Instance.new("Part", m)
  1138. p25.BrickColor = BrickColor.new("Black")
  1139. p25.Material = Enum.Material.Metal
  1140. p25.CFrame = CFrame.new(-2.14142036, 6.39827347, 22.5000114, -7.7074823e-008, 0.707106829, -0.70710659, -7.54731559e-007, -0.707106769, -0.707106471, -0.999999881, -1.79262827e-007, -4.39258827e-007)
  1141. p25.FormFactor = Enum.FormFactor.Custom
  1142. p25.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1143. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1149. b25 = Instance.new("SpecialMesh", p25)
  1150. b25.MeshType = Enum.MeshType.Brick
  1151. b25.Name = "Mesh"
  1152. b25.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1153. p26 = Instance.new("Part", m)
  1154. p26.BrickColor = BrickColor.new("Black")
  1155. p26.Material = Enum.Material.Metal
  1156. p26.CFrame = CFrame.new(-1.49142087, 6.39827442, 23.1500168, -0.999999881, 1.1920929e-007, 2.68220901e-007, 1.49011612e-007, -0.707106948, -0.707106233, -1.77625395e-007, -0.707107306, 0.707106113)
  1157. p26.FormFactor = Enum.FormFactor.Custom
  1158. p26.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1159. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1160. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1161. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1162. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. b26 = Instance.new("SpecialMesh", p26)
  1166. b26.MeshType = Enum.MeshType.Brick
  1167. b26.Name = "Mesh"
  1168. b26.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1169. p27 = Instance.new("Part", m)
  1170. p27.BrickColor = BrickColor.new("Black")
  1171. p27.Material = Enum.Material.Metal
  1172. p27.CFrame = CFrame.new(-1.49141955, 5.92969704, 23.420433, -0.999999881, -3.03310628e-007, 3.64177367e-007, 1.73600242e-007, -0.173648864, -0.984807312, 2.67648517e-008, -0.98480773, 0.173647434)
  1173. p27.FormFactor = Enum.FormFactor.Custom
  1174. p27.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1175. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1178. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1179. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1181. b27 = Instance.new("SpecialMesh", p27)
  1182. b27.MeshType = Enum.MeshType.Brick
  1183. b27.Name = "Mesh"
  1184. b27.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1185. p28 = Instance.new("Part", m)
  1186. p28.BrickColor = BrickColor.new("Black")
  1187. p28.Material = Enum.Material.Metal
  1188. p28.CFrame = CFrame.new(-1.49141943, 5.35969734, 23.4204254, -0.999999881, -3.81113438e-007, 3.10304756e-007, 1.64414772e-007, 0.173647091, -0.984807551, -6.59209363e-008, -0.984807372, -0.17364876)
  1189. p28.FormFactor = Enum.FormFactor.Custom
  1190. p28.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1191. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1192. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1193. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1195. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1196. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1197. b28 = Instance.new("SpecialMesh", p28)
  1198. b28.MeshType = Enum.MeshType.Brick
  1199. b28.Name = "Mesh"
  1200. b28.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1201. p29 = Instance.new("Part", m)
  1202. p29.BrickColor = BrickColor.new("Black")
  1203. p29.Material = Enum.Material.Metal
  1204. p29.CFrame = CFrame.new(-1.49141932, 4.80969858, 23.2304344, -0.999999881, -4.47128798e-007, 1.98065763e-007, 1.97699791e-007, 0.499998987, -0.866025448, -1.51352623e-007, -0.866024613, -0.500000715)
  1205. p29.FormFactor = Enum.FormFactor.Custom
  1206. p29.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1207. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1213. b29 = Instance.new("SpecialMesh", p29)
  1214. b29.MeshType = Enum.MeshType.Brick
  1215. b29.Name = "Mesh"
  1216. b29.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1217. p30 = Instance.new("Part", m)
  1218. p30.BrickColor = BrickColor.new("Black")
  1219. p30.Material = Enum.Material.Metal
  1220. p30.CFrame = CFrame.new(-1.49142027, 4.43040895, 22.9411469, -0.999999881, 4.25206935e-007, 1.94115486e-007, 4.85997248e-007, -0.707105517, 0.707107246, -5.38012159e-008, 0.707105875, 0.707107246)
  1221. p30.FormFactor = Enum.FormFactor.Custom
  1222. p30.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  1223. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. b30 = Instance.new("SpecialMesh", p30)
  1230. b30.MeshType = Enum.MeshType.Wedge
  1231. b30.Name = "Mesh"
  1232. b30.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1233. p31 = Instance.new("Part", m)
  1234. p31.BrickColor = BrickColor.new("Black")
  1235. p31.Material = Enum.Material.Metal
  1236. p31.CFrame = CFrame.new(-1.49141979, 6.39827871, 21.8500175, 0.999999881, 3.40091276e-007, -1.70074486e-007, -5.85792634e-007, -0.707105458, -0.707107246, 1.83170471e-007, 0.707105815, -0.707107365)
  1237. p31.FormFactor = Enum.FormFactor.Custom
  1238. p31.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1239. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1242. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. b31 = Instance.new("SpecialMesh", p31)
  1246. b31.MeshType = Enum.MeshType.Brick
  1247. b31.Name = "Mesh"
  1248. b31.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1249. p32 = Instance.new("Part", m)
  1250. p32.BrickColor = BrickColor.new("Black")
  1251. p32.Material = Enum.Material.Metal
  1252. p32.CFrame = CFrame.new(-1.49141908, 4.43041086, 22.0588818, 0.999999881, -5.29441166e-008, -6.45117154e-007, -3.43892481e-007, -0.707107067, 0.707105517, 1.02492642e-007, -0.707107663, -0.707105637)
  1253. p32.FormFactor = Enum.FormFactor.Custom
  1254. p32.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  1255. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. b32 = Instance.new("SpecialMesh", p32)
  1262. b32.MeshType = Enum.MeshType.Wedge
  1263. b32.Name = "Mesh"
  1264. b32.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1265. p33 = Instance.new("Part", m)
  1266. p33.BrickColor = BrickColor.new("Black")
  1267. p33.Material = Enum.Material.Metal
  1268. p33.CFrame = CFrame.new(-1.4914217, 5.92970181, 21.5795879, 0.999999881, 5.22213554e-007, 2.83446013e-008, -7.00635724e-007, -0.173646629, -0.984807253, 1.38921934e-007, 0.984807372, -0.17364946)
  1269. p33.FormFactor = Enum.FormFactor.Custom
  1270. p33.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1271. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1273. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. b33 = Instance.new("SpecialMesh", p33)
  1278. b33.MeshType = Enum.MeshType.Brick
  1279. b33.Name = "Mesh"
  1280. b33.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1281. p34 = Instance.new("Part", m)
  1282. p34.BrickColor = BrickColor.new("Black")
  1283. p34.Material = Enum.Material.Metal
  1284. p34.CFrame = CFrame.new(-1.49141932, 5.35969925, 21.5795956, 0.999999881, 5.04442426e-007, 2.22697935e-007, -7.44121166e-007, 0.17364943, -0.984806716, 1.65013844e-007, 0.984807849, 0.173646525)
  1285. p34.FormFactor = Enum.FormFactor.Custom
  1286. p34.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  1287. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. b34 = Instance.new("SpecialMesh", p34)
  1294. b34.MeshType = Enum.MeshType.Brick
  1295. b34.Name = "Mesh"
  1296. b34.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  1297. w1 = Instance.new("Weld", p1)
  1298. w1.Name = "Part_Weld"
  1299. w1.Part0 = p1
  1300. w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1301. w1.Part1 = p2
  1302. w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1303. w2 = Instance.new("Weld", p2)
  1304. w2.Name = "Part_Weld"
  1305. w2.Part0 = p2
  1306. w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1307. w2.Part1 = p3
  1308. w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1309. w3 = Instance.new("Weld", p3)
  1310. w3.Name = "LeftArmPlate_Weld"
  1311. w3.Part0 = p3
  1312. w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1313. w3.Part1 = p4
  1314. w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1315. w4 = Instance.new("Weld", p4)
  1316. w4.Name = "Part_Weld"
  1317. w4.Part0 = p4
  1318. w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1319. w4.Part1 = p5
  1320. w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1321. w5 = Instance.new("Weld", p5)
  1322. w5.Name = "Part_Weld"
  1323. w5.Part0 = p5
  1324. w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1325. w5.Part1 = p6
  1326. w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1327. w6 = Instance.new("Weld", p6)
  1328. w6.Name = "Part_Weld"
  1329. w6.Part0 = p6
  1330. w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1331. w6.Part1 = p7
  1332. w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1333. w7 = Instance.new("Weld", p7)
  1334. w7.Name = "Part_Weld"
  1335. w7.Part0 = p7
  1336. w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1337. w7.Part1 = p8
  1338. w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1339. w8 = Instance.new("Weld", p8)
  1340. w8.Name = "Part_Weld"
  1341. w8.Part0 = p8
  1342. w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1343. w8.Part1 = p9
  1344. w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1345. w9 = Instance.new("Weld", p9)
  1346. w9.Name = "Part_Weld"
  1347. w9.Part0 = p9
  1348. w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1349. w9.Part1 = p10
  1350. w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1351. w10 = Instance.new("Weld", p10)
  1352. w10.Name = "Part_Weld"
  1353. w10.Part0 = p10
  1354. w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1355. w10.Part1 = p11
  1356. w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1357. w11 = Instance.new("Weld", p11)
  1358. w11.Name = "Part_Weld"
  1359. w11.Part0 = p11
  1360. w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1361. w11.Part1 = p12
  1362. w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1363. w12 = Instance.new("Weld", p12)
  1364. w12.Name = "Part_Weld"
  1365. w12.Part0 = p12
  1366. w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1367. w12.Part1 = p13
  1368. w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1369. w13 = Instance.new("Weld", p13)
  1370. w13.Name = "Part_Weld"
  1371. w13.Part0 = p13
  1372. w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1373. w13.Part1 = p14
  1374. w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1375. w14 = Instance.new("Weld", p14)
  1376. w14.Name = "Part_Weld"
  1377. w14.Part0 = p14
  1378. w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1379. w14.Part1 = p15
  1380. w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1381. w15 = Instance.new("Weld", p15)
  1382. w15.Name = "Part_Weld"
  1383. w15.Part0 = p15
  1384. w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1385. w15.Part1 = p16
  1386. w15.C1 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
  1387. w16 = Instance.new("Weld", p16)
  1388. w16.Name = "Part_Weld"
  1389. w16.Part0 = p16
  1390. w16.C0 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
  1391. w16.Part1 = p17
  1392. w16.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1393. w17 = Instance.new("Weld", p17)
  1394. w17.Name = "Part_Weld"
  1395. w17.Part0 = p17
  1396. w17.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1397. w17.Part1 = p18
  1398. w17.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1399. w18 = Instance.new("Weld", p18)
  1400. w18.Name = "Part_Weld"
  1401. w18.Part0 = p18
  1402. w18.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1403. w18.Part1 = p19
  1404. w18.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1405. w19 = Instance.new("Weld", p19)
  1406. w19.Name = "Part_Weld"
  1407. w19.Part0 = p19
  1408. w19.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1409. w19.Part1 = p20
  1410. w19.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1411. w20 = Instance.new("Weld", p20)
  1412. w20.Name = "Part_Weld"
  1413. w20.Part0 = p20
  1414. w20.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  1415. w20.Part1 = p21
  1416. w20.C1 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
  1417. w21 = Instance.new("Weld", p21)
  1418. w21.Name = "Part_Weld"
  1419. w21.Part0 = p21
  1420. w21.C0 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
  1421. w21.Part1 = p22
  1422. w21.C1 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
  1423. w22 = Instance.new("Weld", p22)
  1424. w22.Name = "Part_Weld"
  1425. w22.Part0 = p22
  1426. w22.C0 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
  1427. w22.Part1 = p23
  1428. w22.C1 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
  1429. w23 = Instance.new("Weld", p23)
  1430. w23.Name = "Part_Weld"
  1431. w23.Part0 = p23
  1432. w23.C0 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
  1433. w23.Part1 = p24
  1434. w23.C1 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
  1435. w24 = Instance.new("Weld", p24)
  1436. w24.Name = "Part_Weld"
  1437. w24.Part0 = p24
  1438. w24.C0 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
  1439. w24.Part1 = p25
  1440. w24.C1 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
  1441. w25 = Instance.new("Weld", p25)
  1442. w25.Name = "Part_Weld"
  1443. w25.Part0 = p25
  1444. w25.C0 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
  1445. w25.Part1 = p26
  1446. w25.C1 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
  1447. w26 = Instance.new("Weld", p26)
  1448. w26.Name = "Part_Weld"
  1449. w26.Part0 = p26
  1450. w26.C0 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
  1451. w26.Part1 = p27
  1452. w26.C1 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
  1453. w27 = Instance.new("Weld", p27)
  1454. w27.Name = "Part_Weld"
  1455. w27.Part0 = p27
  1456. w27.C0 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
  1457. w27.Part1 = p28
  1458. w27.C1 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
  1459. w28 = Instance.new("Weld", p28)
  1460. w28.Name = "Part_Weld"
  1461. w28.Part0 = p28
  1462. w28.C0 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
  1463. w28.Part1 = p29
  1464. w28.C1 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
  1465. w29 = Instance.new("Weld", p29)
  1466. w29.Name = "Part_Weld"
  1467. w29.Part0 = p29
  1468. w29.C0 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
  1469. w29.Part1 = p30
  1470. w29.C1 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
  1471. w30 = Instance.new("Weld", p30)
  1472. w30.Name = "Part_Weld"
  1473. w30.Part0 = p30
  1474. w30.C0 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
  1475. w30.Part1 = p31
  1476. w30.C1 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
  1477. w31 = Instance.new("Weld", p31)
  1478. w31.Name = "Part_Weld"
  1479. w31.Part0 = p31
  1480. w31.C0 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
  1481. w31.Part1 = p32
  1482. w31.C1 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
  1483. w32 = Instance.new("Weld", p32)
  1484. w32.Name = "Part_Weld"
  1485. w32.Part0 = p32
  1486. w32.C0 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
  1487. w32.Part1 = p33
  1488. w32.C1 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
  1489. w33 = Instance.new("Weld", p33)
  1490. w33.Name = "Part_Weld"
  1491. w33.Part0 = p33
  1492. w33.C0 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
  1493. w33.Part1 = p34
  1494. w33.C1 = CFrame.new(1.49143016, -24.2940445, 13.5065851, 1, -2.49463085e-007, -1.74181523e-007, 2.35634644e-007, 0.173648074, 0.98480773, -1.83021399e-007, -0.98480773, 0.17364794)
  1495. m.Parent = larm
  1496. m:MakeJoints()
  1497. ----------------------------------------------------
  1498. local cor = Instance.new("Part", larm.LeftArm)
  1499. cor.Name = "Thingy"
  1500. cor.Locked = true
  1501. cor.BottomSurface = 0
  1502. cor.CanCollide = false
  1503. cor.Size = Vector3.new(1, 1, 1)
  1504. cor.Transparency = 1
  1505. cor.TopSurface = 0
  1506. corw = Instance.new("Weld", cor)
  1507. corw.Part0 = larm
  1508. corw.Part1 = cor
  1509. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1510. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1511. weld1 = Instance.new("Weld", larm.LeftArm)
  1512. weld1.Part0 = cor
  1513. weld1.Part1 = larm.LeftArm.LeftArmPlate
  1514. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1515. --Right Arm
  1516. m2 = Instance.new("Model")
  1517. m2.Name = "RightArm"
  1518. p1 = Instance.new("Part", m2)
  1519. p1.BrickColor = BrickColor.new("Lime green")
  1520. p1.Material = Enum.Material.Granite
  1521. p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1522. p1.FormFactor = Enum.FormFactor.Custom
  1523. p1.Size = Vector3.new(1, 0.200000048, 1)
  1524. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1525. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1526. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1527. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1528. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1529. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. b1 = Instance.new("SpecialMesh", p1)
  1531. b1.MeshType = Enum.MeshType.Brick
  1532. b1.Name = "Mesh"
  1533. b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1534. p2 = Instance.new("Part", m2)
  1535. p2.BrickColor = BrickColor.new("Lime green")
  1536. p2.Material = Enum.Material.Granite
  1537. p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1538. p2.FormFactor = Enum.FormFactor.Custom
  1539. p2.Size = Vector3.new(1, 0.200000048, 1)
  1540. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1541. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1542. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1543. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1544. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1545. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1546. b2 = Instance.new("SpecialMesh", p2)
  1547. b2.MeshType = Enum.MeshType.Brick
  1548. b2.Name = "Mesh"
  1549. b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1550. p3 = Instance.new("Part", m2)
  1551. p3.BrickColor = BrickColor.new("Lime green")
  1552. p3.Material = Enum.Material.Granite
  1553. p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1554. p3.FormFactor = Enum.FormFactor.Custom
  1555. p3.Size = Vector3.new(1, 0.200000048, 1)
  1556. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1557. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1558. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1559. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1560. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1561. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1562. b3 = Instance.new("SpecialMesh", p3)
  1563. b3.MeshType = Enum.MeshType.Brick
  1564. b3.Name = "Mesh"
  1565. b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1566. p4 = Instance.new("Part", m2)
  1567. p4.BrickColor = BrickColor.new("Lime green")
  1568. p4.Material = Enum.Material.Granite
  1569. p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1570. p4.FormFactor = Enum.FormFactor.Custom
  1571. p4.Size = Vector3.new(1, 0.200000048, 1)
  1572. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1573. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1574. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1575. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1576. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1577. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1578. b4 = Instance.new("SpecialMesh", p4)
  1579. b4.MeshType = Enum.MeshType.Brick
  1580. b4.Name = "Mesh"
  1581. b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1582. p5 = Instance.new("Part", m2)
  1583. p5.BrickColor = BrickColor.new("Lime green")
  1584. p5.Material = Enum.Material.Granite
  1585. p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1586. p5.FormFactor = Enum.FormFactor.Custom
  1587. p5.Size = Vector3.new(1, 0.200000048, 1)
  1588. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1590. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1591. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1592. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1593. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1594. b5 = Instance.new("SpecialMesh", p5)
  1595. b5.MeshType = Enum.MeshType.Brick
  1596. b5.Name = "Mesh"
  1597. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1598. p6 = Instance.new("Part", m2)
  1599. p6.BrickColor = BrickColor.new("Lime green")
  1600. p6.Material = Enum.Material.Granite
  1601. p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1602. p6.FormFactor = Enum.FormFactor.Custom
  1603. p6.Size = Vector3.new(1, 1, 1)
  1604. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1605. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1607. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1608. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1609. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1610. b6 = Instance.new("SpecialMesh", p6)
  1611. b6.MeshType = Enum.MeshType.Sphere
  1612. b6.Name = "Mesh"
  1613. p7 = Instance.new("Part", m2)
  1614. p7.BrickColor = BrickColor.new("Black")
  1615. p7.Material = Enum.Material.SmoothPlastic
  1616. p7.Name = "RightArmPlate"
  1617. p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1618. p7.FormFactor = Enum.FormFactor.Symmetric
  1619. p7.Size = Vector3.new(1, 2, 1)
  1620. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1621. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1622. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1623. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1626. b7 = Instance.new("SpecialMesh", p7)
  1627. b7.MeshType = Enum.MeshType.Brick
  1628. b7.Name = "Mesh"
  1629. b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1630. p8 = Instance.new("Part", m2)
  1631. p8.BrickColor = BrickColor.new("Lime green")
  1632. p8.Material = Enum.Material.Granite
  1633. p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1634. p8.FormFactor = Enum.FormFactor.Custom
  1635. p8.Size = Vector3.new(1, 0.200000048, 1)
  1636. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1637. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1638. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1639. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1640. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1641. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1642. b8 = Instance.new("SpecialMesh", p8)
  1643. b8.MeshType = Enum.MeshType.Brick
  1644. b8.Name = "Mesh"
  1645. b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1646. p9 = Instance.new("Part", m2)
  1647. p9.BrickColor = BrickColor.new("Black")
  1648. p9.Material = Enum.Material.SmoothPlastic
  1649. p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1650. p9.FormFactor = Enum.FormFactor.Custom
  1651. p9.Size = Vector3.new(1, 0.349999994, 1)
  1652. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1653. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1654. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1655. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1656. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1657. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1658. b9 = Instance.new("SpecialMesh", p9)
  1659. b9.MeshType = Enum.MeshType.Brick
  1660. b9.Name = "Mesh"
  1661. b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  1662. p10 = Instance.new("Part", m2)
  1663. p10.BrickColor = BrickColor.new("Black")
  1664. p10.Material = Enum.Material.Metal
  1665. p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1666. p10.FormFactor = Enum.FormFactor.Custom
  1667. p10.Size = Vector3.new(1, 0.25, 1)
  1668. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1669. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1670. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1671. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1672. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1673. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1674. b10 = Instance.new("SpecialMesh", p10)
  1675. b10.MeshType = Enum.MeshType.Brick
  1676. b10.Name = "Mesh"
  1677. b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1678. p11 = Instance.new("Part", m2)
  1679. p11.BrickColor = BrickColor.new("Black")
  1680. p11.Material = Enum.Material.Metal
  1681. p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1682. p11.FormFactor = Enum.FormFactor.Custom
  1683. p11.Size = Vector3.new(1, 0.25, 1)
  1684. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1685. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1686. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1687. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1688. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1689. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1690. b11 = Instance.new("SpecialMesh", p11)
  1691. b11.MeshType = Enum.MeshType.Brick
  1692. b11.Name = "Mesh"
  1693. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1694. p12 = Instance.new("Part", m2)
  1695. p12.BrickColor = BrickColor.new("Black")
  1696. p12.Material = Enum.Material.Metal
  1697. p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1698. p12.FormFactor = Enum.FormFactor.Custom
  1699. p12.Size = Vector3.new(1, 0.25, 1)
  1700. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1701. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1702. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1703. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1704. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1705. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1706. b12 = Instance.new("SpecialMesh", p12)
  1707. b12.MeshType = Enum.MeshType.Brick
  1708. b12.Name = "Mesh"
  1709. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1710. p13 = Instance.new("Part", m2)
  1711. p13.BrickColor = BrickColor.new("Lime green")
  1712. p13.Material = Enum.Material.Granite
  1713. p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1714. p13.FormFactor = Enum.FormFactor.Custom
  1715. p13.Size = Vector3.new(1, 0.200000048, 1)
  1716. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1717. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1719. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1720. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1721. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1722. b13 = Instance.new("SpecialMesh", p13)
  1723. b13.MeshType = Enum.MeshType.Brick
  1724. b13.Name = "Mesh"
  1725. b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1726. p14 = Instance.new("Part", m2)
  1727. p14.BrickColor = BrickColor.new("Black")
  1728. p14.Material = Enum.Material.Metal
  1729. p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1730. p14.FormFactor = Enum.FormFactor.Custom
  1731. p14.Size = Vector3.new(1, 0.25, 1)
  1732. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1733. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1734. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1735. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1736. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1737. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1738. b14 = Instance.new("SpecialMesh", p14)
  1739. b14.MeshType = Enum.MeshType.Brick
  1740. b14.Name = "Mesh"
  1741. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1742. p15 = Instance.new("Part", m2)
  1743. p15.BrickColor = BrickColor.new("Lime green")
  1744. p15.Material = Enum.Material.Granite
  1745. p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1746. p15.FormFactor = Enum.FormFactor.Custom
  1747. p15.Size = Vector3.new(1, 0.200000048, 1)
  1748. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1749. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1750. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1751. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1753. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1754. b15 = Instance.new("SpecialMesh", p15)
  1755. b15.MeshType = Enum.MeshType.Brick
  1756. b15.Name = "Mesh"
  1757. b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1758. p16 = Instance.new("Part", m2)
  1759. p16.BrickColor = BrickColor.new("Black")
  1760. p16.Material = Enum.Material.SmoothPlastic
  1761. p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1762. p16.FormFactor = Enum.FormFactor.Custom
  1763. p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  1764. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1765. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1766. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1767. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1768. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1769. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1770. b16 = Instance.new("SpecialMesh", p16)
  1771. b16.MeshType = Enum.MeshType.Brick
  1772. b16.Name = "Mesh"
  1773. b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1774. p17 = Instance.new("Part", m2)
  1775. p17.BrickColor = BrickColor.new("Black")
  1776. p17.Material = Enum.Material.SmoothPlastic
  1777. p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1778. p17.FormFactor = Enum.FormFactor.Custom
  1779. p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  1780. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1781. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1782. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1783. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1784. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1785. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1786. b17 = Instance.new("SpecialMesh", p17)
  1787. b17.MeshType = Enum.MeshType.Brick
  1788. b17.Name = "Mesh"
  1789. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1790. p18 = Instance.new("Part", m2)
  1791. p18.BrickColor = BrickColor.new("Really black")
  1792. p18.Material = Enum.Material.SmoothPlastic
  1793. p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1794. p18.FormFactor = Enum.FormFactor.Custom
  1795. p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1796. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1797. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1798. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1799. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1800. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1801. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1802. b18 = Instance.new("SpecialMesh", p18)
  1803. b18.MeshType = Enum.MeshType.Brick
  1804. b18.Name = "Mesh"
  1805. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1806. p19 = Instance.new("Part", m2)
  1807. p19.BrickColor = BrickColor.new("Black")
  1808. p19.Material = Enum.Material.SmoothPlastic
  1809. p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1810. p19.FormFactor = Enum.FormFactor.Custom
  1811. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1812. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1813. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1814. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1815. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1816. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1817. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1818. b19 = Instance.new("SpecialMesh", p19)
  1819. b19.MeshType = Enum.MeshType.Brick
  1820. b19.Name = "Mesh"
  1821. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  1822. w1 = Instance.new("Weld", p1)
  1823. w1.Name = "Part_Weld"
  1824. w1.Part0 = p1
  1825. w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1826. w1.Part1 = p2
  1827. w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1828. w2 = Instance.new("Weld", p2)
  1829. w2.Name = "Part_Weld"
  1830. w2.Part0 = p2
  1831. w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1832. w2.Part1 = p3
  1833. w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1834. w3 = Instance.new("Weld", p3)
  1835. w3.Name = "Part_Weld"
  1836. w3.Part0 = p3
  1837. w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1838. w3.Part1 = p4
  1839. w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1840. w4 = Instance.new("Weld", p4)
  1841. w4.Name = "Part_Weld"
  1842. w4.Part0 = p4
  1843. w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1844. w4.Part1 = p5
  1845. w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1846. w5 = Instance.new("Weld", p5)
  1847. w5.Name = "Part_Weld"
  1848. w5.Part0 = p5
  1849. w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1850. w5.Part1 = p6
  1851. w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1852. w6 = Instance.new("Weld", p6)
  1853. w6.Name = "RightArmPlate_Weld"
  1854. w6.Part0 = p6
  1855. w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1856. w6.Part1 = p7
  1857. w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1858. w7 = Instance.new("Weld", p7)
  1859. w7.Name = "Part_Weld"
  1860. w7.Part0 = p7
  1861. w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1862. w7.Part1 = p8
  1863. w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1864. w8 = Instance.new("Weld", p8)
  1865. w8.Name = "Part_Weld"
  1866. w8.Part0 = p8
  1867. w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1868. w8.Part1 = p9
  1869. w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1870. w9 = Instance.new("Weld", p9)
  1871. w9.Name = "Part_Weld"
  1872. w9.Part0 = p9
  1873. w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1874. w9.Part1 = p10
  1875. w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1876. w10 = Instance.new("Weld", p10)
  1877. w10.Name = "Part_Weld"
  1878. w10.Part0 = p10
  1879. w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1880. w10.Part1 = p11
  1881. w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1882. w11 = Instance.new("Weld", p11)
  1883. w11.Name = "Part_Weld"
  1884. w11.Part0 = p11
  1885. w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1886. w11.Part1 = p12
  1887. w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1888. w12 = Instance.new("Weld", p12)
  1889. w12.Name = "Part_Weld"
  1890. w12.Part0 = p12
  1891. w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1892. w12.Part1 = p13
  1893. w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1894. w13 = Instance.new("Weld", p13)
  1895. w13.Name = "Part_Weld"
  1896. w13.Part0 = p13
  1897. w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1898. w13.Part1 = p14
  1899. w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1900. w14 = Instance.new("Weld", p14)
  1901. w14.Name = "Part_Weld"
  1902. w14.Part0 = p14
  1903. w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1904. w14.Part1 = p15
  1905. w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1906. w15 = Instance.new("Weld", p15)
  1907. w15.Name = "Part_Weld"
  1908. w15.Part0 = p15
  1909. w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1910. w15.Part1 = p16
  1911. w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1912. w16 = Instance.new("Weld", p16)
  1913. w16.Name = "Part_Weld"
  1914. w16.Part0 = p16
  1915. w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1916. w16.Part1 = p17
  1917. w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1918. w17 = Instance.new("Weld", p17)
  1919. w17.Name = "Part_Weld"
  1920. w17.Part0 = p17
  1921. w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1922. w17.Part1 = p18
  1923. w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1924. w18 = Instance.new("Weld", p18)
  1925. w18.Name = "Part_Weld"
  1926. w18.Part0 = p18
  1927. w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1928. w18.Part1 = p19
  1929. w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1930. m2.Parent = rarm
  1931. m2:MakeJoints()
  1932. ----------------------------------------------------
  1933. local cor2 = Instance.new("Part", rarm.RightArm)
  1934. cor2.Name = "Thingy"
  1935. cor2.Locked = true
  1936. cor2.BottomSurface = 0
  1937. cor2.CanCollide = false
  1938. cor2.Size = Vector3.new(1, 1, 1)
  1939. cor2.Transparency = 1
  1940. cor2.TopSurface = 0
  1941. corw2 = Instance.new("Weld", cor2)
  1942. corw2.Part0 = rarm
  1943. corw2.Part1 = cor2
  1944. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1945. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1946. weld2 = Instance.new("Weld", rarm.RightArm)
  1947. weld2.Part0 = cor2
  1948. weld2.Part1 = rarm.RightArm.RightArmPlate
  1949. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1950. --Torso
  1951. m3 = Instance.new("Model")
  1952. m3.Name = "Torso"
  1953. p1 = Instance.new("Part", m3)
  1954. p1.BrickColor = BrickColor.new("Really black")
  1955. p1.Material = Enum.Material.Metal
  1956. p1.Name = "TorsoPlate"
  1957. p1.CFrame = CFrame.new(0, 3.10002589, 0.50000006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1958. p1.CanCollide = false
  1959. p1.Locked = true
  1960. p1.FormFactor = Enum.FormFactor.Custom
  1961. p1.Size = Vector3.new(2, 2, 1)
  1962. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1963. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1964. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1965. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1966. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1967. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1968. b1 = Instance.new("SpecialMesh", p1)
  1969. b1.MeshType = Enum.MeshType.Brick
  1970. b1.Name = "Mesh"
  1971. b1.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1972. p2 = Instance.new("Part", m3)
  1973. p2.BrickColor = BrickColor.new("Really black")
  1974. p2.Material = Enum.Material.Metal
  1975. p2.CFrame = CFrame.new(-0.450000942, 4.05002356, -0.100002818, -0.685070276, 0.686094284, 0.244853854, 0.616745472, 0.367372453, 0.696177125, 0.387690574, 0.627942622, -0.674821496)
  1976. p2.CanCollide = false
  1977. p2.Locked = true
  1978. p2.FormFactor = Enum.FormFactor.Custom
  1979. p2.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1980. b2 = Instance.new("SpecialMesh", p2)
  1981. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1982. b2.TextureId = ""
  1983. b2.MeshType = Enum.MeshType.FileMesh
  1984. b2.Name = "Mesh"
  1985. b2.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1986. p3 = Instance.new("Part", m3)
  1987. p3.BrickColor = BrickColor.new("Black")
  1988. p3.Material = Enum.Material.Metal
  1989. p3.CFrame = CFrame.new(0, 3.10002589, 0.970001996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1990. p3.CanCollide = false
  1991. p3.Locked = true
  1992. p3.FormFactor = Enum.FormFactor.Custom
  1993. p3.Size = Vector3.new(2, 2, 0.200000018)
  1994. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1995. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1996. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1997. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1998. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1999. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2000. b3 = Instance.new("SpecialMesh", p3)
  2001. b3.MeshType = Enum.MeshType.Brick
  2002. b3.Name = "Mesh"
  2003. b3.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2004. p4 = Instance.new("Part", m3)
  2005. p4.BrickColor = BrickColor.new("Black")
  2006. p4.Material = Enum.Material.Metal
  2007. p4.CFrame = CFrame.new(0, 4.00002623, 0.529999971, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  2008. p4.CanCollide = false
  2009. p4.Locked = true
  2010. p4.FormFactor = Enum.FormFactor.Custom
  2011. p4.Size = Vector3.new(2, 1.04000008, 0.239999995)
  2012. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2013. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2014. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2015. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2016. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2017. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2018. b4 = Instance.new("SpecialMesh", p4)
  2019. b4.MeshType = Enum.MeshType.Brick
  2020. b4.Name = "Mesh"
  2021. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2022. p5 = Instance.new("Part", m3)
  2023. p5.BrickColor = BrickColor.new("Black")
  2024. p5.Material = Enum.Material.Metal
  2025. p5.CFrame = CFrame.new(-0.499999821, 3.15002489, 0.0999978557, 7.54979084e-008, 1, 0, 4.37113918e-008, 0, 1, 1, -7.54978942e-008, -4.37113883e-008)
  2026. p5.CanCollide = false
  2027. p5.Locked = true
  2028. p5.FormFactor = Enum.FormFactor.Custom
  2029. p5.Size = Vector3.new(0.300000012, 1, 1.89999998)
  2030. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2031. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2032. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2033. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2034. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2035. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2036. b5 = Instance.new("SpecialMesh", p5)
  2037. b5.MeshType = Enum.MeshType.Wedge
  2038. b5.Name = "Mesh"
  2039. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2040. p6 = Instance.new("Part", m3)
  2041. p6.BrickColor = BrickColor.new("Black")
  2042. p6.Material = Enum.Material.Metal
  2043. p6.CFrame = CFrame.new(0.500000179, 3.15002489, 0.0999980345, -4.37113918e-008, -1, 0, -4.37113812e-008, 0, 1, -1, 4.37113847e-008, -4.37113883e-008)
  2044. p6.CanCollide = false
  2045. p6.Locked = true
  2046. p6.FormFactor = Enum.FormFactor.Custom
  2047. p6.Size = Vector3.new(0.300000012, 0.99999994, 1.89999998)
  2048. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2049. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2050. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2051. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2052. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2053. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2054. b6 = Instance.new("SpecialMesh", p6)
  2055. b6.MeshType = Enum.MeshType.Wedge
  2056. b6.Name = "Mesh"
  2057. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2058. p7 = Instance.new("Part", m3)
  2059. p7.BrickColor = BrickColor.new("Black")
  2060. p7.Material = Enum.Material.Metal
  2061. p7.CFrame = CFrame.new(1.63912773e-007, 3.20002794, 0.0999980569, -3.09086197e-008, -0.707106829, -0.707106769, -7.46200044e-008, -0.707106769, 0.707106829, -1, 7.46200044e-008, -3.09086197e-008)
  2062. p7.CanCollide = false
  2063. p7.Locked = true
  2064. p7.FormFactor = Enum.FormFactor.Custom
  2065. p7.Size = Vector3.new(0.300000012, 1.20000005, 1.20000005)
  2066. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2067. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2068. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2069. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. b7 = Instance.new("SpecialMesh", p7)
  2073. b7.MeshType = Enum.MeshType.Wedge
  2074. b7.Name = "Mesh"
  2075. p8 = Instance.new("Part", m3)
  2076. p8.BrickColor = BrickColor.new("Black")
  2077. p8.Material = Enum.Material.Metal
  2078. p8.CFrame = CFrame.new(-1, 3.10002613, 0.520000935, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2079. p8.CanCollide = false
  2080. p8.Locked = true
  2081. p8.FormFactor = Enum.FormFactor.Custom
  2082. p8.Size = Vector3.new(1, 2, 0.200000018)
  2083. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2084. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2085. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2086. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. b8 = Instance.new("SpecialMesh", p8)
  2090. b8.MeshType = Enum.MeshType.Brick
  2091. b8.Name = "Mesh"
  2092. b8.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2093. p9 = Instance.new("Part", m3)
  2094. p9.BrickColor = BrickColor.new("Black")
  2095. p9.Material = Enum.Material.Metal
  2096. p9.CFrame = CFrame.new(1, 3.10002613, 0.520001054, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2097. p9.CanCollide = false
  2098. p9.Locked = true
  2099. p9.FormFactor = Enum.FormFactor.Custom
  2100. p9.Size = Vector3.new(1, 2, 0.200000018)
  2101. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2102. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2103. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2104. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2105. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2106. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. b9 = Instance.new("SpecialMesh", p9)
  2108. b9.MeshType = Enum.MeshType.Brick
  2109. b9.Name = "Mesh"
  2110. b9.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2111. p10 = Instance.new("Part", m3)
  2112. p10.BrickColor = BrickColor.new("Black")
  2113. p10.Material = Enum.Material.Metal
  2114. p10.CFrame = CFrame.new(0, 2.05002642, 0.539999843, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  2115. p10.CanCollide = false
  2116. p10.Locked = true
  2117. p10.FormFactor = Enum.FormFactor.Custom
  2118. p10.Size = Vector3.new(2, 1.0200001, 0.239999995)
  2119. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2120. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2121. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2122. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2123. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. b10 = Instance.new("SpecialMesh", p10)
  2126. b10.MeshType = Enum.MeshType.Brick
  2127. b10.Name = "Mesh"
  2128. b10.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2129. p11 = Instance.new("Part", m3)
  2130. p11.BrickColor = BrickColor.new("Really black")
  2131. p11.Material = Enum.Material.Metal
  2132. p11.CFrame = CFrame.new(0.499999523, 4.05002451, -0.0499982014, 1.00000024, -8.94069672e-008, -1.78813934e-007, -2.98023224e-008, 0.906307817, -0.422618449, -2.23517418e-007, 0.42261821, 0.906307697)
  2133. p11.CanCollide = false
  2134. p11.Locked = true
  2135. p11.FormFactor = Enum.FormFactor.Custom
  2136. p11.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2137. b11 = Instance.new("SpecialMesh", p11)
  2138. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2139. b11.TextureId = ""
  2140. b11.MeshType = Enum.MeshType.FileMesh
  2141. b11.Name = "Mesh"
  2142. b11.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2143. p12 = Instance.new("Part", m3)
  2144. p12.BrickColor = BrickColor.new("Really black")
  2145. p12.Material = Enum.Material.Metal
  2146. p12.Transparency = 1
  2147. p12.Name = "Chain2Torso"
  2148. p12.CFrame = CFrame.new(0.0500000007, 3.35002589, 0.0200020671, -4.37113883e-008, -1, 0, -4.37113883e-008, 1.91068547e-015, -1, 1, -4.37113883e-008, -4.37113883e-008)
  2149. p12.CanCollide = false
  2150. p12.Locked = true
  2151. p12.FormFactor = Enum.FormFactor.Custom
  2152. p12.Size = Vector3.new(0.699999988, 0.300000012, 0.300000012)
  2153. b12 = Instance.new("SpecialMesh", p12)
  2154. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2155. b12.TextureId = ""
  2156. b12.MeshType = Enum.MeshType.FileMesh
  2157. b12.Name = "Mesh"
  2158. b12.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2159. p13 = Instance.new("Part", m3)
  2160. p13.BrickColor = BrickColor.new("Really black")
  2161. p13.Material = Enum.Material.Metal
  2162. p13.CFrame = CFrame.new(-0.700000763, 4.25002289, 0.349998087, -0.606457233, -0.374239564, 0.70153743, -0.641863465, -0.290311694, -0.709739804, 0.469277143, -0.880717754, -0.0641489923)
  2163. p13.CanCollide = false
  2164. p13.Locked = true
  2165. p13.FormFactor = Enum.FormFactor.Custom
  2166. p13.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2167. b13 = Instance.new("SpecialMesh", p13)
  2168. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2169. b13.TextureId = ""
  2170. b13.MeshType = Enum.MeshType.FileMesh
  2171. b13.Name = "Mesh"
  2172. b13.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2173. p14 = Instance.new("Part", m3)
  2174. p14.BrickColor = BrickColor.new("Really black")
  2175. p14.Material = Enum.Material.Metal
  2176. p14.CFrame = CFrame.new(-0.0500002243, 3.50002766, -0.150001988, -0.331867754, 0.457445055, -0.824989557, 0.877285957, -0.171802372, -0.448166817, -0.346746802, -0.87248385, -0.344294399)
  2177. p14.CanCollide = false
  2178. p14.Locked = true
  2179. p14.FormFactor = Enum.FormFactor.Custom
  2180. p14.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2181. b14 = Instance.new("SpecialMesh", p14)
  2182. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2183. b14.TextureId = ""
  2184. b14.MeshType = Enum.MeshType.FileMesh
  2185. b14.Name = "Mesh"
  2186. b14.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2187. p15 = Instance.new("Part", m3)
  2188. p15.BrickColor = BrickColor.new("Really black")
  2189. p15.Material = Enum.Material.Metal
  2190. p15.CFrame = CFrame.new(0.199999034, 3.55002332, -0.150001839, -0.0627828911, -0.802308202, -0.593599737, 0.678633273, -0.470427632, 0.564052343, -0.731789052, -0.367423117, 0.57400763)
  2191. p15.CanCollide = false
  2192. p15.Locked = true
  2193. p15.FormFactor = Enum.FormFactor.Custom
  2194. p15.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2195. b15 = Instance.new("SpecialMesh", p15)
  2196. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2197. b15.TextureId = ""
  2198. b15.MeshType = Enum.MeshType.FileMesh
  2199. b15.Name = "Mesh"
  2200. b15.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2201. p16 = Instance.new("Part", m3)
  2202. p16.BrickColor = BrickColor.new("Really black")
  2203. p16.Material = Enum.Material.Metal
  2204. p16.CFrame = CFrame.new(0.349999189, 3.70002842, -0.150001973, 0.994292557, 0.0709807873, 0.0796526894, -0.0587368309, 0.987431884, -0.146726117, -0.0890666768, 0.141209915, 0.985964835)
  2205. p16.CanCollide = false
  2206. p16.Locked = true
  2207. p16.FormFactor = Enum.FormFactor.Custom
  2208. p16.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2209. b16 = Instance.new("SpecialMesh", p16)
  2210. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2211. b16.TextureId = ""
  2212. b16.MeshType = Enum.MeshType.FileMesh
  2213. b16.Name = "Mesh"
  2214. b16.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2215. p17 = Instance.new("Part", m3)
  2216. p17.BrickColor = BrickColor.new("Really black")
  2217. p17.Material = Enum.Material.Metal
  2218. p17.CFrame = CFrame.new(-0.200000346, 3.70002747, -0.150002211, 0.964791715, 0.0184034109, -0.262370646, -0.0587368906, 0.987431884, -0.146726027, 0.256372869, 0.156970888, 0.953746974)
  2219. p17.CanCollide = false
  2220. p17.Locked = true
  2221. p17.FormFactor = Enum.FormFactor.Custom
  2222. p17.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2223. b17 = Instance.new("SpecialMesh", p17)
  2224. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2225. b17.TextureId = ""
  2226. b17.MeshType = Enum.MeshType.FileMesh
  2227. b17.Name = "Mesh"
  2228. b17.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2229. p18 = Instance.new("Part", m3)
  2230. p18.BrickColor = BrickColor.new("Really black")
  2231. p18.Material = Enum.Material.Metal
  2232. p18.CFrame = CFrame.new(-0.35000062, 3.85002661, -0.150002271, 0.407530367, -0.427938014, 0.806714416, 0.0989350602, 0.898891687, 0.426855773, -0.907816589, -0.0941444039, 0.40866372)
  2233. p18.CanCollide = false
  2234. p18.Locked = true
  2235. p18.FormFactor = Enum.FormFactor.Custom
  2236. p18.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2237. b18 = Instance.new("SpecialMesh", p18)
  2238. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2239. b18.TextureId = ""
  2240. b18.MeshType = Enum.MeshType.FileMesh
  2241. b18.Name = "Mesh"
  2242. b18.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2243. p19 = Instance.new("Part", m3)
  2244. p19.BrickColor = BrickColor.new("Really black")
  2245. p19.Material = Enum.Material.Metal
  2246. p19.CFrame = CFrame.new(0.599999547, 4.25002337, 1.49011612e-008, 0.450589776, 0.596651912, -0.664060116, 0.322663993, 0.584720135, 0.744305372, 0.832379937, -0.549644768, 0.0709509254)
  2247. p19.CanCollide = false
  2248. p19.Locked = true
  2249. p19.FormFactor = Enum.FormFactor.Custom
  2250. p19.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2251. b19 = Instance.new("SpecialMesh", p19)
  2252. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2253. b19.TextureId = ""
  2254. b19.MeshType = Enum.MeshType.FileMesh
  2255. b19.Name = "Mesh"
  2256. b19.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2257. p20 = Instance.new("Part", m3)
  2258. p20.BrickColor = BrickColor.new("Really black")
  2259. p20.Material = Enum.Material.Metal
  2260. p20.CFrame = CFrame.new(0.449999154, 3.90002728, -0.150000244, 0.148452312, 0.508259773, -0.848312676, -0.212012291, 0.85422945, 0.474703223, 0.965925753, 0.109381542, 0.234569833)
  2261. p20.CanCollide = false
  2262. p20.Locked = true
  2263. p20.FormFactor = Enum.FormFactor.Custom
  2264. p20.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2265. b20 = Instance.new("SpecialMesh", p20)
  2266. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2267. b20.TextureId = ""
  2268. b20.MeshType = Enum.MeshType.FileMesh
  2269. b20.Name = "Mesh"
  2270. b20.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2271. p21 = Instance.new("Part", m3)
  2272. p21.BrickColor = BrickColor.new("Really black")
  2273. p21.Material = Enum.Material.Metal
  2274. p21.CFrame = CFrame.new(0.699999869, 4.25002337, 0.200001985, -0.0996009707, 0.981125295, 0.165750414, -0.142243966, -0.178907469, 0.973529041, 0.98480773, 0.0733870864, 0.157378286)
  2275. p21.CanCollide = false
  2276. p21.Locked = true
  2277. p21.FormFactor = Enum.FormFactor.Custom
  2278. p21.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2279. b21 = Instance.new("SpecialMesh", p21)
  2280. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2281. b21.TextureId = ""
  2282. b21.MeshType = Enum.MeshType.FileMesh
  2283. b21.Name = "Mesh"
  2284. b21.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2285. p22 = Instance.new("Part", m3)
  2286. p22.BrickColor = BrickColor.new("Really black")
  2287. p22.Material = Enum.Material.Metal
  2288. p22.CFrame = CFrame.new(0.69999975, 4.25002289, 0.450001955, -0.167731196, 0.167446673, 0.971508265, 0.0449438766, -0.983146012, 0.17721194, 0.984807789, 0.0733873621, 0.157378122)
  2289. p22.CanCollide = false
  2290. p22.Locked = true
  2291. p22.FormFactor = Enum.FormFactor.Custom
  2292. p22.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2293. b22 = Instance.new("SpecialMesh", p22)
  2294. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2295. b22.TextureId = ""
  2296. b22.MeshType = Enum.MeshType.FileMesh
  2297. b22.Name = "Mesh"
  2298. b22.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2299. p23 = Instance.new("Part", m3)
  2300. p23.BrickColor = BrickColor.new("Really black")
  2301. p23.Material = Enum.Material.Metal
  2302. p23.CFrame = CFrame.new(0.699999511, 4.25002289, 0.700001478, 0.0593914539, -0.993999004, 0.0918651819, 0.163175613, -0.0811224878, -0.98325628, 0.984807849, 0.0733875483, 0.157378405)
  2303. p23.CanCollide = false
  2304. p23.Locked = true
  2305. p23.FormFactor = Enum.FormFactor.Custom
  2306. p23.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2307. b23 = Instance.new("SpecialMesh", p23)
  2308. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2309. b23.TextureId = ""
  2310. b23.MeshType = Enum.MeshType.FileMesh
  2311. b23.Name = "Mesh"
  2312. b23.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2313. p24 = Instance.new("Part", m3)
  2314. p24.BrickColor = BrickColor.new("Really black")
  2315. p24.Material = Enum.Material.Metal
  2316. p24.CFrame = CFrame.new(0.699999452, 4.25002289, 0.900001347, -0.197025463, -0.431517303, 0.880326331, 0.133022487, -0.90138948, -0.412070453, 0.971332312, 0.0359149873, 0.234997824)
  2317. p24.CanCollide = false
  2318. p24.Locked = true
  2319. p24.FormFactor = Enum.FormFactor.Custom
  2320. p24.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2321. b24 = Instance.new("SpecialMesh", p24)
  2322. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2323. b24.TextureId = ""
  2324. b24.MeshType = Enum.MeshType.FileMesh
  2325. b24.Name = "Mesh"
  2326. b24.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2327. p25 = Instance.new("Part", m3)
  2328. p25.BrickColor = BrickColor.new("Really black")
  2329. p25.Material = Enum.Material.Metal
  2330. p25.CFrame = CFrame.new(0.599999249, 4.25002289, 1.05000341, -0.793593884, -0.433597952, 0.42685172, 0.426002622, 0.104941569, 0.898615122, -0.434431762, 0.894975305, 0.101432741)
  2331. p25.CanCollide = false
  2332. p25.Locked = true
  2333. p25.FormFactor = Enum.FormFactor.Custom
  2334. p25.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2335. b25 = Instance.new("SpecialMesh", p25)
  2336. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2337. b25.TextureId = ""
  2338. b25.MeshType = Enum.MeshType.FileMesh
  2339. b25.Name = "Mesh"
  2340. b25.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2341. p26 = Instance.new("Part", m3)
  2342. p26.BrickColor = BrickColor.new("Really black")
  2343. p26.Material = Enum.Material.Metal
  2344. p26.CFrame = CFrame.new(0.399999261, 4.25002289, 1.09999716, 0.474074066, -0.73934859, 0.478140384, 0.876810074, 0.445984155, -0.17972827, -0.0803612769, 0.504442811, 0.859697402)
  2345. p26.CanCollide = false
  2346. p26.Locked = true
  2347. p26.FormFactor = Enum.FormFactor.Custom
  2348. p26.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2349. b26 = Instance.new("SpecialMesh", p26)
  2350. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2351. b26.TextureId = ""
  2352. b26.MeshType = Enum.MeshType.FileMesh
  2353. b26.Name = "Mesh"
  2354. b26.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2355. p27 = Instance.new("Part", m3)
  2356. p27.BrickColor = BrickColor.new("Really black")
  2357. p27.Material = Enum.Material.Metal
  2358. p27.CFrame = CFrame.new(0.249999076, 4.25002289, 1.20000076, 0.524626255, -0.838181257, 0.149064019, -0.503709316, -0.446768612, -0.739374638, 0.686326742, 0.31281051, -0.656585932)
  2359. p27.CanCollide = false
  2360. p27.Locked = true
  2361. p27.FormFactor = Enum.FormFactor.Custom
  2362. p27.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2363. b27 = Instance.new("SpecialMesh", p27)
  2364. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2365. b27.TextureId = ""
  2366. b27.MeshType = Enum.MeshType.FileMesh
  2367. b27.Name = "Mesh"
  2368. b27.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2369. p28 = Instance.new("Part", m3)
  2370. p28.BrickColor = BrickColor.new("Really black")
  2371. p28.Material = Enum.Material.Metal
  2372. p28.CFrame = CFrame.new(0.0499990731, 4.25002289, 1.20000088, 0.524626136, -0.838181317, 0.149063885, 0.588431716, 0.230477661, -0.775002301, 0.615236104, 0.494300276, 0.614126861)
  2373. p28.CanCollide = false
  2374. p28.Locked = true
  2375. p28.FormFactor = Enum.FormFactor.Custom
  2376. p28.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2377. b28 = Instance.new("SpecialMesh", p28)
  2378. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2379. b28.TextureId = ""
  2380. b28.MeshType = Enum.MeshType.FileMesh
  2381. b28.Name = "Mesh"
  2382. b28.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2383. p29 = Instance.new("Part", m3)
  2384. p29.BrickColor = BrickColor.new("Really black")
  2385. p29.Material = Enum.Material.Metal
  2386. p29.CFrame = CFrame.new(-0.200000852, 4.25002289, 1.20000088, 0.524626195, -0.838181257, 0.149063647, 0.664180398, 0.512506962, 0.544243872, -0.532571197, -0.186519295, 0.825577736)
  2387. p29.CanCollide = false
  2388. p29.Locked = true
  2389. p29.FormFactor = Enum.FormFactor.Custom
  2390. p29.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2391. b29 = Instance.new("SpecialMesh", p29)
  2392. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2393. b29.TextureId = ""
  2394. b29.MeshType = Enum.MeshType.FileMesh
  2395. b29.Name = "Mesh"
  2396. b29.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2397. p30 = Instance.new("Part", m3)
  2398. p30.BrickColor = BrickColor.new("Really black")
  2399. p30.Material = Enum.Material.Metal
  2400. p30.CFrame = CFrame.new(-0.400000989, 4.25002289, 1.15000105, -0.205189675, -0.942334533, -0.264392197, 0.472657442, 0.141141802, -0.869870245, 0.857025325, -0.303455055, 0.416440606)
  2401. p30.CanCollide = false
  2402. p30.Locked = true
  2403. p30.FormFactor = Enum.FormFactor.Custom
  2404. p30.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2405. b30 = Instance.new("SpecialMesh", p30)
  2406. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2407. b30.TextureId = ""
  2408. b30.MeshType = Enum.MeshType.FileMesh
  2409. b30.Name = "Mesh"
  2410. b30.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2411. p31 = Instance.new("Part", m3)
  2412. p31.BrickColor = BrickColor.new("Really black")
  2413. p31.Material = Enum.Material.Metal
  2414. p31.CFrame = CFrame.new(-0.550001025, 4.25002337, 0.999999702, 0.151335806, -0.651350021, -0.743532896, 0.979139984, 0.201951638, 0.022377044, 0.135582238, -0.731408894, 0.668325186)
  2415. p31.CanCollide = false
  2416. p31.Locked = true
  2417. p31.FormFactor = Enum.FormFactor.Custom
  2418. p31.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2419. b31 = Instance.new("SpecialMesh", p31)
  2420. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2421. b31.TextureId = ""
  2422. b31.MeshType = Enum.MeshType.FileMesh
  2423. b31.Name = "Mesh"
  2424. b31.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2425. p32 = Instance.new("Part", m3)
  2426. p32.BrickColor = BrickColor.new("Really black")
  2427. p32.Material = Enum.Material.Metal
  2428. p32.CFrame = CFrame.new(-0.700000763, 4.25002337, 0.800000489, -0.804778874, -0.593520701, 0.0080409348, 0.142058611, -0.205740049, -0.968240976, 0.576325178, -0.778077364, 0.249890015)
  2429. p32.CanCollide = false
  2430. p32.Locked = true
  2431. p32.FormFactor = Enum.FormFactor.Custom
  2432. p32.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2433. b32 = Instance.new("SpecialMesh", p32)
  2434. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2435. b32.TextureId = ""
  2436. b32.MeshType = Enum.MeshType.FileMesh
  2437. b32.Name = "Mesh"
  2438. b32.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2439. p33 = Instance.new("Part", m3)
  2440. p33.BrickColor = BrickColor.new("Really black")
  2441. p33.Material = Enum.Material.Metal
  2442. p33.CFrame = CFrame.new(-0.700000942, 4.25002289, 0.549999833, -0.526802063, -0.220915288, -0.820777893, 0.708702326, 0.418966174, -0.567634225, 0.469277024, -0.880717933, -0.0641489923)
  2443. p33.CanCollide = false
  2444. p33.Locked = true
  2445. p33.FormFactor = Enum.FormFactor.Custom
  2446. p33.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2447. b33 = Instance.new("SpecialMesh", p33)
  2448. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2449. b33.TextureId = ""
  2450. b33.MeshType = Enum.MeshType.FileMesh
  2451. b33.Name = "Mesh"
  2452. b33.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2453. p34 = Instance.new("Part", m3)
  2454. p34.BrickColor = BrickColor.new("Really black")
  2455. p34.Material = Enum.Material.Metal
  2456. p34.Name = "Connection"
  2457. p34.CFrame = CFrame.new(0.0551848896, 3.35002589, -0.131655902, 0.635109425, -0.765570045, -0.102657467, -0.766416311, -0.641122162, 0.0396047123, -0.0961361453, 0.0535250306, -0.993928015)
  2458. p34.CanCollide = false
  2459. p34.Locked = true
  2460. p34.FormFactor = Enum.FormFactor.Custom
  2461. p34.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2462. b34 = Instance.new("SpecialMesh", p34)
  2463. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2464. b34.TextureId = ""
  2465. b34.MeshType = Enum.MeshType.FileMesh
  2466. b34.Name = "Mesh"
  2467. b34.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2468. p35 = Instance.new("Part", m3)
  2469. p35.BrickColor = BrickColor.new("Really black")
  2470. p35.Material = Enum.Material.Metal
  2471. p35.CFrame = CFrame.new(-0.600001037, 4.25002289, 0.149997264, 0.493824095, 0.604460001, 0.62511301, -0.565569818, -0.322785676, 0.758907318, 0.660506427, -0.728311539, 0.182464883)
  2472. p35.CanCollide = false
  2473. p35.Locked = true
  2474. p35.FormFactor = Enum.FormFactor.Custom
  2475. p35.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2476. b35 = Instance.new("SpecialMesh", p35)
  2477. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2478. b35.TextureId = ""
  2479. b35.MeshType = Enum.MeshType.FileMesh
  2480. b35.Name = "Mesh"
  2481. b35.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2482. p36 = Instance.new("Part", m3)
  2483. p36.BrickColor = BrickColor.new("Really black")
  2484. p36.Material = Enum.Material.Metal
  2485. p36.CFrame = CFrame.new(-0.500000834, 4.2000227, -2.52574682e-006, -0.285961747, 0.418113738, -0.862210572, 0.191904813, 0.906544387, 0.375965416, 0.93882823, -0.0579507053, -0.339474916)
  2486. p36.CanCollide = false
  2487. p36.Locked = true
  2488. p36.FormFactor = Enum.FormFactor.Custom
  2489. p36.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  2490. b36 = Instance.new("SpecialMesh", p36)
  2491. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2492. b36.TextureId = ""
  2493. b36.MeshType = Enum.MeshType.FileMesh
  2494. b36.Name = "Mesh"
  2495. b36.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  2496. w1 = Instance.new("Weld", p2)
  2497. w1.Name = "Joint"
  2498. w1.Part0 = p2
  2499. w1.C0 = CFrame.new(-0.211238861, -0.0362606049, -0.0810072422, -0.57012105, 0.811055779, -0.130959615, -0.254106343, -0.022495009, 0.966914535, 0.781275749, 0.584536016, 0.218919396)
  2500. w1.Part1 = p18
  2501. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2502. w2 = Instance.new("Weld", p3)
  2503. w2.Name = "Joint"
  2504. w2.Part0 = p3
  2505. w2.C0 = CFrame.new(0, 0, -0.470001936, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2506. w2.Part1 = p1
  2507. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2508. w3 = Instance.new("Weld", p4)
  2509. w3.Name = "Joint"
  2510. w3.Part0 = p4
  2511. w3.C0 = CFrame.new(0, 0.0299999714, -0.900000334, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  2512. w3.Part1 = p1
  2513. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2514. w4 = Instance.new("Weld", p5)
  2515. w4.Name = "Joint"
  2516. w4.Part0 = p5
  2517. w4.C0 = CFrame.new(2.38418579e-007, 0.5, 0.0500030518, -1, -9.67369829e-009, -5.33850759e-008, 4.45892816e-008, -0.707106829, -0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
  2518. w4.Part1 = p7
  2519. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2520. w5 = Instance.new("Weld", p6)
  2521. w5.Name = "Joint"
  2522. w5.Part0 = p6
  2523. w5.C0 = CFrame.new(0, 0.5, 0.0500030518, 1, -1.28027651e-008, 3.09086197e-008, -1.28027686e-008, 0.707106829, 0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
  2524. w5.Part1 = p7
  2525. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2526. w6 = Instance.new("Weld", p7)
  2527. w6.Name = "Joint"
  2528. w6.Part0 = p7
  2529. w6.C0 = CFrame.new(-0.400002003, 0.070712328, -0.0707120895, -3.09086197e-008, -7.46200044e-008, -1, -0.707106829, -0.707106769, 7.46200044e-008, -0.707106769, 0.707106829, -3.09086197e-008)
  2530. w6.Part1 = p1
  2531. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2532. w7 = Instance.new("Weld", p8)
  2533. w7.Name = "Joint"
  2534. w7.Part0 = p8
  2535. w7.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, -1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2536. w7.Part1 = p1
  2537. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2538. w8 = Instance.new("Weld", p9)
  2539. w8.Name = "Joint"
  2540. w8.Part0 = p9
  2541. w8.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, 1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2542. w8.Part1 = p1
  2543. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2544. w9 = Instance.new("Weld", p10)
  2545. w9.Name = "Joint"
  2546. w9.Part0 = p10
  2547. w9.C0 = CFrame.new(0, 0.0399997234, 1.04999948, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  2548. w9.Part1 = p1
  2549. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2550. w10 = Instance.new("Weld", p11)
  2551. w10.Name = "Joint"
  2552. w10.Part0 = p11
  2553. w10.C0 = CFrame.new(0.100000024, 0.202390671, -0.0392093658, 0.450589836, 0.596651673, -0.664059937, 0.644212067, 0.297646403, 0.704554796, 0.618028879, -0.745260656, -0.250253737)
  2554. w10.Part1 = p19
  2555. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2556. w11 = Instance.new("Weld", p12)
  2557. w11.Name = "Joint"
  2558. w11.Part0 = p12
  2559. w11.C0 = CFrame.new(0.479997993, 0.0499999784, 0.25, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008)
  2560. w11.Part1 = p1
  2561. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2562. w12 = Instance.new("Weld", p13)
  2563. w12.Name = "Joint"
  2564. w12.Part0 = p13
  2565. w12.C0 = CFrame.new(-0.1545012, 0.138720512, 0.0829834938, 0.373496056, -0.501174688, -0.780592561, -0.602336764, 0.50893271, -0.614961803, 0.70547235, 0.699865282, -0.111791633)
  2566. w12.Part1 = p35
  2567. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2568. w13 = Instance.new("Weld", p14)
  2569. w13.Name = "Joint"
  2570. w13.Part0 = p14
  2571. w13.C0 = CFrame.new(-0.172863483, 0.0578804016, -0.0258672237, -0.849803627, -0.326939017, 0.413454711, 0.506076992, -0.286759645, 0.813421786, -0.147377193, 0.900488615, 0.409145683)
  2572. w13.Part1 = p34
  2573. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2574. w14 = Instance.new("Weld", p15)
  2575. w14.Name = "Joint"
  2576. w14.Part0 = p15
  2577. w14.C0 = CFrame.new(0.0923810005, -0.190912724, -0.00442934036, -0.0371075198, 0.56231159, -0.826092422, -0.73737216, -0.573347449, -0.357148677, -0.674466848, 0.595884562, 0.435908347)
  2578. w14.Part1 = p16
  2579. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2580. w15 = Instance.new("Weld", p16)
  2581. w15.Name = "Joint"
  2582. w15.Part0 = p16
  2583. w15.C0 = CFrame.new(0.0876817107, 0.204583645, -0.0213780403, 0.074026458, 0.445441723, -0.892245352, -0.0624118894, 0.895015597, 0.441646636, 0.995301366, 0.022993207, 0.0940556675)
  2584. w15.Part1 = p20
  2585. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2586. w16 = Instance.new("Weld", p17)
  2587. w16.Name = "Joint"
  2588. w16.Part0 = p17
  2589. w16.C0 = CFrame.new(0.156466246, -0.194725513, -0.0100102425, -0.460608691, 0.227749109, -0.85788697, 0.80572325, -0.29817903, -0.51176101, -0.372357011, -0.926941037, -0.0461589098)
  2590. w16.Part1 = p14
  2591. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2592. w17 = Instance.new("Weld", p18)
  2593. w17.Name = "Joint"
  2594. w17.Part0 = p18
  2595. w17.C0 = CFrame.new(0.046289444, -0.199023724, 0.0569794178, 0.154631272, -0.0373091251, -0.987267554, -0.489805043, 0.864940584, -0.109402351, 0.858009458, 0.500485599, 0.115472674)
  2596. w17.Part1 = p17
  2597. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2598. w18 = Instance.new("Weld", p19)
  2599. w18.Name = "Joint"
  2600. w18.Part0 = p19
  2601. w18.C0 = CFrame.new(0.211536884, -0.0502645969, -0.0522158146, 0.728958309, 0.445444137, 0.519806981, -0.683894217, 0.440442294, 0.581635118, 0.0301409438, -0.779480696, 0.625700712)
  2602. w18.Part1 = p21
  2603. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2604. w19 = Instance.new("Weld", p20)
  2605. w19.Name = "Joint"
  2606. w19.Part0 = p20
  2607. w19.C0 = CFrame.new(0.0722160339, 0.164483547, 0.0522456169, 0.148452476, 0.216069669, 0.965026319, 0.508259654, 0.820421398, -0.261879444, -0.848312438, 0.529360592, 0.0119740963)
  2608. w19.Part1 = p11
  2609. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2610. w20 = Instance.new("Weld", p21)
  2611. w20.Name = "Joint"
  2612. w20.Part0 = p21
  2613. w20.C0 = CFrame.new(0.246201992, 0.0183468163, 0.0393443108, 0.980159461, 0.195441127, 0.0330170989, -0.100333519, 0.345563769, 0.933016002, 0.170940176, -0.917817175, 0.358316928)
  2614. w20.Part1 = p22
  2615. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2616. w21 = Instance.new("Weld", p22)
  2617. w21.Name = "Joint"
  2618. w21.Part0 = p22
  2619. w21.C0 = CFrame.new(0.246201515, 0.0183467865, 0.0393443108, 0.96721822, 0.235350817, 0.0953874439, -0.0782081187, -0.0813006833, 0.993616521, 0.241603509, -0.968504071, -0.060229145)
  2620. w21.Part1 = p23
  2621. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2622. w22 = Instance.new("Weld", p23)
  2623. w22.Name = "Joint"
  2624. w22.Part0 = p23
  2625. w22.C0 = CFrame.new(0.196961403, 0.014677465, 0.031475544, 0.966579735, -0.137344033, 0.21647194, 0.256335169, 0.504686236, -0.824368834, 0.0039717555, 0.852307677, 0.523025632)
  2626. w22.Part1 = p24
  2627. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2628. w23 = Instance.new("Weld", p24)
  2629. w23.Name = "Joint"
  2630. w23.Part0 = p24
  2631. w23.C0 = CFrame.new(0.16540432, 0.0485391617, -0.0527825356, -0.208951756, 0.968707323, 0.133960381, -0.0571475253, 0.124654606, -0.990553021, -0.976254702, -0.214633241, 0.0293123852)
  2632. w23.Part1 = p25
  2633. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2634. w24 = Instance.new("Weld", p25)
  2635. w24.Name = "Joint"
  2636. w24.Part0 = p25
  2637. w24.C0 = CFrame.new(0.136999726, 0.131462574, -0.0802993774, 0.0322127938, 0.557586372, -0.829493642, -0.185464859, 0.81884563, 0.543226421, 0.982122838, 0.136343077, 0.129789978)
  2638. w24.Part1 = p26
  2639. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2640. w25 = Instance.new("Weld", p26)
  2641. w25.Name = "Joint"
  2642. w25.Part0 = p26
  2643. w25.C0 = CFrame.new(-0.0791475773, 0.161348343, 0.014251709, -0.2480997, -0.814228892, -0.524859786, -0.266315132, 0.578250885, -0.771169424, 0.931409001, -0.0515488982, -0.360305429)
  2644. w25.Part1 = p27
  2645. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2646. w26 = Instance.new("Weld", p27)
  2647. w26.Name = "Joint"
  2648. w26.Part0 = p27
  2649. w26.C0 = CFrame.new(-0.104925156, 0.167636156, -0.0298128128, 0.401087224, -0.216573805, 0.890070021, -0.510172248, 0.754199564, 0.413409412, -0.760824084, -0.619902253, 0.192009777)
  2650. w26.Part1 = p28
  2651. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2652. w27 = Instance.new("Weld", p28)
  2653. w27.Name = "Joint"
  2654. w27.Part0 = p28
  2655. w27.C0 = CFrame.new(-0.131156445, 0.209545135, -0.037266016, 0.338400394, -0.252909899, 0.906378388, -0.549903035, 0.728472173, 0.408576787, -0.763604522, -0.636682749, 0.10743928)
  2656. w27.Part1 = p29
  2657. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2658. w28 = Instance.new("Weld", p29)
  2659. w28.Name = "Joint"
  2660. w28.Part0 = p29
  2661. w28.C0 = CFrame.new(-0.0782968998, 0.176962137, -0.0710916519, -0.250144869, -0.239018306, -0.938241899, 0.254374206, 0.918783069, -0.301879942, 0.934195518, -0.314178288, -0.169028759)
  2662. w28.Part1 = p30
  2663. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2664. w29 = Instance.new("Weld", p30)
  2665. w29.Name = "Joint"
  2666. w29.Part0 = p30
  2667. w29.C0 = CFrame.new(-0.097776413, 0.186868906, -0.022808075, 0.547942579, -0.39773193, 0.735913277, -0.0455548018, 0.864242792, 0.501007974, -0.835274637, -0.30804801, 0.455436885)
  2668. w29.Part1 = p31
  2669. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2670. w30 = Instance.new("Weld", p31)
  2671. w30.Name = "Joint"
  2672. w30.Part0 = p31
  2673. w30.C0 = CFrame.new(-0.0498166084, 0.243983507, -0.0221347809, 0.0954426825, -0.396762908, -0.912945747, 0.131352007, 0.914132595, -0.38354671, 0.986730695, -0.0833105743, 0.139362901)
  2674. w30.Part1 = p32
  2675. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2676. w31 = Instance.new("Weld", p32)
  2677. w31.Name = "Joint"
  2678. w31.Part0 = p32
  2679. w31.C0 = CFrame.new(-0.144081593, 0.194519997, -0.0624723434, 0.795092285, -0.270274341, 0.542936563, -0.198274553, 0.730186164, 0.653846622, -0.573162735, -0.627518892, 0.526976764)
  2680. w31.Part1 = p33
  2681. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2682. w32 = Instance.new("Weld", p33)
  2683. w32.Name = "Joint"
  2684. w32.Part0 = p33
  2685. w32.C0 = CFrame.new(-0.0938563347, 0.176145077, 0.0128297806, 0.0848137587, -0.421895206, -0.902668893, -0.548244178, 0.736708403, -0.39583993, 0.832006574, 0.528455555, -0.168818489)
  2686. w32.Part1 = p13
  2687. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2688. w33 = Instance.new("Weld", p34)
  2689. w33.Name = "Joint"
  2690. w33.Part0 = p34
  2691. w33.C0 = CFrame.new(-0.0178728104, 0.0120868683, -0.150204837, -0.0961361453, -0.635109425, 0.766416311, 0.0535250939, 0.765570045, 0.641122162, -0.993928015, 0.102657512, -0.0396046676)
  2692. w33.Part1 = p12
  2693. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2694. w34 = Instance.new("Weld", p35)
  2695. w34.Name = "Joint"
  2696. w34.Part0 = p35
  2697. w34.C0 = CFrame.new(-0.0214147568, 0.185832024, -0.00280380249, 0.370351821, -0.344516218, -0.862640202, -0.918555975, 0.00231964141, -0.395284295, 0.138182849, 0.938777506, -0.315598398)
  2698. w34.Part1 = p36
  2699. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2700. w35 = Instance.new("Weld", p36)
  2701. w35.Name = "Joint"
  2702. w35.Part0 = p36
  2703. w35.C0 = CFrame.new(-0.136966705, -0.109280109, -0.0655572414, 0.678235054, 0.463834167, -0.569960475, 0.250202835, 0.583515286, 0.772598565, 0.690938354, -0.666609228, 0.279707849)
  2704. w35.Part1 = p2
  2705. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2706. m3.Parent = torso
  2707. m3:MakeJoints()
  2708. ----------------------------------------------------
  2709. local cor3 = Instance.new("Part", torso.Torso)
  2710. cor3.Name = "Thingy"
  2711. cor3.Locked = true
  2712. cor3.BottomSurface = 0
  2713. cor3.CanCollide = false
  2714. cor3.Size = Vector3.new(1, 1, 1)
  2715. cor3.Transparency = 1
  2716. cor3.TopSurface = 0
  2717. corw3 = Instance.new("Weld", cor3)
  2718. corw3.Part0 = torso
  2719. corw3.Part1 = cor3
  2720. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2721. corw3.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2722. weld3 = Instance.new("Weld", torso.Torso)
  2723. weld3.Part0 = cor3
  2724. weld3.Part1 = torso.Torso.TorsoPlate
  2725. weld3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2726. --Left Leg
  2727. m4 = Instance.new("Model")
  2728. m4.Name = "LeftLeg"
  2729. p1 = Instance.new("Part", m4)
  2730. p1.BrickColor = BrickColor.new("Really black")
  2731. p1.Material = Enum.Material.Metal
  2732. p1.Name = "LeftLegPlate"
  2733. p1.CFrame = CFrame.new(-1.5, 4.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2734. p1.Anchored = false
  2735. p1.CanCollide = false
  2736. p1.FormFactor = Enum.FormFactor.Custom
  2737. p1.Size = Vector3.new(1, 2, 1)
  2738. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2739. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2740. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2741. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2742. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2744. b1 = Instance.new("SpecialMesh", p1)
  2745. b1.MeshType = Enum.MeshType.Brick
  2746. b1.Name = "Mesh"
  2747. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2748. p2 = Instance.new("Part", m4)
  2749. p2.BrickColor = BrickColor.new("Really black")
  2750. p2.Material = Enum.Material.Metal
  2751. p2.CFrame = CFrame.new(-2.0999999, 5.44442606, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2752. p2.Anchored = false
  2753. p2.CanCollide = false
  2754. p2.FormFactor = Enum.FormFactor.Custom
  2755. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2756. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2757. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2758. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. b2 = Instance.new("SpecialMesh", p2)
  2763. b2.MeshType = Enum.MeshType.Brick
  2764. b2.Name = "Mesh"
  2765. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2766. p3 = Instance.new("Part", m4)
  2767. p3.BrickColor = BrickColor.new("Really black")
  2768. p3.Material = Enum.Material.Metal
  2769. p3.CFrame = CFrame.new(-2.0999999, 5.04442501, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2770. p3.Anchored = false
  2771. p3.CanCollide = false
  2772. p3.FormFactor = Enum.FormFactor.Custom
  2773. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2774. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2775. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2776. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2779. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2780. b3 = Instance.new("SpecialMesh", p3)
  2781. b3.MeshType = Enum.MeshType.Brick
  2782. b3.Name = "Mesh"
  2783. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2784. p4 = Instance.new("Part", m4)
  2785. p4.BrickColor = BrickColor.new("Black")
  2786. p4.Material = Enum.Material.Metal
  2787. p4.CFrame = CFrame.new(-1.5, 4.74442291, -7.02999783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2788. p4.Anchored = false
  2789. p4.CanCollide = false
  2790. p4.FormFactor = Enum.FormFactor.Custom
  2791. p4.Size = Vector3.new(1, 2, 0.200000018)
  2792. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2793. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2794. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2798. b4 = Instance.new("SpecialMesh", p4)
  2799. b4.MeshType = Enum.MeshType.Brick
  2800. b4.Name = "Mesh"
  2801. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2802. p5 = Instance.new("Part", m4)
  2803. p5.BrickColor = BrickColor.new("Black")
  2804. p5.Material = Enum.Material.Metal
  2805. p5.CFrame = CFrame.new(-2, 4.74442291, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2806. p5.Anchored = false
  2807. p5.CanCollide = false
  2808. p5.FormFactor = Enum.FormFactor.Custom
  2809. p5.Size = Vector3.new(1, 2, 0.200000018)
  2810. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2811. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2812. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2813. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2814. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2815. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2816. b5 = Instance.new("SpecialMesh", p5)
  2817. b5.MeshType = Enum.MeshType.Brick
  2818. b5.Name = "Mesh"
  2819. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2820. p6 = Instance.new("Part", m4)
  2821. p6.BrickColor = BrickColor.new("Black")
  2822. p6.Material = Enum.Material.Metal
  2823. p6.CFrame = CFrame.new(-1.50999999, 3.74442887, -7.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2824. p6.Anchored = false
  2825. p6.CanCollide = false
  2826. p6.FormFactor = Enum.FormFactor.Custom
  2827. p6.Size = Vector3.new(1, 0.200000048, 0.980000019)
  2828. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2829. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2830. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2831. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2832. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2833. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2834. b6 = Instance.new("SpecialMesh", p6)
  2835. b6.MeshType = Enum.MeshType.Brick
  2836. b6.Name = "Mesh"
  2837. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2838. p7 = Instance.new("Part", m4)
  2839. p7.BrickColor = BrickColor.new("Black")
  2840. p7.Material = Enum.Material.Metal
  2841. p7.CFrame = CFrame.new(-1.5, 5.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2842. p7.Anchored = false
  2843. p7.CanCollide = false
  2844. p7.FormFactor = Enum.FormFactor.Custom
  2845. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2846. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2847. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2848. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2849. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2850. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2851. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2852. b7 = Instance.new("SpecialMesh", p7)
  2853. b7.MeshType = Enum.MeshType.Brick
  2854. b7.Name = "Mesh"
  2855. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2856. w1 = Instance.new("Weld", p2)
  2857. w1.Name = "Joint"
  2858. w1.Part0 = p2
  2859. w1.C0 = CFrame.new(0, -0.40000093, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2860. w1.Part1 = p3
  2861. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2862. w2 = Instance.new("Weld", p3)
  2863. w2.Name = "Joint"
  2864. w2.Part0 = p3
  2865. w2.C0 = CFrame.new(0.0999999046, -0.300002098, 0.0200009346, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2866. w2.Part1 = p5
  2867. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2868. w3 = Instance.new("Weld", p4)
  2869. w3.Name = "Joint"
  2870. w3.Part0 = p4
  2871. w3.C0 = CFrame.new(0, 0, -0.470002174, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2872. w3.Part1 = p1
  2873. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2874. w4 = Instance.new("Weld", p5)
  2875. w4.Name = "Joint"
  2876. w4.Part0 = p5
  2877. w4.C0 = CFrame.new(-0.0200009346, 0, -0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2878. w4.Part1 = p1
  2879. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2880. w5 = Instance.new("Weld", p6)
  2881. w5.Name = "Joint"
  2882. w5.Part0 = p6
  2883. w5.C0 = CFrame.new(0, 0.99999404, -0.00999999046, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2884. w5.Part1 = p1
  2885. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2886. w6 = Instance.new("Weld", p7)
  2887. w6.Name = "Joint"
  2888. w6.Part0 = p7
  2889. w6.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2890. w6.Part1 = p1
  2891. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2892. m4.Parent = lleg
  2893. m4:MakeJoints()
  2894. ----------------------------------------------------
  2895. local cor4 = Instance.new("Part", lleg.LeftLeg)
  2896. cor4.Name = "Thingy"
  2897. cor4.Locked = true
  2898. cor4.BottomSurface = 0
  2899. cor4.CanCollide = false
  2900. cor4.Size = Vector3.new(1, 1, 1)
  2901. cor4.Transparency = 1
  2902. cor4.TopSurface = 0
  2903. corw4 = Instance.new("Weld", cor4)
  2904. corw4.Part0 = lleg
  2905. corw4.Part1 = cor4
  2906. corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2907. corw4.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2908. weld4 = Instance.new("Weld", lleg.LeftLeg)
  2909. weld4.Part0 = cor4
  2910. weld4.Part1 = lleg.LeftLeg.LeftLegPlate
  2911. weld4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2912. --Right Leg
  2913. m5 = Instance.new("Model")
  2914. m5.Name = "RightLeg"
  2915. p1 = Instance.new("Part", m5)
  2916. p1.BrickColor = BrickColor.new("Really black")
  2917. p1.Material = Enum.Material.Metal
  2918. p1.Name = "RightLegPlate"
  2919. p1.CFrame = CFrame.new(1.5, 4.74441528, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2920. p1.Anchored = false
  2921. p1.CanCollide = false
  2922. p1.FormFactor = Enum.FormFactor.Custom
  2923. p1.Size = Vector3.new(1, 2, 1)
  2924. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2926. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2927. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2929. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2930. b1 = Instance.new("SpecialMesh", p1)
  2931. b1.MeshType = Enum.MeshType.Brick
  2932. b1.Name = "Mesh"
  2933. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2934. p2 = Instance.new("Part", m5)
  2935. p2.BrickColor = BrickColor.new("Really black")
  2936. p2.Material = Enum.Material.Metal
  2937. p2.CFrame = CFrame.new(2.05000019, 5.44441557, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2938. p2.Anchored = false
  2939. p2.CanCollide = false
  2940. p2.FormFactor = Enum.FormFactor.Custom
  2941. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2942. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2943. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2944. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2946. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2947. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2948. b2 = Instance.new("SpecialMesh", p2)
  2949. b2.MeshType = Enum.MeshType.Brick
  2950. b2.Name = "Mesh"
  2951. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2952. p3 = Instance.new("Part", m5)
  2953. p3.BrickColor = BrickColor.new("Really black")
  2954. p3.Material = Enum.Material.Metal
  2955. p3.CFrame = CFrame.new(2.05000019, 5.04441547, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2956. p3.Anchored = false
  2957. p3.CanCollide = false
  2958. p3.FormFactor = Enum.FormFactor.Custom
  2959. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2960. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2961. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2963. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2964. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2965. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2966. b3 = Instance.new("SpecialMesh", p3)
  2967. b3.MeshType = Enum.MeshType.Brick
  2968. b3.Name = "Mesh"
  2969. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2970. p4 = Instance.new("Part", m5)
  2971. p4.BrickColor = BrickColor.new("Black")
  2972. p4.Material = Enum.Material.Metal
  2973. p4.CFrame = CFrame.new(1.5, 4.74441528, -7.0299983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2974. p4.Anchored = false
  2975. p4.CanCollide = false
  2976. p4.FormFactor = Enum.FormFactor.Custom
  2977. p4.Size = Vector3.new(1, 2, 0.200000018)
  2978. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2979. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2980. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2981. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2982. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2983. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2984. b4 = Instance.new("SpecialMesh", p4)
  2985. b4.MeshType = Enum.MeshType.Brick
  2986. b4.Name = "Mesh"
  2987. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2988. p5 = Instance.new("Part", m5)
  2989. p5.BrickColor = BrickColor.new("Black")
  2990. p5.Material = Enum.Material.Metal
  2991. p5.CFrame = CFrame.new(2, 4.74441528, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2992. p5.Anchored = false
  2993. p5.CanCollide = false
  2994. p5.FormFactor = Enum.FormFactor.Custom
  2995. p5.Size = Vector3.new(1, 2, 0.200000018)
  2996. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2997. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3001. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3002. b5 = Instance.new("SpecialMesh", p5)
  3003. b5.MeshType = Enum.MeshType.Brick
  3004. b5.Name = "Mesh"
  3005. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  3006. p6 = Instance.new("Part", m5)
  3007. p6.BrickColor = BrickColor.new("Black")
  3008. p6.Material = Enum.Material.Metal
  3009. p6.CFrame = CFrame.new(1.505, 3.74442124, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  3010. p6.Anchored = false
  3011. p6.CanCollide = false
  3012. p6.FormFactor = Enum.FormFactor.Custom
  3013. p6.Size = Vector3.new(1, 0.200000048, 0.99000001)
  3014. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3015. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3016. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3019. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3020. b6 = Instance.new("SpecialMesh", p6)
  3021. b6.MeshType = Enum.MeshType.Brick
  3022. b6.Name = "Mesh"
  3023. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  3024. p7 = Instance.new("Part", m5)
  3025. p7.BrickColor = BrickColor.new("Black")
  3026. p7.Material = Enum.Material.Metal
  3027. p7.CFrame = CFrame.new(1.505, 5.69442129, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  3028. p7.Anchored = false
  3029. p7.CanCollide = false
  3030. p7.FormFactor = Enum.FormFactor.Custom
  3031. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  3032. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3033. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3034. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3037. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3038. b7 = Instance.new("SpecialMesh", p7)
  3039. b7.MeshType = Enum.MeshType.Brick
  3040. b7.Name = "Mesh"
  3041. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  3042. w1 = Instance.new("Weld", p2)
  3043. w1.Name = "Joint"
  3044. w1.Part0 = p2
  3045. w1.C0 = CFrame.new(0, -0.400000095, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3046. w1.Part1 = p3
  3047. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3048. w2 = Instance.new("Weld", p3)
  3049. w2.Name = "Joint"
  3050. w2.Part0 = p3
  3051. w2.C0 = CFrame.new(-0.0500001907, -0.300000191, 0.0200004578, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  3052. w2.Part1 = p5
  3053. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3054. w3 = Instance.new("Weld", p4)
  3055. w3.Name = "Joint"
  3056. w3.Part0 = p4
  3057. w3.C0 = CFrame.new(0, 0, -0.470001221, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3058. w3.Part1 = p1
  3059. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3060. w4 = Instance.new("Weld", p5)
  3061. w4.Name = "Joint"
  3062. w4.Part0 = p5
  3063. w4.C0 = CFrame.new(-0.0200004578, 0, 0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3064. w4.Part1 = p1
  3065. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3066. w5 = Instance.new("Weld", p6)
  3067. w5.Name = "Joint"
  3068. w5.Part0 = p6
  3069. w5.C0 = CFrame.new(0, 0.99999404, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3070. w5.Part1 = p1
  3071. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3072. w6 = Instance.new("Weld", p7)
  3073. w6.Name = "Joint"
  3074. w6.Part0 = p7
  3075. w6.C0 = CFrame.new(0, -0.950006008, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3076. w6.Part1 = p1
  3077. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3078. m5.Parent = rleg
  3079. m5:MakeJoints()
  3080. ----------------------------------------------------
  3081. local cor5 = Instance.new("Part", rleg.RightLeg)
  3082. cor5.Name = "Thingy"
  3083. cor5.Locked = true
  3084. cor5.BottomSurface = 0
  3085. cor5.CanCollide = false
  3086. cor5.Size = Vector3.new(1, 1, 1)
  3087. cor5.Transparency = 1
  3088. cor5.TopSurface = 0
  3089. corw5 = Instance.new("Weld", cor5)
  3090. corw5.Part0 = rleg
  3091. corw5.Part1 = cor5
  3092. corw5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3093. corw5.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3094. wld5 = Instance.new("Weld", rleg.RightLeg)
  3095. wld5.Part0 = cor5
  3096. wld5.Part1 = rleg.RightLeg.RightLegPlate
  3097. wld5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3098. --Cape
  3099. m6 = Instance.new("Model")
  3100. m6.Name = "Cloak"
  3101. p1 = Instance.new("WedgePart", m6)
  3102. p1.BrickColor = BrickColor.new("Lime green")
  3103. p1.Material = Enum.Material.SmoothPlastic
  3104. p1.Name = "Wedge"
  3105. p1.CFrame = CFrame.new(0.959278464, 4.40979004, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3106. p1.CanCollide = false
  3107. p1.Locked = true
  3108. p1.FormFactor = Enum.FormFactor.Custom
  3109. p1.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3110. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3113. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3114. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3115. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3116. b1 = Instance.new("SpecialMesh", p1)
  3117. b1.MeshType = Enum.MeshType.Wedge
  3118. b1.Name = "Mesh"
  3119. b1.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3120. p2 = Instance.new("WedgePart", m6)
  3121. p2.BrickColor = BrickColor.new("Black")
  3122. p2.Material = Enum.Material.SmoothPlastic
  3123. p2.Name = "Wedge"
  3124. p2.CFrame = CFrame.new(-1.27945054, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3125. p2.CanCollide = false
  3126. p2.Locked = true
  3127. p2.FormFactor = Enum.FormFactor.Custom
  3128. p2.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3129. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3131. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3132. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3133. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3134. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3135. b2 = Instance.new("SpecialMesh", p2)
  3136. b2.MeshType = Enum.MeshType.Wedge
  3137. b2.Name = "Mesh"
  3138. b2.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3139. p3 = Instance.new("Part", m6)
  3140. p3.BrickColor = BrickColor.new("Black")
  3141. p3.Material = Enum.Material.SmoothPlastic
  3142. p3.Name = "CapeLevel2"
  3143. p3.CFrame = CFrame.new(-0.300008506, 3.78014231, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3144. p3.CanCollide = false
  3145. p3.Locked = true
  3146. p3.FormFactor = Enum.FormFactor.Custom
  3147. p3.Size = Vector3.new(2.09881067, 0.559682727, 0.232357636)
  3148. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3149. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3150. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3151. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3152. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3153. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3154. b3 = Instance.new("BlockMesh", p3)
  3155. b3.Name = "Mesh"
  3156. b3.Scale = Vector3.new(1, 1, 0.602178097)
  3157. p4 = Instance.new("Part", m6)
  3158. p4.BrickColor = BrickColor.new("Black")
  3159. p4.Material = Enum.Material.SmoothPlastic
  3160. p4.CFrame = CFrame.new(-1.8391341, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3161. p4.CanCollide = false
  3162. p4.Locked = true
  3163. p4.FormFactor = Enum.FormFactor.Custom
  3164. p4.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3165. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3166. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3167. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3168. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3169. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3170. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3171. b4 = Instance.new("BlockMesh", p4)
  3172. b4.Name = "Mesh"
  3173. b4.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3174. p5 = Instance.new("Part", m6)
  3175. p5.BrickColor = BrickColor.new("Black")
  3176. p5.Material = Enum.Material.SmoothPlastic
  3177. p5.CFrame = CFrame.new(-1.69921267, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3178. p5.CanCollide = false
  3179. p5.Locked = true
  3180. p5.FormFactor = Enum.FormFactor.Custom
  3181. p5.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3182. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3183. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3184. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3185. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3186. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3187. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3188. b5 = Instance.new("BlockMesh", p5)
  3189. b5.Name = "Mesh"
  3190. b5.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3191. p6 = Instance.new("Part", m6)
  3192. p6.BrickColor = BrickColor.new("Black")
  3193. p6.Material = Enum.Material.SmoothPlastic
  3194. p6.Name = "CapeLevel1"
  3195. p6.CFrame = CFrame.new(-0.300008506, 4.6896286, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3196. p6.CanCollide = false
  3197. p6.Locked = true
  3198. p6.FormFactor = Enum.FormFactor.Custom
  3199. p6.Size = Vector3.new(1.25928628, 0.232357651, 0.232357636)
  3200. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3201. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3202. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3203. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3204. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3205. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3206. b6 = Instance.new("BlockMesh", p6)
  3207. b6.Name = "Mesh"
  3208. b6.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3209. p7 = Instance.new("Part", m6)
  3210. p7.BrickColor = BrickColor.new("Black")
  3211. p7.Material = Enum.Material.SmoothPlastic
  3212. p7.CFrame = CFrame.new(1.23912418, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3213. p7.CanCollide = false
  3214. p7.Locked = true
  3215. p7.FormFactor = Enum.FormFactor.Custom
  3216. p7.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3217. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3218. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3220. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3223. b7 = Instance.new("BlockMesh", p7)
  3224. b7.Name = "Mesh"
  3225. b7.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3226. p8 = Instance.new("Part", m6)
  3227. p8.BrickColor = BrickColor.new("Black")
  3228. p8.Material = Enum.Material.SmoothPlastic
  3229. p8.CFrame = CFrame.new(0.539517641, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3230. p8.CanCollide = false
  3231. p8.Locked = true
  3232. p8.FormFactor = Enum.FormFactor.Custom
  3233. p8.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3234. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3235. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3236. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3237. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3239. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3240. b8 = Instance.new("BlockMesh", p8)
  3241. b8.Name = "Mesh"
  3242. b8.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3243. p9 = Instance.new("Part", m6)
  3244. p9.BrickColor = BrickColor.new("Black")
  3245. p9.Material = Enum.Material.SmoothPlastic
  3246. p9.CFrame = CFrame.new(-0.300009966, 2.03112936, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3247. p9.CanCollide = false
  3248. p9.Locked = true
  3249. p9.FormFactor = Enum.FormFactor.Custom
  3250. p9.Size = Vector3.new(0.419762105, 0.419762105, 0.232357636)
  3251. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3252. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3253. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3254. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3255. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3256. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3257. b9 = Instance.new("BlockMesh", p9)
  3258. b9.Name = "Mesh"
  3259. b9.Scale = Vector3.new(1, 1, 0.602178097)
  3260. p10 = Instance.new("Part", m6)
  3261. p10.BrickColor = BrickColor.new("Black")
  3262. p10.Material = Enum.Material.SmoothPlastic
  3263. p10.CFrame = CFrame.new(1.09920263, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3264. p10.CanCollide = false
  3265. p10.Locked = true
  3266. p10.FormFactor = Enum.FormFactor.Custom
  3267. p10.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3268. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3269. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3270. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3271. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3272. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3273. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. b10 = Instance.new("BlockMesh", p10)
  3275. b10.Name = "Mesh"
  3276. b10.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3277. p11 = Instance.new("Part", m6)
  3278. p11.BrickColor = BrickColor.new("Black")
  3279. p11.Material = Enum.Material.SmoothPlastic
  3280. p11.CFrame = CFrame.new(-1.13953161, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3281. p11.CanCollide = false
  3282. p11.Locked = true
  3283. p11.FormFactor = Enum.FormFactor.Custom
  3284. p11.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3285. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3286. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3287. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3288. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3289. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. b11 = Instance.new("BlockMesh", p11)
  3292. b11.Name = "Mesh"
  3293. b11.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3294. p12 = Instance.new("Part", m6)
  3295. p12.BrickColor = BrickColor.new("Black")
  3296. p12.Material = Enum.Material.SmoothPlastic
  3297. p12.CFrame = CFrame.new(-1.6992135, 3.29041815, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3298. p12.CanCollide = false
  3299. p12.Locked = true
  3300. p12.FormFactor = Enum.FormFactor.Custom
  3301. p12.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3302. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3303. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3304. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3305. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3306. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. b12 = Instance.new("BlockMesh", p12)
  3309. b12.Name = "Mesh"
  3310. b12.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3311. p13 = Instance.new("Part", m6)
  3312. p13.BrickColor = BrickColor.new("Black")
  3313. p13.Material = Enum.Material.SmoothPlastic
  3314. p13.Name = "BottomLeftFlap"
  3315. p13.CFrame = CFrame.new(-1.13953161, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3316. p13.CanCollide = false
  3317. p13.Locked = true
  3318. p13.FormFactor = Enum.FormFactor.Custom
  3319. p13.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  3320. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3321. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3322. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3323. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3324. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3325. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3326. b13 = Instance.new("BlockMesh", p13)
  3327. b13.Name = "Mesh"
  3328. b13.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3329. p14 = Instance.new("Part", m6)
  3330. p14.BrickColor = BrickColor.new("Black")
  3331. p14.Material = Enum.Material.SmoothPlastic
  3332. p14.Transparency = 1
  3333. p14.Name = "Rotater"
  3334. p14.CFrame = CFrame.new(-0.300001532, 4.82954979, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3335. p14.CanCollide = false
  3336. p14.Locked = true
  3337. p14.FormFactor = Enum.FormFactor.Custom
  3338. p14.Size = Vector3.new(1.25928617, 0.232357651, 0.232357636)
  3339. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3340. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3341. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3342. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3343. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3344. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3345. b14 = Instance.new("BlockMesh", p14)
  3346. b14.Name = "Mesh"
  3347. b14.Scale = Vector3.new(1, 0.632287025, 0.632287025)
  3348. p15 = Instance.new("Part", m6)
  3349. p15.BrickColor = BrickColor.new("Black")
  3350. p15.Material = Enum.Material.SmoothPlastic
  3351. p15.CFrame = CFrame.new(-1.41937125, 4.40979004, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3352. p15.CanCollide = false
  3353. p15.Locked = true
  3354. p15.FormFactor = Enum.FormFactor.Custom
  3355. p15.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3356. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3357. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3358. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3359. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3360. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3361. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3362. b15 = Instance.new("BlockMesh", p15)
  3363. b15.Name = "Mesh"
  3364. b15.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3365. p16 = Instance.new("Part", m6)
  3366. p16.BrickColor = BrickColor.new("Black")
  3367. p16.Material = Enum.Material.SmoothPlastic
  3368. p16.Name = "BottomCenterFlap"
  3369. p16.CFrame = CFrame.new(-0.300009966, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3370. p16.CanCollide = false
  3371. p16.Locked = true
  3372. p16.FormFactor = Enum.FormFactor.Custom
  3373. p16.Size = Vector3.new(0.699603498, 0.232357651, 0.232357636)
  3374. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3375. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3376. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3377. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3378. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3379. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3380. b16 = Instance.new("BlockMesh", p16)
  3381. b16.Name = "Mesh"
  3382. b16.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3383. p17 = Instance.new("Part", m6)
  3384. p17.BrickColor = BrickColor.new("Black")
  3385. p17.Material = Enum.Material.SmoothPlastic
  3386. p17.CFrame = CFrame.new(-1.27945054, 4.26986647, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3387. p17.CanCollide = false
  3388. p17.Locked = true
  3389. p17.FormFactor = Enum.FormFactor.Custom
  3390. p17.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3391. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3392. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3393. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3394. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3395. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3396. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3397. b17 = Instance.new("BlockMesh", p17)
  3398. b17.Name = "Mesh"
  3399. b17.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3400. p18 = Instance.new("Part", m6)
  3401. p18.BrickColor = BrickColor.new("Black")
  3402. p18.Material = Enum.Material.SmoothPlastic
  3403. p18.CFrame = CFrame.new(0.679436207, 4.26986647, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3404. p18.CanCollide = false
  3405. p18.Locked = true
  3406. p18.FormFactor = Enum.FormFactor.Custom
  3407. p18.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3408. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3409. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3410. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3411. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3412. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3413. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3414. b18 = Instance.new("BlockMesh", p18)
  3415. b18.Name = "Mesh"
  3416. b18.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3417. p19 = Instance.new("WedgePart", m6)
  3418. p19.BrickColor = BrickColor.new("Lime green")
  3419. p19.Name = "Wedge"
  3420. p19.CFrame = CFrame.new(-0.265017539, 1.47144794, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3421. p19.CanCollide = false
  3422. p19.Locked = true
  3423. p19.FormFactor = Enum.FormFactor.Custom
  3424. p19.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3425. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3427. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3428. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3429. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3430. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3431. b19 = Instance.new("SpecialMesh", p19)
  3432. b19.MeshType = Enum.MeshType.Wedge
  3433. b19.Name = "Mesh"
  3434. b19.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3435. p20 = Instance.new("Part", m6)
  3436. p20.BrickColor = BrickColor.new("Black")
  3437. p20.Material = Enum.Material.SmoothPlastic
  3438. p20.CFrame = CFrame.new(1.09919691, 3.29041815, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3439. p20.CanCollide = false
  3440. p20.Locked = true
  3441. p20.FormFactor = Enum.FormFactor.Custom
  3442. p20.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3443. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3446. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3447. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3448. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3449. b20 = Instance.new("BlockMesh", p20)
  3450. b20.Name = "Mesh"
  3451. b20.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3452. p21 = Instance.new("Part", m6)
  3453. p21.BrickColor = BrickColor.new("Black")
  3454. p21.Material = Enum.Material.SmoothPlastic
  3455. p21.CFrame = CFrame.new(0.959275484, 3.1504972, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3456. p21.CanCollide = false
  3457. p21.Locked = true
  3458. p21.FormFactor = Enum.FormFactor.Custom
  3459. p21.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3460. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3461. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3462. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3463. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3464. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3465. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3466. b21 = Instance.new("BlockMesh", p21)
  3467. b21.Name = "Mesh"
  3468. b21.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3469. p22 = Instance.new("WedgePart", m6)
  3470. p22.BrickColor = BrickColor.new("Lime green")
  3471. p22.Name = "Wedge"
  3472. p22.CFrame = CFrame.new(0.50454706, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3473. p22.CanCollide = false
  3474. p22.Locked = true
  3475. p22.FormFactor = Enum.FormFactor.Custom
  3476. p22.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3477. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3478. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3479. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3480. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3482. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3483. b22 = Instance.new("SpecialMesh", p22)
  3484. b22.MeshType = Enum.MeshType.Wedge
  3485. b22.Name = "Mesh"
  3486. b22.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3487. p23 = Instance.new("WedgePart", m6)
  3488. p23.BrickColor = BrickColor.new("Lime green")
  3489. p23.Material = Enum.Material.SmoothPlastic
  3490. p23.Name = "Wedge"
  3491. p23.CFrame = CFrame.new(1.09919691, 3.85010386, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3492. p23.CanCollide = false
  3493. p23.Locked = true
  3494. p23.FormFactor = Enum.FormFactor.Custom
  3495. p23.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3496. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3497. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3499. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3500. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3501. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3502. b23 = Instance.new("SpecialMesh", p23)
  3503. b23.MeshType = Enum.MeshType.Wedge
  3504. b23.Name = "Mesh"
  3505. b23.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3506. p24 = Instance.new("WedgePart", m6)
  3507. p24.BrickColor = BrickColor.new("Black")
  3508. p24.Material = Enum.Material.SmoothPlastic
  3509. p24.Name = "Wedge"
  3510. p24.CFrame = CFrame.new(0.959281087, 2.45089102, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3511. p24.CanCollide = false
  3512. p24.Locked = true
  3513. p24.FormFactor = Enum.FormFactor.Custom
  3514. p24.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3515. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3516. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3519. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3520. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3521. b24 = Instance.new("SpecialMesh", p24)
  3522. b24.MeshType = Enum.MeshType.Wedge
  3523. b24.Name = "Mesh"
  3524. b24.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3525. p25 = Instance.new("WedgePart", m6)
  3526. p25.BrickColor = BrickColor.new("Lime green")
  3527. p25.Name = "Wedge"
  3528. p25.CFrame = CFrame.new(0.574507415, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3529. p25.CanCollide = false
  3530. p25.Locked = true
  3531. p25.FormFactor = Enum.FormFactor.Custom
  3532. p25.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3533. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3534. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3536. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3537. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3538. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3539. b25 = Instance.new("SpecialMesh", p25)
  3540. b25.MeshType = Enum.MeshType.Wedge
  3541. b25.Name = "Mesh"
  3542. b25.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3543. p26 = Instance.new("WedgePart", m6)
  3544. p26.BrickColor = BrickColor.new("Black")
  3545. p26.Material = Enum.Material.SmoothPlastic
  3546. p26.Name = "Wedge"
  3547. p26.CFrame = CFrame.new(-1.06957662, 4.68963194, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3548. p26.CanCollide = false
  3549. p26.Locked = true
  3550. p26.FormFactor = Enum.FormFactor.Custom
  3551. p26.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3552. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3553. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3554. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3555. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3556. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3557. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3558. b26 = Instance.new("SpecialMesh", p26)
  3559. b26.MeshType = Enum.MeshType.Wedge
  3560. b26.Name = "Mesh"
  3561. b26.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3562. p27 = Instance.new("Part", m6)
  3563. p27.BrickColor = BrickColor.new("Black")
  3564. p27.Material = Enum.Material.SmoothPlastic
  3565. p27.CFrame = CFrame.new(-1.55929208, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3566. p27.CanCollide = false
  3567. p27.Locked = true
  3568. p27.FormFactor = Enum.FormFactor.Custom
  3569. p27.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3570. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3571. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3572. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3573. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3574. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3575. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3576. b27 = Instance.new("BlockMesh", p27)
  3577. b27.Name = "Mesh"
  3578. b27.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3579. p28 = Instance.new("WedgePart", m6)
  3580. p28.BrickColor = BrickColor.new("Black")
  3581. p28.Material = Enum.Material.SmoothPlastic
  3582. p28.Name = "Wedge"
  3583. p28.CFrame = CFrame.new(0.959275484, 3.71018291, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3584. p28.CanCollide = false
  3585. p28.Locked = true
  3586. p28.FormFactor = Enum.FormFactor.Custom
  3587. p28.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3588. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3589. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3590. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3591. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3592. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3593. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3594. b28 = Instance.new("SpecialMesh", p28)
  3595. b28.MeshType = Enum.MeshType.Wedge
  3596. b28.Name = "Mesh"
  3597. b28.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3598. p29 = Instance.new("Part", m6)
  3599. p29.BrickColor = BrickColor.new("Black")
  3600. p29.Material = Enum.Material.SmoothPlastic
  3601. p29.CFrame = CFrame.new(-1.55929208, 3.15049648, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3602. p29.CanCollide = false
  3603. p29.Locked = true
  3604. p29.FormFactor = Enum.FormFactor.Custom
  3605. p29.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3606. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3607. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3608. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3609. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3610. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3611. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3612. b29 = Instance.new("BlockMesh", p29)
  3613. b29.Name = "Mesh"
  3614. b29.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3615. p30 = Instance.new("WedgePart", m6)
  3616. p30.BrickColor = BrickColor.new("Black")
  3617. p30.Material = Enum.Material.SmoothPlastic
  3618. p30.Name = "Wedge"
  3619. p30.CFrame = CFrame.new(1.09919691, 3.15049744, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3620. p30.CanCollide = false
  3621. p30.Locked = true
  3622. p30.FormFactor = Enum.FormFactor.Custom
  3623. p30.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3624. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3625. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3626. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3627. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3628. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3629. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3630. b30 = Instance.new("SpecialMesh", p30)
  3631. b30.MeshType = Enum.MeshType.Wedge
  3632. b30.Name = "Mesh"
  3633. b30.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3634. p31 = Instance.new("WedgePart", m6)
  3635. p31.BrickColor = BrickColor.new("Black")
  3636. p31.Material = Enum.Material.SmoothPlastic
  3637. p31.Name = "Wedge"
  3638. p31.CFrame = CFrame.new(0.119759142, 2.31096911, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3639. p31.CanCollide = false
  3640. p31.Locked = true
  3641. p31.FormFactor = Enum.FormFactor.Custom
  3642. p31.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3643. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3644. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3645. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3646. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3647. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3648. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3649. b31 = Instance.new("SpecialMesh", p31)
  3650. b31.MeshType = Enum.MeshType.Wedge
  3651. b31.Name = "Mesh"
  3652. b31.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3653. p32 = Instance.new("Part", m6)
  3654. p32.BrickColor = BrickColor.new("Black")
  3655. p32.Material = Enum.Material.SmoothPlastic
  3656. p32.Name = "BottomRightFlap"
  3657. p32.CFrame = CFrame.new(0.539517641, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3658. p32.CanCollide = false
  3659. p32.Locked = true
  3660. p32.FormFactor = Enum.FormFactor.Custom
  3661. p32.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  3662. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3663. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3664. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3665. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3666. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3667. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3668. b32 = Instance.new("BlockMesh", p32)
  3669. b32.Name = "Mesh"
  3670. b32.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3671. p33 = Instance.new("WedgePart", m6)
  3672. p33.BrickColor = BrickColor.new("Black")
  3673. p33.Material = Enum.Material.SmoothPlastic
  3674. p33.Name = "Wedge"
  3675. p33.CFrame = CFrame.new(1.02923799, 3.43033957, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3676. p33.CanCollide = false
  3677. p33.Locked = true
  3678. p33.FormFactor = Enum.FormFactor.Custom
  3679. p33.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3680. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3681. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3682. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3683. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3684. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3685. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3686. b33 = Instance.new("SpecialMesh", p33)
  3687. b33.MeshType = Enum.MeshType.Wedge
  3688. b33.Name = "Mesh"
  3689. b33.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3690. p34 = Instance.new("WedgePart", m6)
  3691. p34.BrickColor = BrickColor.new("Black")
  3692. p34.Material = Enum.Material.SmoothPlastic
  3693. p34.Name = "Wedge"
  3694. p34.CFrame = CFrame.new(-1.55929208, 2.45089054, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3695. p34.CanCollide = false
  3696. p34.Locked = true
  3697. p34.FormFactor = Enum.FormFactor.Custom
  3698. p34.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3699. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3700. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3701. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3702. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3703. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3704. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3705. b34 = Instance.new("SpecialMesh", p34)
  3706. b34.MeshType = Enum.MeshType.Wedge
  3707. b34.Name = "Mesh"
  3708. b34.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3709. p35 = Instance.new("Part", m6)
  3710. p35.BrickColor = BrickColor.new("Black")
  3711. p35.Material = Enum.Material.SmoothPlastic
  3712. p35.CFrame = CFrame.new(0.959275484, 3.85010386, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3713. p35.CanCollide = false
  3714. p35.Locked = true
  3715. p35.FormFactor = Enum.FormFactor.Custom
  3716. p35.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3717. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3718. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3719. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3720. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3721. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3722. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3723. b35 = Instance.new("BlockMesh", p35)
  3724. b35.Name = "Mesh"
  3725. b35.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3726. p36 = Instance.new("WedgePart", m6)
  3727. p36.BrickColor = BrickColor.new("Black")
  3728. p36.Material = Enum.Material.SmoothPlastic
  3729. p36.Name = "Wedge"
  3730. p36.CFrame = CFrame.new(-1.62925327, 3.43033957, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3731. p36.CanCollide = false
  3732. p36.Locked = true
  3733. p36.FormFactor = Enum.FormFactor.Custom
  3734. p36.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3735. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3736. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3737. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3738. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3739. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3740. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3741. b36 = Instance.new("SpecialMesh", p36)
  3742. b36.MeshType = Enum.MeshType.Wedge
  3743. b36.Name = "Mesh"
  3744. b36.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3745. p37 = Instance.new("Part", m6)
  3746. p37.BrickColor = BrickColor.new("Black")
  3747. p37.Material = Enum.Material.SmoothPlastic
  3748. p37.Name = "CapeLevel3"
  3749. p37.CFrame = CFrame.new(-0.300008506, 3.22045994, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3750. p37.CanCollide = false
  3751. p37.Locked = true
  3752. p37.FormFactor = Enum.FormFactor.Custom
  3753. p37.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3754. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3755. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3756. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3758. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3759. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3760. b37 = Instance.new("BlockMesh", p37)
  3761. b37.Name = "Mesh"
  3762. b37.Scale = Vector3.new(1, 1, 0.602178097)
  3763. p38 = Instance.new("WedgePart", m6)
  3764. p38.BrickColor = BrickColor.new("Lime green")
  3765. p38.Material = Enum.Material.SmoothPlastic
  3766. p38.Name = "Wedge"
  3767. p38.CFrame = CFrame.new(-1.97905517, 2.73073244, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3768. p38.CanCollide = false
  3769. p38.Locked = true
  3770. p38.FormFactor = Enum.FormFactor.Custom
  3771. p38.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3772. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3774. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3775. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3776. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3777. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3778. b38 = Instance.new("SpecialMesh", p38)
  3779. b38.MeshType = Enum.MeshType.Wedge
  3780. b38.Name = "Mesh"
  3781. b38.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3782. p39 = Instance.new("WedgePart", m6)
  3783. p39.BrickColor = BrickColor.new("Lime green")
  3784. p39.Material = Enum.Material.SmoothPlastic
  3785. p39.Name = "Wedge"
  3786. p39.CFrame = CFrame.new(-1.83913493, 3.29041815, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3787. p39.CanCollide = false
  3788. p39.Locked = true
  3789. p39.FormFactor = Enum.FormFactor.Custom
  3790. p39.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3791. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3792. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3793. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3794. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3795. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3796. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3797. b39 = Instance.new("SpecialMesh", p39)
  3798. b39.MeshType = Enum.MeshType.Wedge
  3799. b39.Name = "Mesh"
  3800. b39.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3801. p40 = Instance.new("WedgePart", m6)
  3802. p40.BrickColor = BrickColor.new("Black")
  3803. p40.Material = Enum.Material.SmoothPlastic
  3804. p40.Name = "Wedge"
  3805. p40.CFrame = CFrame.new(-1.48933268, 3.99002528, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3806. p40.CanCollide = false
  3807. p40.Locked = true
  3808. p40.FormFactor = Enum.FormFactor.Custom
  3809. p40.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3810. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3811. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3814. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3815. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3816. b40 = Instance.new("SpecialMesh", p40)
  3817. b40.MeshType = Enum.MeshType.Wedge
  3818. b40.Name = "Mesh"
  3819. b40.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3820. p41 = Instance.new("WedgePart", m6)
  3821. p41.BrickColor = BrickColor.new("Black")
  3822. p41.Material = Enum.Material.SmoothPlastic
  3823. p41.Name = "Wedge"
  3824. p41.CFrame = CFrame.new(-1.76917338, 2.59081101, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3825. p41.CanCollide = false
  3826. p41.Locked = true
  3827. p41.FormFactor = Enum.FormFactor.Custom
  3828. p41.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3829. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3830. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3831. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3832. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3833. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3834. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3835. b41 = Instance.new("SpecialMesh", p41)
  3836. b41.MeshType = Enum.MeshType.Wedge
  3837. b41.Name = "Mesh"
  3838. b41.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3839. p42 = Instance.new("WedgePart", m6)
  3840. p42.BrickColor = BrickColor.new("Black")
  3841. p42.Material = Enum.Material.SmoothPlastic
  3842. p42.Name = "Wedge"
  3843. p42.CFrame = CFrame.new(0.679442644, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3844. p42.CanCollide = false
  3845. p42.Locked = true
  3846. p42.FormFactor = Enum.FormFactor.Custom
  3847. p42.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3848. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3849. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3850. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3851. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3852. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3853. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3854. b42 = Instance.new("SpecialMesh", p42)
  3855. b42.MeshType = Enum.MeshType.Wedge
  3856. b42.Name = "Mesh"
  3857. b42.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3858. p43 = Instance.new("WedgePart", m6)
  3859. p43.BrickColor = BrickColor.new("Black")
  3860. p43.Material = Enum.Material.SmoothPlastic
  3861. p43.Name = "Wedge"
  3862. p43.CFrame = CFrame.new(-1.76917338, 2.87065363, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3863. p43.CanCollide = false
  3864. p43.Locked = true
  3865. p43.FormFactor = Enum.FormFactor.Custom
  3866. p43.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3867. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3869. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3870. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3871. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3872. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3873. b43 = Instance.new("SpecialMesh", p43)
  3874. b43.MeshType = Enum.MeshType.Wedge
  3875. b43.Name = "Mesh"
  3876. b43.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3877. p44 = Instance.new("WedgePart", m6)
  3878. p44.BrickColor = BrickColor.new("Black")
  3879. p44.Material = Enum.Material.SmoothPlastic
  3880. p44.Name = "Wedge"
  3881. p44.CFrame = CFrame.new(-1.41937125, 4.26986837, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3882. p44.CanCollide = false
  3883. p44.Locked = true
  3884. p44.FormFactor = Enum.FormFactor.Custom
  3885. p44.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3886. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3887. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3888. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3889. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3890. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3891. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3892. b44 = Instance.new("SpecialMesh", p44)
  3893. b44.MeshType = Enum.MeshType.Wedge
  3894. b44.Name = "Mesh"
  3895. b44.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3896. p45 = Instance.new("WedgePart", m6)
  3897. p45.BrickColor = BrickColor.new("Black")
  3898. p45.Material = Enum.Material.SmoothPlastic
  3899. p45.Name = "Wedge"
  3900. p45.CFrame = CFrame.new(-0.999610066, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3901. p45.CanCollide = false
  3902. p45.Locked = true
  3903. p45.FormFactor = Enum.FormFactor.Custom
  3904. p45.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3905. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3906. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3907. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3908. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3909. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3910. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3911. b45 = Instance.new("SpecialMesh", p45)
  3912. b45.MeshType = Enum.MeshType.Wedge
  3913. b45.Name = "Mesh"
  3914. b45.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3915. p46 = Instance.new("WedgePart", m6)
  3916. p46.BrickColor = BrickColor.new("Black")
  3917. p46.Material = Enum.Material.SmoothPlastic
  3918. p46.Name = "Wedge"
  3919. p46.CFrame = CFrame.new(0.46955356, 4.68963194, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3920. p46.CanCollide = false
  3921. p46.Locked = true
  3922. p46.FormFactor = Enum.FormFactor.Custom
  3923. p46.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3924. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3925. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3926. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3927. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3928. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3929. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3930. b46 = Instance.new("SpecialMesh", p46)
  3931. b46.MeshType = Enum.MeshType.Wedge
  3932. b46.Name = "Mesh"
  3933. b46.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3934. p47 = Instance.new("Part", m6)
  3935. p47.BrickColor = BrickColor.new("Black")
  3936. p47.Material = Enum.Material.SmoothPlastic
  3937. p47.CFrame = CFrame.new(0.819356859, 4.40979004, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3938. p47.CanCollide = false
  3939. p47.Locked = true
  3940. p47.FormFactor = Enum.FormFactor.Custom
  3941. p47.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3942. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3943. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3944. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3945. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3946. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3947. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3948. b47 = Instance.new("BlockMesh", p47)
  3949. b47.Name = "Mesh"
  3950. b47.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3951. p48 = Instance.new("Part", m6)
  3952. p48.BrickColor = BrickColor.new("Black")
  3953. p48.Material = Enum.Material.SmoothPlastic
  3954. p48.Name = "CapeLevel4"
  3955. p48.CFrame = CFrame.new(-0.300008506, 2.66077495, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3956. p48.CanCollide = false
  3957. p48.Locked = true
  3958. p48.FormFactor = Enum.FormFactor.Custom
  3959. p48.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3960. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3961. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3962. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3963. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3964. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3965. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3966. b48 = Instance.new("BlockMesh", p48)
  3967. b48.Name = "Mesh"
  3968. b48.Scale = Vector3.new(1, 1, 0.602178097)
  3969. p49 = Instance.new("WedgePart", m6)
  3970. p49.BrickColor = BrickColor.new("Black")
  3971. p49.Material = Enum.Material.SmoothPlastic
  3972. p49.Name = "Wedge"
  3973. p49.CFrame = CFrame.new(0.819356859, 4.26986837, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3974. p49.CanCollide = false
  3975. p49.Locked = true
  3976. p49.FormFactor = Enum.FormFactor.Custom
  3977. p49.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3978. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3979. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3980. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3981. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3982. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3983. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3984. b49 = Instance.new("SpecialMesh", p49)
  3985. b49.MeshType = Enum.MeshType.Wedge
  3986. b49.Name = "Mesh"
  3987. b49.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3988. p50 = Instance.new("Part", m6)
  3989. p50.BrickColor = BrickColor.new("Black")
  3990. p50.Material = Enum.Material.SmoothPlastic
  3991. p50.Name = "CapeLevel1SubPart"
  3992. p50.CFrame = CFrame.new(-0.300008506, 4.33982658, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3993. p50.CanCollide = false
  3994. p50.Locked = true
  3995. p50.FormFactor = Enum.FormFactor.Custom
  3996. p50.Size = Vector3.new(1.81896901, 0.559682727, 0.232357636)
  3997. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3998. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3999. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4000. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4001. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4002. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4003. b50 = Instance.new("BlockMesh", p50)
  4004. b50.Name = "Mesh"
  4005. b50.Scale = Vector3.new(1, 1, 0.602178097)
  4006. p51 = Instance.new("Part", m6)
  4007. p51.BrickColor = BrickColor.new("Black")
  4008. p51.Material = Enum.Material.SmoothPlastic
  4009. p51.CFrame = CFrame.new(-1.55929291, 3.85010386, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4010. p51.CanCollide = false
  4011. p51.Locked = true
  4012. p51.FormFactor = Enum.FormFactor.Custom
  4013. p51.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4014. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4015. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4016. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4017. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4018. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4019. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4020. b51 = Instance.new("BlockMesh", p51)
  4021. b51.Name = "Mesh"
  4022. b51.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4023. p52 = Instance.new("Part", m6)
  4024. p52.BrickColor = BrickColor.new("Black")
  4025. p52.Material = Enum.Material.SmoothPlastic
  4026. p52.CFrame = CFrame.new(-1.41937149, 3.71018171, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4027. p52.CanCollide = false
  4028. p52.Locked = true
  4029. p52.FormFactor = Enum.FormFactor.Custom
  4030. p52.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  4031. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4032. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4033. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4034. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4035. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4036. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4037. b52 = Instance.new("BlockMesh", p52)
  4038. b52.Name = "Mesh"
  4039. b52.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4040. p53 = Instance.new("WedgePart", m6)
  4041. p53.BrickColor = BrickColor.new("Black")
  4042. p53.Material = Enum.Material.SmoothPlastic
  4043. p53.Name = "Wedge"
  4044. p53.CFrame = CFrame.new(-0.0201580226, 2.03113341, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4045. p53.CanCollide = false
  4046. p53.Locked = true
  4047. p53.FormFactor = Enum.FormFactor.Custom
  4048. p53.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  4049. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4050. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4051. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4052. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4053. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4054. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4055. b53 = Instance.new("SpecialMesh", p53)
  4056. b53.MeshType = Enum.MeshType.Wedge
  4057. b53.Name = "Mesh"
  4058. b53.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4059. p54 = Instance.new("Part", m6)
  4060. p54.BrickColor = BrickColor.new("Black")
  4061. p54.Material = Enum.Material.SmoothPlastic
  4062. p54.CFrame = CFrame.new(-0.300009966, 1.68132639, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4063. p54.CanCollide = false
  4064. p54.Locked = true
  4065. p54.FormFactor = Enum.FormFactor.Custom
  4066. p54.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  4067. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4068. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4069. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4070. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4071. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4072. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4073. b54 = Instance.new("BlockMesh", p54)
  4074. b54.Name = "Mesh"
  4075. b54.Scale = Vector3.new(0.602178395, 1, 0.602178097)
  4076. p55 = Instance.new("WedgePart", m6)
  4077. p55.BrickColor = BrickColor.new("Black")
  4078. p55.Material = Enum.Material.SmoothPlastic
  4079. p55.Name = "Wedge"
  4080. p55.CFrame = CFrame.new(0.39960131, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4081. p55.CanCollide = false
  4082. p55.Locked = true
  4083. p55.FormFactor = Enum.FormFactor.Custom
  4084. p55.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  4085. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4086. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4087. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4088. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4089. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4090. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4091. b55 = Instance.new("SpecialMesh", p55)
  4092. b55.MeshType = Enum.MeshType.Wedge
  4093. b55.Name = "Mesh"
  4094. b55.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4095. p56 = Instance.new("WedgePart", m6)
  4096. p56.BrickColor = BrickColor.new("Lime green")
  4097. p56.Material = Enum.Material.SmoothPlastic
  4098. p56.Name = "Wedge"
  4099. p56.CFrame = CFrame.new(1.23911822, 3.29041815, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4100. p56.CanCollide = false
  4101. p56.Locked = true
  4102. p56.FormFactor = Enum.FormFactor.Custom
  4103. p56.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4104. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4105. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4106. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4107. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4108. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4109. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4110. b56 = Instance.new("SpecialMesh", p56)
  4111. b56.MeshType = Enum.MeshType.Wedge
  4112. b56.Name = "Mesh"
  4113. b56.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4114. p57 = Instance.new("WedgePart", m6)
  4115. p57.BrickColor = BrickColor.new("Black")
  4116. p57.Material = Enum.Material.SmoothPlastic
  4117. p57.Name = "Wedge"
  4118. p57.CFrame = CFrame.new(0.749394774, 4.54971123, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4119. p57.CanCollide = false
  4120. p57.Locked = true
  4121. p57.FormFactor = Enum.FormFactor.Custom
  4122. p57.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4123. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4124. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4125. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4126. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4127. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4128. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4129. b57 = Instance.new("SpecialMesh", p57)
  4130. b57.MeshType = Enum.MeshType.Wedge
  4131. b57.Name = "Mesh"
  4132. b57.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4133. p58 = Instance.new("Part", m6)
  4134. p58.BrickColor = BrickColor.new("Black")
  4135. p58.Material = Enum.Material.SmoothPlastic
  4136. p58.CFrame = CFrame.new(0.819354892, 3.71018171, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4137. p58.CanCollide = false
  4138. p58.Locked = true
  4139. p58.FormFactor = Enum.FormFactor.Custom
  4140. p58.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  4141. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4142. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4143. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4144. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4145. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4146. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4147. b58 = Instance.new("BlockMesh", p58)
  4148. b58.Name = "Mesh"
  4149. b58.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4150. p59 = Instance.new("WedgePart", m6)
  4151. p59.BrickColor = BrickColor.new("Black")
  4152. p59.Material = Enum.Material.SmoothPlastic
  4153. p59.Name = "Wedge"
  4154. p59.CFrame = CFrame.new(0.259678036, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4155. p59.CanCollide = false
  4156. p59.Locked = true
  4157. p59.FormFactor = Enum.FormFactor.Custom
  4158. p59.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4159. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4160. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4161. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4162. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4163. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4164. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4165. b59 = Instance.new("SpecialMesh", p59)
  4166. b59.MeshType = Enum.MeshType.Wedge
  4167. b59.Name = "Mesh"
  4168. b59.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4169. p60 = Instance.new("Part", m6)
  4170. p60.BrickColor = BrickColor.new("Black")
  4171. p60.Material = Enum.Material.SmoothPlastic
  4172. p60.Name = "NeckPart"
  4173. p60.CFrame = CFrame.new(-0.300008506, 4.82955122, 3.8997519, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4174. p60.CanCollide = false
  4175. p60.Locked = true
  4176. p60.FormFactor = Enum.FormFactor.Custom
  4177. p60.Size = Vector3.new(1.25928628, 0.232357651, 0.419762105)
  4178. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4179. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4180. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4181. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4182. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4183. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4184. b60 = Instance.new("BlockMesh", p60)
  4185. b60.Name = "Mesh"
  4186. b60.Scale = Vector3.new(1, 0.602178097, 1)
  4187. p61 = Instance.new("Part", m6)
  4188. p61.BrickColor = BrickColor.new("Black")
  4189. p61.Material = Enum.Material.SmoothPlastic
  4190. p61.CFrame = CFrame.new(0.959281087, 2.73073363, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4191. p61.CanCollide = false
  4192. p61.Locked = true
  4193. p61.FormFactor = Enum.FormFactor.Custom
  4194. p61.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  4195. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4196. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4197. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4198. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4199. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4200. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4201. b61 = Instance.new("BlockMesh", p61)
  4202. b61.Name = "Mesh"
  4203. b61.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4204. p62 = Instance.new("WedgePart", m6)
  4205. p62.BrickColor = BrickColor.new("Black")
  4206. p62.Material = Enum.Material.SmoothPlastic
  4207. p62.Name = "Wedge"
  4208. p62.CFrame = CFrame.new(1.16916382, 2.87065434, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4209. p62.CanCollide = false
  4210. p62.Locked = true
  4211. p62.FormFactor = Enum.FormFactor.Custom
  4212. p62.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4213. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4214. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4215. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4216. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4217. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4218. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4219. b62 = Instance.new("SpecialMesh", p62)
  4220. b62.MeshType = Enum.MeshType.Wedge
  4221. b62.Name = "Mesh"
  4222. b62.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4223. p63 = Instance.new("WedgePart", m6)
  4224. p63.BrickColor = BrickColor.new("Lime green")
  4225. p63.Material = Enum.Material.SmoothPlastic
  4226. p63.Name = "Wedge"
  4227. p63.CFrame = CFrame.new(1.37904489, 2.73073268, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4228. p63.CanCollide = false
  4229. p63.Locked = true
  4230. p63.FormFactor = Enum.FormFactor.Custom
  4231. p63.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4232. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4233. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4234. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4235. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4236. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4237. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4238. b63 = Instance.new("SpecialMesh", p63)
  4239. b63.MeshType = Enum.MeshType.Wedge
  4240. b63.Name = "Mesh"
  4241. b63.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4242. p64 = Instance.new("WedgePart", m6)
  4243. p64.BrickColor = BrickColor.new("Black")
  4244. p64.Material = Enum.Material.SmoothPlastic
  4245. p64.Name = "Wedge"
  4246. p64.CFrame = CFrame.new(-0.439923674, 1.68132377, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4247. p64.CanCollide = false
  4248. p64.Locked = true
  4249. p64.FormFactor = Enum.FormFactor.Custom
  4250. p64.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  4251. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4252. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4253. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4254. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4255. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4256. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4257. b64 = Instance.new("SpecialMesh", p64)
  4258. b64.MeshType = Enum.MeshType.Wedge
  4259. b64.Name = "Mesh"
  4260. b64.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4261. p65 = Instance.new("WedgePart", m6)
  4262. p65.BrickColor = BrickColor.new("Black")
  4263. p65.Material = Enum.Material.SmoothPlastic
  4264. p65.Name = "Wedge"
  4265. p65.CFrame = CFrame.new(-0.859687686, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4266. p65.CanCollide = false
  4267. p65.Locked = true
  4268. p65.FormFactor = Enum.FormFactor.Custom
  4269. p65.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4270. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4271. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4272. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4273. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4274. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4275. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4276. b65 = Instance.new("SpecialMesh", p65)
  4277. b65.MeshType = Enum.MeshType.Wedge
  4278. b65.Name = "Mesh"
  4279. b65.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4280. p66 = Instance.new("WedgePart", m6)
  4281. p66.BrickColor = BrickColor.new("Black")
  4282. p66.Material = Enum.Material.SmoothPlastic
  4283. p66.Name = "Wedge"
  4284. p66.CFrame = CFrame.new(-1.55929291, 3.71018267, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4285. p66.CanCollide = false
  4286. p66.Locked = true
  4287. p66.FormFactor = Enum.FormFactor.Custom
  4288. p66.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4289. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4290. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4291. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4292. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4293. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4294. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4295. b66 = Instance.new("SpecialMesh", p66)
  4296. b66.MeshType = Enum.MeshType.Wedge
  4297. b66.Name = "Mesh"
  4298. b66.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4299. p67 = Instance.new("WedgePart", m6)
  4300. p67.BrickColor = BrickColor.new("Black")
  4301. p67.Material = Enum.Material.SmoothPlastic
  4302. p67.Name = "Wedge"
  4303. p67.CFrame = CFrame.new(-0.719767809, 2.31096911, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4304. p67.CanCollide = false
  4305. p67.Locked = true
  4306. p67.FormFactor = Enum.FormFactor.Custom
  4307. p67.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4308. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4309. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4310. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4311. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4312. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4313. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4314. b67 = Instance.new("SpecialMesh", p67)
  4315. b67.MeshType = Enum.MeshType.Wedge
  4316. b67.Name = "Mesh"
  4317. b67.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4318. p68 = Instance.new("WedgePart", m6)
  4319. p68.BrickColor = BrickColor.new("Lime green")
  4320. p68.Name = "Wedge"
  4321. p68.CFrame = CFrame.new(-1.17450571, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4322. p68.CanCollide = false
  4323. p68.Locked = true
  4324. p68.FormFactor = Enum.FormFactor.Custom
  4325. p68.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4326. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4327. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4328. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4329. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4330. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4331. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4332. b68 = Instance.new("SpecialMesh", p68)
  4333. b68.MeshType = Enum.MeshType.Wedge
  4334. b68.Name = "Mesh"
  4335. b68.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  4336. p69 = Instance.new("WedgePart", m6)
  4337. p69.BrickColor = BrickColor.new("Lime green")
  4338. p69.Name = "Wedge"
  4339. p69.CFrame = CFrame.new(-1.10454547, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4340. p69.CanCollide = false
  4341. p69.Locked = true
  4342. p69.FormFactor = Enum.FormFactor.Custom
  4343. p69.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4344. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4345. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4346. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4347. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4348. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4349. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4350. b69 = Instance.new("SpecialMesh", p69)
  4351. b69.MeshType = Enum.MeshType.Wedge
  4352. b69.Name = "Mesh"
  4353. b69.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  4354. p70 = Instance.new("WedgePart", m6)
  4355. p70.BrickColor = BrickColor.new("Black")
  4356. p70.Material = Enum.Material.SmoothPlastic
  4357. p70.Name = "Wedge"
  4358. p70.CFrame = CFrame.new(0.889316559, 3.99002528, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4359. p70.CanCollide = false
  4360. p70.Locked = true
  4361. p70.FormFactor = Enum.FormFactor.Custom
  4362. p70.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4363. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4364. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4365. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4366. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4367. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4368. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4369. b70 = Instance.new("SpecialMesh", p70)
  4370. b70.MeshType = Enum.MeshType.Wedge
  4371. b70.Name = "Mesh"
  4372. b70.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4373. p71 = Instance.new("WedgePart", m6)
  4374. p71.BrickColor = BrickColor.new("Lime green")
  4375. p71.Name = "Wedge"
  4376. p71.CFrame = CFrame.new(-0.334977895, 1.47144794, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4377. p71.CanCollide = false
  4378. p71.Locked = true
  4379. p71.FormFactor = Enum.FormFactor.Custom
  4380. p71.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4381. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4382. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4383. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4384. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4385. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4386. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4387. b71 = Instance.new("SpecialMesh", p71)
  4388. b71.MeshType = Enum.MeshType.Wedge
  4389. b71.Name = "Mesh"
  4390. b71.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  4391. p72 = Instance.new("WedgePart", m6)
  4392. p72.BrickColor = BrickColor.new("Black")
  4393. p72.Material = Enum.Material.SmoothPlastic
  4394. p72.Name = "Wedge"
  4395. p72.CFrame = CFrame.new(-0.579845786, 2.03112626, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4396. p72.CanCollide = false
  4397. p72.Locked = true
  4398. p72.FormFactor = Enum.FormFactor.Custom
  4399. p72.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  4400. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4401. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4402. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4403. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4404. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4405. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4406. b72 = Instance.new("SpecialMesh", p72)
  4407. b72.MeshType = Enum.MeshType.Wedge
  4408. b72.Name = "Mesh"
  4409. b72.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4410. p73 = Instance.new("WedgePart", m6)
  4411. p73.BrickColor = BrickColor.new("Black")
  4412. p73.Material = Enum.Material.SmoothPlastic
  4413. p73.Name = "Wedge"
  4414. p73.CFrame = CFrame.new(-1.41937125, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4415. p73.CanCollide = false
  4416. p73.Locked = true
  4417. p73.FormFactor = Enum.FormFactor.Custom
  4418. p73.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4419. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4420. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4421. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4422. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4423. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4424. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4425. b73 = Instance.new("SpecialMesh", p73)
  4426. b73.MeshType = Enum.MeshType.Wedge
  4427. b73.Name = "Mesh"
  4428. b73.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4429. p74 = Instance.new("WedgePart", m6)
  4430. p74.BrickColor = BrickColor.new("Black")
  4431. p74.Material = Enum.Material.SmoothPlastic
  4432. p74.Name = "Wedge"
  4433. p74.CFrame = CFrame.new(1.16916382, 2.59081125, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4434. p74.CanCollide = false
  4435. p74.Locked = true
  4436. p74.FormFactor = Enum.FormFactor.Custom
  4437. p74.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4438. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4439. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4440. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4441. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4442. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4443. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4444. b74 = Instance.new("SpecialMesh", p74)
  4445. b74.MeshType = Enum.MeshType.Wedge
  4446. b74.Name = "Mesh"
  4447. b74.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4448. p75 = Instance.new("WedgePart", m6)
  4449. p75.BrickColor = BrickColor.new("Black")
  4450. p75.Material = Enum.Material.SmoothPlastic
  4451. p75.Name = "Wedge"
  4452. p75.CFrame = CFrame.new(-0.160081401, 1.68132377, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4453. p75.CanCollide = false
  4454. p75.Locked = true
  4455. p75.FormFactor = Enum.FormFactor.Custom
  4456. p75.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  4457. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4458. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4459. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4460. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4461. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4462. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4463. b75 = Instance.new("SpecialMesh", p75)
  4464. b75.MeshType = Enum.MeshType.Wedge
  4465. b75.Name = "Mesh"
  4466. b75.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  4467. p76 = Instance.new("WedgePart", m6)
  4468. p76.BrickColor = BrickColor.new("Black")
  4469. p76.Material = Enum.Material.SmoothPlastic
  4470. p76.Name = "Wedge"
  4471. p76.CFrame = CFrame.new(0.819362521, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4472. p76.CanCollide = false
  4473. p76.Locked = true
  4474. p76.FormFactor = Enum.FormFactor.Custom
  4475. p76.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4476. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4477. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4478. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4479. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4480. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4481. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4482. b76 = Instance.new("SpecialMesh", p76)
  4483. b76.MeshType = Enum.MeshType.Wedge
  4484. b76.Name = "Mesh"
  4485. b76.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4486. p77 = Instance.new("WedgePart", m6)
  4487. p77.BrickColor = BrickColor.new("Lime green")
  4488. p77.Material = Enum.Material.SmoothPlastic
  4489. p77.Name = "Wedge"
  4490. p77.CFrame = CFrame.new(-1.55929291, 4.40979004, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4491. p77.CanCollide = false
  4492. p77.Locked = true
  4493. p77.FormFactor = Enum.FormFactor.Custom
  4494. p77.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4495. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4496. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4497. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4498. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4499. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4500. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4501. b77 = Instance.new("SpecialMesh", p77)
  4502. b77.MeshType = Enum.MeshType.Wedge
  4503. b77.Name = "Mesh"
  4504. b77.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4505. p78 = Instance.new("WedgePart", m6)
  4506. p78.BrickColor = BrickColor.new("Black")
  4507. p78.Material = Enum.Material.SmoothPlastic
  4508. p78.Name = "Wedge"
  4509. p78.CFrame = CFrame.new(-1.34941173, 4.54971123, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4510. p78.CanCollide = false
  4511. p78.Locked = true
  4512. p78.FormFactor = Enum.FormFactor.Custom
  4513. p78.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  4514. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4515. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4516. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4517. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4518. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4519. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4520. b78 = Instance.new("SpecialMesh", p78)
  4521. b78.MeshType = Enum.MeshType.Wedge
  4522. b78.Name = "Mesh"
  4523. b78.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  4524. p79 = Instance.new("WedgePart", m6)
  4525. p79.BrickColor = BrickColor.new("Lime green")
  4526. p79.Material = Enum.Material.SmoothPlastic
  4527. p79.Name = "Wedge"
  4528. p79.CFrame = CFrame.new(-1.6992141, 3.85010386, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4529. p79.CanCollide = false
  4530. p79.Locked = true
  4531. p79.FormFactor = Enum.FormFactor.Custom
  4532. p79.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4533. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4534. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4535. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4536. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4537. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4538. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4539. b79 = Instance.new("SpecialMesh", p79)
  4540. b79.MeshType = Enum.MeshType.Wedge
  4541. b79.Name = "Mesh"
  4542. b79.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4543. p80 = Instance.new("WedgePart", m6)
  4544. p80.BrickColor = BrickColor.new("Black")
  4545. p80.Material = Enum.Material.SmoothPlastic
  4546. p80.Name = "Wedge"
  4547. p80.CFrame = CFrame.new(-1.6992135, 3.1504972, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4548. p80.CanCollide = false
  4549. p80.Locked = true
  4550. p80.FormFactor = Enum.FormFactor.Custom
  4551. p80.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4552. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4553. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4554. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4555. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4556. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4557. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4558. b80 = Instance.new("SpecialMesh", p80)
  4559. b80.MeshType = Enum.MeshType.Wedge
  4560. b80.Name = "Mesh"
  4561. b80.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4562. w1 = Instance.new("Weld", p1)
  4563. w1.Name = "Joint"
  4564. w1.Part0 = p1
  4565. w1.C0 = CFrame.new(0, 0, 0.139921591, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4566. w1.Part1 = p47
  4567. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4568. w2 = Instance.new("Weld", p2)
  4569. w2.Name = "Joint"
  4570. w2.Part0 = p2
  4571. w2.C0 = CFrame.new(0, -2.7097974e-006, 0.139918938, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4572. w2.Part1 = p11
  4573. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4574. w3 = Instance.new("Weld", p3)
  4575. w3.Name = "Joint"
  4576. w3.Part0 = p3
  4577. w3.C0 = CFrame.new(0, 0.559684455, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4578. w3.Part1 = p50
  4579. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4580. w4 = Instance.new("Weld", p4)
  4581. w4.Name = "Joint"
  4582. w4.Part0 = p4
  4583. w4.C0 = CFrame.new(-0.139921427, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4584. w4.Part1 = p5
  4585. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4586. w5 = Instance.new("Weld", p5)
  4587. w5.Name = "Joint"
  4588. w5.Part0 = p5
  4589. w5.C0 = CFrame.new(-0.139920607, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4590. w5.Part1 = p27
  4591. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4592. w6 = Instance.new("Weld", p6)
  4593. w6.Name = "Joint"
  4594. w6.Part0 = p6
  4595. w6.C0 = CFrame.new(6.98293934e-006, 0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4596. w6.Part1 = p14
  4597. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4598. w7 = Instance.new("Weld", p7)
  4599. w7.Name = "Joint"
  4600. w7.Part0 = p7
  4601. w7.C0 = CFrame.new(-0.139921531, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4602. w7.Part1 = p10
  4603. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4604. w8 = Instance.new("Weld", p8)
  4605. w8.Name = "Joint"
  4606. w8.Part0 = p8
  4607. w8.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4608. w8.Part1 = p32
  4609. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4610. w9 = Instance.new("Weld", p9)
  4611. w9.Name = "Joint"
  4612. w9.Part0 = p9
  4613. w9.C0 = CFrame.new(0, 0.279842764, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4614. w9.Part1 = p16
  4615. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4616. w10 = Instance.new("Weld", p10)
  4617. w10.Name = "Joint"
  4618. w10.Part0 = p10
  4619. w10.C0 = CFrame.new(-0.139921531, 1.04222977e-006, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4620. w10.Part1 = p61
  4621. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4622. w11 = Instance.new("Weld", p11)
  4623. w11.Name = "Joint"
  4624. w11.Part0 = p11
  4625. w11.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4626. w11.Part1 = p13
  4627. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4628. w12 = Instance.new("Weld", p12)
  4629. w12.Name = "Joint"
  4630. w12.Part0 = p12
  4631. w12.C0 = CFrame.new(-0.139921427, -0.139921635, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4632. w12.Part1 = p29
  4633. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4634. w13 = Instance.new("Weld", p13)
  4635. w13.Name = "Joint"
  4636. w13.Part0 = p13
  4637. w13.C0 = CFrame.new(0.839523137, 0.349802732, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4638. w13.Part1 = p48
  4639. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4640. w14 = Instance.new("Weld", p14)
  4641. w14.Name = "Joint"
  4642. w14.Part0 = p14
  4643. w14.C0 = CFrame.new(-6.98293934e-006, 1.25067584e-006, -0.139921844, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4644. w14.Part1 = p60
  4645. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4646. w15 = Instance.new("Weld", p15)
  4647. w15.Name = "Joint"
  4648. w15.Part0 = p15
  4649. w15.C0 = CFrame.new(-0.139920712, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4650. w15.Part1 = p17
  4651. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4652. w16 = Instance.new("Weld", p16)
  4653. w16.Name = "Joint"
  4654. w16.Part0 = p16
  4655. w16.C0 = CFrame.new(1.45912168e-006, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4656. w16.Part1 = p48
  4657. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4658. w17 = Instance.new("Weld", p17)
  4659. w17.Name = "Joint"
  4660. w17.Part0 = p17
  4661. w17.C0 = CFrame.new(-0.97944206, 0.0699603036, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4662. w17.Part1 = p50
  4663. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4664. w18 = Instance.new("Weld", p18)
  4665. w18.Name = "Joint"
  4666. w18.Part0 = p18
  4667. w18.C0 = CFrame.new(-0.979444683, 0.0699603036, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4668. w18.Part1 = p50
  4669. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4670. w19 = Instance.new("Weld", p19)
  4671. w19.Name = "Joint"
  4672. w19.Part0 = p19
  4673. w19.C0 = CFrame.new(0, -0.2098784, 0.0349924229, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4674. w19.Part1 = p54
  4675. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4676. w20 = Instance.new("Weld", p20)
  4677. w20.Name = "Joint"
  4678. w20.Part0 = p20
  4679. w20.C0 = CFrame.new(-0.139921427, -0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4680. w20.Part1 = p21
  4681. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4682. w21 = Instance.new("Weld", p21)
  4683. w21.Name = "Joint"
  4684. w21.Part0 = p21
  4685. w21.C0 = CFrame.new(-1.25928402, 0.0699627995, -1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4686. w21.Part1 = p37
  4687. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4688. w22 = Instance.new("Weld", p22)
  4689. w22.Name = "Joint"
  4690. w22.Part0 = p22
  4691. w22.C0 = CFrame.new(0, -0.209878504, 0.0349705629, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4692. w22.Part1 = p8
  4693. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4694. w23 = Instance.new("Weld", p23)
  4695. w23.Name = "Joint"
  4696. w23.Part0 = p23
  4697. w23.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4698. w23.Part1 = p35
  4699. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4700. w24 = Instance.new("Weld", p24)
  4701. w24.Name = "Joint"
  4702. w24.Part0 = p24
  4703. w24.C0 = CFrame.new(8.33783815e-007, -0.209883824, 1.25928962, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4704. w24.Part1 = p48
  4705. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4706. w25 = Instance.new("Weld", p25)
  4707. w25.Name = "Joint"
  4708. w25.Part0 = p25
  4709. w25.C0 = CFrame.new(0, -0.209878504, 0.0349897929, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4710. w25.Part1 = p8
  4711. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4712. w26 = Instance.new("Weld", p26)
  4713. w26.Name = "Joint"
  4714. w26.Part0 = p26
  4715. w26.C0 = CFrame.new(0, -3.33513526e-006, 0.769568086, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4716. w26.Part1 = p6
  4717. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4718. w27 = Instance.new("Weld", p27)
  4719. w27.Name = "Joint"
  4720. w27.Part0 = p27
  4721. w27.C0 = CFrame.new(-1.25928354, -0.0699575916, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4722. w27.Part1 = p48
  4723. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4724. w28 = Instance.new("Weld", p28)
  4725. w28.Name = "Joint"
  4726. w28.Part0 = p28
  4727. w28.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4728. w28.Part1 = p35
  4729. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4730. w29 = Instance.new("Weld", p29)
  4731. w29.Name = "Joint"
  4732. w29.Part0 = p29
  4733. w29.C0 = CFrame.new(-1.25928354, 0.0699634254, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4734. w29.Part1 = p37
  4735. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4736. w30 = Instance.new("Weld", p30)
  4737. w30.Name = "Joint"
  4738. w30.Part0 = p30
  4739. w30.C0 = CFrame.new(0, -0.139920816, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4740. w30.Part1 = p20
  4741. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4742. w31 = Instance.new("Weld", p31)
  4743. w31.Name = "Joint"
  4744. w31.Part0 = p31
  4745. w31.C0 = CFrame.new(0, -3.02246644e-006, 0.419769108, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4746. w31.Part1 = p16
  4747. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4748. w32 = Instance.new("Weld", p32)
  4749. w32.Name = "Joint"
  4750. w32.Part0 = p32
  4751. w32.C0 = CFrame.new(-0.839526176, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4752. w32.Part1 = p48
  4753. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4754. w33 = Instance.new("Weld", p33)
  4755. w33.Name = "Joint"
  4756. w33.Part0 = p33
  4757. w33.C0 = CFrame.new(1.3548987e-006, -0.279842436, 0.0699624866, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4758. w33.Part1 = p21
  4759. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4760. w34 = Instance.new("Weld", p34)
  4761. w34.Name = "Joint"
  4762. w34.Part0 = p34
  4763. w34.C0 = CFrame.new(0, -0.279842019, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4764. w34.Part1 = p27
  4765. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4766. w35 = Instance.new("Weld", p35)
  4767. w35.Name = "Joint"
  4768. w35.Part0 = p35
  4769. w35.C0 = CFrame.new(-0.139920607, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4770. w35.Part1 = p58
  4771. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4772. w36 = Instance.new("Weld", p36)
  4773. w36.Name = "Joint"
  4774. w36.Part0 = p36
  4775. w36.C0 = CFrame.new(0, -0.279843062, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4776. w36.Part1 = p29
  4777. w36.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4778. w37 = Instance.new("Weld", p37)
  4779. w37.Name = "Joint"
  4780. w37.Part0 = p37
  4781. w37.C0 = CFrame.new(0, 0.559682429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4782. w37.Part1 = p3
  4783. w37.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4784. w38 = Instance.new("Weld", p38)
  4785. w38.Name = "Joint"
  4786. w38.Part0 = p38
  4787. w38.C0 = CFrame.new(0, 0, 0.13992101, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4788. w38.Part1 = p4
  4789. w38.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4790. w39 = Instance.new("Weld", p39)
  4791. w39.Name = "Joint"
  4792. w39.Part0 = p39
  4793. w39.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4794. w39.Part1 = p12
  4795. w39.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4796. w40 = Instance.new("Weld", p40)
  4797. w40.Name = "Joint"
  4798. w40.Part0 = p40
  4799. w40.C0 = CFrame.new(0, -0.279843479, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4800. w40.Part1 = p52
  4801. w40.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4802. w41 = Instance.new("Weld", p41)
  4803. w41.Name = "Joint"
  4804. w41.Part0 = p41
  4805. w41.C0 = CFrame.new(0, -0.139921427, 0.0699607134, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4806. w41.Part1 = p5
  4807. w41.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4808. w42 = Instance.new("Weld", p42)
  4809. w42.Name = "Joint"
  4810. w42.Part0 = p42
  4811. w42.C0 = CFrame.new(0, -2.7097974e-006, 0.139925033, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4812. w42.Part1 = p8
  4813. w42.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4814. w43 = Instance.new("Weld", p43)
  4815. w43.Name = "Joint"
  4816. w43.Part0 = p43
  4817. w43.C0 = CFrame.new(0, -0.139921218, 0.0699607134, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4818. w43.Part1 = p5
  4819. w43.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4820. w44 = Instance.new("Weld", p44)
  4821. w44.Name = "Joint"
  4822. w44.Part0 = p44
  4823. w44.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4824. w44.Part1 = p15
  4825. w44.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4826. w45 = Instance.new("Weld", p45)
  4827. w45.Name = "Joint"
  4828. w45.Part0 = p45
  4829. w45.C0 = CFrame.new(0, -2.7097974e-006, 0.139921531, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4830. w45.Part1 = p11
  4831. w45.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4832. w46 = Instance.new("Weld", p46)
  4833. w46.Name = "Joint"
  4834. w46.Part0 = p46
  4835. w46.C0 = CFrame.new(0, -3.33513526e-006, 0.769562066, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4836. w46.Part1 = p6
  4837. w46.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4838. w47 = Instance.new("Weld", p47)
  4839. w47.Name = "Joint"
  4840. w47.Part0 = p47
  4841. w47.C0 = CFrame.new(-0.139920652, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4842. w47.Part1 = p18
  4843. w47.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4844. w48 = Instance.new("Weld", p48)
  4845. w48.Name = "Joint"
  4846. w48.Part0 = p48
  4847. w48.C0 = CFrame.new(0, 0.559684873, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4848. w48.Part1 = p37
  4849. w48.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4850. w49 = Instance.new("Weld", p49)
  4851. w49.Name = "Joint"
  4852. w49.Part0 = p49
  4853. w49.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4854. w49.Part1 = p47
  4855. w49.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4856. w50 = Instance.new("Weld", p50)
  4857. w50.Name = "Joint"
  4858. w50.Part0 = p50
  4859. w50.C0 = CFrame.new(0, 0.349801898, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4860. w50.Part1 = p6
  4861. w50.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4862. w51 = Instance.new("Weld", p51)
  4863. w51.Name = "Joint"
  4864. w51.Part0 = p51
  4865. w51.C0 = CFrame.new(-0.139921427, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4866. w51.Part1 = p52
  4867. w51.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4868. w52 = Instance.new("Weld", p52)
  4869. w52.Name = "Joint"
  4870. w52.Part0 = p52
  4871. w52.C0 = CFrame.new(-1.11936295, 0.0699607134, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4872. w52.Part1 = p3
  4873. w52.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4874. w53 = Instance.new("Weld", p53)
  4875. w53.Name = "Joint"
  4876. w53.Part0 = p53
  4877. w53.C0 = CFrame.new(0, 3.9604729e-006, 0.279851943, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4878. w53.Part1 = p9
  4879. w53.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4880. w54 = Instance.new("Weld", p54)
  4881. w54.Name = "Joint"
  4882. w54.Part0 = p54
  4883. w54.C0 = CFrame.new(0, 0.349802941, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4884. w54.Part1 = p9
  4885. w54.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4886. w55 = Instance.new("Weld", p55)
  4887. w55.Name = "Joint"
  4888. w55.Part0 = p55
  4889. w55.C0 = CFrame.new(0, -2.7097974e-006, 0.139916331, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4890. w55.Part1 = p8
  4891. w55.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4892. w56 = Instance.new("Weld", p56)
  4893. w56.Name = "Joint"
  4894. w56.Part0 = p56
  4895. w56.C0 = CFrame.new(0, 0, 0.139921322, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4896. w56.Part1 = p20
  4897. w56.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4898. w57 = Instance.new("Weld", p57)
  4899. w57.Name = "Joint"
  4900. w57.Part0 = p57
  4901. w57.C0 = CFrame.new(0, -0.139921427, -0.0699620694, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4902. w57.Part1 = p47
  4903. w57.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4904. w58 = Instance.new("Weld", p58)
  4905. w58.Name = "Joint"
  4906. w58.Part0 = p58
  4907. w58.C0 = CFrame.new(-1.11936343, 0.0699607134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4908. w58.Part1 = p3
  4909. w58.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4910. w59 = Instance.new("Weld", p59)
  4911. w59.Name = "Joint"
  4912. w59.Part0 = p59
  4913. w59.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4914. w59.Part1 = p32
  4915. w59.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4916. w60 = Instance.new("Weld", p61)
  4917. w60.Name = "Joint"
  4918. w60.Part0 = p61
  4919. w60.C0 = CFrame.new(-1.25928962, -0.0699586272, -8.33783815e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4920. w60.Part1 = p48
  4921. w60.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4922. w61 = Instance.new("Weld", p62)
  4923. w61.Name = "Joint"
  4924. w61.Part0 = p62
  4925. w61.C0 = CFrame.new(0, -0.139921635, 0.0699612424, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4926. w61.Part1 = p10
  4927. w61.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4928. w62 = Instance.new("Weld", p63)
  4929. w62.Name = "Joint"
  4930. w62.Part0 = p63
  4931. w62.C0 = CFrame.new(0, 0, 0.139920712, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4932. w62.Part1 = p7
  4933. w62.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4934. w63 = Instance.new("Weld", p64)
  4935. w63.Name = "Joint"
  4936. w63.Part0 = p64
  4937. w63.C0 = CFrame.new(0, -2.60557431e-006, 0.139913708, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4938. w63.Part1 = p54
  4939. w63.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4940. w64 = Instance.new("Weld", p65)
  4941. w64.Name = "Joint"
  4942. w64.Part0 = p65
  4943. w64.C0 = CFrame.new(0, -2.50135167e-006, 0.279843956, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4944. w64.Part1 = p13
  4945. w64.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4946. w65 = Instance.new("Weld", p66)
  4947. w65.Name = "Joint"
  4948. w65.Part0 = p66
  4949. w65.C0 = CFrame.new(0, 1.04222977e-006, 0.139921427, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4950. w65.Part1 = p52
  4951. w65.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4952. w66 = Instance.new("Weld", p67)
  4953. w66.Name = "Joint"
  4954. w66.Part0 = p67
  4955. w66.C0 = CFrame.new(0, -3.02246644e-006, 0.419757843, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4956. w66.Part1 = p16
  4957. w66.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4958. w67 = Instance.new("Weld", p68)
  4959. w67.Name = "Joint"
  4960. w67.Part0 = p68
  4961. w67.C0 = CFrame.new(0, -0.209878504, 0.0349741057, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4962. w67.Part1 = p11
  4963. w67.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4964. w68 = Instance.new("Weld", p69)
  4965. w68.Name = "Joint"
  4966. w68.Part0 = p69
  4967. w68.C0 = CFrame.new(0, -0.209878504, 0.0349861942, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4968. w68.Part1 = p11
  4969. w68.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4970. w69 = Instance.new("Weld", p70)
  4971. w69.Name = "Joint"
  4972. w69.Part0 = p70
  4973. w69.C0 = CFrame.new(0, -0.279843479, 0.0699616596, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4974. w69.Part1 = p58
  4975. w69.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4976. w70 = Instance.new("Weld", p71)
  4977. w70.Name = "Joint"
  4978. w70.Part0 = p71
  4979. w70.C0 = CFrame.new(0, -0.2098784, 0.0349679329, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4980. w70.Part1 = p54
  4981. w70.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4982. w71 = Instance.new("Weld", p72)
  4983. w71.Name = "Joint"
  4984. w71.Part0 = p72
  4985. w71.C0 = CFrame.new(0, -3.02246644e-006, 0.27983579, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4986. w71.Part1 = p9
  4987. w71.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4988. w72 = Instance.new("Weld", p73)
  4989. w72.Name = "Joint"
  4990. w72.Part0 = p73
  4991. w72.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4992. w72.Part1 = p13
  4993. w72.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4994. w73 = Instance.new("Weld", p74)
  4995. w73.Name = "Joint"
  4996. w73.Part0 = p74
  4997. w73.C0 = CFrame.new(0, -0.139921427, 0.0699612424, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4998. w73.Part1 = p10
  4999. w73.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5000. w74 = Instance.new("Weld", p75)
  5001. w74.Name = "Joint"
  5002. w74.Part0 = p75
  5003. w74.C0 = CFrame.new(0, -2.60557431e-006, 0.139928564, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  5004. w74.Part1 = p54
  5005. w74.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5006. w75 = Instance.new("Weld", p76)
  5007. w75.Name = "Joint"
  5008. w75.Part0 = p76
  5009. w75.C0 = CFrame.new(0, -2.50135167e-006, 0.27984485, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  5010. w75.Part1 = p32
  5011. w75.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5012. w76 = Instance.new("Weld", p77)
  5013. w76.Name = "Joint"
  5014. w76.Part0 = p77
  5015. w76.C0 = CFrame.new(0, 0, 0.139921635, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  5016. w76.Part1 = p15
  5017. w76.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5018. w77 = Instance.new("Weld", p78)
  5019. w77.Name = "Joint"
  5020. w77.Part0 = p78
  5021. w77.C0 = CFrame.new(0, -0.139921427, -0.0699594691, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  5022. w77.Part1 = p15
  5023. w77.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5024. w78 = Instance.new("Weld", p79)
  5025. w78.Name = "Joint"
  5026. w78.Part0 = p79
  5027. w78.C0 = CFrame.new(0, 0, 0.139921218, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  5028. w78.Part1 = p51
  5029. w78.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5030. w79 = Instance.new("Weld", p80)
  5031. w79.Name = "Joint"
  5032. w79.Part0 = p80
  5033. w79.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  5034. w79.Part1 = p12
  5035. w79.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5036. m6.Parent = torso
  5037. m6:MakeJoints()
  5038. ----------------------------------------------------
  5039. local cor6 = Instance.new("Part", torso.Cloak)
  5040. cor6.Name = "Thingy"
  5041. cor6.Locked = true
  5042. cor6.BottomSurface = 0
  5043. cor6.CanCollide = false
  5044. cor6.Size = Vector3.new(1,1,1)
  5045. cor6.Transparency = 1
  5046. cor6.TopSurface = 0
  5047. corw6 = Instance.new("Weld", cor6)
  5048. corw6.Part0 = torso
  5049. corw6.Part1 = cor6
  5050. corw6.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  5051. corw6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  5052. weld6 = Instance.new("Weld", torso.Cloak.NeckPart)
  5053. weld6.Part0 = cor6
  5054. weld6.Part1 = torso.Cloak.NeckPart
  5055. weld6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  5056. --Amulet
  5057. m7 = Instance.new("Model")
  5058. m7.Name = "Amulet"
  5059. p1 = Instance.new("Part", m7)
  5060. p1.BrickColor = BrickColor.new("Lime green")
  5061. p1.Material = Enum.Material.Neon
  5062. p1.Name = "Center"
  5063. p1.CFrame = CFrame.new(-1.0658141e-014, 14.4125643, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5064. p1.CanCollide = false
  5065. p1.Locked = true
  5066. p1.FormFactor = Enum.FormFactor.Custom
  5067. p1.Shape = Enum.PartType.Cylinder
  5068. p1.Size = Vector3.new(0.5, 0.5, 0.5)
  5069. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5070. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5071. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5072. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5073. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5074. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5075. p2 = Instance.new("Part", m7)
  5076. p2.BrickColor = BrickColor.new("Really black")
  5077. p2.Material = Enum.Material.Metal
  5078. p2.Name = "Bottom"
  5079. p2.CFrame = CFrame.new(1.19209318e-007, 14.1625719, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5080. p2.CanCollide = false
  5081. p2.Locked = true
  5082. p2.FormFactor = Enum.FormFactor.Custom
  5083. p2.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  5084. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5085. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5086. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5087. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5088. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5089. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5090. b1 = Instance.new("SpecialMesh", p2)
  5091. b1.MeshType = Enum.MeshType.Cylinder
  5092. b1.Name = "Mesh"
  5093. p3 = Instance.new("Part", m7)
  5094. p3.BrickColor = BrickColor.new("Really black")
  5095. p3.Material = Enum.Material.Metal
  5096. p3.CFrame = CFrame.new(1.23580463e-007, 14.4625673, -0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5097. p3.CanCollide = false
  5098. p3.Locked = true
  5099. p3.FormFactor = Enum.FormFactor.Custom
  5100. p3.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5101. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5102. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5103. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5104. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5105. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5106. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5107. b2 = Instance.new("SpecialMesh", p3)
  5108. b2.MeshType = Enum.MeshType.Brick
  5109. b2.Name = "Mesh"
  5110. b2.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5111. p4 = Instance.new("Part", m7)
  5112. p4.BrickColor = BrickColor.new("Really black")
  5113. p4.Material = Enum.Material.Metal
  5114. p4.CFrame = CFrame.new(1.19209318e-007, 14.4625673, 0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5115. p4.CanCollide = false
  5116. p4.Locked = true
  5117. p4.FormFactor = Enum.FormFactor.Custom
  5118. p4.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5119. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5120. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5121. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5122. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5123. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5124. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5125. b3 = Instance.new("SpecialMesh", p4)
  5126. b3.MeshType = Enum.MeshType.Brick
  5127. b3.Name = "Mesh"
  5128. b3.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5129. p5 = Instance.new("Part", m7)
  5130. p5.BrickColor = BrickColor.new("Really black")
  5131. p5.Material = Enum.Material.Metal
  5132. p5.CFrame = CFrame.new(0.14000012, 14.4625673, -0.242487118, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
  5133. p5.CanCollide = false
  5134. p5.Locked = true
  5135. p5.FormFactor = Enum.FormFactor.Custom
  5136. p5.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5137. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5138. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5139. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5140. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5141. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5142. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5143. b4 = Instance.new("SpecialMesh", p5)
  5144. b4.MeshType = Enum.MeshType.Brick
  5145. b4.Name = "Mesh"
  5146. b4.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5147. p6 = Instance.new("Part", m7)
  5148. p6.BrickColor = BrickColor.new("Really black")
  5149. p6.Material = Enum.Material.Metal
  5150. p6.CFrame = CFrame.new(-0.139999881, 14.4625673, 0.242487103, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
  5151. p6.CanCollide = false
  5152. p6.Locked = true
  5153. p6.FormFactor = Enum.FormFactor.Custom
  5154. p6.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5155. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5156. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5157. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5158. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5159. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5160. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5161. b5 = Instance.new("SpecialMesh", p6)
  5162. b5.MeshType = Enum.MeshType.Brick
  5163. b5.Name = "Mesh"
  5164. b5.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5165. p7 = Instance.new("Part", m7)
  5166. p7.BrickColor = BrickColor.new("Really black")
  5167. p7.Material = Enum.Material.Metal
  5168. p7.CFrame = CFrame.new(-0.242486984, 14.4625673, 0.139999986, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
  5169. p7.CanCollide = false
  5170. p7.Locked = true
  5171. p7.FormFactor = Enum.FormFactor.Custom
  5172. p7.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5173. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5174. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5175. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5176. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5177. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5178. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5179. b6 = Instance.new("SpecialMesh", p7)
  5180. b6.MeshType = Enum.MeshType.Brick
  5181. b6.Name = "Mesh"
  5182. b6.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5183. p8 = Instance.new("Part", m7)
  5184. p8.BrickColor = BrickColor.new("Really black")
  5185. p8.Material = Enum.Material.Metal
  5186. p8.CFrame = CFrame.new(0.242487192, 14.4625673, -0.139999971, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
  5187. p8.CanCollide = false
  5188. p8.Locked = true
  5189. p8.FormFactor = Enum.FormFactor.Custom
  5190. p8.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5191. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5192. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5193. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5194. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5195. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5196. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5197. b7 = Instance.new("SpecialMesh", p8)
  5198. b7.MeshType = Enum.MeshType.Brick
  5199. b7.Name = "Mesh"
  5200. b7.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5201. p9 = Instance.new("Part", m7)
  5202. p9.BrickColor = BrickColor.new("Really black")
  5203. p9.Material = Enum.Material.Metal
  5204. p9.CFrame = CFrame.new(0.280000091, 14.4625673, -1.64313008e-014, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  5205. p9.CanCollide = false
  5206. p9.Locked = true
  5207. p9.FormFactor = Enum.FormFactor.Custom
  5208. p9.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5209. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5210. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5211. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5212. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5213. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5214. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5215. b8 = Instance.new("SpecialMesh", p9)
  5216. b8.MeshType = Enum.MeshType.Brick
  5217. b8.Name = "Mesh"
  5218. b8.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5219. p10 = Instance.new("Part", m7)
  5220. p10.BrickColor = BrickColor.new("Really black")
  5221. p10.Material = Enum.Material.Metal
  5222. p10.CFrame = CFrame.new(-0.279999852, 14.4625673, -1.49011772e-008, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  5223. p10.CanCollide = false
  5224. p10.Locked = true
  5225. p10.FormFactor = Enum.FormFactor.Custom
  5226. p10.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5227. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5228. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5229. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5230. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5231. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5232. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5233. b9 = Instance.new("SpecialMesh", p10)
  5234. b9.MeshType = Enum.MeshType.Brick
  5235. b9.Name = "Mesh"
  5236. b9.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5237. p11 = Instance.new("Part", m7)
  5238. p11.BrickColor = BrickColor.new("Really black")
  5239. p11.Material = Enum.Material.Metal
  5240. p11.CFrame = CFrame.new(-0.242486984, 14.4625673, -0.139999986, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
  5241. p11.CanCollide = false
  5242. p11.Locked = true
  5243. p11.FormFactor = Enum.FormFactor.Custom
  5244. p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5245. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5246. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5247. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5248. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5249. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5250. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5251. b10 = Instance.new("SpecialMesh", p11)
  5252. b10.MeshType = Enum.MeshType.Brick
  5253. b10.Name = "Mesh"
  5254. b10.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5255. p12 = Instance.new("Part", m7)
  5256. p12.BrickColor = BrickColor.new("Really black")
  5257. p12.Material = Enum.Material.Metal
  5258. p12.CFrame = CFrame.new(0.242487192, 14.4625673, 0.139999971, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
  5259. p12.CanCollide = false
  5260. p12.Locked = true
  5261. p12.FormFactor = Enum.FormFactor.Custom
  5262. p12.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5263. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5264. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5265. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5266. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5267. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5268. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5269. b11 = Instance.new("SpecialMesh", p12)
  5270. b11.MeshType = Enum.MeshType.Brick
  5271. b11.Name = "Mesh"
  5272. b11.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5273. p13 = Instance.new("Part", m7)
  5274. p13.BrickColor = BrickColor.new("Really black")
  5275. p13.Material = Enum.Material.Metal
  5276. p13.CFrame = CFrame.new(-0.139999866, 14.4625673, -0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
  5277. p13.CanCollide = false
  5278. p13.Locked = true
  5279. p13.FormFactor = Enum.FormFactor.Custom
  5280. p13.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5281. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5282. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5283. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5284. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5285. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5286. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5287. b12 = Instance.new("SpecialMesh", p13)
  5288. b12.MeshType = Enum.MeshType.Brick
  5289. b12.Name = "Mesh"
  5290. b12.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5291. p14 = Instance.new("Part", m7)
  5292. p14.BrickColor = BrickColor.new("Really black")
  5293. p14.Material = Enum.Material.Metal
  5294. p14.CFrame = CFrame.new(0.14000012, 14.4625673, 0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
  5295. p14.CanCollide = false
  5296. p14.Locked = true
  5297. p14.FormFactor = Enum.FormFactor.Custom
  5298. p14.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  5299. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5300. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5301. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5302. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5303. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5304. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5305. b13 = Instance.new("SpecialMesh", p14)
  5306. b13.MeshType = Enum.MeshType.Brick
  5307. b13.Name = "Mesh"
  5308. b13.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  5309. p15 = Instance.new("Part", m7)
  5310. p15.BrickColor = BrickColor.new("Really black")
  5311. p15.Material = Enum.Material.Metal
  5312. p15.Name = "Top"
  5313. p15.CFrame = CFrame.new(0, 14.7125645, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  5314. p15.CanCollide = false
  5315. p15.Locked = true
  5316. p15.FormFactor = Enum.FormFactor.Custom
  5317. p15.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  5318. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5319. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5320. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5321. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5322. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5323. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5324. b14 = Instance.new("SpecialMesh", p15)
  5325. b14.MeshType = Enum.MeshType.Cylinder
  5326. b14.Name = "Mesh"
  5327. w1 = Instance.new("Weld", p1)
  5328. w1.Name = "Joint"
  5329. w1.Part0 = p1
  5330. w1.C0 = CFrame.new(0.300000191, -1.31134357e-008, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5331. w1.Part1 = p15
  5332. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5333. w2 = Instance.new("Weld", p2)
  5334. w2.Name = "Joint"
  5335. w2.Part0 = p2
  5336. w2.C0 = CFrame.new(0.249992371, 1.08281824e-007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5337. w2.Part1 = p1
  5338. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5339. w3 = Instance.new("Weld", p3)
  5340. w3.Name = "Joint"
  5341. w3.Part0 = p3
  5342. w3.C0 = CFrame.new(-0.0500030518, 1.25766178e-007, 0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5343. w3.Part1 = p1
  5344. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5345. w4 = Instance.new("Weld", p4)
  5346. w4.Name = "Joint"
  5347. w4.Part0 = p4
  5348. w4.C0 = CFrame.new(-0.0500030518, 1.21395033e-007, -0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5349. w4.Part1 = p1
  5350. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5351. w5 = Instance.new("Weld", p5)
  5352. w5.Name = "Joint"
  5353. w5.Part0 = p5
  5354. w5.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, 0.280000061, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
  5355. w5.Part1 = p1
  5356. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5357. w6 = Instance.new("Weld", p6)
  5358. w6.Name = "Joint"
  5359. w6.Part0 = p6
  5360. w6.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, -0.279999942, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
  5361. w6.Part1 = p1
  5362. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5363. w7 = Instance.new("Weld", p7)
  5364. w7.Name = "Joint"
  5365. w7.Part0 = p7
  5366. w7.C0 = CFrame.new(-0.0500030518, 5.54602479e-008, -0.279999882, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
  5367. w7.Part1 = p1
  5368. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5369. w8 = Instance.new("Weld", p8)
  5370. w8.Name = "Joint"
  5371. w8.Part0 = p8
  5372. w8.C0 = CFrame.new(-0.0500030518, 7.03614091e-008, 0.280000061, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
  5373. w8.Part1 = p1
  5374. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5375. w9 = Instance.new("Weld", p9)
  5376. w9.Name = "Joint"
  5377. w9.Part0 = p9
  5378. w9.C0 = CFrame.new(-0.0500030518, 2.1856863e-009, 0.280000091, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
  5379. w9.Part1 = p1
  5380. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5381. w10 = Instance.new("Weld", p10)
  5382. w10.Name = "Joint"
  5383. w10.Part0 = p10
  5384. w10.C0 = CFrame.new(-0.0500030518, -1.27154749e-008, -0.279999852, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
  5385. w10.Part1 = p1
  5386. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5387. w11 = Instance.new("Weld", p11)
  5388. w11.Name = "Joint"
  5389. w11.Part0 = p11
  5390. w11.C0 = CFrame.new(-0.0500030518, -5.6298461e-008, -0.279999882, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
  5391. w11.Part1 = p1
  5392. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5393. w12 = Instance.new("Weld", p12)
  5394. w12.Name = "Joint"
  5395. w12.Part0 = p12
  5396. w12.C0 = CFrame.new(-0.0500030518, -6.37490416e-008, 0.280000061, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
  5397. w12.Part1 = p1
  5398. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5399. w13 = Instance.new("Weld", p13)
  5400. w13.Name = "Joint"
  5401. w13.Part0 = p13
  5402. w13.C0 = CFrame.new(-0.0500030518, -1.01001945e-007, -0.279999912, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
  5403. w13.Part1 = p1
  5404. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5405. w14 = Instance.new("Weld", p14)
  5406. w14.Name = "Joint"
  5407. w14.Part0 = p14
  5408. w14.C0 = CFrame.new(-0.0500030518, -1.08452525e-007, 0.280000031, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
  5409. w14.Part1 = p1
  5410. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5411. m7.Parent = torso
  5412. m7:MakeJoints()
  5413. ----------------------------------------------------
  5414. local cor7 = Instance.new("Part", torso.Amulet)
  5415. cor7.Name = "Thingy"
  5416. cor7.Locked = true
  5417. cor7.BottomSurface = 0
  5418. cor7.CanCollide = false
  5419. cor7.Size = Vector3.new(1, 1, 1)
  5420. cor7.Transparency = 1
  5421. cor7.TopSurface = 0
  5422. corw7 = Instance.new("Weld", cor7)
  5423. corw7.Part0 = torso.Torso.Connection
  5424. corw7.Part1 = cor7
  5425. corw7.C0 = CFrame.new(0, 0.26, 0.1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  5426. corw7.C1 = CFrame.new(0, -0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(140))
  5427. weld7 = Instance.new("Weld", torso.Amulet)
  5428. weld7.Part0 = cor7
  5429. weld7.Part1 = torso.Amulet.Top
  5430. weld7.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  5431. --Zyrodoxa
  5432. m8 = Instance.new("Model")
  5433. m8.Name = "Zyrodoxa"
  5434. p1 = Instance.new("Part", m8)
  5435. p1.BrickColor = BrickColor.new("Really black")
  5436. p1.Material = Enum.Material.Metal
  5437. p1.Reflectance = 0.40000000596046
  5438. p1.Name = "Block"
  5439. p1.CFrame = CFrame.new(2.70000019e-005, -11.6870832, 1.45529819, 1, -1.44446419e-008, -1.27813706e-008, -1.84925408e-008, -0.906311333, -0.422620147, -5.47969492e-009, 0.422620773, -0.906312048)
  5440. p1.CanCollide = false
  5441. p1.Locked = true
  5442. p1.FormFactor = Enum.FormFactor.Custom
  5443. p1.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5444. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5445. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5446. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5447. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5448. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5449. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5450. b1 = Instance.new("BlockMesh", p1)
  5451. b1.Name = "Mesh"
  5452. b1.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5453. p2 = Instance.new("Part", m8)
  5454. p2.BrickColor = BrickColor.new("Black")
  5455. p2.Material = Enum.Material.Metal
  5456. p2.Reflectance = 0.40000000596046
  5457. p2.Name = "Block"
  5458. p2.CFrame = CFrame.new(2.7e-005, -11.9090996, 0.428020298, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
  5459. p2.CanCollide = false
  5460. p2.Locked = true
  5461. p2.FormFactor = Enum.FormFactor.Custom
  5462. p2.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5463. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5464. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5465. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5466. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5467. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5468. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5469. b2 = Instance.new("BlockMesh", p2)
  5470. b2.Name = "Mesh"
  5471. b2.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5472. p3 = Instance.new("Part", m8)
  5473. p3.BrickColor = BrickColor.new("Black")
  5474. p3.Material = Enum.Material.Metal
  5475. p3.Reflectance = 0.40000000596046
  5476. p3.Name = "Block"
  5477. p3.CFrame = CFrame.new(2.7e-005, -11.9091024, 0.959298849, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
  5478. p3.CanCollide = false
  5479. p3.Locked = true
  5480. p3.FormFactor = Enum.FormFactor.Custom
  5481. p3.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5482. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5483. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5484. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5485. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5486. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5487. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5488. b3 = Instance.new("BlockMesh", p3)
  5489. b3.Name = "Mesh"
  5490. b3.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5491. p4 = Instance.new("Part", m8)
  5492. p4.BrickColor = BrickColor.new("Lime green")
  5493. p4.Material = Enum.Material.Metal
  5494. p4.Name = "Block"
  5495. p4.CFrame = CFrame.new(2.69999982e-005, -11.8500671, -1.24697566, 1, -4.30586944e-008, -5.26493444e-008, -5.9326311e-008, -0.173648626, -0.984811544, 3.32618768e-008, 0.984812438, -0.173648432)
  5496. p4.CanCollide = false
  5497. p4.Locked = true
  5498. p4.FormFactor = Enum.FormFactor.Custom
  5499. p4.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5500. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5501. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5502. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5503. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5504. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5505. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5506. b4 = Instance.new("BlockMesh", p4)
  5507. b4.Name = "Mesh"
  5508. b4.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5509. p5 = Instance.new("Part", m8)
  5510. p5.BrickColor = BrickColor.new("Lime green")
  5511. p5.Material = Enum.Material.Neon
  5512. p5.Reflectance = 0.40000000596046
  5513. p5.Name = "Block"
  5514. p5.CFrame = CFrame.new(2.69999982e-005, -11.9034386, -0.304960132, 1, -1.92584508e-008, 1.18294885e-009, -1.85012432e-008, -0.939696193, 0.342021227, -5.47556045e-009, -0.342021167, -0.939697087)
  5515. p5.CanCollide = false
  5516. p5.Locked = true
  5517. p5.FormFactor = Enum.FormFactor.Custom
  5518. p5.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5519. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5520. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5521. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5522. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5523. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5524. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5525. b5 = Instance.new("BlockMesh", p5)
  5526. b5.Name = "Mesh"
  5527. b5.Scale = Vector3.new(0.334640861, 0.200784534, 0.669281721)
  5528. p6 = Instance.new("Part", m8)
  5529. p6.BrickColor = BrickColor.new("Parsley green")
  5530. p6.Material = Enum.Material.Metal
  5531. p6.Name = "Block"
  5532. p6.CFrame = CFrame.new(2.69999982e-005, -11.8500729, -0.678800821, 1, -4.08902388e-008, -5.95267018e-008, -5.9526478e-008, 1.1920929e-007, -1.0000037, 4.08900789e-008, 1.00000453, 5.36441803e-007)
  5533. p6.CanCollide = false
  5534. p6.Locked = true
  5535. p6.FormFactor = Enum.FormFactor.Custom
  5536. p6.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5537. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5538. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5539. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5540. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5541. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5542. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5543. b6 = Instance.new("BlockMesh", p6)
  5544. b6.Name = "Mesh"
  5545. b6.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5546. p7 = Instance.new("Part", m8)
  5547. p7.BrickColor = BrickColor.new("Lime green")
  5548. p7.Material = Enum.Material.Neon
  5549. p7.Reflectance = 0.40000000596046
  5550. p7.Name = "Block"
  5551. p7.CFrame = CFrame.new(2.69999982e-005, -11.957509, 0.917527318, 1, -2.28536976e-008, 8.68393135e-010, -2.22993837e-008, -0.965929389, 0.258820087, -5.07656006e-009, -0.258819878, -0.965930223)
  5552. p7.CanCollide = false
  5553. p7.Locked = true
  5554. p7.FormFactor = Enum.FormFactor.Custom
  5555. p7.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5556. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5557. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5558. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5559. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5560. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5561. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5562. b7 = Instance.new("BlockMesh", p7)
  5563. b7.Name = "Mesh"
  5564. b7.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5565. p8 = Instance.new("Part", m8)
  5566. p8.BrickColor = BrickColor.new("Lime green")
  5567. p8.Material = Enum.Material.Neon
  5568. p8.Reflectance = 0.40000000596046
  5569. p8.Name = "Block"
  5570. p8.CFrame = CFrame.new(2.7e-005, -11.8956118, 0.105731606, 1, -1.92584473e-008, 1.1829453e-009, -1.85012521e-008, -0.939696133, 0.342021048, -5.47555823e-009, -0.342020899, -0.939696968)
  5571. p8.CanCollide = false
  5572. p8.Locked = true
  5573. p8.FormFactor = Enum.FormFactor.Custom
  5574. p8.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5575. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5576. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5577. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5578. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5579. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5580. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5581. b8 = Instance.new("BlockMesh", p8)
  5582. b8.Name = "Mesh"
  5583. b8.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5584. p9 = Instance.new("Part", m8)
  5585. p9.BrickColor = BrickColor.new("Really black")
  5586. p9.Material = Enum.Material.Metal
  5587. p9.Reflectance = 0.40000000596046
  5588. p9.Name = "Block"
  5589. p9.CFrame = CFrame.new(2.69999982e-005, -11.7615223, 0.959302187, 1, -1.85016091e-008, -5.47516965e-009, -1.85012485e-008, -1.00000358, -1.1920929e-007, -5.47556001e-009, 5.36441803e-007, -1.00000429)
  5590. p9.CanCollide = false
  5591. p9.Locked = true
  5592. p9.FormFactor = Enum.FormFactor.Custom
  5593. p9.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5594. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5595. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5596. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5597. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5598. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5599. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5600. b9 = Instance.new("BlockMesh", p9)
  5601. b9.Name = "Mesh"
  5602. b9.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5603. p10 = Instance.new("Part", m8)
  5604. p10.BrickColor = BrickColor.new("Really black")
  5605. p10.Material = Enum.Material.Metal
  5606. p10.Reflectance = 0.40000000596046
  5607. p10.Name = "Block"
  5608. p10.CFrame = CFrame.new(2.69999982e-005, -11.5473213, 1.65489614, 1, -9.20203203e-009, -1.69509313e-008, -1.84925799e-008, -0.707108974, -0.70710963, -5.47968293e-009, 0.707110405, -0.707109272)
  5609. p10.CanCollide = false
  5610. p10.Locked = true
  5611. p10.FormFactor = Enum.FormFactor.Custom
  5612. p10.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5613. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5614. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5615. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5616. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5617. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5618. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5619. b10 = Instance.new("BlockMesh", p10)
  5620. b10.Name = "Mesh"
  5621. b10.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5622. p11 = Instance.new("Part", m8)
  5623. p11.BrickColor = BrickColor.new("Black")
  5624. p11.Material = Enum.Material.Metal
  5625. p11.Name = "Circle"
  5626. p11.CFrame = CFrame.new(2.7e-005, -11.6729841, -0.582877517, 1, -3.82200724e-008, -1.58314464e-008, -1.58310698e-008, 1.78813934e-007, -1.00000358, 3.82198735e-008, 1.00000429, 4.17232513e-007)
  5627. p11.CanCollide = false
  5628. p11.Locked = true
  5629. p11.FormFactor = Enum.FormFactor.Custom
  5630. p11.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  5631. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5632. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5633. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5634. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5635. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5636. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5637. b11 = Instance.new("CylinderMesh", p11)
  5638. b11.Name = "Mesh"
  5639. b11.Scale = Vector3.new(1, 0.401569068, 1)
  5640. p12 = Instance.new("Part", m8)
  5641. p12.BrickColor = BrickColor.new("Lime green")
  5642. p12.Material = Enum.Material.Neon
  5643. p12.Reflectance = 0.40000000596046
  5644. p12.Name = "Block"
  5645. p12.CFrame = CFrame.new(2.7e-005, -11.8956079, 0.673061967, 1, -1.56491176e-008, -8.14766423e-008, -1.31608857e-008, 0.939695954, -0.342021048, 8.1915303e-008, 0.342021108, 0.939696789)
  5646. p12.CanCollide = false
  5647. p12.Locked = true
  5648. p12.FormFactor = Enum.FormFactor.Custom
  5649. p12.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5650. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5651. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5652. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5653. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5654. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5655. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5656. b12 = Instance.new("BlockMesh", p12)
  5657. b12.Name = "Mesh"
  5658. b12.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5659. p13 = Instance.new("Part", m8)
  5660. p13.BrickColor = BrickColor.new("Lime green")
  5661. p13.Material = Enum.Material.Metal
  5662. p13.Name = "Block"
  5663. p13.CFrame = CFrame.new(2.7e-005, -11.85007, -1.195328, 1, -4.3058666e-008, -5.26493267e-008, -5.93263003e-008, -0.173648536, -0.984811068, 3.32618555e-008, 0.984811902, -0.173648447)
  5664. p13.CanCollide = false
  5665. p13.Locked = true
  5666. p13.FormFactor = Enum.FormFactor.Custom
  5667. p13.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5668. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5669. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5670. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5671. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5672. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5673. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5674. b13 = Instance.new("BlockMesh", p13)
  5675. b13.Name = "Mesh"
  5676. b13.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5677. p14 = Instance.new("Part", m8)
  5678. p14.BrickColor = BrickColor.new("Black")
  5679. p14.Material = Enum.Material.Metal
  5680. p14.Reflectance = 0.40000000596046
  5681. p14.Name = "Block"
  5682. p14.CFrame = CFrame.new(2.7e-005, -11.6456089, 1.7017076, 1, -9.79658932e-009, -1.66229128e-008, -1.85012112e-008, -0.731357634, -0.681998909, -5.47637935e-009, 0.681999564, -0.731357992)
  5683. p14.CanCollide = false
  5684. p14.Locked = true
  5685. p14.FormFactor = Enum.FormFactor.Custom
  5686. p14.Size = Vector3.new(0.220499977, 0.220499977, 0.332047403)
  5687. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5688. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5689. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5690. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5691. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5692. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5693. b14 = Instance.new("BlockMesh", p14)
  5694. b14.Name = "Mesh"
  5695. b14.Scale = Vector3.new(0.267712682, 0.535425484, 1)
  5696. p15 = Instance.new("Part", m8)
  5697. p15.BrickColor = BrickColor.new("Really black")
  5698. p15.Material = Enum.Material.Metal
  5699. p15.Reflectance = 0.40000000596046
  5700. p15.Name = "Block"
  5701. p15.CFrame = CFrame.new(2.7e-005, -11.761528, 0.162387252, 1, -1.85015949e-008, -5.47519008e-009, -1.85012503e-008, -1.00000322, -4.47054163e-008, -5.47555512e-009, 3.27827877e-007, -1.00000393)
  5702. p15.CanCollide = false
  5703. p15.Locked = true
  5704. p15.FormFactor = Enum.FormFactor.Custom
  5705. p15.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5706. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5707. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5708. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5709. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5710. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5711. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5712. b15 = Instance.new("BlockMesh", p15)
  5713. b15.Name = "Mesh"
  5714. b15.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5715. p16 = Instance.new("Part", m8)
  5716. p16.BrickColor = BrickColor.new("Really black")
  5717. p16.Material = Enum.Material.Metal
  5718. p16.Name = "Handle"
  5719. p16.CFrame = CFrame.new(2.7e-005, -11.8500671, -1.1215378, 1, -4.08902174e-008, -5.95266769e-008, -5.95264673e-008, 4.47054163e-008, -1.00000322, 4.08900469e-008, 1.00000393, 3.27827877e-007)
  5720. p16.CanCollide = false
  5721. p16.Locked = true
  5722. p16.FormFactor = Enum.FormFactor.Custom
  5723. p16.Size = Vector3.new(0.220499977, 0.97400558, 0.220499977)
  5724. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5725. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5726. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5727. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5728. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5729. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5730. b16 = Instance.new("BlockMesh", p16)
  5731. b16.Name = "Mesh"
  5732. b16.Scale = Vector3.new(0.602353573, 1, 0.602353573)
  5733. p17 = Instance.new("Part", m8)
  5734. p17.BrickColor = BrickColor.new("Lime green")
  5735. p17.Material = Enum.Material.Neon
  5736. p17.Reflectance = 0.40000000596046
  5737. p17.Name = "Block"
  5738. p17.CFrame = CFrame.new(2.7e-005, -11.9214983, 1.1695174, 1, -3.32851862e-008, -1.92677874e-009, -3.32848948e-008, -1.00000322, 5.51342964e-007, -1.92714822e-009, -2.68220901e-007, -1.00000393)
  5739. p17.CanCollide = false
  5740. p17.Locked = true
  5741. p17.FormFactor = Enum.FormFactor.Custom
  5742. p17.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5743. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5744. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5745. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5746. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5747. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5748. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5749. b17 = Instance.new("BlockMesh", p17)
  5750. b17.Name = "Mesh"
  5751. b17.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5752. p18 = Instance.new("Part", m8)
  5753. p18.BrickColor = BrickColor.new("Really black")
  5754. p18.Material = Enum.Material.Metal
  5755. p18.Name = "Block"
  5756. p18.CFrame = CFrame.new(2.70000019e-005, -11.9708652, -1.76740301, 1, -9.71849161e-008, 2.00753263e-007, -1.30568921e-007, -0.984810889, 0.173648641, 1.80827797e-007, -0.173648477, -0.984811544)
  5757. p18.CanCollide = false
  5758. p18.Locked = true
  5759. p18.FormFactor = Enum.FormFactor.Custom
  5760. p18.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5761. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5762. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5763. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5764. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5765. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5766. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5767. b18 = Instance.new("BlockMesh", p18)
  5768. b18.Name = "Mesh"
  5769. b18.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5770. p19 = Instance.new("Part", m8)
  5771. p19.BrickColor = BrickColor.new("Black")
  5772. p19.Material = Enum.Material.Metal
  5773. p19.Reflectance = 0.40000000596046
  5774. p19.Name = "Block"
  5775. p19.CFrame = CFrame.new(2.7e-005, -11.9090967, -0.10325551, 1, -1.85013889e-008, -5.47580603e-009, -1.85010975e-008, -1.0000031, -5.21540642e-008, -5.47609691e-009, 3.20374966e-007, -1.0000037)
  5776. p19.CanCollide = false
  5777. p19.Locked = true
  5778. p19.FormFactor = Enum.FormFactor.Custom
  5779. p19.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5780. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5781. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5782. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5783. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5784. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5785. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5786. b19 = Instance.new("BlockMesh", p19)
  5787. b19.Name = "Mesh"
  5788. b19.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5789. p20 = Instance.new("Part", m8)
  5790. p20.BrickColor = BrickColor.new("Lime green")
  5791. p20.Material = Enum.Material.Metal
  5792. p20.Name = "Block"
  5793. p20.CFrame = CFrame.new(2.69999982e-005, -11.8500719, -0.937063575, 1, -4.21245474e-008, -5.61353133e-008, -5.9592935e-008, -0.0871559381, -0.996197701, 3.70716151e-008, 0.996198356, -0.0871557295)
  5794. p20.CanCollide = false
  5795. p20.Locked = true
  5796. p20.FormFactor = Enum.FormFactor.Custom
  5797. p20.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5798. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5799. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5800. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5801. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5802. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5803. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5804. b20 = Instance.new("BlockMesh", p20)
  5805. b20.Name = "Mesh"
  5806. b20.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5807. p21 = Instance.new("Part", m8)
  5808. p21.BrickColor = BrickColor.new("Really black")
  5809. p21.Material = Enum.Material.Metal
  5810. p21.Name = "Block"
  5811. p21.CFrame = CFrame.new(2.69999982e-005, -11.7520199, -1.68255222, 1, 1.93163316e-008, -6.95866973e-008, -5.9526478e-008, 0.766046822, -0.642789543, 4.08900966e-008, 0.642789721, 0.766047418)
  5812. p21.CanCollide = false
  5813. p21.Locked = true
  5814. p21.FormFactor = Enum.FormFactor.Custom
  5815. p21.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5816. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5817. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5818. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5819. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5820. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5821. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5822. b21 = Instance.new("BlockMesh", p21)
  5823. b21.Name = "Mesh"
  5824. b21.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5825. p22 = Instance.new("Part", m8)
  5826. p22.BrickColor = BrickColor.new("Really black")
  5827. p22.Material = Enum.Material.Metal
  5828. p22.Reflectance = 0.40000000596046
  5829. p22.Name = "Block"
  5830. p22.CFrame = CFrame.new(2.69999964e-005, -11.7615223, -0.368889451, 1, -1.85015665e-008, -5.4752185e-009, -1.85012787e-008, -1.0000031, -5.96046448e-008, -5.47550449e-009, 3.87430191e-007, -1.0000037)
  5831. p22.CanCollide = false
  5832. p22.Locked = true
  5833. p22.FormFactor = Enum.FormFactor.Custom
  5834. p22.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5835. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5836. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5837. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5838. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5839. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5840. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5841. b22 = Instance.new("BlockMesh", p22)
  5842. b22.Name = "Mesh"
  5843. b22.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5844. p23 = Instance.new("Part", m8)
  5845. p23.BrickColor = BrickColor.new("Lime green")
  5846. p23.Material = Enum.Material.Marble
  5847. p23.Name = "Block"
  5848. p23.CFrame = CFrame.new(2.69999964e-005, -11.85007, -0.641908407, 1, -4.0890189e-008, -5.95266485e-008, -5.95264922e-008, 5.96046448e-008, -1.0000031, 4.08900895e-008, 1.0000037, 3.87430191e-007)
  5849. p23.CanCollide = false
  5850. p23.Locked = true
  5851. p23.FormFactor = Enum.FormFactor.Custom
  5852. p23.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  5853. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5854. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5855. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5856. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5857. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5858. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5859. b23 = Instance.new("BlockMesh", p23)
  5860. b23.Name = "Mesh"
  5861. b23.Scale = Vector3.new(0.803138018, 0.133856371, 1)
  5862. p24 = Instance.new("Part", m8)
  5863. p24.BrickColor = BrickColor.new("Really black")
  5864. p24.Material = Enum.Material.Metal
  5865. p24.Name = "Block"
  5866. p24.CFrame = CFrame.new(2.69999964e-005, -11.948123, -1.6825552, 1, -7.18838464e-008, -6.93700386e-009, -5.95250889e-008, -0.766046762, -0.642789662, 4.08918908e-008, 0.642790258, -0.766046941)
  5867. p24.CanCollide = false
  5868. p24.Locked = true
  5869. p24.FormFactor = Enum.FormFactor.Custom
  5870. p24.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5871. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5872. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5873. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5874. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5875. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5876. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5877. b24 = Instance.new("BlockMesh", p24)
  5878. b24.Name = "Mesh"
  5879. b24.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5880. p25 = Instance.new("Part", m8)
  5881. p25.BrickColor = BrickColor.new("Lime green")
  5882. p25.Material = Enum.Material.Marble
  5883. p25.Name = "Block"
  5884. p25.CFrame = CFrame.new(2.69999964e-005, -11.8500681, -1.59377992, 1, -4.08901926e-008, -5.95266414e-008, -5.95264957e-008, 5.96046448e-008, -1.0000031, 4.0890086e-008, 1.00000358, 3.57627869e-007)
  5885. p25.CanCollide = false
  5886. p25.Locked = true
  5887. p25.FormFactor = Enum.FormFactor.Custom
  5888. p25.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5889. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5890. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5891. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5892. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5893. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5894. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5895. b25 = Instance.new("BlockMesh", p25)
  5896. b25.Name = "Mesh"
  5897. b25.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5898. p26 = Instance.new("Part", m8)
  5899. p26.BrickColor = BrickColor.new("Really black")
  5900. p26.Material = Enum.Material.Metal
  5901. p26.Reflectance = 0.40000000596046
  5902. p26.Name = "Block"
  5903. p26.CFrame = CFrame.new(2.69999982e-005, -11.7615213, 0.428021312, 1, -1.85015523e-008, -5.47521495e-009, -1.85012912e-008, -1.0000031, -5.96046448e-008, -5.47550272e-009, 3.57627869e-007, -1.00000358)
  5904. p26.CanCollide = false
  5905. p26.Locked = true
  5906. p26.FormFactor = Enum.FormFactor.Custom
  5907. p26.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5908. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5909. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5910. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5911. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5912. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5913. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5914. b26 = Instance.new("BlockMesh", p26)
  5915. b26.Name = "Mesh"
  5916. b26.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5917. p27 = Instance.new("Part", m8)
  5918. p27.BrickColor = BrickColor.new("Lime green")
  5919. p27.Material = Enum.Material.Metal
  5920. p27.Name = "Block"
  5921. p27.CFrame = CFrame.new(2.69999982e-005, -11.850069, -0.782109976, 1, -4.36853398e-008, -4.90951173e-008, -5.8728709e-008, -0.258819818, -0.965928853, 2.94898914e-008, 0.965929329, -0.25881961)
  5922. p27.CanCollide = false
  5923. p27.Locked = true
  5924. p27.FormFactor = Enum.FormFactor.Custom
  5925. p27.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5926. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5927. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5928. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5929. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5930. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5931. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5932. b27 = Instance.new("BlockMesh", p27)
  5933. b27.Name = "Mesh"
  5934. b27.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5935. p28 = Instance.new("Part", m8)
  5936. p28.BrickColor = BrickColor.new("Really black")
  5937. p28.Material = Enum.Material.SmoothPlastic
  5938. p28.Reflectance = 0.0099999997764826
  5939. p28.Name = "Circle"
  5940. p28.CFrame = CFrame.new(2.69999964e-005, -11.7615204, -0.52384901, 1, -3.82200298e-008, -1.58313824e-008, -1.58311213e-008, 5.96046448e-008, -1.0000031, 3.82198913e-008, 1.00000346, 3.57627869e-007)
  5941. p28.CanCollide = false
  5942. p28.Locked = true
  5943. p28.FormFactor = Enum.FormFactor.Custom
  5944. p28.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5945. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5946. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5947. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5948. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5949. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5950. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5951. b28 = Instance.new("CylinderMesh", p28)
  5952. b28.Name = "Mesh"
  5953. b28.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  5954. p29 = Instance.new("Part", m8)
  5955. p29.BrickColor = BrickColor.new("Black")
  5956. p29.Material = Enum.Material.Metal
  5957. p29.Reflectance = 0.40000000596046
  5958. p29.Name = "Block"
  5959. p29.CFrame = CFrame.new(2.69999964e-005, -11.8228655, 1.48447084, 1, -1.48910964e-008, -1.22697976e-008, -1.85012574e-008, -0.920508504, -0.390730202, -5.47632872e-009, 0.39073059, -0.920508862)
  5960. p29.CanCollide = false
  5961. p29.Locked = true
  5962. p29.FormFactor = Enum.FormFactor.Custom
  5963. p29.Size = Vector3.new(0.220499977, 0.220499977, 0.31728977)
  5964. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5965. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5966. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5967. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5968. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5969. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5970. b29 = Instance.new("BlockMesh", p29)
  5971. b29.Name = "Mesh"
  5972. b29.Scale = Vector3.new(0.267712682, 0.803138077, 1)
  5973. p30 = Instance.new("Part", m8)
  5974. p30.BrickColor = BrickColor.new("Lime green")
  5975. p30.Material = Enum.Material.Metal
  5976. p30.Name = "Block"
  5977. p30.CFrame = CFrame.new(2.69999928e-005, -11.850069, -1.35027885, 1, -4.36853398e-008, -4.90951102e-008, -5.87287019e-008, -0.25881964, -0.965928614, 2.94898825e-008, 0.96592921, -0.258819699)
  5978. p30.CanCollide = false
  5979. p30.Locked = true
  5980. p30.FormFactor = Enum.FormFactor.Custom
  5981. p30.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5982. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5983. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5984. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5985. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5986. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5987. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5988. b30 = Instance.new("BlockMesh", p30)
  5989. b30.Name = "Mesh"
  5990. b30.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5991. p31 = Instance.new("Part", m8)
  5992. p31.BrickColor = BrickColor.new("Lime green")
  5993. p31.Material = Enum.Material.Neon
  5994. p31.Reflectance = 0.40000000596046
  5995. p31.Name = "Block"
  5996. p31.CFrame = CFrame.new(2.69999928e-005, -11.8927851, 0.869306803, -1, -7.71367752e-008, 3.05927976e-008, 7.41768247e-008, -0.996197402, -0.0871561319, 3.71997153e-008, -0.0871560946, 0.996197999)
  5997. p31.CanCollide = false
  5998. p31.Locked = true
  5999. p31.FormFactor = Enum.FormFactor.Custom
  6000. p31.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6001. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6002. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6003. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6004. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6005. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6006. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6007. b31 = Instance.new("BlockMesh", p31)
  6008. b31.Name = "Mesh"
  6009. b31.Scale = Vector3.new(0.334640861, 0.133856371, 0.870066345)
  6010. p32 = Instance.new("Part", m8)
  6011. p32.BrickColor = BrickColor.new("Lime green")
  6012. p32.Material = Enum.Material.Metal
  6013. p32.Name = "Block"
  6014. p32.CFrame = CFrame.new(2.6999991e-005, -11.850071, -1.29862738, 1, -3.936497e-008, -6.27974615e-008, -5.91275011e-008, 0.0871559605, -0.996197343, 4.46881891e-008, 0.996197939, 0.0871561021)
  6015. p32.CanCollide = false
  6016. p32.Locked = true
  6017. p32.FormFactor = Enum.FormFactor.Custom
  6018. p32.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6019. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6020. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6021. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6022. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6023. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6024. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6025. b32 = Instance.new("BlockMesh", p32)
  6026. b32.Name = "Mesh"
  6027. b32.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6028. p33 = Instance.new("Part", m8)
  6029. p33.BrickColor = BrickColor.new("Really black")
  6030. p33.Material = Enum.Material.Metal
  6031. p33.Reflectance = 0.40000000596046
  6032. p33.Name = "Block"
  6033. p33.CFrame = CFrame.new(2.69999928e-005, -11.7615213, 0.693662167, 1, -1.8501531e-008, -5.47520784e-009, -1.85013107e-008, -1.00000262, -1.49011612e-007, -5.47550894e-009, 2.38418579e-007, -1.00000322)
  6034. p33.CanCollide = false
  6035. p33.Locked = true
  6036. p33.FormFactor = Enum.FormFactor.Custom
  6037. p33.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6038. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6039. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6040. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6041. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6042. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6043. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6044. b33 = Instance.new("BlockMesh", p33)
  6045. b33.Name = "Mesh"
  6046. b33.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  6047. p34 = Instance.new("Part", m8)
  6048. p34.BrickColor = BrickColor.new("Lime green")
  6049. p34.Material = Enum.Material.Metal
  6050. p34.Name = "Block"
  6051. p34.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.988716245, 1, -4.08901997e-008, -5.9526613e-008, -5.95264993e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  6052. p34.CanCollide = false
  6053. p34.Locked = true
  6054. p34.FormFactor = Enum.FormFactor.Custom
  6055. p34.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6056. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6057. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6058. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6059. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6060. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6061. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6062. b34 = Instance.new("BlockMesh", p34)
  6063. b34.Name = "Mesh"
  6064. b34.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6065. p35 = Instance.new("Part", m8)
  6066. p35.BrickColor = BrickColor.new("Lime green")
  6067. p35.Material = Enum.Material.Metal
  6068. p35.Name = "Block"
  6069. p35.CFrame = CFrame.new(2.69999928e-005, -11.8500662, -1.50523794, 1, -4.08901997e-008, -5.95266094e-008, -5.95265028e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  6070. p35.CanCollide = false
  6071. p35.Locked = true
  6072. p35.FormFactor = Enum.FormFactor.Custom
  6073. p35.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6074. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6075. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6076. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6077. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6078. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6079. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6080. b35 = Instance.new("BlockMesh", p35)
  6081. b35.Name = "Mesh"
  6082. b35.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6083. p36 = Instance.new("Part", m8)
  6084. p36.BrickColor = BrickColor.new("Lime green")
  6085. p36.Material = Enum.Material.Metal
  6086. p36.Name = "Block"
  6087. p36.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.86679816, 1, -1.85015203e-008, -5.47520784e-009, -1.85013214e-008, -1.00000262, -1.49011612e-007, -5.47550938e-009, 2.38418579e-007, -1.00000322)
  6088. p36.CanCollide = false
  6089. p36.Locked = true
  6090. p36.FormFactor = Enum.FormFactor.Custom
  6091. p36.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6092. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6093. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6094. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6095. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6096. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6097. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6098. b36 = Instance.new("BlockMesh", p36)
  6099. b36.Name = "Mesh"
  6100. b36.Scale = Vector3.new(0.401568979, 0.200784534, 0.267712682)
  6101. p37 = Instance.new("Part", m8)
  6102. p37.BrickColor = BrickColor.new("Lime green")
  6103. p37.Material = Enum.Material.Marble
  6104. p37.Name = "Circle"
  6105. p37.CFrame = CFrame.new(2.6999991e-005, -11.7319965, -0.523848772, 1, -3.82200369e-008, -1.58313576e-008, -1.58311444e-008, 1.49011612e-007, -1.00000262, 3.8219877e-008, 1.00000322, 2.38418579e-007)
  6106. p37.CanCollide = false
  6107. p37.Locked = true
  6108. p37.FormFactor = Enum.FormFactor.Custom
  6109. p37.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6110. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6111. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6112. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6113. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6114. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6115. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6116. b37 = Instance.new("CylinderMesh", p37)
  6117. b37.Name = "Mesh"
  6118. b37.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  6119. p38 = Instance.new("Part", m8)
  6120. p38.BrickColor = BrickColor.new("Really black")
  6121. p38.Material = Enum.Material.Metal
  6122. p38.Name = "Block"
  6123. p38.CFrame = CFrame.new(2.69999928e-005, -11.8021069, -1.64543033, 1, -4.08901997e-008, -5.95266023e-008, -5.95265099e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  6124. p38.CanCollide = false
  6125. p38.Locked = true
  6126. p38.FormFactor = Enum.FormFactor.Custom
  6127. p38.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6128. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6129. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6130. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6131. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6132. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6133. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6134. b38 = Instance.new("BlockMesh", p38)
  6135. b38.Name = "Mesh"
  6136. b38.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  6137. p39 = Instance.new("Part", m8)
  6138. p39.BrickColor = BrickColor.new("Really black")
  6139. p39.Material = Enum.Material.Metal
  6140. p39.Name = "Block"
  6141. p39.CFrame = CFrame.new(2.6999991e-005, -11.8980207, -1.64543033, 1, -4.08901997e-008, -5.95265988e-008, -5.95265135e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  6142. p39.CanCollide = false
  6143. p39.Locked = true
  6144. p39.FormFactor = Enum.FormFactor.Custom
  6145. p39.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6146. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6147. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6148. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6149. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6150. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6151. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6152. b39 = Instance.new("BlockMesh", p39)
  6153. b39.Name = "Mesh"
  6154. b39.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  6155. p40 = Instance.new("Part", m8)
  6156. p40.BrickColor = BrickColor.new("Really black")
  6157. p40.Material = Enum.Material.Metal
  6158. p40.Name = "Block"
  6159. p40.CFrame = CFrame.new(2.6999991e-005, -11.9044991, -1.84857893, 1, 2.62652719e-007, 4.66475456e-007, -2.72653665e-007, -0.500001431, 0.866027534, 4.6070295e-007, -0.866027951, -0.500001788)
  6160. p40.CanCollide = false
  6161. p40.Locked = true
  6162. p40.FormFactor = Enum.FormFactor.Custom
  6163. p40.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6164. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6165. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6166. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6167. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6168. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6169. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6170. b40 = Instance.new("BlockMesh", p40)
  6171. b40.Name = "Mesh"
  6172. b40.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  6173. p41 = Instance.new("Part", m8)
  6174. p41.BrickColor = BrickColor.new("Lime green")
  6175. p41.Material = Enum.Material.Neon
  6176. p41.Reflectance = 0.40000000596046
  6177. p41.Name = "Block"
  6178. p41.CFrame = CFrame.new(2.6999991e-005, -11.8956079, 0.422182083, 1, -1.56492277e-008, -8.1476486e-008, -1.31610101e-008, 0.939694941, -0.34202069, 8.19153172e-008, 0.34202072, 0.939695537)
  6179. p41.CanCollide = false
  6180. p41.Locked = true
  6181. p41.FormFactor = Enum.FormFactor.Custom
  6182. p41.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6183. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6184. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6185. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6186. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6187. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6188. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6189. b41 = Instance.new("BlockMesh", p41)
  6190. b41.Name = "Mesh"
  6191. b41.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  6192. p42 = Instance.new("Part", m8)
  6193. p42.BrickColor = BrickColor.new("Earth green")
  6194. p42.Material = Enum.Material.Metal
  6195. p42.Name = "Block"
  6196. p42.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.664048076, 1, -4.0890118e-008, -5.95265348e-008, -5.95265384e-008, 1.49011612e-007, -1.00000226, 4.08901286e-008, 1.00000286, 3.42726707e-007)
  6197. p42.CanCollide = false
  6198. p42.Locked = true
  6199. p42.FormFactor = Enum.FormFactor.Custom
  6200. p42.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6201. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6202. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6203. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6204. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6205. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6206. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6207. b42 = Instance.new("BlockMesh", p42)
  6208. b42.Name = "Mesh"
  6209. b42.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  6210. p43 = Instance.new("Part", m8)
  6211. p43.BrickColor = BrickColor.new("Really black")
  6212. p43.Material = Enum.Material.Metal
  6213. p43.Name = "Block"
  6214. p43.CFrame = CFrame.new(2.69999964e-005, -11.7292862, -1.76739728, 1, 6.57225172e-008, -2.99325187e-008, -5.95263288e-008, 0.984809816, 0.173648655, 4.08903809e-008, -0.173648939, 0.984810352)
  6215. p43.CanCollide = false
  6216. p43.Locked = true
  6217. p43.FormFactor = Enum.FormFactor.Custom
  6218. p43.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6219. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6220. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6221. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6222. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6223. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6224. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6225. b43 = Instance.new("BlockMesh", p43)
  6226. b43.Name = "Mesh"
  6227. b43.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  6228. p44 = Instance.new("Part", m8)
  6229. p44.BrickColor = BrickColor.new("Lime green")
  6230. p44.Material = Enum.Material.Marble
  6231. p44.Name = "Circle"
  6232. p44.CFrame = CFrame.new(2.69999946e-005, -11.968133, -0.641907811, 1, -3.82199516e-008, -1.58312723e-008, -1.58311995e-008, 1.49011612e-007, -1.00000203, 3.8219941e-008, 1.00000262, 3.27825546e-007)
  6233. p44.CanCollide = false
  6234. p44.Locked = true
  6235. p44.FormFactor = Enum.FormFactor.Custom
  6236. p44.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6237. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6238. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6239. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6240. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6241. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6242. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6243. b44 = Instance.new("CylinderMesh", p44)
  6244. b44.Name = "Mesh"
  6245. b44.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  6246. p45 = Instance.new("Part", m8)
  6247. p45.BrickColor = BrickColor.new("Lime green")
  6248. p45.Material = Enum.Material.Neon
  6249. p45.Reflectance = 0.40000000596046
  6250. p45.Name = "Block"
  6251. p45.CFrame = CFrame.new(2.69999964e-005, -11.8956099, -0.0648244023, 1, -1.56492419e-008, -8.14764718e-008, -1.31610207e-008, 0.939694583, -0.342020601, 8.19152959e-008, 0.342020601, 0.93969512)
  6252. p45.CanCollide = false
  6253. p45.Locked = true
  6254. p45.FormFactor = Enum.FormFactor.Custom
  6255. p45.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6256. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6257. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6258. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6259. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6260. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6261. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6262. b45 = Instance.new("BlockMesh", p45)
  6263. b45.Name = "Mesh"
  6264. b45.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  6265. p46 = Instance.new("Part", m8)
  6266. p46.BrickColor = BrickColor.new("Black")
  6267. p46.Material = Enum.Material.Metal
  6268. p46.Name = "Block"
  6269. p46.CFrame = CFrame.new(2.69999946e-005, -11.8500729, -0.582874656, 1, -4.08901037e-008, -5.95265135e-008, -5.95265313e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
  6270. p46.CanCollide = false
  6271. p46.Locked = true
  6272. p46.FormFactor = Enum.FormFactor.Custom
  6273. p46.Size = Vector3.new(0.236122593, 0.220499977, 0.354183882)
  6274. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6275. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6276. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6277. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6278. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6279. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6280. b46 = Instance.new("BlockMesh", p46)
  6281. b46.Name = "Mesh"
  6282. b46.Scale = Vector3.new(1, 0.401569068, 1)
  6283. p47 = Instance.new("Part", m8)
  6284. p47.BrickColor = BrickColor.new("Earth green")
  6285. p47.Material = Enum.Material.Metal
  6286. p47.Name = "Block"
  6287. p47.CFrame = CFrame.new(2.69999946e-005, -11.850071, -1.56426501, 1, -4.08901037e-008, -5.95265099e-008, -5.95265348e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
  6288. p47.CanCollide = false
  6289. p47.Locked = true
  6290. p47.FormFactor = Enum.FormFactor.Custom
  6291. p47.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6292. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6293. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6294. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6295. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6296. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6297. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6298. b47 = Instance.new("BlockMesh", p47)
  6299. b47.Name = "Mesh"
  6300. b47.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  6301. p48 = Instance.new("Part", m8)
  6302. p48.BrickColor = BrickColor.new("Lime green")
  6303. p48.Material = Enum.Material.Metal
  6304. p48.Name = "Block"
  6305. p48.CFrame = CFrame.new(2.69999964e-005, -11.8500748, -1.04036665, 1, -3.75603939e-008, -6.5922805e-008, -5.83990385e-008, 0.173648417, -0.984809697, 4.84371583e-008, 0.984810054, 0.173648626)
  6306. p48.CanCollide = false
  6307. p48.Locked = true
  6308. p48.FormFactor = Enum.FormFactor.Custom
  6309. p48.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6310. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6311. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6312. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6313. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6314. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6315. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6316. b48 = Instance.new("BlockMesh", p48)
  6317. b48.Name = "Mesh"
  6318. b48.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6319. p49 = Instance.new("Part", m8)
  6320. p49.BrickColor = BrickColor.new("Lime green")
  6321. p49.Material = Enum.Material.Metal
  6322. p49.Name = "Block"
  6323. p49.CFrame = CFrame.new(2.69999928e-005, -11.8500729, -0.730450988, 1, -3.7560401e-008, -6.59227979e-008, -5.83990456e-008, 0.173648179, -0.984809756, 4.84371476e-008, 0.984810114, 0.173648387)
  6324. p49.CanCollide = false
  6325. p49.Locked = true
  6326. p49.FormFactor = Enum.FormFactor.Custom
  6327. p49.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6328. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6329. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6330. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6331. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6332. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6333. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6334. b49 = Instance.new("BlockMesh", p49)
  6335. b49.Name = "Mesh"
  6336. b49.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6337. p50 = Instance.new("Part", m8)
  6338. p50.BrickColor = BrickColor.new("Black")
  6339. p50.Material = Enum.Material.Metal
  6340. p50.Reflectance = 0.40000000596046
  6341. p50.Name = "Block"
  6342. p50.CFrame = CFrame.new(2.69999928e-005, -11.9042749, 1.22774267, 1, -1.79535924e-008, -7.06764602e-009, -1.85012361e-008, -0.996196568, -0.0871560201, -5.47609824e-009, 0.0871561989, -0.996196926)
  6343. p50.CanCollide = false
  6344. p50.Locked = true
  6345. p50.FormFactor = Enum.FormFactor.Custom
  6346. p50.Size = Vector3.new(0.220499977, 0.220499977, 0.287774384)
  6347. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6348. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6349. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6350. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6351. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6352. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6353. b50 = Instance.new("BlockMesh", p50)
  6354. b50.Name = "Mesh"
  6355. b50.Scale = Vector3.new(0.267712682, 0.936994493, 1)
  6356. p51 = Instance.new("Part", m8)
  6357. p51.BrickColor = BrickColor.new("Lime green")
  6358. p51.Material = Enum.Material.Metal
  6359. p51.Name = "Block"
  6360. p51.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.40193033, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558785, -0.996196568, 4.46882424e-008, 0.996196926, 0.0871560574)
  6361. p51.CanCollide = false
  6362. p51.Locked = true
  6363. p51.FormFactor = Enum.FormFactor.Custom
  6364. p51.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6365. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6366. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6367. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6368. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6369. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6370. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6371. b51 = Instance.new("BlockMesh", p51)
  6372. b51.Name = "Mesh"
  6373. b51.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6374. p52 = Instance.new("Part", m8)
  6375. p52.BrickColor = BrickColor.new("Lime green")
  6376. p52.Material = Enum.Material.Metal
  6377. p52.Name = "Block"
  6378. p52.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.09201384, 1, -4.21244408e-008, -5.61351641e-008, -5.95929883e-008, -0.0871557593, -0.996196628, 3.70716471e-008, 0.996196985, -0.0871556401)
  6379. p52.CanCollide = false
  6380. p52.Locked = true
  6381. p52.FormFactor = Enum.FormFactor.Custom
  6382. p52.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6383. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6384. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6385. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6386. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6387. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6388. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6389. b52 = Instance.new("BlockMesh", p52)
  6390. b52.Name = "Mesh"
  6391. b52.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6392. p53 = Instance.new("Part", m8)
  6393. p53.BrickColor = BrickColor.new("Really black")
  6394. p53.Material = Enum.Material.Metal
  6395. p53.Name = "Block"
  6396. p53.CFrame = CFrame.new(2.69999928e-005, -11.7956429, -1.84857762, 1, 6.51748948e-008, 3.11061044e-008, -5.95261795e-008, 0.500001013, 0.866027117, 4.08900611e-008, -0.866027415, 0.500001013)
  6397. p53.CanCollide = false
  6398. p53.Locked = true
  6399. p53.FormFactor = Enum.FormFactor.Custom
  6400. p53.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6401. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6402. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6403. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6404. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6405. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6406. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6407. b53 = Instance.new("BlockMesh", p53)
  6408. b53.Name = "Mesh"
  6409. b53.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  6410. p54 = Instance.new("Part", m8)
  6411. p54.BrickColor = BrickColor.new("Really black")
  6412. p54.Material = Enum.Material.SmoothPlastic
  6413. p54.Reflectance = 0.0099999997764826
  6414. p54.Name = "Circle"
  6415. p54.CFrame = CFrame.new(2.69999928e-005, -11.9386101, -0.523846626, 1, -3.82199445e-008, -1.58312456e-008, -1.58311995e-008, 1.04308441e-007, -1.00000203, 3.82199303e-008, 1.00000226, 2.75671823e-007)
  6416. p54.CanCollide = false
  6417. p54.Locked = true
  6418. p54.FormFactor = Enum.FormFactor.Custom
  6419. p54.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6420. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6421. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6422. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6423. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6424. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6425. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6426. b54 = Instance.new("CylinderMesh", p54)
  6427. b54.Name = "Mesh"
  6428. b54.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  6429. p55 = Instance.new("Part", m8)
  6430. p55.BrickColor = BrickColor.new("Really black")
  6431. p55.Material = Enum.Material.Metal
  6432. p55.Reflectance = 0.40000000596046
  6433. p55.Name = "Block"
  6434. p55.CFrame = CFrame.new(2.69999928e-005, -11.7615232, -0.103249788, 1, -1.85014084e-008, -5.47530199e-009, -1.85013729e-008, -1.00000203, -1.04308441e-007, -5.47541257e-009, 2.75671823e-007, -1.00000226)
  6435. p55.CanCollide = false
  6436. p55.Locked = true
  6437. p55.FormFactor = Enum.FormFactor.Custom
  6438. p55.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6439. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6440. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6441. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6442. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6443. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6444. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6445. b55 = Instance.new("BlockMesh", p55)
  6446. b55.Name = "Mesh"
  6447. b55.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  6448. p56 = Instance.new("Part", m8)
  6449. p56.BrickColor = BrickColor.new("Black")
  6450. p56.Material = Enum.Material.Metal
  6451. p56.Reflectance = 0.40000000596046
  6452. p56.Name = "Block"
  6453. p56.CFrame = CFrame.new(2.69999928e-005, -11.9091034, -0.368891358, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
  6454. p56.CanCollide = false
  6455. p56.Locked = true
  6456. p56.FormFactor = Enum.FormFactor.Custom
  6457. p56.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6458. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6459. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6460. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6461. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6462. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6463. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6464. b56 = Instance.new("BlockMesh", p56)
  6465. b56.Name = "Mesh"
  6466. b56.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  6467. p57 = Instance.new("Part", m8)
  6468. p57.BrickColor = BrickColor.new("Black")
  6469. p57.Material = Enum.Material.Metal
  6470. p57.Reflectance = 0.40000000596046
  6471. p57.Name = "Block"
  6472. p57.CFrame = CFrame.new(2.69999928e-005, -11.9091005, 0.693658948, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
  6473. p57.CanCollide = false
  6474. p57.Locked = true
  6475. p57.FormFactor = Enum.FormFactor.Custom
  6476. p57.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6477. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6478. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6479. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6480. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6481. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6482. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6483. b57 = Instance.new("BlockMesh", p57)
  6484. b57.Name = "Mesh"
  6485. b57.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  6486. p58 = Instance.new("Part", m8)
  6487. p58.BrickColor = BrickColor.new("Lime green")
  6488. p58.Material = Enum.Material.Marble
  6489. p58.Name = "Block"
  6490. p58.CFrame = CFrame.new(2.69999928e-005, -11.850071, -0.523846745, 1, -4.08901073e-008, -5.95264922e-008, -5.95265384e-008, 1.04308441e-007, -1.00000203, 4.08901144e-008, 1.00000226, 2.75671823e-007)
  6491. p58.CanCollide = false
  6492. p58.Locked = true
  6493. p58.FormFactor = Enum.FormFactor.Custom
  6494. p58.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  6495. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6496. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6497. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6498. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6499. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6500. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6501. b58 = Instance.new("BlockMesh", p58)
  6502. b58.Name = "Mesh"
  6503. b58.Scale = Vector3.new(0.936994374, 0.133856371, 1)
  6504. p59 = Instance.new("Part", m8)
  6505. p59.BrickColor = BrickColor.new("Lime green")
  6506. p59.Material = Enum.Material.Metal
  6507. p59.Name = "Block"
  6508. p59.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.62329435, 1, -1.85014031e-008, -5.47530021e-009, -1.85013782e-008, -1.00000203, -1.04308441e-007, -5.47540946e-009, 2.75671823e-007, -1.00000226)
  6509. p59.CanCollide = false
  6510. p59.Locked = true
  6511. p59.FormFactor = Enum.FormFactor.Custom
  6512. p59.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6513. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6514. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6515. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6516. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6517. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6518. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6519. b59 = Instance.new("BlockMesh", p59)
  6520. b59.Name = "Mesh"
  6521. b59.Scale = Vector3.new(0.602353573, 0.200784534, 0.468497276)
  6522. p60 = Instance.new("Part", m8)
  6523. p60.BrickColor = BrickColor.new("Lime green")
  6524. p60.Material = Enum.Material.Marble
  6525. p60.Name = "Circle"
  6526. p60.CFrame = CFrame.new(2.69999928e-005, -11.9755096, -0.523859799, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
  6527. p60.CanCollide = false
  6528. p60.Locked = true
  6529. p60.FormFactor = Enum.FormFactor.Custom
  6530. p60.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6531. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6532. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6533. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6534. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6535. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6536. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6537. b60 = Instance.new("CylinderMesh", p60)
  6538. b60.Name = "Mesh"
  6539. b60.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  6540. p61 = Instance.new("Part", m8)
  6541. p61.BrickColor = BrickColor.new("Black")
  6542. p61.Material = Enum.Material.Metal
  6543. p61.Name = "Circle"
  6544. p61.CFrame = CFrame.new(2.69999928e-005, -12.0271645, -0.582878888, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
  6545. p61.CanCollide = false
  6546. p61.Locked = true
  6547. p61.FormFactor = Enum.FormFactor.Custom
  6548. p61.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  6549. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6550. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6551. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6552. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6553. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6554. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6555. b61 = Instance.new("CylinderMesh", p61)
  6556. b61.Name = "Mesh"
  6557. b61.Scale = Vector3.new(1, 0.401569068, 1)
  6558. p62 = Instance.new("Part", m8)
  6559. p62.BrickColor = BrickColor.new("Lime green")
  6560. p62.Material = Enum.Material.Metal
  6561. p62.Name = "Block"
  6562. p62.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.833758533, 1, -4.08901002e-008, -5.95264851e-008, -5.95265455e-008, -4.47034836e-008, -1.00000203, 4.08901002e-008, 1.00000226, 1.2665987e-007)
  6563. p62.CanCollide = false
  6564. p62.Locked = true
  6565. p62.FormFactor = Enum.FormFactor.Custom
  6566. p62.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6567. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6568. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6569. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6570. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6571. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6572. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6573. b62 = Instance.new("BlockMesh", p62)
  6574. b62.Name = "Mesh"
  6575. b62.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6576. p63 = Instance.new("Part", m8)
  6577. p63.BrickColor = BrickColor.new("Lime green")
  6578. p63.Material = Enum.Material.Metal
  6579. p63.Name = "Block"
  6580. p63.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.14366531, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558636, -0.996196747, 4.4688246e-008, 0.996196866, 0.0871560499)
  6581. p63.CanCollide = false
  6582. p63.Locked = true
  6583. p63.FormFactor = Enum.FormFactor.Custom
  6584. p63.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6585. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6586. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6587. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6588. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6589. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6590. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6591. b63 = Instance.new("BlockMesh", p63)
  6592. b63.Name = "Mesh"
  6593. b63.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6594. p64 = Instance.new("Part", m8)
  6595. p64.BrickColor = BrickColor.new("Really black")
  6596. p64.Material = Enum.Material.SmoothPlastic
  6597. p64.Reflectance = 0.0099999997764826
  6598. p64.Name = "Block"
  6599. p64.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.523846924, 1, -4.08901002e-008, -5.95264957e-008, -5.95265419e-008, 1.04308128e-007, -1.00000203, 4.0890118e-008, 1.00000215, 2.83122063e-007)
  6600. p64.CanCollide = false
  6601. p64.Locked = true
  6602. p64.FormFactor = Enum.FormFactor.Custom
  6603. p64.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6604. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6605. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6606. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6607. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6608. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6609. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6610. b64 = Instance.new("BlockMesh", p64)
  6611. b64.Name = "Mesh"
  6612. b64.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  6613. p65 = Instance.new("Part", m8)
  6614. p65.BrickColor = BrickColor.new("Lime green")
  6615. p65.Material = Enum.Material.Metal
  6616. p65.Name = "Block"
  6617. p65.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.885411739, 1, -3.75603939e-008, -6.59227908e-008, -5.83990456e-008, 0.173648402, -0.984809816, 4.84371547e-008, 0.984809875, 0.173648596)
  6618. p65.CanCollide = false
  6619. p65.Locked = true
  6620. p65.FormFactor = Enum.FormFactor.Custom
  6621. p65.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6622. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6623. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6624. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6625. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6626. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6627. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6628. b65 = Instance.new("BlockMesh", p65)
  6629. b65.Name = "Mesh"
  6630. b65.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6631. p66 = Instance.new("Part", m8)
  6632. p66.BrickColor = BrickColor.new("Really black")
  6633. p66.Material = Enum.Material.Metal
  6634. p66.Reflectance = 0.40000000596046
  6635. p66.Name = "Block"
  6636. p66.CFrame = CFrame.new(2.69999946e-005, -11.7501383, 1.2199297, 1, -1.79537896e-008, -7.06697278e-009, -1.85013764e-008, -0.996196747, -0.0871560127, -5.47540502e-009, 0.0871562064, -0.996196806)
  6637. p66.CanCollide = false
  6638. p66.Locked = true
  6639. p66.FormFactor = Enum.FormFactor.Custom
  6640. p66.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6641. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6642. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6643. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6644. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6645. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6646. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6647. b66 = Instance.new("BlockMesh", p66)
  6648. b66.Name = "Mesh"
  6649. b66.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  6650. p67 = Instance.new("Part", m8)
  6651. p67.BrickColor = BrickColor.new("Lime green")
  6652. p67.Material = Enum.Material.Metal
  6653. p67.Name = "Block"
  6654. p67.CFrame = CFrame.new(2.69999928e-005, -11.8500738, -1.45358396, 1, -4.36852119e-008, -4.90949965e-008, -5.87287552e-008, -0.258819461, -0.96592778, 2.94899358e-008, 0.965927899, -0.258819312)
  6655. p67.CanCollide = false
  6656. p67.Locked = true
  6657. p67.FormFactor = Enum.FormFactor.Custom
  6658. p67.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6659. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6660. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6661. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6662. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6663. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6664. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6665. b67 = Instance.new("BlockMesh", p67)
  6666. b67.Name = "Mesh"
  6667. b67.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6668. p68 = Instance.new("Part", m8)
  6669. p68.BrickColor = BrickColor.new("Black")
  6670. p68.Material = Enum.Material.Metal
  6671. p68.Reflectance = 0.40000000596046
  6672. p68.Name = "Block"
  6673. p68.CFrame = CFrame.new(2.69999946e-005, -11.9090977, 0.162382364, 1, -1.85012148e-008, -5.47590062e-009, -1.85012077e-008, -1.00000191, -1.1920929e-007, -5.47599832e-009, 2.98023224e-007, -1.00000203)
  6674. p68.CanCollide = false
  6675. p68.Locked = true
  6676. p68.FormFactor = Enum.FormFactor.Custom
  6677. p68.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6678. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6679. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6680. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6681. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6682. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6683. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6684. b68 = Instance.new("BlockMesh", p68)
  6685. b68.Name = "Mesh"
  6686. b68.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  6687. p69 = Instance.new("Part", m8)
  6688. p69.BrickColor = BrickColor.new("Earth green")
  6689. p69.Material = Enum.Material.Metal
  6690. p69.Name = "Block"
  6691. p69.CFrame = CFrame.new(2.69999946e-005, -11.8500662, -1.6085372, 1, -4.08901002e-008, -5.9526478e-008, -5.95265455e-008, 1.1920929e-007, -1.00000191, 4.08901073e-008, 1.00000203, 2.98023224e-007)
  6692. p69.CanCollide = false
  6693. p69.Locked = true
  6694. p69.FormFactor = Enum.FormFactor.Custom
  6695. p69.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6696. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6697. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6698. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6699. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6700. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6701. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6702. b69 = Instance.new("BlockMesh", p69)
  6703. b69.Name = "Mesh"
  6704. b69.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  6705. p70 = Instance.new("Part", m8)
  6706. p70.BrickColor = BrickColor.new("Lime green")
  6707. p70.Material = Enum.Material.Marble
  6708. p70.Name = "Circle"
  6709. p70.CFrame = CFrame.new(2.69999946e-005, -11.7320013, -0.641902268, 1, -3.82199374e-008, -1.58312261e-008, -1.5831219e-008, 1.1920929e-007, -1.00000191, 3.82199268e-008, 1.00000203, 2.98023224e-007)
  6710. p70.CanCollide = false
  6711. p70.Locked = true
  6712. p70.FormFactor = Enum.FormFactor.Custom
  6713. p70.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6714. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6715. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6716. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6717. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6718. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6719. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6720. b70 = Instance.new("CylinderMesh", p70)
  6721. b70.Name = "Mesh"
  6722. b70.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  6723. p71 = Instance.new("WedgePart", m8)
  6724. p71.BrickColor = BrickColor.new("Lime green")
  6725. p71.Material = Enum.Material.Neon
  6726. p71.Reflectance = 0.40000000596046
  6727. p71.Name = "Wedge"
  6728. p71.CFrame = CFrame.new(2.69999946e-005, -11.8880224, 0.31500864, -1, 5.94633809e-009, -9.26972419e-008, -8.91409044e-008, -0.342020452, 0.939694583, -2.61165116e-008, 0.939694643, 0.342020303)
  6729. p71.CanCollide = false
  6730. p71.Locked = true
  6731. p71.FormFactor = Enum.FormFactor.Custom
  6732. p71.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6733. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6734. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6735. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6736. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6737. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6738. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6739. b71 = Instance.new("SpecialMesh", p71)
  6740. b71.MeshType = Enum.MeshType.Wedge
  6741. b71.Name = "Mesh"
  6742. b71.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6743. p72 = Instance.new("WedgePart", m8)
  6744. p72.BrickColor = BrickColor.new("Lime green")
  6745. p72.Material = Enum.Material.Neon
  6746. p72.Reflectance = 0.40000000596046
  6747. p72.Name = "Wedge"
  6748. p72.CFrame = CFrame.new(2.69999964e-005, -11.8783607, 0.789086521, 1, -5.68298901e-008, -8.86828389e-011, -5.04137887e-009, -0.0871561319, -0.996196628, 5.66059342e-008, 0.996196628, -0.0871559829)
  6749. p72.CanCollide = false
  6750. p72.Locked = true
  6751. p72.FormFactor = Enum.FormFactor.Custom
  6752. p72.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6753. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6754. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6755. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6756. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6757. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6758. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6759. b72 = Instance.new("SpecialMesh", p72)
  6760. b72.MeshType = Enum.MeshType.Wedge
  6761. b72.Name = "Mesh"
  6762. b72.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  6763. p73 = Instance.new("WedgePart", m8)
  6764. p73.BrickColor = BrickColor.new("Lime green")
  6765. p73.Material = Enum.Material.Neon
  6766. p73.Reflectance = 0.40000000596046
  6767. p73.Name = "Wedge"
  6768. p73.CFrame = CFrame.new(2.69999946e-005, -11.9179726, -0.200317383, -1, 8.86055176e-008, -9.63062732e-008, 1.2080335e-007, 0.342020512, -0.939694524, -5.03233473e-008, -0.939694524, -0.342020392)
  6769. p73.CanCollide = false
  6770. p73.Locked = true
  6771. p73.FormFactor = Enum.FormFactor.Custom
  6772. p73.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6773. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6774. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6775. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6776. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6777. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6778. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6779. b73 = Instance.new("SpecialMesh", p73)
  6780. b73.MeshType = Enum.MeshType.Wedge
  6781. b73.Name = "Mesh"
  6782. b73.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6783. p74 = Instance.new("WedgePart", m8)
  6784. p74.BrickColor = BrickColor.new("Lime green")
  6785. p74.Material = Enum.Material.Neon
  6786. p74.Reflectance = 0.40000000596046
  6787. p74.Name = "Wedge"
  6788. p74.CFrame = CFrame.new(2.69999946e-005, -11.8857021, 0.788440466, 1, -3.05928971e-008, 8.75114523e-008, -8.45122159e-008, 0.087156117, 0.996196568, -3.81037424e-008, -0.996196568, 0.0871560276)
  6789. p74.CanCollide = false
  6790. p74.Locked = true
  6791. p74.FormFactor = Enum.FormFactor.Custom
  6792. p74.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6793. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6794. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6795. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6796. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6797. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6798. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6799. b74 = Instance.new("SpecialMesh", p74)
  6800. b74.MeshType = Enum.MeshType.Wedge
  6801. b74.Name = "Mesh"
  6802. b74.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6803. p75 = Instance.new("WedgePart", m8)
  6804. p75.BrickColor = BrickColor.new("Lime green")
  6805. p75.Material = Enum.Material.Neon
  6806. p75.Reflectance = 0.40000000596046
  6807. p75.Name = "Wedge"
  6808. p75.CFrame = CFrame.new(2.69999946e-005, -11.8681011, -0.402033836, 1, -8.62400213e-008, 8.8834895e-009, 2.11481392e-008, 0.342020482, 0.939694464, -8.40776622e-008, -0.939694464, 0.342020422)
  6809. p75.CanCollide = false
  6810. p75.Locked = true
  6811. p75.FormFactor = Enum.FormFactor.Custom
  6812. p75.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6813. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6814. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6815. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6816. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6817. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6818. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6819. b75 = Instance.new("SpecialMesh", p75)
  6820. b75.MeshType = Enum.MeshType.Wedge
  6821. b75.Name = "Mesh"
  6822. b75.Scale = Vector3.new(0.334640861, 0.267712742, 0.200784534)
  6823. p76 = Instance.new("WedgePart", m8)
  6824. p76.BrickColor = BrickColor.new("Lime green")
  6825. p76.Material = Enum.Material.Neon
  6826. p76.Reflectance = 0.40000000596046
  6827. p76.Name = "Wedge"
  6828. p76.CFrame = CFrame.new(2.69999946e-005, -11.8880215, -0.171991348, -1, 5.94633143e-009, -9.26972206e-008, -8.91408973e-008, -0.342020363, 0.939694405, -2.61165383e-008, 0.939694405, 0.342020303)
  6829. p76.CanCollide = false
  6830. p76.Locked = true
  6831. p76.FormFactor = Enum.FormFactor.Custom
  6832. p76.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6833. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6834. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6835. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6836. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6837. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6838. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6839. b76 = Instance.new("SpecialMesh", p76)
  6840. b76.MeshType = Enum.MeshType.Wedge
  6841. b76.Name = "Mesh"
  6842. b76.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6843. p77 = Instance.new("WedgePart", m8)
  6844. p77.BrickColor = BrickColor.new("Lime green")
  6845. p77.Material = Enum.Material.Neon
  6846. p77.Reflectance = 0.40000000596046
  6847. p77.Name = "Wedge"
  6848. p77.CFrame = CFrame.new(2.69999946e-005, -11.9557362, 1.02495766, -1, 8.82909745e-008, -9.99014986e-008, 1.1934894e-007, 0.258819342, -0.965927422, -5.94261955e-008, -0.965927422, -0.258819282)
  6849. p77.CanCollide = false
  6850. p77.Locked = true
  6851. p77.FormFactor = Enum.FormFactor.Custom
  6852. p77.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6853. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6854. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6855. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6856. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6857. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6858. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6859. b77 = Instance.new("SpecialMesh", p77)
  6860. b77.MeshType = Enum.MeshType.Wedge
  6861. b77.Name = "Mesh"
  6862. b77.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6863. p78 = Instance.new("WedgePart", m8)
  6864. p78.BrickColor = BrickColor.new("Lime green")
  6865. p78.Material = Enum.Material.Neon
  6866. p78.Reflectance = 0.40000000596046
  6867. p78.Name = "Wedge"
  6868. p78.CFrame = CFrame.new(2.69999946e-005, -11.8602781, -0.161903143, -1, 8.14764078e-008, 5.27443866e-009, 2.29101609e-008, 0.342020273, -0.939694166, -7.83668526e-008, -0.939694166, -0.342020243)
  6869. p78.CanCollide = false
  6870. p78.Locked = true
  6871. p78.FormFactor = Enum.FormFactor.Custom
  6872. p78.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6873. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6874. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6875. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6876. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6877. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6878. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6879. b78 = Instance.new("SpecialMesh", p78)
  6880. b78.MeshType = Enum.MeshType.Wedge
  6881. b78.Name = "Mesh"
  6882. b78.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6883. p79 = Instance.new("WedgePart", m8)
  6884. p79.BrickColor = BrickColor.new("Lime green")
  6885. p79.Material = Enum.Material.Neon
  6886. p79.Reflectance = 0.40000000596046
  6887. p79.Name = "Wedge"
  6888. p79.CFrame = CFrame.new(2.69999964e-005, -11.9133091, 0.0700842142, 1, -1.68899177e-007, 5.27444577e-009, -5.28105097e-008, -0.342020273, -0.939694166, 1.60517516e-007, 0.939694166, -0.342020243)
  6889. p79.CanCollide = false
  6890. p79.Locked = true
  6891. p79.FormFactor = Enum.FormFactor.Custom
  6892. p79.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6893. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6894. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6895. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6896. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6897. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6898. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6899. b79 = Instance.new("SpecialMesh", p79)
  6900. b79.MeshType = Enum.MeshType.Wedge
  6901. b79.Name = "Mesh"
  6902. b79.Scale = Vector3.new(0.334640861, 0.535425484, 0.401569068)
  6903. p80 = Instance.new("WedgePart", m8)
  6904. p80.BrickColor = BrickColor.new("Black")
  6905. p80.Material = Enum.Material.Metal
  6906. p80.Reflectance = 0.40000000596046
  6907. p80.Name = "Wedge"
  6908. p80.CFrame = CFrame.new(2.69999964e-005, -11.9147787, 1.51684833, -1, 1.58138e-008, 2.8589703e-008, 3.25942473e-008, 0.422618747, 0.906309128, 2.24968311e-009, 0.906309128, -0.422618806)
  6909. p80.CanCollide = false
  6910. p80.Locked = true
  6911. p80.FormFactor = Enum.FormFactor.Custom
  6912. p80.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  6913. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6914. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6915. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6916. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6917. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6918. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6919. b80 = Instance.new("SpecialMesh", p80)
  6920. b80.MeshType = Enum.MeshType.Wedge
  6921. b80.Name = "Mesh"
  6922. b80.Scale = Vector3.new(0.267712682, 1, 0.133856341)
  6923. p81 = Instance.new("WedgePart", m8)
  6924. p81.BrickColor = BrickColor.new("Lime green")
  6925. p81.Material = Enum.Material.Neon
  6926. p81.Reflectance = 0.40000000596046
  6927. p81.Name = "Wedge"
  6928. p81.CFrame = CFrame.new(2.69999964e-005, -11.8880205, -0.00143384933, 1, -8.62400285e-008, 8.88349216e-009, 2.11481286e-008, 0.342020214, 0.939694047, -8.40776266e-008, -0.939694047, 0.342020124)
  6929. p81.CanCollide = false
  6930. p81.Locked = true
  6931. p81.FormFactor = Enum.FormFactor.Custom
  6932. p81.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6933. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6934. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6935. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6936. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6937. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6938. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6939. b81 = Instance.new("SpecialMesh", p81)
  6940. b81.MeshType = Enum.MeshType.Wedge
  6941. b81.Name = "Mesh"
  6942. b81.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  6943. p82 = Instance.new("WedgePart", m8)
  6944. p82.BrickColor = BrickColor.new("Really black")
  6945. p82.Material = Enum.Material.Metal
  6946. p82.Reflectance = 0.40000000596046
  6947. p82.Name = "Wedge"
  6948. p82.CFrame = CFrame.new(2.69999964e-005, -11.1964474, 1.88168073, 1, -2.43563321e-008, -1.04780362e-007, -1.2949517e-008, 0.939693809, -0.342020929, 1.06791781e-007, 0.342020839, 0.939693809)
  6949. p82.CanCollide = false
  6950. p82.Locked = true
  6951. p82.FormFactor = Enum.FormFactor.Custom
  6952. p82.Size = Vector3.new(0.220499977, 0.314338177, 0.220499977)
  6953. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6954. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6955. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6956. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6957. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6958. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6959. b82 = Instance.new("SpecialMesh", p82)
  6960. b82.MeshType = Enum.MeshType.Wedge
  6961. b82.Name = "Mesh"
  6962. b82.Scale = Vector3.new(0.261019886, 1, 0.307869673)
  6963. p83 = Instance.new("WedgePart", m8)
  6964. p83.BrickColor = BrickColor.new("Really black")
  6965. p83.Material = Enum.Material.Metal
  6966. p83.Reflectance = 0.40000000596046
  6967. p83.Name = "Wedge"
  6968. p83.CFrame = CFrame.new(2.69999982e-005, -11.1028252, 1.9750396, -1, -2.43563356e-008, 1.73575856e-008, -1.695091e-008, 0.939693809, 0.342020959, -2.46411389e-008, 0.34202081, -0.939693809)
  6969. p83.CanCollide = false
  6970. p83.Locked = true
  6971. p83.FormFactor = Enum.FormFactor.Custom
  6972. p83.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6973. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6974. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6975. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6976. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6977. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6978. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6979. b83 = Instance.new("SpecialMesh", p83)
  6980. b83.MeshType = Enum.MeshType.Wedge
  6981. b83.Name = "Mesh"
  6982. b83.Scale = Vector3.new(0.261019886, 0.337987304, 0.204131007)
  6983. p84 = Instance.new("WedgePart", m8)
  6984. p84.BrickColor = BrickColor.new("Lime green")
  6985. p84.Material = Enum.Material.Neon
  6986. p84.Reflectance = 0.40000000596046
  6987. p84.Name = "Wedge"
  6988. p84.CFrame = CFrame.new(2.69999964e-005, -11.9309464, 0.202805281, -1, -1.18273746e-009, 8.8834895e-009, 8.75221495e-009, -0.342020243, 0.939694047, 1.92697125e-009, 0.939694047, 0.342020094)
  6989. p84.CanCollide = false
  6990. p84.Locked = true
  6991. p84.FormFactor = Enum.FormFactor.Custom
  6992. p84.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6993. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6994. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6995. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6996. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6997. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6998. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6999. b84 = Instance.new("SpecialMesh", p84)
  7000. b84.MeshType = Enum.MeshType.Wedge
  7001. b84.Name = "Mesh"
  7002. b84.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  7003. p85 = Instance.new("WedgePart", m8)
  7004. p85.BrickColor = BrickColor.new("Black")
  7005. p85.Material = Enum.Material.Metal
  7006. p85.Reflectance = 0.40000000596046
  7007. p85.Name = "Wedge"
  7008. p85.CFrame = CFrame.new(2.69999964e-005, -11.7129288, 1.75927424, -1, -2.76164442e-008, 9.79634507e-009, -1.16697887e-008, 0.681997418, 0.731356382, -2.68784923e-008, 0.731356263, -0.681997478)
  7009. p85.CanCollide = false
  7010. p85.Locked = true
  7011. p85.FormFactor = Enum.FormFactor.Custom
  7012. p85.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  7013. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7014. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7015. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7016. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7017. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7018. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7019. b85 = Instance.new("SpecialMesh", p85)
  7020. b85.MeshType = Enum.MeshType.Wedge
  7021. b85.Name = "Mesh"
  7022. b85.Scale = Vector3.new(0.267712682, 1, 0.264366329)
  7023. p86 = Instance.new("WedgePart", m8)
  7024. p86.BrickColor = BrickColor.new("Lime green")
  7025. p86.Material = Enum.Material.Neon
  7026. p86.Reflectance = 0.40000000596046
  7027. p86.Name = "Wedge"
  7028. p86.CFrame = CFrame.new(2.7e-005, -11.9805536, 1.1176064, -1, -8.68188743e-010, 1.24787238e-008, 1.22781785e-008, -0.258819252, 0.965927005, 2.39117615e-009, 0.965927005, 0.258819193)
  7029. p86.CanCollide = false
  7030. p86.Locked = true
  7031. p86.FormFactor = Enum.FormFactor.Custom
  7032. p86.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7033. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7034. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7035. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7036. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7037. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7038. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7039. b86 = Instance.new("SpecialMesh", p86)
  7040. b86.MeshType = Enum.MeshType.Wedge
  7041. b86.Name = "Mesh"
  7042. b86.Scale = Vector3.new(0.334640861, 0.602353632, 0.133856341)
  7043. p87 = Instance.new("WedgePart", m8)
  7044. p87.BrickColor = BrickColor.new("Lime green")
  7045. p87.Material = Enum.Material.Neon
  7046. p87.Reflectance = 0.40000000596046
  7047. p87.Name = "Wedge"
  7048. p87.CFrame = CFrame.new(2.69999982e-005, -11.8886356, 0.251966357, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
  7049. p87.CanCollide = false
  7050. p87.Locked = true
  7051. p87.FormFactor = Enum.FormFactor.Custom
  7052. p87.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7053. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7054. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7055. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7056. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7057. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7058. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7059. b87 = Instance.new("SpecialMesh", p87)
  7060. b87.MeshType = Enum.MeshType.Wedge
  7061. b87.Name = "Mesh"
  7062. b87.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  7063. p88 = Instance.new("WedgePart", m8)
  7064. p88.BrickColor = BrickColor.new("Lime green")
  7065. p88.Material = Enum.Material.Neon
  7066. p88.Reflectance = 0.40000000596046
  7067. p88.Name = "Wedge"
  7068. p88.CFrame = CFrame.new(2.7e-005, -11.869071, 0.470699608, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
  7069. p88.CanCollide = false
  7070. p88.Locked = true
  7071. p88.FormFactor = Enum.FormFactor.Custom
  7072. p88.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7073. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7074. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7075. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7076. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7077. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7078. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7079. b88 = Instance.new("SpecialMesh", p88)
  7080. b88.MeshType = Enum.MeshType.Wedge
  7081. b88.Name = "Mesh"
  7082. b88.Scale = Vector3.new(0.334640861, 0.602353632, 0.267712682)
  7083. p89 = Instance.new("WedgePart", m8)
  7084. p89.BrickColor = BrickColor.new("Lime green")
  7085. p89.Material = Enum.Material.Neon
  7086. p89.Reflectance = 0.40000000596046
  7087. p89.Name = "Wedge"
  7088. p89.CFrame = CFrame.new(2.69999982e-005, -11.9583426, -0.0893729925, -1, -1.18272325e-009, 8.88348239e-009, 8.75221673e-009, -0.342020214, 0.93969357, 1.92696215e-009, 0.93969357, 0.342020154)
  7089. p89.CanCollide = false
  7090. p89.Locked = true
  7091. p89.FormFactor = Enum.FormFactor.Custom
  7092. p89.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7093. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7094. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7095. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7096. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7097. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7098. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7099. b89 = Instance.new("SpecialMesh", p89)
  7100. b89.MeshType = Enum.MeshType.Wedge
  7101. b89.Name = "Mesh"
  7102. b89.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  7103. p90 = Instance.new("WedgePart", m8)
  7104. p90.BrickColor = BrickColor.new("Lime green")
  7105. p90.Material = Enum.Material.Neon
  7106. p90.Reflectance = 0.40000000596046
  7107. p90.Name = "Wedge"
  7108. p90.CFrame = CFrame.new(2.69999982e-005, -11.8805695, 0.729635715, 1, -3.05929149e-008, 8.75114452e-008, -8.45121022e-008, 0.0871560574, 0.996195555, -3.81037033e-008, -0.996195555, 0.0871560574)
  7109. p90.CanCollide = false
  7110. p90.Locked = true
  7111. p90.FormFactor = Enum.FormFactor.Custom
  7112. p90.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7113. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7114. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7115. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7116. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7117. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7118. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7119. b90 = Instance.new("SpecialMesh", p90)
  7120. b90.MeshType = Enum.MeshType.Wedge
  7121. b90.Name = "Mesh"
  7122. b90.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  7123. p91 = Instance.new("WedgePart", m8)
  7124. p91.BrickColor = BrickColor.new("Really black")
  7125. p91.Material = Enum.Material.Metal
  7126. p91.Reflectance = 0.40000000596046
  7127. p91.Name = "Wedge"
  7128. p91.CFrame = CFrame.new(2.69999982e-005, -11.2718382, 1.82602453, -1, 1.16832744e-007, -9.28606454e-008, -1.69508567e-008, -0.707107246, -0.707107663, -1.4827576e-007, -0.707107663, 0.707107246)
  7129. p91.CanCollide = false
  7130. p91.Locked = true
  7131. p91.FormFactor = Enum.FormFactor.Custom
  7132. p91.Size = Vector3.new(0.220499977, 0.401408434, 0.220499977)
  7133. p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7134. p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7135. p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7136. p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7137. p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7138. p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7139. b91 = Instance.new("SpecialMesh", p91)
  7140. b91.MeshType = Enum.MeshType.Wedge
  7141. b91.Name = "Mesh"
  7142. b91.Scale = Vector3.new(0.267712682, 1, 0.200784534)
  7143. p92 = Instance.new("WedgePart", m8)
  7144. p92.BrickColor = BrickColor.new("Lime green")
  7145. p92.Material = Enum.Material.Neon
  7146. p92.Reflectance = 0.40000000596046
  7147. p92.Name = "Wedge"
  7148. p92.CFrame = CFrame.new(2.69999982e-005, -11.984252, 1.01731598, -1, -8.68163763e-010, 1.24787114e-008, 1.22781865e-008, -0.258819163, 0.965926766, 2.39115083e-009, 0.965926766, 0.258819163)
  7149. p92.CanCollide = false
  7150. p92.Locked = true
  7151. p92.FormFactor = Enum.FormFactor.Custom
  7152. p92.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7153. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7154. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7155. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7156. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7157. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7158. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7159. b92 = Instance.new("SpecialMesh", p92)
  7160. b92.MeshType = Enum.MeshType.Wedge
  7161. b92.Name = "Mesh"
  7162. b92.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  7163. p93 = Instance.new("WedgePart", m8)
  7164. p93.BrickColor = BrickColor.new("Lime green")
  7165. p93.Material = Enum.Material.Neon
  7166. p93.Reflectance = 0.40000000596046
  7167. p93.Name = "Wedge"
  7168. p93.CFrame = CFrame.new(2.69999964e-005, -11.9214983, 0.99980092, 1, -8.93497187e-008, 2.29101715e-008, -2.29101325e-008, 2.98023224e-007, 1.00000083, -8.9349804e-008, -1.00000083, 2.98023224e-007)
  7169. p93.CanCollide = false
  7170. p93.Locked = true
  7171. p93.FormFactor = Enum.FormFactor.Custom
  7172. p93.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7173. p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7174. p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7175. p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7176. p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7177. p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7178. p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7179. b93 = Instance.new("SpecialMesh", p93)
  7180. b93.MeshType = Enum.MeshType.Wedge
  7181. b93.Name = "Mesh"
  7182. b93.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  7183. p94 = Instance.new("WedgePart", m8)
  7184. p94.BrickColor = BrickColor.new("Lime green")
  7185. p94.Material = Enum.Material.Neon
  7186. p94.Reflectance = 0.40000000596046
  7187. p94.Name = "Wedge"
  7188. p94.CFrame = CFrame.new(2.69999964e-005, -11.9032125, 0.212900162, -1, 8.8605475e-008, -9.63062732e-008, 1.20803207e-007, 0.342020005, -0.93969363, -5.03233366e-008, -0.93969363, -0.342020005)
  7189. p94.CanCollide = false
  7190. p94.Locked = true
  7191. p94.FormFactor = Enum.FormFactor.Custom
  7192. p94.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7193. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7194. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7195. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7196. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7197. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7198. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7199. b94 = Instance.new("SpecialMesh", p94)
  7200. b94.MeshType = Enum.MeshType.Wedge
  7201. b94.Name = "Mesh"
  7202. b94.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  7203. p95 = Instance.new("WedgePart", m8)
  7204. p95.BrickColor = BrickColor.new("Black")
  7205. p95.Material = Enum.Material.Metal
  7206. p95.Reflectance = 0.40000000596046
  7207. p95.Name = "Wedge"
  7208. p95.CFrame = CFrame.new(2.69999964e-005, -11.361845, 1.9233377, -1, -2.94099678e-008, 5.43784395e-009, -1.69508834e-008, 0.707107186, 0.707107663, -2.46411602e-008, 0.707107663, -0.707107186)
  7209. p95.CanCollide = false
  7210. p95.Locked = true
  7211. p95.FormFactor = Enum.FormFactor.Custom
  7212. p95.Size = Vector3.new(0.220499977, 0.391078025, 0.222102806)
  7213. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7214. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7215. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7216. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7217. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7218. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7219. b95 = Instance.new("SpecialMesh", p95)
  7220. b95.MeshType = Enum.MeshType.Wedge
  7221. b95.Name = "Mesh"
  7222. b95.Scale = Vector3.new(0.261019886, 1, 1)
  7223. p96 = Instance.new("WedgePart", m8)
  7224. p96.BrickColor = BrickColor.new("Lime green")
  7225. p96.Material = Enum.Material.Neon
  7226. p96.Reflectance = 0.40000000596046
  7227. p96.Name = "Wedge"
  7228. p96.CFrame = CFrame.new(2.69999982e-005, -11.9530287, 1.26521814, -1, -3.29206387e-008, 2.51881929e-008, 1.58094231e-008, 0.258819431, 0.965926588, -3.83181202e-008, 0.965926588, -0.258819431)
  7229. p96.CanCollide = false
  7230. p96.Locked = true
  7231. p96.FormFactor = Enum.FormFactor.Custom
  7232. p96.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7233. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7234. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7235. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7236. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7237. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7238. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7239. b96 = Instance.new("SpecialMesh", p96)
  7240. b96.MeshType = Enum.MeshType.Wedge
  7241. b96.Name = "Mesh"
  7242. b96.Scale = Vector3.new(0.334640861, 0.736209989, 0.133856341)
  7243. p97 = Instance.new("WedgePart", m8)
  7244. p97.BrickColor = BrickColor.new("Lime green")
  7245. p97.Material = Enum.Material.Neon
  7246. p97.Reflectance = 0.40000000596046
  7247. p97.Name = "Wedge"
  7248. p97.CFrame = CFrame.new(2.69999964e-005, -11.9457083, -0.210409045, -1, -1.18269794e-009, 8.88346818e-009, 8.75222206e-009, -0.342020214, 0.939693332, 1.92694349e-009, 0.939693332, 0.342020214)
  7249. p97.CanCollide = false
  7250. p97.Locked = true
  7251. p97.FormFactor = Enum.FormFactor.Custom
  7252. p97.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7253. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7254. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7255. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7256. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7257. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7258. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7259. b97 = Instance.new("SpecialMesh", p97)
  7260. b97.MeshType = Enum.MeshType.Wedge
  7261. b97.Name = "Mesh"
  7262. b97.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  7263. p98 = Instance.new("WedgePart", m8)
  7264. p98.BrickColor = BrickColor.new("Lime green")
  7265. p98.Material = Enum.Material.Neon
  7266. p98.Reflectance = 0.40000000596046
  7267. p98.Name = "Wedge"
  7268. p98.CFrame = CFrame.new(2.7e-005, -11.9322329, 0.816780686, 1, -1.68899135e-007, 5.27447064e-009, -5.2810492e-008, -0.342020094, -0.939693272, 1.60517359e-007, 0.939693272, -0.342020094)
  7269. p98.CanCollide = false
  7270. p98.Locked = true
  7271. p98.FormFactor = Enum.FormFactor.Custom
  7272. p98.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7273. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7274. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7275. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7276. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7277. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7278. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7279. b98 = Instance.new("SpecialMesh", p98)
  7280. b98.MeshType = Enum.MeshType.Wedge
  7281. b98.Name = "Mesh"
  7282. b98.Scale = Vector3.new(0.334640861, 0.669281721, 0.267712682)
  7283. p99 = Instance.new("WedgePart", m8)
  7284. p99.BrickColor = BrickColor.new("Lime green")
  7285. p99.Material = Enum.Material.Neon
  7286. p99.Reflectance = 0.40000000596046
  7287. p99.Name = "Wedge"
  7288. p99.CFrame = CFrame.new(2.69999982e-005, -11.9055624, 1.3254329, -1, -3.49906557e-008, 2.22318874e-008, 1.58180669e-008, 0.173648253, 0.984808207, -3.83196053e-008, 0.984808207, -0.173648253)
  7289. p99.CanCollide = false
  7290. p99.Locked = true
  7291. p99.FormFactor = Enum.FormFactor.Custom
  7292. p99.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7293. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7294. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7295. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7296. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7297. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7298. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7299. b99 = Instance.new("SpecialMesh", p99)
  7300. b99.MeshType = Enum.MeshType.Wedge
  7301. b99.Name = "Mesh"
  7302. b99.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  7303. p100 = Instance.new("WedgePart", m8)
  7304. p100.BrickColor = BrickColor.new("Lime green")
  7305. p100.Material = Enum.Material.Neon
  7306. p100.Reflectance = 0.40000000596046
  7307. p100.Name = "Wedge"
  7308. p100.CFrame = CFrame.new(2.69999982e-005, -11.9114323, 1.08247674, -1, 1.18015713e-007, 8.75114381e-008, 7.68926611e-008, -0.0871561319, 0.996195078, 1.2519385e-007, 0.996195078, 0.0871561319)
  7309. p100.CanCollide = false
  7310. p100.Locked = true
  7311. p100.FormFactor = Enum.FormFactor.Custom
  7312. p100.Size = Vector3.new(0.220499977, 0.236122593, 0.220499977)
  7313. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7314. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7315. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7316. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7317. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7318. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7319. b100 = Instance.new("SpecialMesh", p100)
  7320. b100.MeshType = Enum.MeshType.Wedge
  7321. b100.Name = "Mesh"
  7322. b100.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  7323. p101 = Instance.new("WedgePart", m8)
  7324. p101.BrickColor = BrickColor.new("Lime green")
  7325. p101.Material = Enum.Material.Neon
  7326. p101.Reflectance = 0.40000000596046
  7327. p101.Name = "Wedge"
  7328. p101.CFrame = CFrame.new(2.69999982e-005, -11.8602819, 0.575987279, -1, 8.14763652e-008, 5.27446709e-009, 2.29101644e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
  7329. p101.CanCollide = false
  7330. p101.Locked = true
  7331. p101.FormFactor = Enum.FormFactor.Custom
  7332. p101.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7333. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7334. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7335. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7336. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7337. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7338. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7339. b101 = Instance.new("SpecialMesh", p101)
  7340. b101.MeshType = Enum.MeshType.Wedge
  7341. b101.Name = "Mesh"
  7342. b101.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  7343. p102 = Instance.new("WedgePart", m8)
  7344. p102.BrickColor = BrickColor.new("Lime green")
  7345. p102.Material = Enum.Material.Neon
  7346. p102.Reflectance = 0.40000000596046
  7347. p102.Name = "Wedge"
  7348. p102.CFrame = CFrame.new(2.69999982e-005, -11.8709736, -0.283571124, -1, 8.14763652e-008, 5.27447064e-009, 2.29101609e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
  7349. p102.CanCollide = false
  7350. p102.Locked = true
  7351. p102.FormFactor = Enum.FormFactor.Custom
  7352. p102.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7353. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7354. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7355. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7356. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7357. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7358. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7359. b102 = Instance.new("SpecialMesh", p102)
  7360. b102.MeshType = Enum.MeshType.Wedge
  7361. b102.Name = "Mesh"
  7362. b102.Scale = Vector3.new(0.334640861, 0.736209989, 0.334640861)
  7363. p103 = Instance.new("WedgePart", m8)
  7364. p103.BrickColor = BrickColor.new("Lime green")
  7365. p103.Material = Enum.Material.Neon
  7366. p103.Reflectance = 0.40000000596046
  7367. p103.Name = "Wedge"
  7368. p103.CFrame = CFrame.new(2.69999982e-005, -11.9097681, 0.739346266, 1, -8.65546141e-008, 1.24786919e-008, 1.03484972e-008, 0.258819103, 0.965926111, -8.68351009e-008, -0.965926111, 0.258819103)
  7369. p103.CanCollide = false
  7370. p103.Locked = true
  7371. p103.FormFactor = Enum.FormFactor.Custom
  7372. p103.Size = Vector3.new(0.220499977, 0.221364915, 0.220499977)
  7373. p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7374. p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7375. p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7376. p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7377. p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7378. p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7379. b103 = Instance.new("SpecialMesh", p103)
  7380. b103.MeshType = Enum.MeshType.Wedge
  7381. b103.Name = "Mesh"
  7382. b103.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  7383. p104 = Instance.new("WedgePart", m8)
  7384. p104.BrickColor = BrickColor.new("Lime green")
  7385. p104.Material = Enum.Material.Neon
  7386. p104.Reflectance = 0.40000000596046
  7387. p104.Name = "Wedge"
  7388. p104.CFrame = CFrame.new(2.69999964e-005, -11.9271755, 0.55203414, 1, -1.68899149e-007, 5.27447863e-009, -5.28104778e-008, -0.342019916, -0.939692855, 1.60517274e-007, 0.939692855, -0.342019916)
  7389. p104.CanCollide = false
  7390. p104.Locked = true
  7391. p104.FormFactor = Enum.FormFactor.Custom
  7392. p104.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7393. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7394. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7395. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7396. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7397. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7398. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7399. b104 = Instance.new("SpecialMesh", p104)
  7400. b104.MeshType = Enum.MeshType.Wedge
  7401. b104.Name = "Mesh"
  7402. b104.Scale = Vector3.new(0.334640861, 0.535425484, 0.267712682)
  7403. p105 = Instance.new("WedgePart", m8)
  7404. p105.BrickColor = BrickColor.new("Really black")
  7405. p105.Material = Enum.Material.Metal
  7406. p105.Reflectance = 0.40000000596046
  7407. p105.Name = "Wedge"
  7408. p105.CFrame = CFrame.new(2.69999982e-005, -11.3177481, 1.88445807, -1, -2.94099785e-008, 5.43784395e-009, -1.69508549e-008, 0.707106531, 0.707107127, -2.46411282e-008, 0.707107127, -0.707106531)
  7409. p105.CanCollide = false
  7410. p105.Locked = true
  7411. p105.FormFactor = Enum.FormFactor.Custom
  7412. p105.Size = Vector3.new(0.220499977, 0.383699238, 0.220499977)
  7413. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7414. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7415. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7416. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7417. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7418. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7419. b105 = Instance.new("SpecialMesh", p105)
  7420. b105.MeshType = Enum.MeshType.Wedge
  7421. b105.Name = "Mesh"
  7422. b105.Scale = Vector3.new(0.267712682, 1, 0.468497276)
  7423. p106 = Instance.new("WedgePart", m8)
  7424. p106.BrickColor = BrickColor.new("Lime green")
  7425. p106.Material = Enum.Material.Neon
  7426. p106.Reflectance = 0.40000000596046
  7427. p106.Name = "Wedge"
  7428. p106.CFrame = CFrame.new(2.69999964e-005, -11.8602819, 0.325106204, -1, 8.14763723e-008, 5.27446709e-009, 2.29101538e-008, 0.342019886, -0.939692736, -7.83667247e-008, -0.939692736, -0.342019886)
  7429. p106.CanCollide = false
  7430. p106.Locked = true
  7431. p106.FormFactor = Enum.FormFactor.Custom
  7432. p106.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7433. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7434. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7435. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7436. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7437. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7438. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7439. b106 = Instance.new("SpecialMesh", p106)
  7440. b106.MeshType = Enum.MeshType.Wedge
  7441. b106.Name = "Mesh"
  7442. b106.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  7443. p107 = Instance.new("WedgePart", m8)
  7444. p107.BrickColor = BrickColor.new("Lime green")
  7445. p107.Material = Enum.Material.Neon
  7446. p107.Reflectance = 0.40000000596046
  7447. p107.Name = "Wedge"
  7448. p107.CFrame = CFrame.new(2.69999982e-005, -11.9731445, 1.13999915, 1, -8.93497187e-008, 2.29101502e-008, -2.29101129e-008, 3.87430248e-007, 1, -8.93497258e-008, -1, 3.87430276e-007)
  7449. p107.CanCollide = false
  7450. p107.Locked = true
  7451. p107.FormFactor = Enum.FormFactor.Custom
  7452. p107.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7453. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7454. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7455. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7456. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7457. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7458. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7459. b107 = Instance.new("SpecialMesh", p107)
  7460. b107.MeshType = Enum.MeshType.Wedge
  7461. b107.Name = "Mesh"
  7462. b107.Scale = Vector3.new(0.334640861, 0.468497276, 0.133856341)
  7463. p108 = Instance.new("WedgePart", m8)
  7464. p108.BrickColor = BrickColor.new("Black")
  7465. p108.Material = Enum.Material.Metal
  7466. p108.Reflectance = 0.40000000596046
  7467. p108.Name = "Wedge"
  7468. p108.CFrame = CFrame.new(2.69999982e-005, -12.0124025, 1.01832807, 1, 3.82198948e-008, 2.11711555e-008, -2.11711537e-008, -2.98023224e-008, 1, 3.82198913e-008, -1, -2.98023224e-008)
  7469. p108.CanCollide = false
  7470. p108.Locked = true
  7471. p108.FormFactor = Enum.FormFactor.Custom
  7472. p108.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7473. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7474. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7475. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7476. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7477. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7478. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7479. b108 = Instance.new("SpecialMesh", p108)
  7480. b108.MeshType = Enum.MeshType.Wedge
  7481. b108.Name = "Mesh"
  7482. b108.Scale = Vector3.new(0.267712682, 0.669281721, 0.0669281706)
  7483. p109 = Instance.new("WedgePart", m8)
  7484. p109.BrickColor = BrickColor.new("Lime green")
  7485. p109.Material = Enum.Material.Neon
  7486. p109.Reflectance = 0.40000000596046
  7487. p109.Name = "Wedge"
  7488. p109.CFrame = CFrame.new(2.7e-005, -11.9461164, 0.330772072, -1, -1.18270771e-009, 8.88346818e-009, 8.75223805e-009, -0.342019796, 0.939692795, 1.92694571e-009, 0.939692795, 0.342019796)
  7489. p109.CanCollide = false
  7490. p109.Locked = true
  7491. p109.FormFactor = Enum.FormFactor.Custom
  7492. p109.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7493. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7494. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7495. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7496. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7497. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7498. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7499. b109 = Instance.new("SpecialMesh", p109)
  7500. b109.MeshType = Enum.MeshType.Wedge
  7501. b109.Name = "Mesh"
  7502. b109.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  7503. p110 = Instance.new("WedgePart", m8)
  7504. p110.BrickColor = BrickColor.new("Lime green")
  7505. p110.Material = Enum.Material.Neon
  7506. p110.Reflectance = 0.40000000596046
  7507. p110.Name = "Wedge"
  7508. p110.CFrame = CFrame.new(2.69999982e-005, -11.8880196, 0.565889001, -1, 5.94638294e-009, -9.26972632e-008, -8.91407268e-008, -0.342019916, 0.939692736, -2.61165312e-008, 0.939692736, 0.342019916)
  7509. p110.CanCollide = false
  7510. p110.Locked = true
  7511. p110.FormFactor = Enum.FormFactor.Custom
  7512. p110.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  7513. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7514. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7515. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7516. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7517. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7518. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7519. b110 = Instance.new("SpecialMesh", p110)
  7520. b110.MeshType = Enum.MeshType.Wedge
  7521. b110.Name = "Mesh"
  7522. b110.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  7523. p111 = Instance.new("Part", m8)
  7524. p111.BrickColor = BrickColor.new("Really black")
  7525. p111.Material = Enum.Material.Metal
  7526. p111.Transparency = 1
  7527. p111.Name = "Hitbox"
  7528. p111.CFrame = CFrame.new(2.7e-005, -11.550066, 0.678469002, 1, -4.08900576e-008, -5.9526446e-008, -5.9526446e-008, 0, -1, 4.08900576e-008, 1, -2.43403981e-015)
  7529. p111.CanCollide = false
  7530. p111.Locked = true
  7531. p111.FormFactor = Enum.FormFactor.Custom
  7532. p111.Size = Vector3.new(0.22, 2.57, 1.22)
  7533. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7534. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7535. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7536. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7537. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7538. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7539. b111 = Instance.new("BlockMesh", p111)
  7540. b111.Name = "Mesh"
  7541. w1 = Instance.new("Weld", p1)
  7542. w1.Name = "Block_Weld"
  7543. w1.Part0 = p1
  7544. w1.C0 = CFrame.new(-2.69832744e-005, -0.186136514, 1.51893806, 1, -1.84926652e-008, -5.47947643e-009, -1.44443195e-008, -0.906307817, 0.4226183, -1.2781431e-008, -0.42261833, -0.906307876)
  7545. w1.Part1 = p2
  7546. w1.C1 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7547. w2 = Instance.new("Weld", p2)
  7548. w2.Name = "Block_Weld"
  7549. w2.Part0 = p2
  7550. w2.C0 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7551. w2.Part1 = p3
  7552. w2.C1 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7553. w3 = Instance.new("Weld", p3)
  7554. w3.Name = "Block_Weld"
  7555. w3.Part0 = p3
  7556. w3.C0 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7557. w3.Part1 = p4
  7558. w3.C1 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7559. w4 = Instance.new("Weld", p4)
  7560. w4.Name = "Block_Weld"
  7561. w4.Part0 = p4
  7562. w4.C0 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7563. w4.Part1 = p5
  7564. w4.C1 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
  7565. w5 = Instance.new("Weld", p5)
  7566. w5.Name = "Block_Weld"
  7567. w5.Part0 = p5
  7568. w5.C0 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
  7569. w5.Part1 = p6
  7570. w5.C1 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7571. w6 = Instance.new("Weld", p6)
  7572. w6.Name = "Block_Weld"
  7573. w6.Part0 = p6
  7574. w6.C0 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7575. w6.Part1 = p7
  7576. w6.C1 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
  7577. w7 = Instance.new("Weld", p7)
  7578. w7.Name = "Block_Weld"
  7579. w7.Part0 = p7
  7580. w7.C0 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
  7581. w7.Part1 = p8
  7582. w7.C1 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
  7583. w8 = Instance.new("Weld", p8)
  7584. w8.Name = "Block_Weld"
  7585. w8.Part0 = p8
  7586. w8.C0 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
  7587. w8.Part1 = p9
  7588. w8.C1 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7589. w9 = Instance.new("Weld", p9)
  7590. w9.Name = "Block_Weld"
  7591. w9.Part0 = p9
  7592. w9.C0 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7593. w9.Part1 = p10
  7594. w9.C1 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
  7595. w10 = Instance.new("Weld", p10)
  7596. w10.Name = "Circle_Weld"
  7597. w10.Part0 = p10
  7598. w10.C0 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
  7599. w10.Part1 = p11
  7600. w10.C1 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7601. w11 = Instance.new("Weld", p11)
  7602. w11.Name = "Block_Weld"
  7603. w11.Part0 = p11
  7604. w11.C0 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7605. w11.Part1 = p12
  7606. w11.C1 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7607. w12 = Instance.new("Weld", p12)
  7608. w12.Name = "Block_Weld"
  7609. w12.Part0 = p12
  7610. w12.C0 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7611. w12.Part1 = p13
  7612. w12.C1 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7613. w13 = Instance.new("Weld", p13)
  7614. w13.Name = "Block_Weld"
  7615. w13.Part0 = p13
  7616. w13.C0 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7617. w13.Part1 = p14
  7618. w13.C1 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
  7619. w14 = Instance.new("Weld", p14)
  7620. w14.Name = "Block_Weld"
  7621. w14.Part0 = p14
  7622. w14.C0 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
  7623. w14.Part1 = p15
  7624. w14.C1 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7625. w15 = Instance.new("Weld", p15)
  7626. w15.Name = "Handle_Weld"
  7627. w15.Part0 = p15
  7628. w15.C0 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7629. w15.Part1 = p16
  7630. w15.C1 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7631. w16 = Instance.new("Weld", p16)
  7632. w16.Name = "Block_Weld"
  7633. w16.Part0 = p16
  7634. w16.C0 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7635. w16.Part1 = p17
  7636. w16.C1 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
  7637. w17 = Instance.new("Weld", p17)
  7638. w17.Name = "Block_Weld"
  7639. w17.Part0 = p17
  7640. w17.C0 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
  7641. w17.Part1 = p18
  7642. w17.C1 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
  7643. w18 = Instance.new("Weld", p18)
  7644. w18.Name = "Block_Weld"
  7645. w18.Part0 = p18
  7646. w18.C0 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
  7647. w18.Part1 = p19
  7648. w18.C1 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7649. w19 = Instance.new("Weld", p19)
  7650. w19.Name = "Block_Weld"
  7651. w19.Part0 = p19
  7652. w19.C0 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7653. w19.Part1 = p20
  7654. w19.C1 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7655. w20 = Instance.new("Weld", p20)
  7656. w20.Name = "Block_Weld"
  7657. w20.Part0 = p20
  7658. w20.C0 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7659. w20.Part1 = p21
  7660. w20.C1 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
  7661. w21 = Instance.new("Weld", p21)
  7662. w21.Name = "Block_Weld"
  7663. w21.Part0 = p21
  7664. w21.C0 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
  7665. w21.Part1 = p22
  7666. w21.C1 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7667. w22 = Instance.new("Weld", p22)
  7668. w22.Name = "Block_Weld"
  7669. w22.Part0 = p22
  7670. w22.C0 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7671. w22.Part1 = p23
  7672. w22.C1 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7673. w23 = Instance.new("Weld", p23)
  7674. w23.Name = "Block_Weld"
  7675. w23.Part0 = p23
  7676. w23.C0 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7677. w23.Part1 = p24
  7678. w23.C1 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
  7679. w24 = Instance.new("Weld", p24)
  7680. w24.Name = "Block_Weld"
  7681. w24.Part0 = p24
  7682. w24.C0 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
  7683. w24.Part1 = p25
  7684. w24.C1 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7685. w25 = Instance.new("Weld", p25)
  7686. w25.Name = "Block_Weld"
  7687. w25.Part0 = p25
  7688. w25.C0 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7689. w25.Part1 = p26
  7690. w25.C1 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7691. w26 = Instance.new("Weld", p26)
  7692. w26.Name = "Block_Weld"
  7693. w26.Part0 = p26
  7694. w26.C0 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7695. w26.Part1 = p27
  7696. w26.C1 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
  7697. w27 = Instance.new("Weld", p27)
  7698. w27.Name = "Circle_Weld"
  7699. w27.Part0 = p27
  7700. w27.C0 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
  7701. w27.Part1 = p28
  7702. w27.C1 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7703. w28 = Instance.new("Weld", p28)
  7704. w28.Name = "Block_Weld"
  7705. w28.Part0 = p28
  7706. w28.C0 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7707. w28.Part1 = p29
  7708. w28.C1 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
  7709. w29 = Instance.new("Weld", p29)
  7710. w29.Name = "Block_Weld"
  7711. w29.Part0 = p29
  7712. w29.C0 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
  7713. w29.Part1 = p30
  7714. w29.C1 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7715. w30 = Instance.new("Weld", p30)
  7716. w30.Name = "Block_Weld"
  7717. w30.Part0 = p30
  7718. w30.C0 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7719. w30.Part1 = p31
  7720. w30.C1 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
  7721. w31 = Instance.new("Weld", p31)
  7722. w31.Name = "Block_Weld"
  7723. w31.Part0 = p31
  7724. w31.C0 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
  7725. w31.Part1 = p32
  7726. w31.C1 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7727. w32 = Instance.new("Weld", p32)
  7728. w32.Name = "Block_Weld"
  7729. w32.Part0 = p32
  7730. w32.C0 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7731. w32.Part1 = p33
  7732. w32.C1 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7733. w33 = Instance.new("Weld", p33)
  7734. w33.Name = "Block_Weld"
  7735. w33.Part0 = p33
  7736. w33.C0 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7737. w33.Part1 = p34
  7738. w33.C1 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7739. w34 = Instance.new("Weld", p34)
  7740. w34.Name = "Block_Weld"
  7741. w34.Part0 = p34
  7742. w34.C0 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7743. w34.Part1 = p35
  7744. w34.C1 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7745. w35 = Instance.new("Weld", p35)
  7746. w35.Name = "Block_Weld"
  7747. w35.Part0 = p35
  7748. w35.C0 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7749. w35.Part1 = p36
  7750. w35.C1 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7751. w36 = Instance.new("Weld", p36)
  7752. w36.Name = "Circle_Weld"
  7753. w36.Part0 = p36
  7754. w36.C0 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7755. w36.Part1 = p37
  7756. w36.C1 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7757. w37 = Instance.new("Weld", p37)
  7758. w37.Name = "Block_Weld"
  7759. w37.Part0 = p37
  7760. w37.C0 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7761. w37.Part1 = p38
  7762. w37.C1 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7763. w38 = Instance.new("Weld", p38)
  7764. w38.Name = "Block_Weld"
  7765. w38.Part0 = p38
  7766. w38.C0 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7767. w38.Part1 = p39
  7768. w38.C1 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7769. w39 = Instance.new("Weld", p39)
  7770. w39.Name = "Block_Weld"
  7771. w39.Part0 = p39
  7772. w39.C0 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7773. w39.Part1 = p40
  7774. w39.C1 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
  7775. w40 = Instance.new("Weld", p40)
  7776. w40.Name = "Block_Weld"
  7777. w40.Part0 = p40
  7778. w40.C0 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
  7779. w40.Part1 = p41
  7780. w40.C1 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7781. w41 = Instance.new("Weld", p41)
  7782. w41.Name = "Block_Weld"
  7783. w41.Part0 = p41
  7784. w41.C0 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7785. w41.Part1 = p42
  7786. w41.C1 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7787. w42 = Instance.new("Weld", p42)
  7788. w42.Name = "Block_Weld"
  7789. w42.Part0 = p42
  7790. w42.C0 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7791. w42.Part1 = p43
  7792. w42.C1 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
  7793. w43 = Instance.new("Weld", p43)
  7794. w43.Name = "Circle_Weld"
  7795. w43.Part0 = p43
  7796. w43.C0 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
  7797. w43.Part1 = p44
  7798. w43.C1 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7799. w44 = Instance.new("Weld", p44)
  7800. w44.Name = "Block_Weld"
  7801. w44.Part0 = p44
  7802. w44.C0 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7803. w44.Part1 = p45
  7804. w44.C1 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7805. w45 = Instance.new("Weld", p45)
  7806. w45.Name = "Block_Weld"
  7807. w45.Part0 = p45
  7808. w45.C0 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7809. w45.Part1 = p46
  7810. w45.C1 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7811. w46 = Instance.new("Weld", p46)
  7812. w46.Name = "Block_Weld"
  7813. w46.Part0 = p46
  7814. w46.C0 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7815. w46.Part1 = p47
  7816. w46.C1 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7817. w47 = Instance.new("Weld", p47)
  7818. w47.Name = "Block_Weld"
  7819. w47.Part0 = p47
  7820. w47.C0 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7821. w47.Part1 = p48
  7822. w47.C1 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7823. w48 = Instance.new("Weld", p48)
  7824. w48.Name = "Block_Weld"
  7825. w48.Part0 = p48
  7826. w48.C0 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7827. w48.Part1 = p49
  7828. w48.C1 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
  7829. w49 = Instance.new("Weld", p49)
  7830. w49.Name = "Block_Weld"
  7831. w49.Part0 = p49
  7832. w49.C0 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
  7833. w49.Part1 = p50
  7834. w49.C1 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
  7835. w50 = Instance.new("Weld", p50)
  7836. w50.Name = "Block_Weld"
  7837. w50.Part0 = p50
  7838. w50.C0 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
  7839. w50.Part1 = p51
  7840. w50.C1 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7841. w51 = Instance.new("Weld", p51)
  7842. w51.Name = "Block_Weld"
  7843. w51.Part0 = p51
  7844. w51.C0 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7845. w51.Part1 = p52
  7846. w51.C1 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7847. w52 = Instance.new("Weld", p52)
  7848. w52.Name = "Block_Weld"
  7849. w52.Part0 = p52
  7850. w52.C0 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7851. w52.Part1 = p53
  7852. w52.C1 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
  7853. w53 = Instance.new("Weld", p53)
  7854. w53.Name = "Circle_Weld"
  7855. w53.Part0 = p53
  7856. w53.C0 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
  7857. w53.Part1 = p54
  7858. w53.C1 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7859. w54 = Instance.new("Weld", p54)
  7860. w54.Name = "Block_Weld"
  7861. w54.Part0 = p54
  7862. w54.C0 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7863. w54.Part1 = p55
  7864. w54.C1 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7865. w55 = Instance.new("Weld", p55)
  7866. w55.Name = "Block_Weld"
  7867. w55.Part0 = p55
  7868. w55.C0 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7869. w55.Part1 = p56
  7870. w55.C1 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7871. w56 = Instance.new("Weld", p56)
  7872. w56.Name = "Block_Weld"
  7873. w56.Part0 = p56
  7874. w56.C0 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7875. w56.Part1 = p57
  7876. w56.C1 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7877. w57 = Instance.new("Weld", p57)
  7878. w57.Name = "Block_Weld"
  7879. w57.Part0 = p57
  7880. w57.C0 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7881. w57.Part1 = p58
  7882. w57.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7883. w58 = Instance.new("Weld", p58)
  7884. w58.Name = "Block_Weld"
  7885. w58.Part0 = p58
  7886. w58.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7887. w58.Part1 = p59
  7888. w58.C1 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7889. w59 = Instance.new("Weld", p59)
  7890. w59.Name = "Circle_Weld"
  7891. w59.Part0 = p59
  7892. w59.C0 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7893. w59.Part1 = p60
  7894. w59.C1 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7895. w60 = Instance.new("Weld", p60)
  7896. w60.Name = "Circle_Weld"
  7897. w60.Part0 = p60
  7898. w60.C0 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7899. w60.Part1 = p61
  7900. w60.C1 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7901. w61 = Instance.new("Weld", p61)
  7902. w61.Name = "Block_Weld"
  7903. w61.Part0 = p61
  7904. w61.C0 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7905. w61.Part1 = p62
  7906. w61.C1 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
  7907. w62 = Instance.new("Weld", p62)
  7908. w62.Name = "Block_Weld"
  7909. w62.Part0 = p62
  7910. w62.C0 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
  7911. w62.Part1 = p63
  7912. w62.C1 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7913. w63 = Instance.new("Weld", p63)
  7914. w63.Name = "Block_Weld"
  7915. w63.Part0 = p63
  7916. w63.C0 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7917. w63.Part1 = p64
  7918. w63.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7919. w64 = Instance.new("Weld", p64)
  7920. w64.Name = "Block_Weld"
  7921. w64.Part0 = p64
  7922. w64.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7923. w64.Part1 = p65
  7924. w64.C1 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7925. w65 = Instance.new("Weld", p65)
  7926. w65.Name = "Block_Weld"
  7927. w65.Part0 = p65
  7928. w65.C0 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7929. w65.Part1 = p66
  7930. w65.C1 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
  7931. w66 = Instance.new("Weld", p66)
  7932. w66.Name = "Block_Weld"
  7933. w66.Part0 = p66
  7934. w66.C0 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
  7935. w66.Part1 = p67
  7936. w66.C1 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7937. w67 = Instance.new("Weld", p67)
  7938. w67.Name = "Block_Weld"
  7939. w67.Part0 = p67
  7940. w67.C0 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7941. w67.Part1 = p68
  7942. w67.C1 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7943. w68 = Instance.new("Weld", p68)
  7944. w68.Name = "Block_Weld"
  7945. w68.Part0 = p68
  7946. w68.C0 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7947. w68.Part1 = p69
  7948. w68.C1 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7949. w69 = Instance.new("Weld", p69)
  7950. w69.Name = "Circle_Weld"
  7951. w69.Part0 = p69
  7952. w69.C0 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7953. w69.Part1 = p70
  7954. w69.C1 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7955. w70 = Instance.new("Weld", p70)
  7956. w70.Name = "Wedge_Weld"
  7957. w70.Part0 = p70
  7958. w70.C0 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7959. w70.Part1 = p71
  7960. w70.C1 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7961. w71 = Instance.new("Weld", p71)
  7962. w71.Name = "Wedge_Weld"
  7963. w71.Part0 = p71
  7964. w71.C0 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7965. w71.Part1 = p72
  7966. w71.C1 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
  7967. w72 = Instance.new("Weld", p72)
  7968. w72.Name = "Wedge_Weld"
  7969. w72.Part0 = p72
  7970. w72.C0 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
  7971. w72.Part1 = p73
  7972. w72.C1 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
  7973. w73 = Instance.new("Weld", p73)
  7974. w73.Name = "Wedge_Weld"
  7975. w73.Part0 = p73
  7976. w73.C0 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
  7977. w73.Part1 = p74
  7978. w73.C1 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
  7979. w74 = Instance.new("Weld", p74)
  7980. w74.Name = "Wedge_Weld"
  7981. w74.Part0 = p74
  7982. w74.C0 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
  7983. w74.Part1 = p75
  7984. w74.C1 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
  7985. w75 = Instance.new("Weld", p75)
  7986. w75.Name = "Wedge_Weld"
  7987. w75.Part0 = p75
  7988. w75.C0 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
  7989. w75.Part1 = p76
  7990. w75.C1 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7991. w76 = Instance.new("Weld", p76)
  7992. w76.Name = "Wedge_Weld"
  7993. w76.Part0 = p76
  7994. w76.C0 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7995. w76.Part1 = p77
  7996. w76.C1 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
  7997. w77 = Instance.new("Weld", p77)
  7998. w77.Name = "Wedge_Weld"
  7999. w77.Part0 = p77
  8000. w77.C0 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
  8001. w77.Part1 = p78
  8002. w77.C1 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  8003. w78 = Instance.new("Weld", p78)
  8004. w78.Name = "Wedge_Weld"
  8005. w78.Part0 = p78
  8006. w78.C0 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  8007. w78.Part1 = p79
  8008. w78.C1 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  8009. w79 = Instance.new("Weld", p79)
  8010. w79.Name = "Wedge_Weld"
  8011. w79.Part0 = p79
  8012. w79.C0 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  8013. w79.Part1 = p80
  8014. w79.C1 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
  8015. w80 = Instance.new("Weld", p80)
  8016. w80.Name = "Wedge_Weld"
  8017. w80.Part0 = p80
  8018. w80.C0 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
  8019. w80.Part1 = p81
  8020. w80.C1 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
  8021. w81 = Instance.new("Weld", p81)
  8022. w81.Name = "Wedge_Weld"
  8023. w81.Part0 = p81
  8024. w81.C0 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
  8025. w81.Part1 = p82
  8026. w81.C1 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
  8027. w82 = Instance.new("Weld", p82)
  8028. w82.Name = "Wedge_Weld"
  8029. w82.Part0 = p82
  8030. w82.C0 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
  8031. w82.Part1 = p83
  8032. w82.C1 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
  8033. w83 = Instance.new("Weld", p83)
  8034. w83.Name = "Wedge_Weld"
  8035. w83.Part0 = p83
  8036. w83.C0 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
  8037. w83.Part1 = p84
  8038. w83.C1 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
  8039. w84 = Instance.new("Weld", p84)
  8040. w84.Name = "Wedge_Weld"
  8041. w84.Part0 = p84
  8042. w84.C0 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
  8043. w84.Part1 = p85
  8044. w84.C1 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
  8045. w85 = Instance.new("Weld", p85)
  8046. w85.Name = "Wedge_Weld"
  8047. w85.Part0 = p85
  8048. w85.C0 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
  8049. w85.Part1 = p86
  8050. w85.C1 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
  8051. w86 = Instance.new("Weld", p86)
  8052. w86.Name = "Wedge_Weld"
  8053. w86.Part0 = p86
  8054. w86.C0 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
  8055. w86.Part1 = p87
  8056. w86.C1 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  8057. w87 = Instance.new("Weld", p87)
  8058. w87.Name = "Wedge_Weld"
  8059. w87.Part0 = p87
  8060. w87.C0 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  8061. w87.Part1 = p88
  8062. w87.C1 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  8063. w88 = Instance.new("Weld", p88)
  8064. w88.Name = "Wedge_Weld"
  8065. w88.Part0 = p88
  8066. w88.C0 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  8067. w88.Part1 = p89
  8068. w88.C1 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
  8069. w89 = Instance.new("Weld", p89)
  8070. w89.Name = "Wedge_Weld"
  8071. w89.Part0 = p89
  8072. w89.C0 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
  8073. w89.Part1 = p90
  8074. w89.C1 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
  8075. w90 = Instance.new("Weld", p90)
  8076. w90.Name = "Wedge_Weld"
  8077. w90.Part0 = p90
  8078. w90.C0 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
  8079. w90.Part1 = p91
  8080. w90.C1 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
  8081. w91 = Instance.new("Weld", p91)
  8082. w91.Name = "Wedge_Weld"
  8083. w91.Part0 = p91
  8084. w91.C0 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
  8085. w91.Part1 = p92
  8086. w91.C1 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
  8087. w92 = Instance.new("Weld", p92)
  8088. w92.Name = "Wedge_Weld"
  8089. w92.Part0 = p92
  8090. w92.C0 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
  8091. w92.Part1 = p93
  8092. w92.C1 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  8093. w93 = Instance.new("Weld", p93)
  8094. w93.Name = "Wedge_Weld"
  8095. w93.Part0 = p93
  8096. w93.C0 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  8097. w93.Part1 = p94
  8098. w93.C1 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
  8099. w94 = Instance.new("Weld", p94)
  8100. w94.Name = "Wedge_Weld"
  8101. w94.Part0 = p94
  8102. w94.C0 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
  8103. w94.Part1 = p95
  8104. w94.C1 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  8105. w95 = Instance.new("Weld", p95)
  8106. w95.Name = "Wedge_Weld"
  8107. w95.Part0 = p95
  8108. w95.C0 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  8109. w95.Part1 = p96
  8110. w95.C1 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
  8111. w96 = Instance.new("Weld", p96)
  8112. w96.Name = "Wedge_Weld"
  8113. w96.Part0 = p96
  8114. w96.C0 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
  8115. w96.Part1 = p97
  8116. w96.C1 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
  8117. w97 = Instance.new("Weld", p97)
  8118. w97.Name = "Wedge_Weld"
  8119. w97.Part0 = p97
  8120. w97.C0 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
  8121. w97.Part1 = p98
  8122. w97.C1 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  8123. w98 = Instance.new("Weld", p98)
  8124. w98.Name = "Wedge_Weld"
  8125. w98.Part0 = p98
  8126. w98.C0 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  8127. w98.Part1 = p99
  8128. w98.C1 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
  8129. w99 = Instance.new("Weld", p99)
  8130. w99.Name = "Wedge_Weld"
  8131. w99.Part0 = p99
  8132. w99.C0 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
  8133. w99.Part1 = p100
  8134. w99.C1 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
  8135. w100 = Instance.new("Weld", p100)
  8136. w100.Name = "Wedge_Weld"
  8137. w100.Part0 = p100
  8138. w100.C0 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
  8139. w100.Part1 = p101
  8140. w100.C1 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  8141. w101 = Instance.new("Weld", p101)
  8142. w101.Name = "Wedge_Weld"
  8143. w101.Part0 = p101
  8144. w101.C0 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  8145. w101.Part1 = p102
  8146. w101.C1 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  8147. w102 = Instance.new("Weld", p102)
  8148. w102.Name = "Wedge_Weld"
  8149. w102.Part0 = p102
  8150. w102.C0 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  8151. w102.Part1 = p103
  8152. w102.C1 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
  8153. w103 = Instance.new("Weld", p103)
  8154. w103.Name = "Wedge_Weld"
  8155. w103.Part0 = p103
  8156. w103.C0 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
  8157. w103.Part1 = p104
  8158. w103.C1 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  8159. w104 = Instance.new("Weld", p104)
  8160. w104.Name = "Wedge_Weld"
  8161. w104.Part0 = p104
  8162. w104.C0 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  8163. w104.Part1 = p105
  8164. w104.C1 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  8165. w105 = Instance.new("Weld", p105)
  8166. w105.Name = "Wedge_Weld"
  8167. w105.Part0 = p105
  8168. w105.C0 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  8169. w105.Part1 = p106
  8170. w105.C1 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  8171. w106 = Instance.new("Weld", p106)
  8172. w106.Name = "Wedge_Weld"
  8173. w106.Part0 = p106
  8174. w106.C0 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  8175. w106.Part1 = p107
  8176. w106.C1 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  8177. w107 = Instance.new("Weld", p107)
  8178. w107.Name = "Wedge_Weld"
  8179. w107.Part0 = p107
  8180. w107.C0 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  8181. w107.Part1 = p108
  8182. w107.C1 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
  8183. w108 = Instance.new("Weld", p108)
  8184. w108.Name = "Wedge_Weld"
  8185. w108.Part0 = p108
  8186. w108.C0 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
  8187. w108.Part1 = p109
  8188. w108.C1 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
  8189. w109 = Instance.new("Weld", p109)
  8190. w109.Name = "Wedge_Weld"
  8191. w109.Part0 = p109
  8192. w109.C0 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
  8193. w109.Part1 = p110
  8194. w109.C1 = CFrame.new(2.70390519e-005, -0.43863076, -0.44942081, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  8195. w110 = Instance.new("Weld", p110)
  8196. w110.Name = "Hitbox_Weld"
  8197. w110.Part0 = p110
  8198. w110.C0 = CFrame.new(2.7, -0.44, -0.6, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  8199. w110.Part1 = p111
  8200. w110.C1 = CFrame.new(-2.7, -0.68, 0.61, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  8201. m8.Parent = rarm
  8202. m8:MakeJoints()
  8203. ----------------------------------------------------
  8204. local cor8 = Instance.new("Part", rarm.Zyrodoxa)
  8205. cor8.Name = "Thingy"
  8206. cor8.Locked = true
  8207. cor8.BottomSurface = 0
  8208. cor8.CanCollide = false
  8209. cor8.Size = Vector3.new(1, 1, 1)
  8210. cor8.Transparency = 1
  8211. cor8.TopSurface = 0
  8212. corw8 = Instance.new("Weld", cor8)
  8213. corw8.Part0 = rarm
  8214. corw8.Part1 = cor8
  8215. corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
  8216. corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  8217. weld8 = Instance.new("Weld", rarm.Zyrodoxa)
  8218. weld8.Part0 = cor8
  8219. weld8.Part1 = rarm.Zyrodoxa.Handle
  8220. weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  8221. Amulite = Instance.new("PointLight",m7.Center)
  8222. Amulite.Brightness = 0
  8223. Amulite.Color = Color3.new(0,1,0)
  8224. ----------------------------------------------------
  8225. models = {m,m2,m3,m4,m5,m6,m7,m8}
  8226. parts = {}
  8227. Stepped:connect(function()
  8228. for i,v in pairs(models) do
  8229. for _, a in pairs(v:GetChildren()) do
  8230. if v:IsA("Part") and v.Name ~= "Thingy" then
  8231. table.insert(parts, a)
  8232. for i,v in pairs(parts) do
  8233. v.CanCollide = false
  8234. end
  8235. end
  8236. end
  8237. end
  8238. end)
  8239. ----------------------------------------------------
  8240. local animpose = "Idle1"
  8241. local lastanimpose = "Idle1"
  8242. local grab = false
  8243. local Smooth = 1
  8244. local sine = 0
  8245. local change = 1
  8246. local val = 0
  8247. local ffing = false
  8248. ----------------------------------------------------
  8249. --[[local hitbox = rarm.Zyrodoxa.Hitbox--Zyrodoxa is the name of the dagger k
  8250.  
  8251. function FindHumanoids()
  8252. local function c_region(Position, Size)
  8253. local SizeOffset = Size/2
  8254. local Point1 = Position - SizeOffset
  8255. local Point2 = Position + SizeOffset
  8256. local a = Instance.new("Part", workspace)
  8257. a.Anchored = true
  8258. a.Size = Size
  8259. a.Position = Position
  8260. print("Hey!, I'm making a part!")
  8261. return Region3.new(Point1, Point2)
  8262. end
  8263.  
  8264. local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  8265. local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  8266. local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  8267. local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  8268.  
  8269. local regions = {a, b, c, d}
  8270.  
  8271. local found_humanoids = {}
  8272. local already_found = {char.Name}
  8273.  
  8274. for _, region in pairs(regions) do
  8275. for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
  8276. print(part, part.Parent, part.Name) ---nope
  8277. if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  8278. local humanoid = part.Parent:FindFirstChild("Humanoid")
  8279. local name = humanoid.Parent.Name
  8280. local exists = false
  8281. for _, n in pairs(already_found) do
  8282. if n == name then
  8283. exists = true
  8284. end
  8285. end
  8286. if not exists then
  8287. table.insert(already_found, name)
  8288. table.insert(found_humanoids, humanoid)
  8289. end
  8290. elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  8291. local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  8292. local name = humanoid.Parent.Parent.Name
  8293. local exists = false
  8294. for _, n in pairs(already_found) do
  8295. if n == name then
  8296. exists = true
  8297. end
  8298. end
  8299. if not exists then
  8300. table.insert(already_found, name)
  8301. table.insert(found_humanoids, humanoid)
  8302. end
  8303. end
  8304. end
  8305. end
  8306. return found_humanoids
  8307. end
  8308.  
  8309. local humanoids = FindHumanoids()
  8310. if #humanoids == 0 then
  8311. for i, v in pairs(humanoids) do
  8312. print(v.Parent.Name)
  8313. if Debounces.Slashing == true then
  8314. v:TakeDamage(math.random(10,20) * math.random(1,3)) --max 60 damage?
  8315. elseif Debounces.Slashing == false then
  8316. wait()
  8317. end
  8318. end
  8319. wait(0.3)
  8320. end]]--
  8321. ----------------------------------------------------
  8322. --[[mouse.KeyDown:connect(function(key)
  8323. if key == "f" then
  8324. if Debounces.CanAttack == true then
  8325. Debounces.CanAttack = false
  8326. Debounces.NoIdl = true
  8327. Debounces.on = true
  8328. for i = 1, 20 do
  8329. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8330. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8331. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
  8332. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  8333. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  8334. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  8335. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  8336. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6,0.6,-0.2)*CFrame.Angles(math.rad(8),math.rad(22),math.rad(15)), 0.8)
  8337. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8338. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6,0.6,0.2)*CFrame.Angles(math.rad(-8),math.rad(12),math.rad(-12)), 0.8)
  8339. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8340. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1)*CFrame.Angles(math.rad(-15),math.rad(0),math.rad(0)), 0.5)
  8341. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.5)
  8342. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
  8343. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
  8344. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.1)
  8345. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(5)), 0.1)
  8346. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(3), math.rad(0), math.rad(0)), 0.1)
  8347. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-5)), 0.1)
  8348. if Debounces.on == false then
  8349. break
  8350. end
  8351. fat.Event:wait()
  8352. end
  8353. end
  8354. end
  8355. end)]]--
  8356. ----------------------------------------------------
  8357. mod4 = Instance.new("Model",char)
  8358.  
  8359. ptez = {0.7, 0.8, 0.9, 1}
  8360.  
  8361. function FindNearestTorso(Position,Distance,SinglePlayer)
  8362. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  8363. local List = {}
  8364. for i,v in pairs(workspace:GetChildren())do
  8365. if v:IsA("Model")then
  8366. if v:findFirstChild("Torso")then
  8367. if v ~= char then
  8368. if(v.Torso.Position -Position).magnitude <= Distance then
  8369. table.insert(List,v)
  8370. end
  8371. end
  8372. end
  8373. end
  8374. end
  8375. return List
  8376. end
  8377.  
  8378. function Slam()
  8379. local part=Instance.new('Part',mod4)
  8380. part.Anchored=true
  8381. part.CanCollide=false
  8382. part.FormFactor='Custom'
  8383. part.Size=Vector3.new(.2,.2,.2)
  8384. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  8385. part.Transparency=.7
  8386. part.BrickColor=BrickColor.new('Really black')
  8387. mesh=Instance.new('SpecialMesh',part)
  8388. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  8389. mesh.Scale=Vector3.new(3,3,3)
  8390. local part2=Instance.new('Part',mod4)
  8391. part2.Anchored=true
  8392. part2.CanCollide=false
  8393. part2.FormFactor='Custom'
  8394. part2.Size=Vector3.new(.2,.2,.2)
  8395. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  8396. part2.Transparency=.7
  8397. part2.BrickColor=BrickColor.new('Lime green')
  8398. mesh2=Instance.new('SpecialMesh',part2)
  8399. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  8400. mesh2.Scale=Vector3.new(3,1.5,3)
  8401. x = Instance.new("Sound",larm)
  8402. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  8403. x.Pitch = ptez[math.random(1,#ptez)]
  8404. x.Volume = 1
  8405. wait(.1)
  8406. x1 = Instance.new("Sound",larm)
  8407. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  8408. x1.Pitch = ptez[math.random(1,#ptez)]
  8409. x1.Volume = 1
  8410. wait(.1)
  8411. x:Play()
  8412. x1:Play()
  8413. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  8414. if v:FindFirstChild('Humanoid') then
  8415. v.Humanoid:TakeDamage(math.random(30,45))
  8416. end
  8417. end
  8418. coroutine.resume(coroutine.create(function()
  8419. for i=0,0.62,0.13 do
  8420. wait()
  8421. part.CFrame=part.CFrame
  8422. part.Transparency=i
  8423. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  8424. part2.CFrame=part2.CFrame
  8425. part2.Transparency=i
  8426. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  8427. end
  8428. part.Parent=nil
  8429. part2.Parent=nil
  8430. x:Destroy()
  8431. end))
  8432. end
  8433. ----------------------------------------------------
  8434. wPart = function(x,y,z,color,tr,cc,an,parent)
  8435. local wp = Instance.new('WedgePart',parent or Weapon)
  8436. wp.formFactor = 'Custom'
  8437. wp.Size = Vector3.new(x,y,z)
  8438. wp.BrickColor = BrickColor.new(color)
  8439. wp.CanCollide = cc
  8440. wp.Transparency = tr
  8441. wp.Anchored = an
  8442. wp.TopSurface,wp.BottomSurface = 0,0
  8443. return wp
  8444. end
  8445.  
  8446. Mesh = function(par,num,x,y,z)
  8447. local msh = _
  8448. if num == 1 then
  8449. msh = Instance.new("CylinderMesh",par)
  8450. elseif num == 2 then
  8451. msh = Instance.new("SpecialMesh",par)
  8452. msh.MeshType = 3
  8453. elseif num == 3 then
  8454. msh = Instance.new("BlockMesh",par)
  8455. elseif num == 4 then
  8456. msh = Instance.new("SpecialMesh",par)
  8457. msh.MeshType = "Torso"
  8458. elseif type(num) == 'string' then
  8459. msh = Instance.new("SpecialMesh",par)
  8460. msh.MeshId = num
  8461. end
  8462. msh.Scale = Vector3.new(x,y,z)
  8463. return msh
  8464. end
  8465.  
  8466. local function CFrameFromTopBack(at, top, back)
  8467. local right = top:Cross(back)
  8468. return CFrame.new(at.x, at.y, at.z,
  8469. right.x, top.x, back.x,
  8470. right.y, top.y, back.y,
  8471. right.z, top.z, back.z)
  8472. end
  8473.  
  8474. function Triangle(a, b, c)
  8475. local edg1 = (c-a):Dot((b-a).unit)
  8476. local edg2 = (a-b):Dot((c-b).unit)
  8477. local edg3 = (b-c):Dot((a-c).unit)
  8478. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  8479. a, b, c = a, b, c
  8480. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  8481. a, b, c = b, c, a
  8482. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  8483. a, b, c = c, a, b
  8484. else
  8485. print("unreachable")
  8486. end
  8487. local len1 = (c-a):Dot((b-a).unit)
  8488. local len2 = (b-a).magnitude - len1
  8489. local width = (a + (b-a).unit*len1 - c).magnitude
  8490. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  8491. local list = {}
  8492. if len1 > 0.01 then
  8493. local w1 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  8494. local sz = Vector3.new(0.2, width, len1)
  8495. w1.Size = sz
  8496. local sp = Mesh(w1,2,0,0,0)
  8497. sp.MeshType='Wedge'
  8498. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  8499. w1:BreakJoints()
  8500. w1.Anchored = true
  8501. w1.Transparency = 0.7
  8502. Spawn(function()
  8503. for i=0,1,0.1 do
  8504. fat.Event:wait()
  8505. w1.Transparency=w1.Transparency+0.03
  8506. end
  8507. end)
  8508. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  8509. table.insert(list,w1)
  8510. end
  8511. if len2 > 0.01 then
  8512. local w2 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  8513. local sz = Vector3.new(0.2, width, len2)
  8514. w2.Size = sz
  8515. local sp = Mesh(w2,2,0,0,0)
  8516. sp.MeshType='Wedge'
  8517. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  8518. w2:BreakJoints()
  8519. w2.Anchored = true
  8520. w2.Transparency = 0.7
  8521. Spawn(function()
  8522. for i=0,1,0.1 do
  8523. fat.Event:wait()
  8524. w2.Transparency=w2.Transparency+0.03
  8525. end
  8526. end)
  8527. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  8528. table.insert(list,w2)
  8529. end
  8530. return unpack(list)
  8531. end
  8532.  
  8533. function trail(p,t,h)
  8534. Spawn(function()
  8535. local blcf = p.CFrame
  8536. local scfr = blcf
  8537. for i=1,t do
  8538. local blcf = p.CFrame
  8539. if scfr and (p.Position-scfr.p).magnitude > .1 then
  8540. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  8541. if a then game.Debris:AddItem(a,1) end
  8542. if b then game.Debris:AddItem(b,1) end
  8543. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  8544. if a then game.Debris:AddItem(a,1) end
  8545. if b then game.Debris:AddItem(b,1) end
  8546. scfr = blcf
  8547. elseif not scfr then
  8548. scfr = blcf
  8549. end
  8550. fat.Event:wait()
  8551. end
  8552. scfr=nil
  8553. end)
  8554. end
  8555. --trail(char.Sword.Blade,1e1000,5)
  8556. ----------------------------------------------------
  8557. function Dmg()
  8558. local partofdeath = rarm.Zyrodoxa.Hitbox
  8559. local function CreateRegion3FromLocAndSize(Position, Size)
  8560. local SizeOffset = Size/2
  8561. local Point1 = Position - SizeOffset
  8562. local Point2 = Position + SizeOffset
  8563. return Region3.new(Point1, Point2)
  8564. end
  8565. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  8566. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  8567. Spawn(function()
  8568. if Debounces.Slashing == true and Debounces.Slashed == false then
  8569. Debounces.Slashed = true
  8570. ypcall(function()
  8571. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  8572. humanoid:TakeDamage(math.random(10,18))
  8573. end)
  8574. wait(.4)
  8575. Debounces.Slashed = false
  8576. end
  8577. end)
  8578. end
  8579. end
  8580. ----------------------------------------------------
  8581. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  8582. ptz = {0.7, 0.8, 0.9, 1}
  8583. idz = {"161006212", "161006195"}
  8584. function attackone()
  8585. for i = 1, 13 do
  8586. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.3, -1, -0.3) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  8587. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
  8588. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2, 0.5, -0.3)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(-10)), 0.3)
  8589. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.3)
  8590. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.4)*CFrame.Angles(math.rad(-30),math.rad(0),math.rad(-10)), 0.5)
  8591. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(-40),math.rad(0)), 0.5)
  8592. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
  8593. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
  8594. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
  8595. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(1, -1, 0) * CFrame.Angles(math.rad(18), math.rad(0), math.rad(15)), 0.7)
  8596. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.4, -1.3, 0) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  8597. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(15)), 0.5)
  8598. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  8599. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.5)
  8600. if Debounces.on == false then
  8601. break
  8602. end
  8603. fat.Event:wait()
  8604. end
  8605. trail(rarm.Zyrodoxa.Hitbox,20,2)
  8606. Debounces.Slashing = true
  8607. wait(0.2)
  8608. --[[z = Instance.new("Sound", hed)
  8609. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  8610. z.Pitch = ptz[math.random(1,#ptz)]
  8611. z.Volume = 1
  8612. wait(.01)
  8613. z:Play()]]--
  8614. for i = 1, 14 do
  8615. Dmg()
  8616. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  8617. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
  8618. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0.4)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(100)), 0.4)
  8619. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.4)
  8620. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, -0.3)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(-20)), 0.4)
  8621. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.4)
  8622. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
  8623. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8624. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
  8625. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(-1, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8626. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  8627. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-14), math.rad(0), math.rad(15)), 0.5)
  8628. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  8629. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(-10)), 0.5)
  8630. if Debounces.on == false then break end
  8631. rs:wait()
  8632. end
  8633. Debounces.Slashing = false
  8634. end
  8635. function attacktwo()
  8636. Debounces.Slashing = true
  8637. for i = 1, 14 do
  8638. Dmg()
  8639. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
  8640. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
  8641. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(80)), 0.7)
  8642. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8643. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad (-70)), 0.5)
  8644. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  8645. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-90), math.rad(0)), 0.5)
  8646. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8647. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -2) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
  8648. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8649. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
  8650. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8651. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
  8652. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8653. if Debounces.on == false then
  8654. break
  8655. end
  8656. rs:wait()
  8657. end
  8658. end
  8659. ----------------------------------------------------
  8660. ComboNum = 0
  8661. mouse.Button1Down:connect(function()
  8662. if Debounces.CanAttack == true then
  8663. Debounces.CanAttack = false
  8664. Debounces.NoIdl = true
  8665. Debounces.on = true
  8666. if ComboNum == 0 then
  8667. attackone()
  8668. elseif ComboNum == 1 then
  8669. attacktwo()
  8670. --[[elseif ComboNum == 2 then
  8671. attackthree()]]--
  8672. end
  8673. ComboNum = ComboNum + 1
  8674. Debounces.CanAttack = true
  8675. Debounces.on = false
  8676. wait(.5)
  8677. if Debounces.CanAttack == true then
  8678. ComboNum = 0
  8679. Debounces.NoIdl = false
  8680. end
  8681. end
  8682. end)
  8683. ----------------------------------------------------
  8684. definition = 5
  8685. bc = {}
  8686. bezierparts = {}
  8687. function NoOutline(Part)
  8688. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  8689. end
  8690. function draw(p,d)
  8691. for i=1,d do
  8692. local t = i/d
  8693. bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
  8694. end
  8695. for i=1,d do
  8696. local bcs = Instance.new("Part",char)
  8697. NoOutline(bcs)
  8698. bcs.Anchored = true
  8699. bcs.CanCollide = false
  8700. bcs.Material = "Neon"
  8701. bcs.BrickColor = BrickColor.new("Lime green")
  8702. bcs.Size = Vector3.new(1,1,1)
  8703. bcs.Shape = Enum.PartType.Ball
  8704. bcs.CFrame = CFrame.new(bc[i])
  8705. local bcp = Instance.new("Part",char)
  8706. NoOutline(bcp)
  8707. bcp.Anchored = true
  8708. bcp.CanCollide = false
  8709. bcp.Material = "Neon"
  8710. bcp.BrickColor = BrickColor.new("Lime green")
  8711. local cm = Instance.new("CylinderMesh")
  8712. cm.Parent = bcp
  8713. if i ~= 1 then
  8714. bcp.CFrame = CFrame.new(bc[i]:Lerp(bc[i-1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8715. bcp.Size = Vector3.new(1,(bc[i]-bc[i-1]).magnitude,1)
  8716. else
  8717. bcp.CFrame = CFrame.new(bc[i]:Lerp(p[1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8718. bcp.Size = Vector3.new(1,(bc[i]-p[1]).magnitude,1)
  8719. end
  8720. table.insert(bezierparts, bcs)
  8721. table.insert(bezierparts, bcp)
  8722. end
  8723. Spawn(function() fat.Event:wait()
  8724. for i,v in pairs(bezierparts) do
  8725. v.Transparency = 1
  8726. end
  8727. end)
  8728. end
  8729. --local points = {larm.Position,rarn.Position,invisipart.Position}
  8730. --draw(points,definition)
  8731. mouse.KeyDown:connect(function(key)
  8732. if key == "f" then
  8733. if Debounces.CanAttack == true then
  8734. Debounces.CanAttack = false
  8735. Debounces.NoIdl = true
  8736. Debounces.on = true
  8737. for i = 1, 20 do
  8738. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  8739. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8740. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  8741. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8742. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
  8743. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8744. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  8745. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8746. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8747. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8748. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8749. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8750. if Debounces.on == false then
  8751. break
  8752. end
  8753. fat.Event:wait()
  8754. end
  8755. rpart = Instance.new("Part",rarm)
  8756. NoOutline(rpart)
  8757. rpart.Anchored = false
  8758. rpart.Size = Vector3.new(1,1,1)
  8759. rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8760. rpart.Transparency = 1
  8761. newWeld(rarm, rpart, 0, 0, 0)
  8762. rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8763. lpart = Instance.new("Part",larm)
  8764. NoOutline(lpart)
  8765. lpart.Anchored = false
  8766. lpart.Size = Vector3.new(1,1,1)
  8767. lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8768. lpart.Transparency = 1
  8769. newWeld(larm, lpart, 0, 0, 0)
  8770. lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8771. invisipart = Instance.new("Part",torso)
  8772. NoOutline(invisipart)
  8773. invisipart.Anchored = false
  8774. invisipart.Size = Vector3.new(1,1,1)
  8775. invisipart.Transparency = 1
  8776. invisipart.CFrame = torso.CFrame
  8777. newWeld(torso, invisipart, 0, 0, 0)
  8778. invisipart.Weld.C1 = CFrame.new(0, 0, 6)
  8779. table.insert(bezierparts, rpart)
  8780. table.insert(bezierparts, lpart)
  8781. table.insert(bezierparts, invisipart)
  8782. for i = 1, 40 do
  8783. local points = {lpart.Position,invisipart.Position,rpart.Position}
  8784. draw(points,definition)
  8785. --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
  8786. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.1)
  8787. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8788. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-90)), 0.1)
  8789. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8790. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
  8791. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8792. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  8793. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8794. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8795. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8796. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8797. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8798. if Debounces.on == false then
  8799. break
  8800. end
  8801. fat.Event:wait()
  8802. end
  8803. for i,v in pairs(bezierparts) do
  8804. v:Destroy()
  8805. end
  8806. --draw(points,definition)
  8807. if Debounces.CanAttack == false then
  8808. Debounces.CanAttack = true
  8809. Debounces.NoIdl = false
  8810. Debounces.on = false
  8811. end
  8812. end
  8813. end
  8814. end)
  8815. ----------------------------------------------------
  8816. ----------------------------------------------------
  8817.  
  8818. ---------------------------------------------------------------------------------------
  8819. ----------------------------------------------------
  8820. mouse.KeyDown:connect(function(key)
  8821. if key == "b" then
  8822. hum.WalkSpeed = 0.01
  8823. if Debounces.CanAttack == true then
  8824. Debounces.CanAttack = false
  8825. Debounces.NoIdl = true
  8826. Debounces.on = true
  8827. for i = 1,20 do
  8828. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  8829. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  8830. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  8831. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  8832. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  8833. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  8834.  
  8835. if Debounces.on == false then break end
  8836. wait()
  8837. end
  8838. wait(1)
  8839. v = Instance.new("Sound")
  8840. v.SoundId = "rbxassetid://435742675"
  8841. v.Parent = char
  8842. v.Looped = false
  8843. v.Pitch = 1
  8844. v.Volume = 16
  8845. wait(.01)
  8846. v:Play()
  8847.  
  8848. if Daytime == true then
  8849. Daytime = false
  8850. l.TimeOfDay = 24
  8851. else
  8852. Daytime = true
  8853. l.TimeOfDay = 12
  8854. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  8855. end
  8856.  
  8857. local Shockwave = function()
  8858. local rng1 = Instance.new("Part", char)
  8859. rng1.Anchored = true
  8860. rng1.BrickColor = BrickColor.new("Really black")
  8861. rng1.CanCollide = false
  8862. rng1.FormFactor = 3
  8863. rng1.Name = "Ring"
  8864. rng1.Size = Vector3.new(1, 1, 1)
  8865. rng1.Transparency = 0.35
  8866. rng1.TopSurface = 0
  8867. rng1.BottomSurface = 0
  8868. local rngm1 = Instance.new("SpecialMesh", rng)
  8869. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  8870. rngm1.Scale = Vector3.new(10, 10, 1)
  8871. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  8872. local Wave = Instance.new("Part", game.Workspace--[[?]])
  8873. Wave.Name = "Shockwave"
  8874. Wave.BrickColor = BrickColor.new("Really black")
  8875. Wave.Size = Vector3.new(1, 1, 1)
  8876. Wave.Shape = "Ball"
  8877. Wave.CanCollide = false
  8878. Wave.Anchored = true
  8879. Wave.TopSurface = 0
  8880. Wave.BottomSurface = 0
  8881.  
  8882. msh=Instance.new('SpecialMesh',pt)
  8883. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  8884. msh.Scale=Vector3.new(8,4,8)
  8885.  
  8886. Wave.Touched:connect(function(hit)
  8887. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  8888. local Occlude = true
  8889. local NotOccludes = {
  8890. char.Name;
  8891. "Wings";
  8892. "Scythe";
  8893. "Thingy";
  8894. "Thingy2"; -- put all of the names in a table pls
  8895. }
  8896. for i,v in pairs(NotOccludes) do
  8897. if hit.Parent.Name == v then
  8898. Occlude = false
  8899. end
  8900. end
  8901. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  8902. if Occlude then
  8903. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  8904. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  8905. end
  8906. end
  8907. end)
  8908.  
  8909. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  8910.  
  8911. coroutine.wrap(function()
  8912. for i = 1, 20, 0.2 do
  8913. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  8914. rng1.Transparency = i/20
  8915. wait()
  8916. end
  8917. wait()
  8918. rng1:Destroy()
  8919. end)()
  8920.  
  8921. Delay(0, function()
  8922.  
  8923. if Daytime == false then
  8924. for i = 1, 50, 1 do
  8925. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  8926. Wave.CFrame = char.Torso.CFrame
  8927. local t = i / 50
  8928. Wave.Transparency = t
  8929. wait()
  8930. end
  8931. else
  8932. for i = 1, 50, 1 do
  8933. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  8934. Wave.CFrame = char.Torso.CFrame
  8935. local t = i / 50
  8936. Wave.Transparency = t
  8937. wait()
  8938. end
  8939. end
  8940. Wave:Destroy()
  8941. end)
  8942. Delay(0, function()
  8943. while wait() do
  8944. if Wave ~= nil then
  8945. Wave.CFrame = char.Torso.CFrame
  8946. else
  8947. break
  8948. end
  8949. end
  8950. end)
  8951. end
  8952. Shockwave()
  8953.  
  8954.  
  8955. for i = 1, 15 do
  8956. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  8957. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  8958. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  8959. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  8960. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  8961. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  8962. if Debounces.on == false then break end
  8963. wait()
  8964. end
  8965. for i = 1, 15 do
  8966. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  8967. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  8968. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  8969. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  8970. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  8971. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  8972. if Debounces.on == false then break end
  8973. wait()
  8974. end
  8975. for i = 1, 15 do
  8976. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  8977. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  8978. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  8979. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  8980. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  8981. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  8982. if Debounces.on == false then break end
  8983. wait()
  8984. end
  8985. for i = 1, 15 do
  8986. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  8987. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  8988. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  8989. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  8990. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  8991. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  8992. if Debounces.on == false then break end
  8993. wait()
  8994. end
  8995. for i = 1, 15 do
  8996. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  8997. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  8998. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  8999. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  9000. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  9001. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9002. if Debounces.on == false then break end
  9003. wait()
  9004. end
  9005. for i = 1, 15 do
  9006. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  9007. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  9008. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  9009. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  9010. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  9011. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.6, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  9012. if Debounces.on == false then break end
  9013. wait()
  9014. end
  9015. wait(1.4)
  9016. Debounces.NoIdl = false
  9017. hum.WalkSpeed = 16
  9018. Debounces.on = false
  9019. wait()
  9020. if Debounces.CanAttack == false then
  9021. Debounces.CanAttack = true
  9022. v:Destroy()
  9023. end
  9024. end
  9025. end
  9026. end)
  9027. ------------------------------------------
  9028.  
  9029. -------------------------------------------------
  9030. Grab = false
  9031. mouse.KeyDown:connect(function(key)
  9032. if key == "z" then
  9033. Debounces.on = true
  9034. Debounces.NoIdl = true
  9035. Debounces.ks = true
  9036. if Grab == false then
  9037. gp = nil
  9038. for i = 1, 20 do
  9039. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  9040. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9041. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-80)), 0.2)
  9042. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9043. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
  9044. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9045. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
  9046. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9047. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  9048. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9049. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  9050. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9051. if Debounces.on == false then break end
  9052. fat.Event:wait()
  9053. end
  9054. con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
  9055. ht = hit.Parent
  9056. for i,v in pairs(ht:GetChildren()) do
  9057. if v:IsA("Part") then
  9058. v.CanCollide = false
  9059. v.CustomPhysicalProperties = PhysicalProperties.new(0.001,0.001,0.001,0.001,0.001)
  9060. end
  9061. end
  9062. hum1=ht:FindFirstChild('Humanoid')
  9063. if hum1 ~= nil then
  9064. if Debounces.ks==true then
  9065. z = Instance.new("Sound",hed)
  9066. z.SoundId = "rbxassetid://169380525"
  9067. z.Volume = 1
  9068. z:Play()
  9069. Debounces.ks=false
  9070. end
  9071. hum1.PlatformStand=true
  9072. hum1:ChangeState'Physics'
  9073. gp = ht
  9074. Grab = true
  9075. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
  9076. asd.Parent = larm
  9077. asd.Name = "asd"
  9078. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
  9079. stanceToggle = "Grabbed"
  9080. --[[elseif hum1 == nil then
  9081. con1:disconnect()
  9082. wait() return]]--
  9083. end
  9084. end)
  9085. for i = 1, 20 do
  9086. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  9087. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9088. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.65,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  9089. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9090. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
  9091. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9092. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  9093. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9094. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  9095. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9096. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  9097. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9098. if Debounces.on == false then break end
  9099. fat.Event:wait()
  9100. end
  9101. con1:disconnect()
  9102. Debounces.on = false
  9103. Debounces.NoIdl = false
  9104. elseif Grab == true then
  9105. Grab = false
  9106. --[[for i = 1, 16 do
  9107. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(60)), 0.3)
  9108. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.5)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-60)), 0.3)
  9109. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
  9110. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  9111. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  9112. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  9113. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
  9114. if Debounces.on == false then end
  9115. rs:wait()
  9116. end]]--
  9117. for i = 1, 16 do
  9118. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.3)
  9119. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.5)
  9120. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(140),math.rad(0),math.rad(0)), 0.3)
  9121. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(60)), 0.5)
  9122. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
  9123. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9124. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
  9125. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9126. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(-20)), 0.3)
  9127. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  9128. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  9129. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9130. if Debounces.on == false then end
  9131. rs:wait()
  9132. end
  9133. for i = 1, 12 do
  9134. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.6)
  9135. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9136. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.3,-0.1)*CFrame.Angles(math.rad(45),math.rad(0),math.rad(-32)), 0.6)
  9137. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9138. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(40), math.rad(14)),0.6)
  9139. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9140. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(0)), 0.6)
  9141. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.5)
  9142. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
  9143. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  9144. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.4, .2, -0.8) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.6)
  9145. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(20), math.rad(0)), 0.4)
  9146. if Debounces.on == false then end
  9147. rs:wait()
  9148. end
  9149. Slam()
  9150. if gp ~= nil then
  9151. for i,v in pairs(larm:GetChildren()) do
  9152. if v.Name == "asd" and v:IsA("Weld") then
  9153. v:Remove()
  9154. end
  9155. if v:IsA("Part") then
  9156. v.CanCollide = true
  9157. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  9158. end
  9159. end
  9160. end
  9161. stanceToggle = "Idle1"
  9162. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  9163. bv.maxForce = Vector3.new(400000, 400000, 400000)
  9164. bv.P = 125000
  9165. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  9166. ht=nil
  9167. Debounces.on = false
  9168. Debounces.NoIdl = false
  9169. elseif ht == nil then wait()
  9170. Grab = false
  9171. Debounces.on = false
  9172. Debounces.NoIdl = false
  9173. end
  9174. end
  9175. end)
  9176. ----------------------------------------------------
  9177. -------------------------------------------------------------------------------------------------
  9178.  
  9179. ----------------------------------------------------
  9180.  
  9181.  
  9182. ----------------------------------------------------
  9183. ----------------------------------------------------
  9184. ------------------------------------------------
  9185. pts = {4, 4.2, 4.4, 4.6, 4.8, 5, 5.2, 5.4}
  9186. mouse.KeyDown:connect(function(key)
  9187. if key == "e" then
  9188. if Debounces.CanAttack == true then
  9189. Debounces.CanAttack = false
  9190. Debounces.NoIdl = true
  9191. Debounces.on = true
  9192. Debounces.ks = true
  9193. larm.Touched:connect(function(ht)
  9194. hit = ht.Parent
  9195. if ht and hit:IsA("Model") then
  9196. if hit:FindFirstChild("Humanoid") then
  9197. if hit.Name ~= p.Name then
  9198. if Debounces.Slapping == true and Debounces.Slapped == false then
  9199. Debounces.Slapped = true
  9200. if Debounces.ks==true then
  9201. z = Instance.new("Sound",hed)
  9202. z.SoundId = "rbxassetid://169380525"
  9203. z.Volume = 1
  9204. z:Play()
  9205. z1 = Instance.new("Sound",char)
  9206. z1.SoundId = "rbxassetid://261010715"
  9207. z1.Pitch = pts[math.random(1,#pts)]
  9208. z1.Volume = 1
  9209. z2 = Instance.new("Sound",char)
  9210. z2.SoundId = "rbxassetid://261010715"
  9211. z2.Pitch = z1.Pitch
  9212. z2.Volume = 1
  9213. z3 = Instance.new("Sound",char)
  9214. z3.SoundId = "rbxassetid://261010715"
  9215. z3.Pitch = z1.Pitch
  9216. z3.Volume = 1
  9217. if Profanity == true then
  9218. z1:Play()
  9219. z2:Play()
  9220. z3:Play()
  9221. else end
  9222. Debounces.ks=false
  9223. end
  9224. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  9225. hit:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 90
  9226. wait(.5)
  9227. Debounces.Slapped = false
  9228. z:Destroy()
  9229. z1:Destroy()
  9230. z2:Destroy()
  9231. z3:Destroy()
  9232. end
  9233. end
  9234. end
  9235. elseif ht and hit:IsA("Hat") then
  9236. if hit.Parent.Name ~= p.Name then
  9237. if hit.Parent:FindFirstChild("Humanoid") then
  9238. if Debounces.Slapping == true and Debounces.Slapped == false then
  9239. Debounces.Slapped = true
  9240. if Debounces.ks==true then
  9241. z = Instance.new("Sound",hed)
  9242. z.SoundId = "rbxassetid://169380525"
  9243. z.Volume = 1
  9244. z:Play()
  9245. z1 = Instance.new("Sound",char)
  9246. z1.SoundId = "rbxassetid://261010715"
  9247. z1.Pitch = pts[math.random(1,#pts)]
  9248. z1.Volume = 1
  9249. z2 = Instance.new("Sound",char)
  9250. z2.SoundId = "rbxassetid://261010715"
  9251. z2.Pitch = z1.Pitch
  9252. z2.Volume = 1
  9253. z3 = Instance.new("Sound",char)
  9254. z3.SoundId = "rbxassetid://261010715"
  9255. z3.Pitch = z1.Pitch
  9256. z3.Volume = 1
  9257. z1:Play()
  9258. z2:Play()
  9259. z3:Play()
  9260. Debounces.ks=false
  9261. end
  9262. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  9263. wait(.5)
  9264. Debounces.Slapped = false
  9265. z:Destroy()
  9266. z1:Destroy()
  9267. z2:Destroy()
  9268. z3:Destroy()
  9269. end
  9270. end
  9271. end
  9272. end
  9273. end)
  9274. for i = 1, 14 do
  9275. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.5, -.3) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.5)
  9276. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.5)
  9277. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  9278. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
  9279. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
  9280. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
  9281. if Debounces.on==false then break end
  9282. rs:wait(2)
  9283. end
  9284. Debounces.Slapping = true
  9285. for i = 1, 20 do
  9286. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.7, .3) * CFrame.Angles(math.rad(50), 0, math.rad(-110)), 0.6)
  9287. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.6)
  9288. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-70), math.rad(0)), 0.6)
  9289. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.6)
  9290. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  9291. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  9292. if Debounces.on==false then break end
  9293. rs:wait(2)
  9294. end
  9295. Debounces.Slapping = false
  9296. if Debounces.CanAttack == false then
  9297. Debounces.CanAttack = true
  9298. Debounces.NoIdl = false
  9299. Debounces.on = false
  9300. end
  9301. end
  9302. end
  9303. end)
  9304. -------------------------------
  9305. mouse.KeyDown:connect(function(key)
  9306. if key == "t" then
  9307. if Debounces.CanAttack == true then
  9308. Debounces.CanAttack = false
  9309. Debounces.on = true
  9310. Debounces.NoIdl = true
  9311. for i = 1, 20 do
  9312. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.15,0.55,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  9313. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.15,0.55,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  9314. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  9315. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  9316. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, .3) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  9317. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.6) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  9318.  
  9319. if Debounces.on == false then break end
  9320. wait()
  9321. end
  9322. Spawn(function()
  9323. local Parts = {}
  9324. for Y = -5,5 do
  9325. local P = Instance.new("Part",char)
  9326. P.Anchored = true
  9327. P.FormFactor = "Custom"
  9328. P.CanCollide = false
  9329. P.Size = Vector3.new(1,2,1)
  9330. P.TopSurface = "SmoothNoOutlines"
  9331. P.BottomSurface = "SmoothNoOutlines"
  9332. P.BrickColor = BrickColor.new("Really black")
  9333. P.Name = tostring(Y)
  9334. local i = (Y+5)/(10)
  9335. i = 1-math.cos(math.pi*i-(math.pi/2))
  9336. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  9337. --[[P.Touched:connect(function(ht)
  9338. local hit = ht.Parent
  9339. if hit:FindFirstChild("Humanoid") then
  9340. hit.Humanoid:TakeDamage(math.random(20,50))
  9341. end
  9342. end)]]--
  9343. s = Instance.new("Sound",P)
  9344. s.SoundId = "rbxassetid://228343271"
  9345. s.Volume = 19
  9346. s.Pitch = 0.9
  9347. s:Play()
  9348. P.Touched:connect(function(ht)
  9349. hit = ht.Parent
  9350. if ht and hit:IsA("Model") then
  9351. if hit:FindFirstChild("Humanoid") then
  9352. if hit.Name ~= p.Name then
  9353. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  9354. Debounces.Slashed = true]]--
  9355. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  9356. hit:FindFirstChild("Humanoid").PlatformStand = true
  9357. wait(1)
  9358. --Debounces.Slashed = false
  9359. --end
  9360. end
  9361. end
  9362. elseif ht and hit:IsA("Hat") then
  9363. if hit.Parent.Name ~= p.Name then
  9364. if hit.Parent:FindFirstChild("Humanoid") then
  9365. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  9366. Debounces.Slashed = true]]--
  9367. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  9368. hit:FindFirstChild("Humanoid").PlatformStand = true
  9369. wait(1)
  9370. --Debounces.Slashed = false
  9371. --end
  9372. end
  9373. end
  9374. end
  9375. end)
  9376. Parts[#Parts+1] = P
  9377. end
  9378. local BREAKIT = false
  9379. local CParts = {}
  9380. local Rocks = {}
  9381. local LastPos = nil
  9382. for i = 1,70 do
  9383. for i2,v in pairs(Parts) do
  9384. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  9385. local cf = v.CFrame
  9386. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  9387. v.CFrame = cf
  9388. v.Transparency = v.Transparency+0.02
  9389. if v.Transparency >= 0.975 then BREAKIT = true end
  9390. if v.Name == "0" then
  9391. local Ignore = {}
  9392. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  9393. if v.Character ~= nil then
  9394. Ignore[#Ignore+1] = v.Character
  9395. end
  9396. end
  9397. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  9398. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  9399. if Hit ~= nil then
  9400. if #Rocks == 0 then
  9401. for i = 1,5 do
  9402. local P = Instance.new("Part",char)
  9403. Rocks[#Rocks+1] = P
  9404. P.Anchored = true
  9405. P.FormFactor = "Custom"
  9406. P.BrickColor = Hit.BrickColor
  9407. P.Material = Hit.Material
  9408. P.TopSurface = "Smooth"
  9409. P.BottomSurface = "Smooth"
  9410. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  9411. end
  9412. end
  9413. for i,P in pairs(Rocks) do
  9414. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  9415. end
  9416. local P = Instance.new("Part",char)
  9417. CParts[#CParts+1] = {P,tick()}
  9418. P.Anchored = true
  9419. P.FormFactor = "Custom"
  9420. P.BrickColor = Hit.BrickColor
  9421. P.Material = Hit.Material
  9422. P.TopSurface = "Smooth"
  9423. P.BottomSurface = "Smooth"
  9424. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  9425. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  9426. Pos = Pos.p
  9427. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  9428. local P = P:Clone()
  9429. CParts[#CParts+1] = {P,tick()}
  9430. P.Parent = char
  9431. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  9432. Pos = Pos.p
  9433. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  9434. if LastPos ~= nil then
  9435. local P = P:Clone()
  9436. CParts[#CParts+1] = {P,tick()}
  9437. P.Parent = char
  9438. P.BrickColor = BrickColor.new("Really black")
  9439. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  9440. Pos = Pos.p
  9441. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  9442. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  9443. --P.Velocity = Vector3.new(0,-1000,0)
  9444. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  9445. end
  9446. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  9447. end
  9448. end
  9449. end
  9450. if BREAKIT then break end
  9451. wait(0.002)
  9452. end
  9453. for i,v in pairs(Rocks) do
  9454. CParts[#CParts+1] = {v,tick()}
  9455. end
  9456. for i,v in pairs(Parts) do
  9457. v:Destroy()
  9458. end
  9459. Parts = nil
  9460. while true do
  9461. local t = tick()
  9462. local p = nil
  9463. for i,v in pairs(CParts) do
  9464. if t-v[2] > 4 then
  9465. v[1].Transparency = v[1].Transparency+0.05
  9466. if v[1].Transparency >= 1 then
  9467. v[1]:Destroy()
  9468. CParts[i] = nil
  9469. end
  9470. end
  9471. p = v
  9472. end
  9473. if p == nil then break end
  9474. wait(0.002)
  9475. end
  9476. for i,v in pairs(CParts) do
  9477. v:Destroy()
  9478. end
  9479. CParts = {}
  9480. end)
  9481. for i = 1, 20 do
  9482. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.15,.4,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  9483. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.15,.4,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  9484. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  9485. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  9486. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.5, -0.7) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  9487. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -.45) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  9488.  
  9489. if Debounces.on == false then break end
  9490. wait()
  9491. end
  9492. if Debounces.CanAttack == false then
  9493. Debounces.CanAttack = true
  9494. Debounces.on = false
  9495. Debounces.NoIdl = false
  9496. end
  9497. end
  9498. end
  9499. end)
  9500. ----------------------------------------------------
  9501. ----------------------------------------------------
  9502. ----------------------------------------------------
  9503. -------------------
  9504.  
  9505. Change = false
  9506. mouse.KeyDown:connect(function(key)
  9507. if key == "n" then
  9508. if Change == false then
  9509. Change = true
  9510. stanceToggle = "Idle2"
  9511. elseif Change == true then
  9512. Change = false
  9513. stanceToggle = "Idle1"
  9514. end
  9515. end
  9516. end)
  9517. ----------------------------------------------------
  9518. mod=Instance.new('Model',char)
  9519.  
  9520. function charge()
  9521. hed.Velocity=hed.CFrame.lookVector*200
  9522. part=Instance.new('Part',mod)
  9523. part.Anchored=true
  9524. part.CanCollide=false
  9525. part.FormFactor='Custom'
  9526. part.Size=Vector3.new(.2,.2,.2)
  9527. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  9528. part.Transparency=.7
  9529. part.BrickColor=BrickColor.new('Black')
  9530. mesh=Instance.new('SpecialMesh',part)
  9531. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  9532. mesh.Scale=Vector3.new(10,5,10)
  9533. part2=part:clone()
  9534. part2.Parent=mod
  9535. part2.BrickColor=BrickColor.new('Lime green')
  9536. mesh2=mesh:clone()
  9537. mesh2.Parent=part2
  9538. mesh2.Scale=Vector3.new(20,10,20)
  9539. part3=part2:clone()
  9540. part3.Parent = mod
  9541. part3.BrickColor=BrickColor.new('Really black')
  9542. mesh3=mesh2:clone()
  9543. mesh2.Parent=part3
  9544. mesh3.Scale=Vector3.new(30,15,30)
  9545. coroutine.resume(coroutine.create(function()
  9546. for i=0,1,0.1 do
  9547. wait()
  9548. part.CFrame=part.CFrame
  9549. part.Transparency=i
  9550. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  9551. part2.CFrame=part2.CFrame
  9552. part2.Transparency=i
  9553. mesh2.Scale=mesh2.Scale+Vector3.new(2,2,2)
  9554. part3.CFrame=part3.CFrame
  9555. part3.Transparency=i
  9556. mesh3.Scale=mesh3.Scale+Vector3.new(2,2,2)
  9557. end
  9558. part.Parent=nil
  9559. part2.Parent=nil
  9560. part3.Parent = nil
  9561. end))
  9562. end
  9563. --------------------
  9564. mouse.KeyDown:connect(function(key)
  9565. if key == "g" then
  9566. larm.BrickColor = BrickColor.new("Bright red")
  9567. rarm.BrickColor = BrickColor.new("Bright red")
  9568. if Debounces.CanAttack == true then
  9569. Debounces.CanAttack = false
  9570. Debounces.on = true
  9571. Debounces.NoIdl = true
  9572. chrg = lleg.Touched:connect(function(ht)
  9573. hit = ht.Parent
  9574. if ht and hit:IsA("Model") then
  9575. if hit:FindFirstChild("Humanoid") then
  9576. if hit.Name ~= p.Name then
  9577. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  9578. Debounces.Slashed = true]]--
  9579. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  9580. hit:FindFirstChild("Humanoid").PlatformStand = true
  9581. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  9582. --Debounces.Slashed = false
  9583. --end
  9584. end
  9585. end
  9586. elseif ht and hit:IsA("Hat") then
  9587. if hit.Parent.Name ~= p.Name then
  9588. if hit.Parent:FindFirstChild("Humanoid") then
  9589. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  9590. Debounces.Slashed = true]]--
  9591. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  9592. hit:FindFirstChild("Humanoid").PlatformStand = true
  9593. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  9594. --Debounces.Slashed = false
  9595. end
  9596. end
  9597. end
  9598. end)
  9599. for i = 1, 14 do
  9600. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .45, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  9601. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, .45, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  9602. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  9603. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  9604. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  9605. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  9606.  
  9607. if Debounces.on == false then break end
  9608. wait()
  9609. end
  9610. charge()
  9611. z = Instance.new("Sound",char)
  9612. z.SoundId = "rbxassetid://200632875"
  9613. z.Volume = 1
  9614. z.Pitch = .8
  9615. z1 = Instance.new("Sound",char)
  9616. z1.SoundId = "rbxassetid://200632875"
  9617. z1.Volume = 1
  9618. z1.Pitch = .9
  9619. z:Play()
  9620. z1:Play()
  9621. wait(1)
  9622. z:Destroy()
  9623. z1:Destroy()
  9624. chrg:disconnect()
  9625. if Debounces.CanAttack == false then
  9626. Debounces.CanAttack = true
  9627. Debounces.on = false
  9628. Debounces.NoIdl = false
  9629. larm.BrickColor = BrickColor.new("White")
  9630. rarm.BrickColor = BrickColor.new("White")
  9631. end
  9632. end
  9633. end
  9634. end)
  9635. ------------------------------
  9636. mouse.KeyDown:connect(function(key)
  9637. if string.byte(key) == 52 then
  9638. Swing = 2
  9639. char.Humanoid.WalkSpeed = 28
  9640. end
  9641. end)
  9642. mouse.KeyUp:connect(function(key)
  9643. if string.byte(key) == 52 then
  9644. Swing = 1
  9645. char.Humanoid.WalkSpeed = 16
  9646. end
  9647. end)
  9648. ----------------------------------------------------
  9649.  
  9650. -------------------------------------------
  9651. CR = torso.Cloak.Rotater
  9652. CR2 = torso.Cloak.CapeLevel1
  9653. CR3 = torso.Cloak.CapeLevel2
  9654. CR4 = torso.Cloak.CapeLevel3
  9655. CR5 = torso.Cloak.CapeLevel4
  9656. jump = false
  9657. rs:connect(function()
  9658. if char.Humanoid.Jump == true then
  9659. jump = true
  9660. else
  9661. jump = false
  9662. end
  9663. char.Humanoid.FreeFalling:connect(function(f)
  9664. if f then
  9665. ffing = true
  9666. else
  9667. ffing = false
  9668. end
  9669. end)
  9670. sine = sine + change
  9671. if jump == true then
  9672. animpose = "Jumping"
  9673. elseif ffing == true then
  9674. animpose = "Freefalling"
  9675. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  9676. animpose = "Idle"
  9677. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  9678. animpose = "Walking"
  9679. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  9680. animpose = "Running"
  9681. end
  9682. RightLeg = CFrame.new(0.5,-1,0)
  9683. LeftLeg = CFrame.new(-0.5,-1,0)
  9684.  
  9685. lefth = (torso.CFrame*LeftLeg)
  9686. righth = (torso.CFrame*RightLeg)
  9687.  
  9688. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  9689.  
  9690. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  9691.  
  9692. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  9693. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  9694. if animpose ~= lastanimpose then
  9695. sine = 0
  9696. if Debounces.NoIdl == false then
  9697. if stanceToggle == "Idle1" then
  9698. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-12-4*math.cos(sine/22)),math.rad(-12-2*math.cos(sine/22)),math.rad(12+2*math.cos(sine/22))), 0.3)
  9699. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,-0.2)*CFrame.Angles(math.rad(20+4*math.cos(sine/22)),math.rad(-22-2*math.cos(sine/22)),math.rad(-15-2*math.cos(sine/22))), 0.3)
  9700. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-12+2.5*math.cos(sine/22)),math.rad(0),math.rad(0)), 0.2)
  9701. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-2+2*math.cos(sine/22)), math.rad(0), 0), 0.2)
  9702. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(5), math.rad(-5)), 0.2)
  9703. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(-5), math.rad(5)), 0.2)
  9704. elseif stanceToggle == "Idle2" then
  9705. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-22-4*math.cos(sine/12)),math.rad(-40-2*math.cos(sine/12)),math.rad(24+2*math.cos(sine/12))), 0.3)
  9706. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.6,-0.6)*CFrame.Angles(math.rad(90+4*math.cos(sine/12)),math.rad(0),math.rad(50-2*math.cos(sine/12))), 0.3)
  9707. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-6+2.5*math.cos(sine/12)),math.rad(0),math.rad(0)), 0.2)
  9708. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20+2*math.cos(sine/12)), math.rad(0), 0), 0.2)
  9709. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.4, -1) * CFrame.Angles(math.rad(-7-2*math.cos(sine/12)), math.rad(7), math.rad(-5)), 0.2)
  9710. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -0.2) * CFrame.Angles(math.rad(-30-2*math.cos(sine/12)), math.rad(-9), math.rad(5)), 0.2)
  9711. end
  9712. fat.Event:wait()
  9713. end
  9714. else
  9715. end
  9716. lastanimpose = animpose
  9717. if Debounces.NoIdl == false then
  9718. if animpose == "Idle" then
  9719. change = 0.5
  9720. if stanceToggle == "Idle1" then
  9721. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05+0.03*math.cos(sine/5), 0-0.1*math.cos(sine/10)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9722. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0+8*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.3)
  9723. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4-2*math.cos(sine/10)),0,0),0.1)
  9724. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  9725. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  9726. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  9727. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  9728. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6+0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),-0.2-0.1*math.cos(sine/10))*CFrame.Angles(math.rad(8+2.5*math.cos(sine/10)),math.rad(22+7*math.cos(sine/10)),math.rad(15+2*math.cos(sine/10))), 0.8)
  9729. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9730. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6-0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),0.2+0.1*math.cos(sine/10))*CFrame.Angles(math.rad(-8-2.5*math.cos(sine/10)),math.rad(12+5*math.cos(sine/10)),math.rad(-12-3*math.cos(sine/10))), 0.8)
  9731. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9732. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.05*math.cos(sine/10))*CFrame.Angles(math.rad(-15+3*math.cos(sine/10)),math.rad(0),math.rad(0)), 0.5)
  9733. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20-3*math.cos(sine/10)),math.rad(0)), 0.5)
  9734. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6+3*math.cos(sine/10)), math.rad(0), 0), 0.1)
  9735. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0-0.08*math.cos(sine/10), -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20+3*math.cos(sine/10)), 0), 0.1)
  9736. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14+0.06*math.cos(sine/10)) * CFrame.Angles(math.rad(-3-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  9737. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10-3*math.cos(sine/10)), math.rad(5+3*math.cos(sine/10))), 0.1)
  9738. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(8-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  9739. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10-3*math.cos(sine/10)), math.rad(-5+3*math.cos(sine/10))), 0.1)
  9740. elseif stanceToggle == "Idle2" then
  9741. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-6),0,0),0.1)
  9742. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  9743. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  9744. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  9745. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-8-1*math.cos(sine/6)),0,0),0.1)
  9746. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9747. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65-0.1*math.cos(sine/3),0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20-2*math.cos(sine/3))), 0.1)
  9748. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  9749. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.23, 0.5, -.56) * CFrame.Angles(math.rad(88+4*math.cos(sine/3)), 0, math.rad(45)), 0.6)
  9750. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  9751. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(-10+2*math.cos(sine/6)), 0, 0), 0.8)
  9752. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  9753. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  9754. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-5-10*math.cos(sine/18)), math.sin(sine/36)/3, 0), 0.3)
  9755. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9756. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.15) * CFrame.Angles(math.rad(-9-2*math.cos(sine/6)), 0, 0), 0.8)
  9757. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1-0.1*math.cos(sine/3), 0+0.04*math.cos(sine/6)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)), 0.8)
  9758. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56-2*math.cos(sine/6)), 0, 0), 0.8)
  9759. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.8)
  9760. elseif stanceToggle == "Grabbed" then
  9761. grab = true
  9762. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9763. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  9764. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
  9765. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  9766. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(90+4*math.cos(sine/14)),math.rad(0),math.rad(-80+4*math.cos(sine/14))), 0.3)
  9767. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  9768. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3)
  9769. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9770. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  9771. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  9772. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  9773. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  9774. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  9775. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  9776. end
  9777. elseif animpose == "Walking" then
  9778. if stanceToggle == "Grabbed" then
  9779. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9780. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  9781. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  9782. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  9783. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120+4*math.cos(sine/2)),math.rad(0),math.rad(-30+4*math.cos(sine/4))), 0.3)
  9784. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  9785. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  9786. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  9787. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  9788. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  9789. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  9790. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  9791. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  9792. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  9793. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  9794. elseif stanceToggle ~= "Grabbed" then
  9795. change = 1
  9796. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9797. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  9798. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-22-2*math.cos(sine/2)),0,0),0.2)
  9799. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-3*math.cos(sine/2)),0,0),0.2)
  9800. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-4*math.cos(sine/2)),0,0),0.2)
  9801. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-5*math.cos(sine/2)),0,0),0.2)
  9802. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-6*math.cos(sine/2)),0,0),0.2)
  9803. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  9804. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  9805. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5+.05*math.cos(sine/2), -math.sin(sine/4)/4)*CFrame.Angles(math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(-10-7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  9806. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  9807. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  9808. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  9809. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  9810. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  9811. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  9812. --lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.9-0.24*math.cos(sine/4)/2.8, -0.05 + math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)-math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  9813. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  9814. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  9815. --rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.9+0.24*math.cos(sine/4)/2.8, -0.05 + -math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)+math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  9816. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  9817. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  9818. end
  9819. elseif animpose == "Running" then
  9820. change = 1
  9821. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9822. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  9823. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-56-10*math.cos(sine/2)),0,0),0.2)
  9824. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  9825. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  9826. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  9827. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  9828. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.24+.6*math.cos(sine/4)/1.4, 0.54, 0+0.8*math.cos(sine/4)) * CFrame.Angles(math.rad(6-140*math.cos(sine/4)/1.2), math.rad(0), math.rad(-20+70*math.cos(sine/4))), 0.2)
  9829. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  9830. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24+.6*math.cos(sine/4)/1.4, 0.54, 0-0.8*math.cos(sine/4))*CFrame.Angles(math.rad(6+140*math.cos(sine/4)/1.2), math.rad(0), math.rad(20+70*math.cos(sine/4))), 0.2)
  9831. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9832. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-8+12*math.cos(sine/2)/1.5), math.rad(0+12*math.cos(sine/4)), math.rad(0)),0.2)
  9833. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.5)
  9834. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/2)/1.7, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/2)/1.5), math.rad(0-12*math.cos(sine/4))-root.RotVelocity.Y/10, math.rad(0)+root.RotVelocity.Y/20), 0.2)
  9835. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  9836. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.8-0.4*math.cos(sine/4)/2, math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + -math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  9837. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9838. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8+0.4*math.cos(sine/4)/2, -math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  9839. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9840. elseif animpose == "Jumping" then
  9841. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-30),0,0),0.2)
  9842. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  9843. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  9844. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  9845. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  9846. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9847. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  9848. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.2)
  9849. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  9850. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.2)
  9851. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9852. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
  9853. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  9854. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  9855. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  9856. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9857. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  9858. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9859. elseif animpose == "Freefalling" then
  9860. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
  9861. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  9862. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  9863. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  9864. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  9865. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  9866. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  9867. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-40),math.rad(20),math.rad(50)), 0.2)
  9868. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  9869. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(110),math.rad(-20),math.rad(-30)), 0.2)
  9870. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  9871. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  9872. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  9873. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  9874. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.5, 0.2) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  9875. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9876. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.6) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.2)
  9877. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  9878. end
  9879. end
  9880. end)
  9881. hum.MaxHealth = 5000
  9882. wait(3)
  9883. hum.Health = 5000
  9884. while wait() do
  9885. wait(5)
  9886. for i=1,100 do wait()
  9887. Amulite.Brightness=Amulite.Brightness+0.02
  9888. end
  9889. for i=1,100 do wait()
  9890. Amulite.Brightness=Amulite.Brightness-0.02
  9891. end
  9892. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement