Advertisement
Im_Meme

Guts

Aug 18th, 2018
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 461.90 KB | None | 0 0
  1. --Guts, by MonolithicDivinity
  2. --Berserker armor and arm cannon by megablok13
  3. --Some asshole leaked this, but it wasn't the full version
  4. --If you're gonna steal something, at least do it right.
  5. --Converted with ttyyuu12345's model to script plugin v4
  6.  
  7. ---FE Converter
  8.  
  9. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  10. local Player,game,owner = owner,game
  11. local RealPlayer = Player
  12. do
  13. print("FE Compatibility code by Mokiros")
  14. local rp = RealPlayer
  15. script.Parent = rp.Character
  16.  
  17. --RemoteEvent for communicating
  18. local Event = Instance.new("RemoteEvent")
  19. Event.Name = "UserInput_Event"
  20.  
  21. --Fake event to make stuff like Mouse.KeyDown work
  22. local function fakeEvent()
  23. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  24. t.connect = t.Connect
  25. return t
  26. end
  27.  
  28. --Creating fake input objects with fake variables
  29. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  30. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  31. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  32. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  33. end}
  34. --Merged 2 functions into one by checking amount of arguments
  35. CAS.UnbindAction = CAS.BindAction
  36.  
  37. --This function will trigger the events that have been :Connect()'ed
  38. local function te(self,ev,...)
  39. local t = m[ev]
  40. if t and t._fakeEvent then
  41. for _,f in pairs(t.Functions) do
  42. f(...)
  43. end
  44. end
  45. end
  46. m.TrigEvent = te
  47. UIS.TrigEvent = te
  48.  
  49. Event.OnServerEvent:Connect(function(plr,io)
  50. if plr~=rp then return end
  51. m.Target = io.Target
  52. m.Hit = io.Hit
  53. if not io.isMouse then
  54. local b = io.UserInputState == Enum.UserInputState.Begin
  55. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  56. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  57. end
  58. for _,t in pairs(CAS.Actions) do
  59. for _,k in pairs(t.Keys) do
  60. if k==io.KeyCode then
  61. t.Function(t.Name,io.UserInputState,io)
  62. end
  63. end
  64. end
  65. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  66. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  67. end
  68. end)
  69. Event.Parent = NLS([==[
  70. local Player = game:GetService("Players").LocalPlayer
  71. local Event = script:WaitForChild("UserInput_Event")
  72.  
  73. local Mouse = Player:GetMouse()
  74. local UIS = game:GetService("UserInputService")
  75. local input = function(io,a)
  76. if a then return end
  77. --Since InputObject is a client-side instance, we create and pass table instead
  78. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  79. end
  80. UIS.InputBegan:Connect(input)
  81. UIS.InputEnded:Connect(input)
  82.  
  83. local h,t
  84. --Give the server mouse data 30 times every second, but only if the values changed
  85. --If player is not moving their mouse, client won't fire events
  86. while wait(1/30) do
  87. if h~=Mouse.Hit or t~=Mouse.Target then
  88. h,t=Mouse.Hit,Mouse.Target
  89. Event:FireServer({isMouse=true,Target=t,Hit=h})
  90. end
  91. end]==],Player.Character)
  92.  
  93. ----Sandboxed game object that allows the usage of client-side methods and services
  94. --Real game object
  95. local _rg = game
  96.  
  97. --Metatable for fake service
  98. local fsmt = {
  99. __index = function(self,k)
  100. local s = rawget(self,"_RealService")
  101. if s then return s[k] end
  102. end,
  103. __newindex = function(self,k,v)
  104. local s = rawget(self,"_RealService")
  105. if s then s[k]=v end
  106. end,
  107. __call = function(self,...)
  108. local s = rawget(self,"_RealService")
  109. if s then return s(...) end
  110. end
  111. }
  112. local function FakeService(t,RealService)
  113. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  114. return setmetatable(t,fsmt)
  115. end
  116.  
  117. --Fake game object
  118. local g = {
  119. GetService = function(self,s)
  120. return self[s]
  121. end,
  122. Players = FakeService({
  123. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  124. },"Players"),
  125. UserInputService = FakeService(UIS,"UserInputService"),
  126. ContextActionService = FakeService(CAS,"ContextActionService"),
  127. }
  128. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  129. g.service = g.GetService
  130.  
  131. g.RunService = FakeService({
  132. RenderStepped = _rg:GetService("RunService").Heartbeat,
  133. BindToRenderStep = function(self,name,_,fun)
  134. self._btrs[name] = self.Heartbeat:Connect(fun)
  135. end,
  136. UnbindFromRenderStep = function(self,name)
  137. self._btrs[name]:Disconnect()
  138. end,
  139. },"RunService")
  140.  
  141. setmetatable(g,{
  142. __index=function(self,s)
  143. return _rg:GetService(s) or typeof(_rg[s])=="function"
  144. and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  145. end,
  146. __newindex = fsmt.__newindex,
  147. __call = fsmt.__call
  148. })
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = g,g.Players.LocalPlayer
  151. end
  152.  
  153. wait(1)
  154. function sandbox(var,func)
  155. local env = getfenv(func)
  156. local newenv = setmetatable({},{
  157. __index = function(self,k)
  158. if k=="script" then
  159. return var
  160. else
  161. return env[k]
  162. end
  163. end,
  164. })
  165. setfenv(func,newenv)
  166. return func
  167. end
  168. cors = {}
  169. mas = Instance.new("Model",game:GetService("Lighting"))
  170. Model0 = Instance.new("Model")
  171. Model1 = Instance.new("Model")
  172. Part2 = Instance.new("Part")
  173. SpecialMesh3 = Instance.new("SpecialMesh")
  174. Part4 = Instance.new("Part")
  175. SpecialMesh5 = Instance.new("SpecialMesh")
  176. Part6 = Instance.new("Part")
  177. SpecialMesh7 = Instance.new("SpecialMesh")
  178. Part8 = Instance.new("Part")
  179. SpecialMesh9 = Instance.new("SpecialMesh")
  180. Part10 = Instance.new("Part")
  181. SpecialMesh11 = Instance.new("SpecialMesh")
  182. Model12 = Instance.new("Model")
  183. Part13 = Instance.new("Part")
  184. Part14 = Instance.new("Part")
  185. Part15 = Instance.new("Part")
  186. Part16 = Instance.new("Part")
  187. Part17 = Instance.new("Part")
  188. Part18 = Instance.new("Part")
  189. Part19 = Instance.new("Part")
  190. Part20 = Instance.new("Part")
  191. Part21 = Instance.new("Part")
  192. Model22 = Instance.new("Model")
  193. Part23 = Instance.new("Part")
  194. Part24 = Instance.new("Part")
  195. SpecialMesh25 = Instance.new("SpecialMesh")
  196. Part26 = Instance.new("Part")
  197. Part27 = Instance.new("Part")
  198. SpecialMesh28 = Instance.new("SpecialMesh")
  199. Part29 = Instance.new("Part")
  200. SpecialMesh30 = Instance.new("SpecialMesh")
  201. Model31 = Instance.new("Model")
  202. Part32 = Instance.new("Part")
  203. Part33 = Instance.new("Part")
  204. Part34 = Instance.new("Part")
  205. Part35 = Instance.new("Part")
  206. Part36 = Instance.new("Part")
  207. Model37 = Instance.new("Model")
  208. Part38 = Instance.new("Part")
  209. Part39 = Instance.new("Part")
  210. Part40 = Instance.new("Part")
  211. Part41 = Instance.new("Part")
  212. Part42 = Instance.new("Part")
  213. Part43 = Instance.new("Part")
  214. Part44 = Instance.new("Part")
  215. Part45 = Instance.new("Part")
  216. Part46 = Instance.new("Part")
  217. Model47 = Instance.new("Model")
  218. Part48 = Instance.new("Part")
  219. Part49 = Instance.new("Part")
  220. Part50 = Instance.new("Part")
  221. Part51 = Instance.new("Part")
  222. Part52 = Instance.new("Part")
  223. Part53 = Instance.new("Part")
  224. Part54 = Instance.new("Part")
  225. Part55 = Instance.new("Part")
  226. Part56 = Instance.new("Part")
  227. Script57 = Instance.new("Script")
  228. Model0.Name = "Armor"
  229. Model0.Parent = mas
  230. Model1.Name = "Head"
  231. Model1.Parent = Model0
  232. Part2.Name = "Head1"
  233. Part2.Parent = Model1
  234. Part2.Material = Enum.Material.SmoothPlastic
  235. Part2.BrickColor = BrickColor.new("Pastel brown")
  236. Part2.Transparency = 1
  237. Part2.Rotation = Vector3.new(-180, 0, 180)
  238. Part2.Anchored = true
  239. Part2.CanCollide = false
  240. Part2.FormFactor = Enum.FormFactor.Symmetric
  241. Part2.Size = Vector3.new(2, 1, 1)
  242. Part2.CFrame = CFrame.new(54.6336555, 7.0100441, -30.6814404, -1, -4.45898877e-05, 3.27825364e-05, -4.45890255e-05, 1, 2.62771555e-05, -3.27837079e-05, 2.6275693e-05, -1)
  243. Part2.TopSurface = Enum.SurfaceType.Smooth
  244. Part2.Color = Color3.new(1, 0.8, 0.6)
  245. Part2.Position = Vector3.new(54.6336555, 7.0100441, -30.6814404)
  246. Part2.Orientation = Vector3.new(0, 180, 0)
  247. Part2.Color = Color3.new(1, 0.8, 0.6)
  248. SpecialMesh3.Parent = Part2
  249. SpecialMesh3.Scale = Vector3.new(1.25, 1.25, 1.25)
  250. SpecialMesh3.Scale = Vector3.new(1.25, 1.25, 1.25)
  251. Part4.Parent = Model1
  252. Part4.Material = Enum.Material.Neon
  253. Part4.BrickColor = BrickColor.new("Really red")
  254. Part4.Rotation = Vector3.new(0, 90, 0)
  255. Part4.Anchored = true
  256. Part4.CanCollide = false
  257. Part4.FormFactor = Enum.FormFactor.Custom
  258. Part4.Size = Vector3.new(1.42000079, 1.21000016, 1.15000045)
  259. Part4.CFrame = CFrame.new(54.6486969, 7.27718306, -30.4990654, 0.000421981851, -8.61017657e-09, 1.00000155, 5.69921212e-05, 1, -1.54393707e-08, -1.00000155, 5.69920412e-05, 0.000421981851)
  260. Part4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  261. Part4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  262. Part4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  263. Part4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  264. Part4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  265. Part4.Color = Color3.new(1, 0, 0)
  266. Part4.Position = Vector3.new(54.6486969, 7.27718306, -30.4990654)
  267. Part4.Orientation = Vector3.new(0, 89.9799957, 0)
  268. Part4.Color = Color3.new(1, 0, 0)
  269. SpecialMesh5.Parent = Part4
  270. SpecialMesh5.MeshType = Enum.MeshType.Sphere
  271. Part6.Parent = Model1
  272. Part6.Material = Enum.Material.SmoothPlastic
  273. Part6.BrickColor = BrickColor.new("Really black")
  274. Part6.Rotation = Vector3.new(-180, 0.0199999996, 180)
  275. Part6.Anchored = true
  276. Part6.CanCollide = false
  277. Part6.FormFactor = Enum.FormFactor.Custom
  278. Part6.Size = Vector3.new(4, 1, 2)
  279. Part6.CFrame = CFrame.new(54.6436768, 7.27217054, -30.5090752, -1.00000072, -2.01879793e-08, 0.000411999936, 0, 1, 4.90000421e-05, -0.000411999936, 4.89999911e-05, -1.00000072)
  280. Part6.BottomSurface = Enum.SurfaceType.Smooth
  281. Part6.TopSurface = Enum.SurfaceType.Smooth
  282. Part6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  283. Part6.Position = Vector3.new(54.6436768, 7.27217054, -30.5090752)
  284. Part6.Orientation = Vector3.new(0, 179.979996, 0)
  285. Part6.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  286. SpecialMesh7.Parent = Part6
  287. SpecialMesh7.MeshId = "rbxassetid://984015368"
  288. SpecialMesh7.Scale = Vector3.new(0.0450000018, 0.0390000008, 0.0390000008)
  289. SpecialMesh7.MeshType = Enum.MeshType.FileMesh
  290. SpecialMesh7.Scale = Vector3.new(0.0450000018, 0.0390000008, 0.0390000008)
  291. Part8.Parent = Model1
  292. Part8.Material = Enum.Material.SmoothPlastic
  293. Part8.BrickColor = BrickColor.new("Really black")
  294. Part8.Rotation = Vector3.new(-180, 0.0199999996, 180)
  295. Part8.Anchored = true
  296. Part8.CanCollide = false
  297. Part8.Size = Vector3.new(1.48500049, 1.27375031, 1.26000059)
  298. Part8.CFrame = CFrame.new(54.6339302, 7.00394535, -30.6849346, -1.00000155, -2.01879367e-08, 0.000412000285, 0, 1, 4.89999875e-05, -0.000412000285, 4.89998893e-05, -1.00000155)
  299. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  300. Part8.Position = Vector3.new(54.6339302, 7.00394535, -30.6849346)
  301. Part8.Orientation = Vector3.new(0, 179.979996, 0)
  302. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  303. SpecialMesh9.Parent = Part8
  304. Part10.Parent = Model1
  305. Part10.Material = Enum.Material.Neon
  306. Part10.BrickColor = BrickColor.new("Really red")
  307. Part10.Rotation = Vector3.new(20, 90, 0)
  308. Part10.Anchored = true
  309. Part10.CanCollide = false
  310. Part10.FormFactor = Enum.FormFactor.Custom
  311. Part10.Size = Vector3.new(1.99000025, 0.290000349, 0.450000614)
  312. Part10.CFrame = CFrame.new(54.6485405, 6.9982481, -30.1792469, 0.000396999996, -0.000144999984, 1, 0.342074007, 0.939673126, 4.49200002e-07, -0.939673007, 0.342073977, 0.000422650919)
  313. Part10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  314. Part10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  315. Part10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  316. Part10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  317. Part10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  318. Part10.Color = Color3.new(1, 0, 0)
  319. Part10.Position = Vector3.new(54.6485405, 6.9982481, -30.1792469)
  320. Part10.Orientation = Vector3.new(0, 89.9799957, 20)
  321. Part10.Color = Color3.new(1, 0, 0)
  322. SpecialMesh11.Parent = Part10
  323. SpecialMesh11.MeshType = Enum.MeshType.Sphere
  324. Model12.Name = "RightLeg"
  325. Model12.Parent = Model0
  326. Part13.Name = "Right Leg1"
  327. Part13.Parent = Model12
  328. Part13.Material = Enum.Material.SmoothPlastic
  329. Part13.BrickColor = BrickColor.new("Pastel brown")
  330. Part13.Transparency = 1
  331. Part13.Rotation = Vector3.new(-180, 0, 180)
  332. Part13.Anchored = true
  333. Part13.CanCollide = false
  334. Part13.FormFactor = Enum.FormFactor.Plate
  335. Part13.Size = Vector3.new(1, 2, 1)
  336. Part13.CFrame = CFrame.new(54.1337051, 3.5000484, -30.6814098, -1, -4.45898877e-05, 3.27825364e-05, -4.45890255e-05, 1, 2.62771555e-05, -3.27837079e-05, 2.6275693e-05, -1)
  337. Part13.Color = Color3.new(1, 0.8, 0.6)
  338. Part13.Position = Vector3.new(54.1337051, 3.5000484, -30.6814098)
  339. Part13.Orientation = Vector3.new(0, 180, 0)
  340. Part13.Color = Color3.new(1, 0.8, 0.6)
  341. Part14.Parent = Model12
  342. Part14.Material = Enum.Material.SmoothPlastic
  343. Part14.BrickColor = BrickColor.new("Really black")
  344. Part14.Rotation = Vector3.new(-180, 0.0199999996, 180)
  345. Part14.Anchored = true
  346. Part14.CanCollide = false
  347. Part14.FormFactor = Enum.FormFactor.Custom
  348. Part14.Size = Vector3.new(0.470000774, 2.03999949, 1.09000051)
  349. Part14.CFrame = CFrame.new(53.8277054, 3.51967072, -30.6956081, -1.00000155, -2.01879367e-08, 0.000412000285, 0, 1, 4.89999875e-05, -0.000412000285, 4.89998893e-05, -1.00000155)
  350. Part14.BottomSurface = Enum.SurfaceType.Smooth
  351. Part14.TopSurface = Enum.SurfaceType.Smooth
  352. Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  353. Part14.Position = Vector3.new(53.8277054, 3.51967072, -30.6956081)
  354. Part14.Orientation = Vector3.new(0, 179.979996, 0)
  355. Part14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  356. Part15.Parent = Model12
  357. Part15.Material = Enum.Material.SmoothPlastic
  358. Part15.BrickColor = BrickColor.new("Really black")
  359. Part15.Rotation = Vector3.new(0, -0.0199999996, -5)
  360. Part15.Anchored = true
  361. Part15.CanCollide = false
  362. Part15.FormFactor = Enum.FormFactor.Custom
  363. Part15.Size = Vector3.new(1.0600009, 0.244614512, 1.07019281)
  364. Part15.CFrame = CFrame.new(54.1165619, 3.61820626, -30.6945057, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  365. Part15.BottomSurface = Enum.SurfaceType.Smooth
  366. Part15.TopSurface = Enum.SurfaceType.Smooth
  367. Part15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  368. Part15.Position = Vector3.new(54.1165619, 3.61820626, -30.6945057)
  369. Part15.Orientation = Vector3.new(0, -0.0199999996, -5)
  370. Part15.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  371. Part16.Parent = Model12
  372. Part16.Material = Enum.Material.SmoothPlastic
  373. Part16.BrickColor = BrickColor.new("Really black")
  374. Part16.Rotation = Vector3.new(0, -0.0199999996, -5)
  375. Part16.Anchored = true
  376. Part16.CanCollide = false
  377. Part16.FormFactor = Enum.FormFactor.Custom
  378. Part16.Size = Vector3.new(1.07981038, 0.24918592, 1.09019279)
  379. Part16.CFrame = CFrame.new(54.0962715, 3.3862803, -30.6945019, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  380. Part16.BottomSurface = Enum.SurfaceType.Smooth
  381. Part16.TopSurface = Enum.SurfaceType.Smooth
  382. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  383. Part16.Position = Vector3.new(54.0962715, 3.3862803, -30.6945019)
  384. Part16.Orientation = Vector3.new(0, -0.0199999996, -5)
  385. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  386. Part17.Parent = Model12
  387. Part17.Material = Enum.Material.SmoothPlastic
  388. Part17.BrickColor = BrickColor.new("Really black")
  389. Part17.Rotation = Vector3.new(0, -0.0199999996, -5)
  390. Part17.Anchored = true
  391. Part17.CanCollide = false
  392. Part17.FormFactor = Enum.FormFactor.Custom
  393. Part17.Size = Vector3.new(1.09961987, 0.253757328, 1.11019278)
  394. Part17.CFrame = CFrame.new(54.0772781, 3.16917062, -30.6944981, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  395. Part17.BottomSurface = Enum.SurfaceType.Smooth
  396. Part17.TopSurface = Enum.SurfaceType.Smooth
  397. Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  398. Part17.Position = Vector3.new(54.0772781, 3.16917062, -30.6944981)
  399. Part17.Orientation = Vector3.new(0, -0.0199999996, -5)
  400. Part17.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  401. Part18.Parent = Model12
  402. Part18.Material = Enum.Material.SmoothPlastic
  403. Part18.BrickColor = BrickColor.new("Really black")
  404. Part18.Rotation = Vector3.new(0, -0.0199999996, -5)
  405. Part18.Anchored = true
  406. Part18.CanCollide = false
  407. Part18.FormFactor = Enum.FormFactor.Custom
  408. Part18.Size = Vector3.new(1.11942935, 0.258328736, 1.13019276)
  409. Part18.CFrame = CFrame.new(54.0572739, 2.94052625, -30.6944942, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  410. Part18.BottomSurface = Enum.SurfaceType.Smooth
  411. Part18.TopSurface = Enum.SurfaceType.Smooth
  412. Part18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  413. Part18.Position = Vector3.new(54.0572739, 2.94052625, -30.6944942)
  414. Part18.Orientation = Vector3.new(0, -0.0199999996, -5)
  415. Part18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  416. Part19.Parent = Model12
  417. Part19.Material = Enum.Material.SmoothPlastic
  418. Part19.BrickColor = BrickColor.new("Really black")
  419. Part19.Rotation = Vector3.new(-180, 0.0199999996, -140)
  420. Part19.Anchored = true
  421. Part19.CanCollide = false
  422. Part19.FormFactor = Enum.FormFactor.Custom
  423. Part19.Size = Vector3.new(0.870000839, 0.239999145, 1.09000051)
  424. Part19.CFrame = CFrame.new(54.1296043, 3.73647428, -30.6954613, -0.76604414, 0.642787933, 0.000412321329, 0.642788053, 0.76604408, 4.95595632e-05, -0.000284000038, 0.000302999979, -1)
  425. Part19.BottomSurface = Enum.SurfaceType.Smooth
  426. Part19.TopSurface = Enum.SurfaceType.Smooth
  427. Part19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  428. Part19.Position = Vector3.new(54.1296043, 3.73647428, -30.6954613)
  429. Part19.Orientation = Vector3.new(0, 179.979996, 40)
  430. Part19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  431. Part20.Parent = Model12
  432. Part20.Material = Enum.Material.SmoothPlastic
  433. Part20.BrickColor = BrickColor.new("Really black")
  434. Part20.Rotation = Vector3.new(-180, 0.0199999996, 180)
  435. Part20.Anchored = true
  436. Part20.CanCollide = false
  437. Part20.FormFactor = Enum.FormFactor.Custom
  438. Part20.Size = Vector3.new(1.04000092, 2.03999949, 1.05000055)
  439. Part20.CFrame = CFrame.new(54.1427002, 3.51967072, -30.6954765, -1.00000155, -2.01879367e-08, 0.000412000285, 0, 1, 4.89999875e-05, -0.000412000285, 4.89998893e-05, -1.00000155)
  440. Part20.BottomSurface = Enum.SurfaceType.Smooth
  441. Part20.TopSurface = Enum.SurfaceType.Smooth
  442. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  443. Part20.Position = Vector3.new(54.1427002, 3.51967072, -30.6954765)
  444. Part20.Orientation = Vector3.new(0, 179.979996, 0)
  445. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  446. Part21.Parent = Model12
  447. Part21.Material = Enum.Material.SmoothPlastic
  448. Part21.BrickColor = BrickColor.new("Really black")
  449. Part21.Rotation = Vector3.new(-180, 0.0199999996, 180)
  450. Part21.Anchored = true
  451. Part21.CanCollide = false
  452. Part21.FormFactor = Enum.FormFactor.Custom
  453. Part21.Size = Vector3.new(1.07000089, 1.13999927, 1.09000051)
  454. Part21.CFrame = CFrame.new(54.1277008, 3.06967664, -30.6955013, -1.00000155, -2.01879367e-08, 0.000412000285, 0, 1, 4.89999875e-05, -0.000412000285, 4.89998893e-05, -1.00000155)
  455. Part21.BottomSurface = Enum.SurfaceType.Smooth
  456. Part21.TopSurface = Enum.SurfaceType.Smooth
  457. Part21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  458. Part21.Position = Vector3.new(54.1277008, 3.06967664, -30.6955013)
  459. Part21.Orientation = Vector3.new(0, 179.979996, 0)
  460. Part21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  461. Model22.Name = "Torso"
  462. Model22.Parent = Model0
  463. Part23.Name = "Torso1"
  464. Part23.Parent = Model22
  465. Part23.Material = Enum.Material.SmoothPlastic
  466. Part23.BrickColor = BrickColor.new("Pastel brown")
  467. Part23.Transparency = 1
  468. Part23.Rotation = Vector3.new(-180, 0, 0)
  469. Part23.Anchored = true
  470. Part23.CanCollide = false
  471. Part23.FormFactor = Enum.FormFactor.Plate
  472. Part23.Size = Vector3.new(2, 2, 1)
  473. Part23.CFrame = CFrame.new(54.633667, 5.50004864, -30.6814232, 1, 4.45898877e-05, 3.27825364e-05, 4.45890255e-05, -1, 2.62771555e-05, 3.27837079e-05, -2.6275693e-05, -1)
  474. Part23.TopSurface = Enum.SurfaceType.Smooth
  475. Part23.Color = Color3.new(1, 0.8, 0.6)
  476. Part23.Position = Vector3.new(54.633667, 5.50004864, -30.6814232)
  477. Part23.Orientation = Vector3.new(0, 180, 180)
  478. Part23.Color = Color3.new(1, 0.8, 0.6)
  479. Part24.Parent = Model22
  480. Part24.Material = Enum.Material.SmoothPlastic
  481. Part24.BrickColor = BrickColor.new("Really black")
  482. Part24.Rotation = Vector3.new(-170, 0.0199999996, 180)
  483. Part24.Anchored = true
  484. Part24.CanCollide = false
  485. Part24.FormFactor = Enum.FormFactor.Custom
  486. Part24.Size = Vector3.new(4, 1, 2)
  487. Part24.CFrame = CFrame.new(54.6442642, 4.56463766, -31.8787727, -1, -7.15627102e-05, 0.000405736908, 0, 0.984799325, 0.173696071, -0.000411999587, 0.173696056, -0.984799266)
  488. Part24.BottomSurface = Enum.SurfaceType.Smooth
  489. Part24.TopSurface = Enum.SurfaceType.Smooth
  490. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  491. Part24.Position = Vector3.new(54.6442642, 4.56463766, -31.8787727)
  492. Part24.Orientation = Vector3.new(-10, 179.979996, 0)
  493. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  494. SpecialMesh25.Parent = Part24
  495. SpecialMesh25.MeshId = "rbxassetid://984054942"
  496. SpecialMesh25.Scale = Vector3.new(0.0450000018, 0.0320000015, 0.0390000008)
  497. SpecialMesh25.MeshType = Enum.MeshType.FileMesh
  498. SpecialMesh25.Scale = Vector3.new(0.0450000018, 0.0320000015, 0.0390000008)
  499. Part26.Parent = Model22
  500. Part26.Material = Enum.Material.SmoothPlastic
  501. Part26.BrickColor = BrickColor.new("Really black")
  502. Part26.Rotation = Vector3.new(-180, 0.0199999996, 180)
  503. Part26.Anchored = true
  504. Part26.CanCollide = false
  505. Part26.FormFactor = Enum.FormFactor.Custom
  506. Part26.Size = Vector3.new(2.04000044, 2.03999949, 1.05000055)
  507. Part26.CFrame = CFrame.new(54.633461, 5.50020456, -30.6971302, -1.00000155, -2.01879367e-08, 0.000412000285, 0, 1, 4.89999875e-05, -0.000412000285, 4.89998893e-05, -1.00000155)
  508. Part26.BottomSurface = Enum.SurfaceType.Smooth
  509. Part26.TopSurface = Enum.SurfaceType.Smooth
  510. Part26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  511. Part26.Position = Vector3.new(54.633461, 5.50020456, -30.6971302)
  512. Part26.Orientation = Vector3.new(0, 179.979996, 0)
  513. Part26.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  514. Part27.Parent = Model22
  515. Part27.Material = Enum.Material.SmoothPlastic
  516. Part27.BrickColor = BrickColor.new("Really black")
  517. Part27.Rotation = Vector3.new(-180, 0.0199999996, 180)
  518. Part27.Anchored = true
  519. Part27.CanCollide = false
  520. Part27.FormFactor = Enum.FormFactor.Custom
  521. Part27.Size = Vector3.new(4, 1, 2)
  522. Part27.CFrame = CFrame.new(54.6436234, 5.37703657, -30.3475189, -1.00000072, -2.01879793e-08, 0.000411999936, 0, 1, 4.90000421e-05, -0.000411999936, 4.89999911e-05, -1.00000072)
  523. Part27.BottomSurface = Enum.SurfaceType.Smooth
  524. Part27.TopSurface = Enum.SurfaceType.Smooth
  525. Part27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  526. Part27.Position = Vector3.new(54.6436234, 5.37703657, -30.3475189)
  527. Part27.Orientation = Vector3.new(0, 179.979996, 0)
  528. Part27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  529. SpecialMesh28.Parent = Part27
  530. SpecialMesh28.MeshId = "rbxassetid://984153246"
  531. SpecialMesh28.Scale = Vector3.new(0.0450000018, 0.0299999993, 0.0390000008)
  532. SpecialMesh28.MeshType = Enum.MeshType.FileMesh
  533. SpecialMesh28.Scale = Vector3.new(0.0450000018, 0.0299999993, 0.0390000008)
  534. Part29.Parent = Model22
  535. Part29.Material = Enum.Material.SmoothPlastic
  536. Part29.BrickColor = BrickColor.new("Really black")
  537. Part29.Rotation = Vector3.new(-180, 0.0199999996, 180)
  538. Part29.Anchored = true
  539. Part29.CanCollide = false
  540. Part29.FormFactor = Enum.FormFactor.Custom
  541. Part29.Size = Vector3.new(4, 1, 2)
  542. Part29.CFrame = CFrame.new(54.6437531, 5.37705469, -30.6626587, -1.00000072, -2.01879793e-08, 0.000411999936, 0, 1, 4.90000421e-05, -0.000411999936, 4.89999911e-05, -1.00000072)
  543. Part29.BottomSurface = Enum.SurfaceType.Smooth
  544. Part29.TopSurface = Enum.SurfaceType.Smooth
  545. Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  546. Part29.Position = Vector3.new(54.6437531, 5.37705469, -30.6626587)
  547. Part29.Orientation = Vector3.new(0, 179.979996, 0)
  548. Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  549. SpecialMesh30.Parent = Part29
  550. SpecialMesh30.MeshId = "rbxassetid://984153246"
  551. SpecialMesh30.Scale = Vector3.new(0.0450000018, 0.0299999993, 0.0390000008)
  552. SpecialMesh30.MeshType = Enum.MeshType.FileMesh
  553. SpecialMesh30.Scale = Vector3.new(0.0450000018, 0.0299999993, 0.0390000008)
  554. Model31.Name = "LeftArm"
  555. Model31.Parent = Model0
  556. Part32.Name = "Left Arm1"
  557. Part32.Parent = Model31
  558. Part32.Material = Enum.Material.SmoothPlastic
  559. Part32.BrickColor = BrickColor.new("Pastel brown")
  560. Part32.Transparency = 1
  561. Part32.Rotation = Vector3.new(-180, 0, 0)
  562. Part32.Anchored = true
  563. Part32.CanCollide = false
  564. Part32.FormFactor = Enum.FormFactor.Plate
  565. Part32.Size = Vector3.new(1, 2, 1)
  566. Part32.CFrame = CFrame.new(56.0937576, 5.50006676, -30.6814327, 1, 4.45898877e-05, 3.27825364e-05, 4.45890255e-05, -1, 2.62771555e-05, 3.27837079e-05, -2.6275693e-05, -1)
  567. Part32.BottomSurface = Enum.SurfaceType.Smooth
  568. Part32.TopSurface = Enum.SurfaceType.Smooth
  569. Part32.Color = Color3.new(1, 0.8, 0.6)
  570. Part32.Position = Vector3.new(56.0937576, 5.50006676, -30.6814327)
  571. Part32.Orientation = Vector3.new(0, 180, 180)
  572. Part32.Color = Color3.new(1, 0.8, 0.6)
  573. Part33.Parent = Model31
  574. Part33.Material = Enum.Material.SmoothPlastic
  575. Part33.BrickColor = BrickColor.new("Really black")
  576. Part33.Rotation = Vector3.new(-180, 0.0199999996, 180)
  577. Part33.Anchored = true
  578. Part33.CanCollide = false
  579. Part33.FormFactor = Enum.FormFactor.Custom
  580. Part33.Size = Vector3.new(1.04000092, 2.03999949, 1.05000055)
  581. Part33.CFrame = CFrame.new(56.1034546, 5.4966073, -30.6945705, -1.00000155, -2.01879367e-08, 0.000412000285, 0, 1, 4.89999875e-05, -0.000412000285, 4.89998893e-05, -1.00000155)
  582. Part33.BottomSurface = Enum.SurfaceType.Smooth
  583. Part33.TopSurface = Enum.SurfaceType.Smooth
  584. Part33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  585. Part33.Position = Vector3.new(56.1034546, 5.4966073, -30.6945705)
  586. Part33.Orientation = Vector3.new(0, 179.979996, 0)
  587. Part33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  588. Part34.Parent = Model31
  589. Part34.Material = Enum.Material.SmoothPlastic
  590. Part34.BrickColor = BrickColor.new("Really black")
  591. Part34.Rotation = Vector3.new(-180, 0.0199999996, 170)
  592. Part34.Anchored = true
  593. Part34.CanCollide = false
  594. Part34.FormFactor = Enum.FormFactor.Custom
  595. Part34.Size = Vector3.new(1.0600009, 0.244614512, 1.07019281)
  596. Part34.CFrame = CFrame.new(56.1240654, 6.10024023, -30.6945381, -0.984807789, -0.173647821, 0.000411703862, -0.173647791, 0.984807909, 4.9239603e-05, -0.000413999514, -2.29999259e-05, -1)
  597. Part34.BottomSurface = Enum.SurfaceType.Smooth
  598. Part34.TopSurface = Enum.SurfaceType.Smooth
  599. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  600. Part34.Position = Vector3.new(56.1240654, 6.10024023, -30.6945381)
  601. Part34.Orientation = Vector3.new(0, 179.979996, -10)
  602. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  603. Part35.Parent = Model31
  604. Part35.Material = Enum.Material.SmoothPlastic
  605. Part35.BrickColor = BrickColor.new("Really black")
  606. Part35.Rotation = Vector3.new(-180, 0.0199999996, 170)
  607. Part35.Anchored = true
  608. Part35.CanCollide = false
  609. Part35.FormFactor = Enum.FormFactor.Custom
  610. Part35.Size = Vector3.new(1.15904844, 0.267471552, 1.17019272)
  611. Part35.CFrame = CFrame.new(56.0820656, 6.33844805, -30.6945419, -0.984807789, -0.173647821, 0.000411703862, -0.173647791, 0.984807909, 4.9239603e-05, -0.000413999514, -2.29999259e-05, -1)
  612. Part35.BottomSurface = Enum.SurfaceType.Smooth
  613. Part35.TopSurface = Enum.SurfaceType.Smooth
  614. Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  615. Part35.Position = Vector3.new(56.0820656, 6.33844805, -30.6945419)
  616. Part35.Orientation = Vector3.new(0, 179.979996, -10)
  617. Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  618. Part36.Parent = Model31
  619. Part36.Material = Enum.Material.SmoothPlastic
  620. Part36.BrickColor = BrickColor.new("Really black")
  621. Part36.Rotation = Vector3.new(-180, 0.0199999996, 170)
  622. Part36.Anchored = true
  623. Part36.CanCollide = false
  624. Part36.FormFactor = Enum.FormFactor.Custom
  625. Part36.Size = Vector3.new(1.11942935, 0.258328736, 1.13019276)
  626. Part36.CFrame = CFrame.new(56.1034927, 6.21692228, -30.69454, -0.984807789, -0.173647821, 0.000411703862, -0.173647791, 0.984807909, 4.9239603e-05, -0.000413999514, -2.29999259e-05, -1)
  627. Part36.BottomSurface = Enum.SurfaceType.Smooth
  628. Part36.TopSurface = Enum.SurfaceType.Smooth
  629. Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  630. Part36.Position = Vector3.new(56.1034927, 6.21692228, -30.69454)
  631. Part36.Orientation = Vector3.new(0, 179.979996, -10)
  632. Part36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  633. Model37.Name = "RightArm"
  634. Model37.Parent = Model0
  635. Part38.Name = "Right Arm1"
  636. Part38.Parent = Model37
  637. Part38.Material = Enum.Material.SmoothPlastic
  638. Part38.BrickColor = BrickColor.new("Pastel brown")
  639. Part38.Transparency = 1
  640. Part38.Rotation = Vector3.new(180, 0, 180)
  641. Part38.Anchored = true
  642. Part38.CanCollide = false
  643. Part38.FormFactor = Enum.FormFactor.Plate
  644. Part38.Size = Vector3.new(1, 2, 1)
  645. Part38.CFrame = CFrame.new(53.1336479, 5.5000248, -30.6814327, -1, -4.45878868e-05, 3.27852576e-05, -4.45890255e-05, 1, -3.47647074e-05, -3.27837079e-05, -3.47661698e-05, -1)
  646. Part38.BottomSurface = Enum.SurfaceType.Smooth
  647. Part38.TopSurface = Enum.SurfaceType.Smooth
  648. Part38.Color = Color3.new(1, 0.8, 0.6)
  649. Part38.Position = Vector3.new(53.1336479, 5.5000248, -30.6814327)
  650. Part38.Orientation = Vector3.new(0, 180, 0)
  651. Part38.Color = Color3.new(1, 0.8, 0.6)
  652. Part39.Parent = Model37
  653. Part39.Material = Enum.Material.SmoothPlastic
  654. Part39.BrickColor = BrickColor.new("Really black")
  655. Part39.Rotation = Vector3.new(0, -0.0199999996, -5)
  656. Part39.Anchored = true
  657. Part39.CanCollide = false
  658. Part39.FormFactor = Enum.FormFactor.Custom
  659. Part39.Size = Vector3.new(1.09961987, 0.253757328, 1.11019278)
  660. Part39.CFrame = CFrame.new(53.0772896, 5.14598989, -30.6944981, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  661. Part39.BottomSurface = Enum.SurfaceType.Smooth
  662. Part39.TopSurface = Enum.SurfaceType.Smooth
  663. Part39.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  664. Part39.Position = Vector3.new(53.0772896, 5.14598989, -30.6944981)
  665. Part39.Orientation = Vector3.new(0, -0.0199999996, -5)
  666. Part39.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  667. Part40.Parent = Model37
  668. Part40.Material = Enum.Material.SmoothPlastic
  669. Part40.BrickColor = BrickColor.new("Really black")
  670. Part40.Rotation = Vector3.new(0, -0.0199999996, -5)
  671. Part40.Anchored = true
  672. Part40.CanCollide = false
  673. Part40.FormFactor = Enum.FormFactor.Custom
  674. Part40.Size = Vector3.new(1.0600009, 0.244614512, 1.07019281)
  675. Part40.CFrame = CFrame.new(53.1165733, 5.59502745, -30.6945057, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  676. Part40.BottomSurface = Enum.SurfaceType.Smooth
  677. Part40.TopSurface = Enum.SurfaceType.Smooth
  678. Part40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  679. Part40.Position = Vector3.new(53.1165733, 5.59502745, -30.6945057)
  680. Part40.Orientation = Vector3.new(0, -0.0199999996, -5)
  681. Part40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  682. Part41.Parent = Model37
  683. Part41.Material = Enum.Material.SmoothPlastic
  684. Part41.BrickColor = BrickColor.new("Really black")
  685. Part41.Rotation = Vector3.new(0, -0.0199999996, -10)
  686. Part41.Anchored = true
  687. Part41.CanCollide = false
  688. Part41.FormFactor = Enum.FormFactor.Custom
  689. Part41.Size = Vector3.new(1.15904844, 0.267471552, 1.17019272)
  690. Part41.CFrame = CFrame.new(53.122097, 6.33833647, -30.69454, 0.98480773, 0.173647955, -0.000410372188, -0.173647955, 0.984807849, 5.10356404e-05, 0.000412999914, 2.09999889e-05, 1)
  691. Part41.BottomSurface = Enum.SurfaceType.Smooth
  692. Part41.TopSurface = Enum.SurfaceType.Smooth
  693. Part41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  694. Part41.Position = Vector3.new(53.122097, 6.33833647, -30.69454)
  695. Part41.Orientation = Vector3.new(0, -0.0199999996, -10)
  696. Part41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  697. Part42.Parent = Model37
  698. Part42.Material = Enum.Material.SmoothPlastic
  699. Part42.BrickColor = BrickColor.new("Really black")
  700. Part42.Rotation = Vector3.new(0, -0.0199999996, -10)
  701. Part42.Anchored = true
  702. Part42.CanCollide = false
  703. Part42.FormFactor = Enum.FormFactor.Custom
  704. Part42.Size = Vector3.new(1.11942935, 0.258328736, 1.13019276)
  705. Part42.CFrame = CFrame.new(53.1006622, 6.21681452, -30.6945419, 0.98480773, 0.173647955, -0.000410372188, -0.173647955, 0.984807849, 5.10356404e-05, 0.000412999914, 2.09999889e-05, 1)
  706. Part42.BottomSurface = Enum.SurfaceType.Smooth
  707. Part42.TopSurface = Enum.SurfaceType.Smooth
  708. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  709. Part42.Position = Vector3.new(53.1006622, 6.21681452, -30.6945419)
  710. Part42.Orientation = Vector3.new(0, -0.0199999996, -10)
  711. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  712. Part43.Parent = Model37
  713. Part43.Material = Enum.Material.SmoothPlastic
  714. Part43.BrickColor = BrickColor.new("Really black")
  715. Part43.Rotation = Vector3.new(0, -0.0199999996, -10)
  716. Part43.Anchored = true
  717. Part43.CanCollide = false
  718. Part43.FormFactor = Enum.FormFactor.Custom
  719. Part43.Size = Vector3.new(1.0600009, 0.244614512, 1.07019281)
  720. Part43.CFrame = CFrame.new(53.0800934, 6.10013247, -30.6945457, 0.98480773, 0.173647955, -0.000410372188, -0.173647955, 0.984807849, 5.10356404e-05, 0.000412999914, 2.09999889e-05, 1)
  721. Part43.BottomSurface = Enum.SurfaceType.Smooth
  722. Part43.TopSurface = Enum.SurfaceType.Smooth
  723. Part43.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  724. Part43.Position = Vector3.new(53.0800934, 6.10013247, -30.6945457)
  725. Part43.Orientation = Vector3.new(0, -0.0199999996, -10)
  726. Part43.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  727. Part44.Parent = Model37
  728. Part44.Material = Enum.Material.SmoothPlastic
  729. Part44.BrickColor = BrickColor.new("Really black")
  730. Part44.Rotation = Vector3.new(-180, 0.0199999996, 180)
  731. Part44.Anchored = true
  732. Part44.CanCollide = false
  733. Part44.FormFactor = Enum.FormFactor.Custom
  734. Part44.Size = Vector3.new(1.04000092, 2.03999949, 1.05000055)
  735. Part44.CFrame = CFrame.new(53.1334496, 5.49649954, -30.6957951, -1.00000155, -2.01879367e-08, 0.000412000285, 0, 1, 4.89999875e-05, -0.000412000285, 4.89998893e-05, -1.00000155)
  736. Part44.BottomSurface = Enum.SurfaceType.Smooth
  737. Part44.TopSurface = Enum.SurfaceType.Smooth
  738. Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  739. Part44.Position = Vector3.new(53.1334496, 5.49649954, -30.6957951)
  740. Part44.Orientation = Vector3.new(0, 179.979996, 0)
  741. Part44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  742. Part45.Parent = Model37
  743. Part45.Material = Enum.Material.SmoothPlastic
  744. Part45.BrickColor = BrickColor.new("Really black")
  745. Part45.Rotation = Vector3.new(0, -0.0199999996, -5)
  746. Part45.Anchored = true
  747. Part45.CanCollide = false
  748. Part45.FormFactor = Enum.FormFactor.Custom
  749. Part45.Size = Vector3.new(1.11942935, 0.258328736, 1.13019276)
  750. Part45.CFrame = CFrame.new(53.0572853, 4.91734838, -30.6944942, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  751. Part45.BottomSurface = Enum.SurfaceType.Smooth
  752. Part45.TopSurface = Enum.SurfaceType.Smooth
  753. Part45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  754. Part45.Position = Vector3.new(53.0572853, 4.91734838, -30.6944942)
  755. Part45.Orientation = Vector3.new(0, -0.0199999996, -5)
  756. Part45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  757. Part46.Parent = Model37
  758. Part46.Material = Enum.Material.SmoothPlastic
  759. Part46.BrickColor = BrickColor.new("Really black")
  760. Part46.Rotation = Vector3.new(0, -0.0199999996, -5)
  761. Part46.Anchored = true
  762. Part46.CanCollide = false
  763. Part46.FormFactor = Enum.FormFactor.Custom
  764. Part46.Size = Vector3.new(1.07981038, 0.24918592, 1.09019279)
  765. Part46.CFrame = CFrame.new(53.096283, 5.36310339, -30.6945019, 0.996194661, 0.0871559754, -0.000410120963, -0.087155968, 0.996194661, 5.09383208e-05, 0.000412999856, -1.49999914e-05, 1)
  766. Part46.BottomSurface = Enum.SurfaceType.Smooth
  767. Part46.TopSurface = Enum.SurfaceType.Smooth
  768. Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  769. Part46.Position = Vector3.new(53.096283, 5.36310339, -30.6945019)
  770. Part46.Orientation = Vector3.new(0, -0.0199999996, -5)
  771. Part46.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  772. Model47.Name = "LeftLeg"
  773. Model47.Parent = Model0
  774. Part48.Name = "Left Leg1"
  775. Part48.Parent = Model47
  776. Part48.Material = Enum.Material.SmoothPlastic
  777. Part48.BrickColor = BrickColor.new("Pastel brown")
  778. Part48.Transparency = 1
  779. Part48.Rotation = Vector3.new(-180, 0, 180)
  780. Part48.Anchored = true
  781. Part48.CanCollide = false
  782. Part48.FormFactor = Enum.FormFactor.Plate
  783. Part48.Size = Vector3.new(1, 2, 1)
  784. Part48.CFrame = CFrame.new(55.1337166, 3.50006151, -30.6814251, -1, -4.45898877e-05, 3.27825364e-05, -4.45890255e-05, 1, 2.62771555e-05, -3.27837079e-05, 2.6275693e-05, -1)
  785. Part48.Color = Color3.new(1, 0.8, 0.6)
  786. Part48.Position = Vector3.new(55.1337166, 3.50006151, -30.6814251)
  787. Part48.Orientation = Vector3.new(0, 180, 0)
  788. Part48.Color = Color3.new(1, 0.8, 0.6)
  789. Part49.Parent = Model47
  790. Part49.Material = Enum.Material.SmoothPlastic
  791. Part49.BrickColor = BrickColor.new("Really black")
  792. Part49.Rotation = Vector3.new(0, -0.0199999996, 0)
  793. Part49.Anchored = true
  794. Part49.CanCollide = false
  795. Part49.FormFactor = Enum.FormFactor.Custom
  796. Part49.Size = Vector3.new(0.470000774, 2.03999949, 1.09000051)
  797. Part49.CFrame = CFrame.new(55.4007912, 3.51605129, -30.6932621, 1, 1.97760013e-08, -0.000411999994, 0, 1, 4.80000017e-05, 0.000411999994, -4.79999944e-05, 1)
  798. Part49.BottomSurface = Enum.SurfaceType.Smooth
  799. Part49.TopSurface = Enum.SurfaceType.Smooth
  800. Part49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  801. Part49.Position = Vector3.new(55.4007912, 3.51605129, -30.6932621)
  802. Part49.Orientation = Vector3.new(0, -0.0199999996, 0)
  803. Part49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  804. Part50.Parent = Model47
  805. Part50.Material = Enum.Material.SmoothPlastic
  806. Part50.BrickColor = BrickColor.new("Really black")
  807. Part50.Rotation = Vector3.new(-180, 0.0199999996, 175)
  808. Part50.Anchored = true
  809. Part50.CanCollide = false
  810. Part50.FormFactor = Enum.FormFactor.Custom
  811. Part50.Size = Vector3.new(1.0600009, 0.244614512, 1.07019281)
  812. Part50.CFrame = CFrame.new(55.1119347, 3.61458588, -30.6943645, -0.996194661, -0.0871559754, 0.000411117129, -0.087155968, 0.996194661, 5.10254722e-05, -0.000413999864, 1.49999914e-05, -1)
  813. Part50.BottomSurface = Enum.SurfaceType.Smooth
  814. Part50.TopSurface = Enum.SurfaceType.Smooth
  815. Part50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  816. Part50.Position = Vector3.new(55.1119347, 3.61458588, -30.6943645)
  817. Part50.Orientation = Vector3.new(0, 179.979996, -5)
  818. Part50.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  819. Part51.Parent = Model47
  820. Part51.Material = Enum.Material.SmoothPlastic
  821. Part51.BrickColor = BrickColor.new("Really black")
  822. Part51.Rotation = Vector3.new(-180, 0.0199999996, 175)
  823. Part51.Anchored = true
  824. Part51.CanCollide = false
  825. Part51.FormFactor = Enum.FormFactor.Custom
  826. Part51.Size = Vector3.new(1.07981038, 0.24918592, 1.09019279)
  827. Part51.CFrame = CFrame.new(55.1322212, 3.38265944, -30.6943684, -0.996194661, -0.0871559754, 0.000411117129, -0.087155968, 0.996194661, 5.10254722e-05, -0.000413999864, 1.49999914e-05, -1)
  828. Part51.BottomSurface = Enum.SurfaceType.Smooth
  829. Part51.TopSurface = Enum.SurfaceType.Smooth
  830. Part51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  831. Part51.Position = Vector3.new(55.1322212, 3.38265944, -30.6943684)
  832. Part51.Orientation = Vector3.new(0, 179.979996, -5)
  833. Part51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  834. Part52.Parent = Model47
  835. Part52.Material = Enum.Material.SmoothPlastic
  836. Part52.BrickColor = BrickColor.new("Really black")
  837. Part52.Rotation = Vector3.new(-180, 0.0199999996, 175)
  838. Part52.Anchored = true
  839. Part52.CanCollide = false
  840. Part52.FormFactor = Enum.FormFactor.Custom
  841. Part52.Size = Vector3.new(1.09961987, 0.253757328, 1.11019278)
  842. Part52.CFrame = CFrame.new(55.1512222, 3.16554594, -30.6943722, -0.996194661, -0.0871559754, 0.000411117129, -0.087155968, 0.996194661, 5.10254722e-05, -0.000413999864, 1.49999914e-05, -1)
  843. Part52.BottomSurface = Enum.SurfaceType.Smooth
  844. Part52.TopSurface = Enum.SurfaceType.Smooth
  845. Part52.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  846. Part52.Position = Vector3.new(55.1512222, 3.16554594, -30.6943722)
  847. Part52.Orientation = Vector3.new(0, 179.979996, -5)
  848. Part52.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  849. Part53.Parent = Model47
  850. Part53.Material = Enum.Material.SmoothPlastic
  851. Part53.BrickColor = BrickColor.new("Really black")
  852. Part53.Rotation = Vector3.new(-180, 0.0199999996, 175)
  853. Part53.Anchored = true
  854. Part53.CanCollide = false
  855. Part53.FormFactor = Enum.FormFactor.Custom
  856. Part53.Size = Vector3.new(1.11942935, 0.258328736, 1.13019276)
  857. Part53.CFrame = CFrame.new(55.1712189, 2.93689871, -30.694376, -0.996194661, -0.0871559754, 0.000411117129, -0.087155968, 0.996194661, 5.10254722e-05, -0.000413999864, 1.49999914e-05, -1)
  858. Part53.BottomSurface = Enum.SurfaceType.Smooth
  859. Part53.TopSurface = Enum.SurfaceType.Smooth
  860. Part53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  861. Part53.Position = Vector3.new(55.1712189, 2.93689871, -30.694376)
  862. Part53.Orientation = Vector3.new(0, 179.979996, -5)
  863. Part53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  864. Part54.Parent = Model47
  865. Part54.Material = Enum.Material.SmoothPlastic
  866. Part54.BrickColor = BrickColor.new("Really black")
  867. Part54.Rotation = Vector3.new(0, -0.0199999996, 40)
  868. Part54.Anchored = true
  869. Part54.CanCollide = false
  870. Part54.FormFactor = Enum.FormFactor.Custom
  871. Part54.Size = Vector3.new(0.870000839, 0.239999145, 1.09000051)
  872. Part54.CFrame = CFrame.new(55.0988922, 3.7328558, -30.6934071, 0.76604414, -0.642787933, -0.000413087342, 0.642788053, 0.76604408, 4.89168051e-05, 0.000285000016, -0.000302999979, 1)
  873. Part54.BottomSurface = Enum.SurfaceType.Smooth
  874. Part54.TopSurface = Enum.SurfaceType.Smooth
  875. Part54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  876. Part54.Position = Vector3.new(55.0988922, 3.7328558, -30.6934071)
  877. Part54.Orientation = Vector3.new(0, -0.0199999996, 40)
  878. Part54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  879. Part55.Parent = Model47
  880. Part55.Material = Enum.Material.SmoothPlastic
  881. Part55.BrickColor = BrickColor.new("Really black")
  882. Part55.Rotation = Vector3.new(0, -0.0199999996, 0)
  883. Part55.Anchored = true
  884. Part55.CanCollide = false
  885. Part55.FormFactor = Enum.FormFactor.Custom
  886. Part55.Size = Vector3.new(1.04000092, 2.03999949, 1.05000055)
  887. Part55.CFrame = CFrame.new(55.0857964, 3.51605129, -30.6933937, 1, 1.97760013e-08, -0.000411999994, 0, 1, 4.80000017e-05, 0.000411999994, -4.79999944e-05, 1)
  888. Part55.BottomSurface = Enum.SurfaceType.Smooth
  889. Part55.TopSurface = Enum.SurfaceType.Smooth
  890. Part55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  891. Part55.Position = Vector3.new(55.0857964, 3.51605129, -30.6933937)
  892. Part55.Orientation = Vector3.new(0, -0.0199999996, 0)
  893. Part55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  894. Part56.Parent = Model47
  895. Part56.Material = Enum.Material.SmoothPlastic
  896. Part56.BrickColor = BrickColor.new("Really black")
  897. Part56.Rotation = Vector3.new(0, -0.0199999996, 0)
  898. Part56.Anchored = true
  899. Part56.CanCollide = false
  900. Part56.FormFactor = Enum.FormFactor.Custom
  901. Part56.Size = Vector3.new(1.07000089, 1.13999927, 1.09000051)
  902. Part56.CFrame = CFrame.new(55.1007919, 3.06605291, -30.6933689, 1, 1.97760013e-08, -0.000411999994, 0, 1, 4.80000017e-05, 0.000411999994, -4.79999944e-05, 1)
  903. Part56.BottomSurface = Enum.SurfaceType.Smooth
  904. Part56.TopSurface = Enum.SurfaceType.Smooth
  905. Part56.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  906. Part56.Position = Vector3.new(55.1007919, 3.06605291, -30.6933689)
  907. Part56.Orientation = Vector3.new(0, -0.0199999996, 0)
  908. Part56.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  909. Script57.Name = "Welds"
  910. Script57.Parent = Model0
  911. Script57.Disabled = true
  912. table.insert(cors,sandbox(Script57,function()
  913. --Saz
  914.  
  915. --A new system which is a combination of fast-welds and hard-welds.
  916. --Should be far, far better.
  917.  
  918. --When script.CreateNewWelds.Value == true, we create a new set of weld information on script run.
  919. --This toggles off automatically afterwards, to prevent issues that fast-welds can cause.
  920.  
  921. --Cruder than I wanted it to be, but not like I intended for anyone but me to use it anyway.
  922. --The fact that you're reading this means you should likely kill yourself. Immediately.
  923.  
  924. wait(.33)
  925.  
  926. Tool=script.Parent
  927. Nib=Tool.Parent
  928.  
  929.  
  930. for _,v in pairs(Nib:children()) do
  931. if v.className=="Hat" then
  932. v:Remove()
  933. end
  934. end
  935.  
  936. wait(1)
  937.  
  938. weldparts=function()
  939. print("Welding")
  940. lel={}
  941. function jarate(p)
  942. for i=1, #p do
  943. table.insert(lel,p[i])
  944. k=p[i]:children()
  945. if #k>0 then
  946. jarate(k)
  947. end
  948. end
  949. end
  950. for _,v in pairs(script.Parent:children()) do
  951. if v.Name~="Cloak" and v.className~="Script" then
  952. v:BreakJoints()
  953. jarate(v:children())
  954. end
  955. end
  956. for _,v in pairs(lel) do
  957. if v.className=="Weld" or v.className=="Motor6D" then
  958. v:Remove()
  959. end
  960. end
  961. for _,v in pairs(script.Parent["RightLeg"]:children()) do
  962. if v.Name~="Right Leg1" then
  963. w=Instance.new("Weld")
  964. w.Part0=script.Parent["RightLeg"]["Right Leg1"]
  965. w.Part1=v
  966. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  967. w.C0=script.Parent["RightLeg"]["Right Leg1"].CFrame:inverse()*CFrame.new(v.Position)
  968. w.Parent=w.Part0
  969. end
  970. end
  971. w=Instance.new("Weld")
  972. w.Part0=Nib["Right Leg"]
  973. w.Part1=script.Parent["RightLeg"]["Right Leg1"]
  974. w.Parent=w.Part0
  975. w.C0=CFrame.new(0,-.1,0)
  976. for _,v in pairs(script.Parent["LeftLeg"]:children()) do
  977. if v.Name~="Left Leg1" then
  978. w=Instance.new("Weld")
  979. w.Part0=script.Parent["LeftLeg"]["Left Leg1"]
  980. w.Part1=v
  981. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  982. w.C0=script.Parent["LeftLeg"]["Left Leg1"].CFrame:inverse()*CFrame.new(v.Position)
  983. w.Parent=w.Part0
  984. end
  985. end
  986. w=Instance.new("Weld")
  987. w.Part0=Nib["Left Leg"]
  988. w.Part1=script.Parent["LeftLeg"]["Left Leg1"]
  989. w.Parent=w.Part0
  990. w.C0=CFrame.new(0,-.1,0)
  991. for _,v in pairs(script.Parent["RightArm"]:children()) do
  992. if v.Name~="Right Arm1" then
  993. w=Instance.new("Weld")
  994. w.Part0=script.Parent["RightArm"]["Right Arm1"]
  995. w.Part1=v
  996. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  997. w.C0=script.Parent["RightArm"]["Right Arm1"].CFrame:inverse()*CFrame.new(v.Position)
  998. w.Parent=w.Part1
  999. end
  1000. end
  1001. w=Instance.new("Weld")
  1002. w.Part0=Nib["Right Arm"]
  1003. w.Part1=script.Parent["RightArm"]["Right Arm1"]
  1004. w.Parent=w.Part0
  1005. w.C0 = w.C0 * CFrame.Angles(0,math.rad(90),math.rad(90))
  1006.  
  1007. for _,v in pairs(script.Parent["LeftArm"]:children()) do
  1008. if v.Name~="Left Arm1" then
  1009. w=Instance.new("Weld")
  1010. w.Part0=script.Parent["LeftArm"]["Left Arm1"]
  1011. w.Part1=v
  1012. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  1013. w.C0=script.Parent["LeftArm"]["Left Arm1"].CFrame:inverse()*CFrame.new(v.Position)
  1014. w.Parent=w.Part0
  1015. end
  1016. end
  1017. w=Instance.new("Weld")
  1018. w.Part0=Nib["Left Arm"]
  1019. w.Part1=script.Parent["LeftArm"]["Left Arm1"]
  1020. w.Parent=w.Part0
  1021.  
  1022.  
  1023. for _,v in pairs(script.Parent["Head"]:children()) do
  1024. if v.Name~="Head1" then
  1025. w=Instance.new("Weld")
  1026. w.Part0=script.Parent["Head"]["Head1"]
  1027. w.Part1=v
  1028. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  1029. w.C0=script.Parent["Head"]["Head1"].CFrame:inverse()*CFrame.new(v.Position)
  1030. w.Parent=w.Part0
  1031. end
  1032. end
  1033. w=Instance.new("Weld")
  1034. w.Part0=Nib["Head"]
  1035. w.Part1=script.Parent["Head"]["Head1"]
  1036. w.Parent=w.Part0
  1037.  
  1038. for _,v in pairs(script.Parent["Torso"]:children()) do
  1039. if v.Name~="Torso1" then
  1040. w=Instance.new("Weld")
  1041. w.Part0=script.Parent["Torso"]["Torso1"]
  1042. w.Part1=v
  1043. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  1044. w.C0=script.Parent["Torso"]["Torso1"].CFrame:inverse()*CFrame.new(v.Position)
  1045. w.Parent=script.Parent["Torso"]["Torso1"]
  1046. end
  1047. end
  1048.  
  1049. w=Instance.new("Weld")
  1050. w.Part0=Nib["Torso"]
  1051. w.Part1=script.Parent["Torso"]["Torso1"]
  1052. w.C0=w.C0*CFrame.fromEulerAnglesXYZ(0,0,0)
  1053. w.Parent=w.Part0
  1054.  
  1055. for _,v in pairs(lel) do
  1056. if v:IsA("BasePart") then v.Anchored=false end
  1057. end
  1058.  
  1059.  
  1060.  
  1061. wait(1)
  1062.  
  1063. w=Instance.new("Weld")
  1064. w.Part0=Nib.Torso
  1065. w.Part1=Tool.Torso.Torso1
  1066. w.C0=CFrame.new(0,0,0) * CFrame.fromEulerAnglesXYZ(0,0,math.pi)
  1067. w.C1=CFrame.new(0,0,0)
  1068. w.Parent=w.Part1
  1069. w.Name="ClothingWeld"
  1070.  
  1071. wait(.06)
  1072.  
  1073. while Tool.Torso.Torso1:FindFirstChild("ClothingWeld")==nil do
  1074. wait(.03)
  1075. w=Instance.new("Weld")
  1076. w.Part0=Nib.Torso
  1077. w.Part1=Tool.Torso.Torso1
  1078. w.C0=CFrame.new(0,0,0) * CFrame.fromEulerAnglesXYZ(0,0,math.pi)
  1079. w.C1=CFrame.new(0,0,0)
  1080. w.Parent=w.Part1
  1081. w.Name="ClothingWeld"
  1082. end
  1083.  
  1084. w=Instance.new("Weld")
  1085. w.Part0=Nib["Right Leg"]
  1086. w.Part1=Tool.RightLeg["Right Leg1"]
  1087. w.C0=CFrame.new(0,0,0)
  1088. w.C1=CFrame.new(0,0,0)
  1089. w.Parent=w.Part1
  1090. w.Name="ClothingWeld"
  1091.  
  1092. w=Instance.new("Weld")
  1093. w.Part0=Nib["Left Leg"]
  1094. w.Part1=Tool.LeftLeg["Left Leg1"]
  1095. w.C0=CFrame.new(0,0,0)
  1096. w.C1=CFrame.new(0,0,0)
  1097. w.Parent=w.Part1
  1098. w.Name="ClothingWeld"
  1099.  
  1100. w=Instance.new("Weld")
  1101. w.Part0=Nib["Right Arm"]
  1102. w.Part1=Tool.RightArm["Right Arm1"]
  1103. w.C0=CFrame.new(0,0,0)
  1104. w.C1=CFrame.new(0,0,0)
  1105. w.Parent=w.Part1
  1106. w.Name="ClothingWeld"
  1107.  
  1108. w=Instance.new("Weld")
  1109. w.Part0=Nib["Left Arm"]
  1110. w.Part1=Tool.LeftArm["Left Arm1"]
  1111. w.C0=CFrame.new(0,0,0) * CFrame.fromEulerAnglesXYZ(0,0,math.pi)
  1112. w.C1=CFrame.new(0,0,0)
  1113. w.Parent=w.Part1
  1114. w.Name="ClothingWeld"
  1115.  
  1116. wait()
  1117.  
  1118. end
  1119. weldparts()
  1120.  
  1121. end))
  1122. for i,v in pairs(mas:GetChildren()) do
  1123. v.Parent = game:GetService("Players").LocalPlayer.Character
  1124. pcall(function() v:MakeJoints() end)
  1125. end
  1126. mas:Destroy()
  1127. for i,v in pairs(cors) do
  1128. spawn(function()
  1129. pcall(v)
  1130. end)
  1131. end
  1132.  
  1133. wait(.5)
  1134. local p = game.Players.LocalPlayer
  1135. local char = p.Character
  1136. local mouse = p:GetMouse()
  1137. local larm = char["Left Arm"]
  1138. local rarm = char["Right Arm"]
  1139. local lleg = char["Left Leg"]
  1140. local rleg = char["Right Leg"]
  1141. local hed = char.Head
  1142. local torso = char.Torso
  1143. local hum = char["Humanoid"]
  1144. local cam = game.Workspace.CurrentCamera
  1145. local root = char.HumanoidRootPart
  1146. local deb = false
  1147. local CanAttack = true
  1148. local shot = 0
  1149. local animpose = "Idle"
  1150. local lastanimpose = "Idle"
  1151. local stanceToggle = "Sheathed"
  1152. local l = game:GetService("Lighting")
  1153. local rs = game:GetService("RunService").RenderStepped
  1154. local equipped = false
  1155. local rp = char.HumanoidRootPart
  1156. local bang = false
  1157. local change = .5
  1158. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  1159. local eColors={'Really black','Really black'}
  1160. asd = function()
  1161. print("MonoGod v2 loaded")
  1162. local p = game.Players.LocalPlayer
  1163. local char = p.Character
  1164. local hum = char.Humanoid
  1165. hum.MaxHealth=9999999999999999999999999999999999999999999999999999999999
  1166. hum.Health = hum.MaxHealth
  1167. print("Set your humanoids health successfully!")
  1168. local ff=Instance.new("ForceField",char)
  1169. print("Force field successfully created!")
  1170. wait(.3)
  1171. ff.Visible=false
  1172. print("Force field hidden!")
  1173. spawn(function()
  1174. while wait() do
  1175. while true do wait() hum.Health = hum.MaxHealth
  1176.  
  1177. end
  1178. end
  1179. end)
  1180. print("Looping healing!")
  1181. wait(1)
  1182. print("Finished loading! Thanks for using my armor! Or whatever it is that uses this..")
  1183. end
  1184. ----------------------------------------------
  1185. --this was made for easy cosmetic editing
  1186. --by mono
  1187. wait(.2)
  1188. --funcs
  1189. attacktype=1
  1190. attack = false
  1191. attackdebounce = false
  1192.  
  1193. combo=0
  1194. trispeed=.2
  1195. attackmode='none'
  1196.  
  1197. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z) --thanks to KingAbsalom
  1198. local wld = Instance.new("Weld", wp1)
  1199. wld.Part0 = wp0
  1200. wld.Part1 = wp1
  1201. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  1202. end
  1203. --
  1204. for i,v in pairs(game.Players.LocalPlayer.Character.Head:children()) do
  1205. if v:IsA("Sound") then
  1206. v:Destroy()
  1207. end
  1208. end
  1209. --
  1210. for i,v in pairs(game.Players.LocalPlayer.Character:children()) do
  1211. if v:IsA("Accessory") then
  1212. v:Destroy()
  1213. end
  1214. end
  1215. --skin
  1216. game.Players.LocalPlayer.Character["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  1217. game.Players.LocalPlayer.Character["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  1218. game.Players.LocalPlayer.Character["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  1219. game.Players.LocalPlayer.Character["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  1220. game.Players.LocalPlayer.Character["Body Colors"].LeftLegColor = BrickColor.new("Pastel brown")
  1221. game.Players.LocalPlayer.Character["Body Colors"].RightLegColor = BrickColor.new("Pastel brown")
  1222. ----------------------------------------------
  1223. --[[
  1224. newWeld(workspace.MonolithicDivinity, a, 0, 0, 0)
  1225. a.Weld.C1 = CFrame.new(0,-.38,0) * CFrame.Angles(0,0,0)
  1226.  
  1227. --]]
  1228. -------------------------------
  1229. Debounces = {CanAttack = true, NoIdl = false, Slashing = false, Slashed = false, RPunch = false, RPunched = false, LPunch = false, LPunched = false, Reaping = false, Reaped = false}
  1230.  
  1231. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  1232. ----------------------------------------------------
  1233. ------------------------------------------------------------------------------------------------------------
  1234. --Converted with ttyyuu12345's model to script plugin v4
  1235. function sandbox(var,func)
  1236. local env = getfenv(func)
  1237. local newenv = setmetatable({},{
  1238. __index = function(self,k)
  1239. if k=="script" then
  1240. return var
  1241. else
  1242. return env[k]
  1243. end
  1244. end,
  1245. })
  1246. setfenv(func,newenv)
  1247. return func
  1248. end
  1249. cors = {}
  1250. mas = Instance.new("Model",game:GetService("Lighting"))
  1251. Model0 = Instance.new("Model")
  1252. Part1 = Instance.new("Part")
  1253. Folder2 = Instance.new("Folder")
  1254. CFrameValue3 = Instance.new("CFrameValue")
  1255. Part4 = Instance.new("Part")
  1256. CylinderMesh5 = Instance.new("CylinderMesh")
  1257. Folder6 = Instance.new("Folder")
  1258. CFrameValue7 = Instance.new("CFrameValue")
  1259. Part8 = Instance.new("Part")
  1260. SpecialMesh9 = Instance.new("SpecialMesh")
  1261. Folder10 = Instance.new("Folder")
  1262. CFrameValue11 = Instance.new("CFrameValue")
  1263. Part12 = Instance.new("Part")
  1264. SpecialMesh13 = Instance.new("SpecialMesh")
  1265. Folder14 = Instance.new("Folder")
  1266. CFrameValue15 = Instance.new("CFrameValue")
  1267. Part16 = Instance.new("Part")
  1268. CylinderMesh17 = Instance.new("CylinderMesh")
  1269. Folder18 = Instance.new("Folder")
  1270. CFrameValue19 = Instance.new("CFrameValue")
  1271. Part20 = Instance.new("Part")
  1272. CylinderMesh21 = Instance.new("CylinderMesh")
  1273. Folder22 = Instance.new("Folder")
  1274. CFrameValue23 = Instance.new("CFrameValue")
  1275. Part24 = Instance.new("Part")
  1276. CylinderMesh25 = Instance.new("CylinderMesh")
  1277. Folder26 = Instance.new("Folder")
  1278. CFrameValue27 = Instance.new("CFrameValue")
  1279. Part28 = Instance.new("Part")
  1280. Folder29 = Instance.new("Folder")
  1281. CFrameValue30 = Instance.new("CFrameValue")
  1282. Part31 = Instance.new("Part")
  1283. Folder32 = Instance.new("Folder")
  1284. CFrameValue33 = Instance.new("CFrameValue")
  1285. Part34 = Instance.new("Part")
  1286. CylinderMesh35 = Instance.new("CylinderMesh")
  1287. Folder36 = Instance.new("Folder")
  1288. CFrameValue37 = Instance.new("CFrameValue")
  1289. Part38 = Instance.new("Part")
  1290. CylinderMesh39 = Instance.new("CylinderMesh")
  1291. Folder40 = Instance.new("Folder")
  1292. CFrameValue41 = Instance.new("CFrameValue")
  1293. Part42 = Instance.new("Part")
  1294. SpecialMesh43 = Instance.new("SpecialMesh")
  1295. Folder44 = Instance.new("Folder")
  1296. CFrameValue45 = Instance.new("CFrameValue")
  1297. Part46 = Instance.new("Part")
  1298. Motor47 = Instance.new("Motor")
  1299. Motor48 = Instance.new("Motor")
  1300. Motor49 = Instance.new("Motor")
  1301. Motor50 = Instance.new("Motor")
  1302. Motor51 = Instance.new("Motor")
  1303. Motor52 = Instance.new("Motor")
  1304. Motor53 = Instance.new("Motor")
  1305. Motor54 = Instance.new("Motor")
  1306. Motor55 = Instance.new("Motor")
  1307. Motor56 = Instance.new("Motor")
  1308. Motor57 = Instance.new("Motor")
  1309. Motor58 = Instance.new("Motor")
  1310. Motor59 = Instance.new("Motor")
  1311. Motor60 = Instance.new("Motor")
  1312. Motor61 = Instance.new("Motor")
  1313. Motor62 = Instance.new("Motor")
  1314. Motor63 = Instance.new("Motor")
  1315. Motor64 = Instance.new("Motor")
  1316. Motor65 = Instance.new("Motor")
  1317. Motor66 = Instance.new("Motor")
  1318. Motor67 = Instance.new("Motor")
  1319. Motor68 = Instance.new("Motor")
  1320. Motor69 = Instance.new("Motor")
  1321. Motor70 = Instance.new("Motor")
  1322. Motor71 = Instance.new("Motor")
  1323. Motor72 = Instance.new("Motor")
  1324. Motor73 = Instance.new("Motor")
  1325. Weld74 = Instance.new("Weld")
  1326. Motor75 = Instance.new("Motor")
  1327. Motor76 = Instance.new("Motor")
  1328. Motor77 = Instance.new("Motor")
  1329. Motor78 = Instance.new("Motor")
  1330. Motor79 = Instance.new("Motor")
  1331. Motor80 = Instance.new("Motor")
  1332. Motor81 = Instance.new("Motor")
  1333. Motor82 = Instance.new("Motor")
  1334. Motor83 = Instance.new("Motor")
  1335. Motor84 = Instance.new("Motor")
  1336. Motor85 = Instance.new("Motor")
  1337. Motor86 = Instance.new("Motor")
  1338. Motor87 = Instance.new("Motor")
  1339. Motor88 = Instance.new("Motor")
  1340. Motor89 = Instance.new("Motor")
  1341. Motor90 = Instance.new("Motor")
  1342. Motor91 = Instance.new("Motor")
  1343. Motor92 = Instance.new("Motor")
  1344. Motor93 = Instance.new("Motor")
  1345. Motor94 = Instance.new("Motor")
  1346. Motor95 = Instance.new("Motor")
  1347. Motor96 = Instance.new("Motor")
  1348. Motor97 = Instance.new("Motor")
  1349. Motor98 = Instance.new("Motor")
  1350. Motor99 = Instance.new("Motor")
  1351. Motor100 = Instance.new("Motor")
  1352. Motor101 = Instance.new("Motor")
  1353. Motor102 = Instance.new("Motor")
  1354. Motor103 = Instance.new("Motor")
  1355. Motor104 = Instance.new("Motor")
  1356. Folder105 = Instance.new("Folder")
  1357. CFrameValue106 = Instance.new("CFrameValue")
  1358. Motor107 = Instance.new("Motor")
  1359. Motor108 = Instance.new("Motor")
  1360. Part109 = Instance.new("Part")
  1361. SpecialMesh110 = Instance.new("SpecialMesh")
  1362. Folder111 = Instance.new("Folder")
  1363. CFrameValue112 = Instance.new("CFrameValue")
  1364. Part113 = Instance.new("Part")
  1365. Folder114 = Instance.new("Folder")
  1366. CFrameValue115 = Instance.new("CFrameValue")
  1367. Part116 = Instance.new("Part")
  1368. CylinderMesh117 = Instance.new("CylinderMesh")
  1369. Folder118 = Instance.new("Folder")
  1370. CFrameValue119 = Instance.new("CFrameValue")
  1371. Part120 = Instance.new("Part")
  1372. Folder121 = Instance.new("Folder")
  1373. CFrameValue122 = Instance.new("CFrameValue")
  1374. Part123 = Instance.new("Part")
  1375. CylinderMesh124 = Instance.new("CylinderMesh")
  1376. Folder125 = Instance.new("Folder")
  1377. CFrameValue126 = Instance.new("CFrameValue")
  1378. Part127 = Instance.new("Part")
  1379. CylinderMesh128 = Instance.new("CylinderMesh")
  1380. Folder129 = Instance.new("Folder")
  1381. CFrameValue130 = Instance.new("CFrameValue")
  1382. Part131 = Instance.new("Part")
  1383. CylinderMesh132 = Instance.new("CylinderMesh")
  1384. Folder133 = Instance.new("Folder")
  1385. CFrameValue134 = Instance.new("CFrameValue")
  1386. Part135 = Instance.new("Part")
  1387. SpecialMesh136 = Instance.new("SpecialMesh")
  1388. Folder137 = Instance.new("Folder")
  1389. CFrameValue138 = Instance.new("CFrameValue")
  1390. Part139 = Instance.new("Part")
  1391. CylinderMesh140 = Instance.new("CylinderMesh")
  1392. Folder141 = Instance.new("Folder")
  1393. CFrameValue142 = Instance.new("CFrameValue")
  1394. Part143 = Instance.new("Part")
  1395. CylinderMesh144 = Instance.new("CylinderMesh")
  1396. Folder145 = Instance.new("Folder")
  1397. CFrameValue146 = Instance.new("CFrameValue")
  1398. Part147 = Instance.new("Part")
  1399. CylinderMesh148 = Instance.new("CylinderMesh")
  1400. Folder149 = Instance.new("Folder")
  1401. CFrameValue150 = Instance.new("CFrameValue")
  1402. Part151 = Instance.new("Part")
  1403. CylinderMesh152 = Instance.new("CylinderMesh")
  1404. Folder153 = Instance.new("Folder")
  1405. CFrameValue154 = Instance.new("CFrameValue")
  1406. Part155 = Instance.new("Part")
  1407. SpecialMesh156 = Instance.new("SpecialMesh")
  1408. Folder157 = Instance.new("Folder")
  1409. CFrameValue158 = Instance.new("CFrameValue")
  1410. Part159 = Instance.new("Part")
  1411. SpecialMesh160 = Instance.new("SpecialMesh")
  1412. Folder161 = Instance.new("Folder")
  1413. CFrameValue162 = Instance.new("CFrameValue")
  1414. Part163 = Instance.new("Part")
  1415. CylinderMesh164 = Instance.new("CylinderMesh")
  1416. Folder165 = Instance.new("Folder")
  1417. CFrameValue166 = Instance.new("CFrameValue")
  1418. Part167 = Instance.new("Part")
  1419. CylinderMesh168 = Instance.new("CylinderMesh")
  1420. Folder169 = Instance.new("Folder")
  1421. CFrameValue170 = Instance.new("CFrameValue")
  1422. Part171 = Instance.new("Part")
  1423. CylinderMesh172 = Instance.new("CylinderMesh")
  1424. Folder173 = Instance.new("Folder")
  1425. CFrameValue174 = Instance.new("CFrameValue")
  1426. Part175 = Instance.new("Part")
  1427. Folder176 = Instance.new("Folder")
  1428. CFrameValue177 = Instance.new("CFrameValue")
  1429. Part178 = Instance.new("Part")
  1430. CylinderMesh179 = Instance.new("CylinderMesh")
  1431. ParticleEmitter180 = Instance.new("ParticleEmitter")
  1432. Folder181 = Instance.new("Folder")
  1433. CFrameValue182 = Instance.new("CFrameValue")
  1434. Part183 = Instance.new("Part")
  1435. CylinderMesh184 = Instance.new("CylinderMesh")
  1436. Folder185 = Instance.new("Folder")
  1437. CFrameValue186 = Instance.new("CFrameValue")
  1438. Part187 = Instance.new("Part")
  1439. CylinderMesh188 = Instance.new("CylinderMesh")
  1440. Folder189 = Instance.new("Folder")
  1441. CFrameValue190 = Instance.new("CFrameValue")
  1442. Part191 = Instance.new("Part")
  1443. SpecialMesh192 = Instance.new("SpecialMesh")
  1444. Folder193 = Instance.new("Folder")
  1445. CFrameValue194 = Instance.new("CFrameValue")
  1446. Part195 = Instance.new("Part")
  1447. CylinderMesh196 = Instance.new("CylinderMesh")
  1448. Folder197 = Instance.new("Folder")
  1449. CFrameValue198 = Instance.new("CFrameValue")
  1450. Part199 = Instance.new("Part")
  1451. SpecialMesh200 = Instance.new("SpecialMesh")
  1452. Folder201 = Instance.new("Folder")
  1453. CFrameValue202 = Instance.new("CFrameValue")
  1454. Part203 = Instance.new("Part")
  1455. CylinderMesh204 = Instance.new("CylinderMesh")
  1456. Folder205 = Instance.new("Folder")
  1457. CFrameValue206 = Instance.new("CFrameValue")
  1458. Part207 = Instance.new("Part")
  1459. Folder208 = Instance.new("Folder")
  1460. CFrameValue209 = Instance.new("CFrameValue")
  1461. Part210 = Instance.new("Part")
  1462. CylinderMesh211 = Instance.new("CylinderMesh")
  1463. Folder212 = Instance.new("Folder")
  1464. CFrameValue213 = Instance.new("CFrameValue")
  1465. Part214 = Instance.new("Part")
  1466. SpecialMesh215 = Instance.new("SpecialMesh")
  1467. Folder216 = Instance.new("Folder")
  1468. CFrameValue217 = Instance.new("CFrameValue")
  1469. Part218 = Instance.new("Part")
  1470. CylinderMesh219 = Instance.new("CylinderMesh")
  1471. Folder220 = Instance.new("Folder")
  1472. CFrameValue221 = Instance.new("CFrameValue")
  1473. Part222 = Instance.new("Part")
  1474. Folder223 = Instance.new("Folder")
  1475. CFrameValue224 = Instance.new("CFrameValue")
  1476. Part225 = Instance.new("Part")
  1477. CylinderMesh226 = Instance.new("CylinderMesh")
  1478. Folder227 = Instance.new("Folder")
  1479. CFrameValue228 = Instance.new("CFrameValue")
  1480. Part229 = Instance.new("Part")
  1481. CylinderMesh230 = Instance.new("CylinderMesh")
  1482. Folder231 = Instance.new("Folder")
  1483. CFrameValue232 = Instance.new("CFrameValue")
  1484. Part233 = Instance.new("Part")
  1485. CylinderMesh234 = Instance.new("CylinderMesh")
  1486. Folder235 = Instance.new("Folder")
  1487. CFrameValue236 = Instance.new("CFrameValue")
  1488. Part237 = Instance.new("Part")
  1489. CylinderMesh238 = Instance.new("CylinderMesh")
  1490. Folder239 = Instance.new("Folder")
  1491. CFrameValue240 = Instance.new("CFrameValue")
  1492. Part241 = Instance.new("Part")
  1493. CylinderMesh242 = Instance.new("CylinderMesh")
  1494. Folder243 = Instance.new("Folder")
  1495. CFrameValue244 = Instance.new("CFrameValue")
  1496. Part245 = Instance.new("Part")
  1497. SpecialMesh246 = Instance.new("SpecialMesh")
  1498. Folder247 = Instance.new("Folder")
  1499. CFrameValue248 = Instance.new("CFrameValue")
  1500. Part249 = Instance.new("Part")
  1501. CylinderMesh250 = Instance.new("CylinderMesh")
  1502. Folder251 = Instance.new("Folder")
  1503. CFrameValue252 = Instance.new("CFrameValue")
  1504. Part253 = Instance.new("Part")
  1505. CylinderMesh254 = Instance.new("CylinderMesh")
  1506. Folder255 = Instance.new("Folder")
  1507. CFrameValue256 = Instance.new("CFrameValue")
  1508. Part257 = Instance.new("Part")
  1509. CylinderMesh258 = Instance.new("CylinderMesh")
  1510. Folder259 = Instance.new("Folder")
  1511. CFrameValue260 = Instance.new("CFrameValue")
  1512. Part261 = Instance.new("Part")
  1513. CylinderMesh262 = Instance.new("CylinderMesh")
  1514. Folder263 = Instance.new("Folder")
  1515. CFrameValue264 = Instance.new("CFrameValue")
  1516. Part265 = Instance.new("Part")
  1517. SpecialMesh266 = Instance.new("SpecialMesh")
  1518. Folder267 = Instance.new("Folder")
  1519. CFrameValue268 = Instance.new("CFrameValue")
  1520. WedgePart269 = Instance.new("WedgePart")
  1521. Folder270 = Instance.new("Folder")
  1522. CFrameValue271 = Instance.new("CFrameValue")
  1523. WedgePart272 = Instance.new("WedgePart")
  1524. Folder273 = Instance.new("Folder")
  1525. CFrameValue274 = Instance.new("CFrameValue")
  1526. WedgePart275 = Instance.new("WedgePart")
  1527. Folder276 = Instance.new("Folder")
  1528. CFrameValue277 = Instance.new("CFrameValue")
  1529. WedgePart278 = Instance.new("WedgePart")
  1530. Folder279 = Instance.new("Folder")
  1531. CFrameValue280 = Instance.new("CFrameValue")
  1532. WedgePart281 = Instance.new("WedgePart")
  1533. Folder282 = Instance.new("Folder")
  1534. CFrameValue283 = Instance.new("CFrameValue")
  1535. Model0.Name = "armcannon"
  1536. Model0.Parent = mas
  1537. Part1.Parent = Model0
  1538. Part1.Material = Enum.Material.Metal
  1539. Part1.BrickColor = BrickColor.new("Really black")
  1540. Part1.Reflectance = 0.10000000149012
  1541. Part1.Rotation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  1542. Part1.CanCollide = false
  1543. Part1.Size = Vector3.new(1.23000121, 0.0500000007, 0.349811196)
  1544. Part1.CFrame = CFrame.new(0.0371448994, 8.13310719, 0.022495687, 0.999998748, 0.00138882664, -0.000503995281, -0.00138803478, 0.999997675, 0.00155193405, 0.000506225624, -0.0015512252, 0.999998569)
  1545. Part1.BottomSurface = Enum.SurfaceType.Smooth
  1546. Part1.TopSurface = Enum.SurfaceType.Smooth
  1547. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1548. Part1.Position = Vector3.new(0.0371448994, 8.13310719, 0.022495687)
  1549. Part1.Orientation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  1550. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1551. Folder2.Name = "CFrames"
  1552. Folder2.Parent = Part1
  1553. CFrameValue3.Name = "C0"
  1554. CFrameValue3.Parent = Folder2
  1555. CFrameValue3.Value = CFrame.new(0.0815647691, -0.373321056, -0.00768661499, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  1556. Part4.Parent = Model0
  1557. Part4.Material = Enum.Material.Metal
  1558. Part4.BrickColor = BrickColor.new("Really black")
  1559. Part4.Reflectance = 0.20000000298023
  1560. Part4.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  1561. Part4.CanCollide = false
  1562. Part4.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  1563. Part4.CFrame = CFrame.new(-0.469883472, 6.71011829, -0.0859385133, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  1564. Part4.BottomSurface = Enum.SurfaceType.Smooth
  1565. Part4.TopSurface = Enum.SurfaceType.Smooth
  1566. Part4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1567. Part4.Position = Vector3.new(-0.469883472, 6.71011829, -0.0859385133)
  1568. Part4.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  1569. Part4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1570. CylinderMesh5.Parent = Part4
  1571. Folder6.Name = "CFrames"
  1572. Folder6.Parent = Part4
  1573. CFrameValue7.Name = "C0"
  1574. CFrameValue7.Parent = Folder6
  1575. CFrameValue7.Value = CFrame.new(0.586633861, 1.05020094, -0.118249908, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1576. Part8.Parent = Model0
  1577. Part8.Material = Enum.Material.Metal
  1578. Part8.BrickColor = BrickColor.new("Really black")
  1579. Part8.Reflectance = 0.20000000298023
  1580. Part8.Rotation = Vector3.new(-110.029999, -89.909996, -109.939995)
  1581. Part8.CanCollide = false
  1582. Part8.Size = Vector3.new(0.0500000007, 0.147224233, 0.136373296)
  1583. Part8.CFrame = CFrame.new(-0.0507747307, 7.29127216, -0.503315866, -0.000503919786, 0.00138882664, -0.999998748, 0.00155193394, 0.999997675, 0.0013880349, 0.999998569, -0.0015512252, -0.000506150071)
  1584. Part8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. Part8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. Part8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. Part8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. Part8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1590. Part8.Position = Vector3.new(-0.0507747307, 7.29127216, -0.503315866)
  1591. Part8.Orientation = Vector3.new(-0.0799999982, -90.0299988, 0.0899999961)
  1592. Part8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1593. SpecialMesh9.Parent = Part8
  1594. SpecialMesh9.MeshType = Enum.MeshType.Sphere
  1595. Folder10.Name = "CFrames"
  1596. Folder10.Parent = Part8
  1597. CFrameValue11.Name = "C0"
  1598. CFrameValue11.Parent = Folder10
  1599. CFrameValue11.Value = CFrame.new(0.168397918, 0.467819214, -0.534789979, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  1600. Part12.Parent = Model0
  1601. Part12.Material = Enum.Material.Metal
  1602. Part12.BrickColor = BrickColor.new("Really black")
  1603. Part12.Reflectance = 0.10000000149012
  1604. Part12.Rotation = Vector3.new(90.0199966, -70.0800018, 90.0999985)
  1605. Part12.CanCollide = false
  1606. Part12.Size = Vector3.new(0.166545585, 0.179778785, 0.162522167)
  1607. Part12.CFrame = CFrame.new(-0.489252657, 6.58679008, -0.0874458104, -0.000618976075, -0.340714693, -0.940166473, 0.00138808647, 0.940165341, -0.340715319, 0.999998808, -0.001515946, -0.000109072309)
  1608. Part12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1609. Part12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1610. Part12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1611. Part12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1612. Part12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1613. Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1614. Part12.Position = Vector3.new(-0.489252657, 6.58679008, -0.0874458104)
  1615. Part12.Orientation = Vector3.new(19.9200001, -90.0099945, 0.0799999982)
  1616. Part12.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1617. SpecialMesh13.Parent = Part12
  1618. SpecialMesh13.MeshType = Enum.MeshType.Sphere
  1619. Folder14.Name = "CFrames"
  1620. Folder14.Parent = Part12
  1621. CFrameValue15.Name = "C0"
  1622. CFrameValue15.Parent = Folder14
  1623. CFrameValue15.Value = CFrame.new(0.605831981, 1.17355347, -0.119945541, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  1624. Part16.Parent = Model0
  1625. Part16.Material = Enum.Material.Metal
  1626. Part16.BrickColor = BrickColor.new("Really black")
  1627. Part16.Reflectance = 0.10000000149012
  1628. Part16.Rotation = Vector3.new(179.919998, 0.0299999993, 130.080002)
  1629. Part16.CanCollide = false
  1630. Part16.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  1631. Part16.CFrame = CFrame.new(-0.419010371, 6.54017735, 0.409794092, -0.643850625, -0.765150905, 0.000504107738, -0.765150666, 0.643849611, -0.00137740129, 0.000729295774, -0.00127261272, -0.999998868)
  1632. Part16.BottomSurface = Enum.SurfaceType.Smooth
  1633. Part16.TopSurface = Enum.SurfaceType.Smooth
  1634. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1635. Part16.Position = Vector3.new(-0.419010371, 6.54017735, 0.409794092)
  1636. Part16.Orientation = Vector3.new(0.0799999982, 179.970001, -49.9199982)
  1637. Part16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1638. CylinderMesh17.Parent = Part16
  1639. Folder18.Name = "CFrames"
  1640. Folder18.Parent = Part16
  1641. CFrameValue19.Name = "C0"
  1642. CFrameValue19.Parent = Folder18
  1643. CFrameValue19.Value = CFrame.new(0.535447061, 1.22083998, 0.377210587, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  1644. Part20.Parent = Model0
  1645. Part20.Material = Enum.Material.Metal
  1646. Part20.BrickColor = BrickColor.new("Really black")
  1647. Part20.Reflectance = 0.10000000149012
  1648. Part20.Rotation = Vector3.new(179.919998, 0.0299999993, 130.080002)
  1649. Part20.CanCollide = false
  1650. Part20.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  1651. Part20.CFrame = CFrame.new(-0.418934017, 6.53941154, -0.0839682221, -0.643850625, -0.765150905, 0.000504107738, -0.765150666, 0.643849611, -0.00137740129, 0.000729295774, -0.00127261272, -0.999998868)
  1652. Part20.BottomSurface = Enum.SurfaceType.Smooth
  1653. Part20.TopSurface = Enum.SurfaceType.Smooth
  1654. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1655. Part20.Position = Vector3.new(-0.418934017, 6.53941154, -0.0839682221)
  1656. Part20.Orientation = Vector3.new(0.0799999982, 179.970001, -49.9199982)
  1657. Part20.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1658. CylinderMesh21.Parent = Part20
  1659. Folder22.Name = "CFrames"
  1660. Folder22.Parent = Part20
  1661. CFrameValue23.Name = "C0"
  1662. CFrameValue23.Parent = Folder22
  1663. CFrameValue23.Value = CFrame.new(0.535447121, 1.22083998, -0.116552353, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  1664. Part24.Parent = Model0
  1665. Part24.Material = Enum.Material.Metal
  1666. Part24.BrickColor = BrickColor.new("Really black")
  1667. Part24.Reflectance = 0.20000000298023
  1668. Part24.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  1669. Part24.CanCollide = false
  1670. Part24.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  1671. Part24.CFrame = CFrame.new(-0.464066774, 6.59119034, -0.0857721791, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  1672. Part24.BottomSurface = Enum.SurfaceType.Smooth
  1673. Part24.TopSurface = Enum.SurfaceType.Smooth
  1674. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1675. Part24.Position = Vector3.new(-0.464066774, 6.59119034, -0.0857721791)
  1676. Part24.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  1677. Part24.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1678. CylinderMesh25.Parent = Part24
  1679. Folder26.Name = "CFrames"
  1680. Folder26.Parent = Part24
  1681. CFrameValue27.Name = "C0"
  1682. CFrameValue27.Parent = Folder26
  1683. CFrameValue27.Value = CFrame.new(0.580651999, 1.16912079, -0.118268982, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1684. Part28.Parent = Model0
  1685. Part28.Material = Enum.Material.Metal
  1686. Part28.BrickColor = BrickColor.new("Really black")
  1687. Part28.Reflectance = 0.20000000298023
  1688. Part28.Rotation = Vector3.new(-0.0899999961, -0.0299999993, 89.9199982)
  1689. Part28.CanCollide = false
  1690. Part28.Size = Vector3.new(0.0600012988, 0.179999471, 1.07999992)
  1691. Part28.CFrame = CFrame.new(0.111793168, 7.88118935, 0.0279411152, 0.00138878287, -0.999998748, -0.000503995281, 0.999997675, 0.00138799101, 0.00155193405, -0.0015512252, -0.000506225566, 0.999998569)
  1692. Part28.BottomSurface = Enum.SurfaceType.Smooth
  1693. Part28.TopSurface = Enum.SurfaceType.Smooth
  1694. Part28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1695. Part28.Position = Vector3.new(0.111793168, 7.88118935, 0.0279411152)
  1696. Part28.Orientation = Vector3.new(-0.0899999961, -0.0299999993, 89.9199982)
  1697. Part28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1698. Folder29.Name = "CFrames"
  1699. Folder29.Parent = Part28
  1700. CFrameValue30.Name = "C0"
  1701. CFrameValue30.Parent = Folder29
  1702. CFrameValue30.Value = CFrame.new(0.00656592846, -0.121498585, -0.00264358521, -4.63430752e-08, 0.999999821, 0.000349257811, -0.999999881, -4.0988823e-08, -2.44472176e-09, 2.56113708e-09, -0.000349308568, 0.999999881)
  1703. Part31.Parent = Model0
  1704. Part31.Material = Enum.Material.Metal
  1705. Part31.BrickColor = BrickColor.new("Really black")
  1706. Part31.Reflectance = 0.10000000149012
  1707. Part31.Rotation = Vector3.new(-110.029999, -89.909996, -109.939995)
  1708. Part31.CanCollide = false
  1709. Part31.Size = Vector3.new(1.10038221, 0.051904764, 1.08999991)
  1710. Part31.CFrame = CFrame.new(0.100722753, 7.09303474, 0.0341384597, -0.000503919786, 0.00138882664, -0.999998748, 0.00155193394, 0.999997675, 0.0013880349, 0.999998569, -0.0015512252, -0.000506150071)
  1711. Part31.BottomSurface = Enum.SurfaceType.Smooth
  1712. Part31.TopSurface = Enum.SurfaceType.Smooth
  1713. Part31.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1714. Part31.Position = Vector3.new(0.100722753, 7.09303474, 0.0341384597)
  1715. Part31.Orientation = Vector3.new(-0.0799999982, -90.0299988, 0.0899999961)
  1716. Part31.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1717. Folder32.Name = "CFrames"
  1718. Folder32.Parent = Part31
  1719. CFrameValue33.Name = "C0"
  1720. CFrameValue33.Parent = Folder32
  1721. CFrameValue33.Value = CFrame.new(0.0165410116, 0.666679382, 0.00233268738, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  1722. Part34.Parent = Model0
  1723. Part34.Material = Enum.Material.Metal
  1724. Part34.BrickColor = BrickColor.new("Really black")
  1725. Part34.Reflectance = 0.20000000298023
  1726. Part34.Rotation = Vector3.new(-90.0899963, 0.0799999982, 179.98999)
  1727. Part34.CanCollide = false
  1728. Part34.Size = Vector3.new(0.179999962, 1.13, 0.199999943)
  1729. Part34.CFrame = CFrame.new(-0.148030341, 7.89514446, 0.012753956, -0.999998868, -0.000154799913, 0.00138882664, 0.00138857658, 0.00155140576, 0.999997675, -0.000157030285, 0.999998689, -0.00155118154)
  1730. Part34.BottomSurface = Enum.SurfaceType.Smooth
  1731. Part34.TopSurface = Enum.SurfaceType.Smooth
  1732. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1733. Part34.Position = Vector3.new(-0.148030341, 7.89514446, 0.012753956)
  1734. Part34.Orientation = Vector3.new(-89.8799973, 138.160004, 41.829998)
  1735. Part34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1736. CylinderMesh35.Parent = Part34
  1737. Folder36.Name = "CFrames"
  1738. Folder36.Parent = Part34
  1739. CFrameValue37.Name = "C0"
  1740. CFrameValue37.Parent = Folder36
  1741. CFrameValue37.Value = CFrame.new(0.266410947, -0.135116577, -0.0177688636, 0.999999881, 6.20493665e-08, -9.01220858e-08, -8.47599608e-08, 4.10946086e-08, -0.999999881, -1.12777343e-07, 0.99999994, 4.62168828e-08)
  1742. Part38.Parent = Model0
  1743. Part38.Material = Enum.Material.Metal
  1744. Part38.BrickColor = BrickColor.new("Really black")
  1745. Part38.Reflectance = 0.10000000149012
  1746. Part38.Rotation = Vector3.new(179.919998, 0.0299999993, -169.919998)
  1747. Part38.CanCollide = false
  1748. Part38.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  1749. Part38.CFrame = CFrame.new(-0.467899472, 6.68360567, -0.0841918811, -0.984565318, 0.175015628, 0.000504107738, 0.175014779, 0.984564841, -0.00137740129, -0.000737467082, -0.00126789534, -0.999998868)
  1750. Part38.BottomSurface = Enum.SurfaceType.Smooth
  1751. Part38.TopSurface = Enum.SurfaceType.Smooth
  1752. Part38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1753. Part38.Position = Vector3.new(-0.467899472, 6.68360567, -0.0841918811)
  1754. Part38.Orientation = Vector3.new(0.0799999982, 179.970001, 10.0799999)
  1755. Part38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1756. CylinderMesh39.Parent = Part38
  1757. Folder40.Name = "CFrames"
  1758. Folder40.Parent = Part38
  1759. CFrameValue41.Name = "C0"
  1760. CFrameValue41.Parent = Folder40
  1761. CFrameValue41.Value = CFrame.new(0.584612846, 1.07671356, -0.116544724, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  1762. Part42.Parent = Model0
  1763. Part42.Material = Enum.Material.Metal
  1764. Part42.BrickColor = BrickColor.new("Really black")
  1765. Part42.Reflectance = 0.10000000149012
  1766. Part42.Rotation = Vector3.new(69.9700012, 89.909996, -70.0599976)
  1767. Part42.CanCollide = false
  1768. Part42.Size = Vector3.new(0.141234756, 0.147224233, 0.136373296)
  1769. Part42.CFrame = CFrame.new(-0.251828939, 6.99330044, 0.582121253, 0.000503768795, 0.00138882664, 0.999998748, -0.0015519337, 0.999997675, -0.00138803513, -0.999998569, -0.0015512252, 0.00050599908)
  1770. Part42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1771. Part42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1772. Part42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1773. Part42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1774. Part42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1775. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1776. Part42.Position = Vector3.new(-0.251828939, 6.99330044, 0.582121253)
  1777. Part42.Orientation = Vector3.new(0.0799999982, 89.9700012, -0.0899999961)
  1778. Part42.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1779. SpecialMesh43.Parent = Part42
  1780. SpecialMesh43.MeshType = Enum.MeshType.Sphere
  1781. Folder44.Name = "CFrames"
  1782. Folder44.Parent = Part42
  1783. CFrameValue45.Name = "C0"
  1784. CFrameValue45.Parent = Folder44
  1785. CFrameValue45.Value = CFrame.new(0.368867934, 0.767753124, 0.550214708, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  1786. Part46.Name = "Handle"
  1787. Part46.Parent = Model0
  1788. Part46.Material = Enum.Material.Metal
  1789. Part46.BrickColor = BrickColor.new("Pastel brown")
  1790. Part46.Transparency = 1
  1791. Part46.Rotation = Vector3.new(-0.0899999961, -0.00999999978, 179.919998)
  1792. Part46.CanCollide = false
  1793. Part46.Size = Vector3.new(1, 2, 1)
  1794. Part46.CFrame = CFrame.new(0.118189953, 7.75968599, 0.0307741985, -0.999998987, -0.00138873665, -0.00015473782, 0.00138849218, -0.999997795, 0.00155144685, -0.000156917391, 0.00155122799, 0.999998748)
  1795. Part46.BottomSurface = Enum.SurfaceType.Smooth
  1796. Part46.TopSurface = Enum.SurfaceType.Smooth
  1797. Part46.Color = Color3.new(1, 0.8, 0.6)
  1798. Part46.Position = Vector3.new(0.118189953, 7.75968599, 0.0307741985)
  1799. Part46.Orientation = Vector3.new(-0.0899999961, -0.00999999978, 179.919998)
  1800. Part46.Color = Color3.new(1, 0.8, 0.6)
  1801. Motor47.Parent = Part46
  1802. Motor47.C0 = CFrame.new(-0.0797640234, 0.665069103, -0.00493621454, 0.999999881, 6.20493665e-08, -9.01220858e-08, -8.47599608e-08, 4.10946086e-08, -0.999999881, -1.12777343e-07, 0.99999994, 4.62168828e-08)
  1803. Motor47.Part0 = Part46
  1804. Motor47.Part1 = Part203
  1805. Motor48.Parent = Part46
  1806. Motor48.C0 = CFrame.new(0.561711788, 0.21165514, 0.392124146, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  1807. Motor48.Part0 = Part46
  1808. Motor48.Part1 = WedgePart275
  1809. Motor49.Parent = Part46
  1810. Motor49.C0 = CFrame.new(0.00656592846, -0.121498585, -0.00264358521, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  1811. Motor49.Part0 = Part46
  1812. Motor49.Part1 = Part207
  1813. Motor50.Parent = Part46
  1814. Motor50.C0 = CFrame.new(0.488456905, 0.53175354, -0.00567818806, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  1815. Motor50.Part0 = Part46
  1816. Motor50.Part1 = Part116
  1817. Motor51.Parent = Part46
  1818. Motor51.C0 = CFrame.new(0.488456905, 0.523871899, -0.00567818806, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  1819. Motor51.Part0 = Part46
  1820. Motor51.Part1 = Part178
  1821. Motor52.Parent = Part46
  1822. Motor52.C0 = CFrame.new(0.586633861, 1.05020142, 0.374330491, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1823. Motor52.Part0 = Part46
  1824. Motor52.Part1 = Part123
  1825. Motor53.Parent = Part46
  1826. Motor53.C0 = CFrame.new(0.580651999, 1.16912031, 0.374311388, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1827. Motor53.Part0 = Part46
  1828. Motor53.Part1 = Part131
  1829. Motor54.Parent = Part46
  1830. Motor54.C0 = CFrame.new(-0.346158981, 1.03474426, -0.588941514, -0.150784269, -0.984708428, -0.0872536972, -0.499999911, -0.000174477085, 0.866025388, -0.852797806, 0.174209878, -0.492327839)
  1831. Motor54.Part0 = Part46
  1832. Motor54.Part1 = Part139
  1833. Motor55.Parent = Part46
  1834. Motor55.C0 = CFrame.new(-0.345135987, 1.15366364, -0.583043993, -0.150784269, -0.984708428, -0.0872536972, -0.499999911, -0.000174477085, 0.866025388, -0.852797806, 0.174209878, -0.492327839)
  1835. Motor55.Part0 = Part46
  1836. Motor55.Part1 = Part143
  1837. Motor56.Parent = Part46
  1838. Motor56.C0 = CFrame.new(0.520293891, 0.935181141, -0.116493225, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  1839. Motor56.Part0 = Part46
  1840. Motor56.Part1 = Part147
  1841. Motor57.Parent = Part46
  1842. Motor57.C0 = CFrame.new(0.605831981, 1.17355347, -0.119945541, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  1843. Motor57.Part0 = Part46
  1844. Motor57.Part1 = Part12
  1845. Motor58.Parent = Part46
  1846. Motor58.C0 = CFrame.new(0.584612906, 1.07671356, -0.36482811, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  1847. Motor58.Part0 = Part46
  1848. Motor58.Part1 = Part241
  1849. Motor59.Parent = Part46
  1850. Motor59.C0 = CFrame.new(0.605831981, 1.17355347, -0.36823082, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  1851. Motor59.Part0 = Part46
  1852. Motor59.Part1 = Part245
  1853. Motor60.Parent = Part46
  1854. Motor60.C0 = CFrame.new(0.535447121, 1.22084045, 0.131734803, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  1855. Motor60.Part0 = Part46
  1856. Motor60.Part1 = Part261
  1857. Motor61.Parent = Part46
  1858. Motor61.C0 = CFrame.new(0.605831921, 1.17355299, 0.128339738, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  1859. Motor61.Part0 = Part46
  1860. Motor61.Part1 = Part265
  1861. Motor62.Parent = Part46
  1862. Motor62.C0 = CFrame.new(0.584612906, 1.07671356, 0.131742448, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  1863. Motor62.Part0 = Part46
  1864. Motor62.Part1 = Part249
  1865. Motor63.Parent = Part46
  1866. Motor63.C0 = CFrame.new(0.488456905, 0.133872509, -0.00565911457, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  1867. Motor63.Part0 = Part46
  1868. Motor63.Part1 = Part257
  1869. Motor64.Parent = Part46
  1870. Motor64.C0 = CFrame.new(0.535447121, 1.22083998, -0.364837646, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  1871. Motor64.Part0 = Part46
  1872. Motor64.Part1 = Part253
  1873. Motor65.Parent = Part46
  1874. Motor65.C0 = CFrame.new(0.535447061, 1.22083998, 0.377210587, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  1875. Motor65.Part0 = Part46
  1876. Motor65.Part1 = Part16
  1877. Motor66.Parent = Part46
  1878. Motor66.C0 = CFrame.new(0.605831921, 1.17355299, 0.373815477, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  1879. Motor66.Part0 = Part46
  1880. Motor66.Part1 = Part135
  1881. Motor67.Parent = Part46
  1882. Motor67.C0 = CFrame.new(0.520385861, 0.93522644, 0.377269715, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  1883. Motor67.Part0 = Part46
  1884. Motor67.Part1 = Part187
  1885. Motor68.Parent = Part46
  1886. Motor68.C0 = CFrame.new(0.584612846, 1.07671309, 0.377218187, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  1887. Motor68.Part0 = Part46
  1888. Motor68.Part1 = Part167
  1889. Motor69.Parent = Part46
  1890. Motor69.C0 = CFrame.new(-0.333770037, 1.22003126, -0.533195496, -0.111971207, -0.133180961, -0.984746218, 0.723163009, -0.690586805, 0.0111699579, -0.681540489, -0.710881472, 0.17363745)
  1891. Motor69.Part0 = Part46
  1892. Motor69.Part1 = Part183
  1893. Motor70.Parent = Part46
  1894. Motor70.C0 = CFrame.new(-0.349332988, 1.16836548, -0.598689914, 0.984750867, -0.0593967699, -0.163516372, -0.0112223597, -0.959641516, 0.281001687, -0.173607737, -0.274881631, -0.945674479)
  1895. Motor70.Part0 = Part46
  1896. Motor70.Part1 = Part199
  1897. Motor71.Parent = Part46
  1898. Motor71.C0 = CFrame.new(-0.342297971, 1.07306671, -0.572114885, -0.171323717, 0.0303794201, -0.984746218, -0.236484185, -0.971571088, 0.0111699579, -0.956411719, 0.234790608, 0.17363745)
  1899. Motor71.Part0 = Part46
  1900. Motor71.Part1 = Part127
  1901. Motor72.Parent = Part46
  1902. Motor72.C0 = CFrame.new(-0.33109504, 0.936004639, -0.49978441, -0.150601238, 0.0871434659, -0.984746218, -0.554519355, -0.832095742, 0.0111699579, -0.818429828, 0.547743022, 0.17363745)
  1903. Motor72.Part0 = Part46
  1904. Motor72.Part1 = Part237
  1905. Motor73.Parent = Part46
  1906. Motor73.C0 = CFrame.new(0.586633921, 1.05020094, -0.364824295, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1907. Motor73.Part0 = Part46
  1908. Motor73.Part1 = Part229
  1909. Weld74.Name = "ClothingWeld"
  1910. Weld74.Parent = Part46
  1911. Weld74.C0 = CFrame.new(0, 0, 0, -1, 8.74227766e-08, 0, -8.74227766e-08, -1, 0, 0, 0, 1)
  1912. Weld74.Part1 = Part46
  1913. Motor75.Parent = Part46
  1914. Motor75.C0 = CFrame.new(0.0515638553, -0.373321056, -0.00767325982, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  1915. Motor75.Part0 = Part46
  1916. Motor75.Part1 = Part222
  1917. Motor76.Parent = Part46
  1918. Motor76.C0 = CFrame.new(-0.0797640234, 0.665069103, -0.00493621454, 0.999999881, 6.20493665e-08, -9.01220858e-08, -8.47599608e-08, 4.10946086e-08, -0.999999881, -1.12777343e-07, 0.99999994, 4.62168828e-08)
  1919. Motor76.Part0 = Part46
  1920. Motor76.Part1 = Part218
  1921. Motor77.Parent = Part46
  1922. Motor77.C0 = CFrame.new(0.488456905, 0.0738759041, -0.00565720722, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  1923. Motor77.Part0 = Part46
  1924. Motor77.Part1 = Part151
  1925. Motor78.Parent = Part46
  1926. Motor78.C0 = CFrame.new(0.56138289, 0.211654186, -0.407875031, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  1927. Motor78.Part0 = Part46
  1928. Motor78.Part1 = WedgePart272
  1929. Motor79.Parent = Part46
  1930. Motor79.C0 = CFrame.new(0.561546862, 0.211654186, -0.00787545741, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  1931. Motor79.Part0 = Part46
  1932. Motor79.Part1 = WedgePart269
  1933. Motor80.Parent = Part46
  1934. Motor80.C0 = CFrame.new(0.466516912, 0.156661987, 0.00214766338, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  1935. Motor80.Part0 = Part46
  1936. Motor80.Part1 = Part175
  1937. Motor81.Parent = Part46
  1938. Motor81.C0 = CFrame.new(0.580651999, 1.16912031, -0.364843369, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1939. Motor81.Part0 = Part46
  1940. Motor81.Part1 = Part210
  1941. Motor82.Parent = Part46
  1942. Motor82.C0 = CFrame.new(0.520201862, 0.935134888, -0.364778519, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  1943. Motor82.Part0 = Part46
  1944. Motor82.Part1 = Part171
  1945. Motor83.Parent = Part46
  1946. Motor83.C0 = CFrame.new(0.268866956, -0.132247448, 0.550214708, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  1947. Motor83.Part0 = Part46
  1948. Motor83.Part1 = Part155
  1949. Motor84.Parent = Part46
  1950. Motor84.C0 = CFrame.new(0.586633861, 1.05020142, 0.134397477, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1951. Motor84.Part0 = Part46
  1952. Motor84.Part1 = Part233
  1953. Motor85.Parent = Part46
  1954. Motor85.C0 = CFrame.new(0.580651939, 1.16912079, 0.134376496, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  1955. Motor85.Part0 = Part46
  1956. Motor85.Part1 = Part225
  1957. Motor86.Parent = Part46
  1958. Motor86.C0 = CFrame.new(0.520385921, 0.93522644, 0.131793931, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  1959. Motor86.Part0 = Part46
  1960. Motor86.Part1 = Part163
  1961. Motor87.Parent = Part46
  1962. Motor87.C0 = CFrame.new(0.0683980137, 0.167815685, -0.534790039, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  1963. Motor87.Part0 = Part46
  1964. Motor87.Part1 = Part191
  1965. Motor88.Parent = Part46
  1966. Motor88.C0 = CFrame.new(0.0688669533, 0.167755127, 0.526790619, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  1967. Motor88.Part0 = Part46
  1968. Motor88.Part1 = Part159
  1969. Motor89.Parent = Part46
  1970. Motor89.C0 = CFrame.new(0.168866977, 0.467750549, 0.526790559, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  1971. Motor89.Part0 = Part46
  1972. Motor89.Part1 = Part214
  1973. Motor90.Parent = Part46
  1974. Motor90.C0 = CFrame.new(0.368867934, 0.767753124, 0.550214708, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  1975. Motor90.Part0 = Part46
  1976. Motor90.Part1 = Part42
  1977. Motor91.Parent = Part46
  1978. Motor91.C0 = CFrame.new(0.168397918, 0.467819214, -0.534789979, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  1979. Motor91.Part0 = Part46
  1980. Motor91.Part1 = Part8
  1981. Motor92.Parent = Part46
  1982. Motor92.C0 = CFrame.new(0.561567843, -0.238342762, -0.00787545368, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  1983. Motor92.Part0 = Part46
  1984. Motor92.Part1 = WedgePart278
  1985. Motor93.Parent = Part46
  1986. Motor93.C0 = CFrame.new(0.0165249109, 0.321685314, 0.0023326911, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  1987. Motor93.Part0 = Part46
  1988. Motor93.Part1 = Part113
  1989. Motor94.Parent = Part46
  1990. Motor94.C0 = CFrame.new(0.266410947, -0.135116577, -0.0177688636, 0.999999881, 6.20493665e-08, -9.01220858e-08, -8.47599608e-08, 4.10946086e-08, -0.999999881, -1.12777343e-07, 0.99999994, 4.62168828e-08)
  1991. Motor94.Part0 = Part46
  1992. Motor94.Part1 = Part34
  1993. Motor95.Parent = Part46
  1994. Motor95.C0 = CFrame.new(0.268397808, -0.13217926, -0.562931061, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  1995. Motor95.Part0 = Part46
  1996. Motor95.Part1 = Part109
  1997. Motor96.Parent = Part46
  1998. Motor96.C0 = CFrame.new(0.586569726, -0.263343334, -0.00788689777, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  1999. Motor96.Part0 = Part46
  2000. Motor96.Part1 = WedgePart281
  2001. Motor97.Parent = Part46
  2002. Motor97.C0 = CFrame.new(0.00656592846, -0.121498585, -0.00264358521, -4.63430752e-08, 0.999999821, 0.000349257811, -0.999999881, -4.0988823e-08, -2.44472176e-09, 2.56113708e-09, -0.000349308568, 0.999999881)
  2003. Motor97.Part0 = Part46
  2004. Motor97.Part1 = Part28
  2005. Motor98.Parent = Part46
  2006. Motor98.C0 = CFrame.new(0.0165410116, 0.666679382, 0.00233268738, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  2007. Motor98.Part0 = Part46
  2008. Motor98.Part1 = Part31
  2009. Motor99.Parent = Part46
  2010. Motor99.C0 = CFrame.new(0.0815647691, -0.373321056, -0.00768661499, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  2011. Motor99.Part0 = Part46
  2012. Motor99.Part1 = Part1
  2013. Motor100.Parent = Part46
  2014. Motor100.C0 = CFrame.new(0.586633861, 1.05020094, -0.118249908, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2015. Motor100.Part0 = Part46
  2016. Motor100.Part1 = Part4
  2017. Motor101.Parent = Part46
  2018. Motor101.C0 = CFrame.new(0.580651999, 1.16912079, -0.118268982, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2019. Motor101.Part0 = Part46
  2020. Motor101.Part1 = Part24
  2021. Motor102.Parent = Part46
  2022. Motor102.C0 = CFrame.new(0.535447121, 1.22083998, -0.116552353, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  2023. Motor102.Part0 = Part46
  2024. Motor102.Part1 = Part20
  2025. Motor103.Parent = Part46
  2026. Motor103.C0 = CFrame.new(0.584612846, 1.07671356, -0.116544724, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  2027. Motor103.Part0 = Part46
  2028. Motor103.Part1 = Part38
  2029. Motor104.Parent = Part46
  2030. Motor104.C0 = CFrame.new(0.668971896, -0.348320484, -0.00792886317, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  2031. Motor104.Part0 = Part46
  2032. Motor104.Part1 = Part120
  2033. Folder105.Name = "CFrames"
  2034. Folder105.Parent = Part46
  2035. CFrameValue106.Name = "C0"
  2036. CFrameValue106.Parent = Folder105
  2037. CFrameValue106.Value = CFrame.new(0, 0, 0, 0.999999881, 2.68732947e-09, -2.53639882e-08, 2.68732947e-09, 0.999999881, -2.56113708e-09, -2.53639882e-08, -2.56113708e-09, 0.99999994)
  2038. Motor107.Parent = Part46
  2039. Motor107.C0 = CFrame.new(0, 0, 0, 0.999999881, 2.68732947e-09, -2.53639882e-08, 2.68732947e-09, 0.999999881, -2.56113708e-09, -2.53639882e-08, -2.56113708e-09, 0.99999994)
  2040. Motor107.Part0 = Part46
  2041. Motor107.Part1 = Part46
  2042. Motor108.Parent = Part46
  2043. Motor108.C0 = CFrame.new(0.488456905, 0.523871899, -0.00567818806, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  2044. Motor108.Part0 = Part46
  2045. Motor108.Part1 = Part195
  2046. Part109.Parent = Model0
  2047. Part109.Material = Enum.Material.Metal
  2048. Part109.BrickColor = BrickColor.new("Really black")
  2049. Part109.Reflectance = 0.20000000298023
  2050. Part109.Rotation = Vector3.new(-110.029999, -89.909996, -109.939995)
  2051. Part109.CanCollide = false
  2052. Part109.Size = Vector3.new(0.141234756, 0.147224233, 0.136373296)
  2053. Part109.CFrame = CFrame.new(-0.149936914, 7.8913641, -0.53240335, -0.000503919786, 0.00138882664, -0.999998748, 0.00155193394, 0.999997675, 0.0013880349, 0.999998569, -0.0015512252, -0.000506150071)
  2054. Part109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2055. Part109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2056. Part109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2057. Part109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2058. Part109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2059. Part109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2060. Part109.Position = Vector3.new(-0.149936914, 7.8913641, -0.53240335)
  2061. Part109.Orientation = Vector3.new(-0.0799999982, -90.0299988, 0.0899999961)
  2062. Part109.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2063. SpecialMesh110.Parent = Part109
  2064. SpecialMesh110.MeshType = Enum.MeshType.Sphere
  2065. Folder111.Name = "CFrames"
  2066. Folder111.Parent = Part109
  2067. CFrameValue112.Name = "C0"
  2068. CFrameValue112.Parent = Folder111
  2069. CFrameValue112.Value = CFrame.new(0.268397808, -0.13217926, -0.562931061, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  2070. Part113.Parent = Model0
  2071. Part113.Material = Enum.Material.Metal
  2072. Part113.BrickColor = BrickColor.new("Really black")
  2073. Part113.Reflectance = 0.10000000149012
  2074. Part113.Rotation = Vector3.new(-110.029999, -89.909996, -109.939995)
  2075. Part113.CanCollide = false
  2076. Part113.Size = Vector3.new(1.06000125, 1.37999964, 1.04999995)
  2077. Part113.CFrame = CFrame.new(0.101217963, 7.43802786, 0.0336032994, -0.000503919786, 0.00138882664, -0.999998748, 0.00155193394, 0.999997675, 0.0013880349, 0.999998569, -0.0015512252, -0.000506150071)
  2078. Part113.BottomSurface = Enum.SurfaceType.Smooth
  2079. Part113.TopSurface = Enum.SurfaceType.Smooth
  2080. Part113.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2081. Part113.Position = Vector3.new(0.101217963, 7.43802786, 0.0336032994)
  2082. Part113.Orientation = Vector3.new(-0.0799999982, -90.0299988, 0.0899999961)
  2083. Part113.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2084. Folder114.Name = "CFrames"
  2085. Folder114.Parent = Part113
  2086. CFrameValue115.Name = "C0"
  2087. CFrameValue115.Parent = Folder114
  2088. CFrameValue115.Value = CFrame.new(0.0165249109, 0.321685314, 0.0023326911, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  2089. Part116.Parent = Model0
  2090. Part116.Material = Enum.Material.Metal
  2091. Part116.BrickColor = BrickColor.new("Really black")
  2092. Part116.Rotation = Vector3.new(179.909988, 0.0299999993, -179.919998)
  2093. Part116.CanCollide = false
  2094. Part116.Size = Vector3.new(0.460000217, 0.139999866, 0.669999599)
  2095. Part116.CFrame = CFrame.new(-0.371004045, 7.22860289, 0.0258442406, -0.999998748, 0.00138882664, 0.000503865362, 0.00138803502, 0.999997675, -0.00155193394, -0.000506095588, -0.0015512252, -0.999998569)
  2096. Part116.BottomSurface = Enum.SurfaceType.Smooth
  2097. Part116.TopSurface = Enum.SurfaceType.Smooth
  2098. Part116.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2099. Part116.Position = Vector3.new(-0.371004045, 7.22860289, 0.0258442406)
  2100. Part116.Orientation = Vector3.new(0.0899999961, 179.970001, 0.0799999982)
  2101. Part116.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2102. CylinderMesh117.Parent = Part116
  2103. Folder118.Name = "CFrames"
  2104. Folder118.Parent = Part116
  2105. CFrameValue119.Name = "C0"
  2106. CFrameValue119.Parent = Folder118
  2107. CFrameValue119.Value = CFrame.new(0.488456905, 0.53175354, -0.00567818806, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  2108. Part120.Parent = Model0
  2109. Part120.Material = Enum.Material.Metal
  2110. Part120.BrickColor = BrickColor.new("Really black")
  2111. Part120.Reflectance = 0.10000000149012
  2112. Part120.Rotation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  2113. Part120.CanCollide = false
  2114. Part120.Size = Vector3.new(0.0500000007, 0.099999994, 0.0500000007)
  2115. Part120.CFrame = CFrame.new(-0.550296307, 8.108922, 0.022200048, 0.999998748, 0.00138882664, -0.000503995281, -0.00138803478, 0.999997675, 0.00155193405, 0.000506225624, -0.0015512252, 0.999998569)
  2116. Part120.BottomSurface = Enum.SurfaceType.Smooth
  2117. Part120.TopSurface = Enum.SurfaceType.Smooth
  2118. Part120.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2119. Part120.Position = Vector3.new(-0.550296307, 8.108922, 0.022200048)
  2120. Part120.Orientation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  2121. Part120.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2122. Folder121.Name = "CFrames"
  2123. Folder121.Parent = Part120
  2124. CFrameValue122.Name = "C0"
  2125. CFrameValue122.Parent = Folder121
  2126. CFrameValue122.Value = CFrame.new(0.668971896, -0.348320484, -0.00792886317, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  2127. Part123.Parent = Model0
  2128. Part123.Material = Enum.Material.Metal
  2129. Part123.BrickColor = BrickColor.new("Really black")
  2130. Part123.Reflectance = 0.20000000298023
  2131. Part123.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  2132. Part123.CanCollide = false
  2133. Part123.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2134. Part123.CFrame = CFrame.new(-0.469959706, 6.71088219, 0.406641275, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  2135. Part123.BottomSurface = Enum.SurfaceType.Smooth
  2136. Part123.TopSurface = Enum.SurfaceType.Smooth
  2137. Part123.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2138. Part123.Position = Vector3.new(-0.469959706, 6.71088219, 0.406641275)
  2139. Part123.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  2140. Part123.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2141. CylinderMesh124.Parent = Part123
  2142. Folder125.Name = "CFrames"
  2143. Folder125.Parent = Part123
  2144. CFrameValue126.Name = "C0"
  2145. CFrameValue126.Parent = Folder125
  2146. CFrameValue126.Value = CFrame.new(0.586633861, 1.05020142, 0.374330491, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2147. Part127.Parent = Model0
  2148. Part127.Material = Enum.Material.Metal
  2149. Part127.BrickColor = BrickColor.new("Really black")
  2150. Part127.Reflectance = 0.10000000149012
  2151. Part127.Rotation = Vector3.new(4.03999996, 79.9700012, 9.59999943)
  2152. Part127.CanCollide = false
  2153. Part127.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  2154. Part127.CFrame = CFrame.new(0.459085912, 6.68525887, -0.539621711, 0.171799958, -0.0290664639, 0.984702826, 0.234761953, 0.971975386, -0.0122678569, -0.956750512, 0.233278409, 0.173809081)
  2155. Part127.BottomSurface = Enum.SurfaceType.Smooth
  2156. Part127.TopSurface = Enum.SurfaceType.Smooth
  2157. Part127.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2158. Part127.Position = Vector3.new(0.459085912, 6.68525887, -0.539621711)
  2159. Part127.Orientation = Vector3.new(0.699999988, 79.9899979, 13.5799999)
  2160. Part127.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2161. CylinderMesh128.Parent = Part127
  2162. Folder129.Name = "CFrames"
  2163. Folder129.Parent = Part127
  2164. CFrameValue130.Name = "C0"
  2165. CFrameValue130.Parent = Folder129
  2166. CFrameValue130.Value = CFrame.new(-0.342297971, 1.07306671, -0.572114885, -0.171323717, 0.0303794201, -0.984746218, -0.236484185, -0.971571088, 0.0111699579, -0.956411719, 0.234790608, 0.17363745)
  2167. Part131.Parent = Model0
  2168. Part131.Material = Enum.Material.Metal
  2169. Part131.BrickColor = BrickColor.new("Really black")
  2170. Part131.Reflectance = 0.20000000298023
  2171. Part131.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  2172. Part131.CanCollide = false
  2173. Part131.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2174. Part131.CFrame = CFrame.new(-0.464142948, 6.59195518, 0.406807572, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  2175. Part131.BottomSurface = Enum.SurfaceType.Smooth
  2176. Part131.TopSurface = Enum.SurfaceType.Smooth
  2177. Part131.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2178. Part131.Position = Vector3.new(-0.464142948, 6.59195518, 0.406807572)
  2179. Part131.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  2180. Part131.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2181. CylinderMesh132.Parent = Part131
  2182. Folder133.Name = "CFrames"
  2183. Folder133.Parent = Part131
  2184. CFrameValue134.Name = "C0"
  2185. CFrameValue134.Parent = Folder133
  2186. CFrameValue134.Value = CFrame.new(0.580651999, 1.16912031, 0.374311388, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2187. Part135.Parent = Model0
  2188. Part135.Material = Enum.Material.Metal
  2189. Part135.BrickColor = BrickColor.new("Really black")
  2190. Part135.Reflectance = 0.10000000149012
  2191. Part135.Rotation = Vector3.new(90.0199966, -70.0800018, 90.0999985)
  2192. Part135.CanCollide = false
  2193. Part135.Size = Vector3.new(0.166545585, 0.179778785, 0.162522167)
  2194. Part135.CFrame = CFrame.new(-0.489328951, 6.58755684, 0.406314582, -0.000618976075, -0.340714693, -0.940166473, 0.00138808647, 0.940165341, -0.340715319, 0.999998808, -0.001515946, -0.000109072309)
  2195. Part135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2196. Part135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2197. Part135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2198. Part135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2199. Part135.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2200. Part135.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2201. Part135.Position = Vector3.new(-0.489328951, 6.58755684, 0.406314582)
  2202. Part135.Orientation = Vector3.new(19.9200001, -90.0099945, 0.0799999982)
  2203. Part135.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2204. SpecialMesh136.Parent = Part135
  2205. SpecialMesh136.MeshType = Enum.MeshType.Sphere
  2206. Folder137.Name = "CFrames"
  2207. Folder137.Parent = Part135
  2208. CFrameValue138.Name = "C0"
  2209. CFrameValue138.Parent = Folder137
  2210. CFrameValue138.Value = CFrame.new(0.605831921, 1.17355299, 0.373815477, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  2211. Part139.Parent = Model0
  2212. Part139.Material = Enum.Material.Metal
  2213. Part139.BrickColor = BrickColor.new("Really black")
  2214. Part139.Reflectance = 0.20000000298023
  2215. Part139.Rotation = Vector3.new(119.519997, 4.94000006, -81.25)
  2216. Part139.CanCollide = false
  2217. Part139.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2218. Part139.CFrame = CFrame.new(0.463002741, 6.72354984, -0.55650717, 0.151610449, 0.984680712, 0.0861271098, 0.498466372, -0.00092250586, -0.866908491, -0.853548706, 0.174363896, -0.490970105)
  2219. Part139.BottomSurface = Enum.SurfaceType.Smooth
  2220. Part139.TopSurface = Enum.SurfaceType.Smooth
  2221. Part139.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2222. Part139.Position = Vector3.new(0.463002741, 6.72354984, -0.55650717)
  2223. Part139.Orientation = Vector3.new(60.0999985, 170.050003, 90.1100006)
  2224. Part139.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2225. CylinderMesh140.Parent = Part139
  2226. Folder141.Name = "CFrames"
  2227. Folder141.Parent = Part139
  2228. CFrameValue142.Name = "C0"
  2229. CFrameValue142.Parent = Folder141
  2230. CFrameValue142.Value = CFrame.new(-0.346158981, 1.03474426, -0.588941514, -0.150784269, -0.984708428, -0.0872536972, -0.499999911, -0.000174477085, 0.866025388, -0.852797806, 0.174209878, -0.492327839)
  2231. Part143.Parent = Model0
  2232. Part143.Material = Enum.Material.Metal
  2233. Part143.BrickColor = BrickColor.new("Really black")
  2234. Part143.Reflectance = 0.20000000298023
  2235. Part143.Rotation = Vector3.new(119.519997, 4.94000006, -81.25)
  2236. Part143.CanCollide = false
  2237. Part143.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2238. Part143.CFrame = CFrame.new(0.461813658, 6.60464096, -0.550425351, 0.151610449, 0.984680712, 0.0861271098, 0.498466372, -0.00092250586, -0.866908491, -0.853548706, 0.174363896, -0.490970105)
  2239. Part143.BottomSurface = Enum.SurfaceType.Smooth
  2240. Part143.TopSurface = Enum.SurfaceType.Smooth
  2241. Part143.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2242. Part143.Position = Vector3.new(0.461813658, 6.60464096, -0.550425351)
  2243. Part143.Orientation = Vector3.new(60.0999985, 170.050003, 90.1100006)
  2244. Part143.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2245. CylinderMesh144.Parent = Part143
  2246. Folder145.Name = "CFrames"
  2247. Folder145.Parent = Part143
  2248. CFrameValue146.Name = "C0"
  2249. CFrameValue146.Parent = Folder145
  2250. CFrameValue146.Value = CFrame.new(-0.345135987, 1.15366364, -0.583043993, -0.150784269, -0.984708428, -0.0872536972, -0.499999911, -0.000174477085, 0.866025388, -0.852797806, 0.174209878, -0.492327839)
  2251. Part147.Parent = Model0
  2252. Part147.Material = Enum.Material.Metal
  2253. Part147.BrickColor = BrickColor.new("Really black")
  2254. Part147.Reflectance = 0.10000000149012
  2255. Part147.Rotation = Vector3.new(179.919998, 0.0299999993, -149.919998)
  2256. Part147.CanCollide = false
  2257. Part147.Size = Vector3.new(0.206904635, 0.248285562, 0.223457038)
  2258. Part147.CFrame = CFrame.new(-0.403384119, 6.82504845, -0.0843498409, -0.865329802, 0.501202047, 0.000504107738, 0.501201034, 0.865329504, -0.00137740129, -0.00112663803, -0.000939203077, -0.999998868)
  2259. Part147.BottomSurface = Enum.SurfaceType.Smooth
  2260. Part147.TopSurface = Enum.SurfaceType.Smooth
  2261. Part147.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2262. Part147.Position = Vector3.new(-0.403384119, 6.82504845, -0.0843498409)
  2263. Part147.Orientation = Vector3.new(0.0799999982, 179.970001, 30.0799999)
  2264. Part147.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2265. CylinderMesh148.Parent = Part147
  2266. Folder149.Name = "CFrames"
  2267. Folder149.Parent = Part147
  2268. CFrameValue150.Name = "C0"
  2269. CFrameValue150.Parent = Folder149
  2270. CFrameValue150.Value = CFrame.new(0.520293891, 0.935181141, -0.116493225, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  2271. Part151.Name = "cannonpiece"
  2272. Part151.Parent = Model0
  2273. Part151.Material = Enum.Material.Metal
  2274. Part151.BrickColor = BrickColor.new("Really black")
  2275. Part151.Reflectance = 0.10000000149012
  2276. Part151.Rotation = Vector3.new(179.909988, 0.0299999993, -179.919998)
  2277. Part151.CanCollide = false
  2278. Part151.Size = Vector3.new(0.520000219, 0.699999928, 0.669999599)
  2279. Part151.CFrame = CFrame.new(-0.370368153, 7.68647957, 0.0251549482, -0.999998748, 0.00138882664, 0.000503865362, 0.00138803502, 0.999997675, -0.00155193394, -0.000506095588, -0.0015512252, -0.999998569)
  2280. Part151.BottomSurface = Enum.SurfaceType.Smooth
  2281. Part151.TopSurface = Enum.SurfaceType.Smooth
  2282. Part151.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2283. Part151.Position = Vector3.new(-0.370368153, 7.68647957, 0.0251549482)
  2284. Part151.Orientation = Vector3.new(0.0899999961, 179.970001, 0.0799999982)
  2285. Part151.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2286. CylinderMesh152.Parent = Part151
  2287. Folder153.Name = "CFrames"
  2288. Folder153.Parent = Part151
  2289. CFrameValue154.Name = "C0"
  2290. CFrameValue154.Parent = Folder153
  2291. CFrameValue154.Value = CFrame.new(0.488456905, 0.0738759041, -0.00565720722, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  2292. Part155.Parent = Model0
  2293. Part155.Material = Enum.Material.Metal
  2294. Part155.BrickColor = BrickColor.new("Really black")
  2295. Part155.Reflectance = 0.20000000298023
  2296. Part155.Rotation = Vector3.new(69.9700012, 89.909996, -70.0599976)
  2297. Part155.CanCollide = false
  2298. Part155.Size = Vector3.new(0.141234756, 0.147224233, 0.136373296)
  2299. Part155.CFrame = CFrame.new(-0.150578201, 7.89315987, 0.580740809, 0.000503768795, 0.00138882664, 0.999998748, -0.0015519337, 0.999997675, -0.00138803513, -0.999998569, -0.0015512252, 0.00050599908)
  2300. Part155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2301. Part155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2302. Part155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2303. Part155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2304. Part155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2305. Part155.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2306. Part155.Position = Vector3.new(-0.150578201, 7.89315987, 0.580740809)
  2307. Part155.Orientation = Vector3.new(0.0799999982, 89.9700012, -0.0899999961)
  2308. Part155.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2309. SpecialMesh156.Parent = Part155
  2310. SpecialMesh156.MeshType = Enum.MeshType.Sphere
  2311. Folder157.Name = "CFrames"
  2312. Folder157.Parent = Part155
  2313. CFrameValue158.Name = "C0"
  2314. CFrameValue158.Parent = Folder157
  2315. CFrameValue158.Value = CFrame.new(0.268866956, -0.132247448, 0.550214708, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  2316. Part159.Parent = Model0
  2317. Part159.Material = Enum.Material.Metal
  2318. Part159.BrickColor = BrickColor.new("Really black")
  2319. Part159.Reflectance = 0.20000000298023
  2320. Part159.Rotation = Vector3.new(69.9700012, 89.909996, -70.0599976)
  2321. Part159.CanCollide = false
  2322. Part159.Size = Vector3.new(0.0500000007, 0.147224233, 0.136373296)
  2323. Part159.CFrame = CFrame.new(0.0490085855, 7.59284401, 0.557813585, 0.000503768795, 0.00138882664, 0.999998748, -0.0015519337, 0.999997675, -0.00138803513, -0.999998569, -0.0015512252, 0.00050599908)
  2324. Part159.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. Part159.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2326. Part159.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2327. Part159.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2328. Part159.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2329. Part159.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2330. Part159.Position = Vector3.new(0.0490085855, 7.59284401, 0.557813585)
  2331. Part159.Orientation = Vector3.new(0.0799999982, 89.9700012, -0.0899999961)
  2332. Part159.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2333. SpecialMesh160.Parent = Part159
  2334. SpecialMesh160.MeshType = Enum.MeshType.Sphere
  2335. Folder161.Name = "CFrames"
  2336. Folder161.Parent = Part159
  2337. CFrameValue162.Name = "C0"
  2338. CFrameValue162.Parent = Folder161
  2339. CFrameValue162.Value = CFrame.new(0.0688669533, 0.167755127, 0.526790619, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  2340. Part163.Parent = Model0
  2341. Part163.Material = Enum.Material.Metal
  2342. Part163.BrickColor = BrickColor.new("Really black")
  2343. Part163.Reflectance = 0.10000000149012
  2344. Part163.Rotation = Vector3.new(179.919998, 0.0299999993, -149.919998)
  2345. Part163.CanCollide = false
  2346. Part163.Size = Vector3.new(0.206904635, 0.248285562, 0.223457038)
  2347. Part163.CFrame = CFrame.new(-0.403514594, 6.82538843, 0.163937062, -0.865329802, 0.501202047, 0.000504107738, 0.501201034, 0.865329504, -0.00137740129, -0.00112663803, -0.000939203077, -0.999998868)
  2348. Part163.BottomSurface = Enum.SurfaceType.Smooth
  2349. Part163.TopSurface = Enum.SurfaceType.Smooth
  2350. Part163.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2351. Part163.Position = Vector3.new(-0.403514594, 6.82538843, 0.163937062)
  2352. Part163.Orientation = Vector3.new(0.0799999982, 179.970001, 30.0799999)
  2353. Part163.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2354. CylinderMesh164.Parent = Part163
  2355. Folder165.Name = "CFrames"
  2356. Folder165.Parent = Part163
  2357. CFrameValue166.Name = "C0"
  2358. CFrameValue166.Parent = Folder165
  2359. CFrameValue166.Value = CFrame.new(0.520385921, 0.93522644, 0.131793931, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  2360. Part167.Parent = Model0
  2361. Part167.Material = Enum.Material.Metal
  2362. Part167.BrickColor = BrickColor.new("Really black")
  2363. Part167.Reflectance = 0.10000000149012
  2364. Part167.Rotation = Vector3.new(179.919998, 0.0299999993, -169.919998)
  2365. Part167.CanCollide = false
  2366. Part167.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  2367. Part167.CFrame = CFrame.new(-0.467975885, 6.68437195, 0.409570396, -0.984565318, 0.175015628, 0.000504107738, 0.175014779, 0.984564841, -0.00137740129, -0.000737467082, -0.00126789534, -0.999998868)
  2368. Part167.BottomSurface = Enum.SurfaceType.Smooth
  2369. Part167.TopSurface = Enum.SurfaceType.Smooth
  2370. Part167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2371. Part167.Position = Vector3.new(-0.467975885, 6.68437195, 0.409570396)
  2372. Part167.Orientation = Vector3.new(0.0799999982, 179.970001, 10.0799999)
  2373. Part167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2374. CylinderMesh168.Parent = Part167
  2375. Folder169.Name = "CFrames"
  2376. Folder169.Parent = Part167
  2377. CFrameValue170.Name = "C0"
  2378. CFrameValue170.Parent = Folder169
  2379. CFrameValue170.Value = CFrame.new(0.584612846, 1.07671309, 0.377218187, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  2380. Part171.Parent = Model0
  2381. Part171.Material = Enum.Material.Metal
  2382. Part171.BrickColor = BrickColor.new("Really black")
  2383. Part171.Reflectance = 0.10000000149012
  2384. Part171.Rotation = Vector3.new(179.919998, 0.0299999993, -149.919998)
  2385. Part171.CanCollide = false
  2386. Part171.Size = Vector3.new(0.206904635, 0.248285562, 0.223457038)
  2387. Part171.CFrame = CFrame.new(-0.403253585, 6.82470942, -0.332634896, -0.865329802, 0.501202047, 0.000504107738, 0.501201034, 0.865329504, -0.00137740129, -0.00112663803, -0.000939203077, -0.999998868)
  2388. Part171.BottomSurface = Enum.SurfaceType.Smooth
  2389. Part171.TopSurface = Enum.SurfaceType.Smooth
  2390. Part171.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2391. Part171.Position = Vector3.new(-0.403253585, 6.82470942, -0.332634896)
  2392. Part171.Orientation = Vector3.new(0.0799999982, 179.970001, 30.0799999)
  2393. Part171.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2394. CylinderMesh172.Parent = Part171
  2395. Folder173.Name = "CFrames"
  2396. Folder173.Parent = Part171
  2397. CFrameValue174.Name = "C0"
  2398. CFrameValue174.Parent = Folder173
  2399. CFrameValue174.Value = CFrame.new(0.520201862, 0.935134888, -0.364778519, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  2400. Part175.Parent = Model0
  2401. Part175.Material = Enum.Material.Metal
  2402. Part175.BrickColor = BrickColor.new("Really black")
  2403. Part175.Reflectance = 0.10000000149012
  2404. Part175.Rotation = Vector3.new(-110.029999, -89.909996, -109.939995)
  2405. Part175.CanCollide = false
  2406. Part175.Size = Vector3.new(1.08000124, 1.04999983, 0.149999857)
  2407. Part175.CFrame = CFrame.new(-0.348544359, 7.60367537, 0.0330916718, -0.000503919786, 0.00138882664, -0.999998748, 0.00155193394, 0.999997675, 0.0013880349, 0.999998569, -0.0015512252, -0.000506150071)
  2408. Part175.BottomSurface = Enum.SurfaceType.Smooth
  2409. Part175.TopSurface = Enum.SurfaceType.Smooth
  2410. Part175.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2411. Part175.Position = Vector3.new(-0.348544359, 7.60367537, 0.0330916718)
  2412. Part175.Orientation = Vector3.new(-0.0799999982, -90.0299988, 0.0899999961)
  2413. Part175.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2414. Folder176.Name = "CFrames"
  2415. Folder176.Parent = Part175
  2416. CFrameValue177.Name = "C0"
  2417. CFrameValue177.Parent = Folder176
  2418. CFrameValue177.Value = CFrame.new(0.466516912, 0.156661987, 0.00214766338, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  2419. Part178.Name = "cannonpiece3"
  2420. Part178.Parent = Model0
  2421. Part178.Material = Enum.Material.Metal
  2422. Part178.BrickColor = BrickColor.new("Really black")
  2423. Part178.Reflectance = 0.10000000149012
  2424. Part178.Rotation = Vector3.new(179.909988, 0.0299999993, -179.919998)
  2425. Part178.CanCollide = false
  2426. Part178.Size = Vector3.new(0.520000219, 0.139999866, 0.669999599)
  2427. Part178.CFrame = CFrame.new(-0.370993108, 7.23648453, 0.0258320142, -0.999998748, 0.00138882664, 0.000503865362, 0.00138803502, 0.999997675, -0.00155193394, -0.000506095588, -0.0015512252, -0.999998569)
  2428. Part178.BottomSurface = Enum.SurfaceType.Smooth
  2429. Part178.TopSurface = Enum.SurfaceType.Smooth
  2430. Part178.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2431. Part178.Position = Vector3.new(-0.370993108, 7.23648453, 0.0258320142)
  2432. Part178.Orientation = Vector3.new(0.0899999961, 179.970001, 0.0799999982)
  2433. Part178.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2434. CylinderMesh179.Parent = Part178
  2435. ParticleEmitter180.Parent = Part178
  2436. ParticleEmitter180.Transparency = NumberSequence.new(0.64999997615814,0.64999997615814,0.89999997615814,1)
  2437. ParticleEmitter180.Size = NumberSequence.new(0.68000000715256,0.68000000715256,1,1.3099999427795,1.8099999427795,3.5999999046326,5.4000000953674)
  2438. ParticleEmitter180.Color = ColorSequence.new(Color3.new(0.243137, 0.243137, 0.243137),Color3.new(0.54902, 0.54902, 0.54902))
  2439. ParticleEmitter180.LightEmission = 0.60000002384186
  2440. ParticleEmitter180.Texture = "http://www.roblox.com/asset/?id=253188732"
  2441. ParticleEmitter180.Acceleration = Vector3.new(0, 1, 0)
  2442. ParticleEmitter180.Lifetime = NumberRange.new(2, 2)
  2443. ParticleEmitter180.Rate = 50
  2444. ParticleEmitter180.Speed = NumberRange.new(0.20000000298023, 0.20000000298023)
  2445. ParticleEmitter180.VelocitySpread = 20
  2446. ParticleEmitter180.Color = ColorSequence.new(Color3.new(0.243137, 0.243137, 0.243137),Color3.new(0.54902, 0.54902, 0.54902))
  2447. ParticleEmitter180.Enabled=false
  2448. Folder181.Name = "CFrames"
  2449. Folder181.Parent = Part178
  2450. CFrameValue182.Name = "C0"
  2451. CFrameValue182.Parent = Folder181
  2452. CFrameValue182.Value = CFrame.new(0.488456905, 0.523871899, -0.00567818806, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  2453. Part183.Parent = Model0
  2454. Part183.Material = Enum.Material.Metal
  2455. Part183.BrickColor = BrickColor.new("Really black")
  2456. Part183.Reflectance = 0.10000000149012
  2457. Part183.Rotation = Vector3.new(4.03999996, 79.9700012, -50.3999977)
  2458. Part183.CanCollide = false
  2459. Part183.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  2460. Part183.CFrame = CFrame.new(0.450347871, 6.53836679, -0.500475764, 0.111072272, 0.134249866, 0.984702826, -0.724374235, 0.689297438, -0.0122678569, -0.680400312, -0.711930931, 0.173809081)
  2461. Part183.BottomSurface = Enum.SurfaceType.Smooth
  2462. Part183.TopSurface = Enum.SurfaceType.Smooth
  2463. Part183.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2464. Part183.Position = Vector3.new(0.450347871, 6.53836679, -0.500475764)
  2465. Part183.Orientation = Vector3.new(0.699999988, 79.9899979, -46.4199982)
  2466. Part183.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2467. CylinderMesh184.Parent = Part183
  2468. Folder185.Name = "CFrames"
  2469. Folder185.Parent = Part183
  2470. CFrameValue186.Name = "C0"
  2471. CFrameValue186.Parent = Folder185
  2472. CFrameValue186.Value = CFrame.new(-0.333770037, 1.22003126, -0.533195496, -0.111971207, -0.133180961, -0.984746218, 0.723163009, -0.690586805, 0.0111699579, -0.681540489, -0.710881472, 0.17363745)
  2473. Part187.Parent = Model0
  2474. Part187.Material = Enum.Material.Metal
  2475. Part187.BrickColor = BrickColor.new("Really black")
  2476. Part187.Reflectance = 0.10000000149012
  2477. Part187.Rotation = Vector3.new(179.919998, 0.0299999993, -149.919998)
  2478. Part187.CanCollide = false
  2479. Part187.Size = Vector3.new(0.206904635, 0.248285562, 0.223457038)
  2480. Part187.CFrame = CFrame.new(-0.403552502, 6.82576942, 0.409412533, -0.865329802, 0.501202047, 0.000504107738, 0.501201034, 0.865329504, -0.00137740129, -0.00112663803, -0.000939203077, -0.999998868)
  2481. Part187.BottomSurface = Enum.SurfaceType.Smooth
  2482. Part187.TopSurface = Enum.SurfaceType.Smooth
  2483. Part187.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2484. Part187.Position = Vector3.new(-0.403552502, 6.82576942, 0.409412533)
  2485. Part187.Orientation = Vector3.new(0.0799999982, 179.970001, 30.0799999)
  2486. Part187.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2487. CylinderMesh188.Parent = Part187
  2488. Folder189.Name = "CFrames"
  2489. Folder189.Parent = Part187
  2490. CFrameValue190.Name = "C0"
  2491. CFrameValue190.Parent = Folder189
  2492. CFrameValue190.Value = CFrame.new(0.520385861, 0.93522644, 0.377269715, 0.86602515, -0.499999911, -0.00034912792, -0.5, -0.866025209, -0.000174530433, -0.000215129869, 0.000325741188, -0.999999881)
  2493. Part191.Parent = Model0
  2494. Part191.Material = Enum.Material.Metal
  2495. Part191.BrickColor = BrickColor.new("Really black")
  2496. Part191.Reflectance = 0.20000000298023
  2497. Part191.Rotation = Vector3.new(-110.029999, -89.909996, -109.939995)
  2498. Part191.CanCollide = false
  2499. Part191.Size = Vector3.new(0.0500000007, 0.147224233, 0.136373296)
  2500. Part191.CFrame = CFrame.new(0.049641706, 7.59113598, -0.503765643, -0.000503919786, 0.00138882664, -0.999998748, 0.00155193394, 0.999997675, 0.0013880349, 0.999998569, -0.0015512252, -0.000506150071)
  2501. Part191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2502. Part191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2503. Part191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2504. Part191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2505. Part191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. Part191.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2507. Part191.Position = Vector3.new(0.049641706, 7.59113598, -0.503765643)
  2508. Part191.Orientation = Vector3.new(-0.0799999982, -90.0299988, 0.0899999961)
  2509. Part191.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2510. SpecialMesh192.Parent = Part191
  2511. SpecialMesh192.MeshType = Enum.MeshType.Sphere
  2512. Folder193.Name = "CFrames"
  2513. Folder193.Parent = Part191
  2514. CFrameValue194.Name = "C0"
  2515. CFrameValue194.Parent = Folder193
  2516. CFrameValue194.Value = CFrame.new(0.0683980137, 0.167815685, -0.534790039, 0.000349182315, -9.01152362e-08, 0.999999821, -2.44472176e-09, -0.999999881, -8.47604156e-08, 0.999999881, 2.56113708e-09, -0.000349233043)
  2517. Part195.Name = "cannonpiece1"
  2518. Part195.Parent = Model0
  2519. Part195.Material = Enum.Material.Metal
  2520. Part195.BrickColor = BrickColor.new("Really black")
  2521. Part195.Reflectance = 0.10000000149012
  2522. Part195.Rotation = Vector3.new(179.909988, 0.0299999993, -179.919998)
  2523. Part195.CanCollide = false
  2524. Part195.Size = Vector3.new(0.5400002, 0.0830767974, 0.695768833)
  2525. Part195.CFrame = CFrame.new(-0.370993108, 7.23648453, 0.0258320142, -0.999998748, 0.00138882664, 0.000503865362, 0.00138803502, 0.999997675, -0.00155193394, -0.000506095588, -0.0015512252, -0.999998569)
  2526. Part195.BottomSurface = Enum.SurfaceType.Smooth
  2527. Part195.TopSurface = Enum.SurfaceType.Smooth
  2528. Part195.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2529. Part195.Position = Vector3.new(-0.370993108, 7.23648453, 0.0258320142)
  2530. Part195.Orientation = Vector3.new(0.0899999961, 179.970001, 0.0799999982)
  2531. Part195.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2532. CylinderMesh196.Parent = Part195
  2533. Folder197.Name = "CFrames"
  2534. Folder197.Parent = Part195
  2535. CFrameValue198.Name = "C0"
  2536. CFrameValue198.Parent = Folder197
  2537. CFrameValue198.Value = CFrame.new(0.488456905, 0.523871899, -0.00567818806, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  2538. Part199.Parent = Model0
  2539. Part199.Material = Enum.Material.Metal
  2540. Part199.BrickColor = BrickColor.new("Really black")
  2541. Part199.Reflectance = 0.10000000149012
  2542. Part199.Rotation = Vector3.new(163.349991, 9.39999962, -176.470001)
  2543. Part199.CanCollide = false
  2544. Part199.Size = Vector3.new(0.166545585, 0.179778785, 0.162522167)
  2545. Part199.CFrame = CFrame.new(0.465992659, 6.58990908, -0.566047728, -0.984707415, 0.0607719347, 0.163272306, 0.0123203108, 0.959130406, -0.282695264, -0.173779443, -0.276360571, -0.945211709)
  2546. Part199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2547. Part199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. Part199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2549. Part199.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2550. Part199.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2551. Part199.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2552. Part199.Position = Vector3.new(0.465992659, 6.58990908, -0.566047728)
  2553. Part199.Orientation = Vector3.new(16.4200001, 170.199997, 0.74000001)
  2554. Part199.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2555. SpecialMesh200.Parent = Part199
  2556. SpecialMesh200.MeshType = Enum.MeshType.Sphere
  2557. Folder201.Name = "CFrames"
  2558. Folder201.Parent = Part199
  2559. CFrameValue202.Name = "C0"
  2560. CFrameValue202.Parent = Folder201
  2561. CFrameValue202.Value = CFrame.new(-0.349332988, 1.16836548, -0.598689914, 0.984750867, -0.0593967699, -0.163516372, -0.0112223597, -0.959641516, 0.281001687, -0.173607737, -0.274881631, -0.945674479)
  2562. Part203.Parent = Model0
  2563. Part203.Material = Enum.Material.Metal
  2564. Part203.BrickColor = BrickColor.new("Really black")
  2565. Part203.Reflectance = 0.15000000596046
  2566. Part203.Rotation = Vector3.new(-90.0899963, 0.0799999982, 179.98999)
  2567. Part203.CanCollide = false
  2568. Part203.Size = Vector3.new(0.299999982, 1.13999999, 0.339999974)
  2569. Part203.CFrame = CFrame.new(0.197031051, 7.09450006, 0.0268821809, -0.999998868, -0.000154799913, 0.00138882664, 0.00138857658, 0.00155140576, 0.999997675, -0.000157030285, 0.999998689, -0.00155118154)
  2570. Part203.BottomSurface = Enum.SurfaceType.Smooth
  2571. Part203.TopSurface = Enum.SurfaceType.Smooth
  2572. Part203.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2573. Part203.Position = Vector3.new(0.197031051, 7.09450006, 0.0268821809)
  2574. Part203.Orientation = Vector3.new(-89.8799973, 138.160004, 41.829998)
  2575. Part203.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2576. CylinderMesh204.Parent = Part203
  2577. Folder205.Name = "CFrames"
  2578. Folder205.Parent = Part203
  2579. CFrameValue206.Name = "C0"
  2580. CFrameValue206.Parent = Folder205
  2581. CFrameValue206.Value = CFrame.new(-0.0797640234, 0.665069103, -0.00493621454, 0.999999881, 6.20493665e-08, -9.01220858e-08, -8.47599608e-08, 4.10946086e-08, -0.999999881, -1.12777343e-07, 0.99999994, 4.62168828e-08)
  2582. Part207.Parent = Model0
  2583. Part207.Material = Enum.Material.Metal
  2584. Part207.BrickColor = BrickColor.new("Really black")
  2585. Part207.Reflectance = 0.20000000298023
  2586. Part207.Rotation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  2587. Part207.CanCollide = false
  2588. Part207.Size = Vector3.new(0.0600012988, 0.179999471, 1.07999992)
  2589. Part207.CFrame = CFrame.new(0.111793168, 7.88118935, 0.0279411152, 0.999998748, 0.00138882664, -0.000503995281, -0.00138803478, 0.999997675, 0.00155193405, 0.000506225624, -0.0015512252, 0.999998569)
  2590. Part207.BottomSurface = Enum.SurfaceType.Smooth
  2591. Part207.TopSurface = Enum.SurfaceType.Smooth
  2592. Part207.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2593. Part207.Position = Vector3.new(0.111793168, 7.88118935, 0.0279411152)
  2594. Part207.Orientation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  2595. Part207.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2596. Folder208.Name = "CFrames"
  2597. Folder208.Parent = Part207
  2598. CFrameValue209.Name = "C0"
  2599. CFrameValue209.Parent = Folder208
  2600. CFrameValue209.Value = CFrame.new(0.00656592846, -0.121498585, -0.00264358521, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  2601. Part210.Parent = Model0
  2602. Part210.Material = Enum.Material.Metal
  2603. Part210.BrickColor = BrickColor.new("Really black")
  2604. Part210.Reflectance = 0.20000000298023
  2605. Part210.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  2606. Part210.CanCollide = false
  2607. Part210.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2608. Part210.CFrame = CFrame.new(-0.464028567, 6.59080839, -0.332346261, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  2609. Part210.BottomSurface = Enum.SurfaceType.Smooth
  2610. Part210.TopSurface = Enum.SurfaceType.Smooth
  2611. Part210.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2612. Part210.Position = Vector3.new(-0.464028567, 6.59080839, -0.332346261)
  2613. Part210.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  2614. Part210.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2615. CylinderMesh211.Parent = Part210
  2616. Folder212.Name = "CFrames"
  2617. Folder212.Parent = Part210
  2618. CFrameValue213.Name = "C0"
  2619. CFrameValue213.Parent = Folder212
  2620. CFrameValue213.Value = CFrame.new(0.580651999, 1.16912031, -0.364843369, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2621. Part214.Parent = Model0
  2622. Part214.Material = Enum.Material.Metal
  2623. Part214.BrickColor = BrickColor.new("Really black")
  2624. Part214.Reflectance = 0.20000000298023
  2625. Part214.Rotation = Vector3.new(69.9700012, 89.909996, -70.0599976)
  2626. Part214.CanCollide = false
  2627. Part214.Size = Vector3.new(0.0500000007, 0.147224233, 0.136373296)
  2628. Part214.CFrame = CFrame.new(-0.0514079556, 7.2929883, 0.558263183, 0.000503768795, 0.00138882664, 0.999998748, -0.0015519337, 0.999997675, -0.00138803513, -0.999998569, -0.0015512252, 0.00050599908)
  2629. Part214.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2630. Part214.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2631. Part214.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2632. Part214.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2633. Part214.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2634. Part214.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2635. Part214.Position = Vector3.new(-0.0514079556, 7.2929883, 0.558263183)
  2636. Part214.Orientation = Vector3.new(0.0799999982, 89.9700012, -0.0899999961)
  2637. Part214.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2638. SpecialMesh215.Parent = Part214
  2639. SpecialMesh215.MeshType = Enum.MeshType.Sphere
  2640. Folder216.Name = "CFrames"
  2641. Folder216.Parent = Part214
  2642. CFrameValue217.Name = "C0"
  2643. CFrameValue217.Parent = Folder216
  2644. CFrameValue217.Value = CFrame.new(0.168866977, 0.467750549, 0.526790559, -0.000349031325, -9.01152362e-08, -0.999999821, 2.44472176e-09, -0.999999881, 8.47589945e-08, -0.999999881, 2.56113708e-09, 0.000349082053)
  2645. Part218.Parent = Model0
  2646. Part218.Material = Enum.Material.Metal
  2647. Part218.BrickColor = BrickColor.new("Really black")
  2648. Part218.Reflectance = 0.10000000149012
  2649. Part218.Rotation = Vector3.new(-90.0899963, 0.0799999982, 179.98999)
  2650. Part218.CanCollide = false
  2651. Part218.Size = Vector3.new(0.340000004, 1.12, 0.339999974)
  2652. Part218.CFrame = CFrame.new(0.197031051, 7.09450006, 0.0268821809, -0.999998868, -0.000154799913, 0.00138882664, 0.00138857658, 0.00155140576, 0.999997675, -0.000157030285, 0.999998689, -0.00155118154)
  2653. Part218.BottomSurface = Enum.SurfaceType.Smooth
  2654. Part218.TopSurface = Enum.SurfaceType.Smooth
  2655. Part218.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2656. Part218.Position = Vector3.new(0.197031051, 7.09450006, 0.0268821809)
  2657. Part218.Orientation = Vector3.new(-89.8799973, 138.160004, 41.829998)
  2658. Part218.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2659. CylinderMesh219.Parent = Part218
  2660. Folder220.Name = "CFrames"
  2661. Folder220.Parent = Part218
  2662. CFrameValue221.Name = "C0"
  2663. CFrameValue221.Parent = Folder220
  2664. CFrameValue221.Value = CFrame.new(-0.0797640234, 0.665069103, -0.00493621454, 0.999999881, 6.20493665e-08, -9.01220858e-08, -8.47599608e-08, 4.10946086e-08, -0.999999881, -1.12777343e-07, 0.99999994, 4.62168828e-08)
  2665. Part222.Parent = Model0
  2666. Part222.Material = Enum.Material.Metal
  2667. Part222.BrickColor = BrickColor.new("Really black")
  2668. Part222.Reflectance = 0.10000000149012
  2669. Part222.Rotation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  2670. Part222.CanCollide = false
  2671. Part222.Size = Vector3.new(1.17000127, 0.193584591, 1.06981122)
  2672. Part222.CFrame = CFrame.new(0.0671457797, 8.13306618, 0.0225137509, 0.999998748, 0.00138882664, -0.000503995281, -0.00138803478, 0.999997675, 0.00155193405, 0.000506225624, -0.0015512252, 0.999998569)
  2673. Part222.BottomSurface = Enum.SurfaceType.Smooth
  2674. Part222.TopSurface = Enum.SurfaceType.Smooth
  2675. Part222.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2676. Part222.Position = Vector3.new(0.0671457797, 8.13306618, 0.0225137509)
  2677. Part222.Orientation = Vector3.new(-0.0899999961, -0.0299999993, -0.0799999982)
  2678. Part222.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2679. Folder223.Name = "CFrames"
  2680. Folder223.Parent = Part222
  2681. CFrameValue224.Name = "C0"
  2682. CFrameValue224.Parent = Folder223
  2683. CFrameValue224.Value = CFrame.new(0.0515638553, -0.373321056, -0.00767325982, -0.999999821, -9.01152362e-08, 0.000349257811, 8.47610977e-08, -0.999999881, -2.44472176e-09, 0.000349308539, 2.56113708e-09, 0.999999881)
  2684. Part225.Parent = Model0
  2685. Part225.Material = Enum.Material.Metal
  2686. Part225.BrickColor = BrickColor.new("Really black")
  2687. Part225.Reflectance = 0.20000000298023
  2688. Part225.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  2689. Part225.CanCollide = false
  2690. Part225.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2691. Part225.CFrame = CFrame.new(-0.464105815, 6.5915823, 0.166872978, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  2692. Part225.BottomSurface = Enum.SurfaceType.Smooth
  2693. Part225.TopSurface = Enum.SurfaceType.Smooth
  2694. Part225.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2695. Part225.Position = Vector3.new(-0.464105815, 6.5915823, 0.166872978)
  2696. Part225.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  2697. Part225.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2698. CylinderMesh226.Parent = Part225
  2699. Folder227.Name = "CFrames"
  2700. Folder227.Parent = Part225
  2701. CFrameValue228.Name = "C0"
  2702. CFrameValue228.Parent = Folder227
  2703. CFrameValue228.Value = CFrame.new(0.580651939, 1.16912079, 0.134376496, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2704. Part229.Parent = Model0
  2705. Part229.Material = Enum.Material.Metal
  2706. Part229.BrickColor = BrickColor.new("Really black")
  2707. Part229.Reflectance = 0.20000000298023
  2708. Part229.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  2709. Part229.CanCollide = false
  2710. Part229.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2711. Part229.CFrame = CFrame.new(-0.469845384, 6.70973587, -0.332512587, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  2712. Part229.BottomSurface = Enum.SurfaceType.Smooth
  2713. Part229.TopSurface = Enum.SurfaceType.Smooth
  2714. Part229.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2715. Part229.Position = Vector3.new(-0.469845384, 6.70973587, -0.332512587)
  2716. Part229.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  2717. Part229.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2718. CylinderMesh230.Parent = Part229
  2719. Folder231.Name = "CFrames"
  2720. Folder231.Parent = Part229
  2721. CFrameValue232.Name = "C0"
  2722. CFrameValue232.Parent = Folder231
  2723. CFrameValue232.Value = CFrame.new(0.586633921, 1.05020094, -0.364824295, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2724. Part233.Parent = Model0
  2725. Part233.Material = Enum.Material.Metal
  2726. Part233.BrickColor = BrickColor.new("Really black")
  2727. Part233.Reflectance = 0.20000000298023
  2728. Part233.Rotation = Vector3.new(89.9399948, -30.0799999, -179.959991)
  2729. Part233.CanCollide = false
  2730. Part233.Size = Vector3.new(0.206904635, 0.208285585, 0.0700000003)
  2731. Part233.CFrame = CFrame.new(-0.469922572, 6.71050978, 0.166708559, -0.865329862, 0.000550859841, -0.501201987, 0.501200914, -0.00137743889, -0.865329683, -0.00116711273, -0.999998868, 0.000915803481)
  2732. Part233.BottomSurface = Enum.SurfaceType.Smooth
  2733. Part233.TopSurface = Enum.SurfaceType.Smooth
  2734. Part233.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2735. Part233.Position = Vector3.new(-0.469922572, 6.71050978, 0.166708559)
  2736. Part233.Orientation = Vector3.new(59.9199982, -89.9000015, 90.159996)
  2737. Part233.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2738. CylinderMesh234.Parent = Part233
  2739. Folder235.Name = "CFrames"
  2740. Folder235.Parent = Part233
  2741. CFrameValue236.Name = "C0"
  2742. CFrameValue236.Parent = Folder235
  2743. CFrameValue236.Value = CFrame.new(0.586633861, 1.05020142, 0.134397477, 0.866025209, -0.000395880023, 0.499999851, -0.49999994, -0.00017455779, 0.866025329, -0.000255604798, -0.999999881, -0.000349141017)
  2744. Part237.Parent = Model0
  2745. Part237.Material = Enum.Material.Metal
  2746. Part237.BrickColor = BrickColor.new("Really black")
  2747. Part237.Reflectance = 0.10000000149012
  2748. Part237.Rotation = Vector3.new(4.03999996, 79.9700012, 29.5999985)
  2749. Part237.CanCollide = false
  2750. Part237.Size = Vector3.new(0.206904635, 0.248285562, 0.223457038)
  2751. Part237.CFrame = CFrame.new(0.448062152, 6.82244825, -0.467505664, 0.151497811, -0.0860725716, 0.984702826, 0.553039253, 0.833064675, -0.0122678569, -0.819265366, 0.54643786, 0.173809081)
  2752. Part237.BottomSurface = Enum.SurfaceType.Smooth
  2753. Part237.TopSurface = Enum.SurfaceType.Smooth
  2754. Part237.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2755. Part237.Position = Vector3.new(0.448062152, 6.82244825, -0.467505664)
  2756. Part237.Orientation = Vector3.new(0.699999988, 79.9899979, 33.579998)
  2757. Part237.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2758. CylinderMesh238.Parent = Part237
  2759. Folder239.Name = "CFrames"
  2760. Folder239.Parent = Part237
  2761. CFrameValue240.Name = "C0"
  2762. CFrameValue240.Parent = Folder239
  2763. CFrameValue240.Value = CFrame.new(-0.33109504, 0.936004639, -0.49978441, -0.150601238, 0.0871434659, -0.984746218, -0.554519355, -0.832095742, 0.0111699579, -0.818429828, 0.547743022, 0.17363745)
  2764. Part241.Parent = Model0
  2765. Part241.Material = Enum.Material.Metal
  2766. Part241.BrickColor = BrickColor.new("Really black")
  2767. Part241.Reflectance = 0.10000000149012
  2768. Part241.Rotation = Vector3.new(179.919998, 0.0299999993, -169.919998)
  2769. Part241.CanCollide = false
  2770. Part241.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  2771. Part241.CFrame = CFrame.new(-0.467861146, 6.68322039, -0.332474977, -0.984565318, 0.175015628, 0.000504107738, 0.175014779, 0.984564841, -0.00137740129, -0.000737467082, -0.00126789534, -0.999998868)
  2772. Part241.BottomSurface = Enum.SurfaceType.Smooth
  2773. Part241.TopSurface = Enum.SurfaceType.Smooth
  2774. Part241.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2775. Part241.Position = Vector3.new(-0.467861146, 6.68322039, -0.332474977)
  2776. Part241.Orientation = Vector3.new(0.0799999982, 179.970001, 10.0799999)
  2777. Part241.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2778. CylinderMesh242.Parent = Part241
  2779. Folder243.Name = "CFrames"
  2780. Folder243.Parent = Part241
  2781. CFrameValue244.Name = "C0"
  2782. CFrameValue244.Parent = Folder243
  2783. CFrameValue244.Value = CFrame.new(0.584612906, 1.07671356, -0.36482811, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  2784. Part245.Parent = Model0
  2785. Part245.Material = Enum.Material.Metal
  2786. Part245.BrickColor = BrickColor.new("Really black")
  2787. Part245.Reflectance = 0.10000000149012
  2788. Part245.Rotation = Vector3.new(90.0199966, -70.0800018, 90.0999985)
  2789. Part245.CanCollide = false
  2790. Part245.Size = Vector3.new(0.166545585, 0.179778785, 0.162522167)
  2791. Part245.CFrame = CFrame.new(-0.489214212, 6.5864048, -0.335730791, -0.000618976075, -0.340714693, -0.940166473, 0.00138808647, 0.940165341, -0.340715319, 0.999998808, -0.001515946, -0.000109072309)
  2792. Part245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2793. Part245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2794. Part245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. Part245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. Part245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. Part245.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2798. Part245.Position = Vector3.new(-0.489214212, 6.5864048, -0.335730791)
  2799. Part245.Orientation = Vector3.new(19.9200001, -90.0099945, 0.0799999982)
  2800. Part245.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2801. SpecialMesh246.Parent = Part245
  2802. SpecialMesh246.MeshType = Enum.MeshType.Sphere
  2803. Folder247.Name = "CFrames"
  2804. Folder247.Parent = Part245
  2805. CFrameValue248.Name = "C0"
  2806. CFrameValue248.Parent = Folder247
  2807. CFrameValue248.Value = CFrame.new(0.605831981, 1.17355347, -0.36823082, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  2808. Part249.Parent = Model0
  2809. Part249.Material = Enum.Material.Metal
  2810. Part249.BrickColor = BrickColor.new("Really black")
  2811. Part249.Reflectance = 0.10000000149012
  2812. Part249.Rotation = Vector3.new(179.919998, 0.0299999993, -169.919998)
  2813. Part249.CanCollide = false
  2814. Part249.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  2815. Part249.CFrame = CFrame.new(-0.467937976, 6.68399096, 0.164094985, -0.984565318, 0.175015628, 0.000504107738, 0.175014779, 0.984564841, -0.00137740129, -0.000737467082, -0.00126789534, -0.999998868)
  2816. Part249.BottomSurface = Enum.SurfaceType.Smooth
  2817. Part249.TopSurface = Enum.SurfaceType.Smooth
  2818. Part249.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2819. Part249.Position = Vector3.new(-0.467937976, 6.68399096, 0.164094985)
  2820. Part249.Orientation = Vector3.new(0.0799999982, 179.970001, 10.0799999)
  2821. Part249.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2822. CylinderMesh250.Parent = Part249
  2823. Folder251.Name = "CFrames"
  2824. Folder251.Parent = Part249
  2825. CFrameValue252.Name = "C0"
  2826. CFrameValue252.Parent = Folder251
  2827. CFrameValue252.Value = CFrame.new(0.584612906, 1.07671356, 0.131742448, 0.984807551, -0.173648193, -0.00034912792, -0.173648253, -0.98480773, -0.000174530433, -0.000313566008, 0.000232517952, -0.999999881)
  2828. Part253.Parent = Model0
  2829. Part253.Material = Enum.Material.Metal
  2830. Part253.BrickColor = BrickColor.new("Really black")
  2831. Part253.Reflectance = 0.10000000149012
  2832. Part253.Rotation = Vector3.new(179.919998, 0.0299999993, 130.080002)
  2833. Part253.CanCollide = false
  2834. Part253.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  2835. Part253.CFrame = CFrame.new(-0.418895632, 6.53902626, -0.332253218, -0.643850625, -0.765150905, 0.000504107738, -0.765150666, 0.643849611, -0.00137740129, 0.000729295774, -0.00127261272, -0.999998868)
  2836. Part253.BottomSurface = Enum.SurfaceType.Smooth
  2837. Part253.TopSurface = Enum.SurfaceType.Smooth
  2838. Part253.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2839. Part253.Position = Vector3.new(-0.418895632, 6.53902626, -0.332253218)
  2840. Part253.Orientation = Vector3.new(0.0799999982, 179.970001, -49.9199982)
  2841. Part253.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2842. CylinderMesh254.Parent = Part253
  2843. Folder255.Name = "CFrames"
  2844. Folder255.Parent = Part253
  2845. CFrameValue256.Name = "C0"
  2846. CFrameValue256.Parent = Folder255
  2847. CFrameValue256.Value = CFrame.new(0.535447121, 1.22083998, -0.364837646, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  2848. Part257.Parent = Model0
  2849. Part257.Material = Enum.Material.Metal
  2850. Part257.BrickColor = BrickColor.new("Really black")
  2851. Part257.Reflectance = 0.10000000149012
  2852. Part257.Rotation = Vector3.new(179.909988, 0.0299999993, -179.919998)
  2853. Part257.CanCollide = false
  2854. Part257.Size = Vector3.new(0.480000228, 0.819999874, 0.569999635)
  2855. Part257.CFrame = CFrame.new(-0.37045148, 7.62648344, 0.0252461098, -0.999998748, 0.00138882664, 0.000503865362, 0.00138803502, 0.999997675, -0.00155193394, -0.000506095588, -0.0015512252, -0.999998569)
  2856. Part257.BottomSurface = Enum.SurfaceType.Smooth
  2857. Part257.TopSurface = Enum.SurfaceType.Smooth
  2858. Part257.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2859. Part257.Position = Vector3.new(-0.37045148, 7.62648344, 0.0252461098)
  2860. Part257.Orientation = Vector3.new(0.0899999961, 179.970001, 0.0799999982)
  2861. Part257.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2862. CylinderMesh258.Parent = Part257
  2863. Folder259.Name = "CFrames"
  2864. Folder259.Parent = Part257
  2865. CFrameValue260.Name = "C0"
  2866. CFrameValue260.Parent = Folder259
  2867. CFrameValue260.Value = CFrame.new(0.488456905, 0.133872509, -0.00565911457, 0.999999821, -9.01152362e-08, -0.000349127891, -8.47923047e-08, -0.999999881, 2.56113708e-09, -0.000349178561, 2.56113708e-09, -0.999999881)
  2868. Part261.Parent = Model0
  2869. Part261.Material = Enum.Material.Metal
  2870. Part261.BrickColor = BrickColor.new("Really black")
  2871. Part261.Reflectance = 0.10000000149012
  2872. Part261.Rotation = Vector3.new(179.919998, 0.0299999993, 130.080002)
  2873. Part261.CanCollide = false
  2874. Part261.Size = Vector3.new(0.206904635, 0.190352306, 0.173799917)
  2875. Part261.CFrame = CFrame.new(-0.418972462, 6.53979588, 0.164318621, -0.643850625, -0.765150905, 0.000504107738, -0.765150666, 0.643849611, -0.00137740129, 0.000729295774, -0.00127261272, -0.999998868)
  2876. Part261.BottomSurface = Enum.SurfaceType.Smooth
  2877. Part261.TopSurface = Enum.SurfaceType.Smooth
  2878. Part261.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2879. Part261.Position = Vector3.new(-0.418972462, 6.53979588, 0.164318621)
  2880. Part261.Orientation = Vector3.new(0.0799999982, 179.970001, -49.9199982)
  2881. Part261.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2882. CylinderMesh262.Parent = Part261
  2883. Folder263.Name = "CFrames"
  2884. Folder263.Parent = Part261
  2885. CFrameValue264.Name = "C0"
  2886. CFrameValue264.Parent = Folder263
  2887. CFrameValue264.Value = CFrame.new(0.535447121, 1.22084045, 0.131734803, 0.642787516, 0.766044319, -0.00034912792, 0.766044319, -0.642787635, -0.000174530433, -0.000358149526, -0.000155297108, -0.999999881)
  2888. Part265.Parent = Model0
  2889. Part265.Material = Enum.Material.Metal
  2890. Part265.BrickColor = BrickColor.new("Really black")
  2891. Part265.Reflectance = 0.10000000149012
  2892. Part265.Rotation = Vector3.new(90.0199966, -70.0800018, 90.0999985)
  2893. Part265.CanCollide = false
  2894. Part265.Size = Vector3.new(0.166545585, 0.179778785, 0.162522167)
  2895. Part265.CFrame = CFrame.new(-0.489290982, 6.58717585, 0.16083914, -0.000618976075, -0.340714693, -0.940166473, 0.00138808647, 0.940165341, -0.340715319, 0.999998808, -0.001515946, -0.000109072309)
  2896. Part265.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2897. Part265.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2898. Part265.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2899. Part265.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2900. Part265.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2901. Part265.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2902. Part265.Position = Vector3.new(-0.489290982, 6.58717585, 0.16083914)
  2903. Part265.Orientation = Vector3.new(19.9200001, -90.0099945, 0.0799999982)
  2904. Part265.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2905. SpecialMesh266.Parent = Part265
  2906. SpecialMesh266.MeshType = Enum.MeshType.Sphere
  2907. Folder267.Name = "CFrames"
  2908. Folder267.Parent = Part265
  2909. CFrameValue268.Name = "C0"
  2910. CFrameValue268.Parent = Folder267
  2911. CFrameValue268.Value = CFrame.new(0.605831921, 1.17355299, 0.128339738, 0.000464010984, 0.342020035, 0.939692497, 0.000164004741, -0.939692557, 0.342020035, 0.999999881, -4.59968578e-06, -0.000492169929)
  2912. WedgePart269.Parent = Model0
  2913. WedgePart269.Material = Enum.Material.Metal
  2914. WedgePart269.BrickColor = BrickColor.new("Really black")
  2915. WedgePart269.Rotation = Vector3.new(-90.0899963, 0.0799999982, 89.9700012)
  2916. WedgePart269.CanCollide = false
  2917. WedgePart269.Size = Vector3.new(0.549999952, 0.0500000007, 0.999999881)
  2918. WedgePart269.CFrame = CFrame.new(-0.443649024, 7.54879951, 0.023138959, 0.000503768795, -0.999998748, 0.00138878287, -0.0015519337, 0.00138799136, 0.999997675, -0.999998569, -0.00050599908, -0.0015512252)
  2919. WedgePart269.BottomSurface = Enum.SurfaceType.Smooth
  2920. WedgePart269.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2921. WedgePart269.Position = Vector3.new(-0.443649024, 7.54879951, 0.023138959)
  2922. WedgePart269.Orientation = Vector3.new(-89.8799973, 138.160004, -48.1899986)
  2923. WedgePart269.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2924. Folder270.Name = "CFrames"
  2925. Folder270.Parent = WedgePart269
  2926. CFrameValue271.Name = "C0"
  2927. CFrameValue271.Parent = Folder270
  2928. CFrameValue271.Value = CFrame.new(0.561546862, 0.211654186, -0.00787545741, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  2929. WedgePart272.Parent = Model0
  2930. WedgePart272.Material = Enum.Material.Metal
  2931. WedgePart272.BrickColor = BrickColor.new("Really black")
  2932. WedgePart272.Reflectance = 0.10000000149012
  2933. WedgePart272.Rotation = Vector3.new(-90.0899963, 0.0799999982, 89.9700012)
  2934. WedgePart272.CanCollide = false
  2935. WedgePart272.Size = Vector3.new(0.25000003, 0.0500000007, 0.999999881)
  2936. WedgePart272.CFrame = CFrame.new(-0.443423122, 7.54817915, -0.376860082, 0.000503768795, -0.999998748, 0.00138878287, -0.0015519337, 0.00138799136, 0.999997675, -0.999998569, -0.00050599908, -0.0015512252)
  2937. WedgePart272.BottomSurface = Enum.SurfaceType.Smooth
  2938. WedgePart272.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2939. WedgePart272.Position = Vector3.new(-0.443423122, 7.54817915, -0.376860082)
  2940. WedgePart272.Orientation = Vector3.new(-89.8799973, 138.160004, -48.1899986)
  2941. WedgePart272.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2942. Folder273.Name = "CFrames"
  2943. Folder273.Parent = WedgePart272
  2944. CFrameValue274.Name = "C0"
  2945. CFrameValue274.Parent = Folder273
  2946. CFrameValue274.Value = CFrame.new(0.56138289, 0.211654186, -0.407875031, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  2947. WedgePart275.Parent = Model0
  2948. WedgePart275.Material = Enum.Material.Metal
  2949. WedgePart275.BrickColor = BrickColor.new("Really black")
  2950. WedgePart275.Reflectance = 0.10000000149012
  2951. WedgePart275.Rotation = Vector3.new(-90.0899963, 0.0799999982, 89.9700012)
  2952. WedgePart275.CanCollide = false
  2953. WedgePart275.Size = Vector3.new(0.25000003, 0.0500000007, 0.999999881)
  2954. WedgePart275.CFrame = CFrame.new(-0.443875819, 7.5494194, 0.423138052, 0.000503768795, -0.999998748, 0.00138878287, -0.0015519337, 0.00138799136, 0.999997675, -0.999998569, -0.00050599908, -0.0015512252)
  2955. WedgePart275.BottomSurface = Enum.SurfaceType.Smooth
  2956. WedgePart275.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2957. WedgePart275.Position = Vector3.new(-0.443875819, 7.5494194, 0.423138052)
  2958. WedgePart275.Orientation = Vector3.new(-89.8799973, 138.160004, -48.1899986)
  2959. WedgePart275.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2960. Folder276.Name = "CFrames"
  2961. Folder276.Parent = WedgePart275
  2962. CFrameValue277.Name = "C0"
  2963. CFrameValue277.Parent = Folder276
  2964. CFrameValue277.Value = CFrame.new(0.561711788, 0.21165514, 0.392124146, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  2965. WedgePart278.Parent = Model0
  2966. WedgePart278.Material = Enum.Material.Metal
  2967. WedgePart278.BrickColor = BrickColor.new("Really black")
  2968. WedgePart278.Reflectance = 0.10000000149012
  2969. WedgePart278.Rotation = Vector3.new(-90.0899963, 0.0799999982, 89.9700012)
  2970. WedgePart278.CanCollide = false
  2971. WedgePart278.Size = Vector3.new(1.05000007, 0.0500000007, 0.0999998376)
  2972. WedgePart278.CFrame = CFrame.new(-0.44304511, 7.99879551, 0.0224409103, 0.000503768795, -0.999998748, 0.00138878287, -0.0015519337, 0.00138799136, 0.999997675, -0.999998569, -0.00050599908, -0.0015512252)
  2973. WedgePart278.BottomSurface = Enum.SurfaceType.Smooth
  2974. WedgePart278.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2975. WedgePart278.Position = Vector3.new(-0.44304511, 7.99879551, 0.0224409103)
  2976. WedgePart278.Orientation = Vector3.new(-89.8799973, 138.160004, -48.1899986)
  2977. WedgePart278.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2978. Folder279.Name = "CFrames"
  2979. Folder279.Parent = WedgePart278
  2980. CFrameValue280.Name = "C0"
  2981. CFrameValue280.Parent = Folder279
  2982. CFrameValue280.Value = CFrame.new(0.561567843, -0.238342762, -0.00787545368, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  2983. WedgePart281.Parent = Model0
  2984. WedgePart281.Material = Enum.Material.Metal
  2985. WedgePart281.BrickColor = BrickColor.new("Really black")
  2986. WedgePart281.Reflectance = 0.10000000149012
  2987. WedgePart281.Rotation = Vector3.new(-90.0899963, 0.0799999982, 89.9700012)
  2988. WedgePart281.CanCollide = false
  2989. WedgePart281.Size = Vector3.new(1.05000007, 0.0999999866, 0.0500000007)
  2990. WedgePart281.CFrame = CFrame.new(-0.468012244, 8.02383137, 0.0223867632, 0.000503768795, -0.999998748, 0.00138878287, -0.0015519337, 0.00138799136, 0.999997675, -0.999998569, -0.00050599908, -0.0015512252)
  2991. WedgePart281.BottomSurface = Enum.SurfaceType.Smooth
  2992. WedgePart281.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2993. WedgePart281.Position = Vector3.new(-0.468012244, 8.02383137, 0.0223867632)
  2994. WedgePart281.Orientation = Vector3.new(-89.8799973, 138.160004, -48.1899986)
  2995. WedgePart281.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2996. Folder282.Name = "CFrames"
  2997. Folder282.Parent = WedgePart281
  2998. CFrameValue283.Name = "C0"
  2999. CFrameValue283.Parent = Folder282
  3000. CFrameValue283.Value = CFrame.new(0.586569726, -0.263343334, -0.00788689777, -0.000349031325, 0.999999821, -4.63430752e-08, 2.44472176e-09, -4.09867766e-08, -0.999999881, -0.999999881, -0.000349082082, 2.56113708e-09)
  3001. for i,v in pairs(mas:GetChildren()) do
  3002. v.Parent = script.Parent
  3003. pcall(function() v:MakeJoints() end)
  3004. end
  3005. mas:Destroy()
  3006. for i,v in pairs(cors) do
  3007. spawn(function()
  3008. pcall(v)
  3009. end)
  3010. end
  3011. wait(.2)
  3012. local p = game.Players.LocalPlayer
  3013. local char = p.Character
  3014. local mouse = p:GetMouse()
  3015. local larm = char["Left Arm"]
  3016. local rarm = char["Right Arm"]
  3017. local lleg = char["Left Leg"]
  3018. local rleg = char["Right Leg"]
  3019. local hed = char.Head
  3020. local torso = char.Torso
  3021.  
  3022. -------------------------------
  3023. ----------------------------------------------------
  3024. local m2 = script.Parent.armcannon:clone()
  3025. for i,v in pairs(m2:children()) do if v:IsA("BasePart") then v.Anchored=false v.CanCollide=false end end
  3026. --m.Welds.Disabled=false
  3027. local grip2 = Instance.new("Motor")
  3028. grip2.Part0=char["Left Arm"]
  3029. grip2.Part1=m2.Handle
  3030. grip2.C0=CFrame.new(0,0,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  3031. grip2.C1=CFrame.new()
  3032. grip2.Parent=grip2.Part0
  3033. m2.Parent=char
  3034. ----------------------------------------------------
  3035. local cor2 = Instance.new("Part", m2)
  3036. cor2.Name = "Thingy"
  3037. cor2.Locked = true
  3038. cor2.BottomSurface = 0
  3039. cor2.CanCollide = false
  3040. cor2.Size = Vector3.new(.1,.1,.1)
  3041. cor2.Transparency = 1
  3042. cor2.TopSurface = 0
  3043. corw2 = Instance.new("Weld", cor2)
  3044. corw2.Part0 = larm
  3045. corw2.Part1 = cor2
  3046. corw2.C0 = CFrame.new(0, 0, 0)
  3047. corw2.C1 = CFrame.new(0, 0, 0)
  3048. weld1 = Instance.new("Weld", m2) -- Right grip
  3049. weld1.Part1 = cor2
  3050. weld1.Part0 = m2.Handle
  3051. weld1.C0 = CFrame.new(.02,0, 0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(3.15,1.57,0)
  3052. ------------------------------------------------------------------------------------------------------------
  3053.  
  3054. --Converted with ttyyuu12345's model to script plugin v4
  3055. function sandbox(var,func)
  3056. local env = getfenv(func)
  3057. local newenv = setmetatable({},{
  3058. __index = function(self,k)
  3059. if k=="script" then
  3060. return var
  3061. else
  3062. return env[k]
  3063. end
  3064. end,
  3065. })
  3066. setfenv(func,newenv)
  3067. return func
  3068. end
  3069. cors = {}
  3070. mas = Instance.new("Model",game:GetService("Lighting"))
  3071. Model0 = Instance.new("Model")
  3072. Part1 = Instance.new("Part")
  3073. Folder2 = Instance.new("Folder")
  3074. CFrameValue3 = Instance.new("CFrameValue")
  3075. Part4 = Instance.new("Part")
  3076. BlockMesh5 = Instance.new("BlockMesh")
  3077. Folder6 = Instance.new("Folder")
  3078. CFrameValue7 = Instance.new("CFrameValue")
  3079. Part8 = Instance.new("Part")
  3080. BlockMesh9 = Instance.new("BlockMesh")
  3081. Folder10 = Instance.new("Folder")
  3082. CFrameValue11 = Instance.new("CFrameValue")
  3083. Part12 = Instance.new("Part")
  3084. BlockMesh13 = Instance.new("BlockMesh")
  3085. Folder14 = Instance.new("Folder")
  3086. CFrameValue15 = Instance.new("CFrameValue")
  3087. Part16 = Instance.new("Part")
  3088. SpecialMesh17 = Instance.new("SpecialMesh")
  3089. Folder18 = Instance.new("Folder")
  3090. CFrameValue19 = Instance.new("CFrameValue")
  3091. Part20 = Instance.new("Part")
  3092. SpecialMesh21 = Instance.new("SpecialMesh")
  3093. Folder22 = Instance.new("Folder")
  3094. CFrameValue23 = Instance.new("CFrameValue")
  3095. Part24 = Instance.new("Part")
  3096. SpecialMesh25 = Instance.new("SpecialMesh")
  3097. Folder26 = Instance.new("Folder")
  3098. CFrameValue27 = Instance.new("CFrameValue")
  3099. Part28 = Instance.new("Part")
  3100. SpecialMesh29 = Instance.new("SpecialMesh")
  3101. Folder30 = Instance.new("Folder")
  3102. CFrameValue31 = Instance.new("CFrameValue")
  3103. Part32 = Instance.new("Part")
  3104. BlockMesh33 = Instance.new("BlockMesh")
  3105. Folder34 = Instance.new("Folder")
  3106. CFrameValue35 = Instance.new("CFrameValue")
  3107. Part36 = Instance.new("Part")
  3108. BlockMesh37 = Instance.new("BlockMesh")
  3109. Folder38 = Instance.new("Folder")
  3110. CFrameValue39 = Instance.new("CFrameValue")
  3111. Part40 = Instance.new("Part")
  3112. SpecialMesh41 = Instance.new("SpecialMesh")
  3113. Folder42 = Instance.new("Folder")
  3114. CFrameValue43 = Instance.new("CFrameValue")
  3115. Part44 = Instance.new("Part")
  3116. BlockMesh45 = Instance.new("BlockMesh")
  3117. Folder46 = Instance.new("Folder")
  3118. CFrameValue47 = Instance.new("CFrameValue")
  3119. Part48 = Instance.new("Part")
  3120. BlockMesh49 = Instance.new("BlockMesh")
  3121. Folder50 = Instance.new("Folder")
  3122. CFrameValue51 = Instance.new("CFrameValue")
  3123. Part52 = Instance.new("Part")
  3124. BlockMesh53 = Instance.new("BlockMesh")
  3125. Folder54 = Instance.new("Folder")
  3126. CFrameValue55 = Instance.new("CFrameValue")
  3127. Part56 = Instance.new("Part")
  3128. BlockMesh57 = Instance.new("BlockMesh")
  3129. Folder58 = Instance.new("Folder")
  3130. CFrameValue59 = Instance.new("CFrameValue")
  3131. Part60 = Instance.new("Part")
  3132. SpecialMesh61 = Instance.new("SpecialMesh")
  3133. Folder62 = Instance.new("Folder")
  3134. CFrameValue63 = Instance.new("CFrameValue")
  3135. Part64 = Instance.new("Part")
  3136. BlockMesh65 = Instance.new("BlockMesh")
  3137. Folder66 = Instance.new("Folder")
  3138. CFrameValue67 = Instance.new("CFrameValue")
  3139. Part68 = Instance.new("Part")
  3140. BlockMesh69 = Instance.new("BlockMesh")
  3141. Folder70 = Instance.new("Folder")
  3142. CFrameValue71 = Instance.new("CFrameValue")
  3143. Part72 = Instance.new("Part")
  3144. CylinderMesh73 = Instance.new("CylinderMesh")
  3145. Folder74 = Instance.new("Folder")
  3146. CFrameValue75 = Instance.new("CFrameValue")
  3147. Part76 = Instance.new("Part")
  3148. BlockMesh77 = Instance.new("BlockMesh")
  3149. Folder78 = Instance.new("Folder")
  3150. CFrameValue79 = Instance.new("CFrameValue")
  3151. Part80 = Instance.new("Part")
  3152. BlockMesh81 = Instance.new("BlockMesh")
  3153. Folder82 = Instance.new("Folder")
  3154. CFrameValue83 = Instance.new("CFrameValue")
  3155. Part84 = Instance.new("Part")
  3156. BlockMesh85 = Instance.new("BlockMesh")
  3157. Folder86 = Instance.new("Folder")
  3158. CFrameValue87 = Instance.new("CFrameValue")
  3159. Part88 = Instance.new("Part")
  3160. SpecialMesh89 = Instance.new("SpecialMesh")
  3161. Folder90 = Instance.new("Folder")
  3162. CFrameValue91 = Instance.new("CFrameValue")
  3163. Part92 = Instance.new("Part")
  3164. CylinderMesh93 = Instance.new("CylinderMesh")
  3165. Motor94 = Instance.new("Motor")
  3166. Motor95 = Instance.new("Motor")
  3167. Motor96 = Instance.new("Motor")
  3168. Motor97 = Instance.new("Motor")
  3169. Motor98 = Instance.new("Motor")
  3170. Motor99 = Instance.new("Motor")
  3171. Motor100 = Instance.new("Motor")
  3172. Motor101 = Instance.new("Motor")
  3173. Motor102 = Instance.new("Motor")
  3174. Motor103 = Instance.new("Motor")
  3175. Motor104 = Instance.new("Motor")
  3176. Motor105 = Instance.new("Motor")
  3177. Motor106 = Instance.new("Motor")
  3178. Motor107 = Instance.new("Motor")
  3179. Motor108 = Instance.new("Motor")
  3180. Motor109 = Instance.new("Motor")
  3181. Motor110 = Instance.new("Motor")
  3182. Motor111 = Instance.new("Motor")
  3183. Motor112 = Instance.new("Motor")
  3184. Motor113 = Instance.new("Motor")
  3185. Motor114 = Instance.new("Motor")
  3186. Motor115 = Instance.new("Motor")
  3187. Motor116 = Instance.new("Motor")
  3188. Folder117 = Instance.new("Folder")
  3189. CFrameValue118 = Instance.new("CFrameValue")
  3190. Motor119 = Instance.new("Motor")
  3191. Motor120 = Instance.new("Motor")
  3192. Motor121 = Instance.new("Motor")
  3193. Motor122 = Instance.new("Motor")
  3194. Motor123 = Instance.new("Motor")
  3195. Motor124 = Instance.new("Motor")
  3196. Motor125 = Instance.new("Motor")
  3197. Motor126 = Instance.new("Motor")
  3198. Motor127 = Instance.new("Motor")
  3199. Motor128 = Instance.new("Motor")
  3200. Motor129 = Instance.new("Motor")
  3201. Motor130 = Instance.new("Motor")
  3202. Motor131 = Instance.new("Motor")
  3203. Motor132 = Instance.new("Motor")
  3204. Motor133 = Instance.new("Motor")
  3205. Motor134 = Instance.new("Motor")
  3206. Motor135 = Instance.new("Motor")
  3207. Motor136 = Instance.new("Motor")
  3208. Motor137 = Instance.new("Motor")
  3209. Motor138 = Instance.new("Motor")
  3210. Motor139 = Instance.new("Motor")
  3211. Motor140 = Instance.new("Motor")
  3212. Motor141 = Instance.new("Motor")
  3213. Motor142 = Instance.new("Motor")
  3214. Motor143 = Instance.new("Motor")
  3215. Motor144 = Instance.new("Motor")
  3216. Motor145 = Instance.new("Motor")
  3217. Motor146 = Instance.new("Motor")
  3218. Motor147 = Instance.new("Motor")
  3219. Motor148 = Instance.new("Motor")
  3220. Motor149 = Instance.new("Motor")
  3221. Motor150 = Instance.new("Motor")
  3222. Motor151 = Instance.new("Motor")
  3223. Motor152 = Instance.new("Motor")
  3224. Motor153 = Instance.new("Motor")
  3225. Motor154 = Instance.new("Motor")
  3226. Motor155 = Instance.new("Motor")
  3227. Motor156 = Instance.new("Motor")
  3228. Motor157 = Instance.new("Motor")
  3229. Motor158 = Instance.new("Motor")
  3230. Motor159 = Instance.new("Motor")
  3231. Motor160 = Instance.new("Motor")
  3232. Motor161 = Instance.new("Motor")
  3233. Motor162 = Instance.new("Motor")
  3234. Motor163 = Instance.new("Motor")
  3235. Motor164 = Instance.new("Motor")
  3236. Motor165 = Instance.new("Motor")
  3237. Motor166 = Instance.new("Motor")
  3238. Motor167 = Instance.new("Motor")
  3239. Motor168 = Instance.new("Motor")
  3240. Motor169 = Instance.new("Motor")
  3241. Motor170 = Instance.new("Motor")
  3242. Motor171 = Instance.new("Motor")
  3243. Motor172 = Instance.new("Motor")
  3244. Motor173 = Instance.new("Motor")
  3245. Motor174 = Instance.new("Motor")
  3246. Motor175 = Instance.new("Motor")
  3247. Motor176 = Instance.new("Motor")
  3248. Motor177 = Instance.new("Motor")
  3249. Motor178 = Instance.new("Motor")
  3250. Motor179 = Instance.new("Motor")
  3251. Motor180 = Instance.new("Motor")
  3252. Motor181 = Instance.new("Motor")
  3253. Motor182 = Instance.new("Motor")
  3254. Motor183 = Instance.new("Motor")
  3255. Motor184 = Instance.new("Motor")
  3256. Motor185 = Instance.new("Motor")
  3257. Motor186 = Instance.new("Motor")
  3258. Motor187 = Instance.new("Motor")
  3259. Motor188 = Instance.new("Motor")
  3260. Motor189 = Instance.new("Motor")
  3261. Motor190 = Instance.new("Motor")
  3262. Motor191 = Instance.new("Motor")
  3263. Motor192 = Instance.new("Motor")
  3264. Motor193 = Instance.new("Motor")
  3265. Motor194 = Instance.new("Motor")
  3266. Motor195 = Instance.new("Motor")
  3267. Motor196 = Instance.new("Motor")
  3268. Motor197 = Instance.new("Motor")
  3269. Motor198 = Instance.new("Motor")
  3270. Motor199 = Instance.new("Motor")
  3271. Motor200 = Instance.new("Motor")
  3272. Motor201 = Instance.new("Motor")
  3273. Motor202 = Instance.new("Motor")
  3274. Motor203 = Instance.new("Motor")
  3275. Motor204 = Instance.new("Motor")
  3276. Motor205 = Instance.new("Motor")
  3277. Motor206 = Instance.new("Motor")
  3278. Motor207 = Instance.new("Motor")
  3279. Motor208 = Instance.new("Motor")
  3280. Motor209 = Instance.new("Motor")
  3281. Motor210 = Instance.new("Motor")
  3282. Motor211 = Instance.new("Motor")
  3283. Motor212 = Instance.new("Motor")
  3284. Motor213 = Instance.new("Motor")
  3285. Motor214 = Instance.new("Motor")
  3286. Motor215 = Instance.new("Motor")
  3287. Motor216 = Instance.new("Motor")
  3288. Part217 = Instance.new("Part")
  3289. SpecialMesh218 = Instance.new("SpecialMesh")
  3290. Folder219 = Instance.new("Folder")
  3291. CFrameValue220 = Instance.new("CFrameValue")
  3292. Part221 = Instance.new("Part")
  3293. SpecialMesh222 = Instance.new("SpecialMesh")
  3294. Script223 = Instance.new("Script")
  3295. Folder224 = Instance.new("Folder")
  3296. CFrameValue225 = Instance.new("CFrameValue")
  3297. Part226 = Instance.new("Part")
  3298. SpecialMesh227 = Instance.new("SpecialMesh")
  3299. Folder228 = Instance.new("Folder")
  3300. CFrameValue229 = Instance.new("CFrameValue")
  3301. Part230 = Instance.new("Part")
  3302. SpecialMesh231 = Instance.new("SpecialMesh")
  3303. Folder232 = Instance.new("Folder")
  3304. CFrameValue233 = Instance.new("CFrameValue")
  3305. Part234 = Instance.new("Part")
  3306. SpecialMesh235 = Instance.new("SpecialMesh")
  3307. Folder236 = Instance.new("Folder")
  3308. CFrameValue237 = Instance.new("CFrameValue")
  3309. Part238 = Instance.new("Part")
  3310. BlockMesh239 = Instance.new("BlockMesh")
  3311. Folder240 = Instance.new("Folder")
  3312. CFrameValue241 = Instance.new("CFrameValue")
  3313. Part242 = Instance.new("Part")
  3314. SpecialMesh243 = Instance.new("SpecialMesh")
  3315. Folder244 = Instance.new("Folder")
  3316. CFrameValue245 = Instance.new("CFrameValue")
  3317. Part246 = Instance.new("Part")
  3318. SpecialMesh247 = Instance.new("SpecialMesh")
  3319. Folder248 = Instance.new("Folder")
  3320. CFrameValue249 = Instance.new("CFrameValue")
  3321. Part250 = Instance.new("Part")
  3322. SpecialMesh251 = Instance.new("SpecialMesh")
  3323. Folder252 = Instance.new("Folder")
  3324. CFrameValue253 = Instance.new("CFrameValue")
  3325. Part254 = Instance.new("Part")
  3326. SpecialMesh255 = Instance.new("SpecialMesh")
  3327. Folder256 = Instance.new("Folder")
  3328. CFrameValue257 = Instance.new("CFrameValue")
  3329. Part258 = Instance.new("Part")
  3330. SpecialMesh259 = Instance.new("SpecialMesh")
  3331. Folder260 = Instance.new("Folder")
  3332. CFrameValue261 = Instance.new("CFrameValue")
  3333. Part262 = Instance.new("Part")
  3334. SpecialMesh263 = Instance.new("SpecialMesh")
  3335. Folder264 = Instance.new("Folder")
  3336. CFrameValue265 = Instance.new("CFrameValue")
  3337. Part266 = Instance.new("Part")
  3338. SpecialMesh267 = Instance.new("SpecialMesh")
  3339. Folder268 = Instance.new("Folder")
  3340. CFrameValue269 = Instance.new("CFrameValue")
  3341. Part270 = Instance.new("Part")
  3342. SpecialMesh271 = Instance.new("SpecialMesh")
  3343. Folder272 = Instance.new("Folder")
  3344. CFrameValue273 = Instance.new("CFrameValue")
  3345. Part274 = Instance.new("Part")
  3346. SpecialMesh275 = Instance.new("SpecialMesh")
  3347. Folder276 = Instance.new("Folder")
  3348. CFrameValue277 = Instance.new("CFrameValue")
  3349. Part278 = Instance.new("Part")
  3350. SpecialMesh279 = Instance.new("SpecialMesh")
  3351. Folder280 = Instance.new("Folder")
  3352. CFrameValue281 = Instance.new("CFrameValue")
  3353. Part282 = Instance.new("Part")
  3354. SpecialMesh283 = Instance.new("SpecialMesh")
  3355. Folder284 = Instance.new("Folder")
  3356. CFrameValue285 = Instance.new("CFrameValue")
  3357. Part286 = Instance.new("Part")
  3358. SpecialMesh287 = Instance.new("SpecialMesh")
  3359. Folder288 = Instance.new("Folder")
  3360. CFrameValue289 = Instance.new("CFrameValue")
  3361. Part290 = Instance.new("Part")
  3362. SpecialMesh291 = Instance.new("SpecialMesh")
  3363. Folder292 = Instance.new("Folder")
  3364. CFrameValue293 = Instance.new("CFrameValue")
  3365. Part294 = Instance.new("Part")
  3366. SpecialMesh295 = Instance.new("SpecialMesh")
  3367. Folder296 = Instance.new("Folder")
  3368. CFrameValue297 = Instance.new("CFrameValue")
  3369. Part298 = Instance.new("Part")
  3370. SpecialMesh299 = Instance.new("SpecialMesh")
  3371. Folder300 = Instance.new("Folder")
  3372. CFrameValue301 = Instance.new("CFrameValue")
  3373. Part302 = Instance.new("Part")
  3374. SpecialMesh303 = Instance.new("SpecialMesh")
  3375. Folder304 = Instance.new("Folder")
  3376. CFrameValue305 = Instance.new("CFrameValue")
  3377. Part306 = Instance.new("Part")
  3378. SpecialMesh307 = Instance.new("SpecialMesh")
  3379. Folder308 = Instance.new("Folder")
  3380. CFrameValue309 = Instance.new("CFrameValue")
  3381. Part310 = Instance.new("Part")
  3382. SpecialMesh311 = Instance.new("SpecialMesh")
  3383. Folder312 = Instance.new("Folder")
  3384. CFrameValue313 = Instance.new("CFrameValue")
  3385. Part314 = Instance.new("Part")
  3386. SpecialMesh315 = Instance.new("SpecialMesh")
  3387. Folder316 = Instance.new("Folder")
  3388. CFrameValue317 = Instance.new("CFrameValue")
  3389. Part318 = Instance.new("Part")
  3390. SpecialMesh319 = Instance.new("SpecialMesh")
  3391. Folder320 = Instance.new("Folder")
  3392. CFrameValue321 = Instance.new("CFrameValue")
  3393. Part322 = Instance.new("Part")
  3394. SpecialMesh323 = Instance.new("SpecialMesh")
  3395. Folder324 = Instance.new("Folder")
  3396. CFrameValue325 = Instance.new("CFrameValue")
  3397. Part326 = Instance.new("Part")
  3398. SpecialMesh327 = Instance.new("SpecialMesh")
  3399. Folder328 = Instance.new("Folder")
  3400. CFrameValue329 = Instance.new("CFrameValue")
  3401. Part330 = Instance.new("Part")
  3402. SpecialMesh331 = Instance.new("SpecialMesh")
  3403. Folder332 = Instance.new("Folder")
  3404. CFrameValue333 = Instance.new("CFrameValue")
  3405. Part334 = Instance.new("Part")
  3406. SpecialMesh335 = Instance.new("SpecialMesh")
  3407. Folder336 = Instance.new("Folder")
  3408. CFrameValue337 = Instance.new("CFrameValue")
  3409. Part338 = Instance.new("Part")
  3410. BlockMesh339 = Instance.new("BlockMesh")
  3411. Folder340 = Instance.new("Folder")
  3412. CFrameValue341 = Instance.new("CFrameValue")
  3413. Part342 = Instance.new("Part")
  3414. BlockMesh343 = Instance.new("BlockMesh")
  3415. Folder344 = Instance.new("Folder")
  3416. CFrameValue345 = Instance.new("CFrameValue")
  3417. Part346 = Instance.new("Part")
  3418. BlockMesh347 = Instance.new("BlockMesh")
  3419. Folder348 = Instance.new("Folder")
  3420. CFrameValue349 = Instance.new("CFrameValue")
  3421. Part350 = Instance.new("Part")
  3422. BlockMesh351 = Instance.new("BlockMesh")
  3423. Folder352 = Instance.new("Folder")
  3424. CFrameValue353 = Instance.new("CFrameValue")
  3425. Part354 = Instance.new("Part")
  3426. BlockMesh355 = Instance.new("BlockMesh")
  3427. Folder356 = Instance.new("Folder")
  3428. CFrameValue357 = Instance.new("CFrameValue")
  3429. Part358 = Instance.new("Part")
  3430. SpecialMesh359 = Instance.new("SpecialMesh")
  3431. Folder360 = Instance.new("Folder")
  3432. CFrameValue361 = Instance.new("CFrameValue")
  3433. Part362 = Instance.new("Part")
  3434. BlockMesh363 = Instance.new("BlockMesh")
  3435. Folder364 = Instance.new("Folder")
  3436. CFrameValue365 = Instance.new("CFrameValue")
  3437. Part366 = Instance.new("Part")
  3438. BlockMesh367 = Instance.new("BlockMesh")
  3439. Folder368 = Instance.new("Folder")
  3440. CFrameValue369 = Instance.new("CFrameValue")
  3441. Part370 = Instance.new("Part")
  3442. BlockMesh371 = Instance.new("BlockMesh")
  3443. Folder372 = Instance.new("Folder")
  3444. CFrameValue373 = Instance.new("CFrameValue")
  3445. Part374 = Instance.new("Part")
  3446. BlockMesh375 = Instance.new("BlockMesh")
  3447. Folder376 = Instance.new("Folder")
  3448. CFrameValue377 = Instance.new("CFrameValue")
  3449. Part378 = Instance.new("Part")
  3450. SpecialMesh379 = Instance.new("SpecialMesh")
  3451. Script380 = Instance.new("Script")
  3452. Folder381 = Instance.new("Folder")
  3453. CFrameValue382 = Instance.new("CFrameValue")
  3454. Part383 = Instance.new("Part")
  3455. BlockMesh384 = Instance.new("BlockMesh")
  3456. Folder385 = Instance.new("Folder")
  3457. CFrameValue386 = Instance.new("CFrameValue")
  3458. Part387 = Instance.new("Part")
  3459. BlockMesh388 = Instance.new("BlockMesh")
  3460. Folder389 = Instance.new("Folder")
  3461. CFrameValue390 = Instance.new("CFrameValue")
  3462. Part391 = Instance.new("Part")
  3463. BlockMesh392 = Instance.new("BlockMesh")
  3464. Folder393 = Instance.new("Folder")
  3465. CFrameValue394 = Instance.new("CFrameValue")
  3466. Part395 = Instance.new("Part")
  3467. BlockMesh396 = Instance.new("BlockMesh")
  3468. Folder397 = Instance.new("Folder")
  3469. CFrameValue398 = Instance.new("CFrameValue")
  3470. Part399 = Instance.new("Part")
  3471. BlockMesh400 = Instance.new("BlockMesh")
  3472. Folder401 = Instance.new("Folder")
  3473. CFrameValue402 = Instance.new("CFrameValue")
  3474. Part403 = Instance.new("Part")
  3475. BlockMesh404 = Instance.new("BlockMesh")
  3476. Folder405 = Instance.new("Folder")
  3477. CFrameValue406 = Instance.new("CFrameValue")
  3478. Part407 = Instance.new("Part")
  3479. SpecialMesh408 = Instance.new("SpecialMesh")
  3480. Folder409 = Instance.new("Folder")
  3481. CFrameValue410 = Instance.new("CFrameValue")
  3482. Part411 = Instance.new("Part")
  3483. BlockMesh412 = Instance.new("BlockMesh")
  3484. Folder413 = Instance.new("Folder")
  3485. CFrameValue414 = Instance.new("CFrameValue")
  3486. Part415 = Instance.new("Part")
  3487. BlockMesh416 = Instance.new("BlockMesh")
  3488. Folder417 = Instance.new("Folder")
  3489. CFrameValue418 = Instance.new("CFrameValue")
  3490. Part419 = Instance.new("Part")
  3491. BlockMesh420 = Instance.new("BlockMesh")
  3492. Folder421 = Instance.new("Folder")
  3493. CFrameValue422 = Instance.new("CFrameValue")
  3494. Part423 = Instance.new("Part")
  3495. BlockMesh424 = Instance.new("BlockMesh")
  3496. Folder425 = Instance.new("Folder")
  3497. CFrameValue426 = Instance.new("CFrameValue")
  3498. Part427 = Instance.new("Part")
  3499. BlockMesh428 = Instance.new("BlockMesh")
  3500. Folder429 = Instance.new("Folder")
  3501. CFrameValue430 = Instance.new("CFrameValue")
  3502. Part431 = Instance.new("Part")
  3503. BlockMesh432 = Instance.new("BlockMesh")
  3504. Folder433 = Instance.new("Folder")
  3505. CFrameValue434 = Instance.new("CFrameValue")
  3506. Part435 = Instance.new("Part")
  3507. BlockMesh436 = Instance.new("BlockMesh")
  3508. Folder437 = Instance.new("Folder")
  3509. CFrameValue438 = Instance.new("CFrameValue")
  3510. Part439 = Instance.new("Part")
  3511. BlockMesh440 = Instance.new("BlockMesh")
  3512. Folder441 = Instance.new("Folder")
  3513. CFrameValue442 = Instance.new("CFrameValue")
  3514. Part443 = Instance.new("Part")
  3515. BlockMesh444 = Instance.new("BlockMesh")
  3516. Folder445 = Instance.new("Folder")
  3517. CFrameValue446 = Instance.new("CFrameValue")
  3518. Part447 = Instance.new("Part")
  3519. BlockMesh448 = Instance.new("BlockMesh")
  3520. Folder449 = Instance.new("Folder")
  3521. CFrameValue450 = Instance.new("CFrameValue")
  3522. Part451 = Instance.new("Part")
  3523. BlockMesh452 = Instance.new("BlockMesh")
  3524. Folder453 = Instance.new("Folder")
  3525. CFrameValue454 = Instance.new("CFrameValue")
  3526. Part455 = Instance.new("Part")
  3527. BlockMesh456 = Instance.new("BlockMesh")
  3528. Folder457 = Instance.new("Folder")
  3529. CFrameValue458 = Instance.new("CFrameValue")
  3530. Part459 = Instance.new("Part")
  3531. BlockMesh460 = Instance.new("BlockMesh")
  3532. Folder461 = Instance.new("Folder")
  3533. CFrameValue462 = Instance.new("CFrameValue")
  3534. Part463 = Instance.new("Part")
  3535. BlockMesh464 = Instance.new("BlockMesh")
  3536. Folder465 = Instance.new("Folder")
  3537. CFrameValue466 = Instance.new("CFrameValue")
  3538. Part467 = Instance.new("Part")
  3539. BlockMesh468 = Instance.new("BlockMesh")
  3540. Folder469 = Instance.new("Folder")
  3541. CFrameValue470 = Instance.new("CFrameValue")
  3542. Part471 = Instance.new("Part")
  3543. SpecialMesh472 = Instance.new("SpecialMesh")
  3544. Folder473 = Instance.new("Folder")
  3545. CFrameValue474 = Instance.new("CFrameValue")
  3546. Part475 = Instance.new("Part")
  3547. BlockMesh476 = Instance.new("BlockMesh")
  3548. Folder477 = Instance.new("Folder")
  3549. CFrameValue478 = Instance.new("CFrameValue")
  3550. Part479 = Instance.new("Part")
  3551. BlockMesh480 = Instance.new("BlockMesh")
  3552. Folder481 = Instance.new("Folder")
  3553. CFrameValue482 = Instance.new("CFrameValue")
  3554. Part483 = Instance.new("Part")
  3555. BlockMesh484 = Instance.new("BlockMesh")
  3556. Folder485 = Instance.new("Folder")
  3557. CFrameValue486 = Instance.new("CFrameValue")
  3558. Part487 = Instance.new("Part")
  3559. BlockMesh488 = Instance.new("BlockMesh")
  3560. Folder489 = Instance.new("Folder")
  3561. CFrameValue490 = Instance.new("CFrameValue")
  3562. Part491 = Instance.new("Part")
  3563. BlockMesh492 = Instance.new("BlockMesh")
  3564. Folder493 = Instance.new("Folder")
  3565. CFrameValue494 = Instance.new("CFrameValue")
  3566. Part495 = Instance.new("Part")
  3567. CylinderMesh496 = Instance.new("CylinderMesh")
  3568. Folder497 = Instance.new("Folder")
  3569. CFrameValue498 = Instance.new("CFrameValue")
  3570. Part499 = Instance.new("Part")
  3571. SpecialMesh500 = Instance.new("SpecialMesh")
  3572. Folder501 = Instance.new("Folder")
  3573. CFrameValue502 = Instance.new("CFrameValue")
  3574. Part503 = Instance.new("Part")
  3575. SpecialMesh504 = Instance.new("SpecialMesh")
  3576. Folder505 = Instance.new("Folder")
  3577. CFrameValue506 = Instance.new("CFrameValue")
  3578. Part507 = Instance.new("Part")
  3579. SpecialMesh508 = Instance.new("SpecialMesh")
  3580. Folder509 = Instance.new("Folder")
  3581. CFrameValue510 = Instance.new("CFrameValue")
  3582. Part511 = Instance.new("Part")
  3583. SpecialMesh512 = Instance.new("SpecialMesh")
  3584. Folder513 = Instance.new("Folder")
  3585. CFrameValue514 = Instance.new("CFrameValue")
  3586. Part515 = Instance.new("Part")
  3587. SpecialMesh516 = Instance.new("SpecialMesh")
  3588. Folder517 = Instance.new("Folder")
  3589. CFrameValue518 = Instance.new("CFrameValue")
  3590. Part519 = Instance.new("Part")
  3591. SpecialMesh520 = Instance.new("SpecialMesh")
  3592. Folder521 = Instance.new("Folder")
  3593. CFrameValue522 = Instance.new("CFrameValue")
  3594. Part523 = Instance.new("Part")
  3595. SpecialMesh524 = Instance.new("SpecialMesh")
  3596. Folder525 = Instance.new("Folder")
  3597. CFrameValue526 = Instance.new("CFrameValue")
  3598. Part527 = Instance.new("Part")
  3599. BlockMesh528 = Instance.new("BlockMesh")
  3600. Folder529 = Instance.new("Folder")
  3601. CFrameValue530 = Instance.new("CFrameValue")
  3602. Part531 = Instance.new("Part")
  3603. SpecialMesh532 = Instance.new("SpecialMesh")
  3604. Folder533 = Instance.new("Folder")
  3605. CFrameValue534 = Instance.new("CFrameValue")
  3606. Part535 = Instance.new("Part")
  3607. SpecialMesh536 = Instance.new("SpecialMesh")
  3608. Folder537 = Instance.new("Folder")
  3609. CFrameValue538 = Instance.new("CFrameValue")
  3610. Part539 = Instance.new("Part")
  3611. SpecialMesh540 = Instance.new("SpecialMesh")
  3612. Folder541 = Instance.new("Folder")
  3613. CFrameValue542 = Instance.new("CFrameValue")
  3614. Part543 = Instance.new("Part")
  3615. SpecialMesh544 = Instance.new("SpecialMesh")
  3616. Folder545 = Instance.new("Folder")
  3617. CFrameValue546 = Instance.new("CFrameValue")
  3618. Part547 = Instance.new("Part")
  3619. SpecialMesh548 = Instance.new("SpecialMesh")
  3620. Folder549 = Instance.new("Folder")
  3621. CFrameValue550 = Instance.new("CFrameValue")
  3622. Part551 = Instance.new("Part")
  3623. SpecialMesh552 = Instance.new("SpecialMesh")
  3624. Folder553 = Instance.new("Folder")
  3625. CFrameValue554 = Instance.new("CFrameValue")
  3626. Part555 = Instance.new("Part")
  3627. SpecialMesh556 = Instance.new("SpecialMesh")
  3628. Folder557 = Instance.new("Folder")
  3629. CFrameValue558 = Instance.new("CFrameValue")
  3630. Part559 = Instance.new("Part")
  3631. SpecialMesh560 = Instance.new("SpecialMesh")
  3632. Folder561 = Instance.new("Folder")
  3633. CFrameValue562 = Instance.new("CFrameValue")
  3634. Part563 = Instance.new("Part")
  3635. SpecialMesh564 = Instance.new("SpecialMesh")
  3636. Folder565 = Instance.new("Folder")
  3637. CFrameValue566 = Instance.new("CFrameValue")
  3638. Part567 = Instance.new("Part")
  3639. SpecialMesh568 = Instance.new("SpecialMesh")
  3640. Folder569 = Instance.new("Folder")
  3641. CFrameValue570 = Instance.new("CFrameValue")
  3642. Part571 = Instance.new("Part")
  3643. SpecialMesh572 = Instance.new("SpecialMesh")
  3644. Folder573 = Instance.new("Folder")
  3645. CFrameValue574 = Instance.new("CFrameValue")
  3646. Part575 = Instance.new("Part")
  3647. SpecialMesh576 = Instance.new("SpecialMesh")
  3648. Folder577 = Instance.new("Folder")
  3649. CFrameValue578 = Instance.new("CFrameValue")
  3650. Part579 = Instance.new("Part")
  3651. SpecialMesh580 = Instance.new("SpecialMesh")
  3652. Folder581 = Instance.new("Folder")
  3653. CFrameValue582 = Instance.new("CFrameValue")
  3654. Part583 = Instance.new("Part")
  3655. SpecialMesh584 = Instance.new("SpecialMesh")
  3656. Folder585 = Instance.new("Folder")
  3657. CFrameValue586 = Instance.new("CFrameValue")
  3658. Part587 = Instance.new("Part")
  3659. SpecialMesh588 = Instance.new("SpecialMesh")
  3660. Folder589 = Instance.new("Folder")
  3661. CFrameValue590 = Instance.new("CFrameValue")
  3662. Part591 = Instance.new("Part")
  3663. SpecialMesh592 = Instance.new("SpecialMesh")
  3664. Folder593 = Instance.new("Folder")
  3665. CFrameValue594 = Instance.new("CFrameValue")
  3666. Part595 = Instance.new("Part")
  3667. SpecialMesh596 = Instance.new("SpecialMesh")
  3668. Folder597 = Instance.new("Folder")
  3669. CFrameValue598 = Instance.new("CFrameValue")
  3670. Part599 = Instance.new("Part")
  3671. SpecialMesh600 = Instance.new("SpecialMesh")
  3672. Folder601 = Instance.new("Folder")
  3673. CFrameValue602 = Instance.new("CFrameValue")
  3674. Part603 = Instance.new("Part")
  3675. SpecialMesh604 = Instance.new("SpecialMesh")
  3676. Folder605 = Instance.new("Folder")
  3677. CFrameValue606 = Instance.new("CFrameValue")
  3678. Model0.Name = "Dragonslayer"
  3679. Model0.Parent = mas
  3680. Part1.Parent = Model0
  3681. Part1.BrickColor = BrickColor.new("Neon orange")
  3682. Part1.Transparency = 1
  3683. Part1.Name="Hitbox"
  3684. Part1.Rotation = Vector3.new(65.909996, 88.9599991, 112.049995)
  3685. Part1.Size = Vector3.new(9.99028492, 0.586256504, 2.02198696)
  3686. Part1.CFrame = CFrame.new(46.152916, 0.680819869, 143.12352, -0.00698993821, -0.0172562208, 0.999835491, 0.0356905423, -0.999218345, -0.0169966314, 0.999338686, 0.035564974, 0.00760042761)
  3687. Part1.BottomSurface = Enum.SurfaceType.Smooth
  3688. Part1.TopSurface = Enum.SurfaceType.Smooth
  3689. Part1.Color = Color3.new(0.835294, 0.45098, 0.239216)
  3690. Part1.Position = Vector3.new(46.152916, 0.680819869, 143.12352)
  3691. Part1.Orientation = Vector3.new(0.969999969, 89.5599976, 177.949997)
  3692. Part1.Color = Color3.new(0.835294, 0.45098, 0.239216)
  3693. Folder2.Name = "CFrames"
  3694. Folder2.Parent = Part1
  3695. CFrameValue3.Name = "C0"
  3696. CFrameValue3.Parent = Folder2
  3697. CFrameValue3.Value = CFrame.new(0.0215821266, 6.09555054, 0.00123596191, 4.35113907e-06, 0.99999994, -1.43137295e-05, 0.999984682, -5.4128468e-06, 0.00557211041, 0.0055720266, -1.48853287e-05, -1.00000226)
  3698. Part4.Parent = Model0
  3699. Part4.Material = Enum.Material.Metal
  3700. Part4.BrickColor = BrickColor.new("Black")
  3701. Part4.Rotation = Vector3.new(-1.76999998, 14.9200001, 88.9799957)
  3702. Part4.Anchored = true
  3703. Part4.FormFactor = Enum.FormFactor.Custom
  3704. Part4.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  3705. Part4.CFrame = CFrame.new(45.4615707, 0.541190863, 138.380356, 0.0172694977, -0.966150999, 0.257432878, 0.999218225, 0.0258357916, 0.029929027, -0.0355660655, 0.256712317, 0.965833306)
  3706. Part4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3707. Part4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3708. Part4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3709. Part4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3710. Part4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3711. Part4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3712. Part4.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3713. Part4.Position = Vector3.new(45.4615707, 0.541190863, 138.380356)
  3714. Part4.Orientation = Vector3.new(-1.71999991, 14.9200001, 88.5199966)
  3715. Part4.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3716. BlockMesh5.Parent = Part4
  3717. BlockMesh5.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  3718. BlockMesh5.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  3719. Folder6.Name = "CFrames"
  3720. Folder6.Parent = Part4
  3721. CFrameValue7.Name = "C0"
  3722. CFrameValue7.Parent = Folder6
  3723. CFrameValue7.Value = CFrame.new(0.00432825089, 1.35142517, 0.69972229, -1.00000012, 1.96229666e-06, 2.15694308e-06, 3.7252903e-06, 0.258839756, 0.965920508, 1.88186095e-06, 0.965937257, -0.258844465)
  3724. Part8.Parent = Model0
  3725. Part8.Material = Enum.Material.Metal
  3726. Part8.BrickColor = BrickColor.new("Black")
  3727. Part8.Rotation = Vector3.new(178.529999, -29.9099998, 91.1399994)
  3728. Part8.Anchored = true
  3729. Part8.FormFactor = Enum.FormFactor.Custom
  3730. Part8.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  3731. Part8.CFrame = CFrame.new(45.9089241, 0.536310315, 138.339294, -0.0172714479, -0.866617382, -0.498692006, -0.999217987, 0.0327045619, -0.0222258158, 0.0355698988, 0.497913718, -0.86649704)
  3732. Part8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3733. Part8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3734. Part8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3735. Part8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3736. Part8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3737. Part8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3738. Part8.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3739. Part8.Position = Vector3.new(45.9089241, 0.536310315, 138.339294)
  3740. Part8.Orientation = Vector3.new(1.26999998, -150.080002, -88.1299973)
  3741. Part8.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3742. BlockMesh9.Parent = Part8
  3743. BlockMesh9.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  3744. BlockMesh9.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  3745. Folder10.Name = "CFrames"
  3746. Folder10.Parent = Part8
  3747. CFrameValue11.Name = "C0"
  3748. CFrameValue11.Parent = Folder10
  3749. CFrameValue11.Value = CFrame.new(1.8119812e-05, 1.30957031, 0.252429962, 1, -1.14925206e-06, 7.78585672e-07, 1.15483999e-07, 0.499991357, -0.866030812, 6.42612576e-08, 0.866045654, 0.500000119)
  3750. Part12.Parent = Model0
  3751. Part12.Material = Enum.Material.Metal
  3752. Part12.BrickColor = BrickColor.new("Black")
  3753. Part12.Rotation = Vector3.new(178.220001, -14.9200001, 91.0199966)
  3754. Part12.Anchored = true
  3755. Part12.FormFactor = Enum.FormFactor.Custom
  3756. Part12.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  3757. Part12.CFrame = CFrame.new(45.879921, 0.534309208, 138.269043, -0.0172712952, -0.966157258, -0.257409573, -0.999217987, 0.0258376375, -0.0299322847, 0.0355692543, 0.256688982, -0.965839446)
  3758. Part12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3759. Part12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3760. Part12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3761. Part12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3762. Part12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3763. Part12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3764. Part12.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3765. Part12.Position = Vector3.new(45.879921, 0.534309208, 138.269043)
  3766. Part12.Orientation = Vector3.new(1.71999991, -165.080002, -88.5199966)
  3767. Part12.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3768. BlockMesh13.Parent = Part12
  3769. BlockMesh13.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  3770. BlockMesh13.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  3771. Folder14.Name = "CFrames"
  3772. Folder14.Parent = Part12
  3773. CFrameValue15.Name = "C0"
  3774. CFrameValue15.Parent = Folder14
  3775. CFrameValue15.Value = CFrame.new(1.95503235e-05, 1.23933411, 0.281536102, 1, -6.03497028e-07, 4.76837158e-07, -5.25265932e-07, 0.25881651, -0.965926826, -8.71659722e-08, 0.965943575, 0.25882113)
  3776. Part16.Parent = Model0
  3777. Part16.Material = Enum.Material.Metal
  3778. Part16.Rotation = Vector3.new(87.9599991, -0.98999995, 90.0799942)
  3779. Part16.Anchored = true
  3780. Part16.FormFactor = Enum.FormFactor.Custom
  3781. Part16.Size = Vector3.new(0.316868067, 0.388001561, 0.316868067)
  3782. Part16.CFrame = CFrame.new(45.3964386, 0.566734254, 138.1875, -0.00141788227, -0.999858499, -0.0172821898, 0.0355940051, 0.0172212105, -0.999218225, 0.999365568, -0.00203203224, 0.0355636738)
  3783. Part16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3784. Part16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3785. Part16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3786. Part16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3787. Part16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3788. Part16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3789. Part16.Position = Vector3.new(45.3964386, 0.566734254, 138.1875)
  3790. Part16.Orientation = Vector3.new(87.7299957, -25.9200001, 64.1800003)
  3791. SpecialMesh17.Parent = Part16
  3792. SpecialMesh17.Scale = Vector3.new(0, 1, 0.210884899)
  3793. SpecialMesh17.MeshType = Enum.MeshType.Wedge
  3794. SpecialMesh17.Scale = Vector3.new(0, 1, 0.210884899)
  3795. Folder18.Name = "CFrames"
  3796. Folder18.Parent = Part16
  3797. CFrameValue19.Name = "C0"
  3798. CFrameValue19.Parent = Folder18
  3799. CFrameValue19.Value = CFrame.new(-0.0269298553, 1.15969849, 0.765678406, 4.96208668e-06, -1.13599745e-05, 1.00000024, 1.00000036, 7.71135092e-07, -6.09457493e-06, -9.51113179e-07, 1.00001764, 1.08132008e-05)
  3800. Part20.Parent = Model0
  3801. Part20.Material = Enum.Material.Metal
  3802. Part20.BrickColor = BrickColor.new("Black")
  3803. Part20.Rotation = Vector3.new(83.2699966, 89.0099945, 94.6899948)
  3804. Part20.Anchored = true
  3805. Part20.FormFactor = Enum.FormFactor.Custom
  3806. Part20.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  3807. Part20.CFrame = CFrame.new(46.1590576, 0.400805384, 138.332535, -0.00141641998, -0.0172711797, 0.999849796, 0.0355953611, -0.999218106, -0.0172098391, 0.99936533, 0.0355656408, 0.00203008601)
  3808. Part20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3809. Part20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3810. Part20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3811. Part20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. Part20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. Part20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3814. Part20.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3815. Part20.Position = Vector3.new(46.1590576, 0.400805384, 138.332535)
  3816. Part20.Orientation = Vector3.new(0.98999995, 89.8799973, 177.959991)
  3817. Part20.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3818. SpecialMesh21.Parent = Part20
  3819. SpecialMesh21.Scale = Vector3.new(0.435374141, 0.435374141, 0.435374141)
  3820. SpecialMesh21.MeshType = Enum.MeshType.Sphere
  3821. SpecialMesh21.Scale = Vector3.new(0.435374141, 0.435374141, 0.435374141)
  3822. Folder22.Name = "CFrames"
  3823. Folder22.Parent = Part20
  3824. CFrameValue23.Name = "C0"
  3825. CFrameValue23.Parent = Folder22
  3826. CFrameValue23.Value = CFrame.new(0.130856752, 1.2976532, 1.14440918e-05, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  3827. Part24.Parent = Model0
  3828. Part24.Material = Enum.Material.Metal
  3829. Part24.Rotation = Vector3.new(-92.0400009, 0.98999995, 89.9199982)
  3830. Part24.Anchored = true
  3831. Part24.FormFactor = Enum.FormFactor.Custom
  3832. Part24.Size = Vector3.new(0.316868067, 0.388001561, 0.316868067)
  3833. Part24.CFrame = CFrame.new(45.3952827, 0.499970227, 138.189896, 0.00141788227, -0.999858499, 0.0172821898, -0.0355940051, 0.0172212105, 0.999218225, -0.999365568, -0.00203203224, -0.0355636738)
  3834. Part24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3835. Part24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3836. Part24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3837. Part24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3838. Part24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3839. Part24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3840. Part24.Position = Vector3.new(45.3952827, 0.499970227, 138.189896)
  3841. Part24.Orientation = Vector3.new(-87.7299957, 154.080002, -64.1800003)
  3842. SpecialMesh25.Parent = Part24
  3843. SpecialMesh25.Scale = Vector3.new(0, 1, 0.210884377)
  3844. SpecialMesh25.MeshType = Enum.MeshType.Wedge
  3845. SpecialMesh25.Scale = Vector3.new(0, 1, 0.210884377)
  3846. Folder26.Name = "CFrames"
  3847. Folder26.Parent = Part24
  3848. CFrameValue27.Name = "C0"
  3849. CFrameValue27.Parent = Folder26
  3850. CFrameValue27.Value = CFrame.new(0.039886713, 1.15971375, 0.765674591, -4.96208668e-06, -1.13599745e-05, -1.00000024, -1.00000036, 7.71135092e-07, 6.09457493e-06, 9.51113179e-07, 1.00001764, -1.08132008e-05)
  3851. Part28.Parent = Model0
  3852. Part28.Material = Enum.Material.Metal
  3853. Part28.Rotation = Vector3.new(-1.61000001, -0.0299999993, 98.7799988)
  3854. Part28.Anchored = true
  3855. Part28.FormFactor = Enum.FormFactor.Custom
  3856. Part28.Size = Vector3.new(0.316868067, 0.393713713, 0.316868067)
  3857. Part28.CFrame = CFrame.new(45.3964386, 0.566734254, 138.1875, -0.152687415, -0.988283217, -0.000560536049, 0.98788321, -0.152640909, 0.0280702207, -0.0278261099, 0.00373196183, 0.999605834)
  3858. Part28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3859. Part28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3860. Part28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3861. Part28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3862. Part28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3863. Part28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3864. Part28.Position = Vector3.new(45.3964386, 0.566734254, 138.1875)
  3865. Part28.Orientation = Vector3.new(-1.61000001, -0.0299999993, 98.7799988)
  3866. SpecialMesh29.Parent = Part28
  3867. SpecialMesh29.Scale = Vector3.new(0.0544217676, 1, 0.0272108838)
  3868. SpecialMesh29.MeshType = Enum.MeshType.Wedge
  3869. SpecialMesh29.Scale = Vector3.new(0.0544217676, 1, 0.0272108838)
  3870. Folder30.Name = "CFrames"
  3871. Folder30.Parent = Part28
  3872. CFrameValue31.Name = "C0"
  3873. CFrameValue31.Parent = Folder30
  3874. CFrameValue31.Value = CFrame.new(-0.0269298553, 1.15969849, 0.765678406, -0.985463262, 0.169723019, 0.00751660019, 0.00757635571, -0.000302328728, 0.999971449, 0.169723943, 0.985508978, -0.00098814955)
  3875. Part32.Parent = Model0
  3876. Part32.Material = Enum.Material.Metal
  3877. Part32.BrickColor = BrickColor.new("Black")
  3878. Part32.Rotation = Vector3.new(178.220001, -14.9200001, 91.0199966)
  3879. Part32.Anchored = true
  3880. Part32.FormFactor = Enum.FormFactor.Custom
  3881. Part32.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  3882. Part32.CFrame = CFrame.new(45.8218689, 0.537801385, 138.338898, -0.0172712952, -0.966157258, -0.257409573, -0.999217987, 0.0258376375, -0.0299322847, 0.0355692543, 0.256688982, -0.965839446)
  3883. Part32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3884. Part32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3885. Part32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. Part32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3887. Part32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3888. Part32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3889. Part32.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3890. Part32.Position = Vector3.new(45.8218689, 0.537801385, 138.338898)
  3891. Part32.Orientation = Vector3.new(1.71999991, -165.080002, -88.5199966)
  3892. Part32.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3893. BlockMesh33.Parent = Part32
  3894. BlockMesh33.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  3895. BlockMesh33.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  3896. Folder34.Name = "CFrames"
  3897. Folder34.Parent = Part32
  3898. CFrameValue35.Name = "C0"
  3899. CFrameValue35.Parent = Folder34
  3900. CFrameValue35.Value = CFrame.new(1.76429749e-05, 1.30935669, 0.339496613, 1, -6.03497028e-07, 4.76837158e-07, -5.25265932e-07, 0.25881651, -0.965926826, -8.71659722e-08, 0.965943575, 0.25882113)
  3901. Part36.Parent = Model0
  3902. Part36.Material = Enum.Material.Metal
  3903. Part36.BrickColor = BrickColor.new("Black")
  3904. Part36.Rotation = Vector3.new(-2.45000005, -22.4799995, -91.0699997)
  3905. Part36.Anchored = true
  3906. Part36.FormFactor = Enum.FormFactor.Custom
  3907. Part36.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  3908. Part36.CFrame = CFrame.new(46.8319168, 0.52085346, 138.473663, -0.0172696002, 0.923872292, -0.382334292, -0.999218047, -0.0023431927, 0.0394729264, 0.0355711691, 0.382713646, 0.923182189)
  3909. Part36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3910. Part36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3911. Part36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3912. Part36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3913. Part36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3914. Part36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3915. Part36.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3916. Part36.Position = Vector3.new(46.8319168, 0.52085346, 138.473663)
  3917. Part36.Orientation = Vector3.new(-2.25999999, -22.5, -90.1299973)
  3918. Part36.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3919. BlockMesh37.Parent = Part36
  3920. BlockMesh37.Scale = Vector3.new(0.761904716, 0.62585032, 0.248979583)
  3921. BlockMesh37.Scale = Vector3.new(0.761904716, 0.62585032, 0.248979583)
  3922. Folder38.Name = "CFrames"
  3923. Folder38.Parent = Part36
  3924. CFrameValue39.Name = "C0"
  3925. CFrameValue39.Parent = Folder38
  3926. CFrameValue39.Value = CFrame.new(0.00430107117, 1.44200134, -0.670970917, 1.00000012, -2.1122396e-06, -1.85891986e-06, 1.3820827e-06, 0.381076664, 0.924543858, -1.7860657e-06, -0.924559891, 0.38108322)
  3927. Part40.Parent = Model0
  3928. Part40.Material = Enum.Material.Metal
  3929. Part40.Rotation = Vector3.new(-92.0400009, 0.98999995, -90.0799942)
  3930. Part40.Anchored = true
  3931. Part40.FormFactor = Enum.FormFactor.Custom
  3932. Part40.Size = Vector3.new(0.316868067, 0.388001561, 0.316868067)
  3933. Part40.CFrame = CFrame.new(46.9470978, 0.473334581, 138.192978, -0.00141788227, 0.999858439, 0.0172822922, 0.0355940051, -0.017221313, 0.999218225, 0.999365568, 0.00203203689, -0.0355636664)
  3934. Part40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3935. Part40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3936. Part40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3937. Part40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3938. Part40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3939. Part40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3940. Part40.Position = Vector3.new(46.9470978, 0.473334581, 138.192978)
  3941. Part40.Orientation = Vector3.new(-87.7299957, 154.080002, 115.82)
  3942. SpecialMesh41.Parent = Part40
  3943. SpecialMesh41.Scale = Vector3.new(0, 1, 0.210884899)
  3944. SpecialMesh41.MeshType = Enum.MeshType.Wedge
  3945. SpecialMesh41.Scale = Vector3.new(0, 1, 0.210884899)
  3946. Folder42.Name = "CFrames"
  3947. Folder42.Parent = Part40
  3948. CFrameValue43.Name = "C0"
  3949. CFrameValue43.Parent = Folder42
  3950. CFrameValue43.Value = CFrame.new(0.0398097038, 1.15963745, -0.786384583, 4.96208668e-06, 1.14644427e-05, -1.00000024, 1.00000036, -7.69970939e-07, 6.10202551e-06, -9.51113179e-07, -1.00001764, -1.09156608e-05)
  3951. Part44.Parent = Model0
  3952. Part44.Material = Enum.Material.Metal
  3953. Part44.BrickColor = BrickColor.new("Black")
  3954. Part44.Rotation = Vector3.new(-2.6099999, -30.0799999, -91.1399994)
  3955. Part44.Anchored = true
  3956. Part44.FormFactor = Enum.FormFactor.Custom
  3957. Part44.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  3958. Part44.CFrame = CFrame.new(46.4131393, 0.52765429, 138.340347, -0.0172699131, 0.865191281, -0.501162291, -0.999218047, 0.00289745256, 0.0394359678, 0.0355708748, 0.501447082, 0.864456952)
  3959. Part44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3960. Part44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3961. Part44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3962. Part44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3963. Part44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3964. Part44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3965. Part44.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3966. Part44.Position = Vector3.new(46.4131393, 0.52765429, 138.340347)
  3967. Part44.Orientation = Vector3.new(-2.25999999, -30.0999985, -89.8299942)
  3968. Part44.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3969. BlockMesh45.Parent = Part44
  3970. BlockMesh45.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  3971. BlockMesh45.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  3972. Folder46.Name = "CFrames"
  3973. Folder46.Parent = Part44
  3974. CFrameValue47.Name = "C0"
  3975. CFrameValue47.Parent = Folder46
  3976. CFrameValue47.Value = CFrame.new(-3.81469727e-06, 1.30960083, -0.251865387, 1.00000012, -1.91666186e-06, -1.44913793e-06, 1.08778477e-06, 0.50000453, 0.866023123, -1.47254468e-06, -0.866038263, 0.500013113)
  3977. Part48.Parent = Model0
  3978. Part48.Material = Enum.Material.Metal
  3979. Part48.BrickColor = BrickColor.new("Black")
  3980. Part48.Rotation = Vector3.new(-2.16999984, -7.57999992, -91)
  3981. Part48.Anchored = true
  3982. Part48.FormFactor = Enum.FormFactor.Custom
  3983. Part48.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  3984. Part48.CFrame = CFrame.new(46.8812485, 0.513454318, 138.290588, -0.0172711536, 0.991121113, -0.131904364, -0.999217868, -0.0124164168, 0.0375427455, 0.0355707258, 0.132448599, 0.990551591)
  3985. Part48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3986. Part48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3987. Part48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3988. Part48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3989. Part48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3990. Part48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3991. Part48.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3992. Part48.Position = Vector3.new(46.8812485, 0.513454318, 138.290588)
  3993. Part48.Orientation = Vector3.new(-2.14999986, -7.58999968, -90.7099991)
  3994. Part48.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3995. BlockMesh49.Parent = Part48
  3996. BlockMesh49.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  3997. BlockMesh49.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  3998. Folder50.Name = "CFrames"
  3999. Folder50.Parent = Part48
  4000. CFrameValue51.Name = "C0"
  4001. CFrameValue51.Parent = Folder50
  4002. CFrameValue51.Value = CFrame.new(0.00433087349, 1.25869751, -0.720050812, 0.99999994, 4.23751771e-08, -2.1122396e-06, 9.46223736e-07, 0.130516455, 0.991446495, -2.27992132e-07, -0.99146384, 0.130518526)
  4003. Part52.Parent = Model0
  4004. Part52.Material = Enum.Material.Metal
  4005. Part52.BrickColor = BrickColor.new("Black")
  4006. Part52.Rotation = Vector3.new(-2.30999994, -15.0799999, -91.0199966)
  4007. Part52.Anchored = true
  4008. Part52.FormFactor = Enum.FormFactor.Custom
  4009. Part52.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  4010. Part52.CFrame = CFrame.new(46.442524, 0.524629951, 138.26973, -0.0172695164, 0.96541971, -0.260161847, -0.999218047, -0.00740749296, 0.0388421379, 0.0355709419, 0.260626972, 0.964784265)
  4011. Part52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4012. Part52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4013. Part52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4014. Part52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4015. Part52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4016. Part52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4017. Part52.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4018. Part52.Position = Vector3.new(46.442524, 0.524629951, 138.26973)
  4019. Part52.Orientation = Vector3.new(-2.23000002, -15.0899992, -90.4199982)
  4020. Part52.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4021. BlockMesh53.Parent = Part52
  4022. BlockMesh53.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  4023. BlockMesh53.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  4024. Folder54.Name = "CFrames"
  4025. Folder54.Parent = Part52
  4026. CFrameValue55.Name = "C0"
  4027. CFrameValue55.Parent = Folder54
  4028. CFrameValue55.Value = CFrame.new(-7.15255737e-07, 1.23887634, -0.281154633, 1.00000012, -1.86823308e-06, -1.86637044e-06, 1.1511147e-06, 0.258828253, 0.965923727, -1.86941907e-06, -0.965940416, 0.258832604)
  4029. Part56.Parent = Model0
  4030. Part56.Material = Enum.Material.Metal
  4031. Part56.BrickColor = BrickColor.new("Black")
  4032. Part56.Rotation = Vector3.new(-2.03999996, -0.0799999982, -90.9899979)
  4033. Part56.Anchored = true
  4034. Part56.FormFactor = Enum.FormFactor.Custom
  4035. Part56.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  4036. Part56.CFrame = CFrame.new(46.8856125, 0.510238409, 138.202408, -0.0172711536, 0.999858737, -0.00141213555, -0.999217868, -0.0172103774, 0.0356009528, 0.0355707258, 0.00202601915, 0.999365211)
  4037. Part56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4038. Part56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4039. Part56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4040. Part56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4041. Part56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4042. Part56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4043. Part56.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4044. Part56.Position = Vector3.new(46.8856125, 0.510238409, 138.202408)
  4045. Part56.Orientation = Vector3.new(-2.03999996, -0.0799999982, -90.9899979)
  4046. Part56.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4047. BlockMesh57.Parent = Part56
  4048. BlockMesh57.Scale = Vector3.new(0.761905074, 0.625850081, 0.394557863)
  4049. BlockMesh57.Scale = Vector3.new(0.761905074, 0.625850081, 0.394557863)
  4050. Folder58.Name = "CFrames"
  4051. Folder58.Parent = Part56
  4052. CFrameValue59.Name = "C0"
  4053. CFrameValue59.Parent = Folder58
  4054. CFrameValue59.Value = CFrame.new(0.004332304, 1.17045593, -0.72428894, 0.99999994, 3.18534148e-07, -2.08988786e-06, 9.46223736e-07, -6.39492646e-06, 1.00000024, -2.27992132e-07, -1.00001776, -6.57676719e-06)
  4055. Part60.Parent = Model0
  4056. Part60.Material = Enum.Material.Metal
  4057. Part60.Rotation = Vector3.new(-2.47000003, -0.129999995, -81.2200012)
  4058. Part60.Anchored = true
  4059. Part60.FormFactor = Enum.FormFactor.Custom
  4060. Part60.Size = Vector3.new(0.316868067, 0.393713713, 0.316868067)
  4061. Part60.CFrame = CFrame.new(46.9470978, 0.473334581, 138.192978, 0.152665779, 0.98828429, -0.0022639744, -0.987344027, 0.152618721, 0.0431252457, 0.0429646224, -0.0043481607, 0.999067247)
  4062. Part60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4063. Part60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4064. Part60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4065. Part60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4066. Part60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4067. Part60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4068. Part60.Position = Vector3.new(46.9470978, 0.473334581, 138.192978)
  4069. Part60.Orientation = Vector3.new(-2.47000003, -0.129999995, -81.2099991)
  4070. SpecialMesh61.Parent = Part60
  4071. SpecialMesh61.Scale = Vector3.new(0.0544217676, 1, 0.0272108838)
  4072. SpecialMesh61.MeshType = Enum.MeshType.Wedge
  4073. SpecialMesh61.Scale = Vector3.new(0.0544217676, 1, 0.0272108838)
  4074. Folder62.Name = "CFrames"
  4075. Folder62.Parent = Part60
  4076. CFrameValue63.Name = "C0"
  4077. CFrameValue63.Parent = Folder62
  4078. CFrameValue63.Value = CFrame.new(0.0398097038, 1.15963745, -0.786384583, 0.985463321, -0.169722781, -0.00751638412, 0.00757177919, -0.000314270146, 0.999971569, -0.169723809, -0.985509157, 0.000975240953)
  4079. Part64.Parent = Model0
  4080. Part64.Material = Enum.Material.Metal
  4081. Part64.BrickColor = BrickColor.new("Black")
  4082. Part64.Rotation = Vector3.new(-2.30999994, -15.0799999, -91.0199966)
  4083. Part64.Anchored = true
  4084. Part64.FormFactor = Enum.FormFactor.Custom
  4085. Part64.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  4086. Part64.CFrame = CFrame.new(46.8607559, 0.517109334, 138.382797, -0.0172695164, 0.96541971, -0.260161847, -0.999218047, -0.00740749296, 0.0388421379, 0.0355709419, 0.260626972, 0.964784265)
  4087. Part64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4088. Part64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4089. Part64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4090. Part64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4091. Part64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4092. Part64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4093. Part64.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4094. Part64.Position = Vector3.new(46.8607559, 0.517109334, 138.382797)
  4095. Part64.Orientation = Vector3.new(-2.23000002, -15.0899992, -90.4199982)
  4096. Part64.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4097. BlockMesh65.Parent = Part64
  4098. BlockMesh65.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  4099. BlockMesh65.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  4100. Folder66.Name = "CFrames"
  4101. Folder66.Parent = Part64
  4102. CFrameValue67.Name = "C0"
  4103. CFrameValue67.Parent = Folder66
  4104. CFrameValue67.Value = CFrame.new(0.00431227684, 1.35102844, -0.699684143, 1.00000012, -1.86823308e-06, -1.86637044e-06, 1.1511147e-06, 0.258828253, 0.965923727, -1.86941907e-06, -0.965940416, 0.258832604)
  4105. Part68.Parent = Model0
  4106. Part68.Material = Enum.Material.Metal
  4107. Part68.BrickColor = BrickColor.new("Black")
  4108. Part68.Rotation = Vector3.new(177.959991, 0.0799999982, 90.9899979)
  4109. Part68.Anchored = true
  4110. Part68.FormFactor = Enum.FormFactor.Custom
  4111. Part68.Size = Vector3.new(0.316868067, 1.30239236, 0.316868067)
  4112. Part68.CFrame = CFrame.new(46.1590652, 0.528966904, 138.254639, -0.0172710977, -0.999858677, 0.00141230132, -0.999218166, 0.0172103159, -0.0355987735, 0.0355685465, -0.00202614488, -0.99936527)
  4113. Part68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4114. Part68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4115. Part68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4116. Part68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4117. Part68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4118. Part68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4119. Part68.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4120. Part68.Position = Vector3.new(46.1590652, 0.528966904, 138.254639)
  4121. Part68.Orientation = Vector3.new(2.03999996, 179.919998, -89.0099945)
  4122. Part68.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4123. BlockMesh69.Parent = Part68
  4124. BlockMesh69.Scale = Vector3.new(0.598639786, 1, 0.503401339)
  4125. BlockMesh69.Scale = Vector3.new(0.598639786, 1, 0.503401339)
  4126. Folder70.Name = "CFrames"
  4127. Folder70.Parent = Part68
  4128. CFrameValue71.Name = "C0"
  4129. CFrameValue71.Parent = Folder70
  4130. CFrameValue71.Value = CFrame.new(2.45571136e-05, 1.22436523, 0.002368927, 1.00000012, -2.61541572e-07, -9.31322575e-08, -1.24052167e-06, 6.26710244e-06, -1.00000024, -2.85028364e-07, 1.00001764, 6.44847751e-06)
  4131. Part72.Parent = Model0
  4132. Part72.Material = Enum.Material.Metal
  4133. Part72.BrickColor = BrickColor.new("Black")
  4134. Part72.Rotation = Vector3.new(83.2599945, 89.0400009, 4.69999981)
  4135. Part72.Anchored = true
  4136. Part72.FormFactor = Enum.FormFactor.Custom
  4137. Part72.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  4138. Part72.CFrame = CFrame.new(46.5129929, 0.523137689, 138.141037, 0.0172710326, -0.00141864736, 0.999858558, 0.999217927, 0.0355995558, -0.0172100309, -0.0355692245, 0.99936527, 0.0020324965)
  4139. Part72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4140. Part72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4141. Part72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4142. Part72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4143. Part72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4144. Part72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4145. Part72.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4146. Part72.Position = Vector3.new(46.5129929, 0.523137689, 138.141037)
  4147. Part72.Orientation = Vector3.new(0.98999995, 89.8799973, 87.9599991)
  4148. Part72.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4149. CylinderMesh73.Parent = Part72
  4150. CylinderMesh73.Scale = Vector3.new(0.571428835, 0.0680272058, 0.571428657)
  4151. CylinderMesh73.Scale = Vector3.new(0.571428835, 0.0680272058, 0.571428657)
  4152. Folder74.Name = "CFrames"
  4153. Folder74.Parent = Part72
  4154. CFrameValue75.Name = "C0"
  4155. CFrameValue75.Parent = Folder74
  4156. CFrameValue75.Value = CFrame.new(-0.00430440903, 1.11012268, -0.351379395, -0.999999881, -5.77419996e-07, 2.04337994e-07, 5.51342964e-07, 1.00000024, 9.10367817e-08, 3.47878085e-07, -8.98726285e-08, -1.00001752)
  4157. Part76.Parent = Model0
  4158. Part76.Material = Enum.Material.Metal
  4159. Part76.BrickColor = BrickColor.new("Black")
  4160. Part76.Rotation = Vector3.new(-2.30999994, -15.0799999, -91.0199966)
  4161. Part76.Anchored = true
  4162. Part76.FormFactor = Enum.FormFactor.Custom
  4163. Part76.Size = Vector3.new(0.316868067, 0.474224269, 0.316868067)
  4164. Part76.CFrame = CFrame.new(46.5676727, 0.524331987, 138.322266, -0.0172695164, 0.96541971, -0.260161847, -0.999218047, -0.00740749296, 0.0388421379, 0.0355709419, 0.260626972, 0.964784265)
  4165. Part76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4166. Part76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4167. Part76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4168. Part76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4169. Part76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4170. Part76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4171. Part76.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4172. Part76.Position = Vector3.new(46.5676727, 0.524331987, 138.322266)
  4173. Part76.Orientation = Vector3.new(-2.23000002, -15.0899992, -90.4199982)
  4174. Part76.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4175. BlockMesh77.Parent = Part76
  4176. BlockMesh77.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  4177. BlockMesh77.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  4178. Folder78.Name = "CFrames"
  4179. Folder78.Parent = Part76
  4180. CFrameValue79.Name = "C0"
  4181. CFrameValue79.Parent = Folder78
  4182. CFrameValue79.Value = CFrame.new(3.81469727e-06, 1.29119873, -0.406394958, 1.00000012, -1.86823308e-06, -1.86637044e-06, 1.1511147e-06, 0.258828253, 0.965923727, -1.86941907e-06, -0.965940416, 0.258832604)
  4183. Part80.Parent = Model0
  4184. Part80.Material = Enum.Material.Metal
  4185. Part80.BrickColor = BrickColor.new("Black")
  4186. Part80.Rotation = Vector3.new(-2.6099999, -30.0799999, -91.1399994)
  4187. Part80.Anchored = true
  4188. Part80.FormFactor = Enum.FormFactor.Custom
  4189. Part80.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  4190. Part80.CFrame = CFrame.new(46.7879295, 0.524601758, 138.557755, -0.0172699131, 0.865191281, -0.501162291, -0.999218047, 0.00289745256, 0.0394359678, 0.0355708748, 0.501447082, 0.864456952)
  4191. Part80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4192. Part80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4193. Part80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4194. Part80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4195. Part80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4196. Part80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4197. Part80.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4198. Part80.Position = Vector3.new(46.7879295, 0.524601758, 138.557755)
  4199. Part80.Orientation = Vector3.new(-2.25999999, -30.0999985, -89.8299942)
  4200. Part80.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4201. BlockMesh81.Parent = Part80
  4202. BlockMesh81.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  4203. BlockMesh81.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  4204. Folder82.Name = "CFrames"
  4205. Folder82.Parent = Part80
  4206. CFrameValue83.Name = "C0"
  4207. CFrameValue83.Parent = Folder82
  4208. CFrameValue83.Value = CFrame.new(0.00430679321, 1.52622986, -0.627098083, 1.00000012, -1.91666186e-06, -1.44913793e-06, 1.08778477e-06, 0.50000453, 0.866023123, -1.47254468e-06, -0.866038263, 0.500013113)
  4209. Part84.Parent = Model0
  4210. Part84.Material = Enum.Material.Metal
  4211. Part84.BrickColor = BrickColor.new("Black")
  4212. Part84.Rotation = Vector3.new(177.959991, 0.0799999982, 90.9899979)
  4213. Part84.Anchored = true
  4214. Part84.FormFactor = Enum.FormFactor.Custom
  4215. Part84.Size = Vector3.new(0.316868067, 1.04803562, 0.316868067)
  4216. Part84.CFrame = CFrame.new(46.1612854, 0.527014971, 138.20079, -0.0172710977, -0.999858677, 0.00141230132, -0.999218166, 0.0172103159, -0.0355987735, 0.0355685465, -0.00202614488, -0.99936527)
  4217. Part84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4218. Part84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4219. Part84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4220. Part84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4221. Part84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4222. Part84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4223. Part84.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4224. Part84.Position = Vector3.new(46.1612854, 0.527014971, 138.20079)
  4225. Part84.Orientation = Vector3.new(2.03999996, 179.919998, -89.0099945)
  4226. Part84.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4227. BlockMesh85.Parent = Part84
  4228. BlockMesh85.Scale = Vector3.new(0.761905074, 1, 0.394557834)
  4229. BlockMesh85.Scale = Vector3.new(0.761905074, 1, 0.394557834)
  4230. Folder86.Name = "CFrames"
  4231. Folder86.Parent = Part84
  4232. CFrameValue87.Name = "C0"
  4233. CFrameValue87.Parent = Folder86
  4234. CFrameValue87.Value = CFrame.new(2.0980835e-05, 1.17047119, 0.000228881836, 1.00000012, -2.61541572e-07, -9.31322575e-08, -1.24052167e-06, 6.26710244e-06, -1.00000024, -2.85028364e-07, 1.00001764, 6.44847751e-06)
  4235. Part88.Parent = Model0
  4236. Part88.Material = Enum.Material.Metal
  4237. Part88.BrickColor = BrickColor.new("Dark stone grey")
  4238. Part88.Reflectance = 0.10000000149012
  4239. Part88.Rotation = Vector3.new(87.9599991, -0.98999995, 0.0799999982)
  4240. Part88.Anchored = true
  4241. Part88.FormFactor = Enum.FormFactor.Custom
  4242. Part88.Size = Vector3.new(0.316868067, 0.331957012, 0.316868067)
  4243. Part88.CFrame = CFrame.new(46.1677742, 0.598572016, 135.732925, 0.999858558, -0.00141178723, -0.0172828045, -0.0172220413, 0.0355939232, -0.999218106, 0.00202596327, 0.999365389, 0.0355636775)
  4244. Part88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4245. Part88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4246. Part88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4247. Part88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4248. Part88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4249. Part88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4250. Part88.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4251. Part88.Position = Vector3.new(46.1677742, 0.598572016, 135.732925)
  4252. Part88.Orientation = Vector3.new(87.7299957, -25.9200001, -25.8199997)
  4253. Part88.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4254. SpecialMesh89.Parent = Part88
  4255. SpecialMesh89.Scale = Vector3.new(0.802721381, 1, 0.244898811)
  4256. SpecialMesh89.MeshType = Enum.MeshType.Wedge
  4257. SpecialMesh89.Scale = Vector3.new(0.802721381, 1, 0.244898811)
  4258. Folder90.Name = "CFrames"
  4259. Folder90.Parent = Part88
  4260. CFrameValue91.Name = "C0"
  4261. CFrameValue91.Parent = Folder90
  4262. CFrameValue91.Value = CFrame.new(-0.159372091, -1.29328918, -1.90734863e-05, 1.19729812e-05, 4.93228436e-06, 1.00000012, -6.86571002e-06, 1.00000024, -6.08339906e-06, -1.00001776, -7.0463866e-06, 1.14297291e-05)
  4263. Part92.Name = "Handle"
  4264. Part92.Parent = Model0
  4265. Part92.Material = Enum.Material.SmoothPlastic
  4266. Part92.BrickColor = BrickColor.new("Lily white")
  4267. Part92.Rotation = Vector3.new(-96.7399979, -89.0400009, 175.300003)
  4268. Part92.Anchored = true
  4269. Part92.FormFactor = Enum.FormFactor.Custom
  4270. Part92.Size = Vector3.new(0.316868067, 2.25040984, 0.316868067)
  4271. Part92.CFrame = CFrame.new(46.1631737, 0.485365003, 137.031067, -0.0172711033, -0.00141864689, -0.999858618, -0.999217927, 0.0355995446, 0.0172101036, 0.0355692096, 0.99936527, -0.00203249883)
  4272. Part92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4273. Part92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4274. Part92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4275. Part92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4276. Part92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4277. Part92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4278. Part92.Color = Color3.new(0.945098, 0.945098, 0.905882)
  4279. Part92.Position = Vector3.new(46.1631737, 0.485365003, 137.031067)
  4280. Part92.Orientation = Vector3.new(-0.98999995, -90.1199951, -87.9599991)
  4281. Part92.Color = Color3.new(0.945098, 0.945098, 0.905882)
  4282. CylinderMesh93.Parent = Part92
  4283. CylinderMesh93.Scale = Vector3.new(0.761905074, 1, 0.639455855)
  4284. CylinderMesh93.Scale = Vector3.new(0.761905074, 1, 0.639455855)
  4285. Motor94.Parent = Part92
  4286. Motor94.C0 = CFrame.new(0.0215821266, 6.09555054, 0.00123596191, 4.35113861e-06, 1, -1.48549398e-05, 0.999984562, -4.2682982e-06, 0.00557202566, 0.00557202613, -1.48789532e-05, -0.999984503)
  4287. Motor94.Part0 = Part92
  4288. Motor94.Part1 = Part1
  4289. Motor95.Parent = Part92
  4290. Motor95.C0 = CFrame.new(0.00432825089, 1.35142517, 0.69972229, -1, 2.78196694e-06, 3.11124495e-06, 3.72528984e-06, 0.258835524, 0.965921462, 1.88186073e-06, 0.965921462, -0.258835524)
  4291. Motor95.Part0 = Part92
  4292. Motor95.Part1 = Part4
  4293. Motor96.Parent = Part92
  4294. Motor96.C0 = CFrame.new(1.8119812e-05, 1.30957031, 0.252429962, 1, -1.13392709e-07, 6.78834482e-08, 1.15483999e-07, 0.499984741, -0.86603421, 6.42612576e-08, 0.86603421, 0.499984741)
  4295. Motor96.Part0 = Part92
  4296. Motor96.Part1 = Part8
  4297. Motor97.Parent = Part92
  4298. Motor97.C0 = CFrame.new(1.95503235e-05, 1.23933411, 0.281536102, 1, 2.20141274e-07, -4.84809334e-07, -5.25265932e-07, 0.258812249, -0.96592772, -8.71659722e-08, 0.96592766, 0.258812308)
  4299. Motor97.Part0 = Part92
  4300. Motor97.Part1 = Part12
  4301. Motor98.Parent = Part92
  4302. Motor98.C0 = CFrame.new(-0.0269298553, 1.15969849, 0.765678406, 4.96208486e-06, -1.13597735e-05, 1, 1, 9.51169227e-07, -4.96207394e-06, -9.51112838e-07, 1, 1.1359778e-05)
  4303. Motor98.Part0 = Part92
  4304. Motor98.Part1 = Part16
  4305. Motor99.Parent = Part92
  4306. Motor99.C0 = CFrame.new(0.130856752, 1.2976532, 1.14440918e-05, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  4307. Motor99.Part0 = Part92
  4308. Motor99.Part1 = Part20
  4309. Motor100.Parent = Part92
  4310. Motor100.C0 = CFrame.new(0.039886713, 1.15971375, 0.765674591, -4.96208486e-06, -1.13597735e-05, -1, -1, 9.51169227e-07, 4.96207394e-06, 9.51112838e-07, 1, -1.1359778e-05)
  4311. Motor100.Part0 = Part92
  4312. Motor100.Part1 = Part24
  4313. Motor101.Parent = Part92
  4314. Motor101.C0 = CFrame.new(-0.0269298553, 1.15969849, 0.765678406, -0.985462546, 0.169726431, 0.00751774618, 0.00757635012, -0.000302371918, 0.99997133, 0.169723824, 0.985491216, -0.000987930573)
  4315. Motor101.Part0 = Part92
  4316. Motor101.Part1 = Part28
  4317. Motor102.Parent = Part92
  4318. Motor102.C0 = CFrame.new(1.76429749e-05, 1.30935669, 0.339496613, 1, 2.20141274e-07, -4.84809334e-07, -5.25265932e-07, 0.258812249, -0.96592772, -8.71659722e-08, 0.96592766, 0.258812308)
  4319. Motor102.Part0 = Part92
  4320. Motor102.Part1 = Part32
  4321. Motor103.Parent = Part92
  4322. Motor103.C0 = CFrame.new(0.00430107117, 1.44200134, -0.670970917, 1, -2.17797083e-06, -5.9718127e-07, 1.38208259e-06, 0.381070882, 0.924545884, -1.78606547e-06, -0.924545884, 0.381070852)
  4323. Motor103.Part0 = Part92
  4324. Motor103.Part1 = Part36
  4325. Motor104.Parent = Part92
  4326. Motor104.C0 = CFrame.new(0.0398097038, 1.15963745, -0.786384583, 4.96208486e-06, 1.14642398e-05, -1, 1, -9.51169739e-07, 4.96207394e-06, -9.51112838e-07, -1, -1.14642444e-05)
  4327. Motor104.Part0 = Part92
  4328. Motor104.Part1 = Part40
  4329. Motor105.Parent = Part92
  4330. Motor105.C0 = CFrame.new(-3.81469727e-06, 1.30960083, -0.251865387, 1, -1.81915277e-06, -2.05781447e-07, 1.08778465e-06, 0.499997854, 0.8660267, -1.47254445e-06, -0.8660267, 0.499997854)
  4331. Motor105.Part0 = Part92
  4332. Motor105.Part1 = Part44
  4333. Motor106.Parent = Part92
  4334. Motor106.C0 = CFrame.new(0.00433087349, 1.25869751, -0.720050812, 1, -3.49537629e-07, -9.08374091e-07, 9.46223849e-07, 0.130514175, 0.991446435, -2.2799216e-07, -0.991446495, 0.130514175)
  4335. Motor106.Part0 = Part92
  4336. Motor106.Part1 = Part48
  4337. Motor107.Parent = Part92
  4338. Motor107.C0 = CFrame.new(-7.15255737e-07, 1.23887634, -0.281154633, 1, -2.10365351e-06, -6.28039402e-07, 1.15111459e-06, 0.258823991, 0.965924561, -1.86941884e-06, -0.965924501, 0.258824021)
  4339. Motor107.Part0 = Part92
  4340. Motor107.Part1 = Part52
  4341. Motor108.Parent = Part92
  4342. Motor108.C0 = CFrame.new(0.004332304, 1.17045593, -0.72428894, 1, -2.27986092e-07, -9.46225327e-07, 9.46223849e-07, -6.39481323e-06, 1, -2.2799216e-07, -1, -6.39481323e-06)
  4343. Motor108.Part0 = Part92
  4344. Motor108.Part1 = Part56
  4345. Motor109.Parent = Part92
  4346. Motor109.C0 = CFrame.new(0.0398097038, 1.15963745, -0.786384583, 0.985462606, -0.169726223, -0.00751526328, 0.0075717736, -0.000314313424, 0.99997133, -0.16972369, -0.985491276, 0.000975384493)
  4347. Motor109.Part0 = Part92
  4348. Motor109.Part1 = Part60
  4349. Motor110.Parent = Part92
  4350. Motor110.C0 = CFrame.new(0.00431227684, 1.35102844, -0.699684143, 1, -2.10365351e-06, -6.28039402e-07, 1.15111459e-06, 0.258823991, 0.965924561, -1.86941884e-06, -0.965924501, 0.258824021)
  4351. Motor110.Part0 = Part92
  4352. Motor110.Part1 = Part64
  4353. Motor111.Parent = Part92
  4354. Motor111.C0 = CFrame.new(2.45571136e-05, 1.22436523, 0.002368927, 1, 2.85036123e-07, -1.24051974e-06, -1.24052156e-06, 6.26699148e-06, -1, -2.85028335e-07, 1, 6.26699193e-06)
  4355. Motor111.Part0 = Part92
  4356. Motor111.Part1 = Part68
  4357. Motor112.Parent = Part92
  4358. Motor112.C0 = CFrame.new(-0.00430440903, 1.11012268, -0.351379395, -1, 5.51343078e-07, -3.47878142e-07, 5.51343021e-07, 1, -8.98728132e-08, 3.47878114e-07, -8.98729979e-08, -1)
  4359. Motor112.Part0 = Part92
  4360. Motor112.Part1 = Part72
  4361. Motor113.Parent = Part92
  4362. Motor113.C0 = CFrame.new(3.81469727e-06, 1.29119873, -0.406394958, 1, -2.10365351e-06, -6.28039402e-07, 1.15111459e-06, 0.258823991, 0.965924561, -1.86941884e-06, -0.965924501, 0.258824021)
  4363. Motor113.Part0 = Part92
  4364. Motor113.Part1 = Part76
  4365. Motor114.Parent = Part92
  4366. Motor114.C0 = CFrame.new(0.00430679321, 1.52622986, -0.627098083, 1, -1.81915277e-06, -2.05781447e-07, 1.08778465e-06, 0.499997854, 0.8660267, -1.47254445e-06, -0.8660267, 0.499997854)
  4367. Motor114.Part0 = Part92
  4368. Motor114.Part1 = Part80
  4369. Motor115.Parent = Part92
  4370. Motor115.C0 = CFrame.new(2.0980835e-05, 1.17047119, 0.000228881836, 1, 2.85036123e-07, -1.24051974e-06, -1.24052156e-06, 6.26699148e-06, -1, -2.85028335e-07, 1, 6.26699193e-06)
  4371. Motor115.Part0 = Part92
  4372. Motor115.Part1 = Part84
  4373. Motor116.Parent = Part92
  4374. Motor116.C0 = CFrame.new(-0.159372091, -1.29328918, -1.90734863e-05, 1.19727683e-05, 4.93228072e-06, 1, -6.86558815e-06, 1, -4.93219841e-06, -1, -6.86552903e-06, 1.1972802e-05)
  4375. Motor116.Part0 = Part92
  4376. Motor116.Part1 = Part88
  4377. Folder117.Name = "CFrames"
  4378. Folder117.Parent = Part92
  4379. CFrameValue118.Name = "C0"
  4380. CFrameValue118.Parent = Folder117
  4381. CFrameValue118.Value = CFrame.new(0, 0, 0, 0.999999881, -5.66244125e-07, -2.7706119e-07, -5.66244125e-07, 1.00000024, -9.05711204e-08, -2.7706119e-07, -9.05711204e-08, 1.00001764)
  4382. Motor119.Parent = Part92
  4383. Motor119.C0 = CFrame.new(0, 0, 0, 1, 5.66244239e-07, 2.77061304e-07, -5.66244182e-07, 1, 9.05712554e-08, -2.77061218e-07, -9.05714117e-08, 1)
  4384. Motor119.Part0 = Part92
  4385. Motor119.Part1 = Part92
  4386. Motor120.Parent = Part92
  4387. Motor120.C0 = CFrame.new(0.0399475098, 10.3271942, 0.470355988, 0.928245008, 0.361373931, 0.0881483033, 0.221980721, -0.728324175, 0.648281157, 0.298472494, -0.582196534, -0.756281316)
  4388. Motor120.Part0 = Part92
  4389. Motor120.Part1 = Part217
  4390. Motor121.Parent = Part92
  4391. Motor121.C0 = CFrame.new(0.00655031204, 5.75100708, 0.761394501, 0.985464334, 0.169726714, -0.00727793714, -0.00733313384, -0.000301663094, -0.999973059, -0.16972436, 0.985491097, 0.000947350462)
  4392. Motor121.Part0 = Part92
  4393. Motor121.Part1 = Part221
  4394. Motor122.Parent = Part92
  4395. Motor122.C0 = CFrame.new(0.073366642, 5.73587036, 0.47467041, 0.941091478, 0.33807376, -0.0072751767, 0.00716645224, 0.00156975677, 0.999973118, 0.338076055, -0.941118419, -0.000945504813)
  4396. Motor122.Part0 = Part92
  4397. Motor122.Part1 = Part226
  4398. Motor123.Parent = Part92
  4399. Motor123.C0 = CFrame.new(0.0399506092, 5.75097656, 0.567359924, -0.985464334, 0.169882461, -1.28343868e-06, -0.00733011588, -0.042528525, -0.99906832, -0.169724241, -0.984546244, 0.0431555994)
  4400. Motor123.Part0 = Part92
  4401. Motor123.Part1 = Part230
  4402. Motor124.Parent = Part92
  4403. Motor124.C0 = CFrame.new(-0.0603640079, 5.73588562, -0.495357513, -0.941091478, -0.33807373, 0.00727773691, 0.00716465944, 0.00158232194, 0.999973059, -0.338076115, 0.94111836, 0.000933073345)
  4404. Motor124.Part0 = Part92
  4405. Motor124.Part1 = Part234
  4406. Motor125.Parent = Part92
  4407. Motor125.C0 = CFrame.new(0.00653576851, 5.73590088, -0.010345459, 1, 2.85036123e-07, -1.24051974e-06, -1.24052156e-06, 6.26699148e-06, -1, -2.85028335e-07, 1, 6.26699193e-06)
  4408. Motor125.Part0 = Part92
  4409. Motor125.Part1 = Part238
  4410. Motor126.Parent = Part92
  4411. Motor126.C0 = CFrame.new(0.0400102139, 10.9382935, -0.0103569031, -0.892778635, 0.450495631, -1.05701456e-05, -0.285315752, -0.565448284, -0.773862481, -0.348627627, -0.690884829, 0.63335371)
  4412. Motor126.Part0 = Part92
  4413. Motor126.Part1 = Part242
  4414. Motor127.Parent = Part92
  4415. Motor127.C0 = CFrame.new(0.00656628609, 5.73588562, -0.495365143, -1, -2.96016083e-07, -1.33737717e-06, 1.3373791e-06, -6.20505898e-06, -1, 2.96007755e-07, -1, 6.20505944e-06)
  4416. Motor127.Part0 = Part92
  4417. Motor127.Part1 = Part246
  4418. Motor128.Parent = Part92
  4419. Motor128.C0 = CFrame.new(-0.0269107819, 10.3272247, -0.49105072, -0.928244889, -0.361374527, -0.0881470665, 0.221979767, -0.728319585, 0.648286581, -0.298473537, 0.582201898, 0.756276727)
  4420. Motor128.Part0 = Part92
  4421. Motor128.Part1 = Part250
  4422. Motor129.Parent = Part92
  4423. Motor129.C0 = CFrame.new(0.0733220577, 10.5728912, -0.204338074, 0.928242028, 0.361383647, -0.0881396234, 0.221995935, -0.728324771, -0.648275256, -0.298470348, 0.582189679, -0.756287456)
  4424. Motor129.Part0 = Part92
  4425. Motor129.Part1 = Part254
  4426. Motor130.Parent = Part92
  4427. Motor130.C0 = CFrame.new(0.073374033, 10.5729065, 0.183654785, -0.928246379, 0.361369312, -0.0881525353, -0.221978188, -0.728333175, -0.648271918, -0.29846999, -0.582188129, 0.756288767)
  4428. Motor130.Part0 = Part92
  4429. Motor130.Part1 = Part258
  4430. Motor131.Parent = Part92
  4431. Motor131.C0 = CFrame.new(0.0399551392, 10.5880585, 0.276332855, 0.892776191, 0.450500429, 4.77037656e-06, 0.28531906, -0.565437376, 0.773869336, 0.348631114, -0.690890729, -0.633345366)
  4432. Motor131.Part0 = Part92
  4433. Motor131.Part1 = Part262
  4434. Motor132.Parent = Part92
  4435. Motor132.C0 = CFrame.new(-0.0269141197, 10.5880432, -0.297027588, -0.892775953, -0.450500876, -2.96651774e-06, 0.285317719, -0.565430999, 0.773874462, -0.348632753, 0.690895736, 0.633339047)
  4436. Motor132.Part0 = Part92
  4437. Motor132.Part1 = Part266
  4438. Motor133.Parent = Part92
  4439. Motor133.C0 = CFrame.new(-0.0268354416, 10.32724, 0.470371246, -0.941090047, -0.338077813, -0.00727954786, 0.00717078755, 0.00157063024, -0.999973118, 0.338080138, -0.94111681, 0.000946179731)
  4440. Motor133.Part0 = Part92
  4441. Motor133.Part1 = Part270
  4442. Motor134.Parent = Part92
  4443. Motor134.C0 = CFrame.new(-0.0268108845, 10.9382935, -0.0103569031, -0.892778456, -0.450496107, -1.01090391e-05, 0.285327792, -0.565435886, -0.77386713, 0.348618448, -0.690894783, 0.633347929)
  4444. Motor134.Part0 = Part92
  4445. Motor134.Part1 = Part274
  4446. Motor135.Parent = Part92
  4447. Motor135.C0 = CFrame.new(0.0399231911, 10.5880737, -0.297035217, -0.892780483, 0.450492054, -6.85116765e-06, -0.285320401, -0.565433264, 0.773871839, 0.348619193, 0.690899551, 0.633342326)
  4448. Motor135.Part0 = Part92
  4449. Motor135.Part1 = Part278
  4450. Motor136.Parent = Part92
  4451. Motor136.C0 = CFrame.new(-0.0268354416, 10.32724, 0.470371246, 0.928239167, -0.361392677, -0.0881337002, -0.22200498, -0.728318512, 0.648279309, -0.298472792, -0.582192123, -0.756284654)
  4452. Motor136.Part0 = Part92
  4453. Motor136.Part1 = Part282
  4454. Motor137.Parent = Part92
  4455. Motor137.C0 = CFrame.new(0.00658583641, 10.572876, -0.204364777, -1, -2.96016083e-07, -1.33737717e-06, 1.3373791e-06, -6.20505898e-06, -1, 2.96007755e-07, -1, 6.20505944e-06)
  4456. Motor137.Part0 = Part92
  4457. Motor137.Part1 = Part286
  4458. Motor138.Parent = Part92
  4459. Motor138.C0 = CFrame.new(0.00658726692, 10.5728912, 0.183677673, 1, 2.85036123e-07, -1.24051974e-06, -1.24052156e-06, 6.26699148e-06, -1, -2.85028335e-07, 1, 6.26699193e-06)
  4460. Motor138.Part0 = Part92
  4461. Motor138.Part1 = Part290
  4462. Motor139.Parent = Part92
  4463. Motor139.C0 = CFrame.new(-0.0269165039, 10.9383087, -0.0103263855, 0.892778456, -0.450495988, 8.62224169e-06, -0.2853145, -0.565441906, -0.773867726, 0.348629177, 0.690889895, -0.633347392)
  4464. Motor139.Part0 = Part92
  4465. Motor139.Part1 = Part294
  4466. Motor140.Parent = Part92
  4467. Motor140.C0 = CFrame.new(0.0399475098, 10.3271942, 0.470355988, -0.941091478, 0.33807379, 0.00727473199, -0.00716597913, 0.00156975701, -0.999973178, -0.338076055, -0.94111836, 0.000945344858)
  4468. Motor140.Part0 = Part92
  4469. Motor140.Part1 = Part298
  4470. Motor141.Parent = Part92
  4471. Motor141.C0 = CFrame.new(-0.0269107819, 10.3272247, -0.49105072, 0.941091537, -0.338073671, -0.00727717672, -0.00716406433, 0.00158232008, -0.999973118, 0.338076055, 0.94111836, -0.000932873576)
  4472. Motor141.Part0 = Part92
  4473. Motor141.Part1 = Part302
  4474. Motor142.Parent = Part92
  4475. Motor142.C0 = CFrame.new(-0.0268268585, 10.5880737, 0.276359558, 0.892778337, -0.450496346, 8.71674183e-06, -0.285327226, -0.56543684, 0.773866653, -0.348619163, -0.690893888, -0.633348525)
  4476. Motor142.Part0 = Part92
  4477. Motor142.Part1 = Part306
  4478. Motor143.Parent = Part92
  4479. Motor143.C0 = CFrame.new(-0.0603327751, 10.5729065, -0.204334259, 0.9282462, -0.361370116, 0.0881515369, -0.221977308, -0.728328705, -0.648277223, 0.298471332, 0.582193255, -0.756284237)
  4480. Motor143.Part0 = Part92
  4481. Motor143.Part1 = Part310
  4482. Motor144.Parent = Part92
  4483. Motor144.C0 = CFrame.new(0.0399112701, 10.9382935, -0.0103263855, 0.892780542, 0.450491816, 8.16366628e-06, 0.285320878, -0.565432191, -0.773872316, -0.348618567, 0.690900505, -0.63334161)
  4484. Motor144.Part0 = Part92
  4485. Motor144.Part1 = Part314
  4486. Motor145.Parent = Part92
  4487. Motor145.C0 = CFrame.new(0.0399098396, 10.327179, -0.491054535, -0.928240657, 0.361388296, 0.0881358087, -0.221998706, -0.728316724, 0.648283362, 0.298472822, 0.582196891, 0.756280839)
  4488. Motor145.Part0 = Part92
  4489. Motor145.Part1 = Part318
  4490. Motor146.Parent = Part92
  4491. Motor146.C0 = CFrame.new(0.0399098396, 10.327179, -0.491054535, 0.941090107, 0.338077724, 0.00727709103, 0.00716421986, 0.00158164604, -0.999973118, -0.338080108, 0.941116929, -0.0009335918)
  4492. Motor146.Part0 = Part92
  4493. Motor146.Part1 = Part322
  4494. Motor147.Parent = Part92
  4495. Motor147.C0 = CFrame.new(0.00655055046, 5.73590088, 0.474681854, 1, 2.85036123e-07, -1.24051974e-06, -1.24052156e-06, 6.26699148e-06, -1, -2.85028335e-07, 1, 6.26699193e-06)
  4496. Motor147.Part0 = Part92
  4497. Motor147.Part1 = Part326
  4498. Motor148.Parent = Part92
  4499. Motor148.C0 = CFrame.new(-0.0602412224, 10.5729065, 0.183662415, -0.928240538, -0.361388087, 0.0881376341, 0.222002208, -0.728326619, -0.648271143, 0.298470408, -0.582184792, 0.756291211)
  4500. Motor148.Part0 = Part92
  4501. Motor148.Part1 = Part330
  4502. Motor149.Parent = Part92
  4503. Motor149.C0 = CFrame.new(-0.0602891445, 5.73591614, 0.47467041, 0.941090167, -0.338077515, 0.00727820955, -0.00716932258, 0.00157074956, 0.999973059, -0.33807984, -0.941116929, -0.000945569889)
  4504. Motor149.Part0 = Part92
  4505. Motor149.Part1 = Part334
  4506. Motor150.Parent = Part92
  4507. Motor150.C0 = CFrame.new(0.00432515144, 1.67671204, 0.512001038, -1, 3.27266639e-06, 1.40036104e-06, 3.30433295e-06, 0.707108557, 0.707104981, 1.32391153e-06, 0.707104981, -0.707108617)
  4508. Motor150.Part0 = Part92
  4509. Motor150.Part1 = Part338
  4510. Motor151.Parent = Part92
  4511. Motor151.C0 = CFrame.new(0.00432252884, 1.79136658, -0.361927032, 1, -9.79162223e-07, 7.57185489e-07, 4.69386521e-07, 0.866025448, 0.5, -1.14532293e-06, -0.50000006, 0.866025388)
  4512. Motor151.Part0 = Part92
  4513. Motor151.Part1 = Part342
  4514. Motor152.Parent = Part92
  4515. Motor152.C0 = CFrame.new(0.00434017181, 1.79180908, 0.361961365, -1, 3.18535535e-06, 4.73058492e-07, 2.99513295e-06, 0.866027713, 0.499996126, 1.18298328e-06, 0.499996126, -0.866027713)
  4516. Motor152.Part0 = Part92
  4517. Motor152.Part1 = Part346
  4518. Motor153.Parent = Part92
  4519. Motor153.C0 = CFrame.new(7.62939453e-06, 1.46446228, 0.23973465, 1, -1.27098033e-07, 3.62236001e-08, 1.15483999e-07, 0.707086325, -0.707127273, 6.42612576e-08, 0.707127273, 0.707086384)
  4520. Motor153.Part0 = Part92
  4521. Motor153.Part1 = Part350
  4522. Motor154.Parent = Part92
  4523. Motor154.C0 = CFrame.new(0.0043296814, 1.5266571, 0.627120972, -1, 3.13735995e-06, 2.202019e-06, 3.4756963e-06, 0.500006557, 0.866021693, 1.61599769e-06, 0.866021693, -0.500006557)
  4524. Motor154.Part0 = Part92
  4525. Motor154.Part1 = Part354
  4526. Motor155.Parent = Part92
  4527. Motor155.C0 = CFrame.new(-0.0269532204, 5.75097656, -0.588039398, 0.985464334, -0.169882491, -1.14019508e-06, -0.00733040599, -0.042515941, -0.999068856, 0.169724286, 0.984546721, -0.04314325)
  4528. Motor155.Part0 = Part92
  4529. Motor155.Part1 = Part358
  4530. Motor156.Parent = Part92
  4531. Motor156.C0 = CFrame.new(0.00432133675, 1.88839722, 0.000312805176, 1, -4.8428285e-07, 4.71079602e-07, 4.84287739e-07, 1, -1.03849416e-05, -4.710746e-07, 1.03849416e-05, 1)
  4532. Motor156.Part0 = Part92
  4533. Motor156.Part1 = Part362
  4534. Motor157.Parent = Part92
  4535. Motor157.C0 = CFrame.new(0.00431609154, 1.86373901, -0.18719101, 1, -5.8970636e-07, 3.29685207e-07, 4.84287739e-07, 0.965928018, 0.258810997, -4.710746e-07, -0.258810997, 0.965927958)
  4536. Motor157.Part0 = Part92
  4537. Motor157.Part1 = Part366
  4538. Motor158.Parent = Part92
  4539. Motor158.C0 = CFrame.new(0.00433039665, 1.60704041, 0.575920105, -1, 3.44604814e-06, 2.22814765e-06, 3.86312558e-06, 0.607379377, 0.794411898, 1.38425082e-06, 0.794411957, -0.607379377)
  4540. Motor158.Part0 = Part92
  4541. Motor158.Part1 = Part370
  4542. Motor159.Parent = Part92
  4543. Motor159.C0 = CFrame.new(0.00433015823, 1.74119568, 0.441879272, -1, 3.43232114e-06, 1.33723211e-06, 3.53530095e-06, 0.792291403, 0.610142887, 1.0347286e-06, 0.610142887, -0.792291343)
  4544. Motor159.Part0 = Part92
  4545. Motor159.Part1 = Part374
  4546. Motor160.Parent = Part92
  4547. Motor160.C0 = CFrame.new(0.00645112991, 5.75097656, -0.782058716, -0.985464334, -0.16972661, 0.00727547891, -0.00732859457, -0.000313527067, -0.999973178, 0.16972433, -0.985491097, -0.000934887852)
  4548. Motor160.Part0 = Part92
  4549. Motor160.Part1 = Part378
  4550. Motor161.Parent = Part92
  4551. Motor161.C0 = CFrame.new(0.004322052, 1.83509827, 0.278381348, 1, 9.15049085e-08, 6.42337682e-07, 1.60187497e-07, 0.924538732, -0.381088197, -6.28737382e-07, 0.381088167, 0.924538732)
  4552. Motor161.Part0 = Part92
  4553. Motor161.Part1 = Part383
  4554. Motor162.Parent = Part92
  4555. Motor162.C0 = CFrame.new(0.00432920456, 1.88424683, 0.0952148438, 1, -3.06752611e-07, 6.4615972e-07, 3.87430134e-07, 0.991669059, -0.128811881, -6.01263253e-07, 0.128811881, 0.991668999)
  4556. Motor162.Part0 = Part92
  4557. Motor162.Part1 = Part387
  4558. Motor163.Parent = Part92
  4559. Motor163.C0 = CFrame.new(5.24520874e-06, 1.51742554, 0.163280487, 1, -3.76322021e-07, 4.7321609e-07, 5.62518778e-07, 0.866011262, -0.500024498, -2.21640192e-07, 0.500024438, 0.866011322)
  4560. Motor163.Part0 = Part92
  4561. Motor163.Part1 = Part391
  4562. Motor164.Parent = Part92
  4563. Motor164.C0 = CFrame.new(1.1920929e-05, 1.54875183, 0.0757522583, 1, -1.06602748e-07, -3.80078085e-08, 9.31322575e-08, 0.965922058, -0.258833259, 6.43049134e-08, 0.258833259, 0.965922058)
  4564. Motor164.Part0 = Part92
  4565. Motor164.Part1 = Part395
  4566. Motor165.Parent = Part92
  4567. Motor165.C0 = CFrame.new(0.00431060791, 1.60661316, -0.575897217, 1, -1.84301541e-06, -3.07217306e-07, 1.36345614e-06, 0.60737288, 0.794416904, -1.27752708e-06, -0.794416845, 0.60737294)
  4568. Motor165.Part0 = Part92
  4569. Motor165.Part1 = Part399
  4570. Motor166.Parent = Part92
  4571. Motor166.C0 = CFrame.new(0.00429821014, 1.67626953, -0.511955261, 1, -1.43466104e-06, 2.86151703e-07, 8.12113285e-07, 0.70710355, 0.707110047, -1.21680205e-06, -0.707109988, 0.70710361)
  4572. Motor166.Part0 = Part92
  4573. Motor166.Part1 = Part403
  4574. Motor167.Parent = Part92
  4575. Motor167.C0 = CFrame.new(0.0732808113, 5.73590088, -0.495361328, -0.941090167, 0.338077366, -0.00727578951, -0.00716284802, 0.00158161088, 0.999973178, 0.338079721, 0.941117048, 0.000933158386)
  4576. Motor167.Part0 = Part92
  4577. Motor167.Part1 = Part407
  4578. Motor168.Parent = Part92
  4579. Motor168.C0 = CFrame.new(0.00431394577, 1.88427734, -0.0944633484, 1, -4.65509913e-07, 5.3133806e-07, 3.91155424e-07, 0.991217315, 0.132243365, -5.88232012e-07, -0.132243365, 0.991217375)
  4580. Motor168.Part0 = Part92
  4581. Motor168.Part1 = Part411
  4582. Motor169.Parent = Part92
  4583. Motor169.C0 = CFrame.new(0.00432252884, 1.86372375, 0.187805176, 1, -1.06602748e-07, -3.80078085e-08, 9.31322575e-08, 0.965922058, -0.258833259, 6.43049134e-08, 0.258833259, 0.965922058)
  4584. Motor169.Part0 = Part92
  4585. Motor169.Part1 = Part415
  4586. Motor170.Parent = Part92
  4587. Motor170.C0 = CFrame.new(0.00431609154, 1.83525085, -0.277664185, 1, -8.63607397e-07, 4.07353639e-07, 6.40749931e-07, 0.923211813, 0.384291589, -7.07950676e-07, -0.384291559, 0.923211813)
  4588. Motor170.Part0 = Part92
  4589. Motor170.Part1 = Part419
  4590. Motor171.Parent = Part92
  4591. Motor171.C0 = CFrame.new(8.82148743e-06, 1.556427, -0.0169372559, 1, -4.8428285e-07, 4.71079602e-07, 4.84287739e-07, 1, -1.03849416e-05, -4.710746e-07, 1.03849416e-05, 1)
  4592. Motor171.Part0 = Part92
  4593. Motor171.Part1 = Part423
  4594. Motor172.Parent = Part92
  4595. Motor172.C0 = CFrame.new(-4.76837158e-06, 1.44522095, -0.0750808716, 1, -5.8970636e-07, 3.29685207e-07, 4.84287739e-07, 0.965928018, 0.258810997, -4.710746e-07, -0.258810997, 0.965927958)
  4596. Motor172.Part0 = Part92
  4597. Motor172.Part1 = Part427
  4598. Motor173.Parent = Part92
  4599. Motor173.C0 = CFrame.new(0.00431919098, 1.74076843, -0.441883087, 1, -1.43276009e-06, 1.20381642e-07, 1.06170774e-06, 0.792287648, 0.610147715, -9.69572284e-07, -0.610147715, 0.792287707)
  4600. Motor173.Part0 = Part92
  4601. Motor173.Part1 = Part431
  4602. Motor174.Parent = Part92
  4603. Motor174.C0 = CFrame.new(0.0043296814, 1.44242859, 0.670970917, -1, 3.2469602e-06, 2.80784388e-06, 3.83332326e-06, 0.381080985, 0.924541712, 1.93193387e-06, 0.924541652, -0.381080985)
  4604. Motor174.Part0 = Part92
  4605. Motor174.Part1 = Part435
  4606. Motor175.Parent = Part92
  4607. Motor175.C0 = CFrame.new(-4.76837158e-07, 1.53988647, -0.108478546, 1, -5.8970636e-07, 3.29685207e-07, 4.84287739e-07, 0.965928018, 0.258810997, -4.710746e-07, -0.258810997, 0.965927958)
  4608. Motor175.Part0 = Part92
  4609. Motor175.Part1 = Part439
  4610. Motor176.Parent = Part92
  4611. Motor176.C0 = CFrame.new(1.71661377e-05, 1.39347839, 0.299812317, 1, -1.13392709e-07, 6.78834482e-08, 1.15483999e-07, 0.499984741, -0.86603421, 6.42612576e-08, 0.86603421, 0.499984741)
  4612. Motor176.Part0 = Part92
  4613. Motor176.Part1 = Part443
  4614. Motor177.Parent = Part92
  4615. Motor177.C0 = CFrame.new(1.90734863e-06, 1.41616821, -0.145309448, 1, -9.79162223e-07, 7.57185489e-07, 4.69386521e-07, 0.866025448, 0.5, -1.14532293e-06, -0.50000006, 0.866025388)
  4616. Motor177.Part0 = Part92
  4617. Motor177.Part1 = Part447
  4618. Motor178.Parent = Part92
  4619. Motor178.C0 = CFrame.new(-2.86102295e-06, 1.36688232, -0.322086334, 1, -1.81915277e-06, -2.05781447e-07, 1.08778465e-06, 0.499997854, 0.8660267, -1.47254445e-06, -0.8660267, 0.499997854)
  4620. Motor178.Part0 = Part92
  4621. Motor178.Part1 = Part451
  4622. Motor179.Parent = Part92
  4623. Motor179.C0 = CFrame.new(0.00430250168, 1.25915527, 0.7200737, -1, 6.88797968e-07, 3.41124792e-06, 3.47197056e-06, 0.130526379, 0.991444826, 2.37647328e-07, 0.991444886, -0.130526379)
  4624. Motor179.Part0 = Part92
  4625. Motor179.Part1 = Part455
  4626. Motor180.Parent = Part92
  4627. Motor180.C0 = CFrame.new(-2.38418579e-06, 1.44006348, -0.263523102, 1, -1.43466104e-06, 2.86151703e-07, 8.12113285e-07, 0.70710355, 0.707110047, -1.21680205e-06, -0.707109988, 0.70710361)
  4628. Motor180.Part0 = Part92
  4629. Motor180.Part1 = Part459
  4630. Motor181.Parent = Part92
  4631. Motor181.C0 = CFrame.new(1.21593475e-05, 1.44522095, 0.075668335, 1, -1.06602748e-07, -3.80078085e-08, 9.31322575e-08, 0.965922058, -0.258833259, 6.43049134e-08, 0.258833259, 0.965922058)
  4632. Motor181.Part0 = Part92
  4633. Motor181.Part1 = Part463
  4634. Motor182.Parent = Part92
  4635. Motor182.C0 = CFrame.new(-8.58306885e-06, 1.50018311, -0.192558289, 1, -9.79162223e-07, 7.57185489e-07, 4.69386521e-07, 0.866025448, 0.5, -1.14532293e-06, -0.50000006, 0.866025388)
  4636. Motor182.Part0 = Part92
  4637. Motor182.Part1 = Part467
  4638. Motor183.Parent = Part92
  4639. Motor183.C0 = CFrame.new(0.039886713, 1.15971375, 0.765674591, 0.985464275, 0.169882685, 1.7271642e-06, 0.00732981367, -0.0425293185, 0.999068379, 0.169724479, -0.984546185, -0.0431563333)
  4640. Motor183.Part0 = Part92
  4641. Motor183.Part1 = Part471
  4642. Motor184.Parent = Part92
  4643. Motor184.C0 = CFrame.new(1.40666962e-05, 1.45515442, 0.000301361084, 1, -4.8428285e-07, 4.71079602e-07, 4.84287739e-07, 1, -1.03849416e-05, -4.710746e-07, 1.03849416e-05, 1)
  4644. Motor184.Part0 = Part92
  4645. Motor184.Part1 = Part475
  4646. Motor185.Parent = Part92
  4647. Motor185.C0 = CFrame.new(8.10623169e-06, 1.41619873, 0.145900726, 1, -3.76322021e-07, 4.7321609e-07, 5.62518778e-07, 0.866011262, -0.500024498, -2.21640192e-07, 0.500024438, 0.866011322)
  4648. Motor185.Part0 = Part92
  4649. Motor185.Part1 = Part479
  4650. Motor186.Parent = Part92
  4651. Motor186.C0 = CFrame.new(2.14576721e-06, 1.36988831, -0.205600739, 1, -1.43466104e-06, 2.86151703e-07, 8.12113285e-07, 0.70710355, 0.707110047, -1.21680205e-06, -0.707109988, 0.70710361)
  4652. Motor186.Part0 = Part92
  4653. Motor186.Part1 = Part483
  4654. Motor187.Parent = Part92
  4655. Motor187.C0 = CFrame.new(2.62260437e-06, 1.36990356, 0.206192017, 1, -1.27098033e-07, 3.62236001e-08, 1.15483999e-07, 0.707086325, -0.707127273, 6.42612576e-08, 0.707127273, 0.707086384)
  4656. Motor187.Part0 = Part92
  4657. Motor187.Part1 = Part487
  4658. Motor188.Parent = Part92
  4659. Motor188.C0 = CFrame.new(0.00430655479, 1.17089844, 0.724334717, -1, 2.37668658e-07, 3.47196897e-06, 3.47197056e-06, 6.13823704e-06, 1, 2.37647328e-07, 1, -6.13823795e-06)
  4660. Motor188.Part0 = Part92
  4661. Motor188.Part1 = Part491
  4662. Motor189.Parent = Part92
  4663. Motor189.C0 = CFrame.new(-0.00429725647, 1.11010742, 0.35137558, 1, 5.66244239e-07, 2.77061304e-07, -5.66244182e-07, 1, 9.05712554e-08, -2.77061218e-07, -9.05714117e-08, 1)
  4664. Motor189.Part0 = Part92
  4665. Motor189.Part1 = Part495
  4666. Motor190.Parent = Part92
  4667. Motor190.C0 = CFrame.new(0.0840928555, 1.29763794, 7.62939453e-06, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  4668. Motor190.Part0 = Part92
  4669. Motor190.Part1 = Part499
  4670. Motor191.Parent = Part92
  4671. Motor191.C0 = CFrame.new(-0.0953435898, 1.33520508, 0.0124397278, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  4672. Motor191.Part0 = Part92
  4673. Motor191.Part1 = Part503
  4674. Motor192.Parent = Part92
  4675. Motor192.C0 = CFrame.new(-0.113482475, 1.33755493, 0.0197219849, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  4676. Motor192.Part0 = Part92
  4677. Motor192.Part1 = Part507
  4678. Motor193.Parent = Part92
  4679. Motor193.C0 = CFrame.new(-1.90734863e-06, -1.50241089, -0.165988922, -1, 4.25428198e-06, 4.84343978e-08, -4.25428198e-06, -1, 2.0926816e-06, 4.84433329e-08, 2.09268137e-06, 1)
  4680. Motor193.Part0 = Part92
  4681. Motor193.Part1 = Part511
  4682. Motor194.Parent = Part92
  4683. Motor194.C0 = CFrame.new(0.120788813, -1.50241089, -0.165927887, 0.596560895, -0.443429381, 0.668943584, -0.536866307, 0.399074048, 0.743313193, -0.596564889, -0.802564859, 9.68208406e-06)
  4684. Motor194.Part0 = Part92
  4685. Motor194.Part1 = Part515
  4686. Motor195.Parent = Part92
  4687. Motor195.C0 = CFrame.new(-0.159447908, -1.45925903, 0.165912628, 0.697640717, -0.71644783, -8.42081499e-06, -0.163069963, -0.158800781, 0.97375083, -0.697642863, -0.679326832, -0.227617025)
  4688. Motor195.Part0 = Part92
  4689. Motor195.Part1 = Part519
  4690. Motor196.Parent = Part92
  4691. Motor196.C0 = CFrame.new(-0.159362555, -1.45928955, -0.166000366, 0.596548438, -0.802577138, -4.08097594e-06, 0.536868989, 0.399053723, -0.743322253, 0.596575022, 0.443425506, 0.66893363)
  4692. Motor196.Part0 = Part92
  4693. Motor196.Part1 = Part523
  4694. Motor197.Parent = Part92
  4695. Motor197.C0 = CFrame.new(-2.62260437e-06, -1.33644104, 3.81469727e-06, 1, 5.66244239e-07, 2.77061304e-07, -5.66244182e-07, 1, 9.05712554e-08, -2.77061218e-07, -9.05714117e-08, 1)
  4696. Motor197.Part0 = Part92
  4697. Motor197.Part1 = Part527
  4698. Motor198.Parent = Part92
  4699. Motor198.C0 = CFrame.new(-0.159447908, -1.45925903, 0.165912628, 0.596564054, 0.443430573, 0.668939948, 0.536859274, 0.399077415, -0.743316412, -0.596567988, 0.802562475, 1.54320733e-05)
  4700. Motor198.Part0 = Part92
  4701. Motor198.Part1 = Part531
  4702. Motor199.Parent = Part92
  4703. Motor199.C0 = CFrame.new(0.15950346, -1.50239563, 0.127185822, 0.596544802, 0.802579761, -5.8031037e-06, -0.536864877, 0.399048567, 0.743327856, 0.596582234, -0.443425298, 0.668927193)
  4704. Motor199.Part0 = Part92
  4705. Motor199.Part1 = Part535
  4706. Motor200.Parent = Part92
  4707. Motor200.C0 = CFrame.new(-0.120570421, -1.29330444, -0.165988922, -0.697624743, 0.679341316, -0.227629557, 0.163076475, -0.158812091, -0.973747849, -0.697657406, -0.716431618, 6.65264997e-06)
  4708. Motor200.Part0 = Part92
  4709. Motor200.Part1 = Part539
  4710. Motor201.Parent = Part92
  4711. Motor201.C0 = CFrame.new(0.120689392, -1.29330444, 0.165992737, 0.697625041, -0.679341972, 0.227626711, 0.163083091, -0.158801243, -0.973748446, 0.697655618, 0.716433346, 5.46056754e-06)
  4712. Motor201.Part0 = Part92
  4713. Motor201.Part1 = Part543
  4714. Motor202.Parent = Part92
  4715. Motor202.C0 = CFrame.new(0.15950346, -1.50239563, 1.90734863e-05, 1.21420362e-05, -5.04031414e-06, -1, -5.6199674e-06, -1, 5.04024592e-06, -1, 5.61990601e-06, -1.21420644e-05)
  4716. Motor202.Part0 = Part92
  4717. Motor202.Part1 = Part547
  4718. Motor203.Parent = Part92
  4719. Motor203.C0 = CFrame.new(0.159584522, -1.45927429, -0.165916443, -0.697642803, 0.716445863, 1.10178571e-05, -0.163059443, -0.15879491, 0.973753393, 0.697643399, 0.67933023, 0.227605358)
  4720. Motor203.Part0 = Part92
  4721. Motor203.Part1 = Part551
  4722. Motor204.Parent = Part92
  4723. Motor204.C0 = CFrame.new(-7.62939453e-06, -1.2933197, -0.165981293, 1, 1.07660765e-06, -5.4367124e-06, -1.0766089e-06, 1, -2.30968283e-07, 5.43671194e-06, 2.30974152e-07, 1)
  4724. Motor204.Part0 = Part92
  4725. Motor204.Part1 = Part555
  4726. Motor205.Parent = Part92
  4727. Motor205.C0 = CFrame.new(-1.21593475e-05, -1.50239563, 0.165981293, 1, 4.22075436e-06, 2.05488178e-08, 4.22075436e-06, -1, -2.09174982e-06, 2.05400301e-08, 2.09175005e-06, -1)
  4728. Motor205.Part0 = Part92
  4729. Motor205.Part1 = Part559
  4730. Motor206.Parent = Part92
  4731. Motor206.C0 = CFrame.new(-0.15937686, -1.50236511, -7.62939453e-06, -1.20965087e-05, -4.91737956e-06, 1, 6.9519665e-06, -1, -4.91729543e-06, 1, 6.95190693e-06, 1.20965424e-05)
  4732. Motor206.Part0 = Part92
  4733. Motor206.Part1 = Part563
  4734. Motor207.Parent = Part92
  4735. Motor207.C0 = CFrame.new(-0.159362555, -1.45928955, -0.166000366, 0.697621763, 0.679347813, 0.227619007, -0.163063079, -0.15881069, 0.973750293, 0.697663486, -0.716425657, -1.32499999e-05)
  4736. Motor207.Part0 = Part92
  4737. Motor207.Part1 = Part567
  4738. Motor208.Parent = Part92
  4739. Motor208.C0 = CFrame.new(-0.159366608, -1.50238037, -0.127197266, -0.596546829, -0.80257827, 7.52499636e-06, -0.536867738, 0.399054259, 0.74332279, -0.596577764, 0.443422765, -0.668932915)
  4740. Motor208.Part0 = Part92
  4741. Motor208.Part1 = Part571
  4742. Motor209.Parent = Part92
  4743. Motor209.C0 = CFrame.new(-0.159455776, -1.29330444, 0.127120972, -0.697634876, -0.716453493, 1.89838033e-06, 0.163083166, -0.158802122, -0.973748386, 0.697645724, -0.679320455, 0.227627411)
  4744. Motor209.Part0 = Part92
  4745. Motor209.Part1 = Part575
  4746. Motor210.Parent = Part92
  4747. Motor210.C0 = CFrame.new(0.159584522, -1.45927429, -0.165916443, -0.596558094, -0.443432242, -0.66894424, 0.536867499, 0.399073511, -0.743312657, 0.596566677, -0.802563608, -6.17081378e-06)
  4748. Motor210.Part0 = Part92
  4749. Motor210.Part1 = Part579
  4750. Motor211.Parent = Part92
  4751. Motor211.C0 = CFrame.new(0.159510851, -1.29335022, 3.81469727e-06, -1.21824742e-05, 4.96953362e-06, -1, 5.68934911e-06, 1, 4.9694645e-06, 1, -5.68928863e-06, -1.21825024e-05)
  4752. Motor211.Part0 = Part92
  4753. Motor211.Part1 = Part583
  4754. Motor212.Parent = Part92
  4755. Motor212.C0 = CFrame.new(-0.120661736, -1.50238037, 0.165916443, -0.596566975, 0.44342792, -0.668939233, -0.536857843, 0.399078101, 0.743317187, 0.596566558, 0.802563667, -1.9086212e-05)
  4756. Motor212.Part0 = Part92
  4757. Motor212.Part1 = Part587
  4758. Motor213.Parent = Part92
  4759. Motor213.C0 = CFrame.new(0.159502029, -1.45927429, 0.165977478, -0.697621942, -0.679348588, -0.227616236, -0.163069874, -0.158799753, 0.973750949, -0.697661757, 0.716427326, 9.04728722e-07)
  4760. Motor213.Part0 = Part92
  4761. Motor213.Part1 = Part591
  4762. Motor214.Parent = Part92
  4763. Motor214.C0 = CFrame.new(0.159502029, -1.45927429, 0.165977478, -0.596546531, 0.802578449, 2.17731872e-06, 0.536866307, 0.39904803, -0.743327141, -0.596579194, -0.443428069, -0.668928146)
  4764. Motor214.Part0 = Part92
  4765. Motor214.Part1 = Part595
  4766. Motor215.Parent = Part92
  4767. Motor215.C0 = CFrame.new(-6.91413879e-06, -1.29330444, 0.165981293, -1, 1.11013526e-06, 5.44795375e-06, 1.11013651e-06, 1, 2.31666561e-07, -5.4479533e-06, 2.31672601e-07, -1)
  4768. Motor215.Part0 = Part92
  4769. Motor215.Part1 = Part599
  4770. Motor216.Parent = Part92
  4771. Motor216.C0 = CFrame.new(0.159585238, -1.2933197, -0.127140045, 0.697636664, 0.716451824, -4.4759704e-06, 0.16307269, -0.158796206, -0.973751068, -0.697646439, 0.679323673, -0.227615759)
  4772. Motor216.Part0 = Part92
  4773. Motor216.Part1 = Part603
  4774. Part217.Parent = Model0
  4775. Part217.Material = Enum.Material.Metal
  4776. Part217.Rotation = Vector3.new(6.81999969, 48.9199982, -118.619995)
  4777. Part217.Anchored = true
  4778. Part217.FormFactor = Enum.FormFactor.Custom
  4779. Part217.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  4780. Part217.CFrame = CFrame.new(45.6775513, 0.82118094, 147.352173, -0.314772427, 0.576901257, 0.753738105, -0.914481342, -0.397036105, -0.0780158192, 0.254250944, -0.713830471, 0.652535677)
  4781. Part217.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4782. Part217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4783. Part217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4784. Part217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4785. Part217.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4786. Part217.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4787. Part217.Position = Vector3.new(45.6775513, 0.82118094, 147.352173)
  4788. Part217.Orientation = Vector3.new(4.46999979, 49.1199989, -113.470001)
  4789. SpecialMesh218.Parent = Part217
  4790. SpecialMesh218.Scale = Vector3.new(0, 0.486169338, 0.399306774)
  4791. SpecialMesh218.MeshType = Enum.MeshType.Wedge
  4792. SpecialMesh218.Scale = Vector3.new(0, 0.486169338, 0.399306774)
  4793. Folder219.Name = "CFrames"
  4794. Folder219.Parent = Part217
  4795. CFrameValue220.Name = "C0"
  4796. CFrameValue220.Parent = Folder219
  4797. CFrameValue220.Value = CFrame.new(0.0399475098, 10.3271942, 0.470355988, 0.92824614, 0.361371487, 0.0881471038, 0.221980989, -0.728330076, 0.648274839, 0.298472852, -0.582201898, -0.756300449)
  4798. Part221.Name = "Blade"
  4799. Part221.Parent = Model0
  4800. Part221.Material = Enum.Material.Metal
  4801. Part221.Rotation = Vector3.new(178.37999, 0.0299999993, 81.2200012)
  4802. Part221.Anchored = true
  4803. Part221.FormFactor = Enum.FormFactor.Custom
  4804. Part221.Size = Vector3.new(0.316868067, 0.393713713, 9.18284702)
  4805. Part221.CFrame = CFrame.new(45.3936234, 0.69665283, 142.7771, 0.152687564, -0.988283336, 0.000596971717, -0.987876356, -0.152641192, -0.0283106118, 0.0280692354, 0.00373267988, -0.999599099)
  4806. Part221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4807. Part221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4808. Part221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4809. Part221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4810. Part221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4811. Part221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4812. Part221.Position = Vector3.new(45.3936234, 0.69665283, 142.7771)
  4813. Part221.Orientation = Vector3.new(1.62, 179.970001, -98.7799988)
  4814. SpecialMesh222.Parent = Part221
  4815. SpecialMesh222.Scale = Vector3.new(0, 1, 1)
  4816. SpecialMesh222.MeshType = Enum.MeshType.Wedge
  4817. SpecialMesh222.Scale = Vector3.new(0, 1, 1)
  4818. Script223.Parent = Part221
  4819. table.insert(cors,sandbox(Script223,function()
  4820. function onTouched(hit)
  4821. local human = hit.Parent:FindFirstChild("Humanoid")
  4822.  
  4823. if (human ~= nil) then
  4824. human.Health = human.Health - 50
  4825. end
  4826. end
  4827.  
  4828.  
  4829. connection = script.Parent.Touched:connect(onTouched)
  4830.  
  4831. end))
  4832. Folder224.Name = "CFrames"
  4833. Folder224.Parent = Part221
  4834. CFrameValue225.Name = "C0"
  4835. CFrameValue225.Parent = Folder224
  4836. CFrameValue225.Value = CFrame.new(0.00655031204, 5.75100708, 0.761394501, 0.98546505, 0.169723332, -0.00727678835, -0.00733313896, -0.000301621389, -0.999973297, -0.169724479, 0.985509098, 0.0009475681)
  4837. Part226.Parent = Model0
  4838. Part226.Material = Enum.Material.Metal
  4839. Part226.Rotation = Vector3.new(-2.46000004, -0.0199999996, -110.75)
  4840. Part226.Anchored = true
  4841. Part226.FormFactor = Enum.FormFactor.Custom
  4842. Part226.Size = Vector3.new(0.316868067, 0.316868067, 9.15247917)
  4843. Part226.CFrame = CFrame.new(45.6791725, 0.624415278, 142.764938, -0.354287207, 0.935146093, -0.000347463414, -0.93428427, -0.353945196, 0.0428523757, 0.0399493128, 0.0155064762, 0.999081612)
  4844. Part226.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4845. Part226.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4846. Part226.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4847. Part226.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4848. Part226.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4849. Part226.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4850. Part226.Position = Vector3.new(45.6791725, 0.624415278, 142.764938)
  4851. Part226.Orientation = Vector3.new(-2.46000004, -0.0199999996, -110.75)
  4852. SpecialMesh227.Parent = Part226
  4853. SpecialMesh227.Scale = Vector3.new(0, 0.621730983, 1)
  4854. SpecialMesh227.MeshType = Enum.MeshType.Wedge
  4855. SpecialMesh227.Scale = Vector3.new(0, 0.621730983, 1)
  4856. Folder228.Name = "CFrames"
  4857. Folder228.Parent = Part226
  4858. CFrameValue229.Name = "C0"
  4859. CFrameValue229.Parent = Folder228
  4860. CFrameValue229.Value = CFrame.new(0.073366642, 5.73587036, 0.47467041, 0.941093504, 0.338068932, -0.00727631897, 0.00716646761, 0.00156970415, 0.999973476, 0.33807677, -0.941136837, -0.000945724081)
  4861. Part230.Parent = Model0
  4862. Part230.Material = Enum.Material.Metal
  4863. Part230.Rotation = Vector3.new(178, -2.38999987, -79.2299957)
  4864. Part230.Anchored = true
  4865. Part230.FormFactor = Enum.FormFactor.Custom
  4866. Part230.Size = Vector3.new(0.316868067, 0.393357426, 9.17454052)
  4867. Part230.CFrame = CFrame.new(45.5870514, 0.659938395, 142.778656, 0.186728075, 0.981533825, -0.0417330079, 0.981512308, -0.188205153, -0.0348229259, -0.0420332886, -0.0344586968, -0.998522043)
  4868. Part230.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4869. Part230.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4870. Part230.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4871. Part230.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4872. Part230.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4873. Part230.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4874. Part230.Position = Vector3.new(45.5870514, 0.659938395, 142.778656)
  4875. Part230.Orientation = Vector3.new(2, -177.610001, 100.849998)
  4876. SpecialMesh231.Parent = Part230
  4877. SpecialMesh231.Scale = Vector3.new(0, 1, 1)
  4878. SpecialMesh231.MeshType = Enum.MeshType.Wedge
  4879. SpecialMesh231.Scale = Vector3.new(0, 1, 1)
  4880. Folder232.Name = "CFrames"
  4881. Folder232.Parent = Part230
  4882. CFrameValue233.Name = "C0"
  4883. CFrameValue233.Parent = Folder232
  4884. CFrameValue233.Value = CFrame.new(0.0399506092, 5.75097656, 0.567359924, -0.985464811, 0.169880122, -1.71363354e-07, -0.00733011961, -0.0425292924, -0.999068737, -0.169724315, -0.984564066, 0.0431572944)
  4885. Part234.Parent = Model0
  4886. Part234.Material = Enum.Material.Metal
  4887. Part234.Rotation = Vector3.new(-1.62, -0.140000001, 69.25)
  4888. Part234.Anchored = true
  4889. Part234.FormFactor = Enum.FormFactor.Custom
  4890. Part234.Size = Vector3.new(0.316868067, 0.316868067, 9.15247917)
  4891. Part234.CFrame = CFrame.new(46.6513557, 0.741348386, 142.762177, 0.354266912, -0.935150623, -0.002477156, 0.934794307, 0.354057461, 0.0283431653, -0.0256272666, -0.0123565048, 0.999595284)
  4892. Part234.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4893. Part234.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4894. Part234.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4895. Part234.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4896. Part234.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4897. Part234.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4898. Part234.Position = Vector3.new(46.6513557, 0.741348386, 142.762177)
  4899. Part234.Orientation = Vector3.new(-1.62, -0.140000001, 69.2600021)
  4900. SpecialMesh235.Parent = Part234
  4901. SpecialMesh235.Scale = Vector3.new(0, 0.621730983, 1)
  4902. SpecialMesh235.MeshType = Enum.MeshType.Wedge
  4903. SpecialMesh235.Scale = Vector3.new(0, 0.621730983, 1)
  4904. Folder236.Name = "CFrames"
  4905. Folder236.Parent = Part234
  4906. CFrameValue237.Name = "C0"
  4907. CFrameValue237.Parent = Folder236
  4908. CFrameValue237.Value = CFrame.new(-0.0603640079, 5.73588562, -0.495357513, -0.941093385, -0.338069022, 0.00727660023, 0.00716467388, 0.00158227049, 0.999973297, -0.3380768, 0.941136897, 0.000932918396)
  4909. Part238.Parent = Model0
  4910. Part238.Material = Enum.Material.Pebble
  4911. Part238.BrickColor = BrickColor.new("Black")
  4912. Part238.Rotation = Vector3.new(177.959991, 0.0799999982, 90.9899979)
  4913. Part238.Anchored = true
  4914. Part238.FormFactor = Enum.FormFactor.Custom
  4915. Part238.Size = Vector3.new(0.316868067, 0.77600342, 9.15252972)
  4916. Part238.CFrame = CFrame.new(46.1652679, 0.682848155, 142.76358, -0.0172710977, -0.999858677, 0.00141230132, -0.999218166, 0.0172103159, -0.0355987735, 0.0355685465, -0.00202614488, -0.99936527)
  4917. Part238.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4918. Part238.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4919. Part238.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4920. Part238.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4921. Part238.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4922. Part238.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4923. Part238.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4924. Part238.Position = Vector3.new(46.1652679, 0.682848155, 142.76358)
  4925. Part238.Orientation = Vector3.new(2.03999996, 179.919998, -89.0099945)
  4926. Part238.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4927. BlockMesh239.Parent = Part238
  4928. BlockMesh239.Scale = Vector3.new(0.421769053, 1, 1)
  4929. BlockMesh239.Scale = Vector3.new(0.421769053, 1, 1)
  4930. Folder240.Name = "CFrames"
  4931. Folder240.Parent = Part238
  4932. CFrameValue241.Name = "C0"
  4933. CFrameValue241.Parent = Folder240
  4934. CFrameValue241.Value = CFrame.new(0.00653576851, 5.73590088, -0.010345459, 1.00000012, -2.61541572e-07, -9.31322575e-08, -1.24052167e-06, 6.26710244e-06, -1.00000024, -2.85028364e-07, 1.00001764, 6.44847751e-06)
  4935. Part242.Parent = Model0
  4936. Part242.Material = Enum.Material.Metal
  4937. Part242.Rotation = Vector3.new(178.769989, -39.2099991, -61.9499969)
  4938. Part242.Anchored = true
  4939. Part242.FormFactor = Enum.FormFactor.Custom
  4940. Part242.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  4941. Part242.CFrame = CFrame.new(46.1573181, 0.834599257, 147.963852, 0.364397198, 0.683805525, -0.632172763, 0.875925481, -0.482159913, -0.0166385099, -0.316182584, -0.547668457, -0.774653494)
  4942. Part242.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4943. Part242.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4944. Part242.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4945. Part242.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4946. Part242.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4947. Part242.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4948. Part242.Position = Vector3.new(46.1573181, 0.834599257, 147.963852)
  4949. Part242.Orientation = Vector3.new(0.949999988, -140.779999, 118.829994)
  4950. SpecialMesh243.Parent = Part242
  4951. SpecialMesh243.Scale = Vector3.new(0, 0.468126953, 0.510637581)
  4952. SpecialMesh243.MeshType = Enum.MeshType.Wedge
  4953. SpecialMesh243.Scale = Vector3.new(0, 0.468126953, 0.510637581)
  4954. Folder244.Name = "CFrames"
  4955. Folder244.Parent = Part242
  4956. CFrameValue245.Name = "C0"
  4957. CFrameValue245.Parent = Folder244
  4958. CFrameValue245.Value = CFrame.new(0.0400102139, 10.9382935, -0.0103569031, -0.892780364, 0.45049262, -9.99309123e-06, -0.285316288, -0.565455616, -0.773857296, -0.348628283, -0.690893769, 0.633371472)
  4959. Part246.Parent = Model0
  4960. Part246.Material = Enum.Material.Pebble
  4961. Part246.BrickColor = BrickColor.new("Black")
  4962. Part246.Rotation = Vector3.new(177.959991, 0.0799999982, -89.0099945)
  4963. Part246.Anchored = true
  4964. Part246.FormFactor = Enum.FormFactor.Custom
  4965. Part246.Size = Vector3.new(0.316868067, 0.316868067, 9.15252972)
  4966. Part246.CFrame = CFrame.new(46.6502075, 0.674470544, 142.764557, 0.0172710866, 0.999858677, 0.00141236559, 0.999218166, -0.0172103029, -0.0355986841, -0.0355684496, 0.00202620635, -0.99936533)
  4967. Part246.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4968. Part246.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4969. Part246.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4970. Part246.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4971. Part246.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4972. Part246.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4973. Part246.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4974. Part246.Position = Vector3.new(46.6502075, 0.674470544, 142.764557)
  4975. Part246.Orientation = Vector3.new(2.03999996, 179.919998, 90.9899979)
  4976. Part246.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4977. SpecialMesh247.Parent = Part246
  4978. SpecialMesh247.Scale = Vector3.new(0.421769053, 0.612244904, 1)
  4979. SpecialMesh247.MeshType = Enum.MeshType.Wedge
  4980. SpecialMesh247.Scale = Vector3.new(0.421769053, 0.612244904, 1)
  4981. Folder248.Name = "CFrames"
  4982. Folder248.Parent = Part246
  4983. CFrameValue249.Name = "C0"
  4984. CFrameValue249.Parent = Folder248
  4985. CFrameValue249.Value = CFrame.new(0.00656628609, 5.73588562, -0.495365143, -1.00000012, 2.50685844e-07, -1.82539225e-07, 1.33737922e-06, -6.20516948e-06, -1.00000036, 2.96007784e-07, -1.00001764, 6.38607889e-06)
  4986. Part250.Parent = Model0
  4987. Part250.Material = Enum.Material.Metal
  4988. Part250.Rotation = Vector3.new(-10.9299994, -49.079998, 61.3400002)
  4989. Part250.Anchored = true
  4990. Part250.FormFactor = Enum.FormFactor.Custom
  4991. Part250.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  4992. Part250.CFrame = CFrame.new(46.6399612, 0.871441901, 147.351761, 0.314143777, -0.574840188, -0.755572677, 0.930286288, 0.345179856, 0.12417198, 0.1894283, -0.741900086, 0.643196344)
  4993. Part250.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4994. Part250.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4995. Part250.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4996. Part250.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4997. Part250.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4998. Part250.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4999. Part250.Position = Vector3.new(46.6399612, 0.871441901, 147.351761)
  5000. Part250.Orientation = Vector3.new(-7.12999964, -49.5900002, 69.6399994)
  5001. SpecialMesh251.Parent = Part250
  5002. SpecialMesh251.Scale = Vector3.new(0, 0.486169338, 0.399306774)
  5003. SpecialMesh251.MeshType = Enum.MeshType.Wedge
  5004. SpecialMesh251.Scale = Vector3.new(0, 0.486169338, 0.399306774)
  5005. Folder252.Name = "CFrames"
  5006. Folder252.Parent = Part250
  5007. CFrameValue253.Name = "C0"
  5008. CFrameValue253.Parent = Folder252
  5009. CFrameValue253.Value = CFrame.new(-0.0269107819, 10.3272247, -0.49105072, -0.928246558, -0.361370564, -0.0881473124, 0.221980169, -0.728325486, 0.648280442, -0.298474073, 0.582207382, 0.756295562)
  5010. Part254.Parent = Model0
  5011. Part254.Material = Enum.Material.Metal
  5012. Part254.Rotation = Vector3.new(-175.419998, 49.3400002, 64.3499985)
  5013. Part254.Anchored = true
  5014. Part254.FormFactor = Enum.FormFactor.Custom
  5015. Part254.Size = Vector3.new(0.316868067, 0.316868067, 0.631614447)
  5016. Part254.CFrame = CFrame.new(46.3512077, 0.784967601, 147.600266, 0.282076389, -0.58731091, 0.75862819, -0.924751401, -0.37700662, 0.0519752726, 0.255479366, -0.716197312, -0.64945507)
  5017. Part254.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5018. Part254.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5019. Part254.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5020. Part254.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5021. Part254.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5022. Part254.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5023. Part254.Position = Vector3.new(46.3512077, 0.784967601, 147.600266)
  5024. Part254.Orientation = Vector3.new(-2.98000002, 130.569992, -112.18)
  5025. SpecialMesh255.Parent = Part254
  5026. SpecialMesh255.Scale = Vector3.new(0, 0.486000001, 1)
  5027. SpecialMesh255.MeshType = Enum.MeshType.Wedge
  5028. SpecialMesh255.Scale = Vector3.new(0, 0.486000001, 1)
  5029. Folder256.Name = "CFrames"
  5030. Folder256.Parent = Part254
  5031. CFrameValue257.Name = "C0"
  5032. CFrameValue257.Parent = Folder256
  5033. CFrameValue257.Value = CFrame.new(0.0733220577, 10.5728912, -0.204338074, 0.928243577, 0.361380726, -0.0881375819, 0.221996307, -0.728330791, -0.648268759, -0.298470855, 0.582195222, -0.756306469)
  5034. Part258.Parent = Model0
  5035. Part258.Material = Enum.Material.Metal
  5036. Part258.Rotation = Vector3.new(-173.179993, -48.9199982, -61.3799973)
  5037. Part258.Anchored = true
  5038. Part258.FormFactor = Enum.FormFactor.Custom
  5039. Part258.Size = Vector3.new(0.316868067, 0.316868067, 0.631614983)
  5040. Part258.CFrame = CFrame.new(45.9632797, 0.791593075, 147.599487, 0.314769983, 0.576892912, -0.753745556, 0.914482951, -0.397031546, 0.0780205354, -0.2542485, -0.71383965, -0.652526498)
  5041. Part258.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5042. Part258.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5043. Part258.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5044. Part258.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5045. Part258.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5046. Part258.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5047. Part258.Position = Vector3.new(45.9632797, 0.791593075, 147.599487)
  5048. Part258.Orientation = Vector3.new(-4.46999979, -130.87999, 113.470001)
  5049. SpecialMesh259.Parent = Part258
  5050. SpecialMesh259.Scale = Vector3.new(0, 0.486169338, 1)
  5051. SpecialMesh259.MeshType = Enum.MeshType.Wedge
  5052. SpecialMesh259.Scale = Vector3.new(0, 0.486169338, 1)
  5053. Folder260.Name = "CFrames"
  5054. Folder260.Parent = Part258
  5055. CFrameValue261.Name = "C0"
  5056. CFrameValue261.Parent = Folder260
  5057. CFrameValue261.Value = CFrame.new(0.073374033, 10.5729065, 0.183654785, -0.928247571, 0.361366749, -0.0881513506, -0.221978486, -0.728339076, -0.648265481, -0.298470378, -0.582193434, 0.75630796)
  5058. Part262.Parent = Model0
  5059. Part262.Material = Enum.Material.Metal
  5060. Part262.Rotation = Vector3.new(-1.23000002, 39.2099991, -118.049995)
  5061. Part262.Anchored = true
  5062. Part262.FormFactor = Enum.FormFactor.Custom
  5063. Part262.Size = Vector3.new(0.316868067, 0.316868067, 0.743489861)
  5064. Part262.CFrame = CFrame.new(45.8711739, 0.827120245, 147.613251, -0.364400655, 0.683811307, 0.632164598, -0.87592274, -0.482164592, 0.0166446399, 0.316185743, -0.547657311, 0.77466017)
  5065. Part262.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5066. Part262.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5067. Part262.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5068. Part262.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5069. Part262.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5070. Part262.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5071. Part262.Position = Vector3.new(45.8711739, 0.827120245, 147.613251)
  5072. Part262.Orientation = Vector3.new(-0.949999988, 39.2199974, -118.829994)
  5073. SpecialMesh263.Parent = Part262
  5074. SpecialMesh263.Scale = Vector3.new(0, 0.468126953, 1)
  5075. SpecialMesh263.MeshType = Enum.MeshType.Wedge
  5076. SpecialMesh263.Scale = Vector3.new(0, 0.468126953, 1)
  5077. Folder264.Name = "CFrames"
  5078. Folder264.Parent = Part262
  5079. CFrameValue265.Name = "C0"
  5080. CFrameValue265.Parent = Folder264
  5081. CFrameValue265.Value = CFrame.new(0.0399551392, 10.5880585, 0.276332855, 0.892777801, 0.450497568, 4.24683094e-06, 0.285319567, -0.565444648, 0.77386421, 0.34863174, -0.690899611, -0.633363307)
  5082. Part266.Parent = Model0
  5083. Part266.Material = Enum.Material.Metal
  5084. Part266.Rotation = Vector3.new(-2.8499999, -39.3699989, 61.9399986)
  5085. Part266.Anchored = true
  5086. Part266.FormFactor = Enum.FormFactor.Custom
  5087. Part266.Size = Vector3.new(0.316868067, 0.316868067, 0.743489861)
  5088. Part266.CFrame = CFrame.new(46.4455948, 0.884069622, 147.61203, 0.363592893, -0.682211816, -0.634353876, 0.896237195, 0.441905677, 0.0384528488, 0.254089862, -0.582507372, 0.772090495)
  5089. Part266.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5090. Part266.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5091. Part266.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5092. Part266.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5093. Part266.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5094. Part266.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5095. Part266.Position = Vector3.new(46.4455948, 0.884069622, 147.61203)
  5096. Part266.Orientation = Vector3.new(-2.20000005, -39.4099998, 63.75)
  5097. SpecialMesh267.Parent = Part266
  5098. SpecialMesh267.Scale = Vector3.new(0, 0.468126953, 1)
  5099. SpecialMesh267.MeshType = Enum.MeshType.Wedge
  5100. SpecialMesh267.Scale = Vector3.new(0, 0.468126953, 1)
  5101. Folder268.Name = "CFrames"
  5102. Folder268.Parent = Part266
  5103. CFrameValue269.Name = "C0"
  5104. CFrameValue269.Parent = Folder268
  5105. CFrameValue269.Value = CFrame.new(-0.0269141197, 10.5880432, -0.297027588, -0.892778099, -0.450496852, -4.13507223e-06, 0.285318404, -0.565438211, 0.773869276, -0.348633587, 0.690904558, 0.63335669)
  5106. Part270.Parent = Model0
  5107. Part270.Material = Enum.Material.Metal
  5108. Part270.Rotation = Vector3.new(178.37999, 0.0299999993, -108.769997)
  5109. Part270.Anchored = true
  5110. Part270.FormFactor = Enum.FormFactor.Custom
  5111. Part270.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5112. Part270.CFrame = CFrame.new(45.678688, 0.887912512, 147.349823, -0.321783394, 0.946822584, 0.000598169398, 0.94642967, 0.321667135, -0.0283090137, -0.0269952919, -0.00854284689, -0.999599218)
  5113. Part270.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5114. Part270.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5115. Part270.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5116. Part270.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5117. Part270.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5118. Part270.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5119. Part270.Position = Vector3.new(45.678688, 0.887912512, 147.349823)
  5120. Part270.Orientation = Vector3.new(1.62, 179.970001, 71.2299957)
  5121. SpecialMesh271.Parent = Part270
  5122. SpecialMesh271.Scale = Vector3.new(0, 0.621732473, 0.0962222293)
  5123. SpecialMesh271.MeshType = Enum.MeshType.Wedge
  5124. SpecialMesh271.Scale = Vector3.new(0, 0.621732473, 0.0962222293)
  5125. Folder272.Name = "CFrames"
  5126. Folder272.Parent = Part270
  5127. CFrameValue273.Name = "C0"
  5128. CFrameValue273.Parent = Folder272
  5129. CFrameValue273.Value = CFrame.new(-0.0268354416, 10.32724, 0.470371246, -0.941092193, -0.338072121, -0.00727840886, 0.00717080384, 0.00157057121, -0.999973357, 0.338080913, -0.941135466, 0.000946398242)
  5130. Part274.Parent = Model0
  5131. Part274.Material = Enum.Material.Metal
  5132. Part274.Rotation = Vector3.new(178.769989, -39.2099991, -115.5)
  5133. Part274.Anchored = true
  5134. Part274.FormFactor = Enum.FormFactor.Custom
  5135. Part274.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5136. Part274.CFrame = CFrame.new(46.158474, 0.901368618, 147.961487, -0.333549201, 0.699376404, -0.632167161, 0.908239603, 0.418119907, -0.0166392047, 0.252682835, -0.579703629, -0.774658263)
  5137. Part274.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5138. Part274.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5139. Part274.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5140. Part274.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5141. Part274.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5142. Part274.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5143. Part274.Position = Vector3.new(46.158474, 0.901368618, 147.961487)
  5144. Part274.Orientation = Vector3.new(0.949999988, -140.779999, 65.2799988)
  5145. SpecialMesh275.Parent = Part274
  5146. SpecialMesh275.Scale = Vector3.new(0, 0.468124956, 0.510641754)
  5147. SpecialMesh275.MeshType = Enum.MeshType.Wedge
  5148. SpecialMesh275.Scale = Vector3.new(0, 0.468124956, 0.510641754)
  5149. Folder276.Name = "CFrames"
  5150. Folder276.Parent = Part274
  5151. CFrameValue277.Name = "C0"
  5152. CFrameValue277.Parent = Folder276
  5153. CFrameValue277.Value = CFrame.new(-0.0268108845, 10.9382935, -0.0103569031, -0.892780781, -0.450491518, -9.56654549e-06, 0.285328537, -0.565442979, -0.773862123, 0.348619372, -0.690903366, 0.633365929)
  5154. Part278.Parent = Model0
  5155. Part278.Material = Enum.Material.Metal
  5156. Part278.Rotation = Vector3.new(-2.8499999, -39.3699989, 115.489998)
  5157. Part278.Anchored = true
  5158. Part278.FormFactor = Enum.FormFactor.Custom
  5159. Part278.Size = Vector3.new(0.316868067, 0.316868067, 0.743488491)
  5160. Part278.CFrame = CFrame.new(46.4444466, 0.817285001, 147.614426, -0.332740188, -0.697777033, -0.634357095, 0.887926757, -0.458375186, 0.0384567641, -0.317604452, -0.550462008, 0.772087634)
  5161. Part278.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5162. Part278.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5163. Part278.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5164. Part278.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5165. Part278.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5166. Part278.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5167. Part278.Position = Vector3.new(46.4444466, 0.817285001, 147.614426)
  5168. Part278.Orientation = Vector3.new(-2.20000005, -39.4099998, 117.299995)
  5169. SpecialMesh279.Parent = Part278
  5170. SpecialMesh279.Scale = Vector3.new(0, 0.468124956, 1)
  5171. SpecialMesh279.MeshType = Enum.MeshType.Wedge
  5172. SpecialMesh279.Scale = Vector3.new(0, 0.468124956, 1)
  5173. Folder280.Name = "CFrames"
  5174. Folder280.Parent = Part278
  5175. CFrameValue281.Name = "C0"
  5176. CFrameValue281.Parent = Folder280
  5177. CFrameValue281.Value = CFrame.new(0.0399231911, 10.5880737, -0.297035217, -0.892782509, 0.450488567, -8.09505582e-06, -0.285321057, -0.565440655, 0.773866534, 0.348619968, 0.690908551, 0.633359969)
  5178. Part282.Parent = Model0
  5179. Part282.Material = Enum.Material.Metal
  5180. Part282.Rotation = Vector3.new(-8.63000011, 49.1800003, -64.3699951)
  5181. Part282.Anchored = true
  5182. Part282.FormFactor = Enum.FormFactor.Custom
  5183. Part282.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5184. Part282.CFrame = CFrame.new(45.678688, 0.887912512, 147.349823, 0.282708883, 0.589380026, 0.75678587, -0.940554798, 0.325158566, 0.0981263965, -0.188240483, -0.739532888, 0.646263838)
  5185. Part282.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5186. Part282.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5187. Part282.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5188. Part282.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5189. Part282.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5190. Part282.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5191. Part282.Position = Vector3.new(45.678688, 0.887912512, 147.349823)
  5192. Part282.Orientation = Vector3.new(-5.62999964, 49.5, -70.9300003)
  5193. SpecialMesh283.Parent = Part282
  5194. SpecialMesh283.Scale = Vector3.new(0, 0.48617366, 0.399305522)
  5195. SpecialMesh283.MeshType = Enum.MeshType.Wedge
  5196. SpecialMesh283.Scale = Vector3.new(0, 0.48617366, 0.399305522)
  5197. Folder284.Name = "CFrames"
  5198. Folder284.Parent = Part282
  5199. CFrameValue285.Name = "C0"
  5200. CFrameValue285.Parent = Folder284
  5201. CFrameValue285.Value = CFrame.new(-0.0268354416, 10.32724, 0.470371246, 0.928240955, -0.361388117, -0.0881330818, -0.222005397, -0.728324115, 0.648273289, -0.298473358, -0.582197547, -0.756303608)
  5202. Part286.Parent = Model0
  5203. Part286.Material = Enum.Material.Pebble
  5204. Part286.BrickColor = BrickColor.new("Black")
  5205. Part286.Rotation = Vector3.new(177.959991, 0.0799999982, -89.0099945)
  5206. Part286.Anchored = true
  5207. Part286.FormFactor = Enum.FormFactor.Custom
  5208. Part286.Size = Vector3.new(0.316868067, 0.38800171, 0.521646976)
  5209. Part286.CFrame = CFrame.new(46.3523903, 0.851650596, 147.597885, 0.0172710866, 0.999858677, 0.00141236559, 0.999218166, -0.0172103029, -0.0355986841, -0.0355684496, 0.00202620635, -0.99936533)
  5210. Part286.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5211. Part286.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5212. Part286.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5213. Part286.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5214. Part286.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5215. Part286.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5216. Part286.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5217. Part286.Position = Vector3.new(46.3523903, 0.851650596, 147.597885)
  5218. Part286.Orientation = Vector3.new(2.03999996, 179.919998, 90.9899979)
  5219. Part286.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5220. SpecialMesh287.Parent = Part286
  5221. SpecialMesh287.Scale = Vector3.new(0.421769053, 1, 1)
  5222. SpecialMesh287.MeshType = Enum.MeshType.Wedge
  5223. SpecialMesh287.Scale = Vector3.new(0.421769053, 1, 1)
  5224. Folder288.Name = "CFrames"
  5225. Folder288.Parent = Part286
  5226. CFrameValue289.Name = "C0"
  5227. CFrameValue289.Parent = Folder288
  5228. CFrameValue289.Value = CFrame.new(0.00658583641, 10.572876, -0.204364777, -1.00000012, 2.50685844e-07, -1.82539225e-07, 1.33737922e-06, -6.20516948e-06, -1.00000036, 2.96007784e-07, -1.00001764, 6.38607889e-06)
  5229. Part290.Parent = Model0
  5230. Part290.Material = Enum.Material.Pebble
  5231. Part290.BrickColor = BrickColor.new("Black")
  5232. Part290.Rotation = Vector3.new(177.959991, 0.0799999982, 90.9899979)
  5233. Part290.Anchored = true
  5234. Part290.FormFactor = Enum.FormFactor.Custom
  5235. Part290.Size = Vector3.new(0.316868067, 0.38800171, 0.521646976)
  5236. Part290.CFrame = CFrame.new(45.9644089, 0.858327568, 147.597107, -0.0172710977, -0.999858677, 0.00141230132, -0.999218166, 0.0172103159, -0.0355987735, 0.0355685465, -0.00202614488, -0.99936527)
  5237. Part290.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5238. Part290.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5239. Part290.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5240. Part290.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5241. Part290.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5242. Part290.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5243. Part290.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5244. Part290.Position = Vector3.new(45.9644089, 0.858327568, 147.597107)
  5245. Part290.Orientation = Vector3.new(2.03999996, 179.919998, -89.0099945)
  5246. Part290.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5247. SpecialMesh291.Parent = Part290
  5248. SpecialMesh291.Scale = Vector3.new(0.421769053, 1, 1)
  5249. SpecialMesh291.MeshType = Enum.MeshType.Wedge
  5250. SpecialMesh291.Scale = Vector3.new(0.421769053, 1, 1)
  5251. Folder292.Name = "CFrames"
  5252. Folder292.Parent = Part290
  5253. CFrameValue293.Name = "C0"
  5254. CFrameValue293.Parent = Folder292
  5255. CFrameValue293.Value = CFrame.new(0.00658726692, 10.5728912, 0.183677673, 1.00000012, -2.61541572e-07, -9.31322575e-08, -1.24052167e-06, 6.26710244e-06, -1.00000024, -2.85028364e-07, 1.00001764, 6.44847751e-06)
  5256. Part294.Parent = Model0
  5257. Part294.Material = Enum.Material.Metal
  5258. Part294.Rotation = Vector3.new(177.149994, 39.3699989, 118.059998)
  5259. Part294.Anchored = true
  5260. Part294.FormFactor = Enum.FormFactor.Custom
  5261. Part294.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5262. Part294.CFrame = CFrame.new(46.1584435, 0.901474953, 147.961487, -0.363589376, -0.682206094, 0.634362102, -0.896239698, 0.441900402, -0.0384584554, -0.254086584, -0.582518101, -0.772083461)
  5263. Part294.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5264. Part294.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5265. Part294.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5266. Part294.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5267. Part294.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5268. Part294.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5269. Part294.Position = Vector3.new(46.1584435, 0.901474953, 147.961487)
  5270. Part294.Orientation = Vector3.new(2.20000005, 140.589996, -63.75)
  5271. SpecialMesh295.Parent = Part294
  5272. SpecialMesh295.Scale = Vector3.new(0, 0.468126953, 0.510637581)
  5273. SpecialMesh295.MeshType = Enum.MeshType.Wedge
  5274. SpecialMesh295.Scale = Vector3.new(0, 0.468126953, 0.510637581)
  5275. Folder296.Name = "CFrames"
  5276. Folder296.Parent = Part294
  5277. CFrameValue297.Name = "C0"
  5278. CFrameValue297.Parent = Folder296
  5279. CFrameValue297.Value = CFrame.new(-0.0269165039, 10.9383087, -0.0103263855, 0.892780662, -0.450492084, 9.84407961e-06, -0.285315216, -0.565449119, -0.773862422, 0.348630041, 0.690898776, -0.633364975)
  5280. Part298.Parent = Model0
  5281. Part298.Material = Enum.Material.Metal
  5282. Part298.Rotation = Vector3.new(177.539993, 0.0199999996, -69.25)
  5283. Part298.Anchored = true
  5284. Part298.FormFactor = Enum.FormFactor.Custom
  5285. Part298.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5286. Part298.CFrame = CFrame.new(45.6775513, 0.82118094, 147.352173, 0.354287177, 0.935146213, 0.000347635243, 0.93428427, -0.353945196, -0.0428519249, -0.0399488397, 0.0155064762, -0.999081552)
  5287. Part298.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5288. Part298.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5289. Part298.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5290. Part298.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5291. Part298.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5292. Part298.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5293. Part298.Position = Vector3.new(45.6775513, 0.82118094, 147.352173)
  5294. Part298.Orientation = Vector3.new(2.46000004, 179.979996, 110.75)
  5295. SpecialMesh299.Parent = Part298
  5296. SpecialMesh299.Scale = Vector3.new(0, 0.621730983, 0.0962222293)
  5297. SpecialMesh299.MeshType = Enum.MeshType.Wedge
  5298. SpecialMesh299.Scale = Vector3.new(0, 0.621730983, 0.0962222293)
  5299. Folder300.Name = "CFrames"
  5300. Folder300.Parent = Part298
  5301. CFrameValue301.Name = "C0"
  5302. CFrameValue301.Parent = Folder300
  5303. CFrameValue301.Value = CFrame.new(0.0399475098, 10.3271942, 0.470355988, -0.941093504, 0.338068932, 0.00727586448, -0.0071659945, 0.00156970415, -0.999973416, -0.33807677, -0.941136956, 0.000945559819)
  5304. Part302.Parent = Model0
  5305. Part302.Material = Enum.Material.Metal
  5306. Part302.Rotation = Vector3.new(178.37999, 0.140000001, 110.75)
  5307. Part302.Anchored = true
  5308. Part302.FormFactor = Enum.FormFactor.Custom
  5309. Part302.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5310. Part302.CFrame = CFrame.new(46.6399612, 0.871441901, 147.351761, -0.354266882, -0.935150623, 0.00247694738, -0.934794486, 0.354057401, -0.0283437185, 0.0256278645, -0.0123565048, -0.999595284)
  5311. Part302.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5312. Part302.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5313. Part302.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5314. Part302.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5315. Part302.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5316. Part302.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5317. Part302.Position = Vector3.new(46.6399612, 0.871441901, 147.351761)
  5318. Part302.Orientation = Vector3.new(1.62, 179.860001, -69.2600021)
  5319. SpecialMesh303.Parent = Part302
  5320. SpecialMesh303.Scale = Vector3.new(0, 0.621730983, 0.0962222293)
  5321. SpecialMesh303.MeshType = Enum.MeshType.Wedge
  5322. SpecialMesh303.Scale = Vector3.new(0, 0.621730983, 0.0962222293)
  5323. Folder304.Name = "CFrames"
  5324. Folder304.Parent = Part302
  5325. CFrameValue305.Name = "C0"
  5326. CFrameValue305.Parent = Folder304
  5327. CFrameValue305.Value = CFrame.new(-0.0269107819, 10.3272247, -0.49105072, 0.941093564, -0.338068962, -0.0072760433, -0.0071640797, 0.00158226863, -0.999973357, 0.33807677, 0.941136897, -0.000932719326)
  5328. Part306.Parent = Model0
  5329. Part306.Material = Enum.Material.Metal
  5330. Part306.Rotation = Vector3.new(-1.23000002, 39.2099991, -64.5)
  5331. Part306.Anchored = true
  5332. Part306.FormFactor = Enum.FormFactor.Custom
  5333. Part306.Size = Vector3.new(0.316868067, 0.316868067, 0.743488491)
  5334. Part306.CFrame = CFrame.new(45.8722992, 0.893850565, 147.610886, 0.333549917, 0.69937551, 0.632167757, -0.908239484, 0.418120146, 0.0166405253, -0.252682269, -0.579704583, 0.774657667)
  5335. Part306.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5336. Part306.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5337. Part306.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5338. Part306.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5339. Part306.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5340. Part306.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5341. Part306.Position = Vector3.new(45.8722992, 0.893850565, 147.610886)
  5342. Part306.Orientation = Vector3.new(-0.949999988, 39.2199974, -65.2799988)
  5343. SpecialMesh307.Parent = Part306
  5344. SpecialMesh307.Scale = Vector3.new(0, 0.468124956, 1)
  5345. SpecialMesh307.MeshType = Enum.MeshType.Wedge
  5346. SpecialMesh307.Scale = Vector3.new(0, 0.468124956, 1)
  5347. Folder308.Name = "CFrames"
  5348. Folder308.Parent = Part306
  5349. CFrameValue309.Name = "C0"
  5350. CFrameValue309.Parent = Folder308
  5351. CFrameValue309.Value = CFrame.new(-0.0268268585, 10.5880737, 0.276359558, 0.892780662, -0.450491786, 8.21426511e-06, -0.285327971, -0.565443933, 0.773861587, -0.348620087, -0.690902472, -0.633366466)
  5352. Part310.Parent = Model0
  5353. Part310.Material = Enum.Material.Metal
  5354. Part310.Rotation = Vector3.new(169.069992, 49.079998, 118.659996)
  5355. Part310.Anchored = true
  5356. Part310.FormFactor = Enum.FormFactor.Custom
  5357. Part310.Size = Vector3.new(0.316868067, 0.316868067, 0.631614983)
  5358. Part310.CFrame = CFrame.new(46.3535156, 0.918518782, 147.595535, -0.314141601, -0.574831545, 0.755580127, -0.93028754, 0.345174909, -0.124176271, -0.189425796, -0.741909027, -0.643186688)
  5359. Part310.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5360. Part310.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5361. Part310.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5362. Part310.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5363. Part310.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5364. Part310.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5365. Part310.Position = Vector3.new(46.3535156, 0.918518782, 147.595535)
  5366. Part310.Orientation = Vector3.new(7.12999964, 130.410004, -69.6399994)
  5367. SpecialMesh311.Parent = Part310
  5368. SpecialMesh311.Scale = Vector3.new(0, 0.486169338, 1)
  5369. SpecialMesh311.MeshType = Enum.MeshType.Wedge
  5370. SpecialMesh311.Scale = Vector3.new(0, 0.486169338, 1)
  5371. Folder312.Name = "CFrames"
  5372. Folder312.Parent = Part310
  5373. CFrameValue313.Name = "C0"
  5374. CFrameValue313.Parent = Folder312
  5375. CFrameValue313.Value = CFrame.new(-0.0603327751, 10.5729065, -0.204334259, 0.928247869, -0.361366093, 0.0881518126, -0.221977711, -0.728334546, -0.648270965, 0.298471868, 0.582198679, -0.756303132)
  5376. Part314.Parent = Model0
  5377. Part314.Material = Enum.Material.Metal
  5378. Part314.Rotation = Vector3.new(177.149994, 39.3699989, 64.5100021)
  5379. Part314.Anchored = true
  5380. Part314.FormFactor = Enum.FormFactor.Custom
  5381. Part314.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5382. Part314.CFrame = CFrame.new(46.1572914, 0.834698617, 147.963852, 0.332739562, -0.697777987, 0.63435638, -0.887926817, -0.458374828, -0.0384581126, 0.317604959, -0.550460935, -0.77208817)
  5383. Part314.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5384. Part314.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5385. Part314.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5386. Part314.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5387. Part314.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5388. Part314.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5389. Part314.Position = Vector3.new(46.1572914, 0.834698617, 147.963852)
  5390. Part314.Orientation = Vector3.new(2.20000005, 140.589996, -117.299995)
  5391. SpecialMesh315.Parent = Part314
  5392. SpecialMesh315.Scale = Vector3.new(0, 0.468124956, 0.510641754)
  5393. SpecialMesh315.MeshType = Enum.MeshType.Wedge
  5394. SpecialMesh315.Scale = Vector3.new(0, 0.468124956, 0.510641754)
  5395. Folder316.Name = "CFrames"
  5396. Folder316.Parent = Part314
  5397. CFrameValue317.Name = "C0"
  5398. CFrameValue317.Parent = Folder316
  5399. CFrameValue317.Value = CFrame.new(0.0399112701, 10.9382935, -0.0103263855, 0.892782569, 0.450488269, 9.43429768e-06, 0.285321534, -0.565439582, -0.77386713, -0.348619342, 0.690909505, -0.633359253)
  5400. Part318.Parent = Model0
  5401. Part318.Material = Enum.Material.Metal
  5402. Part318.Rotation = Vector3.new(4.57999992, -49.3400002, 115.649994)
  5403. Part318.Anchored = true
  5404. Part318.FormFactor = Enum.FormFactor.Custom
  5405. Part318.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5406. Part318.CFrame = CFrame.new(46.6388092, 0.804672241, 147.354111, -0.282078862, -0.587318182, -0.758621633, 0.924749851, -0.377010852, -0.0519713163, -0.255482048, -0.716189146, 0.649463177)
  5407. Part318.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5408. Part318.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5409. Part318.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5410. Part318.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5411. Part318.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5412. Part318.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5413. Part318.Position = Vector3.new(46.6388092, 0.804672241, 147.354111)
  5414. Part318.Orientation = Vector3.new(2.98000002, -49.4300003, 112.18)
  5415. SpecialMesh319.Parent = Part318
  5416. SpecialMesh319.Scale = Vector3.new(0, 0.48617366, 0.399305522)
  5417. SpecialMesh319.MeshType = Enum.MeshType.Wedge
  5418. SpecialMesh319.Scale = Vector3.new(0, 0.48617366, 0.399305522)
  5419. Folder320.Name = "CFrames"
  5420. Folder320.Parent = Part318
  5421. CFrameValue321.Name = "C0"
  5422. CFrameValue321.Parent = Folder320
  5423. CFrameValue321.Value = CFrame.new(0.0399098396, 10.327179, -0.491054535, -0.928242087, 0.361385345, 0.0881337896, -0.221999049, -0.728322744, 0.648276985, 0.298473299, 0.582202435, 0.756299973)
  5424. Part322.Parent = Model0
  5425. Part322.Material = Enum.Material.Metal
  5426. Part322.Rotation = Vector3.new(177.539993, 0.129999995, 71.2299957)
  5427. Part322.Anchored = true
  5428. Part322.FormFactor = Enum.FormFactor.Custom
  5429. Part322.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5430. Part322.CFrame = CFrame.new(46.6388092, 0.804672241, 147.354111, 0.321763009, -0.946827114, 0.0022263038, -0.945919394, -0.32155478, -0.0428866185, 0.0413212292, 0.0116929989, -0.999077559)
  5431. Part322.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5432. Part322.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5433. Part322.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5434. Part322.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5435. Part322.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5436. Part322.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5437. Part322.Position = Vector3.new(46.6388092, 0.804672241, 147.354111)
  5438. Part322.Orientation = Vector3.new(2.46000004, 179.869995, -108.769997)
  5439. SpecialMesh323.Parent = Part322
  5440. SpecialMesh323.Scale = Vector3.new(0, 0.621732473, 0.0962222293)
  5441. SpecialMesh323.MeshType = Enum.MeshType.Wedge
  5442. SpecialMesh323.Scale = Vector3.new(0, 0.621732473, 0.0962222293)
  5443. Folder324.Name = "CFrames"
  5444. Folder324.Parent = Part322
  5445. CFrameValue325.Name = "C0"
  5446. CFrameValue325.Parent = Folder324
  5447. CFrameValue325.Value = CFrame.new(0.0399098396, 10.327179, -0.491054535, 0.941092253, 0.338071972, 0.00727823004, 0.00716423616, 0.0015815869, -0.999973357, -0.338080883, 0.941135466, -0.000933448086)
  5448. Part326.Parent = Model0
  5449. Part326.Material = Enum.Material.Pebble
  5450. Part326.BrickColor = BrickColor.new("Black")
  5451. Part326.Rotation = Vector3.new(177.959991, 0.0799999982, 90.9899979)
  5452. Part326.Anchored = true
  5453. Part326.FormFactor = Enum.FormFactor.Custom
  5454. Part326.Size = Vector3.new(0.316868067, 0.316868067, 9.15252972)
  5455. Part326.CFrame = CFrame.new(45.6803131, 0.691180348, 142.762589, -0.0172710977, -0.999858677, 0.00141230132, -0.999218166, 0.0172103159, -0.0355987735, 0.0355685465, -0.00202614488, -0.99936527)
  5456. Part326.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5457. Part326.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5458. Part326.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5459. Part326.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5460. Part326.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5461. Part326.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5462. Part326.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5463. Part326.Position = Vector3.new(45.6803131, 0.691180348, 142.762589)
  5464. Part326.Orientation = Vector3.new(2.03999996, 179.919998, -89.0099945)
  5465. Part326.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5466. SpecialMesh327.Parent = Part326
  5467. SpecialMesh327.Scale = Vector3.new(0.421769053, 0.612244904, 1)
  5468. SpecialMesh327.MeshType = Enum.MeshType.Wedge
  5469. SpecialMesh327.Scale = Vector3.new(0.421769053, 0.612244904, 1)
  5470. Folder328.Name = "CFrames"
  5471. Folder328.Parent = Part326
  5472. CFrameValue329.Name = "C0"
  5473. CFrameValue329.Parent = Folder328
  5474. CFrameValue329.Value = CFrame.new(0.00655055046, 5.73590088, 0.474681854, 1.00000012, -2.61541572e-07, -9.31322575e-08, -1.24052167e-06, 6.26710244e-06, -1.00000024, -2.85028364e-07, 1.00001764, 6.44847751e-06)
  5475. Part330.Parent = Model0
  5476. Part330.Material = Enum.Material.Metal
  5477. Part330.Rotation = Vector3.new(171.369995, -49.1800003, -115.629997)
  5478. Part330.Anchored = true
  5479. Part330.FormFactor = Enum.FormFactor.Custom
  5480. Part330.Size = Vector3.new(0.316868067, 0.316868067, 0.631614447)
  5481. Part330.CFrame = CFrame.new(45.96558, 0.925104201, 147.594742, -0.282706469, 0.589372575, -0.756792545, 0.94055599, 0.325153828, -0.0981299281, 0.188237682, -0.739540875, -0.646255493)
  5482. Part330.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5483. Part330.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5484. Part330.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5485. Part330.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5486. Part330.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5487. Part330.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5488. Part330.Position = Vector3.new(45.96558, 0.925104201, 147.594742)
  5489. Part330.Orientation = Vector3.new(5.62999964, -130.5, 70.9300003)
  5490. SpecialMesh331.Parent = Part330
  5491. SpecialMesh331.Scale = Vector3.new(0, 0.48617366, 1)
  5492. SpecialMesh331.MeshType = Enum.MeshType.Wedge
  5493. SpecialMesh331.Scale = Vector3.new(0, 0.48617366, 1)
  5494. Folder332.Name = "CFrames"
  5495. Folder332.Parent = Part330
  5496. CFrameValue333.Name = "C0"
  5497. CFrameValue333.Parent = Folder332
  5498. CFrameValue333.Value = CFrame.new(-0.0602412224, 10.5729065, 0.183662415, -0.928242326, -0.361383498, 0.0881370232, 0.222002625, -0.728332281, -0.648265064, 0.298470974, -0.582190216, 0.756310225)
  5499. Part334.Parent = Model0
  5500. Part334.Material = Enum.Material.Metal
  5501. Part334.Rotation = Vector3.new(-1.62, -0.0299999993, -71.2299957)
  5502. Part334.Anchored = true
  5503. Part334.FormFactor = Enum.FormFactor.Custom
  5504. Part334.Size = Vector3.new(0.316868067, 0.316868067, 9.15247917)
  5505. Part334.CFrame = CFrame.new(45.6814804, 0.757968128, 142.760223, 0.321783036, 0.946822703, -0.000598755199, -0.94642967, 0.321666807, 0.028310366, 0.0269967597, -0.0085427165, 0.999599218)
  5506. Part334.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5507. Part334.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5508. Part334.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5509. Part334.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5510. Part334.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5511. Part334.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5512. Part334.Position = Vector3.new(45.6814804, 0.757968128, 142.760223)
  5513. Part334.Orientation = Vector3.new(-1.62, -0.0299999993, -71.2299957)
  5514. SpecialMesh335.Parent = Part334
  5515. SpecialMesh335.Scale = Vector3.new(0, 0.621732473, 1)
  5516. SpecialMesh335.MeshType = Enum.MeshType.Wedge
  5517. SpecialMesh335.Scale = Vector3.new(0, 0.621732473, 1)
  5518. Folder336.Name = "CFrames"
  5519. Folder336.Parent = Part334
  5520. CFrameValue337.Name = "C0"
  5521. CFrameValue337.Parent = Folder336
  5522. CFrameValue337.Value = CFrame.new(-0.0602891445, 5.73591614, 0.47467041, 0.941092193, -0.338071793, 0.00727706961, -0.00716933794, 0.00157069042, 0.999973416, -0.338080555, -0.941135585, -0.000945789274)
  5523. Part338.Parent = Model0
  5524. Part338.Material = Enum.Material.Metal
  5525. Part338.BrickColor = BrickColor.new("Black")
  5526. Part338.Rotation = Vector3.new(-1.04999995, 44.9099998, 88.5999985)
  5527. Part338.Anchored = true
  5528. Part338.FormFactor = Enum.FormFactor.Custom
  5529. Part338.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5530. Part338.CFrame = CFrame.new(45.6487999, 0.549543679, 138.705826, 0.0172700547, -0.70800215, 0.706011534, 0.999218106, 0.0373395383, 0.0130016981, -0.035566479, 0.705228806, 0.708087325)
  5531. Part338.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5532. Part338.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5533. Part338.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5534. Part338.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5535. Part338.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5536. Part338.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5537. Part338.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5538. Part338.Position = Vector3.new(45.6487999, 0.549543679, 138.705826)
  5539. Part338.Orientation = Vector3.new(-0.74000001, 44.9199982, 87.8600006)
  5540. Part338.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5541. BlockMesh339.Parent = Part338
  5542. BlockMesh339.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5543. BlockMesh339.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5544. Folder340.Name = "CFrames"
  5545. Folder340.Parent = Part338
  5546. CFrameValue341.Name = "C0"
  5547. CFrameValue341.Parent = Folder340
  5548. CFrameValue341.Value = CFrame.new(0.00432515144, 1.67671204, 0.512001038, -0.99999994, 2.07312405e-06, 9.79751348e-07, 3.30433249e-06, 0.707114875, 0.707099199, 1.32391142e-06, 0.707111299, -0.707127154)
  5549. Part342.Parent = Model0
  5550. Part342.Material = Enum.Material.Metal
  5551. Part342.BrickColor = BrickColor.new("Black")
  5552. Part342.Rotation = Vector3.new(-3.75999999, -60.0699997, -91.9799957)
  5553. Part342.Anchored = true
  5554. Part342.FormFactor = Enum.FormFactor.Custom
  5555. Part342.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5556. Part342.CFrame = CFrame.new(46.5224266, 0.538588107, 138.822189, -0.0172702409, 0.498694301, -0.86661613, -0.999218106, 0.0222266428, 0.0327037647, 0.0355702564, 0.866495728, 0.497915924)
  5557. Part342.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5558. Part342.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5559. Part342.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5560. Part342.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5561. Part342.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5562. Part342.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5563. Part342.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5564. Part342.Position = Vector3.new(46.5224266, 0.538588107, 138.822189)
  5565. Part342.Orientation = Vector3.new(-1.87, -60.1199989, -88.7299957)
  5566. Part342.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5567. BlockMesh343.Parent = Part342
  5568. BlockMesh343.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5569. BlockMesh343.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5570. Folder344.Name = "CFrames"
  5571. Folder344.Parent = Part342
  5572. CFrameValue345.Name = "C0"
  5573. CFrameValue345.Parent = Folder344
  5574. CFrameValue345.Value = CFrame.new(0.00432252884, 1.79136658, -0.361927032, 1.00000012, -1.69314444e-06, -2.96160579e-07, 4.69386578e-07, 0.866029561, 0.499993533, -1.14532304e-06, -0.500002444, 0.866044402)
  5575. Part346.Parent = Model0
  5576. Part346.Material = Enum.Material.Metal
  5577. Part346.BrickColor = BrickColor.new("Black")
  5578. Part346.Rotation = Vector3.new(-0.329999983, 59.9099998, 88.0299988)
  5579. Part346.Anchored = true
  5580. Part346.FormFactor = Enum.FormFactor.Custom
  5581. Part346.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5582. Part346.CFrame = CFrame.new(45.7986488, 0.551043391, 138.821152, 0.0172701981, -0.501147628, 0.865199745, 0.999218225, 0.0394326486, 0.00289448164, -0.0355667919, 0.864465654, 0.501432478)
  5583. Part346.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5584. Part346.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5585. Part346.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5586. Part346.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5587. Part346.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5588. Part346.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5589. Part346.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5590. Part346.Position = Vector3.new(45.7986488, 0.551043391, 138.821152)
  5591. Part346.Orientation = Vector3.new(-0.170000002, 59.9099998, 87.7399979)
  5592. Part346.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5593. BlockMesh347.Parent = Part346
  5594. BlockMesh347.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5595. BlockMesh347.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5596. Folder348.Name = "CFrames"
  5597. Folder348.Parent = Part346
  5598. CFrameValue349.Name = "C0"
  5599. CFrameValue349.Parent = Folder348
  5600. CFrameValue349.Value = CFrame.new(0.00434017181, 1.79180908, 0.361961365, -1.00000012, 1.92224979e-06, 3.85567546e-07, 2.9951334e-06, 0.866031647, 0.499989808, 1.1829834e-06, 0.499998391, -0.866046786)
  5601. Part350.Parent = Model0
  5602. Part350.Material = Enum.Material.Metal
  5603. Part350.BrickColor = BrickColor.new("Black")
  5604. Part350.Rotation = Vector3.new(178.949997, -44.9099998, 91.4000015)
  5605. Part350.Anchored = true
  5606. Part350.FormFactor = Enum.FormFactor.Custom
  5607. Part350.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  5608. Part350.CFrame = CFrame.new(45.9213982, 0.541616082, 138.49411, -0.0172714479, -0.708024263, -0.705989361, -0.999217987, 0.0373425111, -0.0130043048, 0.0355698988, 0.705206394, -0.708109438)
  5609. Part350.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5610. Part350.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5611. Part350.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5612. Part350.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5613. Part350.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5614. Part350.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5615. Part350.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5616. Part350.Position = Vector3.new(45.9213982, 0.541616082, 138.49411)
  5617. Part350.Orientation = Vector3.new(0.75, -135.089996, -87.8600006)
  5618. Part350.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5619. BlockMesh351.Parent = Part350
  5620. BlockMesh351.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  5621. BlockMesh351.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  5622. Folder352.Name = "CFrames"
  5623. Folder352.Parent = Part350
  5624. CFrameValue353.Name = "C0"
  5625. CFrameValue353.Parent = Folder352
  5626. CFrameValue353.Value = CFrame.new(7.62939453e-06, 1.46446228, 0.23973465, 1, -1.31130219e-06, 4.58210707e-07, 1.15483999e-07, 0.707092583, -0.707121372, 6.42612576e-08, 0.707133532, 0.707104921)
  5627. Part354.Parent = Model0
  5628. Part354.Material = Enum.Material.Metal
  5629. Part354.BrickColor = BrickColor.new("Black")
  5630. Part354.Rotation = Vector3.new(-1.46999991, 29.9099998, 88.8600006)
  5631. Part354.Anchored = true
  5632. Part354.FormFactor = Enum.FormFactor.Custom
  5633. Part354.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5634. Part354.CFrame = CFrame.new(45.5339127, 0.546178222, 138.555634, 0.0172697622, -0.866604924, 0.498713821, 0.999218106, 0.0327018723, 0.0222227164, -0.0355663076, 0.497935623, 0.866484642)
  5635. Part354.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5636. Part354.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5637. Part354.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5638. Part354.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5639. Part354.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5640. Part354.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5641. Part354.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5642. Part354.Position = Vector3.new(45.5339127, 0.546178222, 138.555634)
  5643. Part354.Orientation = Vector3.new(-1.26999998, 29.9200001, 88.1299973)
  5644. Part354.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5645. BlockMesh355.Parent = Part354
  5646. BlockMesh355.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5647. BlockMesh355.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5648. Folder356.Name = "CFrames"
  5649. Folder356.Parent = Part354
  5650. CFrameValue357.Name = "C0"
  5651. CFrameValue357.Parent = Folder356
  5652. CFrameValue357.Value = CFrame.new(0.0043296814, 1.5266571, 0.627120972, -0.99999994, 2.10292637e-06, 1.49942935e-06, 3.47569585e-06, 0.500013173, 0.866018295, 1.61599746e-06, 0.866033137, -0.500021994)
  5653. Part358.Parent = Model0
  5654. Part358.Material = Enum.Material.Metal
  5655. Part358.Rotation = Vector3.new(177.919998, 2.54999995, 100.769997)
  5656. Part358.Anchored = true
  5657. Part358.FormFactor = Enum.FormFactor.Custom
  5658. Part358.Size = Vector3.new(0.316868067, 0.393357426, 9.17454052)
  5659. Part358.CFrame = CFrame.new(46.7434196, 0.706905723, 142.778625, -0.186707348, -0.981413782, 0.04455515, -0.982034326, 0.185177594, -0.0363083407, 0.0273820739, -0.0505333059, -0.998347044)
  5660. Part358.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5661. Part358.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5662. Part358.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5663. Part358.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5664. Part358.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5665. Part358.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5666. Part358.Position = Vector3.new(46.7434196, 0.706905723, 142.778625)
  5667. Part358.Orientation = Vector3.new(2.07999992, 177.440002, -79.3199997)
  5668. SpecialMesh359.Parent = Part358
  5669. SpecialMesh359.Scale = Vector3.new(0, 1, 1)
  5670. SpecialMesh359.MeshType = Enum.MeshType.Wedge
  5671. SpecialMesh359.Scale = Vector3.new(0, 1, 1)
  5672. Folder360.Name = "CFrames"
  5673. Folder360.Parent = Part358
  5674. CFrameValue361.Name = "C0"
  5675. CFrameValue361.Parent = Folder360
  5676. CFrameValue361.Value = CFrame.new(-0.0269532204, 5.75097656, -0.588039398, 0.985464931, -0.169880092, 1.11758709e-08, -0.00733041018, -0.0425167158, -0.999069154, 0.16972439, 0.984564662, -0.04314458)
  5677. Part362.Parent = Model0
  5678. Part362.Material = Enum.Material.Metal
  5679. Part362.BrickColor = BrickColor.new("Black")
  5680. Part362.Rotation = Vector3.new(-96.7699966, -89.0400009, 175.269989)
  5681. Part362.Anchored = true
  5682. Part362.FormFactor = Enum.FormFactor.Custom
  5683. Part362.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5684. Part362.CFrame = CFrame.new(46.1601067, 0.548276722, 138.918411, -0.0172709133, -0.00142910238, -0.999858558, -0.999218047, 0.0356007814, 0.0172095317, 0.0355702713, 0.999365151, -0.00204295898)
  5685. Part362.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5686. Part362.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5687. Part362.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5688. Part362.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5689. Part362.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5690. Part362.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5691. Part362.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5692. Part362.Position = Vector3.new(46.1601067, 0.548276722, 138.918411)
  5693. Part362.Orientation = Vector3.new(-0.98999995, -90.1199951, -87.9599991)
  5694. Part362.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5695. BlockMesh363.Parent = Part362
  5696. BlockMesh363.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5697. BlockMesh363.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5698. Folder364.Name = "CFrames"
  5699. Folder364.Parent = Part362
  5700. CFrameValue365.Name = "C0"
  5701. CFrameValue365.Parent = Folder364
  5702. CFrameValue365.Value = CFrame.new(0.00432133675, 1.88839722, 0.000312805176, 1, -1.62795186e-06, -7.72924977e-08, 4.84287739e-07, 1.00000024, -1.05646905e-05, -4.710746e-07, 1.03849452e-05, 1.00001752)
  5703. Part366.Parent = Model0
  5704. Part366.Material = Enum.Material.Metal
  5705. Part366.BrickColor = BrickColor.new("Black")
  5706. Part366.Rotation = Vector3.new(-5.75, -75.0499954, -93.8399963)
  5707. Part366.Anchored = true
  5708. Part366.FormFactor = Enum.FormFactor.Custom
  5709. Part366.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5710. Part366.CFrame = CFrame.new(46.3476143, 0.544177711, 138.89415, -0.0172709133, 0.257399857, -0.966159761, -0.999218047, 0.0299336184, 0.0258372203, 0.0355702713, 0.965842068, 0.256679147)
  5711. Part366.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5712. Part366.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5713. Part366.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5714. Part366.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5715. Part366.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5716. Part366.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5717. Part366.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5718. Part366.Position = Vector3.new(46.3476143, 0.544177711, 138.89415)
  5719. Part366.Orientation = Vector3.new(-1.48000002, -75.1199951, -88.2799988)
  5720. Part366.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5721. BlockMesh367.Parent = Part366
  5722. BlockMesh367.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5723. BlockMesh367.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5724. Folder368.Name = "CFrames"
  5725. Folder368.Parent = Part366
  5726. CFrameValue369.Name = "C0"
  5727. CFrameValue369.Parent = Folder368
  5728. CFrameValue369.Value = CFrame.new(0.00431609154, 1.86373901, -0.18719101, 1, -1.54972076e-06, -4.9546361e-07, 4.84287739e-07, 0.965929508, 0.258806646, -4.710746e-07, -0.258811384, 0.965946078)
  5729. Part370.Parent = Model0
  5730. Part370.Material = Enum.Material.Metal
  5731. Part370.BrickColor = BrickColor.new("Black")
  5732. Part370.Rotation = Vector3.new(-1.27999997, 37.3099976, 88.7599945)
  5733. Part370.Anchored = true
  5734. Part370.FormFactor = Enum.FormFactor.Custom
  5735. Part370.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5736. Part370.CFrame = CFrame.new(45.5849876, 0.54815793, 138.636063, 0.0172699951, -0.79515624, 0.606173217, 0.999218225, 0.0352916047, 0.0178253986, -0.0355659239, 0.605385959, 0.795137167)
  5737. Part370.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5738. Part370.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5739. Part370.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5740. Part370.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5741. Part370.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5742. Part370.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5743. Part370.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5744. Part370.Position = Vector3.new(45.5849876, 0.54815793, 138.636063)
  5745. Part370.Orientation = Vector3.new(-1.01999998, 37.3199997, 87.9799957)
  5746. Part370.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5747. BlockMesh371.Parent = Part370
  5748. BlockMesh371.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5749. BlockMesh371.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5750. Folder372.Name = "CFrames"
  5751. Folder372.Parent = Part370
  5752. CFrameValue373.Name = "C0"
  5753. CFrameValue373.Parent = Folder372
  5754. CFrameValue373.Value = CFrame.new(0.00433039665, 1.60704041, 0.575920105, -1.00000012, 2.3227185e-06, 1.66147947e-06, 3.86312604e-06, 0.607386112, 0.794407129, 1.38425094e-06, 0.794420779, -0.607396841)
  5755. Part374.Parent = Model0
  5756. Part374.Material = Enum.Material.Metal
  5757. Part374.BrickColor = BrickColor.new("Black")
  5758. Part374.Rotation = Vector3.new(-0.75999999, 52.3099976, 88.3799973)
  5759. Part374.Anchored = true
  5760. Part374.FormFactor = Enum.FormFactor.Custom
  5761. Part374.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5762. Part374.CFrame = CFrame.new(45.7188148, 0.55062747, 138.770416, 0.0172703434, -0.611173987, 0.791318953, 0.999218106, 0.0387030803, 0.00808386132, -0.035566248, 0.79055351, 0.611359417)
  5763. Part374.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5764. Part374.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5765. Part374.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5766. Part374.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5767. Part374.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5768. Part374.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5769. Part374.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5770. Part374.Position = Vector3.new(45.7188148, 0.55062747, 138.770416)
  5771. Part374.Orientation = Vector3.new(-0.459999979, 52.3099976, 87.7799988)
  5772. Part374.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5773. BlockMesh375.Parent = Part374
  5774. BlockMesh375.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5775. BlockMesh375.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5776. Folder376.Name = "CFrames"
  5777. Folder376.Parent = Part374
  5778. CFrameValue377.Name = "C0"
  5779. CFrameValue377.Parent = Folder376
  5780. CFrameValue377.Value = CFrame.new(0.00433015823, 1.74119568, 0.441879272, -0.99999994, 2.19978392e-06, 1.08219683e-06, 3.53530049e-06, 0.792296529, 0.610136569, 1.03472848e-06, 0.610146821, -0.792310536)
  5781. Part378.Name = "Blade"
  5782. Part378.Parent = Model0
  5783. Part378.Material = Enum.Material.Metal
  5784. Part378.Rotation = Vector3.new(177.539993, 0.129999995, -98.7799988)
  5785. Part378.Anchored = true
  5786. Part378.FormFactor = Enum.FormFactor.Custom
  5787. Part378.Size = Vector3.new(0.316868067, 0.393713713, 9.18284702)
  5788. Part378.CFrame = CFrame.new(46.9368401, 0.670188427, 142.780197, -0.152666748, 0.98828423, 0.00222762721, 0.987354398, 0.152619183, -0.0428850316, -0.0427216627, -0.00434739189, -0.999077678)
  5789. Part378.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5790. Part378.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5791. Part378.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5792. Part378.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5793. Part378.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5794. Part378.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5795. Part378.Position = Vector3.new(46.9368401, 0.670188427, 142.780197)
  5796. Part378.Orientation = Vector3.new(2.46000004, 179.869995, 81.2099991)
  5797. SpecialMesh379.Parent = Part378
  5798. SpecialMesh379.Scale = Vector3.new(0, 1, 1)
  5799. SpecialMesh379.MeshType = Enum.MeshType.Wedge
  5800. SpecialMesh379.Scale = Vector3.new(0, 1, 1)
  5801. Script380.Parent = Part378
  5802. table.insert(cors,sandbox(Script380,function()
  5803. function onTouched(hit)
  5804. local human = hit.Parent:FindFirstChild("Humanoid")
  5805.  
  5806. if (human ~= nil) then
  5807. human.Health = human.Health - 50
  5808. end
  5809. end
  5810.  
  5811.  
  5812. connection = script.Parent.Touched:connect(onTouched)
  5813.  
  5814. end))
  5815. Folder381.Name = "CFrames"
  5816. Folder381.Parent = Part378
  5817. CFrameValue382.Name = "C0"
  5818. CFrameValue382.Parent = Folder381
  5819. CFrameValue382.Value = CFrame.new(0.00645112991, 5.75097656, -0.782058716, -0.98546505, -0.169723213, 0.00727661327, -0.00732859969, -0.000313485507, -0.999973416, 0.16972445, -0.985509098, -0.000934743788)
  5820. Part383.Parent = Model0
  5821. Part383.Material = Enum.Material.Metal
  5822. Part383.BrickColor = BrickColor.new("Black")
  5823. Part383.Rotation = Vector3.new(-179.649994, -67.5, 92.5899963)
  5824. Part383.Anchored = true
  5825. Part383.FormFactor = Enum.FormFactor.Custom
  5826. Part383.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5827. Part383.CFrame = CFrame.new(45.8821602, 0.551164389, 138.864578, -0.017270755, -0.382340372, -0.923869669, -0.999217987, 0.0394722596, 0.00234447233, 0.0355699435, 0.923179746, -0.382719845)
  5828. Part383.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5829. Part383.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5830. Part383.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5831. Part383.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5832. Part383.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5833. Part383.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5834. Part383.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5835. Part383.Position = Vector3.new(45.8821602, 0.551164389, 138.864578)
  5836. Part383.Orientation = Vector3.new(-0.129999995, -112.5, -87.7399979)
  5837. Part383.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5838. BlockMesh384.Parent = Part383
  5839. BlockMesh384.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5840. BlockMesh384.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5841. Folder385.Name = "CFrames"
  5842. Folder385.Parent = Part383
  5843. CFrameValue386.Name = "C0"
  5844. CFrameValue386.Parent = Folder385
  5845. CFrameValue386.Value = CFrame.new(0.004322052, 1.83509827, 0.278381348, 0.99999994, -1.17719173e-06, 5.68106771e-07, 1.60187483e-07, 0.924541354, -0.381082833, -6.28737325e-07, 0.38108927, 0.924557328)
  5846. Part387.Parent = Model0
  5847. Part387.Material = Enum.Material.Metal
  5848. Part387.BrickColor = BrickColor.new("Black")
  5849. Part387.Rotation = Vector3.new(-174.550003, -82.4599991, 97.5599976)
  5850. Part387.Anchored = true
  5851. Part387.FormFactor = Enum.FormFactor.Custom
  5852. Part387.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5853. Part387.CFrame = CFrame.new(46.0652237, 0.549754858, 138.914078, -0.0172707848, -0.130198374, -0.991346538, -0.999218106, 0.0375207067, 0.0124807097, 0.0355701745, 0.990778089, -0.130743563)
  5854. Part387.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5855. Part387.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5856. Part387.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5857. Part387.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5858. Part387.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5859. Part387.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5860. Part387.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5861. Part387.Position = Vector3.new(46.0652237, 0.549754858, 138.914078)
  5862. Part387.Orientation = Vector3.new(-0.719999969, -97.5099945, -87.8499985)
  5863. Part387.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5864. BlockMesh388.Parent = Part387
  5865. BlockMesh388.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5866. BlockMesh388.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5867. Folder389.Name = "CFrames"
  5868. Folder389.Parent = Part387
  5869. CFrameValue390.Name = "C0"
  5870. CFrameValue390.Parent = Folder389
  5871. CFrameValue390.Value = CFrame.new(0.00432920456, 1.88424683, 0.0952148438, 1.00000012, -1.4975667e-06, 2.54716724e-07, 3.87430191e-07, 0.991669655, -0.128809899, -6.01263309e-07, 0.128811955, 0.99168694)
  5872. Part391.Parent = Model0
  5873. Part391.Material = Enum.Material.Metal
  5874. Part391.BrickColor = BrickColor.new("Black")
  5875. Part391.Rotation = Vector3.new(179.669998, -59.8999977, 91.9700012)
  5876. Part391.Anchored = true
  5877. Part391.FormFactor = Enum.FormFactor.Custom
  5878. Part391.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  5879. Part391.CFrame = CFrame.new(45.9977646, 0.542188346, 138.547195, -0.0172711629, -0.501175761, -0.865183413, -0.999218047, 0.0394361056, -0.0028967252, 0.0355703495, 0.864448905, -0.501460731)
  5880. Part391.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5881. Part391.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5882. Part391.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5883. Part391.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5884. Part391.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5885. Part391.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5886. Part391.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5887. Part391.Position = Vector3.new(45.9977646, 0.542188346, 138.547195)
  5888. Part391.Orientation = Vector3.new(0.170000002, -120.099998, -87.7399979)
  5889. Part391.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5890. BlockMesh392.Parent = Part391
  5891. BlockMesh392.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  5892. BlockMesh392.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  5893. Folder393.Name = "CFrames"
  5894. Folder393.Parent = Part391
  5895. CFrameValue394.Name = "C0"
  5896. CFrameValue394.Parent = Folder393
  5897. CFrameValue394.Value = CFrame.new(5.24520874e-06, 1.51742554, 0.163280487, 1.00000012, -1.64285302e-06, 5.69969416e-07, 5.62518835e-07, 0.866015077, -0.500018179, -2.21640221e-07, 0.500026643, 0.866030514)
  5898. Part395.Parent = Model0
  5899. Part395.Material = Enum.Material.Metal
  5900. Part395.BrickColor = BrickColor.new("Black")
  5901. Part395.Rotation = Vector3.new(-178.369995, -74.8899994, 93.7999954)
  5902. Part395.Anchored = true
  5903. Part395.FormFactor = Enum.FormFactor.Custom
  5904. Part395.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  5905. Part395.CFrame = CFrame.new(46.0852318, 0.541790783, 138.57869, -0.0172714479, -0.26016286, -0.96541959, -0.999217987, 0.0388416275, 0.00740959309, 0.0355698764, 0.964783967, -0.260628164)
  5906. Part395.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5907. Part395.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5908. Part395.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5909. Part395.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5910. Part395.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5911. Part395.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5912. Part395.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5913. Part395.Position = Vector3.new(46.0852318, 0.541790783, 138.57869)
  5914. Part395.Orientation = Vector3.new(-0.419999987, -105.110001, -87.7699966)
  5915. Part395.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5916. BlockMesh396.Parent = Part395
  5917. BlockMesh396.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  5918. BlockMesh396.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  5919. Folder397.Name = "CFrames"
  5920. Folder397.Parent = Part395
  5921. CFrameValue398.Name = "C0"
  5922. CFrameValue398.Parent = Folder397
  5923. CFrameValue398.Value = CFrame.new(1.1920929e-05, 1.54875183, 0.0757522583, 1, -1.34855509e-06, -2.7474016e-07, 9.31322575e-08, 0.965923429, -0.258829355, 6.43049134e-08, 0.258833617, 0.965940297)
  5924. Part399.Parent = Model0
  5925. Part399.Material = Enum.Material.Metal
  5926. Part399.BrickColor = BrickColor.new("Black")
  5927. Part399.Rotation = Vector3.new(-2.79999995, -37.4799995, -91.25)
  5928. Part399.Anchored = true
  5929. Part399.FormFactor = Enum.FormFactor.Custom
  5930. Part399.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5931. Part399.CFrame = CFrame.new(46.7366257, 0.52834022, 138.637985, -0.0172701087, 0.793438017, -0.60842073, -0.999218047, 0.00795249827, 0.0387346819, 0.0355711505, 0.608608663, 0.792673111)
  5932. Part399.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5933. Part399.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5934. Part399.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5935. Part399.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5936. Part399.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5937. Part399.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5938. Part399.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5939. Part399.Position = Vector3.new(46.7366257, 0.52834022, 138.637985)
  5940. Part399.Orientation = Vector3.new(-2.22000003, -37.5099983, -89.5400009)
  5941. Part399.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5942. BlockMesh400.Parent = Part399
  5943. BlockMesh400.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5944. BlockMesh400.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  5945. Folder401.Name = "CFrames"
  5946. Folder401.Parent = Part399
  5947. CFrameValue402.Name = "C0"
  5948. CFrameValue402.Parent = Folder401
  5949. CFrameValue402.Value = CFrame.new(0.00431060791, 1.60661316, -0.575897217, 1.00000012, -2.10106373e-06, -1.5348196e-06, 1.36345625e-06, 0.607379854, 0.794412076, -1.27752719e-06, -0.794425964, 0.607390225)
  5950. Part403.Parent = Model0
  5951. Part403.Material = Enum.Material.Metal
  5952. Part403.BrickColor = BrickColor.new("Black")
  5953. Part403.Rotation = Vector3.new(-3.02999997, -45.0699997, -91.4000015)
  5954. Part403.Anchored = true
  5955. Part403.FormFactor = Enum.FormFactor.Custom
  5956. Part403.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  5957. Part403.CFrame = CFrame.new(46.672596, 0.531932712, 138.707458, -0.0172701683, 0.706000924, -0.708012819, -0.999218047, 0.0130051011, 0.03734231, 0.0355705991, 0.708098114, 0.705217779)
  5958. Part403.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5959. Part403.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5960. Part403.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5961. Part403.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5962. Part403.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5963. Part403.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5964. Part403.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5965. Part403.Position = Vector3.new(46.672596, 0.531932712, 138.707458)
  5966. Part403.Orientation = Vector3.new(-2.13999987, -45.1100006, -89.25)
  5967. Part403.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5968. BlockMesh404.Parent = Part403
  5969. BlockMesh404.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5970. BlockMesh404.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  5971. Folder405.Name = "CFrames"
  5972. Folder405.Parent = Part403
  5973. CFrameValue406.Name = "C0"
  5974. CFrameValue406.Parent = Folder405
  5975. CFrameValue406.Value = CFrame.new(0.00429821014, 1.67626953, -0.511955261, 1, -1.85519457e-06, -9.05245543e-07, 8.12113285e-07, 0.707110047, 0.707103908, -1.21680205e-06, -0.707116485, 0.707122028)
  5976. Part407.Parent = Model0
  5977. Part407.Material = Enum.Material.Metal
  5978. Part407.Rotation = Vector3.new(-2.46000004, -0.129999995, 108.769997)
  5979. Part407.Anchored = true
  5980. Part407.FormFactor = Enum.FormFactor.Custom
  5981. Part407.Size = Vector3.new(0.316868067, 0.316868067, 9.15247917)
  5982. Part407.CFrame = CFrame.new(46.6490517, 0.607808232, 142.766937, -0.321762651, -0.946827114, -0.00222589076, 0.945919633, -0.321554482, 0.0428853109, -0.0413198657, 0.0116929542, 0.999077678)
  5983. Part407.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5984. Part407.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5985. Part407.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5986. Part407.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5987. Part407.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5988. Part407.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5989. Part407.Position = Vector3.new(46.6490517, 0.607808232, 142.766937)
  5990. Part407.Orientation = Vector3.new(-2.46000004, -0.129999995, 108.769997)
  5991. SpecialMesh408.Parent = Part407
  5992. SpecialMesh408.Scale = Vector3.new(0, 0.621732473, 1)
  5993. SpecialMesh408.MeshType = Enum.MeshType.Wedge
  5994. SpecialMesh408.Scale = Vector3.new(0, 0.621732473, 1)
  5995. Folder409.Name = "CFrames"
  5996. Folder409.Parent = Part407
  5997. CFrameValue410.Name = "C0"
  5998. CFrameValue410.Parent = Folder409
  5999. CFrameValue410.Value = CFrame.new(0.0732808113, 5.73590088, -0.495361328, -0.941092432, 0.338071674, -0.00727692246, -0.00716286525, 0.00158155244, 0.999973416, 0.338080525, 0.941135466, 0.000933012227)
  6000. Part411.Parent = Model0
  6001. Part411.Material = Enum.Material.Metal
  6002. Part411.BrickColor = BrickColor.new("Black")
  6003. Part411.Rotation = Vector3.new(-9.48999977, -82.4199982, -97.5199966)
  6004. Part411.Anchored = true
  6005. Part411.FormFactor = Enum.FormFactor.Custom
  6006. Part411.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6007. Part411.CFrame = CFrame.new(46.2548714, 0.546506882, 138.91449, -0.0172707979, 0.130816147, -0.991265178, -0.999218106, 0.0330120064, 0.0217664968, 0.0355701782, 0.990857244, 0.130142435)
  6008. Part411.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6009. Part411.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6010. Part411.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6011. Part411.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6012. Part411.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6013. Part411.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6014. Part411.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6015. Part411.Position = Vector3.new(46.2548714, 0.546506882, 138.91449)
  6016. Part411.Orientation = Vector3.new(-1.25, -82.5199966, -88.1100006)
  6017. Part411.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6018. BlockMesh412.Parent = Part411
  6019. BlockMesh412.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6020. BlockMesh412.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6021. Folder413.Name = "CFrames"
  6022. Folder413.Parent = Part411
  6023. CFrameValue414.Name = "C0"
  6024. CFrameValue414.Parent = Folder413
  6025. CFrameValue414.Value = CFrame.new(0.00431394577, 1.88427734, -0.0944633484, 1.00000012, -1.51991844e-06, -1.66706741e-07, 3.91155481e-07, 0.991217911, 0.132240951, -5.88232069e-07, -0.13224344, 0.991235137)
  6026. Part415.Parent = Model0
  6027. Part415.Material = Enum.Material.Metal
  6028. Part415.BrickColor = BrickColor.new("Black")
  6029. Part415.Rotation = Vector3.new(-178.369995, -74.8899994, 93.7999954)
  6030. Part415.Anchored = true
  6031. Part415.FormFactor = Enum.FormFactor.Custom
  6032. Part415.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6033. Part415.CFrame = CFrame.new(45.9726791, 0.550624847, 138.893387, -0.0172714479, -0.26016286, -0.96541959, -0.999217987, 0.0388416275, 0.00740959309, 0.0355698764, 0.964783967, -0.260628164)
  6034. Part415.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6035. Part415.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6036. Part415.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6037. Part415.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6038. Part415.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6039. Part415.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6040. Part415.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6041. Part415.Position = Vector3.new(45.9726791, 0.550624847, 138.893387)
  6042. Part415.Orientation = Vector3.new(-0.419999987, -105.110001, -87.7699966)
  6043. Part415.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6044. BlockMesh416.Parent = Part415
  6045. BlockMesh416.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  6046. BlockMesh416.Scale = Vector3.new(0.761905074, 0.625850081, 0.4353742)
  6047. Folder417.Name = "CFrames"
  6048. Folder417.Parent = Part415
  6049. CFrameValue418.Name = "C0"
  6050. CFrameValue418.Parent = Folder417
  6051. CFrameValue418.Value = CFrame.new(0.00432252884, 1.86372375, 0.187805176, 1, -1.34855509e-06, -2.7474016e-07, 9.31322575e-08, 0.965923429, -0.258829355, 6.43049134e-08, 0.258833617, 0.965940297)
  6052. Part419.Parent = Model0
  6053. Part419.Material = Enum.Material.Metal
  6054. Part419.BrickColor = BrickColor.new("Black")
  6055. Part419.Rotation = Vector3.new(-4.42000008, -67.4599991, -92.5799942)
  6056. Part419.Anchored = true
  6057. Part419.FormFactor = Enum.FormFactor.Custom
  6058. Part419.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6059. Part419.CFrame = CFrame.new(46.4381104, 0.541606069, 138.86586, -0.0172706768, 0.382921845, -0.923628867, -0.999218047, 0.0262536965, 0.0295690745, 0.0355704278, 0.923409283, 0.382165402)
  6060. Part419.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6061. Part419.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6062. Part419.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6063. Part419.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6064. Part419.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6065. Part419.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6066. Part419.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6067. Part419.Position = Vector3.new(46.4381104, 0.541606069, 138.86586)
  6068. Part419.Orientation = Vector3.new(-1.68999994, -67.5199966, -88.4899979)
  6069. Part419.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6070. BlockMesh420.Parent = Part419
  6071. BlockMesh420.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6072. BlockMesh420.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6073. Folder421.Name = "CFrames"
  6074. Folder421.Parent = Part419
  6075. CFrameValue422.Name = "C0"
  6076. CFrameValue422.Parent = Folder421
  6077. CFrameValue422.Value = CFrame.new(0.00431609154, 1.83525085, -0.277664185, 1, -1.70990825e-06, -5.38304448e-07, 6.40749931e-07, 0.923214555, 0.384285778, -7.07950676e-07, -0.384292692, 0.92323041)
  6078. Part423.Parent = Model0
  6079. Part423.Material = Enum.Material.Metal
  6080. Part423.BrickColor = BrickColor.new("Black")
  6081. Part423.Rotation = Vector3.new(-96.7699966, -89.0400009, 175.269989)
  6082. Part423.Anchored = true
  6083. Part423.FormFactor = Enum.FormFactor.Custom
  6084. Part423.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  6085. Part423.CFrame = CFrame.new(46.1778946, 0.540471494, 138.586533, -0.0172709133, -0.00142910238, -0.999858558, -0.999218047, 0.0356007814, 0.0172095317, 0.0355702713, 0.999365151, -0.00204295898)
  6086. Part423.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6087. Part423.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6088. Part423.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6089. Part423.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6090. Part423.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6091. Part423.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6092. Part423.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6093. Part423.Position = Vector3.new(46.1778946, 0.540471494, 138.586533)
  6094. Part423.Orientation = Vector3.new(-0.98999995, -90.1199951, -87.9599991)
  6095. Part423.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6096. BlockMesh424.Parent = Part423
  6097. BlockMesh424.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6098. BlockMesh424.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6099. Folder425.Name = "CFrames"
  6100. Folder425.Parent = Part423
  6101. CFrameValue426.Name = "C0"
  6102. CFrameValue426.Parent = Folder425
  6103. CFrameValue426.Value = CFrame.new(8.82148743e-06, 1.556427, -0.0169372559, 1, -1.62795186e-06, -7.72924977e-08, 4.84287739e-07, 1.00000024, -1.05646905e-05, -4.710746e-07, 1.03849452e-05, 1.00001752)
  6104. Part427.Parent = Model0
  6105. Part427.Material = Enum.Material.Metal
  6106. Part427.BrickColor = BrickColor.new("Black")
  6107. Part427.Rotation = Vector3.new(-5.75, -75.0499954, -93.8399963)
  6108. Part427.Anchored = true
  6109. Part427.FormFactor = Enum.FormFactor.Custom
  6110. Part427.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  6111. Part427.CFrame = CFrame.new(46.2361908, 0.53552556, 138.47551, -0.0172709133, 0.257399857, -0.966159761, -0.999218047, 0.0299336184, 0.0258372203, 0.0355702713, 0.965842068, 0.256679147)
  6112. Part427.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6113. Part427.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6114. Part427.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6115. Part427.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6116. Part427.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6117. Part427.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6118. Part427.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6119. Part427.Position = Vector3.new(46.2361908, 0.53552556, 138.47551)
  6120. Part427.Orientation = Vector3.new(-1.48000002, -75.1199951, -88.2799988)
  6121. Part427.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6122. BlockMesh428.Parent = Part427
  6123. BlockMesh428.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6124. BlockMesh428.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6125. Folder429.Name = "CFrames"
  6126. Folder429.Parent = Part427
  6127. CFrameValue430.Name = "C0"
  6128. CFrameValue430.Parent = Folder429
  6129. CFrameValue430.Value = CFrame.new(-4.76837158e-06, 1.44522095, -0.0750808716, 1, -1.54972076e-06, -4.9546361e-07, 4.84287739e-07, 0.965929508, 0.258806646, -4.710746e-07, -0.258811384, 0.965946078)
  6130. Part431.Parent = Model0
  6131. Part431.Material = Enum.Material.Metal
  6132. Part431.BrickColor = BrickColor.new("Black")
  6133. Part431.Rotation = Vector3.new(-3.32999992, -52.4699974, -91.6199951)
  6134. Part431.Anchored = true
  6135. Part431.FormFactor = Enum.FormFactor.Custom
  6136. Part431.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6137. Part431.CFrame = CFrame.new(46.6024399, 0.53541398, 138.77179, -0.017270416, 0.608930945, -0.793046594, -0.999218047, 0.0177063867, 0.0353566259, 0.0355708487, 0.793030083, 0.608143389)
  6138. Part431.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6139. Part431.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6140. Part431.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6141. Part431.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6142. Part431.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6143. Part431.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6144. Part431.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6145. Part431.Position = Vector3.new(46.6024399, 0.53541398, 138.77179)
  6146. Part431.Orientation = Vector3.new(-2.02999997, -52.5200005, -88.9799957)
  6147. Part431.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6148. BlockMesh432.Parent = Part431
  6149. BlockMesh432.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6150. BlockMesh432.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6151. Folder433.Name = "CFrames"
  6152. Folder433.Parent = Part431
  6153. CFrameValue434.Name = "C0"
  6154. CFrameValue434.Parent = Folder433
  6155. CFrameValue434.Value = CFrame.new(0.00431919098, 1.74076843, -0.441883087, 1, -1.99489295e-06, -1.00396574e-06, 1.06170774e-06, 0.792293191, 0.610141098, -9.69572284e-07, -0.610152006, 0.79230696)
  6156. Part435.Parent = Model0
  6157. Part435.Material = Enum.Material.Metal
  6158. Part435.BrickColor = BrickColor.new("Black")
  6159. Part435.Rotation = Vector3.new(-1.63, 22.3199997, 88.9300003)
  6160. Part435.Anchored = true
  6161. Part435.FormFactor = Enum.FormFactor.Custom
  6162. Part435.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6163. Part435.CFrame = CFrame.new(45.4901848, 0.543934107, 138.471359, 0.0172694474, -0.924949288, 0.379721284, 0.999218225, 0.029475145, 0.0263522454, -0.0355659574, 0.378965765, 0.924727082)
  6164. Part435.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6165. Part435.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6166. Part435.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6167. Part435.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6168. Part435.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6169. Part435.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6170. Part435.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6171. Part435.Position = Vector3.new(45.4901848, 0.543934107, 138.471359)
  6172. Part435.Orientation = Vector3.new(-1.50999999, 22.3199997, 88.3099976)
  6173. Part435.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6174. BlockMesh436.Parent = Part435
  6175. BlockMesh436.Scale = Vector3.new(0.761904716, 0.62585032, 0.248979583)
  6176. BlockMesh436.Scale = Vector3.new(0.761904716, 0.62585032, 0.248979583)
  6177. Folder437.Name = "CFrames"
  6178. Folder437.Parent = Part435
  6179. CFrameValue438.Name = "C0"
  6180. CFrameValue438.Parent = Folder437
  6181. CFrameValue438.Value = CFrame.new(0.0043296814, 1.44242859, 0.670970917, -1.00000012, 2.3143366e-06, 1.97067857e-06, 3.83332372e-06, 0.381086707, 0.924539566, 1.93193409e-06, 0.92455554, -0.381093591)
  6182. Part439.Parent = Model0
  6183. Part439.Material = Enum.Material.Metal
  6184. Part439.BrickColor = BrickColor.new("Black")
  6185. Part439.Rotation = Vector3.new(-5.75, -75.0499954, -93.8399963)
  6186. Part439.Anchored = true
  6187. Part439.FormFactor = Enum.FormFactor.Custom
  6188. Part439.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  6189. Part439.CFrame = CFrame.new(46.2694511, 0.538316369, 138.57019, -0.0172709133, 0.257399857, -0.966159761, -0.999218047, 0.0299336184, 0.0258372203, 0.0355702713, 0.965842068, 0.256679147)
  6190. Part439.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6191. Part439.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6192. Part439.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6193. Part439.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6194. Part439.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6195. Part439.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6196. Part439.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6197. Part439.Position = Vector3.new(46.2694511, 0.538316369, 138.57019)
  6198. Part439.Orientation = Vector3.new(-1.48000002, -75.1199951, -88.2799988)
  6199. Part439.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6200. BlockMesh440.Parent = Part439
  6201. BlockMesh440.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6202. BlockMesh440.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6203. Folder441.Name = "CFrames"
  6204. Folder441.Parent = Part439
  6205. CFrameValue442.Name = "C0"
  6206. CFrameValue442.Parent = Folder441
  6207. CFrameValue442.Value = CFrame.new(-4.76837158e-07, 1.53988647, -0.108478546, 1, -1.54972076e-06, -4.9546361e-07, 4.84287739e-07, 0.965929508, 0.258806646, -4.710746e-07, -0.258811384, 0.965946078)
  6208. Part443.Parent = Model0
  6209. Part443.Material = Enum.Material.Metal
  6210. Part443.BrickColor = BrickColor.new("Black")
  6211. Part443.Rotation = Vector3.new(178.529999, -29.9099998, 91.1399994)
  6212. Part443.Anchored = true
  6213. Part443.FormFactor = Enum.FormFactor.Custom
  6214. Part443.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  6215. Part443.CFrame = CFrame.new(45.8614311, 0.54011327, 138.42305, -0.0172714479, -0.866617382, -0.498692006, -0.999217987, 0.0327045619, -0.0222258158, 0.0355698988, 0.497913718, -0.86649704)
  6216. Part443.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6217. Part443.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6218. Part443.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6219. Part443.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6220. Part443.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6221. Part443.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6222. Part443.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6223. Part443.Position = Vector3.new(45.8614311, 0.54011327, 138.42305)
  6224. Part443.Orientation = Vector3.new(1.26999998, -150.080002, -88.1299973)
  6225. Part443.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6226. BlockMesh444.Parent = Part443
  6227. BlockMesh444.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6228. BlockMesh444.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6229. Folder445.Name = "CFrames"
  6230. Folder445.Parent = Part443
  6231. CFrameValue446.Name = "C0"
  6232. CFrameValue446.Parent = Folder445
  6233. CFrameValue446.Value = CFrame.new(1.71661377e-05, 1.39347839, 0.299812317, 1, -1.14925206e-06, 7.78585672e-07, 1.15483999e-07, 0.499991357, -0.866030812, 6.42612576e-08, 0.866045654, 0.500000119)
  6234. Part447.Parent = Model0
  6235. Part447.Material = Enum.Material.Metal
  6236. Part447.BrickColor = BrickColor.new("Black")
  6237. Part447.Rotation = Vector3.new(-3.75999999, -60.0699997, -91.9799957)
  6238. Part447.Anchored = true
  6239. Part447.FormFactor = Enum.FormFactor.Custom
  6240. Part447.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  6241. Part447.CFrame = CFrame.new(46.3064499, 0.533275962, 138.446625, -0.0172702409, 0.498694301, -0.86661613, -0.999218106, 0.0222266428, 0.0327037647, 0.0355702564, 0.866495728, 0.497915924)
  6242. Part447.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6243. Part447.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6244. Part447.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6245. Part447.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6246. Part447.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6247. Part447.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6248. Part447.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6249. Part447.Position = Vector3.new(46.3064499, 0.533275962, 138.446625)
  6250. Part447.Orientation = Vector3.new(-1.87, -60.1199989, -88.7299957)
  6251. Part447.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6252. BlockMesh448.Parent = Part447
  6253. BlockMesh448.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6254. BlockMesh448.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6255. Folder449.Name = "CFrames"
  6256. Folder449.Parent = Part447
  6257. CFrameValue450.Name = "C0"
  6258. CFrameValue450.Parent = Folder449
  6259. CFrameValue450.Value = CFrame.new(1.90734863e-06, 1.41616821, -0.145309448, 1.00000012, -1.69314444e-06, -2.96160579e-07, 4.69386578e-07, 0.866029561, 0.499993533, -1.14532304e-06, -0.500002444, 0.866044402)
  6260. Part451.Parent = Model0
  6261. Part451.Material = Enum.Material.Metal
  6262. Part451.BrickColor = BrickColor.new("Black")
  6263. Part451.Rotation = Vector3.new(-2.6099999, -30.0799999, -91.1399994)
  6264. Part451.Anchored = true
  6265. Part451.FormFactor = Enum.FormFactor.Custom
  6266. Part451.Size = Vector3.new(0.316868067, 0.582002521, 0.316868067)
  6267. Part451.CFrame = CFrame.new(46.4832687, 0.528484344, 138.397736, -0.0172699131, 0.865191281, -0.501162291, -0.999218047, 0.00289745256, 0.0394359678, 0.0355708748, 0.501447082, 0.864456952)
  6268. Part451.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6269. Part451.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6270. Part451.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6271. Part451.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6272. Part451.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6273. Part451.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6274. Part451.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6275. Part451.Position = Vector3.new(46.4832687, 0.528484344, 138.397736)
  6276. Part451.Orientation = Vector3.new(-2.25999999, -30.0999985, -89.8299942)
  6277. Part451.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6278. BlockMesh452.Parent = Part451
  6279. BlockMesh452.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6280. BlockMesh452.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6281. Folder453.Name = "CFrames"
  6282. Folder453.Parent = Part451
  6283. CFrameValue454.Name = "C0"
  6284. CFrameValue454.Parent = Folder453
  6285. CFrameValue454.Value = CFrame.new(-2.86102295e-06, 1.36688232, -0.322086334, 1.00000012, -1.91666186e-06, -1.44913793e-06, 1.08778477e-06, 0.50000453, 0.866023123, -1.47254468e-06, -0.866038263, 0.500013113)
  6286. Part455.Parent = Model0
  6287. Part455.Material = Enum.Material.Metal
  6288. Part455.BrickColor = BrickColor.new("Black")
  6289. Part455.Rotation = Vector3.new(-1.90999997, 7.4199996, 89)
  6290. Part455.Anchored = true
  6291. Part455.FormFactor = Enum.FormFactor.Custom
  6292. Part455.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6293. Part455.CFrame = CFrame.new(45.441349, 0.538282216, 138.288101, 0.0172711406, -0.991489649, 0.129103661, 0.999218106, 0.0217092764, 0.0330456793, -0.0355663113, 0.128430739, 0.991080642)
  6294. Part455.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6295. Part455.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6296. Part455.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6297. Part455.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6298. Part455.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6299. Part455.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6300. Part455.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6301. Part455.Position = Vector3.new(45.441349, 0.538282216, 138.288101)
  6302. Part455.Orientation = Vector3.new(-1.88999999, 7.4199996, 88.7599945)
  6303. Part455.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6304. BlockMesh456.Parent = Part455
  6305. BlockMesh456.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6306. BlockMesh456.Scale = Vector3.new(0.761904716, 0.62585032, 0.246258512)
  6307. Folder457.Name = "CFrames"
  6308. Folder457.Parent = Part455
  6309. CFrameValue458.Name = "C0"
  6310. CFrameValue458.Parent = Folder457
  6311. CFrameValue458.Value = CFrame.new(0.00430250168, 1.25915527, 0.7200737, -1, 1.86264515e-09, 2.35810876e-06, 3.47197056e-06, 0.130528629, 0.991444826, 2.37647328e-07, 0.991462052, -0.130531058)
  6312. Part459.Parent = Model0
  6313. Part459.Material = Enum.Material.Metal
  6314. Part459.BrickColor = BrickColor.new("Black")
  6315. Part459.Rotation = Vector3.new(-3.02999997, -45.0699997, -91.4000015)
  6316. Part459.Anchored = true
  6317. Part459.FormFactor = Enum.FormFactor.Custom
  6318. Part459.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  6319. Part459.CFrame = CFrame.new(46.424614, 0.532096505, 138.470749, -0.0172701683, 0.706000924, -0.708012819, -0.999218047, 0.0130051011, 0.03734231, 0.0355705991, 0.708098114, 0.705217779)
  6320. Part459.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6321. Part459.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6322. Part459.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6323. Part459.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6324. Part459.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6325. Part459.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6326. Part459.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6327. Part459.Position = Vector3.new(46.424614, 0.532096505, 138.470749)
  6328. Part459.Orientation = Vector3.new(-2.13999987, -45.1100006, -89.25)
  6329. Part459.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6330. BlockMesh460.Parent = Part459
  6331. BlockMesh460.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6332. BlockMesh460.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6333. Folder461.Name = "CFrames"
  6334. Folder461.Parent = Part459
  6335. CFrameValue462.Name = "C0"
  6336. CFrameValue462.Parent = Folder461
  6337. CFrameValue462.Value = CFrame.new(-2.38418579e-06, 1.44006348, -0.263523102, 1, -1.85519457e-06, -9.05245543e-07, 8.12113285e-07, 0.707110047, 0.707103908, -1.21680205e-06, -0.707116485, 0.707122028)
  6338. Part463.Parent = Model0
  6339. Part463.Material = Enum.Material.Metal
  6340. Part463.BrickColor = BrickColor.new("Black")
  6341. Part463.Rotation = Vector3.new(-178.369995, -74.8899994, 93.7999954)
  6342. Part463.Anchored = true
  6343. Part463.FormFactor = Enum.FormFactor.Custom
  6344. Part463.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  6345. Part463.CFrame = CFrame.new(46.0854645, 0.538102925, 138.475204, -0.0172714479, -0.26016286, -0.96541959, -0.999217987, 0.0388416275, 0.00740959309, 0.0355698764, 0.964783967, -0.260628164)
  6346. Part463.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6347. Part463.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6348. Part463.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6349. Part463.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6350. Part463.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6351. Part463.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6352. Part463.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6353. Part463.Position = Vector3.new(46.0854645, 0.538102925, 138.475204)
  6354. Part463.Orientation = Vector3.new(-0.419999987, -105.110001, -87.7699966)
  6355. Part463.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6356. BlockMesh464.Parent = Part463
  6357. BlockMesh464.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6358. BlockMesh464.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6359. Folder465.Name = "CFrames"
  6360. Folder465.Parent = Part463
  6361. CFrameValue466.Name = "C0"
  6362. CFrameValue466.Parent = Folder465
  6363. CFrameValue466.Value = CFrame.new(1.21593475e-05, 1.44522095, 0.075668335, 1, -1.34855509e-06, -2.7474016e-07, 9.31322575e-08, 0.965923429, -0.258829355, 6.43049134e-08, 0.258833617, 0.965940297)
  6364. Part467.Parent = Model0
  6365. Part467.Material = Enum.Material.Metal
  6366. Part467.BrickColor = BrickColor.new("Black")
  6367. Part467.Rotation = Vector3.new(-3.75999999, -60.0699997, -91.9799957)
  6368. Part467.Anchored = true
  6369. Part467.FormFactor = Enum.FormFactor.Custom
  6370. Part467.Size = Vector3.new(0.316868067, 0.594935894, 0.316868067)
  6371. Part467.CFrame = CFrame.new(46.3535728, 0.535464168, 138.530685, -0.0172702409, 0.498694301, -0.86661613, -0.999218106, 0.0222266428, 0.0327037647, 0.0355702564, 0.866495728, 0.497915924)
  6372. Part467.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6373. Part467.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6374. Part467.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6375. Part467.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6376. Part467.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6377. Part467.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6378. Part467.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6379. Part467.Position = Vector3.new(46.3535728, 0.535464168, 138.530685)
  6380. Part467.Orientation = Vector3.new(-1.87, -60.1199989, -88.7299957)
  6381. Part467.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6382. BlockMesh468.Parent = Part467
  6383. BlockMesh468.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6384. BlockMesh468.Scale = Vector3.new(0.598639786, 1, 0.544217765)
  6385. Folder469.Name = "CFrames"
  6386. Folder469.Parent = Part467
  6387. CFrameValue470.Name = "C0"
  6388. CFrameValue470.Parent = Folder469
  6389. CFrameValue470.Value = CFrame.new(-8.58306885e-06, 1.50018311, -0.192558289, 1.00000012, -1.69314444e-06, -2.96160579e-07, 4.69386578e-07, 0.866029561, 0.499993533, -1.14532304e-06, -0.500002444, 0.866044402)
  6390. Part471.Parent = Model0
  6391. Part471.Material = Enum.Material.Metal
  6392. Part471.Rotation = Vector3.new(-2, 2.38999987, -100.769997)
  6393. Part471.Anchored = true
  6394. Part471.FormFactor = Enum.FormFactor.Custom
  6395. Part471.Size = Vector3.new(0.316868067, 0.393357426, 0.316868067)
  6396. Part471.CFrame = CFrame.new(45.3952827, 0.499970227, 138.189896, -0.186728343, 0.981533766, 0.0417337231, -0.981512368, -0.188205451, 0.0348224789, 0.0420329906, -0.0344594792, 0.998521864)
  6397. Part471.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6398. Part471.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6399. Part471.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6400. Part471.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6401. Part471.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6402. Part471.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6403. Part471.Position = Vector3.new(45.3952827, 0.499970227, 138.189896)
  6404. Part471.Orientation = Vector3.new(-2, 2.38999987, -100.849998)
  6405. SpecialMesh472.Parent = Part471
  6406. SpecialMesh472.Scale = Vector3.new(0.0544217676, 1, 0)
  6407. SpecialMesh472.MeshType = Enum.MeshType.Wedge
  6408. SpecialMesh472.Scale = Vector3.new(0.0544217676, 1, 0)
  6409. Folder473.Name = "CFrames"
  6410. Folder473.Parent = Part471
  6411. CFrameValue474.Name = "C0"
  6412. CFrameValue474.Parent = Folder473
  6413. CFrameValue474.Value = CFrame.new(0.039886713, 1.15971375, 0.765674591, 0.985464871, 0.16988039, 5.99771738e-07, 0.00732981786, -0.0425300859, 0.999068558, 0.169724584, -0.984564006, -0.0431580171)
  6414. Part475.Parent = Model0
  6415. Part475.Material = Enum.Material.Metal
  6416. Part475.BrickColor = BrickColor.new("Black")
  6417. Part475.Rotation = Vector3.new(-96.7699966, -89.0400009, 175.269989)
  6418. Part475.Anchored = true
  6419. Part475.FormFactor = Enum.FormFactor.Custom
  6420. Part475.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  6421. Part475.CFrame = CFrame.new(46.1608047, 0.537157655, 138.485291, -0.0172709133, -0.00142910238, -0.999858558, -0.999218047, 0.0356007814, 0.0172095317, 0.0355702713, 0.999365151, -0.00204295898)
  6422. Part475.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6423. Part475.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6424. Part475.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6425. Part475.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6426. Part475.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6427. Part475.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6428. Part475.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6429. Part475.Position = Vector3.new(46.1608047, 0.537157655, 138.485291)
  6430. Part475.Orientation = Vector3.new(-0.98999995, -90.1199951, -87.9599991)
  6431. Part475.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6432. BlockMesh476.Parent = Part475
  6433. BlockMesh476.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6434. BlockMesh476.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6435. Folder477.Name = "CFrames"
  6436. Folder477.Parent = Part475
  6437. CFrameValue478.Name = "C0"
  6438. CFrameValue478.Parent = Folder477
  6439. CFrameValue478.Value = CFrame.new(1.40666962e-05, 1.45515442, 0.000301361084, 1, -1.62795186e-06, -7.72924977e-08, 4.84287739e-07, 1.00000024, -1.05646905e-05, -4.710746e-07, 1.03849452e-05, 1.00001752)
  6440. Part479.Parent = Model0
  6441. Part479.Material = Enum.Material.Metal
  6442. Part479.BrickColor = BrickColor.new("Black")
  6443. Part479.Rotation = Vector3.new(179.669998, -59.8999977, 91.9700012)
  6444. Part479.Anchored = true
  6445. Part479.FormFactor = Enum.FormFactor.Custom
  6446. Part479.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  6447. Part479.CFrame = CFrame.new(46.0152817, 0.538282692, 138.44606, -0.0172711629, -0.501175761, -0.865183413, -0.999218047, 0.0394361056, -0.0028967252, 0.0355703495, 0.864448905, -0.501460731)
  6448. Part479.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6449. Part479.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6450. Part479.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6451. Part479.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6452. Part479.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6453. Part479.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6454. Part479.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6455. Part479.Position = Vector3.new(46.0152817, 0.538282692, 138.44606)
  6456. Part479.Orientation = Vector3.new(0.170000002, -120.099998, -87.7399979)
  6457. Part479.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6458. BlockMesh480.Parent = Part479
  6459. BlockMesh480.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6460. BlockMesh480.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6461. Folder481.Name = "CFrames"
  6462. Folder481.Parent = Part479
  6463. CFrameValue482.Name = "C0"
  6464. CFrameValue482.Parent = Folder481
  6465. CFrameValue482.Value = CFrame.new(8.10623169e-06, 1.41619873, 0.145900726, 1.00000012, -1.64285302e-06, 5.69969416e-07, 5.62518835e-07, 0.866015077, -0.500018179, -2.21640221e-07, 0.500026643, 0.866030514)
  6466. Part483.Parent = Model0
  6467. Part483.Material = Enum.Material.Metal
  6468. Part483.BrickColor = BrickColor.new("Black")
  6469. Part483.Rotation = Vector3.new(-3.02999997, -45.0699997, -91.4000015)
  6470. Part483.Anchored = true
  6471. Part483.FormFactor = Enum.FormFactor.Custom
  6472. Part483.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  6473. Part483.CFrame = CFrame.new(46.3667946, 0.530590773, 138.400497, -0.0172701683, 0.706000924, -0.708012819, -0.999218047, 0.0130051011, 0.03734231, 0.0355705991, 0.708098114, 0.705217779)
  6474. Part483.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6475. Part483.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6476. Part483.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6477. Part483.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6478. Part483.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6479. Part483.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6480. Part483.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6481. Part483.Position = Vector3.new(46.3667946, 0.530590773, 138.400497)
  6482. Part483.Orientation = Vector3.new(-2.13999987, -45.1100006, -89.25)
  6483. Part483.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6484. BlockMesh484.Parent = Part483
  6485. BlockMesh484.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6486. BlockMesh484.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6487. Folder485.Name = "CFrames"
  6488. Folder485.Parent = Part483
  6489. CFrameValue486.Name = "C0"
  6490. CFrameValue486.Parent = Folder485
  6491. CFrameValue486.Value = CFrame.new(2.14576721e-06, 1.36988831, -0.205600739, 1, -1.85519457e-06, -9.05245543e-07, 8.12113285e-07, 0.707110047, 0.707103908, -1.21680205e-06, -0.707116485, 0.707122028)
  6492. Part487.Parent = Model0
  6493. Part487.Material = Enum.Material.Metal
  6494. Part487.BrickColor = BrickColor.new("Black")
  6495. Part487.Rotation = Vector3.new(178.949997, -44.9099998, 91.4000015)
  6496. Part487.Anchored = true
  6497. Part487.FormFactor = Enum.FormFactor.Custom
  6498. Part487.Size = Vector3.new(0.316868067, 0.46560201, 0.316868067)
  6499. Part487.CFrame = CFrame.new(45.9550705, 0.537677705, 138.399673, -0.0172714479, -0.708024263, -0.705989361, -0.999217987, 0.0373425111, -0.0130043048, 0.0355698988, 0.705206394, -0.708109438)
  6500. Part487.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6501. Part487.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6502. Part487.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6503. Part487.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6504. Part487.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6505. Part487.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6506. Part487.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6507. Part487.Position = Vector3.new(45.9550705, 0.537677705, 138.399673)
  6508. Part487.Orientation = Vector3.new(0.75, -135.089996, -87.8600006)
  6509. Part487.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6510. BlockMesh488.Parent = Part487
  6511. BlockMesh488.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6512. BlockMesh488.Scale = Vector3.new(0.761905074, 1, 0.4353742)
  6513. Folder489.Name = "CFrames"
  6514. Folder489.Parent = Part487
  6515. CFrameValue490.Name = "C0"
  6516. CFrameValue490.Parent = Folder489
  6517. CFrameValue490.Value = CFrame.new(2.62260437e-06, 1.36990356, 0.206192017, 1, -1.31130219e-06, 4.58210707e-07, 1.15483999e-07, 0.707092583, -0.707121372, 6.42612576e-08, 0.707133532, 0.707104921)
  6518. Part491.Parent = Model0
  6519. Part491.Material = Enum.Material.Metal
  6520. Part491.BrickColor = BrickColor.new("Black")
  6521. Part491.Rotation = Vector3.new(-2.03999996, -0.0799999982, 89.0099945)
  6522. Part491.Anchored = true
  6523. Part491.FormFactor = Enum.FormFactor.Custom
  6524. Part491.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6525. Part491.CFrame = CFrame.new(45.4372177, 0.535209894, 138.199905, 0.0172711406, -0.999858677, -0.00141246896, 0.999218106, 0.0172103606, 0.0355965421, -0.0355663113, -0.00202627527, 0.999365389)
  6526. Part491.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6527. Part491.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6528. Part491.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6529. Part491.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6530. Part491.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6531. Part491.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6532. Part491.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6533. Part491.Position = Vector3.new(45.4372177, 0.535209894, 138.199905)
  6534. Part491.Orientation = Vector3.new(-2.03999996, -0.0799999982, 89.0099945)
  6535. Part491.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6536. BlockMesh492.Parent = Part491
  6537. BlockMesh492.Scale = Vector3.new(0.761905074, 0.625850081, 0.394557863)
  6538. BlockMesh492.Scale = Vector3.new(0.761905074, 0.625850081, 0.394557863)
  6539. Folder493.Name = "CFrames"
  6540. Folder493.Parent = Part491
  6541. CFrameValue494.Name = "C0"
  6542. CFrameValue494.Parent = Folder493
  6543. CFrameValue494.Value = CFrame.new(0.00430655479, 1.17089844, 0.724334717, -1, -3.10879841e-07, 2.32830644e-06, 3.47197056e-06, 6.13834709e-06, 1.00000036, 2.37647328e-07, 1.00001764, -6.31948933e-06)
  6544. Part495.Parent = Model0
  6545. Part495.Material = Enum.Material.Metal
  6546. Part495.BrickColor = BrickColor.new("Black")
  6547. Part495.Rotation = Vector3.new(-96.7399979, -89.0400009, 175.300003)
  6548. Part495.Anchored = true
  6549. Part495.FormFactor = Enum.FormFactor.Custom
  6550. Part495.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6551. Part495.CFrame = CFrame.new(45.8103523, 0.535223901, 138.139587, -0.0172711033, -0.00141864689, -0.999858618, -0.999217927, 0.0355995446, 0.0172101036, 0.0355692096, 0.99936527, -0.00203249883)
  6552. Part495.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6553. Part495.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6554. Part495.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6555. Part495.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6556. Part495.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6557. Part495.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6558. Part495.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6559. Part495.Position = Vector3.new(45.8103523, 0.535223901, 138.139587)
  6560. Part495.Orientation = Vector3.new(-0.98999995, -90.1199951, -87.9599991)
  6561. Part495.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6562. CylinderMesh496.Parent = Part495
  6563. CylinderMesh496.Scale = Vector3.new(0.571428835, 0.0680272058, 0.571428657)
  6564. CylinderMesh496.Scale = Vector3.new(0.571428835, 0.0680272058, 0.571428657)
  6565. Folder497.Name = "CFrames"
  6566. Folder497.Parent = Part495
  6567. CFrameValue498.Name = "C0"
  6568. CFrameValue498.Parent = Folder497
  6569. CFrameValue498.Value = CFrame.new(-0.00429725647, 1.11010742, 0.35137558, 0.999999881, -5.66244125e-07, -2.7706119e-07, -5.66244125e-07, 1.00000024, -9.05711204e-08, -2.7706119e-07, -9.05711204e-08, 1.00001764)
  6570. Part499.Parent = Model0
  6571. Part499.Material = Enum.Material.Metal
  6572. Part499.BrickColor = BrickColor.new("Black")
  6573. Part499.Rotation = Vector3.new(83.2699966, 89.0099945, 94.6899948)
  6574. Part499.Anchored = true
  6575. Part499.FormFactor = Enum.FormFactor.Custom
  6576. Part499.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6577. Part499.CFrame = CFrame.new(46.1598701, 0.447531641, 138.330856, -0.00141641998, -0.0172711797, 0.999849796, 0.0355953611, -0.999218106, -0.0172098391, 0.99936533, 0.0355656408, 0.00203008601)
  6578. Part499.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6579. Part499.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6580. Part499.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6581. Part499.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6582. Part499.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6583. Part499.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6584. Part499.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6585. Part499.Position = Vector3.new(46.1598701, 0.447531641, 138.330856)
  6586. Part499.Orientation = Vector3.new(0.98999995, 89.8799973, 177.959991)
  6587. Part499.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6588. SpecialMesh500.Parent = Part499
  6589. SpecialMesh500.Scale = Vector3.new(0.979592144, 0.394557834, 0.979591906)
  6590. SpecialMesh500.Scale = Vector3.new(0.979592144, 0.394557834, 0.979591906)
  6591. Folder501.Name = "CFrames"
  6592. Folder501.Parent = Part499
  6593. CFrameValue502.Name = "C0"
  6594. CFrameValue502.Parent = Folder501
  6595. CFrameValue502.Value = CFrame.new(0.0840928555, 1.29763794, 7.62939453e-06, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  6596. Part503.Parent = Model0
  6597. Part503.Material = Enum.Material.Metal
  6598. Part503.BrickColor = BrickColor.new("Black")
  6599. Part503.Rotation = Vector3.new(83.2699966, 89.0099945, 94.6899948)
  6600. Part503.Anchored = true
  6601. Part503.FormFactor = Enum.FormFactor.Custom
  6602. Part503.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6603. Part503.CFrame = CFrame.new(46.150486, 0.628380477, 138.362015, -0.00141641998, -0.0172711797, 0.999849796, 0.0355953611, -0.999218106, -0.0172098391, 0.99936533, 0.0355656408, 0.00203008601)
  6604. Part503.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6605. Part503.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6606. Part503.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6607. Part503.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6608. Part503.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6609. Part503.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6610. Part503.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6611. Part503.Position = Vector3.new(46.150486, 0.628380477, 138.362015)
  6612. Part503.Orientation = Vector3.new(0.98999995, 89.8799973, 177.959991)
  6613. Part503.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6614. SpecialMesh504.Parent = Part503
  6615. SpecialMesh504.Scale = Vector3.new(0.979592144, 0.394557834, 0.979591906)
  6616. SpecialMesh504.Scale = Vector3.new(0.979592144, 0.394557834, 0.979591906)
  6617. Folder505.Name = "CFrames"
  6618. Folder505.Parent = Part503
  6619. CFrameValue506.Name = "C0"
  6620. CFrameValue506.Parent = Folder505
  6621. CFrameValue506.Value = CFrame.new(-0.0953435898, 1.33520508, 0.0124397278, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  6622. Part507.Parent = Model0
  6623. Part507.Material = Enum.Material.Metal
  6624. Part507.BrickColor = BrickColor.new("Black")
  6625. Part507.Rotation = Vector3.new(83.2699966, 89.0099945, 94.6899948)
  6626. Part507.Anchored = true
  6627. Part507.FormFactor = Enum.FormFactor.Custom
  6628. Part507.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6629. Part507.CFrame = CFrame.new(46.1435165, 0.646713436, 138.363693, -0.00141641998, -0.0172711797, 0.999849796, 0.0355953611, -0.999218106, -0.0172098391, 0.99936533, 0.0355656408, 0.00203008601)
  6630. Part507.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6631. Part507.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6632. Part507.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6633. Part507.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6634. Part507.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6635. Part507.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6636. Part507.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6637. Part507.Position = Vector3.new(46.1435165, 0.646713436, 138.363693)
  6638. Part507.Orientation = Vector3.new(0.98999995, 89.8799973, 177.959991)
  6639. Part507.Color = Color3.new(0.105882, 0.164706, 0.207843)
  6640. SpecialMesh508.Parent = Part507
  6641. SpecialMesh508.Scale = Vector3.new(0.435374141, 0.435374141, 0.435374141)
  6642. SpecialMesh508.MeshType = Enum.MeshType.Sphere
  6643. SpecialMesh508.Scale = Vector3.new(0.435374141, 0.435374141, 0.435374141)
  6644. Folder509.Name = "CFrames"
  6645. Folder509.Parent = Part507
  6646. CFrameValue510.Name = "C0"
  6647. CFrameValue510.Parent = Folder509
  6648. CFrameValue510.Value = CFrame.new(-0.113482475, 1.33755493, 0.0197219849, 3.57627869e-06, 1, 7.9482561e-08, 1.00000024, -4.14252281e-06, -2.29873694e-06, -2.38930807e-06, -1.97171175e-07, -1.00000882)
  6649. Part511.Parent = Model0
  6650. Part511.Material = Enum.Material.Metal
  6651. Part511.BrickColor = BrickColor.new("Dark stone grey")
  6652. Part511.Reflectance = 0.10000000149012
  6653. Part511.Rotation = Vector3.new(-96.7299957, -89.0400009, -4.69000006)
  6654. Part511.Anchored = true
  6655. Part511.FormFactor = Enum.FormFactor.Custom
  6656. Part511.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6657. Part511.CFrame = CFrame.new(46.3312683, 0.429026097, 135.529953, 0.017271338, 0.00141656166, -0.999858677, 0.999217749, -0.0356043391, 0.0172103979, -0.0355740301, -0.999365091, -0.00203050533)
  6658. Part511.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6659. Part511.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6660. Part511.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6661. Part511.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6662. Part511.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6663. Part511.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6664. Part511.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6665. Part511.Position = Vector3.new(46.3312683, 0.429026097, 135.529953)
  6666. Part511.Orientation = Vector3.new(-0.98999995, -90.1199951, 92.0400009)
  6667. Part511.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6668. SpecialMesh512.Parent = Part511
  6669. SpecialMesh512.Scale = Vector3.new(0.761905074, 0.272108823, 0.244898811)
  6670. SpecialMesh512.MeshType = Enum.MeshType.Wedge
  6671. SpecialMesh512.Scale = Vector3.new(0.761905074, 0.272108823, 0.244898811)
  6672. Folder513.Name = "CFrames"
  6673. Folder513.Parent = Part511
  6674. CFrameValue514.Name = "C0"
  6675. CFrameValue514.Parent = Folder513
  6676. CFrameValue514.Value = CFrame.new(-1.90734863e-06, -1.50241089, -0.165988922, -0.99999994, 5.40167093e-06, -4.98592271e-07, -4.25428152e-06, -1.00000024, 1.91223808e-06, 4.84433258e-08, 2.09268183e-06, 1.00001764)
  6677. Part515.Parent = Model0
  6678. Part515.Material = Enum.Material.Metal
  6679. Part515.BrickColor = BrickColor.new("Dark stone grey")
  6680. Part515.Rotation = Vector3.new(39.9399986, -0.719999969, -54.0599976)
  6681. Part515.Anchored = true
  6682. Part515.FormFactor = Enum.FormFactor.Custom
  6683. Part515.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6684. Part515.CFrame = CFrame.new(46.3291168, 0.308330357, 135.534241, 0.586932302, 0.809548557, -0.0126173757, -0.625477135, 0.443472356, -0.641958535, -0.514096916, 0.384675056, 0.766635537)
  6685. Part515.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6686. Part515.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6687. Part515.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6688. Part515.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6689. Part515.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6690. Part515.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6691. Part515.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6692. Part515.Position = Vector3.new(46.3291168, 0.308330357, 135.534241)
  6693. Part515.Orientation = Vector3.new(39.9399986, -0.939999998, -54.6599998)
  6694. Part515.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6695. SpecialMesh516.Parent = Part515
  6696. SpecialMesh516.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  6697. SpecialMesh516.MeshType = Enum.MeshType.Wedge
  6698. SpecialMesh516.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  6699. Folder517.Name = "CFrames"
  6700. Folder517.Parent = Part515
  6701. CFrameValue518.Name = "C0"
  6702. CFrameValue518.Parent = Folder517
  6703. CFrameValue518.Value = CFrame.new(0.120788813, -1.50241089, -0.165927887, 0.596564949, -0.443424731, 0.668943048, -0.536869943, 0.399069846, 0.743313372, -0.596568942, -0.802583754, 9.2338305e-06)
  6704. Part519.Parent = Model0
  6705. Part519.Material = Enum.Material.Metal
  6706. Part519.BrickColor = BrickColor.new("Dark stone grey")
  6707. Part519.Rotation = Vector3.new(-1.80999994, 13.0699997, -45.25)
  6708. Part519.Anchored = true
  6709. Part519.FormFactor = Enum.FormFactor.Custom
  6710. Part519.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6711. Part519.CFrame = CFrame.new(46.0021095, 0.595594823, 135.566711, 0.685720384, 0.691834927, 0.226207405, -0.714912832, 0.698536813, 0.030756589, -0.136734858, -0.182806864, 0.973594248)
  6712. Part519.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6713. Part519.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6714. Part519.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6715. Part519.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6716. Part519.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6717. Part519.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6718. Part519.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6719. Part519.Position = Vector3.new(46.0021095, 0.595594823, 135.566711)
  6720. Part519.Orientation = Vector3.new(-1.75999999, 13.0799999, -45.6599998)
  6721. Part519.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6722. SpecialMesh520.Parent = Part519
  6723. SpecialMesh520.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  6724. SpecialMesh520.MeshType = Enum.MeshType.Wedge
  6725. SpecialMesh520.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  6726. Folder521.Name = "CFrames"
  6727. Folder521.Parent = Part519
  6728. CFrameValue522.Name = "C0"
  6729. CFrameValue522.Parent = Folder521
  6730. CFrameValue522.Value = CFrame.new(-0.159447908, -1.45925903, 0.165912628, 0.697647035, -0.716441512, -9.41008329e-06, -0.163071439, -0.1588047, 0.973750293, -0.697649181, -0.679343641, -0.227624938)
  6731. Part523.Parent = Model0
  6732. Part523.Material = Enum.Material.Metal
  6733. Part523.BrickColor = BrickColor.new("Dark stone grey")
  6734. Part523.Rotation = Vector3.new(178.849991, -41.8999977, 144.709991)
  6735. Part523.Anchored = true
  6736. Part523.FormFactor = Enum.FormFactor.Custom
  6737. Part523.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6738. Part523.CFrame = CFrame.new(46.3339691, 0.589796841, 135.567368, -0.607548535, -0.430067122, -0.667791009, -0.566706419, 0.82378453, -0.0149454065, 0.556537986, 0.36935845, -0.744204342)
  6739. Part523.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6740. Part523.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6741. Part523.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6742. Part523.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6743. Part523.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6744. Part523.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6745. Part523.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6746. Part523.Position = Vector3.new(46.3339691, 0.589796841, 135.567368)
  6747. Part523.Orientation = Vector3.new(0.859999955, -138.099991, -34.5299988)
  6748. Part523.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6749. SpecialMesh524.Parent = Part523
  6750. SpecialMesh524.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  6751. SpecialMesh524.MeshType = Enum.MeshType.Wedge
  6752. SpecialMesh524.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  6753. Folder525.Name = "CFrames"
  6754. Folder525.Parent = Part523
  6755. CFrameValue526.Name = "C0"
  6756. CFrameValue526.Parent = Folder525
  6757. CFrameValue526.Value = CFrame.new(-0.159362555, -1.45928955, -0.166000366, 0.596551836, -0.802574694, -3.55392694e-06, 0.536872089, 0.399060458, -0.74331665, 0.596578419, 0.443433017, 0.668951988)
  6758. Part527.Parent = Model0
  6759. Part527.Material = Enum.Material.Metal
  6760. Part527.BrickColor = BrickColor.new("Dark stone grey")
  6761. Part527.Rotation = Vector3.new(-96.7399979, -89.0400009, 175.300003)
  6762. Part527.Anchored = true
  6763. Part527.FormFactor = Enum.FormFactor.Custom
  6764. Part527.Size = Vector3.new(0.316868067, 0.418179721, 0.316868067)
  6765. Part527.CFrame = CFrame.new(46.165062, 0.437791824, 135.69548, -0.0172711033, -0.00141864689, -0.999858618, -0.999217927, 0.0355995446, 0.0172101036, 0.0355692096, 0.99936527, -0.00203249883)
  6766. Part527.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6767. Part527.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6768. Part527.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6769. Part527.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6770. Part527.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6771. Part527.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6772. Part527.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6773. Part527.Position = Vector3.new(46.165062, 0.437791824, 135.69548)
  6774. Part527.Orientation = Vector3.new(-0.98999995, -90.1199951, -87.9599991)
  6775. Part527.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6776. BlockMesh528.Parent = Part527
  6777. BlockMesh528.Scale = Vector3.new(0.761905074, 1, 0.802721143)
  6778. BlockMesh528.Scale = Vector3.new(0.761905074, 1, 0.802721143)
  6779. Folder529.Name = "CFrames"
  6780. Folder529.Parent = Part527
  6781. CFrameValue530.Name = "C0"
  6782. CFrameValue530.Parent = Folder529
  6783. CFrameValue530.Value = CFrame.new(-2.62260437e-06, -1.33644104, 3.81469727e-06, 0.999999881, -5.66244125e-07, -2.7706119e-07, -5.66244125e-07, 1.00000024, -9.05711204e-08, -2.7706119e-07, -9.05711204e-08, 1.00001764)
  6784. Part531.Parent = Model0
  6785. Part531.Material = Enum.Material.Metal
  6786. Part531.BrickColor = BrickColor.new("Dark stone grey")
  6787. Part531.Rotation = Vector3.new(135.979996, -0.599999964, 54.1699982)
  6788. Part531.Anchored = true
  6789. Part531.FormFactor = Enum.FormFactor.Custom
  6790. Part531.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6791. Part531.CFrame = CFrame.new(46.0021095, 0.595594823, 135.566711, 0.585411727, -0.810678899, -0.0105141569, -0.587256193, -0.415059626, -0.694878399, 0.558954, 0.41296038, -0.719051123)
  6792. Part531.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6793. Part531.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6794. Part531.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6795. Part531.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6796. Part531.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6797. Part531.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6798. Part531.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6799. Part531.Position = Vector3.new(46.0021095, 0.595594823, 135.566711)
  6800. Part531.Orientation = Vector3.new(44.0200005, -179.159988, -125.25)
  6801. Part531.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6802. SpecialMesh532.Parent = Part531
  6803. SpecialMesh532.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  6804. SpecialMesh532.MeshType = Enum.MeshType.Wedge
  6805. SpecialMesh532.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  6806. Folder533.Name = "CFrames"
  6807. Folder533.Parent = Part531
  6808. CFrameValue534.Name = "C0"
  6809. CFrameValue534.Parent = Folder533
  6810. CFrameValue534.Value = CFrame.new(-0.159447908, -1.45925903, 0.165912628, 0.59656781, 0.443425, 0.668940544, 0.536862671, 0.399072409, -0.743317187, -0.596571743, 0.802581728, 1.52123393e-05)
  6811. Part535.Parent = Model0
  6812. Part535.Material = Enum.Material.Metal
  6813. Part535.BrickColor = BrickColor.new("Dark stone grey")
  6814. Part535.Rotation = Vector3.new(-2.92999983, -42.0599976, -144.709991)
  6815. Part535.Anchored = true
  6816. Part535.FormFactor = Enum.FormFactor.Custom
  6817. Part535.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6818. Part535.CFrame = CFrame.new(46.0353813, 0.274691135, 135.535034, -0.606033027, 0.428934097, -0.669893444, -0.604927301, -0.795374751, 0.0379808359, -0.516520977, 0.428250194, 0.741490602)
  6819. Part535.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6820. Part535.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6821. Part535.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6822. Part535.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6823. Part535.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6824. Part535.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6825. Part535.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6826. Part535.Position = Vector3.new(46.0353813, 0.274691135, 135.535034)
  6827. Part535.Orientation = Vector3.new(-2.18000007, -42.0999985, -142.73999)
  6828. Part535.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6829. SpecialMesh536.Parent = Part535
  6830. SpecialMesh536.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  6831. SpecialMesh536.MeshType = Enum.MeshType.Wedge
  6832. SpecialMesh536.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  6833. Folder537.Name = "CFrames"
  6834. Folder537.Parent = Part535
  6835. CFrameValue538.Name = "C0"
  6836. CFrameValue538.Parent = Folder537
  6837. CFrameValue538.Value = CFrame.new(0.15950346, -1.50239563, 0.127185822, 0.596548855, 0.802577078, -7.09854066e-06, -0.536868513, 0.399054885, 0.743322432, 0.596586287, -0.443432331, 0.668945253)
  6838. Part539.Parent = Model0
  6839. Part539.Material = Enum.Material.Metal
  6840. Part539.BrickColor = BrickColor.new("Dark stone grey")
  6841. Part539.Rotation = Vector3.new(-168.87999, 0.299999982, -44.8199997)
  6842. Part539.Anchored = true
  6843. Part539.FormFactor = Enum.FormFactor.Custom
  6844. Part539.Size = Vector3.new(0.316868067, 0.316868067, 0.323239535)
  6845. Part539.CFrame = CFrame.new(46.3330536, 0.556943357, 135.734619, 0.709370077, 0.704828799, 0.00530599151, 0.690883994, -0.696787655, 0.192786202, 0.139577642, -0.133090004, -0.981226444)
  6846. Part539.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6847. Part539.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6848. Part539.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6849. Part539.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6850. Part539.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6851. Part539.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6852. Part539.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6853. Part539.Position = Vector3.new(46.3330536, 0.556943357, 135.734619)
  6854. Part539.Orientation = Vector3.new(-11.1199999, 179.690002, 135.23999)
  6855. Part539.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6856. SpecialMesh540.Parent = Part539
  6857. SpecialMesh540.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  6858. SpecialMesh540.MeshType = Enum.MeshType.Wedge
  6859. SpecialMesh540.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  6860. Folder541.Name = "CFrames"
  6861. Folder541.Parent = Part539
  6862. CFrameValue542.Name = "C0"
  6863. CFrameValue542.Parent = Folder541
  6864. CFrameValue542.Value = CFrame.new(-0.120570421, -1.29330444, -0.165988922, -0.697630644, 0.679335594, -0.227628529, 0.163077861, -0.158810765, -0.973748088, -0.697663307, -0.716450453, 6.97071664e-06)
  6865. Part543.Parent = Model0
  6866. Part543.Material = Enum.Material.Metal
  6867. Part543.BrickColor = BrickColor.new("Dark stone grey")
  6868. Part543.Rotation = Vector3.new(164.800003, -0.149999991, 135.220001)
  6869. Part543.Anchored = true
  6870. Part543.FormFactor = Enum.FormFactor.Custom
  6871. Part543.Size = Vector3.new(0.316868067, 0.316868067, 0.323239535)
  6872. Part543.CFrame = CFrame.new(45.9969559, 0.321586132, 135.742538, -0.709830821, -0.704380214, -0.00255547976, -0.679273129, 0.68548131, -0.262114108, 0.186377525, -0.184318885, -0.965033829)
  6873. Part543.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6874. Part543.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6875. Part543.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6876. Part543.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6877. Part543.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6878. Part543.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6879. Part543.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6880. Part543.Position = Vector3.new(45.9969559, 0.321586132, 135.742538)
  6881. Part543.Orientation = Vector3.new(15.1999998, -179.849991, -44.7399979)
  6882. Part543.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6883. SpecialMesh544.Parent = Part543
  6884. SpecialMesh544.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  6885. SpecialMesh544.MeshType = Enum.MeshType.Wedge
  6886. SpecialMesh544.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  6887. Folder545.Name = "CFrames"
  6888. Folder545.Parent = Part543
  6889. CFrameValue546.Name = "C0"
  6890. CFrameValue546.Parent = Folder545
  6891. CFrameValue546.Value = CFrame.new(0.120689392, -1.29330444, 0.165992737, 0.697630703, -0.679335892, 0.227627769, 0.163084418, -0.158799812, -0.973748803, 0.697661281, 0.71645242, 5.53764403e-06)
  6892. Part547.Parent = Model0
  6893. Part547.Material = Enum.Material.Metal
  6894. Part547.BrickColor = BrickColor.new("Dark stone grey")
  6895. Part547.Reflectance = 0.10000000149012
  6896. Part547.Rotation = Vector3.new(-92.0400009, 0.98999995, -0.0799999982)
  6897. Part547.Anchored = true
  6898. Part547.FormFactor = Enum.FormFactor.Custom
  6899. Part547.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6900. Part547.CFrame = CFrame.new(46.162529, 0.272502363, 135.535294, 0.999858379, 0.00141303474, 0.0172829702, -0.0172221623, -0.0355938375, 0.999218047, 0.00202721357, -0.999365449, -0.0355635844)
  6901. Part547.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6902. Part547.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6903. Part547.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6904. Part547.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6905. Part547.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6906. Part547.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6907. Part547.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6908. Part547.Position = Vector3.new(46.162529, 0.272502363, 135.535294)
  6909. Part547.Orientation = Vector3.new(-87.7299957, 154.080002, -154.179993)
  6910. Part547.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6911. SpecialMesh548.Parent = Part547
  6912. SpecialMesh548.Scale = Vector3.new(0.802721381, 0.272108823, 0.244898811)
  6913. SpecialMesh548.MeshType = Enum.MeshType.Wedge
  6914. SpecialMesh548.Scale = Vector3.new(0.802721381, 0.272108823, 0.244898811)
  6915. Folder549.Name = "CFrames"
  6916. Folder549.Parent = Part547
  6917. CFrameValue550.Name = "C0"
  6918. CFrameValue550.Parent = Folder549
  6919. CFrameValue550.Value = CFrame.new(0.15950346, -1.50239563, 1.90734863e-05, 1.2142249e-05, -5.04031777e-06, -1, -5.62006608e-06, -1.00000024, 6.17653131e-06, -1.00001752, 5.80050983e-06, -1.15975563e-05)
  6920. Part551.Parent = Model0
  6921. Part551.Material = Enum.Material.Metal
  6922. Part551.BrickColor = BrickColor.new("Dark stone grey")
  6923. Part551.Rotation = Vector3.new(-2.26999998, -13.2399998, 134.73999)
  6924. Part551.Anchored = true
  6925. Part551.FormFactor = Enum.FormFactor.Custom
  6926. Part551.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6927. Part551.CFrame = CFrame.new(46.3283768, 0.271101058, 135.578735, -0.685257912, -0.691387951, -0.228958488, 0.703304768, -0.709841609, 0.0385719649, -0.189190447, -0.134595126, 0.972672164)
  6928. Part551.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6929. Part551.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6930. Part551.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6931. Part551.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6932. Part551.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6933. Part551.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6934. Part551.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6935. Part551.Position = Vector3.new(46.3283768, 0.271101058, 135.578735)
  6936. Part551.Orientation = Vector3.new(-2.21000004, -13.25, 135.270004)
  6937. Part551.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6938. SpecialMesh552.Parent = Part551
  6939. SpecialMesh552.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  6940. SpecialMesh552.MeshType = Enum.MeshType.Wedge
  6941. SpecialMesh552.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  6942. Folder553.Name = "CFrames"
  6943. Folder553.Parent = Part551
  6944. CFrameValue554.Name = "C0"
  6945. CFrameValue554.Parent = Folder553
  6946. CFrameValue554.Value = CFrame.new(0.159584522, -1.45927429, -0.165916443, -0.697648942, 0.716440022, 9.74908471e-06, -0.163060889, -0.158798903, 0.973752737, 0.697649539, 0.679347336, 0.227613002)
  6947. Part555.Parent = Model0
  6948. Part555.Material = Enum.Material.Metal
  6949. Part555.BrickColor = BrickColor.new("Dark stone grey")
  6950. Part555.Reflectance = 0.10000000149012
  6951. Part555.Rotation = Vector3.new(-96.7299957, -89.0400009, 175.300003)
  6952. Part555.Anchored = true
  6953. Part555.FormFactor = Enum.FormFactor.Custom
  6954. Part555.Size = Vector3.new(0.316868067, 0.331957012, 0.316868067)
  6955. Part555.CFrame = CFrame.new(46.3309593, 0.436474502, 135.738892, -0.0172768179, -0.00141897704, -0.999858618, -0.999217987, 0.035599038, 0.0172157958, 0.0355686955, 0.999365151, -0.0020330227)
  6956. Part555.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6957. Part555.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6958. Part555.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6959. Part555.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6960. Part555.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6961. Part555.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6962. Part555.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6963. Part555.Position = Vector3.new(46.3309593, 0.436474502, 135.738892)
  6964. Part555.Orientation = Vector3.new(-0.98999995, -90.1199951, -87.9599991)
  6965. Part555.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6966. SpecialMesh556.Parent = Part555
  6967. SpecialMesh556.Scale = Vector3.new(0.761905074, 1, 0.244898811)
  6968. SpecialMesh556.MeshType = Enum.MeshType.Wedge
  6969. SpecialMesh556.Scale = Vector3.new(0.761905074, 1, 0.244898811)
  6970. Folder557.Name = "CFrames"
  6971. Folder557.Parent = Part555
  6972. CFrameValue558.Name = "C0"
  6973. CFrameValue558.Parent = Folder557
  6974. CFrameValue558.Value = CFrame.new(-7.62939453e-06, -1.2933197, -0.165981293, 1, -5.96046448e-08, -5.9842132e-06, -1.0766089e-06, 1.00000012, -4.11644578e-07, 5.43671194e-06, 2.30967999e-07, 1.00001764)
  6975. Part559.Parent = Model0
  6976. Part559.Material = Enum.Material.Metal
  6977. Part559.BrickColor = BrickColor.new("Dark stone grey")
  6978. Part559.Reflectance = 0.10000000149012
  6979. Part559.Rotation = Vector3.new(83.2699966, 89.0400009, -175.309998)
  6980. Part559.Anchored = true
  6981. Part559.FormFactor = Enum.FormFactor.Custom
  6982. Part559.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  6983. Part559.CFrame = CFrame.new(45.9993477, 0.434749782, 135.529282, -0.0172714069, 0.00141656306, 0.999858677, -0.999217749, -0.0356043056, -0.0172104686, 0.0355739966, -0.999365091, 0.00203050813)
  6984. Part559.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6985. Part559.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6986. Part559.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6987. Part559.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6988. Part559.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6989. Part559.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6990. Part559.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6991. Part559.Position = Vector3.new(45.9993477, 0.434749782, 135.529282)
  6992. Part559.Orientation = Vector3.new(0.98999995, 89.8799973, -92.0400009)
  6993. Part559.Color = Color3.new(0.388235, 0.372549, 0.384314)
  6994. SpecialMesh560.Parent = Part559
  6995. SpecialMesh560.Scale = Vector3.new(0.761905074, 0.272108823, 0.244898811)
  6996. SpecialMesh560.MeshType = Enum.MeshType.Wedge
  6997. SpecialMesh560.Scale = Vector3.new(0.761905074, 0.272108823, 0.244898811)
  6998. Folder561.Name = "CFrames"
  6999. Folder561.Parent = Part559
  7000. CFrameValue562.Name = "C0"
  7001. CFrameValue562.Parent = Folder561
  7002. CFrameValue562.Value = CFrame.new(-1.21593475e-05, -1.50239563, 0.165981293, 0.99999994, 5.36814332e-06, 5.69474651e-07, 4.22075391e-06, -1.00000024, -1.91177242e-06, 2.05400283e-08, 2.0917505e-06, -1.00001764)
  7003. Part563.Parent = Model0
  7004. Part563.Material = Enum.Material.Metal
  7005. Part563.BrickColor = BrickColor.new("Dark stone grey")
  7006. Part563.Reflectance = 0.10000000149012
  7007. Part563.Rotation = Vector3.new(87.9599991, -0.98999995, -179.919998)
  7008. Part563.Anchored = true
  7009. Part563.FormFactor = Enum.FormFactor.Custom
  7010. Part563.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  7011. Part563.CFrame = CFrame.new(46.1680641, 0.591133416, 135.523972, -0.999858558, 0.00141170109, -0.0172829255, 0.0172221679, -0.0355939381, -0.999218047, -0.00202588132, -0.999365449, 0.0355637074)
  7012. Part563.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7013. Part563.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7014. Part563.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7015. Part563.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7016. Part563.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7017. Part563.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7018. Part563.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7019. Part563.Position = Vector3.new(46.1680641, 0.591133416, 135.523972)
  7020. Part563.Orientation = Vector3.new(87.7299957, -25.9200001, 154.179993)
  7021. Part563.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7022. SpecialMesh564.Parent = Part563
  7023. SpecialMesh564.Scale = Vector3.new(0.802721381, 0.272108823, 0.244898811)
  7024. SpecialMesh564.MeshType = Enum.MeshType.Wedge
  7025. SpecialMesh564.Scale = Vector3.new(0.802721381, 0.272108823, 0.244898811)
  7026. Folder565.Name = "CFrames"
  7027. Folder565.Parent = Part563
  7028. CFrameValue566.Name = "C0"
  7029. CFrameValue566.Parent = Folder565
  7030. CFrameValue566.Value = CFrame.new(-0.15937686, -1.50236511, -7.62939453e-06, -1.20967234e-05, -4.91738319e-06, 1, 6.95209019e-06, -1.00000024, -6.05359674e-06, 1.00001776, 7.13230111e-06, 1.15526054e-05)
  7031. Part567.Parent = Model0
  7032. Part567.Material = Enum.Material.Metal
  7033. Part567.BrickColor = BrickColor.new("Dark stone grey")
  7034. Part567.Rotation = Vector3.new(11.1099997, -0.299999982, -135.179993)
  7035. Part567.Anchored = true
  7036. Part567.FormFactor = Enum.FormFactor.Custom
  7037. Part567.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  7038. Part567.CFrame = CFrame.new(46.3339691, 0.589796841, 135.567368, -0.709376097, 0.704822838, -0.00529921381, -0.690880358, -0.696794093, -0.192775637, -0.13956435, -0.13308841, 0.98122853)
  7039. Part567.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7040. Part567.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7041. Part567.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7042. Part567.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7043. Part567.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7044. Part567.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7045. Part567.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7046. Part567.Position = Vector3.new(46.3339691, 0.589796841, 135.567368)
  7047. Part567.Orientation = Vector3.new(11.1099997, -0.310000002, -135.23999)
  7048. Part567.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7049. SpecialMesh568.Parent = Part567
  7050. SpecialMesh568.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  7051. SpecialMesh568.MeshType = Enum.MeshType.Wedge
  7052. SpecialMesh568.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  7053. Folder569.Name = "CFrames"
  7054. Folder569.Parent = Part567
  7055. CFrameValue570.Name = "C0"
  7056. CFrameValue570.Parent = Folder569
  7057. CFrameValue570.Value = CFrame.new(-0.159362555, -1.45928955, -0.166000366, 0.697627604, 0.67934221, 0.227617919, -0.163064435, -0.158809379, 0.973750532, 0.697669327, -0.716444612, -1.35698356e-05)
  7058. Part571.Parent = Model0
  7059. Part571.Material = Enum.Material.Metal
  7060. Part571.BrickColor = BrickColor.new("Dark stone grey")
  7061. Part571.Rotation = Vector3.new(-1.14999998, 41.8999977, 35.2900009)
  7062. Part571.Anchored = true
  7063. Part571.FormFactor = Enum.FormFactor.Custom
  7064. Part571.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  7065. Part571.CFrame = CFrame.new(46.2952347, 0.588934064, 135.524216, 0.607551277, -0.43006441, 0.667790115, 0.56670475, 0.823785841, 0.0149419028, -0.556536615, 0.369358987, 0.744205117)
  7066. Part571.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7067. Part571.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7068. Part571.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7069. Part571.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7070. Part571.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7071. Part571.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7072. Part571.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7073. Part571.Position = Vector3.new(46.2952347, 0.588934064, 135.524216)
  7074. Part571.Orientation = Vector3.new(-0.859999955, 41.8999977, 34.5299988)
  7075. Part571.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7076. SpecialMesh572.Parent = Part571
  7077. SpecialMesh572.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  7078. SpecialMesh572.MeshType = Enum.MeshType.Wedge
  7079. SpecialMesh572.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  7080. Folder573.Name = "CFrames"
  7081. Folder573.Parent = Part571
  7082. CFrameValue574.Name = "C0"
  7083. CFrameValue574.Parent = Folder573
  7084. CFrameValue574.Value = CFrame.new(-0.159366608, -1.50238037, -0.127197266, -0.596550226, -0.802576065, 7.09854066e-06, -0.536870837, 0.399061054, 0.743317306, -0.596581161, 0.443430334, -0.668951154)
  7085. Part575.Parent = Model0
  7086. Part575.Material = Enum.Material.Metal
  7087. Part575.BrickColor = BrickColor.new("Dark stone grey")
  7088. Part575.Rotation = Vector3.new(178.190002, -13.0699997, -134.75)
  7089. Part575.Anchored = true
  7090. Part575.FormFactor = Enum.FormFactor.Custom
  7091. Part575.Size = Vector3.new(0.316868067, 0.316868067, 0.323239535)
  7092. Part575.CFrame = CFrame.new(46.0406609, 0.600843489, 135.732651, -0.685723305, 0.691828668, -0.226217687, 0.714907527, 0.698542714, -0.0307497624, 0.136748254, -0.182808429, -0.973591983)
  7093. Part575.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7094. Part575.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7095. Part575.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7096. Part575.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7097. Part575.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7098. Part575.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7099. Part575.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7100. Part575.Position = Vector3.new(46.0406609, 0.600843489, 135.732651)
  7101. Part575.Orientation = Vector3.new(1.75999999, -166.919998, 45.6599998)
  7102. Part575.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7103. SpecialMesh576.Parent = Part575
  7104. SpecialMesh576.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  7105. SpecialMesh576.MeshType = Enum.MeshType.Wedge
  7106. SpecialMesh576.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  7107. Folder577.Name = "CFrames"
  7108. Folder577.Parent = Part575
  7109. CFrameValue578.Name = "C0"
  7110. CFrameValue578.Parent = Folder577
  7111. CFrameValue578.Value = CFrame.new(-0.159455776, -1.29330444, 0.127120972, -0.697641194, -0.716447353, 2.84612179e-06, 0.163084641, -0.158806056, -0.97374773, 0.697652042, -0.679337263, 0.227635339)
  7112. Part579.Parent = Model0
  7113. Part579.Material = Enum.Material.Metal
  7114. Part579.BrickColor = BrickColor.new("Dark stone grey")
  7115. Part579.Rotation = Vector3.new(-140.059998, 0.719999969, -125.939995)
  7116. Part579.Anchored = true
  7117. Part579.FormFactor = Enum.FormFactor.Custom
  7118. Part579.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  7119. Part579.CFrame = CFrame.new(46.3283768, 0.271101058, 135.578735, -0.586934149, 0.809547365, 0.0126138311, 0.625474393, 0.443475217, 0.64195931, 0.514098227, 0.38467443, -0.766634822)
  7120. Part579.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7121. Part579.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7122. Part579.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7123. Part579.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7124. Part579.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7125. Part579.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7126. Part579.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7127. Part579.Position = Vector3.new(46.3283768, 0.271101058, 135.578735)
  7128. Part579.Orientation = Vector3.new(-39.9399986, 179.059998, 54.6599998)
  7129. Part579.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7130. SpecialMesh580.Parent = Part579
  7131. SpecialMesh580.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  7132. SpecialMesh580.MeshType = Enum.MeshType.Wedge
  7133. SpecialMesh580.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  7134. Folder581.Name = "CFrames"
  7135. Folder581.Parent = Part579
  7136. CFrameValue582.Name = "C0"
  7137. CFrameValue582.Parent = Folder581
  7138. CFrameValue582.Value = CFrame.new(0.159584522, -1.45927429, -0.165916443, -0.596562147, -0.443427593, -0.668943703, 0.536871135, 0.399069309, -0.743312657, 0.59657073, -0.802582502, -5.67664392e-06)
  7139. Part583.Parent = Model0
  7140. Part583.Material = Enum.Material.Metal
  7141. Part583.BrickColor = BrickColor.new("Dark stone grey")
  7142. Part583.Reflectance = 0.10000000149012
  7143. Part583.Rotation = Vector3.new(-92.0400009, 0.98999995, 179.919998)
  7144. Part583.Anchored = true
  7145. Part583.FormFactor = Enum.FormFactor.Custom
  7146. Part583.Size = Vector3.new(0.316868067, 0.331957012, 0.316868067)
  7147. Part583.CFrame = CFrame.new(46.1622467, 0.27993691, 135.744217, -0.999858439, -0.00141296443, 0.0172830075, 0.0172222052, 0.0355939083, 0.999218047, -0.00202714605, 0.999365449, -0.0355636515)
  7148. Part583.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7149. Part583.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7150. Part583.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7151. Part583.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7152. Part583.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7153. Part583.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7154. Part583.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7155. Part583.Position = Vector3.new(46.1622467, 0.27993691, 135.744217)
  7156. Part583.Orientation = Vector3.new(-87.7299957, 154.080002, 25.8199997)
  7157. Part583.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7158. SpecialMesh584.Parent = Part583
  7159. SpecialMesh584.Scale = Vector3.new(0.802721381, 1, 0.244898811)
  7160. SpecialMesh584.MeshType = Enum.MeshType.Wedge
  7161. SpecialMesh584.Scale = Vector3.new(0.802721381, 1, 0.244898811)
  7162. Folder585.Name = "CFrames"
  7163. Folder585.Parent = Part583
  7164. CFrameValue586.Name = "C0"
  7165. CFrameValue586.Parent = Folder585
  7166. CFrameValue586.Value = CFrame.new(0.159510851, -1.29335022, 3.81469727e-06, -1.21826888e-05, 4.96953726e-06, -1, 5.68944961e-06, 1.00000024, 6.10947609e-06, 1.00001764, -5.86966053e-06, -1.1634671e-05)
  7167. Part587.Parent = Model0
  7168. Part587.Material = Enum.Material.Metal
  7169. Part587.BrickColor = BrickColor.new("Dark stone grey")
  7170. Part587.Rotation = Vector3.new(-44.0200005, 0.599999964, 125.829994)
  7171. Part587.Anchored = true
  7172. Part587.FormFactor = Enum.FormFactor.Custom
  7173. Part587.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  7174. Part587.CFrame = CFrame.new(46.0014954, 0.555304468, 135.525009, -0.585410237, -0.810680032, 0.0105177732, 0.587259173, -0.415056974, 0.694877446, -0.55895263, 0.412961006, 0.719051838)
  7175. Part587.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7176. Part587.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7177. Part587.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7178. Part587.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7179. Part587.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7180. Part587.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7181. Part587.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7182. Part587.Position = Vector3.new(46.0014954, 0.555304468, 135.525009)
  7183. Part587.Orientation = Vector3.new(-44.0200005, 0.839999974, 125.25)
  7184. Part587.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7185. SpecialMesh588.Parent = Part587
  7186. SpecialMesh588.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  7187. SpecialMesh588.MeshType = Enum.MeshType.Wedge
  7188. SpecialMesh588.Scale = Vector3.new(0.0544217676, 0.305142522, 0.202264965)
  7189. Folder589.Name = "CFrames"
  7190. Folder589.Parent = Part587
  7191. CFrameValue590.Name = "C0"
  7192. CFrameValue590.Parent = Folder589
  7193. CFrameValue590.Value = CFrame.new(-0.120661736, -1.50238037, 0.165916443, -0.59657073, 0.443422407, -0.66893959, -0.536861241, 0.399073124, 0.743317842, 0.596570313, 0.80258286, -1.88449631e-05)
  7194. Part591.Parent = Model0
  7195. Part591.Material = Enum.Material.Metal
  7196. Part591.BrickColor = BrickColor.new("Dark stone grey")
  7197. Part591.Rotation = Vector3.new(-15.1899996, 0.149999991, 44.7799988)
  7198. Part591.Anchored = true
  7199. Part591.FormFactor = Enum.FormFactor.Custom
  7200. Part591.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  7201. Part591.CFrame = CFrame.new(45.9965363, 0.276894867, 135.578049, 0.70983696, -0.704374075, 0.00254890556, 0.679270446, 0.685487866, 0.262103736, -0.186364204, -0.184317634, 0.965036511)
  7202. Part591.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7203. Part591.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7204. Part591.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7205. Part591.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7206. Part591.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7207. Part591.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7208. Part591.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7209. Part591.Position = Vector3.new(45.9965363, 0.276894867, 135.578049)
  7210. Part591.Orientation = Vector3.new(-15.1899996, 0.149999991, 44.7399979)
  7211. Part591.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7212. SpecialMesh592.Parent = Part591
  7213. SpecialMesh592.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  7214. SpecialMesh592.MeshType = Enum.MeshType.Wedge
  7215. SpecialMesh592.Scale = Vector3.new(0.0544217676, 0.341822326, 0.0557471775)
  7216. Folder593.Name = "CFrames"
  7217. Folder593.Parent = Part591
  7218. CFrameValue594.Name = "C0"
  7219. CFrameValue594.Parent = Folder593
  7220. CFrameValue594.Value = CFrame.new(0.159502029, -1.45927429, 0.165977478, -0.697627664, -0.679342508, -0.227617189, -0.163071215, -0.158798337, 0.973751128, -0.69766748, 0.7164464, 8.51694494e-07)
  7221. Part595.Parent = Model0
  7222. Part595.Material = Enum.Material.Metal
  7223. Part595.BrickColor = BrickColor.new("Dark stone grey")
  7224. Part595.Rotation = Vector3.new(177.069992, 42.0599976, -35.2900009)
  7225. Part595.Anchored = true
  7226. Part595.FormFactor = Enum.FormFactor.Custom
  7227. Part595.Size = Vector3.new(0.316868067, 0.316868067, 0.316868067)
  7228. Part595.CFrame = CFrame.new(45.9965363, 0.276894867, 135.578049, 0.606030047, 0.428936869, 0.669894338, 0.604929149, -0.79537338, -0.037977159, 0.516522288, 0.428249598, -0.741489947)
  7229. Part595.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7230. Part595.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7231. Part595.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7232. Part595.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7233. Part595.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7234. Part595.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7235. Part595.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7236. Part595.Position = Vector3.new(45.9965363, 0.276894867, 135.578049)
  7237. Part595.Orientation = Vector3.new(2.18000007, 137.899994, 142.73999)
  7238. Part595.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7239. SpecialMesh596.Parent = Part595
  7240. SpecialMesh596.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  7241. SpecialMesh596.MeshType = Enum.MeshType.Wedge
  7242. SpecialMesh596.Scale = Vector3.new(0.0544217676, 0.305142522, 0.163824365)
  7243. Folder597.Name = "CFrames"
  7244. Folder597.Parent = Part595
  7245. CFrameValue598.Name = "C0"
  7246. CFrameValue598.Parent = Folder597
  7247. CFrameValue598.Value = CFrame.new(0.159502029, -1.45927429, 0.165977478, -0.596550584, 0.802575648, 3.43099236e-06, 0.536869943, 0.399054319, -0.743321598, -0.596583247, -0.443435073, -0.668946087)
  7248. Part599.Parent = Model0
  7249. Part599.Material = Enum.Material.Metal
  7250. Part599.BrickColor = BrickColor.new("Dark stone grey")
  7251. Part599.Reflectance = 0.10000000149012
  7252. Part599.Rotation = Vector3.new(83.2699966, 89.0400009, 4.69999981)
  7253. Part599.Anchored = true
  7254. Part599.FormFactor = Enum.FormFactor.Custom
  7255. Part599.Size = Vector3.new(0.316868067, 0.331957012, 0.316868067)
  7256. Part599.CFrame = CFrame.new(45.999054, 0.442187369, 135.738235, 0.0172768291, -0.00141897844, 0.999858618, 0.999217987, 0.0355990082, -0.017215807, -0.035568662, 0.99936527, 0.00203302316)
  7257. Part599.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7258. Part599.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7259. Part599.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7260. Part599.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7261. Part599.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7262. Part599.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7263. Part599.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7264. Part599.Position = Vector3.new(45.999054, 0.442187369, 135.738235)
  7265. Part599.Orientation = Vector3.new(0.98999995, 89.8799973, 87.9599991)
  7266. Part599.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7267. SpecialMesh600.Parent = Part599
  7268. SpecialMesh600.Scale = Vector3.new(0.761905074, 1, 0.244898811)
  7269. SpecialMesh600.MeshType = Enum.MeshType.Wedge
  7270. SpecialMesh600.Scale = Vector3.new(0.761905074, 1, 0.244898811)
  7271. Folder601.Name = "CFrames"
  7272. Folder601.Parent = Part599
  7273. CFrameValue602.Name = "C0"
  7274. CFrameValue602.Parent = Folder601
  7275. CFrameValue602.Value = CFrame.new(-6.91413879e-06, -1.29330444, 0.165981293, -1, -2.23517418e-08, 5.9954109e-06, 1.11013651e-06, 1.00000024, 4.11644578e-07, -5.4479533e-06, 2.3166649e-07, -1.00001764)
  7276. Part603.Parent = Model0
  7277. Part603.Material = Enum.Material.Metal
  7278. Part603.BrickColor = BrickColor.new("Dark stone grey")
  7279. Part603.Rotation = Vector3.new(177.729996, 13.2399998, 45.25)
  7280. Part603.Anchored = true
  7281. Part603.FormFactor = Enum.FormFactor.Custom
  7282. Part603.Size = Vector3.new(0.316868067, 0.316868067, 0.323239535)
  7283. Part603.CFrame = CFrame.new(46.2893715, 0.277675599, 135.744507, 0.685261011, -0.691381574, 0.22896874, -0.703298211, -0.709847569, -0.0385786034, 0.189203456, -0.134596214, -0.972669482)
  7284. Part603.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7285. Part603.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7286. Part603.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7287. Part603.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7288. Part603.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7289. Part603.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7290. Part603.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7291. Part603.Position = Vector3.new(46.2893715, 0.277675599, 135.744507)
  7292. Part603.Orientation = Vector3.new(2.21000004, 166.75, -135.270004)
  7293. Part603.Color = Color3.new(0.388235, 0.372549, 0.384314)
  7294. SpecialMesh604.Parent = Part603
  7295. SpecialMesh604.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  7296. SpecialMesh604.MeshType = Enum.MeshType.Wedge
  7297. SpecialMesh604.Scale = Vector3.new(0.0544217676, 0.341822326, 1)
  7298. Folder605.Name = "CFrames"
  7299. Folder605.Parent = Part603
  7300. CFrameValue606.Name = "C0"
  7301. CFrameValue606.Parent = Folder605
  7302. CFrameValue606.Value = CFrame.new(0.159585238, -1.2933197, -0.127140045, 0.697642803, 0.716445804, -3.19629908e-06, 0.163074136, -0.158800215, -0.973750293, -0.697652578, 0.679340839, -0.227623358)
  7303. for i,v in pairs(mas:GetChildren()) do
  7304. v.Parent = script.Parent
  7305. pcall(function() v:MakeJoints() end)
  7306. end
  7307. mas:Destroy()
  7308. for i,v in pairs(cors) do
  7309. spawn(function()
  7310. pcall(v)
  7311. end)
  7312. end
  7313.  
  7314. ----------------------------------------------------
  7315.  
  7316. --debounces start
  7317. Debounces = {
  7318. CanAttack = true;
  7319. CanJoke = true;
  7320. NoIdl = false;
  7321. Slashing = false;
  7322. Slashed = false;
  7323. Slapping = false;
  7324. Slapped = false;
  7325. ks = false;
  7326. Reaping = false;
  7327. Reaped = false;
  7328. }
  7329. mode = "normal"
  7330. --debounces end
  7331. -------------------------------
  7332.  
  7333. ----------------------------------------------------
  7334. local m2 = script.Parent.Dragonslayer:clone()
  7335. for i,v in pairs(m2:children()) do if v:IsA("BasePart") then v.Anchored=false v.CanCollide=false end end
  7336. --m.Welds.Disabled=false
  7337. local grip2 = Instance.new("Motor")
  7338. grip2.Part0=char["Right Arm"]
  7339. grip2.Part1=m2.Handle
  7340. grip2.C0=CFrame.new(0,0,0)*CFrame.fromEulerAnglesXYZ(0,0,0)
  7341. grip2.C1=CFrame.new()
  7342. grip2.Parent=grip2.Part0
  7343. m2.Parent=char
  7344. ----------------------------------------------------
  7345. local cor2 = Instance.new("Part", m2)
  7346. cor2.Name = "Thingy"
  7347. cor2.Locked = true
  7348. cor2.BottomSurface = 0
  7349. cor2.CanCollide = false
  7350. cor2.Size = Vector3.new(.1,.1,.1)
  7351. cor2.Transparency = 1
  7352. cor2.TopSurface = 0
  7353. corw2 = Instance.new("Weld", cor2)
  7354. corw2.Part0 = rarm
  7355. corw2.Part1 = cor2
  7356. corw2.C0 = CFrame.new(0, 0, 0)
  7357. corw2.C1 = CFrame.new(0, 0, 0)
  7358. weld1 = Instance.new("Weld", m2) -- Right grip
  7359. weld1.Part1 = cor2
  7360. weld1.Part0 = m2.Handle
  7361. weld1.C0 = CFrame.new(-.8, -.1, 0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(868.7,0,0)
  7362. ------------------------------------------------------------------------------------------------------------
  7363. wait(.1)
  7364. local a = char.Dragonslayer:GetChildren()
  7365. wait(.1)
  7366. a.Locked=true
  7367. ----------------------------------------------------
  7368. ----------------------------------------------------
  7369.  
  7370. ---------------
  7371. fat = Instance.new("BindableEvent", script)--artificial heartbeat
  7372. fat.Name = "Heartbeat"
  7373. script:WaitForChild("Heartbeat")
  7374. frame = 0.033333333333333
  7375. tf = 0
  7376. allowframeloss = false
  7377. tossremainder = false
  7378. lastframe = tick()
  7379. script.Heartbeat:Fire()
  7380. game:GetService("RunService").Heartbeat:connect(function(s, p)
  7381.  
  7382. tf = tf + s
  7383. if frame <= tf then
  7384. if allowframeloss then
  7385. script.Heartbeat:Fire()
  7386. lastframe = tick()
  7387. else
  7388. for i = 1, math.floor(tf / frame) do
  7389. script.Heartbeat:Fire()
  7390. end
  7391. lastframe = tick()
  7392. end
  7393. if tossremainder then
  7394. tf = 0
  7395. else
  7396. tf = tf - frame * math.floor(tf / frame)
  7397. end
  7398. end
  7399. end
  7400. )
  7401. local Touche = {char.Name, }
  7402. function swait(num)
  7403. if num == 0 or num == nil then
  7404. fat.Event:wait()
  7405. else
  7406. for i = 0, num do
  7407. fat.Event:wait()
  7408. end
  7409. end
  7410. end
  7411. ----------------------------------------------------
  7412. function weld5(part0, part1, c0, c1)
  7413. local weeld=Instance.new("Weld", part0)
  7414. weeld.Part0=part0
  7415. weeld.Part1=part1
  7416. weeld.C0=c0
  7417. weeld.C1=c1
  7418. return weeld
  7419. end
  7420. ----------
  7421. local acos = math.acos
  7422. local sqrt = math.sqrt
  7423. local Vec3 = Vector3.new
  7424. local fromAxisAngle = CFrame.fromAxisAngle
  7425.  
  7426. local function toAxisAngle(CFr)
  7427. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  7428. local Angle = math.acos((R00+R11+R22-1)/2)
  7429. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  7430. A = A == 0 and 0.00001 or A
  7431. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  7432. B = B == 0 and 0.00001 or B
  7433. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  7434. C = C == 0 and 0.00001 or C
  7435. local x = (R21-R12)/sqrt(A)
  7436. local y = (R02-R20)/sqrt(B)
  7437. local z = (R10-R01)/sqrt(C)
  7438. return Vec3(x,y,z),Angle
  7439. end
  7440.  
  7441. function ApplyTrig(Num,Func)
  7442. local Min,Max = Func(0),Func(1)
  7443. local i = Func(Num)
  7444. return (i-Min)/(Max-Min)
  7445.  
  7446. end
  7447.  
  7448. function LerpCFrame(CFrame1,CFrame2,Num)
  7449. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  7450. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  7451. end
  7452. ----------------------------------------------------
  7453. mod=Instance.new('Model',char)
  7454.  
  7455. ------
  7456. mod4 = Instance.new("Model",char)
  7457.  
  7458.  
  7459. lite = Instance.new("PointLight")
  7460. lite.Parent = torso
  7461. lite.Brightness = 6
  7462. lite.Range = 8
  7463. lite.Color = Color3.new(255,0,0)
  7464. -------------------------------
  7465. -------------------------------
  7466. mouse.KeyDown:connect(function(key)
  7467. if string.byte(key) == 52 then
  7468. if Debounces.CanAttack == true then
  7469. if stanceToggle ~= "Floating" then
  7470. char["Humanoid"].WalkSpeed = 60
  7471.  
  7472. elseif Debounces.CanAttack == false then
  7473. elseif stanceToggle == "Floating" then
  7474. wait()
  7475. end
  7476. end
  7477. end
  7478. end)
  7479. mouse.KeyUp:connect(function(key)
  7480. if string.byte(key) == 52 then
  7481.  
  7482. char["Humanoid"].WalkSpeed = 9
  7483. end
  7484. end)
  7485. --------------------------------
  7486. mouse.KeyDown:connect(function(key)
  7487. if key == "f" and equipped == false then
  7488. equipped = true
  7489. stanceToggle = "Normal"
  7490. elseif key == "f" and equipped == true then
  7491. equipped = false
  7492. stanceToggle = "Sheathed"
  7493. end
  7494. end)
  7495. function lerp(a, b, t) -- Linear interpolation
  7496. return a + (b - a)*t
  7497. end
  7498.  
  7499. function slerp(a, b, t) --Spherical interpolation
  7500. dot = a:Dot(b)
  7501. if dot > 0.99999 or dot < -0.99999 then
  7502. return t <= 0.5 and a or b
  7503. else
  7504. r = math.acos(dot)
  7505. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  7506. end
  7507. end
  7508.  
  7509. function matrixInterpolate(a, b, t)
  7510. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  7511. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  7512. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  7513. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  7514. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  7515. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  7516. local t = v1:Dot(v2)
  7517. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  7518. return CFrame.new()
  7519. end
  7520. return CFrame.new(
  7521. v0.x, v0.y, v0.z,
  7522. v1.x, v1.y, v1.z,
  7523. v2.x, v2.y, v2.z,
  7524. v3.x, v3.y, v3.z)
  7525. end
  7526. ----------------------------------------------------
  7527. function genWeld(a,b)
  7528. local w = Instance.new("Weld",a)
  7529. w.Part0 = a
  7530. w.Part1 = b
  7531. return w
  7532. end
  7533. function weld(a, b)
  7534. local weld = Instance.new("Weld")
  7535. weld.Name = "W"
  7536. weld.Part0 = a
  7537. weld.Part1 = b
  7538. weld.C0 = a.CFrame:inverse() * b.CFrame
  7539. weld.Parent = a
  7540. return weld;
  7541. end
  7542. ----------------------------------------------------
  7543. function Lerp(c1,c2,al)
  7544. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  7545. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  7546. for i,v in pairs(com1) do
  7547. com1[i] = v+(com2[i]-v)*al
  7548. end
  7549. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  7550. end
  7551. ----------------------------------------------------
  7552. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  7553. local wld = Instance.new("Weld", wp1)
  7554. wld.Part0 = wp0
  7555. wld.Part1 = wp1
  7556. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  7557. end
  7558. ----------------------------------------------------
  7559. newWeld(torso, larm, -1.5, 0.5, 0)
  7560. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  7561. newWeld(torso, rarm, 1.5, 0.5, 0)
  7562. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  7563. newWeld(torso, hed, 0, 1.5, 0)
  7564. newWeld(torso, lleg, -0.5, -1, 0)
  7565. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  7566. newWeld(torso, rleg, 0.5, -1, 0)
  7567. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  7568. newWeld(root, torso, 0, -1, 0)
  7569. torso.Weld.C1 = CFrame.new(0, -1, 0)
  7570. ----------------------------------------------------
  7571. wait(.1)
  7572. char.Dragonslayer:GetChildren().Locked=true
  7573. print("locked lol")
  7574. ----------------------------------------------------
  7575. function Dmg()
  7576. local partofdeath = char.Dragonslayer.Hitbox
  7577. local function CreateRegion3FromLocAndSize(Position, Size)
  7578. local SizeOffset = Size/2
  7579. local Point1 = Position - SizeOffset
  7580. local Point2 = Position + SizeOffset
  7581. return Region3.new(Point1, Point2)
  7582. end
  7583. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  7584. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  7585. spawn(function()
  7586. if Debounces.Slashing == true and Debounces.Slashed == false then
  7587. Debounces.Slashed = true
  7588. ypcall(function()
  7589. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  7590. humanoid:TakeDamage(math.random(40,48))
  7591. end)
  7592. wait(.4)
  7593. Debounces.Slashed = false
  7594. end
  7595. end)
  7596. end
  7597. end
  7598. ----------------------------------------------------
  7599. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  7600. ptz = {0.7, 0.8, 0.9, 1}
  7601. idz = {"231917961", "231917950"}
  7602. function attackone()
  7603. for i = 1, 13 do
  7604. Dmg()
  7605. weld1.C0 = CFrame.new(-.9, -.2, -.4)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(1.4,-.1,.8)
  7606. 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)
  7607. 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)
  7608. 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)
  7609. 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)
  7610. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
  7611. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
  7612. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
  7613. 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)
  7614. 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)
  7615. 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)
  7616. 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)
  7617. 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)
  7618. if Debounces.on == false then
  7619. break
  7620. end
  7621. fat.Event:wait()
  7622. end
  7623.  
  7624. Debounces.Slashing = true
  7625. wait(0.4)
  7626. x = Instance.new("Sound", hed)
  7627. x.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  7628. x.Pitch = ptz[math.random(1,#ptz)]
  7629. x.Volume = 2
  7630. wait(.01)
  7631. x:Play()
  7632.  
  7633. for i = 1, 14 do
  7634. Dmg()
  7635. weld1.C0 = CFrame.new(0,0, 0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(3,0,0)
  7636. 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)
  7637. 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)
  7638. 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)
  7639. 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)
  7640. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
  7641. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  7642. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
  7643. 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)
  7644. 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)
  7645. 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)
  7646. 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)
  7647. 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)
  7648. if Debounces.on == false then break end
  7649. swait()
  7650. rs:wait()
  7651. end
  7652. Debounces.Slashing = false
  7653. end
  7654. function attacktwo()
  7655. Debounces.Reaping = true
  7656. Debounces.Slashing = true
  7657. x:Play()
  7658. wait(.1)
  7659.  
  7660. for i = 1, 14 do
  7661. Dmg()
  7662. 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)
  7663. 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)
  7664. 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)
  7665. 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)
  7666. 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)
  7667. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  7668. 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)
  7669. 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)
  7670. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
  7671. 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)
  7672. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
  7673. 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)
  7674. Debounces.Reaping = false
  7675. if Debounces.on == false then
  7676. break
  7677. end
  7678. swait()
  7679. rs:wait()
  7680. end
  7681. end
  7682. ----------------------------------------------------
  7683. ----------------------------------------------------
  7684. --[[mouse.KeyDown:connect(function(key)
  7685. if key == "e" then
  7686. if Debounces.CanAttack == true and stanceToggle == "Normal" then
  7687. Debounces.CanAttack = false
  7688. Debounces.NoIdl = true
  7689. Debounces.on = true
  7690. for i = 1,50 do
  7691. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-10)), 0.05)
  7692. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(20)), 0.05)
  7693. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), math.rad(0)), 0.05)
  7694. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad (8),math.rad(-46), math.rad(0)), 0.05)
  7695. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad (-4), math.rad(60), math.rad(0)), 0.05)
  7696. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles (math.rad(120), math.rad(70), math.rad(-60)), 0.05)
  7697. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad (120),math.rad(- 70),math.rad(60)), 0.05)
  7698. if Debounces.on == false then break end wait()
  7699. end
  7700. wait(1)
  7701. z = Instance.new("Sound")
  7702. z.SoundId = "http://www.roblox.com/asset/? id=160773067"
  7703. z.Parent = char
  7704. z.Looped = false
  7705. z.Pitch = .4
  7706. z.Volume = .5
  7707. wait()
  7708. z:Play()
  7709. Debounces.Reaping = true
  7710. Reap()
  7711. for i = 1, 20 do
  7712. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad (8),math.rad(66), math.rad(0)), 0.5)
  7713. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad (-12), math.rad(-66), math.rad(0)), 0.5)
  7714. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles (math.rad(120), math.rad(70), math.rad(-60)), 0.5)
  7715. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad (120),math.rad(- 70),math.rad(60)), 0.5)
  7716. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad (6), 0, math.rad(10)), 0.5)
  7717. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad (-10), math.rad(-10), math.rad(20)), 0.5)
  7718. if Debounces.on == false then break end wait()
  7719. end
  7720. if Debounces.CanAttack == false then
  7721. Debounces.Slashing = false
  7722. Debounces.CanAttack = true
  7723. Debounces.NoIdl = false
  7724. z:Destroy()
  7725. end
  7726. end
  7727. end
  7728. end)]]
  7729. ----------------------------------------------------
  7730.  
  7731. ----------------------------------------------------
  7732. ComboNum = 0
  7733. mouse.Button1Down:connect(function()
  7734.  
  7735. if Debounces.CanAttack == true and stanceToggle=="Normal" then
  7736. Debounces.CanAttack = false
  7737. Debounces.NoIdl = true
  7738. Debounces.Reaping = true
  7739. Debounces.on = true
  7740. if ComboNum == 0 then
  7741. attackone()
  7742. elseif ComboNum == 1 then
  7743. attacktwo()
  7744. --[[elseif ComboNum == 2 then
  7745. attackthree()]]--
  7746. end
  7747. ComboNum = ComboNum + 1
  7748. Debounces.CanAttack = true
  7749. Debounces.on = false
  7750. wait(.5)
  7751. if Debounces.CanAttack == true then
  7752. ComboNum = 0
  7753. Debounces.NoIdl = false
  7754. end
  7755. end
  7756. end)
  7757. hitbb = char.Dragonslayer.Hitbox
  7758. ----------------------------------------------------
  7759. Reap = function()
  7760.  
  7761. hitbb.Touched:connect(function(ht1)
  7762.  
  7763. hit1 = ht1.Parent
  7764. if ht1 and hit1:IsA("Model") and hit1:FindFirstChild("Humanoid") and hit1.Name ~= p.Name and Debounces.Reaping == true and Debounces.Reaped == false then
  7765. Debounces.Reaped = true
  7766. h = hit1:FindFirstChild("Humanoid")
  7767. if h ~= nil then
  7768. hum.MaxHealth = hum.MaxHealth + h.MaxHealth
  7769. hum.Health = hum.MaxHealth
  7770. e = Instance.new("Part")
  7771. e.TopSurface = 0
  7772. e.BottomSurface = 0
  7773. e.Reflectance = 0.05
  7774. e.formFactor = "Symmetric"
  7775. e.Size = Vector3.new(1, 1, 1)
  7776. e.Anchored = true
  7777. e.CanCollide = false
  7778. e.BrickColor = BrickColor.new(eColors[math.random(1,#eColors)])
  7779. e.CFrame = CFrame.new(ht1.Position)
  7780. e.Parent = hit1
  7781. z = Instance.new("Sound", rarm)
  7782. z.SoundId = "http://www.roblox.com/asset/?id=895716446"
  7783. z.Volume = 0.6
  7784. z.Pitch = pt[math.random(1, #pt)]
  7785. z.Looped = false
  7786. wait()
  7787. z:Play()
  7788. Instance.new("BlockMesh", e)
  7789. coroutine.resume(coroutine.create(function(par)
  7790.  
  7791. for i = 1, 13 do
  7792. par.CFrame = par.CFrame * CFrame.fromEulerAnglesXYZ(math.random(-20, 20) / 50, math.random(-20, 20) / 50, math.random(-20, 20) / 50)
  7793. par.Transparency = i / 13
  7794. par.Mesh.Scale = par.Mesh.Scale + Vector3.new(0.4, 0.4, 0.4)
  7795. wait()
  7796. end
  7797. par.Parent = nil
  7798. end
  7799. ), e)
  7800. for _,v in pairs(hit1:children()) do
  7801.  
  7802. if v.className == "Part" then
  7803.  
  7804. v.BrickColor = BrickColor.new(eColors[math.random(1,#eColors)])
  7805. v.RotVelocity = Vector3.new(math.random(-2, 2), math.random(-2, 2), math.random(-2, 2)) * 3
  7806. v:BreakJoints()
  7807. f = Instance.new("BodyVelocity")
  7808. f.P = 3000
  7809. f.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  7810. f.velocity = Vector3.new(math.random(-30, 30) / 10, math.random(-30, 30) / 10, math.random(-30, 30) / 10)
  7811. f.Parent = v
  7812. v.CanCollide = false
  7813. coroutine.resume(coroutine.create(function(par)
  7814.  
  7815. for i = 1, 30 do
  7816. par.Transparency = i / 30
  7817. wait()
  7818. end
  7819. par.Parent = nil
  7820. end
  7821.  
  7822. ), v)
  7823. elseif v.Name == "Base" then
  7824. else
  7825. if v.className == "Accessory" then
  7826. v.Handle.BrickColor = BrickColor.new(eColors[math.random(1,#eColors)])
  7827. v.Handle.RotVelocity = Vector3.new(math.random(-2, 2), math.random(-2, 2), math.random(-2, 2)) * 3
  7828. v.Handle:BreakJoints()
  7829. f = Instance.new("BodyVelocity")
  7830. f.P = 3000
  7831. f.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  7832. f.velocity = Vector3.new(math.random(-30, 30) / 10, math.random(-30, 30) / 10, math.random(-30, 30) / 10)
  7833. f.Parent = v.Handle
  7834. v.Handle.CanCollide = false
  7835. coroutine.resume(coroutine.create(function(par)
  7836.  
  7837. for i = 1, 30 do
  7838. par.Transparency = i / 30
  7839. wait()
  7840. end
  7841. par.Parent = nil
  7842. end
  7843. ), v.Handle)
  7844.  
  7845. if h == nil then
  7846. wait()
  7847. end
  7848. end
  7849. end
  7850. end
  7851. end
  7852. end
  7853. end
  7854.  
  7855. )
  7856. Debounces.Reaped = false
  7857. end
  7858.  
  7859. ----------------------------------------------
  7860. ROW = function(out, trans, s, wt, t, ang, plus)
  7861. if game:GetService("Workspace"):findFirstChild("Base")~=nil then
  7862. for i = 1, 360, 360/t do
  7863. local c = Instance.new("Part", game:GetService("Workspace"))
  7864. c.FormFactor = 3
  7865. c.TopSurface = 0
  7866. c.BottomSurface = 0
  7867. c.Size = s
  7868. c.Anchored = true
  7869. c.CanCollide = wt
  7870. c.Material=game:GetService("Workspace").Base.Material
  7871. c.Transparency = trans
  7872. c.BrickColor = game:GetService("Workspace").Base.BrickColor
  7873. c.CFrame = CFrame.new(torso.CFrame.x,0,torso.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  7874. c.Locked=true
  7875. game.Debris:AddItem(c,4+math.random(1,10)/10)
  7876. end
  7877. end
  7878. end
  7879. ----------------------------------------------
  7880. -------------------
  7881. function Crater(Torso,Radius)
  7882. Spawn(function()
  7883. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  7884. local Ignore = {}
  7885. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  7886. if v.Character ~= nil then
  7887. Ignore[#Ignore+1] = v.Character
  7888. end
  7889. end
  7890. local Hit,Pos,SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  7891. if Hit == nil then return end
  7892. local Parts = {}
  7893. for i = 1,360,10 do
  7894. local P = Instance.new("Part",Torso.Parent)
  7895. P.Anchored = true
  7896. P.FormFactor = "Custom"
  7897. P.BrickColor = Hit.BrickColor
  7898. P.Material = Hit.Material
  7899. P.TopSurface = "Smooth"
  7900. P.BottomSurface = "Smooth"
  7901. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  7902. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  7903. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  7904. if math.random(0,5) == 0 then -- rubble
  7905. local P = Instance.new("Part",Torso.Parent)
  7906. P.Anchored = true
  7907. P.FormFactor = "Custom"
  7908. P.BrickColor = Hit.BrickColor
  7909. P.Material = Hit.Material
  7910. P.TopSurface = "Smooth"
  7911. P.BottomSurface = "Smooth"
  7912. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  7913. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  7914. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  7915. end
  7916. end
  7917. for i = 0,1,0.05 do
  7918. for i2,v in pairs(Parts) do
  7919. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  7920. end
  7921. wait(0.02)
  7922. end
  7923. for i,v in pairs(Parts) do
  7924. if v[1].Size.X > 2.1 then
  7925. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  7926. end
  7927. v[1].Anchored = false
  7928. end
  7929. for i = 0,1,0.05 do
  7930. for i2,v in pairs(Parts) do
  7931. v[1].Transparency = i
  7932. if i == 1 then
  7933. v[1]:Destroy()
  7934. elseif i >= 0.25 then
  7935. v[1].CanCollide = false
  7936. end
  7937. end
  7938. wait(0.02)
  7939. end
  7940. Parts = nil
  7941. end)
  7942. end
  7943.  
  7944.  
  7945. local Touche = {char.Name}
  7946. -------------------------------
  7947. ROW = function(out, trans, s, wt, t, ang, plus)
  7948. if game:GetService("Workspace"):findFirstChild("Base")~=nil then
  7949. for i = 1, 360, 360/t do
  7950. local c = Instance.new("Part", game:GetService("Workspace"))
  7951. c.FormFactor = 3
  7952. c.TopSurface = 0
  7953. c.BottomSurface = 0
  7954. c.Size = s
  7955. c.Anchored = true
  7956. c.CanCollide = wt
  7957. c.Material=game:GetService("Workspace").Base.Material
  7958. c.Transparency = trans
  7959. c.BrickColor = game:GetService("Workspace").Base.BrickColor
  7960. c.CFrame = CFrame.new(torso.CFrame.x,0,torso.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  7961. c.Locked=true
  7962. game.Debris:AddItem(c,4+math.random(1,10)/10)
  7963. end
  7964. end
  7965. end
  7966. ----------------------------------------------
  7967. Part = function(x,y,z,color,tr,cc,an,parent)
  7968. local p = Instance.new('Part',parent or Weapon)
  7969. p.formFactor = 'Custom'
  7970. p.Size = Vector3.new(x,y,z)
  7971. p.BrickColor = BrickColor.new(color)
  7972. p.CanCollide = cc
  7973. p.Transparency = tr
  7974. p.Anchored = an
  7975. p.TopSurface,p.BottomSurface = 0,0
  7976. p.Locked=true
  7977. p:BreakJoints()
  7978. return p end
  7979.  
  7980. Mesh = function(par,num,x,y,z)
  7981. local msh = _
  7982. if num == 1 then msh = Instance.new("CylinderMesh",par)
  7983. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  7984. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  7985. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  7986. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  7987. end msh.Scale = Vector3.new(x,y,z)
  7988. return msh end
  7989.  
  7990. ----------------------------------------------
  7991. function explosion(col1,col2,cfr,sz,rng,dmg)
  7992. local a= Part(1,1,1,col1,.5,false,true,game:GetService("Workspace"))
  7993. local a2= Part(1,1,1,col2,.5,false,true,game:GetService("Workspace"))
  7994. local a3= Part(1,1,1,col2,.5,false,true,game:GetService("Workspace"))
  7995. v1,v2,v3=sz.x,sz.y,sz.z
  7996. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  7997. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  7998. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  7999. a.CFrame=cfr
  8000. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  8001. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  8002. for i,v in pairs(game:GetService("Workspace"):children()) do
  8003. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  8004. if v:findFirstChild("Head") and v:findFirstChild("Torso") then
  8005. if (v:findFirstChild("Torso").Position - a.Position).magnitude < rng and v.Name ~= char.Name then
  8006. local hit=v
  8007. hit.Humanoid.Health=v.Humanoid.Health-dmg
  8008. hit.Humanoid.PlatformStand=true
  8009. hit.Torso.Velocity=Vector3.new(math.random(-100,100),100,math.random(- 100,-100))
  8010. wait(.1)
  8011. spawn(function()wait(2)hit.Humanoid.PlatformStand=false end)
  8012. end
  8013. end
  8014. end
  8015. end
  8016. spawn(function()
  8017. while wait() do
  8018. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  8019. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  8020. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  8021. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  8022. a.Transparency=a.Transparency+0.05
  8023. a2.Transparency=a2.Transparency+0.05
  8024. a3.Transparency=a3.Transparency+0.05
  8025. end
  8026. end)
  8027. end
  8028.  
  8029. ----------------------------------------------
  8030. local Shockwave = function()
  8031. local bl = Instance.new("Part", char)
  8032. bl.Locked = true
  8033. bl.Name = "Shell"
  8034. bl.BrickColor = BrickColor.new("Crimson")
  8035. bl.Anchored = true
  8036. bl.Material="Marble"
  8037. bl.CanCollide = false
  8038. bl.Transparency = 0
  8039. bl.Reflectance = 0
  8040. bl.BottomSurface = 0
  8041. bl.TopSurface = 0
  8042. bl.Position = torso.Position - Vector3.new(0,2,0)
  8043. bl.Shape = 0
  8044. local blm = Instance.new("SpecialMesh", bl)
  8045. blm.MeshType = "Sphere"
  8046. blm.Scale = Vector3.new(1, 1, 1)
  8047. blm.MeshId = "rbxassetid://1323306"
  8048. local sdfg = Instance.new("Part", char)
  8049. sdfg.Locked = true
  8050. sdfg.Name = "Shell"
  8051. sdfg.BrickColor = BrickColor.new("Really black")
  8052. sdfg.Anchored = true
  8053. sdfg.Material="Marble"
  8054. sdfg.CanCollide = false
  8055. sdfg.Transparency = 0
  8056. sdfg.Reflectance = 0
  8057. sdfg.BottomSurface = 0
  8058. sdfg.TopSurface = 0
  8059. sdfg.Position = torso.Position - Vector3.new(0,2,0)
  8060. sdfg.Shape = 0
  8061. sdfg.CFrame = sdfg.CFrame * CFrame.Angles(math.rad(45), math.rad(45), math.rad(0))
  8062. local blms = Instance.new("SpecialMesh", sdfg)
  8063. blms.MeshType = "Sphere"
  8064. blms.Scale = Vector3.new(1, 1, 1)
  8065. blms.MeshId = "rbxassetid://3270017"
  8066.  
  8067. local zxc = Instance.new("Part", char)
  8068. zxc.Locked = true
  8069. zxc.Name = "Shell"
  8070. zxc.BrickColor = BrickColor.new("Really black")
  8071. zxc.Anchored = true
  8072. zxc.Material="Marble"
  8073. zxc.CanCollide = false
  8074. zxc.Transparency = 0
  8075. zxc.Reflectance = 0
  8076. zxc.BottomSurface = 0
  8077. zxc.TopSurface = 0
  8078. zxc.Position = torso.Position - Vector3.new(0,2,0)
  8079. zxc.Shape = 0
  8080. zxc.CFrame = zxc.CFrame * CFrame.Angles(math.rad(0), math.rad(-45), math.rad(0))
  8081. local blmz = Instance.new("SpecialMesh", zxc)
  8082. blmz.MeshType = "Sphere"
  8083. blmz.Scale = Vector3.new(1, 1, 1)
  8084. blmz.MeshId = "rbxassetid://3270017"
  8085.  
  8086. local rng1 = Instance.new("Part", char)
  8087. rng1.Anchored = true
  8088. rng1.BrickColor = BrickColor.new("Really black")
  8089. rng1.CanCollide = false
  8090. rng1.FormFactor = 3
  8091. rng1.Name = "Ring"
  8092. rng1.Size = Vector3.new(1, 1, 1)
  8093. rng1.Transparency = 0.35
  8094. rng1.TopSurface = 0
  8095. rng1.BottomSurface = 0
  8096. local rng = Instance.new("Part", char)
  8097. rng.Anchored = true
  8098. rng.BrickColor = BrickColor.new("Light blue")
  8099. rng.CanCollide = false
  8100. rng.FormFactor = 3
  8101. rng.Name = "Ring"
  8102. rng.Size = Vector3.new(1, 1, 1)
  8103. rng.Transparency = 0.35
  8104. rng.TopSurface = 0
  8105. rng.BottomSurface = 0
  8106. rng.Position = torso.Position - Vector3.new(0,2,0)
  8107. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  8108. local rngm1 = Instance.new("SpecialMesh", rng)
  8109. rngm1.MeshId = "http://www.roblox.com/asset/?id=20329976"
  8110. rngm1.Scale = Vector3.new(10, 10, 10)
  8111. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  8112. local Wave = Instance.new("Part")
  8113. Wave.Name = "Shockwave"
  8114. Wave.BrickColor = BrickColor.new("White")
  8115. Wave.Size = Vector3.new(1, 1, 1)
  8116. Wave.Shape = "Ball"
  8117. Wave.CanCollide = false
  8118. Wave.Anchored = true
  8119. Wave.TopSurface = 0
  8120. Wave.BottomSurface = 0
  8121. Wave.Touched:connect(function(hit)
  8122. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  8123. local Occlude = true
  8124. local NotOccludes = {
  8125. char.Name;
  8126. "Wings";
  8127. "Scythe";
  8128. "Thingy";
  8129. "Thingy2";
  8130. }
  8131. for i,v in pairs(NotOccludes) do
  8132. if hit.Parent.Name == v then
  8133. Occlude = false
  8134. end
  8135. end
  8136. if Occlude then
  8137. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 40
  8138. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  8139. end
  8140. end
  8141. end)
  8142. Wave.Parent=game:GetService("Workspace")
  8143.  
  8144. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  8145.  
  8146. coroutine.wrap(function()
  8147. for i = 1, 20, 0.2 do
  8148. rngm1.Scale = Vector3.new(10 + i*2, 1 + 1*2, 10 + i*2)
  8149. rng1.Transparency = i/20
  8150. rng.Transparency=i/20
  8151. blm.Scale = Vector3.new(8 + i*1, 8 + i*1, 8 + i*1)
  8152. bl.Transparency = i/20
  8153. blms.Scale = Vector3.new(8 + i*1, 8 + i*1, 8 + i*1)
  8154. sdfg.Transparency = i/20
  8155. blmz.Scale = Vector3.new(8 + i*1, 8 + i*1, 8 + i*1)
  8156. zxc.Transparency = i/20
  8157.  
  8158. wait()
  8159. end
  8160. wait()
  8161. rng:Destroy()
  8162. end)()
  8163.  
  8164. delay(0, function()
  8165. if Daytime == false then
  8166. for i = 1, 50, 1 do
  8167. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  8168. Wave.CFrame = char.Torso.CFrame
  8169. local t = i / 50
  8170. Wave.Transparency = t
  8171. wait()
  8172. end
  8173. else
  8174. for i = 1, 50, 1 do
  8175. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  8176. Wave.CFrame = char.Torso.CFrame
  8177. local t = i / 50
  8178. Wave.Transparency = t
  8179. wait()
  8180. end
  8181. end
  8182. Wave:Destroy()
  8183. end)
  8184. delay(0, function()
  8185. while wait() do
  8186. if Wave ~= nil then
  8187. Wave.CFrame = char.Torso.CFrame
  8188. else
  8189. break
  8190. end
  8191. end
  8192. end)
  8193. end
  8194.  
  8195.  
  8196.  
  8197.  
  8198. -------------------------------
  8199. mouse.KeyDown:connect(function(key)
  8200. if key == "r" and stanceToggle == "Normal" then
  8201. if Debounces.CanAttack == true then
  8202. Debounces.CanAttack = false
  8203. x = Instance.new("Sound")
  8204. x.SoundId = "http://www.roblox.com/asset?id=219338993"
  8205. x.Parent = char
  8206. x.Volume = 0.7
  8207. x.Pitch = 1
  8208. x.Looped = true
  8209. x:Play()
  8210. Debounces.NoIdl = true
  8211. Debounces.on = true
  8212. for i = 1,30 do
  8213. 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.1)
  8214. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 10, 0)*CFrame.Angles (math.rad(30), math.rad(0), 0), 0.1)
  8215. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles (math.rad(120),math.rad (0),math.rad(-40)), 0.1)
  8216. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles (math.rad(120),math.rad (0),math.rad(40)), 0.1)
  8217. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-30), 0, math.rad(0)), 0.1)
  8218. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(-30), 0, math.rad(0)), 0.1)
  8219. if Debounces.on == false then break end
  8220. wait()
  8221. end
  8222. wait(1.2)
  8223.  
  8224. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  8225. explosion('Really red','Black',torso.CFrame,Vector3.new(50,50,50),30,math.random (15,30))
  8226. x:Destroy()
  8227. b = Instance.new("Sound")
  8228. b.SoundId = "http://www.roblox.com/asset/?id=168586621"
  8229. b.Volume=1
  8230. b.Pitch=.5
  8231. b.PlayOnRemove=true
  8232. b.Parent = char
  8233. b.Looped = false
  8234. b:Play()
  8235. n = Instance.new("Sound")
  8236. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  8237. n.Parent = char
  8238. n.Pitch = 0.94
  8239. n.Looped = false
  8240. n:Play()
  8241. Shockwave()
  8242. Crater(hed,6)
  8243. for i = 1,20 do
  8244. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(- 10),math.rad(0), math.rad (0)), 0.8)
  8245. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0)*CFrame.Angles (math.rad(-40), math.rad(0), 0), 0.8)
  8246. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles (math.rad(50),math.rad (0),math.rad(-40)), 0.8)
  8247. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles (math.rad(50),math.rad (0),math.rad(40)), 0.8)
  8248. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-20)), 0.8)
  8249. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(30), 0, math.rad(20)), 0.8)
  8250. if Debounces.on == false then break end
  8251. wait()
  8252. end
  8253. Debounces.NoIdl = false
  8254. Debounces.on = false
  8255. wait(1)
  8256. if Debounces.CanAttack == false then
  8257. Debounces.CanAttack = true
  8258. x:Destroy()
  8259. b:Destroy()
  8260. n:Destroy()
  8261. end
  8262. end
  8263. end
  8264. end)
  8265.  
  8266. ----------------------------------------------------
  8267. smoke=char.armcannon.cannonpiece3.ParticleEmitter
  8268. ----------------------------------------------------
  8269.  
  8270. mouse.KeyDown:connect(function(key)
  8271. if key == "e" and stanceToggle == "Sheathed" then
  8272. if Debounces.CanAttack == true then
  8273. char.Humanoid.WalkSpeed = 8
  8274. Debounces.CanAttack = false
  8275. Debounces.NoIdl = true
  8276. Debounces.on = true
  8277. smoke.Enabled=true
  8278. for i = 1, 30 do
  8279. smoke.Enabled=true
  8280. 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.1)
  8281. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(- 40),math.rad(-90)), 0.1)
  8282. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-12),math.rad(60), math.rad (0)), 0.1)
  8283. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad (0), math.rad(-60), math.rad(0)), 0.1)
  8284. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-5)), 0.1)
  8285. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(5)), 0.1)
  8286. if Debounces.on == false then break end
  8287. wait()
  8288.  
  8289. end
  8290. while wait(math.random(0.5,1.5)) do
  8291. if Debounces.on == false then
  8292. break
  8293. else
  8294. local expl = Instance.new("Explosion",game:GetService("Workspace"))
  8295. expl.Visible = false
  8296. local mous_ = game:GetService("Players").LocalPlayer:GetMouse()
  8297. local pos = mous_.Hit.p
  8298. local needsff = false
  8299. local pos_x = game:GetService("Players").LocalPlayer.Character.Torso.Position.X
  8300. local pos_y = game:GetService("Players").LocalPlayer.Character.Torso.Position.Y
  8301. local pos_z = game:GetService("Players").LocalPlayer.Character.Torso.Position.Z
  8302. local outset = 6
  8303. local x1,x2,y1,y2,z1,z2 = mous_.Hit.p.X+outset, mous_.Hit.p.X-outset, mous_.Hit.p.Y+outset, mous_.Hit.p.Y-outset, mous_.Hit.p.Z+outset, mous_.Hit.p.Z-outset
  8304. if pos_x < x1 and pos_x > x2 and pos_y < y1 and pos_y > y2 and pos_z < z1 and pos_z > z2 then
  8305. needsff = true
  8306. local forcefield = Instance.new("ForceField",p.Character)
  8307. forcefield.Visible = false
  8308. spawn(function()
  8309. wait(1)
  8310. pcall(game.Destroy,p.Character.ForceField)
  8311. end)
  8312. end
  8313. expl.Position = pos
  8314. spawn(function()
  8315. local blast = Instance.new("Part",p.Character)
  8316. blast.Anchored = true
  8317. blast.CanCollide = false
  8318. blast.BrickColor = BrickColor.new("Really red")
  8319. blast.Material = Enum.Material.Neon
  8320. blast.Size = Vector3.new(0.1,0.1,0.1)
  8321. blast.CFrame = CFrame.new(mous_.Hit.p)
  8322. local blastm = Instance.new("SpecialMesh",blast)
  8323. blastm.MeshType = Enum.MeshType.Sphere
  8324. blastm.Scale = Vector3.new(80,80,80)
  8325. local rp = Instance.new("Part",workspace)
  8326. rp.Anchored = true
  8327. rp.CanCollide = false
  8328. rp.BrickColor = BrickColor.new("Black")
  8329. rp.Size = Vector3.new(5,5,5)
  8330. rp.CFrame = blast.CFrame * CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  8331. local rm = Instance.new("SpecialMesh",rp)
  8332. rm.MeshId = "http://roblox.com/asset/?id=3270017"
  8333. rm.Scale = rm.Scale+Vector3.new(10,10,2)
  8334. local s = Instance.new("Sound",blast)
  8335. s.SoundId = "http://roblox.com/asset/?id=168586621"
  8336. s.Volume = 3
  8337. s.Looped = false
  8338. s.Pitch = 1.2
  8339. s:Play()
  8340. for i = 1,10 do
  8341. wait()
  8342. blastm.Scale = blastm.Scale+Vector3.new(12,12,12)
  8343. rm.Scale = rm.Scale+Vector3.new(1,1,0)
  8344. rp.Transparency = i / 10
  8345. blast.Transparency = i / 10
  8346. end
  8347. rp:Remove()
  8348. end)
  8349.  
  8350. end
  8351. end
  8352.  
  8353.  
  8354. end
  8355. end
  8356. end)
  8357.  
  8358. --------------------
  8359. mouse.KeyDown:connect(function(key)
  8360. if key == "n" and stanceToggle =="Sheathed" then
  8361.  
  8362. stanceToggle = "Idle2"
  8363.  
  8364. elseif key == "n" and stanceToggle == "Idle2" then
  8365. stanceToggle = "Sheathed"
  8366. end
  8367.  
  8368. end
  8369. )
  8370. ---------------------
  8371. mouse.KeyDown:connect(function(key)
  8372. if key == "b" and mus.Playing == true then
  8373. mus:Pause()
  8374. elseif key == "b" and mus.Playing == false then
  8375. mus.SoundId = "http://www.roblox.com/asset/?id="..SIDs[math.random(1,#SIDs)]
  8376. mus:Play()
  8377. end
  8378. end)
  8379. ----------------------------------------------------
  8380. mouse.KeyUp:connect(function(key)
  8381. if key == "e" and stanceToggle == "Sheathed" then
  8382. Debounces.NoIdl = false
  8383. Debounces.on = false
  8384. smoke.Enabled=false
  8385. wait()
  8386. smoke.Enabled=false
  8387. char.Humanoid.WalkSpeed = 9
  8388. if Debounces.CanAttack == false then
  8389. Debounces.CanAttack = true
  8390. end
  8391. end
  8392. end)
  8393. ----------------------------------------------------
  8394. -------------------------------
  8395. local animpose = "Idle"
  8396. local lastanimpose = "Idle"
  8397. local grab = false
  8398. local sine = 0
  8399.  
  8400. local val = 0
  8401. local ffing = false
  8402. jump = false
  8403. rs:connect(function()
  8404. if char.Humanoid.Jump == true then
  8405. jump = true
  8406. else
  8407. jump = false
  8408. end
  8409. char.Humanoid.FreeFalling:connect(function(f)
  8410. if f then
  8411. ffing = true
  8412. else
  8413. ffing = false
  8414. end
  8415.  
  8416. end)
  8417. end)
  8418.  
  8419.  
  8420. -------------------------------
  8421. RightLeg = CFrame.new(0.5, -1, 0)
  8422. LeftLeg = CFrame.new(-0.5, -1, 0)
  8423. lefth = (torso.CFrame*LeftLeg)
  8424. righth = (torso.CFrame*RightLeg)
  8425.  
  8426. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  8427.  
  8428. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  8429. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  8430. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  8431. game:GetService("RunService").RenderStepped:connect(function()
  8432.  
  8433. char["Humanoid"].FreeFalling:connect(function(f)
  8434. if f then
  8435. ffing = true
  8436. else
  8437. ffing = false
  8438. end
  8439. end)
  8440. sine = sine + change
  8441. if jump == true then
  8442. animpose = "Jumping"
  8443. elseif ffing == true then
  8444. animpose = "Freefalling"
  8445. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  8446. animpose = "Idle"
  8447. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  8448. animpose = "Walking"
  8449. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  8450. animpose = "Running"
  8451. end
  8452. if animpose ~= lastanimpose then
  8453. sine = 0
  8454. if Debounces.NoIdl == false then
  8455. if stanceToggle == "Normal" then
  8456. for i = 1, 2 do
  8457. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-90),math.rad(-50),math.rad(0)), 0.5)
  8458. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 1, -.2)*CFrame.Angles(math.rad(-70),math.rad(40),math.rad(0)), 0.5)
  8459. 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)
  8460. 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)
  8461. 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)
  8462. 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)
  8463.  
  8464. end
  8465. elseif stanceToggle == "Sheathed" then
  8466. 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+.5*math.cos(sine/10)),math.rad(0+1*math.cos(sine/10)),math.rad(15+1*math.cos(sine/10))), 0.8)
  8467. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.45, -.3)*CFrame.Angles(math.rad(10),math.rad(12),math.rad(0)), 0.5)
  8468. 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)
  8469. 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)
  8470. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+.02*math.cos(sine/10))*CFrame.Angles(math.rad(-15+8*math.cos(sine/10)),math.rad(0),math.rad(0+5)), 0.5)
  8471. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0-3*math.cos(sine/10)),math.rad(0)), 0.5)
  8472. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0+3*math.cos(sine/10)), math.rad(0), 0), 0.1)
  8473. 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(0+3*math.cos(sine/10)), 0), 0.1)
  8474. 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)
  8475. 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)
  8476. 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)
  8477. 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)
  8478.  
  8479. wait()
  8480. end
  8481. else
  8482. end
  8483. end
  8484. lastanimpose = animpose
  8485. if Debounces.NoIdl == false then
  8486. if animpose == "Idle" then
  8487. if stanceToggle == "Normal" then
  8488. change = 0.5
  8489. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4, 0.54, 0) * CFrame.Angles(math.rad(-34), math.rad(-15), math.rad(26)), 0.2)
  8490. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 1, -.2)*CFrame.Angles(math.rad(-90),math.rad(-50),math.rad(0)), 0.5)
  8491. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  8492. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(1.4, 0, 0)*CFrame.Angles(math.rad(-70),math.rad(40),math.rad(0)), 0.5)
  8493. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+.02*math.cos(sine/10))*CFrame.Angles(math.rad(-15+8*math.cos(sine/10)),math.rad(0),math.rad(0+5)), 0.5)
  8494. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.2) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8495. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0+3*math.cos(sine/13)), math.rad(0), 0), 0.1)
  8496. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0-0.08*math.cos(sine/13), -1, 0) * CFrame.Angles(math.rad(0), math.rad(0+0*math.cos(sine/13)), 0), 0.1)
  8497. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14+0.06*math.cos(sine/13)) * CFrame.Angles(math.rad(-3-3*math.cos(sine/13)), math.rad(0), math.rad(0)), 0.1)
  8498. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10-3*math.cos(sine/13)), math.rad(5+3*math.cos(sine/13))), 0.1)
  8499. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(8-3*math.cos(sine/13)), math.rad(0), math.rad(0)), 0.1)
  8500. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10-3*math.cos(sine/13)), math.rad(-5+3*math.cos(sine/13))), 0.1)
  8501. weld1.C0 = CFrame.new(-.9, -.2, -.4)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(1.4,-.1,.8)
  8502. corw2.Part0 = rarm
  8503. elseif stanceToggle == "Sheathed" then
  8504. change = .5
  8505. 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+.5*math.cos(sine/10)),math.rad(0+1*math.cos(sine/10)),math.rad(15+1*math.cos(sine/10))), 0.8)
  8506. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.45, -.18)*CFrame.Angles(math.rad(10),math.rad(12),math.rad(0)), 0.5)
  8507. 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)
  8508. 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)
  8509. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+.02*math.cos(sine/10))*CFrame.Angles(math.rad(-15+8*math.cos(sine/10)),math.rad(0),math.rad(0+5)), 0.5)
  8510. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.2) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8511. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0+3*math.cos(sine/10)), math.rad(0), 0), 0.1)
  8512. 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(0+3*math.cos(sine/10)), 0), 0.1)
  8513. 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)
  8514. 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)
  8515. 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)
  8516. 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)
  8517. weld1.C0 = CFrame.new(.6,2,0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(0,0,1)
  8518.  
  8519. corw2.Part0 = torso
  8520. elseif stanceToggle == "Idle2" then
  8521. change = 0.2
  8522. 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)
  8523. 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)
  8524. 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)
  8525. 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)
  8526. 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)
  8527. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  8528. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  8529. --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)
  8530. 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)
  8531. 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)
  8532. 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)
  8533. 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)
  8534. 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)
  8535. end
  8536.  
  8537. elseif animpose == "Walking" then
  8538. if stanceToggle == "Normal" then
  8539. change = .4
  8540. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4, 0.54, 0) * CFrame.Angles(math.rad(-34), math.rad(-15), math.rad(26)), 0.2)
  8541. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(-10),math.rad(60),math.rad(0)), 0.7)
  8542. 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)
  8543. 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)
  8544. 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)
  8545. 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)
  8546. 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)
  8547. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  8548. 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)
  8549. 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)
  8550. 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)
  8551. 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)
  8552. weld1.C0 = CFrame.new(-.8, -.1, 0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(868.7,0,0)
  8553.  
  8554.  
  8555. corw2.Part0 = rarm
  8556.  
  8557. elseif stanceToggle == "Sheathed" then
  8558. change = 0.4
  8559. 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)
  8560. 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)
  8561. 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)
  8562. 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)
  8563. 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)
  8564. 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)
  8565. 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)
  8566. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  8567. 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)
  8568. 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)
  8569. 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)
  8570. 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)
  8571. weld1.C0 = CFrame.new(.6,2,0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(0,0,1)
  8572.  
  8573. corw2.Part0 = torso
  8574.  
  8575. end
  8576. elseif animpose == "Running" then
  8577. if stanceToggle == "Normal" then
  8578. change = .5
  8579. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4, 0.54, 0) * CFrame.Angles(math.rad(-34), math.rad(-15), math.rad(26)), 0.2)
  8580. 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)
  8581. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24 + 0.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)
  8582. 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)
  8583. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.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)
  8584. 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)
  8585. 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)
  8586. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8587. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.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), 0.8)
  8588. 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)
  8589. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.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), 0.8)
  8590. 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)
  8591. weld1.C0 = CFrame.new(-.8, -.1, 0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(868.7,0,0)
  8592. corw2.Part0 = rarm
  8593.  
  8594. elseif stanceToggle == "Sheathed" then
  8595. change = 0.5
  8596. 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)
  8597. 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)
  8598. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24 + 0.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)
  8599. 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)
  8600. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -0.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)
  8601. 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)
  8602. 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)
  8603. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8604. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.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), 0.8)
  8605. 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)
  8606. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.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), 0.8)
  8607. 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)
  8608. weld1.C0 = CFrame.new(.6,2,0)*CFrame.fromEulerAnglesXYZ(0,-math.pi/2,0) * CFrame.Angles(0,0,1)
  8609.  
  8610. corw2.Part0 = torso
  8611.  
  8612. elseif animpose == "Freefalling" then
  8613. change = 0.5
  8614. 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)
  8615. 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)
  8616. 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)
  8617. 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)
  8618. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  8619. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  8620. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8621. 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)
  8622. 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)
  8623. 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)
  8624. 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)
  8625.  
  8626. if stanceToggle == "Landed" then
  8627. change = 0.5
  8628. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.1)*CFrame.Angles(math.rad(-12),math.rad(0), math.rad(0)),0.4)
  8629. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.4)
  8630. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-30)), 0.4)
  8631. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(30)), 0.4)
  8632. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1+.1*math.cos(sine/4)) * CFrame.Angles(math.rad(-30-30*math.cos(sine/4)), 0, 0), 0.4)
  8633. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0-30*math.cos(sine/14)), 0, 0), 0.4)
  8634. end
  8635. elseif animpose == "Jumping" then
  8636. 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)
  8637. 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)
  8638. 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)
  8639. 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)
  8640. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
  8641. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  8642. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8643. 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)
  8644. 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)
  8645. 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)
  8646. 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)
  8647.  
  8648. end
  8649. end
  8650.  
  8651. end
  8652. end)
  8653. --
  8654. local doe = 400
  8655. coroutine.wrap(function()
  8656. while 1 do
  8657. swait()
  8658. if doe <= 360 then
  8659. doe = doe + 2
  8660. else
  8661. doe = 0
  8662. end
  8663. end
  8664. end)()
  8665. while true do
  8666. swait()
  8667. while true do
  8668. swait()
  8669. if rp:FindFirstChild("mus")==nil then
  8670. end
  8671. end
  8672. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement