carlosname

Untitled

Apr 20th, 2020
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Made By Bartus2009_Bro/GabeTheDog
  2. --Discord: Gabe#2409
  3.  
  4. --Converted with ttyyuu12345's model to script plugin v4
  5.  
  6.  
  7. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
  8. do
  9. script.Parent = owner.Character
  10. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  11. local function NewFakeEvent()
  12. local Bind = Instance.new("BindableEvent")
  13. local Fake;Fake = {Connections = {},
  14. fakeEvent=true;
  15. Connect=function(self,Func)
  16. Bind.Event:connect(Func)
  17. self.Connections[Bind] = true
  18. return setmetatable({Connected = true},{
  19. __index = function (self,Index)
  20. if Index:lower() == "disconnect" then
  21. return function() Fake.Connections[Bind] = false;self.Connected = false end
  22. end
  23. return Fake[Index]
  24. end;
  25. __tostring = function() return "Connection" end;
  26. })
  27. end}
  28. Fake.connect = Fake.Connect;return Fake;
  29. end
  30. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  31. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  32. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  33. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  34. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  35. local function TriggerEvent(self,Event,...)
  36. local Trigger = Mouse[Event]
  37. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  38. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  39. end
  40. end
  41. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  42. Event.OnServerEvent:Connect(function(FiredBy,Input)
  43. if FiredBy.Name ~= owner.Name then return end
  44. if Input.MouseEvent then
  45. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  46. else
  47. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  48. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  49. for _,Action in pairs(ContextActionService.Actions) do
  50. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  51. end
  52. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  53. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  54. end
  55. end)
  56. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  57. Event.Parent = NLS([[
  58. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  59. local Input = function(Input,gameProcessedEvent)
  60. if gameProcessedEvent then return end
  61. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  62. end
  63. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  64. local Hit,Target
  65. while wait(1/30) do
  66. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  67. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  68. end
  69. end
  70. ]],owner.Character)
  71. end
  72. RealGame = game;game = setmetatable({},{
  73. __index = function (self,Index)
  74. local Sandbox = function (Thing)
  75. if Thing:IsA("Player") then
  76. local RealPlayer = Thing
  77. return setmetatable({},{
  78. __index = function (self,Index)
  79. local Type = type(RealPlayer[Index])
  80. if Type == "function" then
  81. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  82. return function (self)return InternalData["Mouse"] end
  83. end
  84. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  85. end
  86. return RealPlayer[Index]
  87. end;
  88. __tostring = function(self) return RealPlayer.Name end
  89. })
  90. end
  91. end
  92. if RealGame[Index] then
  93. local Type = type(RealGame[Index])
  94. if Type == "function" then
  95. if Index:lower() == "getservice" or Index:lower() == "service" then
  96. return function (self,Service)
  97. local FakeServices = {
  98. ["players"] = function()
  99. return setmetatable({},{
  100. __index = function (self2,Index2)
  101. local RealService = RealGame:GetService(Service)
  102. local Type2 = type(Index2)
  103. if Type2 == "function" then
  104. return function (self,...) return RealService[Index2](RealService,...)end
  105. else
  106. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  107. return RealService[Index2]
  108. end
  109. end;
  110. __tostring = function(self) return RealGame:GetService(Service).Name end
  111. })
  112. end;
  113. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  114. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  115. ["runservice"] = function()
  116. return setmetatable({},{
  117. __index = function(self2,Index2)
  118. local RealService = RealGame:GetService(Service)
  119. local Type2 = type(Index2)
  120. if Type2 == "function" then
  121. return function (self,...) return RealService[Index2](RealService,...) end
  122. else
  123. local RunServices = {
  124. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  125. ["renderstepped"] = function() return RealService["Stepped"] end
  126. }
  127. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  128. return RealService[Index2]
  129. end
  130. end
  131. })
  132. end
  133. }
  134. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  135. return RealGame:GetService(Service)
  136. end
  137. end
  138. return function (self,...) return RealGame[Index](RealGame,...) end
  139. else
  140. if game:GetService(Index) then return game:GetService(Index) end
  141. return RealGame[Index]
  142. end
  143. end
  144. return nil
  145. end
  146. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  147.  
  148. function sandbox(var,func)
  149. local env = getfenv(func)
  150. local newenv = setmetatable({},{
  151. __index = function(self,k)
  152. if k=="script" then
  153. return var
  154. else
  155. return env[k]
  156. end
  157. end,
  158. })
  159. setfenv(func,newenv)
  160. return func
  161. end
  162. cors = {}
  163. mas = Instance.new("Model",game:GetService("Lighting"))
  164. Model0 = Instance.new("Model")
  165. Model1 = Instance.new("Model")
  166. Part2 = Instance.new("Part")
  167. SpecialMesh3 = Instance.new("SpecialMesh")
  168. Decal4 = Instance.new("Decal")
  169. Dialog5 = Instance.new("Dialog")
  170. DialogChoice6 = Instance.new("DialogChoice")
  171. DialogChoice7 = Instance.new("DialogChoice")
  172. DialogChoice8 = Instance.new("DialogChoice")
  173. DialogChoice9 = Instance.new("DialogChoice")
  174. DialogChoice10 = Instance.new("DialogChoice")
  175. DialogChoice11 = Instance.new("DialogChoice")
  176. Part12 = Instance.new("Part")
  177. Part13 = Instance.new("Part")
  178. Part14 = Instance.new("Part")
  179. Part15 = Instance.new("Part")
  180. Part16 = Instance.new("Part")
  181. Humanoid17 = Instance.new("Humanoid")
  182. Pants18 = Instance.new("Pants")
  183. Shirt19 = Instance.new("Shirt")
  184. Part20 = Instance.new("Part")
  185. SpecialMesh21 = Instance.new("SpecialMesh")
  186. Model22 = Instance.new("Model")
  187. Part23 = Instance.new("Part")
  188. Model24 = Instance.new("Model")
  189. Model25 = Instance.new("Model")
  190. Part26 = Instance.new("Part")
  191. SpecialMesh27 = Instance.new("SpecialMesh")
  192. Weld28 = Instance.new("Weld")
  193. Decal29 = Instance.new("Decal")
  194. Weld30 = Instance.new("Weld")
  195. Weld31 = Instance.new("Weld")
  196. Part32 = Instance.new("Part")
  197. SpecialMesh33 = Instance.new("SpecialMesh")
  198. Weld34 = Instance.new("Weld")
  199. Decal35 = Instance.new("Decal")
  200. Weld36 = Instance.new("Weld")
  201. Weld37 = Instance.new("Weld")
  202. Part38 = Instance.new("Part")
  203. BlockMesh39 = Instance.new("BlockMesh")
  204. Weld40 = Instance.new("Weld")
  205. Weld41 = Instance.new("Weld")
  206. Part42 = Instance.new("Part")
  207. BlockMesh43 = Instance.new("BlockMesh")
  208. Weld44 = Instance.new("Weld")
  209. Weld45 = Instance.new("Weld")
  210. Part46 = Instance.new("Part")
  211. SpecialMesh47 = Instance.new("SpecialMesh")
  212. Weld48 = Instance.new("Weld")
  213. Weld49 = Instance.new("Weld")
  214. Part50 = Instance.new("Part")
  215. BlockMesh51 = Instance.new("BlockMesh")
  216. Weld52 = Instance.new("Weld")
  217. Decal53 = Instance.new("Decal")
  218. Weld54 = Instance.new("Weld")
  219. Weld55 = Instance.new("Weld")
  220. VelocityMotor56 = Instance.new("VelocityMotor")
  221. Weld57 = Instance.new("Weld")
  222. VelocityMotor58 = Instance.new("VelocityMotor")
  223. VelocityMotor59 = Instance.new("VelocityMotor")
  224. VelocityMotor60 = Instance.new("VelocityMotor")
  225. Weld61 = Instance.new("Weld")
  226. Model62 = Instance.new("Model")
  227. Part63 = Instance.new("Part")
  228. SpecialMesh64 = Instance.new("SpecialMesh")
  229. Decal65 = Instance.new("Decal")
  230. Dialog66 = Instance.new("Dialog")
  231. DialogChoice67 = Instance.new("DialogChoice")
  232. DialogChoice68 = Instance.new("DialogChoice")
  233. DialogChoice69 = Instance.new("DialogChoice")
  234. DialogChoice70 = Instance.new("DialogChoice")
  235. Part71 = Instance.new("Part")
  236. Part72 = Instance.new("Part")
  237. Part73 = Instance.new("Part")
  238. Part74 = Instance.new("Part")
  239. Part75 = Instance.new("Part")
  240. Humanoid76 = Instance.new("Humanoid")
  241. Pants77 = Instance.new("Pants")
  242. Shirt78 = Instance.new("Shirt")
  243. Part79 = Instance.new("Part")
  244. SpecialMesh80 = Instance.new("SpecialMesh")
  245. Model81 = Instance.new("Model")
  246. Part82 = Instance.new("Part")
  247. Part83 = Instance.new("Part")
  248. Part84 = Instance.new("Part")
  249. Part85 = Instance.new("Part")
  250. Part86 = Instance.new("Part")
  251. Model87 = Instance.new("Model")
  252. Part88 = Instance.new("Part")
  253. Part89 = Instance.new("Part")
  254. Part90 = Instance.new("Part")
  255. Part91 = Instance.new("Part")
  256. Part92 = Instance.new("Part")
  257. Model93 = Instance.new("Model")
  258. Part94 = Instance.new("Part")
  259. Part95 = Instance.new("Part")
  260. Part96 = Instance.new("Part")
  261. Part97 = Instance.new("Part")
  262. Part98 = Instance.new("Part")
  263. Model99 = Instance.new("Model")
  264. Part100 = Instance.new("Part")
  265. Part101 = Instance.new("Part")
  266. Part102 = Instance.new("Part")
  267. Part103 = Instance.new("Part")
  268. Part104 = Instance.new("Part")
  269. Model105 = Instance.new("Model")
  270. Part106 = Instance.new("Part")
  271. Part107 = Instance.new("Part")
  272. Part108 = Instance.new("Part")
  273. Part109 = Instance.new("Part")
  274. Part110 = Instance.new("Part")
  275. Model111 = Instance.new("Model")
  276. Part112 = Instance.new("Part")
  277. Part113 = Instance.new("Part")
  278. Part114 = Instance.new("Part")
  279. Part115 = Instance.new("Part")
  280. Part116 = Instance.new("Part")
  281. Model117 = Instance.new("Model")
  282. Part118 = Instance.new("Part")
  283. Part119 = Instance.new("Part")
  284. Part120 = Instance.new("Part")
  285. Part121 = Instance.new("Part")
  286. Part122 = Instance.new("Part")
  287. Decal123 = Instance.new("Decal")
  288. Part124 = Instance.new("Part")
  289. Part125 = Instance.new("Part")
  290. BlockMesh126 = Instance.new("BlockMesh")
  291. Part127 = Instance.new("Part")
  292. BlockMesh128 = Instance.new("BlockMesh")
  293. Part129 = Instance.new("Part")
  294. BlockMesh130 = Instance.new("BlockMesh")
  295. Part131 = Instance.new("Part")
  296. BlockMesh132 = Instance.new("BlockMesh")
  297. Model133 = Instance.new("Model")
  298. Part134 = Instance.new("Part")
  299. Part135 = Instance.new("Part")
  300. Attachment136 = Instance.new("Attachment")
  301. RodConstraint137 = Instance.new("RodConstraint")
  302. Attachment138 = Instance.new("Attachment")
  303. Part139 = Instance.new("Part")
  304. Decal140 = Instance.new("Decal")
  305. Attachment141 = Instance.new("Attachment")
  306. RodConstraint142 = Instance.new("RodConstraint")
  307. Part143 = Instance.new("Part")
  308. Part144 = Instance.new("Part")
  309. Attachment145 = Instance.new("Attachment")
  310. Part146 = Instance.new("Part")
  311. Decal147 = Instance.new("Decal")
  312. Part148 = Instance.new("Part")
  313. Decal149 = Instance.new("Decal")
  314. Model150 = Instance.new("Model")
  315. Part151 = Instance.new("Part")
  316. Part152 = Instance.new("Part")
  317. Part153 = Instance.new("Part")
  318. Part154 = Instance.new("Part")
  319. Part155 = Instance.new("Part")
  320. Model156 = Instance.new("Model")
  321. Part157 = Instance.new("Part")
  322. Attachment158 = Instance.new("Attachment")
  323. RopeConstraint159 = Instance.new("RopeConstraint")
  324. Part160 = Instance.new("Part")
  325. Part161 = Instance.new("Part")
  326. Decal162 = Instance.new("Decal")
  327. Part163 = Instance.new("Part")
  328. SurfaceGui164 = Instance.new("SurfaceGui")
  329. TextLabel165 = Instance.new("TextLabel")
  330. Attachment166 = Instance.new("Attachment")
  331. RopeConstraint167 = Instance.new("RopeConstraint")
  332. Part168 = Instance.new("Part")
  333. Decal169 = Instance.new("Decal")
  334. Attachment170 = Instance.new("Attachment")
  335. Part171 = Instance.new("Part")
  336. Attachment172 = Instance.new("Attachment")
  337. Part173 = Instance.new("Part")
  338. Part174 = Instance.new("Part")
  339. Part175 = Instance.new("Part")
  340. Part176 = Instance.new("Part")
  341. Part177 = Instance.new("Part")
  342. Part178 = Instance.new("Part")
  343. Part179 = Instance.new("Part")
  344. Part180 = Instance.new("Part")
  345. Part181 = Instance.new("Part")
  346. Part182 = Instance.new("Part")
  347. PointLight183 = Instance.new("PointLight")
  348. Decal184 = Instance.new("Decal")
  349. Model185 = Instance.new("Model")
  350. Part186 = Instance.new("Part")
  351. Part187 = Instance.new("Part")
  352. Attachment188 = Instance.new("Attachment")
  353. RopeConstraint189 = Instance.new("RopeConstraint")
  354. Part190 = Instance.new("Part")
  355. Decal191 = Instance.new("Decal")
  356. Part192 = Instance.new("Part")
  357. SurfaceGui193 = Instance.new("SurfaceGui")
  358. TextLabel194 = Instance.new("TextLabel")
  359. Attachment195 = Instance.new("Attachment")
  360. RopeConstraint196 = Instance.new("RopeConstraint")
  361. Part197 = Instance.new("Part")
  362. Decal198 = Instance.new("Decal")
  363. Attachment199 = Instance.new("Attachment")
  364. Part200 = Instance.new("Part")
  365. Attachment201 = Instance.new("Attachment")
  366. Part202 = Instance.new("Part")
  367. Part203 = Instance.new("Part")
  368. Part204 = Instance.new("Part")
  369. Part205 = Instance.new("Part")
  370. Part206 = Instance.new("Part")
  371. Part207 = Instance.new("Part")
  372. Part208 = Instance.new("Part")
  373. Part209 = Instance.new("Part")
  374. Part210 = Instance.new("Part")
  375. Part211 = Instance.new("Part")
  376. PointLight212 = Instance.new("PointLight")
  377. Decal213 = Instance.new("Decal")
  378. Model214 = Instance.new("Model")
  379. Model215 = Instance.new("Model")
  380. Part216 = Instance.new("Part")
  381. CylinderMesh217 = Instance.new("CylinderMesh")
  382. Decal218 = Instance.new("Decal")
  383. Model219 = Instance.new("Model")
  384. Part220 = Instance.new("Part")
  385. Part221 = Instance.new("Part")
  386. Part222 = Instance.new("Part")
  387. Part223 = Instance.new("Part")
  388. Decal224 = Instance.new("Decal")
  389. Part225 = Instance.new("Part")
  390. Part226 = Instance.new("Part")
  391. Decal227 = Instance.new("Decal")
  392. Model228 = Instance.new("Model")
  393. Part229 = Instance.new("Part")
  394. Part230 = Instance.new("Part")
  395. Part231 = Instance.new("Part")
  396. Part232 = Instance.new("Part")
  397. Decal233 = Instance.new("Decal")
  398. Part234 = Instance.new("Part")
  399. Model235 = Instance.new("Model")
  400. Part236 = Instance.new("Part")
  401. Part237 = Instance.new("Part")
  402. Part238 = Instance.new("Part")
  403. Part239 = Instance.new("Part")
  404. Part240 = Instance.new("Part")
  405. Model241 = Instance.new("Model")
  406. Part242 = Instance.new("Part")
  407. Part243 = Instance.new("Part")
  408. Part244 = Instance.new("Part")
  409. Part245 = Instance.new("Part")
  410. Part246 = Instance.new("Part")
  411. Part247 = Instance.new("Part")
  412. Part248 = Instance.new("Part")
  413. Part249 = Instance.new("Part")
  414. Part250 = Instance.new("Part")
  415. Part251 = Instance.new("Part")
  416. Part252 = Instance.new("Part")
  417. Part253 = Instance.new("Part")
  418. Part254 = Instance.new("Part")
  419. Part255 = Instance.new("Part")
  420. Part256 = Instance.new("Part")
  421. Part257 = Instance.new("Part")
  422. Part258 = Instance.new("Part")
  423. Part259 = Instance.new("Part")
  424. Part260 = Instance.new("Part")
  425. Decal261 = Instance.new("Decal")
  426. Part262 = Instance.new("Part")
  427. Part263 = Instance.new("Part")
  428. Part264 = Instance.new("Part")
  429. BlockMesh265 = Instance.new("BlockMesh")
  430. Part266 = Instance.new("Part")
  431. BlockMesh267 = Instance.new("BlockMesh")
  432. Decal268 = Instance.new("Decal")
  433. Decal269 = Instance.new("Decal")
  434. Part270 = Instance.new("Part")
  435. BlockMesh271 = Instance.new("BlockMesh")
  436. Decal272 = Instance.new("Decal")
  437. Decal273 = Instance.new("Decal")
  438. Part274 = Instance.new("Part")
  439. BlockMesh275 = Instance.new("BlockMesh")
  440. Decal276 = Instance.new("Decal")
  441. Decal277 = Instance.new("Decal")
  442. Part278 = Instance.new("Part")
  443. BlockMesh279 = Instance.new("BlockMesh")
  444. Part280 = Instance.new("Part")
  445. BlockMesh281 = Instance.new("BlockMesh")
  446. Part282 = Instance.new("Part")
  447. BlockMesh283 = Instance.new("BlockMesh")
  448. Part284 = Instance.new("Part")
  449. BlockMesh285 = Instance.new("BlockMesh")
  450. Part286 = Instance.new("Part")
  451. BlockMesh287 = Instance.new("BlockMesh")
  452. Part288 = Instance.new("Part")
  453. BlockMesh289 = Instance.new("BlockMesh")
  454. Part290 = Instance.new("Part")
  455. BlockMesh291 = Instance.new("BlockMesh")
  456. Part292 = Instance.new("Part")
  457. BlockMesh293 = Instance.new("BlockMesh")
  458. Model294 = Instance.new("Model")
  459. Part295 = Instance.new("Part")
  460. Part296 = Instance.new("Part")
  461. Attachment297 = Instance.new("Attachment")
  462. RodConstraint298 = Instance.new("RodConstraint")
  463. Attachment299 = Instance.new("Attachment")
  464. RodConstraint300 = Instance.new("RodConstraint")
  465. Part301 = Instance.new("Part")
  466. Attachment302 = Instance.new("Attachment")
  467. Part303 = Instance.new("Part")
  468. Decal304 = Instance.new("Decal")
  469. Attachment305 = Instance.new("Attachment")
  470. Part306 = Instance.new("Part")
  471. Part307 = Instance.new("Part")
  472. Decal308 = Instance.new("Decal")
  473. Model309 = Instance.new("Model")
  474. Part310 = Instance.new("Part")
  475. Part311 = Instance.new("Part")
  476. BlockMesh312 = Instance.new("BlockMesh")
  477. Part313 = Instance.new("Part")
  478. Model314 = Instance.new("Model")
  479. Part315 = Instance.new("Part")
  480. Part316 = Instance.new("Part")
  481. Decal317 = Instance.new("Decal")
  482. Part318 = Instance.new("Part")
  483. Model319 = Instance.new("Model")
  484. Part320 = Instance.new("Part")
  485. Decal321 = Instance.new("Decal")
  486. Part322 = Instance.new("Part")
  487. Part323 = Instance.new("Part")
  488. Part324 = Instance.new("Part")
  489. Part325 = Instance.new("Part")
  490. Model326 = Instance.new("Model")
  491. Part327 = Instance.new("Part")
  492. SpecialMesh328 = Instance.new("SpecialMesh")
  493. Weld329 = Instance.new("Weld")
  494. Decal330 = Instance.new("Decal")
  495. Weld331 = Instance.new("Weld")
  496. Weld332 = Instance.new("Weld")
  497. Part333 = Instance.new("Part")
  498. SpecialMesh334 = Instance.new("SpecialMesh")
  499. Weld335 = Instance.new("Weld")
  500. Decal336 = Instance.new("Decal")
  501. Weld337 = Instance.new("Weld")
  502. Weld338 = Instance.new("Weld")
  503. Part339 = Instance.new("Part")
  504. BlockMesh340 = Instance.new("BlockMesh")
  505. Weld341 = Instance.new("Weld")
  506. Weld342 = Instance.new("Weld")
  507. Part343 = Instance.new("Part")
  508. BlockMesh344 = Instance.new("BlockMesh")
  509. Weld345 = Instance.new("Weld")
  510. Weld346 = Instance.new("Weld")
  511. Part347 = Instance.new("Part")
  512. SpecialMesh348 = Instance.new("SpecialMesh")
  513. Weld349 = Instance.new("Weld")
  514. Weld350 = Instance.new("Weld")
  515. Part351 = Instance.new("Part")
  516. BlockMesh352 = Instance.new("BlockMesh")
  517. Weld353 = Instance.new("Weld")
  518. Decal354 = Instance.new("Decal")
  519. Weld355 = Instance.new("Weld")
  520. Weld356 = Instance.new("Weld")
  521. VelocityMotor357 = Instance.new("VelocityMotor")
  522. Weld358 = Instance.new("Weld")
  523. VelocityMotor359 = Instance.new("VelocityMotor")
  524. VelocityMotor360 = Instance.new("VelocityMotor")
  525. VelocityMotor361 = Instance.new("VelocityMotor")
  526. Weld362 = Instance.new("Weld")
  527. Part363 = Instance.new("Part")
  528. Model0.Name = "Mac Store"
  529. Model0.Parent = mas
  530. Model1.Name = "Another Employee"
  531. Model1.Parent = Model0
  532. Model1.PrimaryPart = Part2
  533. Part2.Name = "Head"
  534. Part2.Parent = Model1
  535. Part2.BrickColor = BrickColor.new("Pastel brown")
  536. Part2.Rotation = Vector3.new(-3.75, 1.56999993, -0.359999985)
  537. Part2.Anchored = true
  538. Part2.FormFactor = Enum.FormFactor.Symmetric
  539. Part2.Size = Vector3.new(2, 1, 1)
  540. Part2.CFrame = CFrame.new(55.4841614, 5.66641712, 1.89387321, 0.999606192, 0.00622603903, 0.0273618121, -0.00800660159, 0.997823536, 0.0654548183, -0.0268947314, -0.0656481236, 0.997480333)
  541. Part2.TopSurface = Enum.SurfaceType.Smooth
  542. Part2.Color = Color3.new(1, 0.8, 0.6)
  543. Part2.Position = Vector3.new(55.4841614, 5.66641712, 1.89387321)
  544. Part2.Orientation = Vector3.new(-3.75, 1.56999993, -0.459999979)
  545. Part2.Color = Color3.new(1, 0.8, 0.6)
  546. SpecialMesh3.Parent = Part2
  547. SpecialMesh3.Scale = Vector3.new(1.25, 1.25, 1.25)
  548. SpecialMesh3.Scale = Vector3.new(1.25, 1.25, 1.25)
  549. Decal4.Parent = Part2
  550. Decal4.Texture = "http://www.roblox.com/asset/?id=152143452"
  551. Dialog5.Name = "AnotherEmployeeDialog"
  552. Dialog5.Parent = Part2
  553. Dialog5.InitialPrompt = "Hello what you will like to buy"
  554. DialogChoice6.Name = "Other"
  555. DialogChoice6.Parent = Dialog5
  556. DialogChoice6.ResponseDialog = "Ok"
  557. DialogChoice6.UserDialog = "Any Other"
  558. DialogChoice7.Name = "MacintoshDesktopDialog"
  559. DialogChoice7.Parent = DialogChoice6
  560. DialogChoice7.ResponseDialog = "it will be 65 money"
  561. DialogChoice7.UserDialog = "Macintosh Desktop"
  562. DialogChoice8.Name = "MacbookDialog"
  563. DialogChoice8.Parent = DialogChoice6
  564. DialogChoice8.ResponseDialog = "it will be 70 money"
  565. DialogChoice8.UserDialog = "Macbook"
  566. DialogChoice9.Name = "MacintoshConsoleDialog"
  567. DialogChoice9.Parent = Dialog5
  568. DialogChoice9.ResponseDialog = "it will be 50 money"
  569. DialogChoice9.UserDialog = "Macintosh Console"
  570. DialogChoice10.Name = "MacintoshIISeriesDialog"
  571. DialogChoice10.Parent = Dialog5
  572. DialogChoice10.ResponseDialog = "it will be 55 money"
  573. DialogChoice10.UserDialog = "Macintosh II Series"
  574. DialogChoice11.Name = "MacMIniDialog"
  575. DialogChoice11.Parent = Dialog5
  576. DialogChoice11.ResponseDialog = "that will be 69 money"
  577. DialogChoice11.UserDialog = "Mac Mini"
  578. Part12.Name = "Torso"
  579. Part12.Parent = Model1
  580. Part12.BrickColor = BrickColor.new("Pastel brown")
  581. Part12.Rotation = Vector3.new(-3.75, 1.56999993, -0.359999985)
  582. Part12.Anchored = true
  583. Part12.FormFactor = Enum.FormFactor.Symmetric
  584. Part12.Size = Vector3.new(2, 2, 1)
  585. Part12.CFrame = CFrame.new(55.474823, 4.16968012, 1.99234557, 0.999606192, 0.00622603903, 0.0273618121, -0.00800660159, 0.997823536, 0.0654548183, -0.0268947314, -0.0656481236, 0.997480333)
  586. Part12.LeftSurface = Enum.SurfaceType.Weld
  587. Part12.RightSurface = Enum.SurfaceType.Weld
  588. Part12.Color = Color3.new(1, 0.8, 0.6)
  589. Part12.Position = Vector3.new(55.474823, 4.16968012, 1.99234557)
  590. Part12.Orientation = Vector3.new(-3.75, 1.56999993, -0.459999979)
  591. Part12.Color = Color3.new(1, 0.8, 0.6)
  592. Part13.Name = "Left Arm"
  593. Part13.Parent = Model1
  594. Part13.BrickColor = BrickColor.new("Pastel brown")
  595. Part13.Rotation = Vector3.new(36.25, 0.969999969, -1.27999997)
  596. Part13.Anchored = true
  597. Part13.FormFactor = Enum.FormFactor.Symmetric
  598. Part13.Size = Vector3.new(1, 2, 1)
  599. Part13.CFrame = CFrame.new(53.9635544, 4.2250495, 1.57803798, 0.999606192, 0.0223573186, 0.0169582628, -0.00800660159, 0.806448519, -0.5912503, -0.0268947314, 0.590881586, 0.806309998)
  600. Part13.Color = Color3.new(1, 0.8, 0.6)
  601. Part13.Position = Vector3.new(53.9635544, 4.2250495, 1.57803798)
  602. Part13.Orientation = Vector3.new(36.25, 1.19999993, -0.569999993)
  603. Part13.Color = Color3.new(1, 0.8, 0.6)
  604. Part14.Name = "Right Arm"
  605. Part14.Parent = Model1
  606. Part14.BrickColor = BrickColor.new("Pastel brown")
  607. Part14.Rotation = Vector3.new(59.0699997, -7.80999994, -10.04)
  608. Part14.Anchored = true
  609. Part14.FormFactor = Enum.FormFactor.Symmetric
  610. Part14.Size = Vector3.new(1, 2, 1)
  611. Part14.CFrame = CFrame.new(56.6915665, 4.29724979, 1.15213466, 0.975554168, 0.172764108, -0.13581866, -0.204344407, 0.485747248, -0.849878252, -0.0808548853, 0.856856287, 0.509176672)
  612. Part14.Color = Color3.new(1, 0.8, 0.6)
  613. Part14.Position = Vector3.new(56.6915665, 4.29724979, 1.15213466)
  614. Part14.Orientation = Vector3.new(58.1999969, -14.9399996, -22.8199997)
  615. Part14.Color = Color3.new(1, 0.8, 0.6)
  616. Part15.Name = "Left Leg"
  617. Part15.Parent = Model1
  618. Part15.BrickColor = BrickColor.new("Pastel brown")
  619. Part15.Rotation = Vector3.new(-3.75, 1.56999993, -0.359999985)
  620. Part15.Anchored = true
  621. Part15.FormFactor = Enum.FormFactor.Symmetric
  622. Part15.Size = Vector3.new(1, 2, 1)
  623. Part15.CFrame = CFrame.new(54.9625969, 2.17802811, 2.13702774, 0.999606192, 0.00622603903, 0.0273618121, -0.00800660159, 0.997823536, 0.0654548183, -0.0268947314, -0.0656481236, 0.997480333)
  624. Part15.BottomSurface = Enum.SurfaceType.Smooth
  625. Part15.Color = Color3.new(1, 0.8, 0.6)
  626. Part15.Position = Vector3.new(54.9625969, 2.17802811, 2.13702774)
  627. Part15.Orientation = Vector3.new(-3.75, 1.56999993, -0.459999979)
  628. Part15.Color = Color3.new(1, 0.8, 0.6)
  629. Part16.Name = "Right Leg"
  630. Part16.Parent = Model1
  631. Part16.BrickColor = BrickColor.new("Pastel brown")
  632. Part16.Rotation = Vector3.new(-3.75, 1.56999993, -0.359999985)
  633. Part16.Anchored = true
  634. Part16.FormFactor = Enum.FormFactor.Symmetric
  635. Part16.Size = Vector3.new(1, 2, 1)
  636. Part16.CFrame = CFrame.new(55.9622078, 2.17002964, 2.11025476, 0.999606192, 0.00622603903, 0.0273618121, -0.00800660159, 0.997823536, 0.0654548183, -0.0268947314, -0.0656481236, 0.997480333)
  637. Part16.BottomSurface = Enum.SurfaceType.Smooth
  638. Part16.Color = Color3.new(1, 0.8, 0.6)
  639. Part16.Position = Vector3.new(55.9622078, 2.17002964, 2.11025476)
  640. Part16.Orientation = Vector3.new(-3.75, 1.56999993, -0.459999979)
  641. Part16.Color = Color3.new(1, 0.8, 0.6)
  642. Humanoid17.Parent = Model1
  643. Humanoid17.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  644. Humanoid17.RightLeg = Part16
  645. Humanoid17.LeftLeg = Part15
  646. Humanoid17.Torso = Part12
  647. Humanoid17.Health = 0
  648. Humanoid17.MaxHealth = 0
  649. Pants18.Name = "Pants"
  650. Pants18.Parent = Model1
  651. Pants18.PantsTemplate = "http://www.roblox.com/asset/?id=136529989"
  652. Shirt19.Name = "Shirt"
  653. Shirt19.Parent = Model1
  654. Shirt19.ShirtTemplate = "http://www.roblox.com/asset/?id=136529997"
  655. Part20.Name = "Smooth Block Model"
  656. Part20.Parent = Model1
  657. Part20.BrickColor = BrickColor.new("Dark green")
  658. Part20.Rotation = Vector3.new(-3.75, 1.56999993, -0.359999985)
  659. Part20.Anchored = true
  660. Part20.FormFactor = Enum.FormFactor.Plate
  661. Part20.Size = Vector3.new(2, 0.400000006, 1)
  662. Part20.CFrame = CFrame.new(55.4813156, 6.06242943, 1.6674993, 0.999607205, 0.00622604834, 0.0273621976, -0.00800691172, 0.997823298, 0.0654535964, -0.0268951524, -0.0656486526, 0.997485578)
  663. Part20.Color = Color3.new(0.156863, 0.498039, 0.278431)
  664. Part20.Position = Vector3.new(55.4813156, 6.06242943, 1.6674993)
  665. Part20.Orientation = Vector3.new(-3.75, 1.56999993, -0.459999979)
  666. Part20.Color = Color3.new(0.156863, 0.498039, 0.278431)
  667. SpecialMesh21.Parent = Part20
  668. SpecialMesh21.MeshId = "http://www.roblox.com/asset/?id=1081088"
  669. SpecialMesh21.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  670. SpecialMesh21.MeshType = Enum.MeshType.FileMesh
  671. SpecialMesh21.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  672. Model22.Name = "Mac Store"
  673. Model22.Parent = Model0
  674. Part23.Name = "Path"
  675. Part23.Parent = Model22
  676. Part23.BrickColor = BrickColor.new("Dark stone grey")
  677. Part23.Anchored = true
  678. Part23.Size = Vector3.new(52.8000221, 0.369999975, 5.65000057)
  679. Part23.CFrame = CFrame.new(19.2299576, 0.184999987, -16.5850048, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  680. Part23.BottomSurface = Enum.SurfaceType.Smooth
  681. Part23.TopSurface = Enum.SurfaceType.Smooth
  682. Part23.Color = Color3.new(0.388235, 0.372549, 0.384314)
  683. Part23.Position = Vector3.new(19.2299576, 0.184999987, -16.5850048)
  684. Part23.Color = Color3.new(0.388235, 0.372549, 0.384314)
  685. Model24.Name = "Store"
  686. Model24.Parent = Model22
  687. Model25.Name = "Cash"
  688. Model25.Parent = Model24
  689. Part26.Name = "Smooth Block Model"
  690. Part26.Parent = Model25
  691. Part26.Rotation = Vector3.new(0, -90, 0)
  692. Part26.Anchored = true
  693. Part26.FormFactor = Enum.FormFactor.Plate
  694. Part26.Size = Vector3.new(1, 0.400000006, 1)
  695. Part26.CFrame = CFrame.new(65.7900085, 6.10005093, -1.54000473, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  696. Part26.BottomSurface = Enum.SurfaceType.Smooth
  697. Part26.TopSurface = Enum.SurfaceType.Smooth
  698. Part26.Position = Vector3.new(65.7900085, 6.10005093, -1.54000473)
  699. Part26.Orientation = Vector3.new(0, -90, 0)
  700. SpecialMesh27.Parent = Part26
  701. SpecialMesh27.MeshType = Enum.MeshType.Torso
  702. Weld28.Name = "Virus"
  703. Weld28.Parent = SpecialMesh27
  704. Decal29.Parent = Part26
  705. Decal29.Texture = "http://www.roblox.com/asset/?id=2276240"
  706. Decal29.Face = Enum.NormalId.Right
  707. Weld30.Name = "Virus"
  708. Weld30.Parent = Decal29
  709. Weld31.Name = "Virus"
  710. Weld31.Parent = Part26
  711. Part32.Name = "Smooth Block Model"
  712. Part32.Parent = Model25
  713. Part32.Rotation = Vector3.new(-180, 0, -180)
  714. Part32.Anchored = true
  715. Part32.Size = Vector3.new(3, 1.20000005, 1)
  716. Part32.CFrame = CFrame.new(66.7900085, 5.30004978, -0.540002823, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  717. Part32.BottomSurface = Enum.SurfaceType.Smooth
  718. Part32.TopSurface = Enum.SurfaceType.Smooth
  719. Part32.Position = Vector3.new(66.7900085, 5.30004978, -0.540002823)
  720. Part32.Orientation = Vector3.new(0, 180, 0)
  721. SpecialMesh33.Parent = Part32
  722. SpecialMesh33.MeshType = Enum.MeshType.Wedge
  723. Weld34.Name = "Virus"
  724. Weld34.Parent = SpecialMesh33
  725. Decal35.Parent = Part32
  726. Decal35.Texture = "http://www.roblox.com/asset/?id=2753044"
  727. Weld36.Name = "Virus"
  728. Weld36.Parent = Decal35
  729. Weld37.Name = "Virus"
  730. Weld37.Parent = Part32
  731. Part38.Name = "Smooth Block Model"
  732. Part38.Parent = Model25
  733. Part38.Rotation = Vector3.new(-180, 0, -180)
  734. Part38.Anchored = true
  735. Part38.FormFactor = Enum.FormFactor.Plate
  736. Part38.Size = Vector3.new(3, 0.400000006, 2)
  737. Part38.CFrame = CFrame.new(66.7900085, 4.50005054, -1.04000473, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  738. Part38.BottomSurface = Enum.SurfaceType.Smooth
  739. Part38.TopSurface = Enum.SurfaceType.Smooth
  740. Part38.Position = Vector3.new(66.7900085, 4.50005054, -1.04000473)
  741. Part38.Orientation = Vector3.new(0, 180, 0)
  742. BlockMesh39.Parent = Part38
  743. Weld40.Name = "Virus"
  744. Weld40.Parent = BlockMesh39
  745. Weld41.Name = "Virus"
  746. Weld41.Parent = Part38
  747. Part42.Name = "Smooth Block Model"
  748. Part42.Parent = Model25
  749. Part42.Rotation = Vector3.new(-180, 0, -180)
  750. Part42.Anchored = true
  751. Part42.Size = Vector3.new(3, 1.20000005, 1)
  752. Part42.CFrame = CFrame.new(66.7900085, 5.30004978, -1.54000473, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  753. Part42.BottomSurface = Enum.SurfaceType.Smooth
  754. Part42.TopSurface = Enum.SurfaceType.Smooth
  755. Part42.Position = Vector3.new(66.7900085, 5.30004978, -1.54000473)
  756. Part42.Orientation = Vector3.new(0, 180, 0)
  757. BlockMesh43.Parent = Part42
  758. Weld44.Name = "Virus"
  759. Weld44.Parent = BlockMesh43
  760. Weld45.Name = "Virus"
  761. Weld45.Parent = Part42
  762. Part46.Name = "Smooth Block Model"
  763. Part46.Parent = Model25
  764. Part46.Rotation = Vector3.new(-180, 0, -180)
  765. Part46.Anchored = true
  766. Part46.FormFactor = Enum.FormFactor.Plate
  767. Part46.Size = Vector3.new(1, 0.400000006, 1)
  768. Part46.CFrame = CFrame.new(67.7900085, 6.10005093, -1.54000473, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  769. Part46.BottomSurface = Enum.SurfaceType.Smooth
  770. Part46.TopSurface = Enum.SurfaceType.Smooth
  771. Part46.Position = Vector3.new(67.7900085, 6.10005093, -1.54000473)
  772. Part46.Orientation = Vector3.new(0, 180, 0)
  773. SpecialMesh47.Parent = Part46
  774. SpecialMesh47.Scale = Vector3.new(0.200000003, 2, 0.200000003)
  775. SpecialMesh47.Scale = Vector3.new(0.200000003, 2, 0.200000003)
  776. Weld48.Name = "Virus"
  777. Weld48.Parent = SpecialMesh47
  778. Weld49.Name = "Virus"
  779. Weld49.Parent = Part46
  780. Part50.Name = "Smooth Block Model"
  781. Part50.Parent = Model25
  782. Part50.Rotation = Vector3.new(-180, 0, -180)
  783. Part50.Anchored = true
  784. Part50.FormFactor = Enum.FormFactor.Plate
  785. Part50.Size = Vector3.new(1, 0.400000006, 1)
  786. Part50.CFrame = CFrame.new(67.7900085, 6.50005054, -1.54000473, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  787. Part50.BottomSurface = Enum.SurfaceType.Smooth
  788. Part50.TopSurface = Enum.SurfaceType.Smooth
  789. Part50.Position = Vector3.new(67.7900085, 6.50005054, -1.54000473)
  790. Part50.Orientation = Vector3.new(0, 180, 0)
  791. BlockMesh51.Parent = Part50
  792. BlockMesh51.Scale = Vector3.new(1, 1, 0.200000003)
  793. BlockMesh51.Scale = Vector3.new(1, 1, 0.200000003)
  794. Weld52.Name = "Virus"
  795. Weld52.Parent = BlockMesh51
  796. Decal53.Parent = Part50
  797. Decal53.Texture = "http://www.roblox.com/asset/?id=2821492"
  798. Weld54.Name = "Virus"
  799. Weld54.Parent = Decal53
  800. Weld55.Name = "Virus"
  801. Weld55.Parent = Part50
  802. VelocityMotor56.Name = "4D Being"
  803. VelocityMotor56.Parent = Model25
  804. Weld57.Name = "Virus"
  805. Weld57.Parent = VelocityMotor56
  806. VelocityMotor58.Name = "4D Being"
  807. VelocityMotor58.Parent = VelocityMotor56
  808. VelocityMotor59.Name = "4D Being"
  809. VelocityMotor59.Parent = VelocityMotor58
  810. VelocityMotor60.Name = "4D Being"
  811. VelocityMotor60.Parent = VelocityMotor59
  812. Weld61.Name = "Virus"
  813. Weld61.Parent = Model25
  814. Model62.Name = "Employee"
  815. Model62.Parent = Model24
  816. Model62.PrimaryPart = Part63
  817. Part63.Name = "Head"
  818. Part63.Parent = Model62
  819. Part63.BrickColor = BrickColor.new("Pastel brown")
  820. Part63.Rotation = Vector3.new(0, 5, 0)
  821. Part63.Anchored = true
  822. Part63.FormFactor = Enum.FormFactor.Symmetric
  823. Part63.Size = Vector3.new(2, 1, 1)
  824. Part63.CFrame = CFrame.new(63.7515221, 5.66627216, 1.66893387, 0.996194661, 0, 0.087155968, 0, 1, 0, -0.087155968, 0, 0.996194661)
  825. Part63.TopSurface = Enum.SurfaceType.Smooth
  826. Part63.Color = Color3.new(1, 0.8, 0.6)
  827. Part63.Position = Vector3.new(63.7515221, 5.66627216, 1.66893387)
  828. Part63.Orientation = Vector3.new(0, 5, 0)
  829. Part63.Color = Color3.new(1, 0.8, 0.6)
  830. SpecialMesh64.Parent = Part63
  831. SpecialMesh64.Scale = Vector3.new(1.25, 1.25, 1.25)
  832. SpecialMesh64.Scale = Vector3.new(1.25, 1.25, 1.25)
  833. Decal65.Parent = Part63
  834. Decal65.Texture = "http://www.roblox.com/asset/?id=152143452"
  835. Dialog66.Name = "EmployeeDialog"
  836. Dialog66.Parent = Part63
  837. Dialog66.InitialPrompt = "Hello what you will like to buy"
  838. DialogChoice67.Name = "MacintoshOriginalDialog"
  839. DialogChoice67.Parent = Dialog66
  840. DialogChoice67.ResponseDialog = "it will be 25 money"
  841. DialogChoice67.UserDialog = "Macintosh Original"
  842. DialogChoice68.Name = "MacintoshGreyDialog"
  843. DialogChoice68.Parent = Dialog66
  844. DialogChoice68.ResponseDialog = "it will be 19 money"
  845. DialogChoice68.UserDialog = "Macintosh Grey"
  846. DialogChoice69.Name = "NewMacDialog"
  847. DialogChoice69.Parent = Dialog66
  848. DialogChoice69.ResponseDialog = "its soo expensive its like 100 money"
  849. DialogChoice69.UserDialog = "New Mac"
  850. DialogChoice70.Name = "Macintosh512KDialog"
  851. DialogChoice70.Parent = Dialog66
  852. DialogChoice70.ResponseDialog = "it will be 67 money"
  853. DialogChoice70.UserDialog = "Macintosh 512K"
  854. Part71.Name = "Torso"
  855. Part71.Parent = Model62
  856. Part71.BrickColor = BrickColor.new("Pastel brown")
  857. Part71.Rotation = Vector3.new(0, 5, 0)
  858. Part71.Anchored = true
  859. Part71.FormFactor = Enum.FormFactor.Symmetric
  860. Part71.Size = Vector3.new(2, 2, 1)
  861. Part71.CFrame = CFrame.new(63.7515221, 4.16627598, 1.66893387, 0.996194661, 0, 0.087155968, 0, 1, 0, -0.087155968, 0, 0.996194661)
  862. Part71.LeftSurface = Enum.SurfaceType.Weld
  863. Part71.RightSurface = Enum.SurfaceType.Weld
  864. Part71.Color = Color3.new(1, 0.8, 0.6)
  865. Part71.Position = Vector3.new(63.7515221, 4.16627598, 1.66893387)
  866. Part71.Orientation = Vector3.new(0, 5, 0)
  867. Part71.Color = Color3.new(1, 0.8, 0.6)
  868. Part72.Name = "Left Arm"
  869. Part72.Parent = Model62
  870. Part72.BrickColor = BrickColor.new("Pastel brown")
  871. Part72.Rotation = Vector3.new(40.1100006, 3.82999992, -3.22000003)
  872. Part72.Anchored = true
  873. Part72.FormFactor = Enum.FormFactor.Symmetric
  874. Part72.Size = Vector3.new(1, 2, 1)
  875. Part72.CFrame = CFrame.new(62.2179413, 4.23931217, 1.35038567, 0.996194661, 0.056022726, 0.0667653978, 0, 0.766045094, -0.64278698, -0.087155968, 0.640340984, 0.76312995)
  876. Part72.Color = Color3.new(1, 0.8, 0.6)
  877. Part72.Position = Vector3.new(62.2179413, 4.23931217, 1.35038567)
  878. Part72.Orientation = Vector3.new(40, 5, 0)
  879. Part72.Color = Color3.new(1, 0.8, 0.6)
  880. Part73.Name = "Right Arm"
  881. Part73.Parent = Model62
  882. Part73.BrickColor = BrickColor.new("Pastel brown")
  883. Part73.Rotation = Vector3.new(62.5, -5.90999985, -12.9499998)
  884. Part73.Anchored = true
  885. Part73.FormFactor = Enum.FormFactor.Symmetric
  886. Part73.Size = Vector3.new(1, 2, 1)
  887. Part73.CFrame = CFrame.new(64.9152451, 4.35629559, 0.767625809, 0.969386995, 0.222881958, -0.103017382, -0.192517996, 0.429521114, -0.882297337, -0.152400002, 0.875120223, 0.459280968)
  888. Part73.Color = Color3.new(1, 0.8, 0.6)
  889. Part73.Position = Vector3.new(64.9152451, 4.35629559, 0.767625809)
  890. Part73.Orientation = Vector3.new(61.9199982, -12.6399994, -24.1399994)
  891. Part73.Color = Color3.new(1, 0.8, 0.6)
  892. Part74.Name = "Left Leg"
  893. Part74.Parent = Model62
  894. Part74.BrickColor = BrickColor.new("Pastel brown")
  895. Part74.Rotation = Vector3.new(0, 5, 0)
  896. Part74.Anchored = true
  897. Part74.FormFactor = Enum.FormFactor.Symmetric
  898. Part74.Size = Vector3.new(1, 2, 1)
  899. Part74.CFrame = CFrame.new(63.2534409, 2.16627407, 1.7124424, 0.996194661, 0, 0.087155968, 0, 1, 0, -0.087155968, 0, 0.996194661)
  900. Part74.BottomSurface = Enum.SurfaceType.Smooth
  901. Part74.Color = Color3.new(1, 0.8, 0.6)
  902. Part74.Position = Vector3.new(63.2534409, 2.16627407, 1.7124424)
  903. Part74.Orientation = Vector3.new(0, 5, 0)
  904. Part74.Color = Color3.new(1, 0.8, 0.6)
  905. Part75.Name = "Right Leg"
  906. Part75.Parent = Model62
  907. Part75.BrickColor = BrickColor.new("Pastel brown")
  908. Part75.Rotation = Vector3.new(0, 5, 0)
  909. Part75.Anchored = true
  910. Part75.FormFactor = Enum.FormFactor.Symmetric
  911. Part75.Size = Vector3.new(1, 2, 1)
  912. Part75.CFrame = CFrame.new(64.249649, 2.16627407, 1.62541008, 0.996194661, 0, 0.087155968, 0, 1, 0, -0.087155968, 0, 0.996194661)
  913. Part75.BottomSurface = Enum.SurfaceType.Smooth
  914. Part75.Color = Color3.new(1, 0.8, 0.6)
  915. Part75.Position = Vector3.new(64.249649, 2.16627407, 1.62541008)
  916. Part75.Orientation = Vector3.new(0, 5, 0)
  917. Part75.Color = Color3.new(1, 0.8, 0.6)
  918. Humanoid76.Parent = Model62
  919. Humanoid76.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  920. Humanoid76.RightLeg = Part75
  921. Humanoid76.LeftLeg = Part74
  922. Humanoid76.Torso = Part71
  923. Humanoid76.Health = 0
  924. Humanoid76.MaxHealth = 0
  925. Pants77.Name = "Pants"
  926. Pants77.Parent = Model62
  927. Pants77.PantsTemplate = "http://www.roblox.com/asset/?id=136529989"
  928. Shirt78.Name = "Shirt"
  929. Shirt78.Parent = Model62
  930. Shirt78.ShirtTemplate = "http://www.roblox.com/asset/?id=136529997"
  931. Part79.Name = "Smooth Block Model"
  932. Part79.Parent = Model62
  933. Part79.BrickColor = BrickColor.new("Dark green")
  934. Part79.Rotation = Vector3.new(0, 5, 0)
  935. Part79.Anchored = true
  936. Part79.FormFactor = Enum.FormFactor.Plate
  937. Part79.Size = Vector3.new(2, 0.400000006, 1)
  938. Part79.CFrame = CFrame.new(63.7341309, 6.07631588, 1.46973419, 0.996194661, 0, 0.087155968, 0, 1, 0, -0.087155968, 0, 0.996194661)
  939. Part79.Color = Color3.new(0.156863, 0.498039, 0.278431)
  940. Part79.Position = Vector3.new(63.7341309, 6.07631588, 1.46973419)
  941. Part79.Orientation = Vector3.new(0, 5, 0)
  942. Part79.Color = Color3.new(0.156863, 0.498039, 0.278431)
  943. SpecialMesh80.Parent = Part79
  944. SpecialMesh80.MeshId = "http://www.roblox.com/asset/?id=1081088"
  945. SpecialMesh80.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  946. SpecialMesh80.MeshType = Enum.MeshType.FileMesh
  947. SpecialMesh80.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  948. Model81.Name = "table"
  949. Model81.Parent = Model24
  950. Part82.Parent = Model81
  951. Part82.Material = Enum.Material.DiamondPlate
  952. Part82.Rotation = Vector3.new(0, -0.00999999978, 0)
  953. Part82.Anchored = true
  954. Part82.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  955. Part82.CFrame = CFrame.new(69.2879333, 2.60007, -38.3027649, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  956. Part82.Position = Vector3.new(69.2879333, 2.60007, -38.3027649)
  957. Part82.Orientation = Vector3.new(0, -0.00999999978, 0)
  958. Part83.Parent = Model81
  959. Part83.Material = Enum.Material.DiamondPlate
  960. Part83.Rotation = Vector3.new(0, -0.00999999978, 0)
  961. Part83.Anchored = true
  962. Part83.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  963. Part83.CFrame = CFrame.new(62.2874718, 2.60007191, -34.3036041, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  964. Part83.Position = Vector3.new(62.2874718, 2.60007191, -34.3036041)
  965. Part83.Orientation = Vector3.new(0, -0.00999999978, 0)
  966. Part84.Parent = Model81
  967. Part84.Material = Enum.Material.DiamondPlate
  968. Part84.Rotation = Vector3.new(0, -0.00999999978, 0)
  969. Part84.Anchored = true
  970. Part84.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  971. Part84.CFrame = CFrame.new(69.2874908, 2.60007191, -34.3027802, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  972. Part84.Position = Vector3.new(69.2874908, 2.60007191, -34.3027802)
  973. Part84.Orientation = Vector3.new(0, -0.00999999978, 0)
  974. Part85.Parent = Model81
  975. Part85.Material = Enum.Material.Metal
  976. Part85.Rotation = Vector3.new(0, -0.00999999978, 0)
  977. Part85.Anchored = true
  978. Part85.Size = Vector3.new(7.5999999, 0.200000003, 4.60000038)
  979. Part85.CFrame = CFrame.new(65.7875824, 4.10006046, -36.3031845, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  980. Part85.BottomSurface = Enum.SurfaceType.Smooth
  981. Part85.TopSurface = Enum.SurfaceType.Smooth
  982. Part85.Position = Vector3.new(65.7875824, 4.10006046, -36.3031845)
  983. Part85.Orientation = Vector3.new(0, -0.00999999978, 0)
  984. Part86.Parent = Model81
  985. Part86.Material = Enum.Material.DiamondPlate
  986. Part86.Rotation = Vector3.new(0, -0.00999999978, 0)
  987. Part86.Anchored = true
  988. Part86.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  989. Part86.CFrame = CFrame.new(62.2878609, 2.60007, -38.3035965, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  990. Part86.Position = Vector3.new(62.2878609, 2.60007, -38.3035965)
  991. Part86.Orientation = Vector3.new(0, -0.00999999978, 0)
  992. Model87.Name = "table"
  993. Model87.Parent = Model24
  994. Part88.Parent = Model87
  995. Part88.Material = Enum.Material.DiamondPlate
  996. Part88.Rotation = Vector3.new(0, -0.00999999978, 0)
  997. Part88.Anchored = true
  998. Part88.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  999. Part88.CFrame = CFrame.new(61.7120018, 2.60007, -38.3036041, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1000. Part88.Position = Vector3.new(61.7120018, 2.60007, -38.3036041)
  1001. Part88.Orientation = Vector3.new(0, -0.00999999978, 0)
  1002. Part89.Parent = Model87
  1003. Part89.Material = Enum.Material.DiamondPlate
  1004. Part89.Rotation = Vector3.new(0, -0.00999999978, 0)
  1005. Part89.Anchored = true
  1006. Part89.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1007. Part89.CFrame = CFrame.new(54.7115364, 2.60007191, -34.3044434, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1008. Part89.Position = Vector3.new(54.7115364, 2.60007191, -34.3044434)
  1009. Part89.Orientation = Vector3.new(0, -0.00999999978, 0)
  1010. Part90.Parent = Model87
  1011. Part90.Material = Enum.Material.DiamondPlate
  1012. Part90.Rotation = Vector3.new(0, -0.00999999978, 0)
  1013. Part90.Anchored = true
  1014. Part90.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1015. Part90.CFrame = CFrame.new(61.7115555, 2.60007191, -34.3036194, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1016. Part90.Position = Vector3.new(61.7115555, 2.60007191, -34.3036194)
  1017. Part90.Orientation = Vector3.new(0, -0.00999999978, 0)
  1018. Part91.Parent = Model87
  1019. Part91.Material = Enum.Material.Metal
  1020. Part91.Rotation = Vector3.new(0, -0.00999999978, 0)
  1021. Part91.Anchored = true
  1022. Part91.Size = Vector3.new(7.5999999, 0.200000003, 4.60000038)
  1023. Part91.CFrame = CFrame.new(58.2116508, 4.10006046, -36.3040237, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1024. Part91.BottomSurface = Enum.SurfaceType.Smooth
  1025. Part91.TopSurface = Enum.SurfaceType.Smooth
  1026. Part91.Position = Vector3.new(58.2116508, 4.10006046, -36.3040237)
  1027. Part91.Orientation = Vector3.new(0, -0.00999999978, 0)
  1028. Part92.Parent = Model87
  1029. Part92.Material = Enum.Material.DiamondPlate
  1030. Part92.Rotation = Vector3.new(0, -0.00999999978, 0)
  1031. Part92.Anchored = true
  1032. Part92.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1033. Part92.CFrame = CFrame.new(54.7119255, 2.60007, -38.3044357, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1034. Part92.Position = Vector3.new(54.7119255, 2.60007, -38.3044357)
  1035. Part92.Orientation = Vector3.new(0, -0.00999999978, 0)
  1036. Model93.Name = "table"
  1037. Model93.Parent = Model24
  1038. Part94.Parent = Model93
  1039. Part94.Material = Enum.Material.DiamondPlate
  1040. Part94.Rotation = Vector3.new(0, -0.00999999978, 0)
  1041. Part94.Anchored = true
  1042. Part94.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1043. Part94.CFrame = CFrame.new(54.1415787, 2.60007, -38.3044434, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1044. Part94.Position = Vector3.new(54.1415787, 2.60007, -38.3044434)
  1045. Part94.Orientation = Vector3.new(0, -0.00999999978, 0)
  1046. Part95.Parent = Model93
  1047. Part95.Material = Enum.Material.DiamondPlate
  1048. Part95.Rotation = Vector3.new(0, -0.00999999978, 0)
  1049. Part95.Anchored = true
  1050. Part95.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1051. Part95.CFrame = CFrame.new(47.1411018, 2.60007191, -34.3052826, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1052. Part95.Position = Vector3.new(47.1411018, 2.60007191, -34.3052826)
  1053. Part95.Orientation = Vector3.new(0, -0.00999999978, 0)
  1054. Part96.Parent = Model93
  1055. Part96.Material = Enum.Material.DiamondPlate
  1056. Part96.Rotation = Vector3.new(0, -0.00999999978, 0)
  1057. Part96.Anchored = true
  1058. Part96.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1059. Part96.CFrame = CFrame.new(54.1411324, 2.60007191, -34.3044586, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1060. Part96.Position = Vector3.new(54.1411324, 2.60007191, -34.3044586)
  1061. Part96.Orientation = Vector3.new(0, -0.00999999978, 0)
  1062. Part97.Parent = Model93
  1063. Part97.Material = Enum.Material.Metal
  1064. Part97.Rotation = Vector3.new(0, -0.00999999978, 0)
  1065. Part97.Anchored = true
  1066. Part97.Size = Vector3.new(7.5999999, 0.200000003, 4.60000038)
  1067. Part97.CFrame = CFrame.new(50.6412277, 4.10006046, -36.304863, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1068. Part97.BottomSurface = Enum.SurfaceType.Smooth
  1069. Part97.TopSurface = Enum.SurfaceType.Smooth
  1070. Part97.Position = Vector3.new(50.6412277, 4.10006046, -36.304863)
  1071. Part97.Orientation = Vector3.new(0, -0.00999999978, 0)
  1072. Part98.Parent = Model93
  1073. Part98.Material = Enum.Material.DiamondPlate
  1074. Part98.Rotation = Vector3.new(0, -0.00999999978, 0)
  1075. Part98.Anchored = true
  1076. Part98.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1077. Part98.CFrame = CFrame.new(47.1414986, 2.60007, -38.305275, 1, -1.92266536e-09, -0.000110987086, 1.92269445e-09, 1, 2.61808908e-10, 0.000110987086, -2.62022321e-10, 1)
  1078. Part98.Position = Vector3.new(47.1414986, 2.60007, -38.305275)
  1079. Part98.Orientation = Vector3.new(0, -0.00999999978, 0)
  1080. Model99.Name = "table"
  1081. Model99.Parent = Model24
  1082. Part100.Parent = Model99
  1083. Part100.Material = Enum.Material.DiamondPlate
  1084. Part100.Rotation = Vector3.new(0, 90, 0)
  1085. Part100.Anchored = true
  1086. Part100.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1087. Part100.CFrame = CFrame.new(65.2194824, 2.60007, -33.6430206, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1088. Part100.Position = Vector3.new(65.2194824, 2.60007, -33.6430206)
  1089. Part100.Orientation = Vector3.new(0, 89.9899979, 0)
  1090. Part101.Parent = Model99
  1091. Part101.Material = Enum.Material.DiamondPlate
  1092. Part101.Rotation = Vector3.new(0, 90, 0)
  1093. Part101.Anchored = true
  1094. Part101.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1095. Part101.CFrame = CFrame.new(69.2186432, 2.60007191, -26.6425629, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1096. Part101.Position = Vector3.new(69.2186432, 2.60007191, -26.6425629)
  1097. Part101.Orientation = Vector3.new(0, 89.9899979, 0)
  1098. Part102.Parent = Model99
  1099. Part102.Material = Enum.Material.DiamondPlate
  1100. Part102.Rotation = Vector3.new(0, 90, 0)
  1101. Part102.Anchored = true
  1102. Part102.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1103. Part102.CFrame = CFrame.new(69.2194672, 2.60007191, -33.6425858, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1104. Part102.Position = Vector3.new(69.2194672, 2.60007191, -33.6425858)
  1105. Part102.Orientation = Vector3.new(0, 89.9899979, 0)
  1106. Part103.Parent = Model99
  1107. Part103.Material = Enum.Material.Metal
  1108. Part103.Rotation = Vector3.new(0, 90, 0)
  1109. Part103.Anchored = true
  1110. Part103.Size = Vector3.new(7.5999999, 0.200000003, 4.60000038)
  1111. Part103.CFrame = CFrame.new(67.2190628, 4.10006046, -30.1426735, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1112. Part103.BottomSurface = Enum.SurfaceType.Smooth
  1113. Part103.TopSurface = Enum.SurfaceType.Smooth
  1114. Part103.Position = Vector3.new(67.2190628, 4.10006046, -30.1426735)
  1115. Part103.Orientation = Vector3.new(0, 89.9899979, 0)
  1116. Part104.Parent = Model99
  1117. Part104.Material = Enum.Material.DiamondPlate
  1118. Part104.Rotation = Vector3.new(0, 90, 0)
  1119. Part104.Anchored = true
  1120. Part104.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1121. Part104.CFrame = CFrame.new(65.2186584, 2.60007, -26.642952, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1122. Part104.Position = Vector3.new(65.2186584, 2.60007, -26.642952)
  1123. Part104.Orientation = Vector3.new(0, 89.9899979, 0)
  1124. Model105.Name = "table"
  1125. Model105.Parent = Model24
  1126. Part106.Parent = Model105
  1127. Part106.Material = Enum.Material.DiamondPlate
  1128. Part106.Rotation = Vector3.new(0, 90, 0)
  1129. Part106.Anchored = true
  1130. Part106.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1131. Part106.CFrame = CFrame.new(65.2186584, 2.60007, -26.2432861, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1132. Part106.Position = Vector3.new(65.2186584, 2.60007, -26.2432861)
  1133. Part106.Orientation = Vector3.new(0, 89.9899979, 0)
  1134. Part107.Parent = Model105
  1135. Part107.Material = Enum.Material.DiamondPlate
  1136. Part107.Rotation = Vector3.new(0, 90, 0)
  1137. Part107.Anchored = true
  1138. Part107.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1139. Part107.CFrame = CFrame.new(69.2178268, 2.60007191, -19.2428322, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1140. Part107.Position = Vector3.new(69.2178268, 2.60007191, -19.2428322)
  1141. Part107.Orientation = Vector3.new(0, 89.9899979, 0)
  1142. Part108.Parent = Model105
  1143. Part108.Material = Enum.Material.DiamondPlate
  1144. Part108.Rotation = Vector3.new(0, 90, 0)
  1145. Part108.Anchored = true
  1146. Part108.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1147. Part108.CFrame = CFrame.new(69.2186432, 2.60007191, -26.2428513, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1148. Part108.Position = Vector3.new(69.2186432, 2.60007191, -26.2428513)
  1149. Part108.Orientation = Vector3.new(0, 89.9899979, 0)
  1150. Part109.Parent = Model105
  1151. Part109.Material = Enum.Material.Metal
  1152. Part109.Rotation = Vector3.new(0, 90, 0)
  1153. Part109.Anchored = true
  1154. Part109.Size = Vector3.new(7.5999999, 0.200000003, 4.60000038)
  1155. Part109.CFrame = CFrame.new(67.2182465, 4.10006046, -22.7429428, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1156. Part109.BottomSurface = Enum.SurfaceType.Smooth
  1157. Part109.TopSurface = Enum.SurfaceType.Smooth
  1158. Part109.Position = Vector3.new(67.2182465, 4.10006046, -22.7429428)
  1159. Part109.Orientation = Vector3.new(0, 89.9899979, 0)
  1160. Part110.Parent = Model105
  1161. Part110.Material = Enum.Material.DiamondPlate
  1162. Part110.Rotation = Vector3.new(0, 90, 0)
  1163. Part110.Anchored = true
  1164. Part110.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1165. Part110.CFrame = CFrame.new(65.2178345, 2.60007, -19.2432213, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1166. Part110.Position = Vector3.new(65.2178345, 2.60007, -19.2432213)
  1167. Part110.Orientation = Vector3.new(0, 89.9899979, 0)
  1168. Model111.Name = "table"
  1169. Model111.Parent = Model24
  1170. Part112.Parent = Model111
  1171. Part112.Material = Enum.Material.DiamondPlate
  1172. Part112.Rotation = Vector3.new(0, 90, 0)
  1173. Part112.Anchored = true
  1174. Part112.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1175. Part112.CFrame = CFrame.new(46.8058586, 2.60007, -27.6811447, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1176. Part112.Position = Vector3.new(46.8058586, 2.60007, -27.6811447)
  1177. Part112.Orientation = Vector3.new(0, 89.9899979, 0)
  1178. Part113.Parent = Model111
  1179. Part113.Material = Enum.Material.DiamondPlate
  1180. Part113.Rotation = Vector3.new(0, 90, 0)
  1181. Part113.Anchored = true
  1182. Part113.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1183. Part113.CFrame = CFrame.new(50.8050232, 2.60007191, -20.6806908, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1184. Part113.Position = Vector3.new(50.8050232, 2.60007191, -20.6806908)
  1185. Part113.Orientation = Vector3.new(0, 89.9899979, 0)
  1186. Part114.Parent = Model111
  1187. Part114.Material = Enum.Material.DiamondPlate
  1188. Part114.Rotation = Vector3.new(0, 90, 0)
  1189. Part114.Anchored = true
  1190. Part114.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1191. Part114.CFrame = CFrame.new(50.8058434, 2.60007191, -27.6807098, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1192. Part114.Position = Vector3.new(50.8058434, 2.60007191, -27.6807098)
  1193. Part114.Orientation = Vector3.new(0, 89.9899979, 0)
  1194. Part115.Parent = Model111
  1195. Part115.Material = Enum.Material.Metal
  1196. Part115.Rotation = Vector3.new(0, 90, 0)
  1197. Part115.Anchored = true
  1198. Part115.Size = Vector3.new(7.5999999, 0.200000003, 4.60000038)
  1199. Part115.CFrame = CFrame.new(48.8054314, 4.10006046, -24.1808014, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1200. Part115.BottomSurface = Enum.SurfaceType.Smooth
  1201. Part115.TopSurface = Enum.SurfaceType.Smooth
  1202. Part115.Position = Vector3.new(48.8054314, 4.10006046, -24.1808014)
  1203. Part115.Orientation = Vector3.new(0, 89.9899979, 0)
  1204. Part116.Parent = Model111
  1205. Part116.Material = Enum.Material.DiamondPlate
  1206. Part116.Rotation = Vector3.new(0, 90, 0)
  1207. Part116.Anchored = true
  1208. Part116.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1209. Part116.CFrame = CFrame.new(46.8050346, 2.60007, -20.6810799, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1210. Part116.Position = Vector3.new(46.8050346, 2.60007, -20.6810799)
  1211. Part116.Orientation = Vector3.new(0, 89.9899979, 0)
  1212. Model117.Name = "Macintosh Desktop"
  1213. Model117.Parent = Model24
  1214. Part118.Parent = Model117
  1215. Part118.BrickColor = BrickColor.new("Ghost grey")
  1216. Part118.Anchored = true
  1217. Part118.Size = Vector3.new(1.66000032, 3.07999897, 3.11999893)
  1218. Part118.CFrame = CFrame.new(57.7614861, 5.7400589, -36.4739838, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1219. Part118.BottomSurface = Enum.SurfaceType.Smooth
  1220. Part118.TopSurface = Enum.SurfaceType.Smooth
  1221. Part118.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1222. Part118.Position = Vector3.new(57.7614861, 5.7400589, -36.4739838)
  1223. Part118.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1224. Part119.Parent = Model117
  1225. Part119.BrickColor = BrickColor.new("Brick yellow")
  1226. Part119.Anchored = true
  1227. Part119.Size = Vector3.new(1.56000042, 3.15999889, 3.34999895)
  1228. Part119.CFrame = CFrame.new(57.7814865, 5.78005886, -36.478981, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1229. Part119.BottomSurface = Enum.SurfaceType.Smooth
  1230. Part119.TopSurface = Enum.SurfaceType.Smooth
  1231. Part119.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1232. Part119.Position = Vector3.new(57.7814865, 5.78005886, -36.478981)
  1233. Part119.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1234. Part120.Parent = Model117
  1235. Part120.BrickColor = BrickColor.new("Brick yellow")
  1236. Part120.Anchored = true
  1237. Part120.Size = Vector3.new(1.42000043, 0.309999466, 0.480000049)
  1238. Part120.CFrame = CFrame.new(57.771492, 6.91505527, -34.983963, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1239. Part120.BottomSurface = Enum.SurfaceType.Smooth
  1240. Part120.TopSurface = Enum.SurfaceType.Smooth
  1241. Part120.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1242. Part120.Position = Vector3.new(57.771492, 6.91505527, -34.983963)
  1243. Part120.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1244. Part121.Parent = Model117
  1245. Part121.BrickColor = BrickColor.new("Really black")
  1246. Part121.Anchored = true
  1247. Part121.Size = Vector3.new(0.940000713, 0.239999458, 0.480000049)
  1248. Part121.CFrame = CFrame.new(57.7014999, 6.52603054, -34.983963, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1249. Part121.BottomSurface = Enum.SurfaceType.Smooth
  1250. Part121.TopSurface = Enum.SurfaceType.Smooth
  1251. Part121.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1252. Part121.Position = Vector3.new(57.7014999, 6.52603054, -34.983963)
  1253. Part121.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1254. Part122.Parent = Model117
  1255. Part122.BrickColor = BrickColor.new("Brick yellow")
  1256. Part122.Anchored = true
  1257. Part122.Size = Vector3.new(0.340000451, 0.309999466, 0.0500000007)
  1258. Part122.CFrame = CFrame.new(57.7311478, 4.95483685, -34.7689667, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1259. Part122.BottomSurface = Enum.SurfaceType.Smooth
  1260. Part122.TopSurface = Enum.SurfaceType.Smooth
  1261. Part122.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1262. Part122.Position = Vector3.new(57.7311478, 4.95483685, -34.7689667)
  1263. Part122.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1264. Decal123.Parent = Part122
  1265. Decal123.Texture = "http://www.roblox.com/asset/?id=748318287"
  1266. Decal123.Face = Enum.NormalId.Back
  1267. Part124.Parent = Model117
  1268. Part124.BrickColor = BrickColor.new("Pearl")
  1269. Part124.Anchored = true
  1270. Part124.Size = Vector3.new(0.560000956, 0.239999458, 0.480000049)
  1271. Part124.CFrame = CFrame.new(57.7415123, 4.56908703, -34.983963, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1272. Part124.BottomSurface = Enum.SurfaceType.Smooth
  1273. Part124.TopSurface = Enum.SurfaceType.Smooth
  1274. Part124.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1275. Part124.Position = Vector3.new(57.7415123, 4.56908703, -34.983963)
  1276. Part124.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1277. Part125.Parent = Model24
  1278. Part125.BrickColor = BrickColor.new("Ghost grey")
  1279. Part125.Rotation = Vector3.new(0, 90, 0)
  1280. Part125.Anchored = true
  1281. Part125.Size = Vector3.new(13, 3.60000014, 1)
  1282. Part125.CFrame = CFrame.new(46.0899773, 1.80002499, -29.1199493, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1283. Part125.BottomSurface = Enum.SurfaceType.Smooth
  1284. Part125.TopSurface = Enum.SurfaceType.Smooth
  1285. Part125.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1286. Part125.Position = Vector3.new(46.0899773, 1.80002499, -29.1199493)
  1287. Part125.Orientation = Vector3.new(0, 90, 0)
  1288. Part125.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1289. BlockMesh126.Parent = Part125
  1290. Part127.Parent = Model24
  1291. Part127.BrickColor = BrickColor.new("Ghost grey")
  1292. Part127.Anchored = true
  1293. Part127.FormFactor = Enum.FormFactor.Custom
  1294. Part127.Size = Vector3.new(23, 20.6000042, 1)
  1295. Part127.CFrame = CFrame.new(58.0899811, 10.3000193, -39.1199417, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1296. Part127.BottomSurface = Enum.SurfaceType.Smooth
  1297. Part127.TopSurface = Enum.SurfaceType.Smooth
  1298. Part127.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1299. Part127.Position = Vector3.new(58.0899811, 10.3000193, -39.1199417)
  1300. Part127.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1301. BlockMesh128.Parent = Part127
  1302. Part129.Parent = Model24
  1303. Part129.BrickColor = BrickColor.new("Ghost grey")
  1304. Part129.Rotation = Vector3.new(0, 90, 0)
  1305. Part129.Anchored = true
  1306. Part129.Size = Vector3.new(13, 3.60000014, 1)
  1307. Part129.CFrame = CFrame.new(46.0899773, 1.80002499, -4.11997604, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1308. Part129.BottomSurface = Enum.SurfaceType.Smooth
  1309. Part129.TopSurface = Enum.SurfaceType.Smooth
  1310. Part129.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1311. Part129.Position = Vector3.new(46.0899773, 1.80002499, -4.11997604)
  1312. Part129.Orientation = Vector3.new(0, 90, 0)
  1313. Part129.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1314. BlockMesh130.Parent = Part129
  1315. Part131.Parent = Model24
  1316. Part131.BrickColor = BrickColor.new("Ghost grey")
  1317. Part131.Rotation = Vector3.new(0, 90, 0)
  1318. Part131.Anchored = true
  1319. Part131.FormFactor = Enum.FormFactor.Custom
  1320. Part131.Size = Vector3.new(46, 20.6000061, 1)
  1321. Part131.CFrame = CFrame.new(70.0899811, 10.3000345, -16.6199741, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1322. Part131.BottomSurface = Enum.SurfaceType.Smooth
  1323. Part131.TopSurface = Enum.SurfaceType.Smooth
  1324. Part131.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1325. Part131.Position = Vector3.new(70.0899811, 10.3000345, -16.6199741)
  1326. Part131.Orientation = Vector3.new(0, 90, 0)
  1327. Part131.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1328. BlockMesh132.Parent = Part131
  1329. Model133.Name = "Macintosh II Series"
  1330. Model133.Parent = Model24
  1331. Part134.Parent = Model133
  1332. Part134.BrickColor = BrickColor.new("Ghost grey")
  1333. Part134.Rotation = Vector3.new(-0.459999979, -3.19999981, 0.0199999996)
  1334. Part134.Anchored = true
  1335. Part134.Size = Vector3.new(2.09000111, 1.69999981, 2.52999973)
  1336. Part134.CFrame = CFrame.new(54.0755692, 5.79679871, -37.097496, 0.998445451, -0.000425069244, -0.055735223, 0.000868596893, 0.999968469, 0.00793378334, 0.0557300746, -0.00796986371, 0.99841404)
  1337. Part134.BottomSurface = Enum.SurfaceType.Smooth
  1338. Part134.TopSurface = Enum.SurfaceType.Smooth
  1339. Part134.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1340. Part134.Position = Vector3.new(54.0755692, 5.79679871, -37.097496)
  1341. Part134.Orientation = Vector3.new(-0.449999988, -3.19999981, 0.049999997)
  1342. Part134.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1343. Part135.Parent = Model133
  1344. Part135.BrickColor = BrickColor.new("Ghost grey")
  1345. Part135.Rotation = Vector3.new(-0.459999979, -3.18999982, 0.0199999996)
  1346. Part135.Anchored = true
  1347. Part135.Size = Vector3.new(3.26000071, 0.750000119, 2.52999973)
  1348. Part135.CFrame = CFrame.new(53.53228, 4.57130909, -37.1247177, 0.998445749, -0.000425649137, -0.0557311773, 0.000869168609, 0.999968171, 0.00793419685, 0.0557260253, -0.00797030423, 0.998414338)
  1349. Part135.BottomSurface = Enum.SurfaceType.Smooth
  1350. Part135.TopSurface = Enum.SurfaceType.Smooth
  1351. Part135.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1352. Part135.Position = Vector3.new(53.53228, 4.57130909, -37.1247177)
  1353. Part135.Orientation = Vector3.new(-0.449999988, -3.18999982, 0.049999997)
  1354. Part135.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1355. Attachment136.Name = "Attachment0"
  1356. Attachment136.Parent = Part135
  1357. Attachment136.CFrame = CFrame.new(1.63000035, -0.00999999978, -0.170000002, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1358. Attachment136.Position = Vector3.new(1.63000035, -0.00999999978, -0.170000002)
  1359. RodConstraint137.Parent = Part135
  1360. RodConstraint137.Color = BrickColor.new("Dark stone grey")
  1361. RodConstraint137.Visible = true
  1362. RodConstraint137.Attachment0 = Attachment136
  1363. RodConstraint137.Attachment1 = Attachment145
  1364. RodConstraint137.Color = BrickColor.new("Dark stone grey")
  1365. RodConstraint137.Length = 1.9047276973724
  1366. Attachment138.Name = "Attachment1"
  1367. Attachment138.Parent = Part135
  1368. Attachment138.Rotation = Vector3.new(-179.799164, -0.368815064, 179.999908)
  1369. Attachment138.CFrame = CFrame.new(-1.63000035, -0.129999995, -0.179999992, -0.999979377, -1.64209609e-06, -0.0064369929, -2.42066162e-05, 0.999993861, 0.00350536848, 0.00643694773, 0.00350545114, -0.999973238)
  1370. Attachment138.Position = Vector3.new(-1.63000035, -0.129999995, -0.179999992)
  1371. Attachment138.Axis = Vector3.new(-0.999979377, -2.42066162e-05, 0.00643694773)
  1372. Attachment138.Orientation = Vector3.new(-0.20084323, -179.631195, -0.00138694549)
  1373. Part139.Parent = Model133
  1374. Part139.BrickColor = BrickColor.new("Ghost grey")
  1375. Part139.Rotation = Vector3.new(179.75, 2.82999992, 179.959991)
  1376. Part139.Anchored = true
  1377. Part139.Size = Vector3.new(3.19000077, 0.0500000007, 1.5399996)
  1378. Part139.CFrame = CFrame.new(53.4299164, 4.23105907, -34.9314041, -0.998783112, -0.000620812643, 0.0493161492, -0.000840471243, 0.999989867, -0.00443347823, -0.0493129008, -0.00446953205, -0.998773396)
  1379. Part139.BottomSurface = Enum.SurfaceType.Smooth
  1380. Part139.TopSurface = Enum.SurfaceType.Smooth
  1381. Part139.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1382. Part139.Position = Vector3.new(53.4299164, 4.23105907, -34.9314041)
  1383. Part139.Orientation = Vector3.new(0.25, 177.169998, -0.049999997)
  1384. Part139.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1385. Decal140.Parent = Part139
  1386. Decal140.Texture = "http://www.roblox.com/asset/?id=193925140"
  1387. Decal140.Face = Enum.NormalId.Top
  1388. Attachment141.Name = "Attachment0"
  1389. Attachment141.Parent = Part139
  1390. Attachment141.CFrame = CFrame.new(1.59500039, -0.00999999978, 0.0199999996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1391. Attachment141.Position = Vector3.new(1.59500039, -0.00999999978, 0.0199999996)
  1392. RodConstraint142.Parent = Part139
  1393. RodConstraint142.Color = BrickColor.new("Dark stone grey")
  1394. RodConstraint142.Visible = true
  1395. RodConstraint142.Attachment0 = Attachment141
  1396. RodConstraint142.Attachment1 = Attachment138
  1397. RodConstraint142.Color = BrickColor.new("Dark stone grey")
  1398. RodConstraint142.Length = 2.3756003379822
  1399. Part143.Parent = Model133
  1400. Part143.BrickColor = BrickColor.new("Really black")
  1401. Part143.Rotation = Vector3.new(-0.459999979, -3.19999981, 0.0199999996)
  1402. Part143.Anchored = true
  1403. Part143.Size = Vector3.new(1.3600018, 1.05000007, 2.57999969)
  1404. Part143.CFrame = CFrame.new(54.0491638, 5.94197083, -37.0750809, 0.998445511, -0.000425069185, -0.055735223, 0.000868596951, 0.999968231, 0.00793378334, 0.0557300746, -0.00796986092, 0.998414099)
  1405. Part143.BottomSurface = Enum.SurfaceType.Smooth
  1406. Part143.TopSurface = Enum.SurfaceType.Smooth
  1407. Part143.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1408. Part143.Position = Vector3.new(54.0491638, 5.94197083, -37.0750809)
  1409. Part143.Orientation = Vector3.new(-0.449999988, -3.19999981, 0.049999997)
  1410. Part143.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1411. Part144.Parent = Model133
  1412. Part144.BrickColor = BrickColor.new("Ghost grey")
  1413. Part144.Anchored = true
  1414. Part144.Size = Vector3.new(0.759999871, 0.310000211, 1.18000042)
  1415. Part144.CFrame = CFrame.new(55.8814201, 4.35505772, -34.8642273, 1, -8.00780015e-07, -4.71761496e-06, 8.00795078e-07, 1, 3.19791161e-06, 4.71761223e-06, -3.19791548e-06, 1)
  1416. Part144.BottomSurface = Enum.SurfaceType.Smooth
  1417. Part144.TopSurface = Enum.SurfaceType.Smooth
  1418. Part144.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1419. Part144.Position = Vector3.new(55.8814201, 4.35505772, -34.8642273)
  1420. Part144.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1421. Attachment145.Name = "Attachment1"
  1422. Attachment145.Parent = Part144
  1423. Attachment145.Rotation = Vector3.new(-0.455284774, -3.19504952, 0.0243925806)
  1424. Attachment145.CFrame = CFrame.new(0, -0.0399999991, -0.590000212, 0.99844557, -0.000425069098, -0.0557352342, 0.00086859701, 0.999968231, 0.00793378428, 0.0557300821, -0.00796986185, 0.998414218)
  1425. Attachment145.Position = Vector3.new(0, -0.0399999991, -0.590000212)
  1426. Attachment145.Axis = Vector3.new(0.99844557, 0.00086859701, 0.0557300821)
  1427. Attachment145.Orientation = Vector3.new(-0.454577118, -3.19514942, 0.0497685112)
  1428. Part146.Parent = Model133
  1429. Part146.BrickColor = BrickColor.new("Ghost grey")
  1430. Part146.Rotation = Vector3.new(-0.459999979, -3.19999981, 0.0299999993)
  1431. Part146.Anchored = true
  1432. Part146.Size = Vector3.new(0.420000046, 0.390000045, 0.340000004)
  1433. Part146.CFrame = CFrame.new(53.2692986, 5.15009594, -36.010582, 0.998445332, -0.000436059927, -0.055737555, 0.000879694184, 0.999968112, 0.00793505553, 0.0557323173, -0.00797175057, 0.99841392)
  1434. Part146.BottomSurface = Enum.SurfaceType.Smooth
  1435. Part146.TopSurface = Enum.SurfaceType.Smooth
  1436. Part146.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1437. Part146.Position = Vector3.new(53.2692986, 5.15009594, -36.010582)
  1438. Part146.Orientation = Vector3.new(-0.449999988, -3.19999981, 0.049999997)
  1439. Part146.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1440. Decal147.Parent = Part146
  1441. Decal147.Texture = "http://www.roblox.com/asset/?id=748318287"
  1442. Decal147.Face = Enum.NormalId.Back
  1443. Part148.Parent = Model133
  1444. Part148.BrickColor = BrickColor.new("Ghost grey")
  1445. Part148.Rotation = Vector3.new(-0.459999979, -3.19999981, 0.0299999993)
  1446. Part148.Anchored = true
  1447. Part148.Size = Vector3.new(0.420000046, 0.390000045, 0.340000004)
  1448. Part148.CFrame = CFrame.new(52.227993, 4.58919239, -36.0642548, 0.998445332, -0.000436059927, -0.055737555, 0.000879694184, 0.999968112, 0.00793505553, 0.0557323173, -0.00797175057, 0.99841392)
  1449. Part148.BottomSurface = Enum.SurfaceType.Smooth
  1450. Part148.TopSurface = Enum.SurfaceType.Smooth
  1451. Part148.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1452. Part148.Position = Vector3.new(52.227993, 4.58919239, -36.0642548)
  1453. Part148.Orientation = Vector3.new(-0.449999988, -3.19999981, 0.049999997)
  1454. Part148.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1455. Decal149.Parent = Part148
  1456. Decal149.Texture = "http://www.roblox.com/asset/?id=748318287"
  1457. Decal149.Face = Enum.NormalId.Back
  1458. Model150.Name = "table"
  1459. Model150.Parent = Model24
  1460. Part151.Parent = Model150
  1461. Part151.Material = Enum.Material.DiamondPlate
  1462. Part151.Rotation = Vector3.new(0, 90, 0)
  1463. Part151.Anchored = true
  1464. Part151.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1465. Part151.CFrame = CFrame.new(46.8149681, 2.60007, -33.9613419, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1466. Part151.Position = Vector3.new(46.8149681, 2.60007, -33.9613419)
  1467. Part151.Orientation = Vector3.new(0, 89.9899979, 0)
  1468. Part152.Parent = Model150
  1469. Part152.Material = Enum.Material.DiamondPlate
  1470. Part152.Rotation = Vector3.new(0, 90, 0)
  1471. Part152.Anchored = true
  1472. Part152.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1473. Part152.CFrame = CFrame.new(50.8141327, 2.60007191, -26.960865, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1474. Part152.Position = Vector3.new(50.8141327, 2.60007191, -26.960865)
  1475. Part152.Orientation = Vector3.new(0, 89.9899979, 0)
  1476. Part153.Parent = Model150
  1477. Part153.Material = Enum.Material.DiamondPlate
  1478. Part153.Rotation = Vector3.new(0, 90, 0)
  1479. Part153.Anchored = true
  1480. Part153.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1481. Part153.CFrame = CFrame.new(50.8149529, 2.60007191, -33.960907, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1482. Part153.Position = Vector3.new(50.8149529, 2.60007191, -33.960907)
  1483. Part153.Orientation = Vector3.new(0, 89.9899979, 0)
  1484. Part154.Parent = Model150
  1485. Part154.Material = Enum.Material.Metal
  1486. Part154.Rotation = Vector3.new(0, 90, 0)
  1487. Part154.Anchored = true
  1488. Part154.Size = Vector3.new(7.5999999, 0.200000003, 4.60000038)
  1489. Part154.CFrame = CFrame.new(48.8145409, 4.10006046, -30.4609756, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1490. Part154.BottomSurface = Enum.SurfaceType.Smooth
  1491. Part154.TopSurface = Enum.SurfaceType.Smooth
  1492. Part154.Position = Vector3.new(48.8145409, 4.10006046, -30.4609756)
  1493. Part154.Orientation = Vector3.new(0, 89.9899979, 0)
  1494. Part155.Parent = Model150
  1495. Part155.Material = Enum.Material.DiamondPlate
  1496. Part155.Rotation = Vector3.new(0, 90, 0)
  1497. Part155.Anchored = true
  1498. Part155.Size = Vector3.new(0.200000003, 2.80000019, 0.200000003)
  1499. Part155.CFrame = CFrame.new(46.8141441, 2.60007, -26.9612541, 0.000111000001, 0, 1, 0, 1, 0, -1, 0, 0.000111000001)
  1500. Part155.Position = Vector3.new(46.8141441, 2.60007, -26.9612541)
  1501. Part155.Orientation = Vector3.new(0, 89.9899979, 0)
  1502. Model156.Name = "Macintosh2"
  1503. Model156.Parent = Model24
  1504. Part157.Parent = Model156
  1505. Part157.Anchored = true
  1506. Part157.Size = Vector3.new(1.05000055, 0.270000011, 0.71999985)
  1507. Part157.CFrame = CFrame.new(66.5030212, 4.33506107, -25.2451668, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1508. Part157.BottomSurface = Enum.SurfaceType.Smooth
  1509. Part157.TopSurface = Enum.SurfaceType.Smooth
  1510. Part157.Position = Vector3.new(66.5030212, 4.33506107, -25.2451668)
  1511. Attachment158.Name = "Attachment0"
  1512. Attachment158.Parent = Part157
  1513. Attachment158.CFrame = CFrame.new(0.525000274, -0.0299999993, -0.0399999991, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1514. Attachment158.Position = Vector3.new(0.525000274, -0.0299999993, -0.0399999991)
  1515. RopeConstraint159.Parent = Part157
  1516. RopeConstraint159.Color = BrickColor.new("Medium stone grey")
  1517. RopeConstraint159.Visible = true
  1518. RopeConstraint159.Attachment0 = Attachment158
  1519. RopeConstraint159.Attachment1 = Attachment172
  1520. RopeConstraint159.Color = BrickColor.new("Medium stone grey")
  1521. RopeConstraint159.Length = 1.4729211330414
  1522. Part160.Parent = Model156
  1523. Part160.Anchored = true
  1524. Part160.Size = Vector3.new(1.70000005, 1.0599997, 2.38000059)
  1525. Part160.CFrame = CFrame.new(68.2721558, 4.73006153, -27.3272133, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1526. Part160.BottomSurface = Enum.SurfaceType.Smooth
  1527. Part160.TopSurface = Enum.SurfaceType.Smooth
  1528. Part160.Position = Vector3.new(68.2721558, 4.73006153, -27.3272133)
  1529. Part161.Parent = Model156
  1530. Part161.Anchored = true
  1531. Part161.Size = Vector3.new(1.67000008, 0.319999933, 0.370001107)
  1532. Part161.CFrame = CFrame.new(68.2280731, 4.69174671, -28.1202393, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1533. Part161.BottomSurface = Enum.SurfaceType.Smooth
  1534. Part161.TopSurface = Enum.SurfaceType.Smooth
  1535. Part161.Position = Vector3.new(68.2280731, 4.69174671, -28.1202393)
  1536. Decal162.Parent = Part161
  1537. Decal162.Texture = "http://www.roblox.com/asset/?id=748318287"
  1538. Decal162.Face = Enum.NormalId.Left
  1539. Part163.Parent = Model156
  1540. Part163.Rotation = Vector3.new(0, 90, 0)
  1541. Part163.Anchored = true
  1542. Part163.Size = Vector3.new(1.8599999, 0.959999919, 0.389999986)
  1543. Part163.CFrame = CFrame.new(67.5999069, 4.66804218, -27.4869156, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1544. Part163.BottomSurface = Enum.SurfaceType.Smooth
  1545. Part163.TopSurface = Enum.SurfaceType.Smooth
  1546. Part163.Position = Vector3.new(67.5999069, 4.66804218, -27.4869156)
  1547. Part163.Orientation = Vector3.new(0, 90, 0)
  1548. SurfaceGui164.Parent = Part163
  1549. TextLabel165.Parent = SurfaceGui164
  1550. TextLabel165.Size = UDim2.new(0, 809, 0, 600)
  1551. TextLabel165.Text = "Macintosh"
  1552. TextLabel165.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  1553. TextLabel165.Font = Enum.Font.SourceSans
  1554. TextLabel165.FontSize = Enum.FontSize.Size96
  1555. TextLabel165.TextColor3 = Color3.new(0.564706, 0.537255, 0.552941)
  1556. TextLabel165.TextStrokeColor3 = Color3.new(0.486275, 0.486275, 0.486275)
  1557. TextLabel165.TextStrokeTransparency = 0
  1558. TextLabel165.TextWrapped = true
  1559. Attachment166.Name = "Attachment0"
  1560. Attachment166.Parent = Part163
  1561. Attachment166.Rotation = Vector3.new(0, 90, 0)
  1562. Attachment166.CFrame = CFrame.new(-0.649999976, -0.310000002, -0.194999993, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1563. Attachment166.Position = Vector3.new(-0.649999976, -0.310000002, -0.194999993)
  1564. Attachment166.Axis = Vector3.new(0, 0, -1)
  1565. Attachment166.Orientation = Vector3.new(0, 90, 0)
  1566. RopeConstraint167.Parent = Part163
  1567. RopeConstraint167.Color = BrickColor.new("Medium stone grey")
  1568. RopeConstraint167.Visible = true
  1569. RopeConstraint167.Attachment0 = Attachment166
  1570. RopeConstraint167.Attachment1 = Attachment170
  1571. RopeConstraint167.Color = BrickColor.new("Medium stone grey")
  1572. RopeConstraint167.Length = 0.38866922259331
  1573. Part168.Parent = Model156
  1574. Part168.Rotation = Vector3.new(0, 90, 0)
  1575. Part168.Anchored = true
  1576. Part168.Size = Vector3.new(3.33000064, 0.140000015, 1.5200001)
  1577. Part168.CFrame = CFrame.new(66.2752609, 4.27005863, -27.4044571, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1578. Part168.BottomSurface = Enum.SurfaceType.Smooth
  1579. Part168.TopSurface = Enum.SurfaceType.Smooth
  1580. Part168.Position = Vector3.new(66.2752609, 4.27005863, -27.4044571)
  1581. Part168.Orientation = Vector3.new(0, 90, 0)
  1582. Decal169.Parent = Part168
  1583. Decal169.Texture = "http://www.roblox.com/asset/?id=193925140"
  1584. Decal169.Face = Enum.NormalId.Top
  1585. Attachment170.Name = "Attachment1"
  1586. Attachment170.Parent = Part168
  1587. Attachment170.Rotation = Vector3.new(0, 90, 0)
  1588. Attachment170.CFrame = CFrame.new(-0.589999974, -0.0299999993, 0.76000005, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1589. Attachment170.Position = Vector3.new(-0.589999974, -0.0299999993, 0.76000005)
  1590. Attachment170.Axis = Vector3.new(0, 0, -1)
  1591. Attachment170.Orientation = Vector3.new(0, 90, 0)
  1592. Part171.Parent = Model156
  1593. Part171.Anchored = true
  1594. Part171.Size = Vector3.new(1.70000005, 2.45999932, 0.38000074)
  1595. Part171.CFrame = CFrame.new(68.2721558, 5.43006134, -26.304718, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1596. Part171.BottomSurface = Enum.SurfaceType.Smooth
  1597. Part171.TopSurface = Enum.SurfaceType.Smooth
  1598. Part171.Position = Vector3.new(68.2721558, 5.43006134, -26.304718)
  1599. Attachment172.Name = "Attachment1"
  1600. Attachment172.Parent = Part171
  1601. Attachment172.CFrame = CFrame.new(-0.0299999993, -1.03999996, 0.19000037, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1602. Attachment172.Position = Vector3.new(-0.0299999993, -1.03999996, 0.19000037)
  1603. Part173.Parent = Model156
  1604. Part173.BrickColor = BrickColor.new("Electric blue")
  1605. Part173.Transparency = 0.69999998807907
  1606. Part173.Anchored = true
  1607. Part173.Size = Vector3.new(0.0500000007, 1.11000013, 1.54999948)
  1608. Part173.CFrame = CFrame.new(67.4749908, 5.87601089, -27.3204575, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1609. Part173.BottomSurface = Enum.SurfaceType.Smooth
  1610. Part173.TopSurface = Enum.SurfaceType.Smooth
  1611. Part173.Color = Color3.new(0.0352941, 0.537255, 0.811765)
  1612. Part173.Position = Vector3.new(67.4749908, 5.87601089, -27.3204575)
  1613. Part173.Color = Color3.new(0.0352941, 0.537255, 0.811765)
  1614. Part174.Parent = Model156
  1615. Part174.BrickColor = BrickColor.new("Fossil")
  1616. Part174.Anchored = true
  1617. Part174.Size = Vector3.new(1.62000012, 1.13, 0.109999999)
  1618. Part174.CFrame = CFrame.new(68.2600021, 5.85601234, -28.1335449, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1619. Part174.BottomSurface = Enum.SurfaceType.Smooth
  1620. Part174.TopSurface = Enum.SurfaceType.Smooth
  1621. Part174.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1622. Part174.Position = Vector3.new(68.2600021, 5.85601234, -28.1335449)
  1623. Part174.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1624. Part175.Parent = Model156
  1625. Part175.BrickColor = BrickColor.new("Fossil")
  1626. Part175.Anchored = true
  1627. Part175.Size = Vector3.new(1.66000009, 1.10000002, 0.109999999)
  1628. Part175.CFrame = CFrame.new(68.2799911, 5.87101269, -26.5094452, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1629. Part175.BottomSurface = Enum.SurfaceType.Smooth
  1630. Part175.TopSurface = Enum.SurfaceType.Smooth
  1631. Part175.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1632. Part175.Position = Vector3.new(68.2799911, 5.87101269, -26.5094452)
  1633. Part175.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1634. Part176.Parent = Model156
  1635. Part176.BrickColor = BrickColor.new("Really black")
  1636. Part176.Anchored = true
  1637. Part176.Size = Vector3.new(0.230000004, 0.090000242, 0.81000036)
  1638. Part176.CFrame = CFrame.new(67.4279175, 4.52539539, -27.4668808, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1639. Part176.BottomSurface = Enum.SurfaceType.Smooth
  1640. Part176.TopSurface = Enum.SurfaceType.Smooth
  1641. Part176.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1642. Part176.Position = Vector3.new(67.4279175, 4.52539539, -27.4668808)
  1643. Part176.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1644. Part177.Parent = Model156
  1645. Part177.Anchored = true
  1646. Part177.Size = Vector3.new(1.70000005, 0.409999967, 2.38000059)
  1647. Part177.CFrame = CFrame.new(68.2721558, 6.63759327, -27.3272133, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1648. Part177.BottomSurface = Enum.SurfaceType.Smooth
  1649. Part177.TopSurface = Enum.SurfaceType.Smooth
  1650. Part177.Position = Vector3.new(68.2721558, 6.63759327, -27.3272133)
  1651. Part178.Parent = Model156
  1652. Part178.Anchored = true
  1653. Part178.Size = Vector3.new(1.70000005, 2.45999932, 0.320000708)
  1654. Part178.CFrame = CFrame.new(68.2721558, 5.43006134, -28.3572159, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1655. Part178.BottomSurface = Enum.SurfaceType.Smooth
  1656. Part178.TopSurface = Enum.SurfaceType.Smooth
  1657. Part178.Position = Vector3.new(68.2721558, 5.43006134, -28.3572159)
  1658. Part179.Parent = Model156
  1659. Part179.BrickColor = BrickColor.new("Fossil")
  1660. Part179.Anchored = true
  1661. Part179.Size = Vector3.new(1.66000009, 0.100000001, 1.69999969)
  1662. Part179.CFrame = CFrame.new(68.2799911, 5.27576923, -27.3312263, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1663. Part179.BottomSurface = Enum.SurfaceType.Smooth
  1664. Part179.TopSurface = Enum.SurfaceType.Smooth
  1665. Part179.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1666. Part179.Position = Vector3.new(68.2799911, 5.27576923, -27.3312263)
  1667. Part179.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1668. Part180.Parent = Model156
  1669. Part180.BrickColor = BrickColor.new("Fossil")
  1670. Part180.Anchored = true
  1671. Part180.Size = Vector3.new(1.58999991, 0.100000001, 1.52999985)
  1672. Part180.CFrame = CFrame.new(68.2450104, 6.38476658, -27.3062286, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1673. Part180.BottomSurface = Enum.SurfaceType.Smooth
  1674. Part180.TopSurface = Enum.SurfaceType.Smooth
  1675. Part180.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1676. Part180.Position = Vector3.new(68.2450104, 6.38476658, -27.3062286)
  1677. Part180.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1678. Part181.Parent = Model156
  1679. Part181.Anchored = true
  1680. Part181.Size = Vector3.new(0.0899999067, 2.6499989, 2.38000059)
  1681. Part181.CFrame = CFrame.new(69.0771484, 5.51759148, -27.3272133, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1682. Part181.BottomSurface = Enum.SurfaceType.Smooth
  1683. Part181.TopSurface = Enum.SurfaceType.Smooth
  1684. Part181.Position = Vector3.new(69.0771484, 5.51759148, -27.3272133)
  1685. Part182.Parent = Model156
  1686. Part182.BrickColor = BrickColor.new("Lily white")
  1687. Part182.Anchored = true
  1688. Part182.Size = Vector3.new(1.4599998, 1.00000012, 1.50999951)
  1689. Part182.CFrame = CFrame.new(68.3464584, 5.82101154, -27.3135605, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1690. Part182.BottomSurface = Enum.SurfaceType.Smooth
  1691. Part182.TopSurface = Enum.SurfaceType.Smooth
  1692. Part182.Color = Color3.new(0.929412, 0.917647, 0.917647)
  1693. Part182.Position = Vector3.new(68.3464584, 5.82101154, -27.3135605)
  1694. Part182.Color = Color3.new(0.929412, 0.917647, 0.917647)
  1695. PointLight183.Parent = Part182
  1696. Decal184.Parent = Part182
  1697. Decal184.Texture = "http://www.roblox.com/asset/?id=888395730"
  1698. Decal184.Face = Enum.NormalId.Left
  1699. Model185.Name = "Macintosh1"
  1700. Model185.Parent = Model24
  1701. Part186.Parent = Model185
  1702. Part186.BrickColor = BrickColor.new("Beige")
  1703. Part186.Anchored = true
  1704. Part186.Size = Vector3.new(1.70000005, 1.0599997, 2.38000059)
  1705. Part186.CFrame = CFrame.new(68.2721558, 4.73006153, -22.0027771, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1706. Part186.BottomSurface = Enum.SurfaceType.Smooth
  1707. Part186.TopSurface = Enum.SurfaceType.Smooth
  1708. Part186.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1709. Part186.Position = Vector3.new(68.2721558, 4.73006153, -22.0027771)
  1710. Part186.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1711. Part187.Parent = Model185
  1712. Part187.BrickColor = BrickColor.new("Beige")
  1713. Part187.Anchored = true
  1714. Part187.Size = Vector3.new(1.05000055, 0.270000011, 0.71999985)
  1715. Part187.CFrame = CFrame.new(66.5030212, 4.33506107, -19.9207306, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1716. Part187.BottomSurface = Enum.SurfaceType.Smooth
  1717. Part187.TopSurface = Enum.SurfaceType.Smooth
  1718. Part187.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1719. Part187.Position = Vector3.new(66.5030212, 4.33506107, -19.9207306)
  1720. Part187.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1721. Attachment188.Name = "Attachment0"
  1722. Attachment188.Parent = Part187
  1723. Attachment188.CFrame = CFrame.new(0.525000274, -0.0299999993, -0.0399999991, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1724. Attachment188.Position = Vector3.new(0.525000274, -0.0299999993, -0.0399999991)
  1725. RopeConstraint189.Parent = Part187
  1726. RopeConstraint189.Color = BrickColor.new("Buttermilk")
  1727. RopeConstraint189.Visible = true
  1728. RopeConstraint189.Attachment0 = Attachment188
  1729. RopeConstraint189.Attachment1 = Attachment201
  1730. RopeConstraint189.Color = BrickColor.new("Buttermilk")
  1731. RopeConstraint189.Length = 1.4729211330414
  1732. Part190.Parent = Model185
  1733. Part190.BrickColor = BrickColor.new("Beige")
  1734. Part190.Anchored = true
  1735. Part190.Size = Vector3.new(1.67000008, 0.319999933, 0.370001107)
  1736. Part190.CFrame = CFrame.new(68.2280731, 4.69174671, -22.7957993, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1737. Part190.BottomSurface = Enum.SurfaceType.Smooth
  1738. Part190.TopSurface = Enum.SurfaceType.Smooth
  1739. Part190.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1740. Part190.Position = Vector3.new(68.2280731, 4.69174671, -22.7957993)
  1741. Part190.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1742. Decal191.Parent = Part190
  1743. Decal191.Texture = "http://www.roblox.com/asset/?id=748318287"
  1744. Decal191.Face = Enum.NormalId.Left
  1745. Part192.Parent = Model185
  1746. Part192.BrickColor = BrickColor.new("Brick yellow")
  1747. Part192.Rotation = Vector3.new(0, 90, 0)
  1748. Part192.Anchored = true
  1749. Part192.Size = Vector3.new(1.8599999, 0.959999919, 0.389999986)
  1750. Part192.CFrame = CFrame.new(67.5999069, 4.66804218, -22.1624813, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1751. Part192.BottomSurface = Enum.SurfaceType.Smooth
  1752. Part192.TopSurface = Enum.SurfaceType.Smooth
  1753. Part192.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1754. Part192.Position = Vector3.new(67.5999069, 4.66804218, -22.1624813)
  1755. Part192.Orientation = Vector3.new(0, 90, 0)
  1756. Part192.Color = Color3.new(0.843137, 0.772549, 0.603922)
  1757. SurfaceGui193.Parent = Part192
  1758. TextLabel194.Parent = SurfaceGui193
  1759. TextLabel194.Size = UDim2.new(0, 809, 0, 600)
  1760. TextLabel194.Text = "Macintosh"
  1761. TextLabel194.BackgroundColor3 = Color3.new(0.843137, 0.772549, 0.603922)
  1762. TextLabel194.Font = Enum.Font.SourceSans
  1763. TextLabel194.FontSize = Enum.FontSize.Size96
  1764. TextLabel194.TextColor3 = Color3.new(0.564706, 0.537255, 0.552941)
  1765. TextLabel194.TextStrokeColor3 = Color3.new(0.486275, 0.486275, 0.486275)
  1766. TextLabel194.TextStrokeTransparency = 0
  1767. TextLabel194.TextWrapped = true
  1768. Attachment195.Name = "Attachment0"
  1769. Attachment195.Parent = Part192
  1770. Attachment195.Rotation = Vector3.new(0, 90, 0)
  1771. Attachment195.CFrame = CFrame.new(-0.649999976, -0.310000002, -0.194999993, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1772. Attachment195.Position = Vector3.new(-0.649999976, -0.310000002, -0.194999993)
  1773. Attachment195.Axis = Vector3.new(0, 0, -1)
  1774. Attachment195.Orientation = Vector3.new(0, 90, 0)
  1775. RopeConstraint196.Parent = Part192
  1776. RopeConstraint196.Color = BrickColor.new("Cool yellow")
  1777. RopeConstraint196.Visible = true
  1778. RopeConstraint196.Attachment0 = Attachment195
  1779. RopeConstraint196.Attachment1 = Attachment199
  1780. RopeConstraint196.Color = BrickColor.new("Cool yellow")
  1781. RopeConstraint196.Length = 0.38866922259331
  1782. Part197.Parent = Model185
  1783. Part197.BrickColor = BrickColor.new("Beige")
  1784. Part197.Rotation = Vector3.new(0, 90, 0)
  1785. Part197.Anchored = true
  1786. Part197.Size = Vector3.new(3.33000064, 0.140000015, 1.5200001)
  1787. Part197.CFrame = CFrame.new(66.2752609, 4.27005863, -22.0800228, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1788. Part197.BottomSurface = Enum.SurfaceType.Smooth
  1789. Part197.TopSurface = Enum.SurfaceType.Smooth
  1790. Part197.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1791. Part197.Position = Vector3.new(66.2752609, 4.27005863, -22.0800228)
  1792. Part197.Orientation = Vector3.new(0, 90, 0)
  1793. Part197.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1794. Decal198.Parent = Part197
  1795. Decal198.Texture = "http://www.roblox.com/asset/?id=193925140"
  1796. Decal198.Face = Enum.NormalId.Top
  1797. Attachment199.Name = "Attachment1"
  1798. Attachment199.Parent = Part197
  1799. Attachment199.Rotation = Vector3.new(0, 90, 0)
  1800. Attachment199.CFrame = CFrame.new(-0.589999974, -0.0299999993, 0.76000005, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1801. Attachment199.Position = Vector3.new(-0.589999974, -0.0299999993, 0.76000005)
  1802. Attachment199.Axis = Vector3.new(0, 0, -1)
  1803. Attachment199.Orientation = Vector3.new(0, 90, 0)
  1804. Part200.Parent = Model185
  1805. Part200.BrickColor = BrickColor.new("Beige")
  1806. Part200.Anchored = true
  1807. Part200.Size = Vector3.new(1.70000005, 2.45999932, 0.38000074)
  1808. Part200.CFrame = CFrame.new(68.2721558, 5.43006134, -20.9802799, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1809. Part200.BottomSurface = Enum.SurfaceType.Smooth
  1810. Part200.TopSurface = Enum.SurfaceType.Smooth
  1811. Part200.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1812. Part200.Position = Vector3.new(68.2721558, 5.43006134, -20.9802799)
  1813. Part200.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1814. Attachment201.Name = "Attachment1"
  1815. Attachment201.Parent = Part200
  1816. Attachment201.CFrame = CFrame.new(-0.0299999993, -1.03999996, 0.19000037, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1817. Attachment201.Position = Vector3.new(-0.0299999993, -1.03999996, 0.19000037)
  1818. Part202.Parent = Model185
  1819. Part202.BrickColor = BrickColor.new("Electric blue")
  1820. Part202.Transparency = 0.69999998807907
  1821. Part202.Anchored = true
  1822. Part202.Size = Vector3.new(0.0500000007, 1.08000016, 1.50999951)
  1823. Part202.CFrame = CFrame.new(67.4749908, 5.86101151, -22.0160217, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1824. Part202.BottomSurface = Enum.SurfaceType.Smooth
  1825. Part202.TopSurface = Enum.SurfaceType.Smooth
  1826. Part202.Color = Color3.new(0.0352941, 0.537255, 0.811765)
  1827. Part202.Position = Vector3.new(67.4749908, 5.86101151, -22.0160217)
  1828. Part202.Color = Color3.new(0.0352941, 0.537255, 0.811765)
  1829. Part203.Parent = Model185
  1830. Part203.BrickColor = BrickColor.new("Fossil")
  1831. Part203.Anchored = true
  1832. Part203.Size = Vector3.new(1.62000012, 1.13, 0.109999999)
  1833. Part203.CFrame = CFrame.new(68.2600021, 5.85601234, -22.8091125, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1834. Part203.BottomSurface = Enum.SurfaceType.Smooth
  1835. Part203.TopSurface = Enum.SurfaceType.Smooth
  1836. Part203.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1837. Part203.Position = Vector3.new(68.2600021, 5.85601234, -22.8091125)
  1838. Part203.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1839. Part204.Parent = Model185
  1840. Part204.BrickColor = BrickColor.new("Fossil")
  1841. Part204.Anchored = true
  1842. Part204.Size = Vector3.new(1.66000009, 1.10000002, 0.109999999)
  1843. Part204.CFrame = CFrame.new(68.2799911, 5.87101269, -21.185009, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1844. Part204.BottomSurface = Enum.SurfaceType.Smooth
  1845. Part204.TopSurface = Enum.SurfaceType.Smooth
  1846. Part204.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1847. Part204.Position = Vector3.new(68.2799911, 5.87101269, -21.185009)
  1848. Part204.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1849. Part205.Parent = Model185
  1850. Part205.BrickColor = BrickColor.new("Really black")
  1851. Part205.Anchored = true
  1852. Part205.Size = Vector3.new(0.230000004, 0.090000242, 0.81000036)
  1853. Part205.CFrame = CFrame.new(67.4279175, 4.52539539, -22.1424465, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1854. Part205.BottomSurface = Enum.SurfaceType.Smooth
  1855. Part205.TopSurface = Enum.SurfaceType.Smooth
  1856. Part205.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1857. Part205.Position = Vector3.new(67.4279175, 4.52539539, -22.1424465)
  1858. Part205.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1859. Part206.Parent = Model185
  1860. Part206.BrickColor = BrickColor.new("Beige")
  1861. Part206.Anchored = true
  1862. Part206.Size = Vector3.new(1.70000005, 0.409999967, 2.38000059)
  1863. Part206.CFrame = CFrame.new(68.2721558, 6.63759327, -22.0027771, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1864. Part206.BottomSurface = Enum.SurfaceType.Smooth
  1865. Part206.TopSurface = Enum.SurfaceType.Smooth
  1866. Part206.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1867. Part206.Position = Vector3.new(68.2721558, 6.63759327, -22.0027771)
  1868. Part206.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1869. Part207.Parent = Model185
  1870. Part207.BrickColor = BrickColor.new("Beige")
  1871. Part207.Anchored = true
  1872. Part207.Size = Vector3.new(1.70000005, 2.45999932, 0.320000708)
  1873. Part207.CFrame = CFrame.new(68.2721558, 5.43006134, -23.0327835, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1874. Part207.BottomSurface = Enum.SurfaceType.Smooth
  1875. Part207.TopSurface = Enum.SurfaceType.Smooth
  1876. Part207.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1877. Part207.Position = Vector3.new(68.2721558, 5.43006134, -23.0327835)
  1878. Part207.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1879. Part208.Parent = Model185
  1880. Part208.BrickColor = BrickColor.new("Fossil")
  1881. Part208.Anchored = true
  1882. Part208.Size = Vector3.new(1.66000009, 0.100000001, 1.69999969)
  1883. Part208.CFrame = CFrame.new(68.2799911, 5.27576923, -22.0067902, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1884. Part208.BottomSurface = Enum.SurfaceType.Smooth
  1885. Part208.TopSurface = Enum.SurfaceType.Smooth
  1886. Part208.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1887. Part208.Position = Vector3.new(68.2799911, 5.27576923, -22.0067902)
  1888. Part208.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1889. Part209.Parent = Model185
  1890. Part209.BrickColor = BrickColor.new("Fossil")
  1891. Part209.Anchored = true
  1892. Part209.Size = Vector3.new(1.58999991, 0.100000001, 1.52999985)
  1893. Part209.CFrame = CFrame.new(68.2450104, 6.38476658, -21.9817944, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1894. Part209.BottomSurface = Enum.SurfaceType.Smooth
  1895. Part209.TopSurface = Enum.SurfaceType.Smooth
  1896. Part209.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1897. Part209.Position = Vector3.new(68.2450104, 6.38476658, -21.9817944)
  1898. Part209.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1899. Part210.Parent = Model185
  1900. Part210.BrickColor = BrickColor.new("Beige")
  1901. Part210.Anchored = true
  1902. Part210.Size = Vector3.new(0.0899999067, 2.6499989, 2.38000059)
  1903. Part210.CFrame = CFrame.new(69.0771484, 5.51759148, -22.0027771, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1904. Part210.BottomSurface = Enum.SurfaceType.Smooth
  1905. Part210.TopSurface = Enum.SurfaceType.Smooth
  1906. Part210.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1907. Part210.Position = Vector3.new(69.0771484, 5.51759148, -22.0027771)
  1908. Part210.Color = Color3.new(0.792157, 0.74902, 0.639216)
  1909. Part211.Parent = Model185
  1910. Part211.BrickColor = BrickColor.new("Lily white")
  1911. Part211.Anchored = true
  1912. Part211.Size = Vector3.new(1.4599998, 1.00000012, 1.50999951)
  1913. Part211.CFrame = CFrame.new(68.3464584, 5.82101154, -21.9891243, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1914. Part211.BottomSurface = Enum.SurfaceType.Smooth
  1915. Part211.TopSurface = Enum.SurfaceType.Smooth
  1916. Part211.Color = Color3.new(0.929412, 0.917647, 0.917647)
  1917. Part211.Position = Vector3.new(68.3464584, 5.82101154, -21.9891243)
  1918. Part211.Color = Color3.new(0.929412, 0.917647, 0.917647)
  1919. PointLight212.Parent = Part211
  1920. Decal213.Parent = Part211
  1921. Decal213.Texture = "http://www.roblox.com/asset/?id=888395730"
  1922. Decal213.Face = Enum.NormalId.Left
  1923. Model214.Name = "Mac"
  1924. Model214.Parent = Model24
  1925. Model215.Name = "Mouse"
  1926. Model215.Parent = Model214
  1927. Part216.Name = "Smooth Block Model"
  1928. Part216.Parent = Model215
  1929. Part216.Material = Enum.Material.SmoothPlastic
  1930. Part216.BrickColor = BrickColor.new("Really black")
  1931. Part216.Reflectance = 0.20000000298023
  1932. Part216.Rotation = Vector3.new(-90, -90, 0)
  1933. Part216.Anchored = true
  1934. Part216.FormFactor = Enum.FormFactor.Custom
  1935. Part216.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1936. Part216.CFrame = CFrame.new(67.7387543, 4.39923954, -37.3340607, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  1937. Part216.BottomSurface = Enum.SurfaceType.Smooth
  1938. Part216.TopSurface = Enum.SurfaceType.Smooth
  1939. Part216.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1940. Part216.Position = Vector3.new(67.7387543, 4.39923954, -37.3340607)
  1941. Part216.Orientation = Vector3.new(0, -90, 90)
  1942. Part216.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1943. CylinderMesh217.Parent = Part216
  1944. CylinderMesh217.Scale = Vector3.new(0.99000001, 0.100000001, 0.99000001)
  1945. CylinderMesh217.Scale = Vector3.new(0.99000001, 0.100000001, 0.99000001)
  1946. Decal218.Parent = mas
  1947. Decal218.Texture = "http://www.roblox.com/asset/?id=6233339"
  1948. Decal218.Face = Enum.NormalId.Top
  1949. Model219.Name = "Screen"
  1950. Model219.Parent = Model214
  1951. Part220.Parent = Model219
  1952. Part220.BrickColor = BrickColor.new("Ghost grey")
  1953. Part220.Rotation = Vector3.new(0, -90, 0)
  1954. Part220.Anchored = true
  1955. Part220.Size = Vector3.new(2.38000059, 0.150000006, 1.36000013)
  1956. Part220.CFrame = CFrame.new(67.0808563, 4.29425144, -34.5625381, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1957. Part220.BottomSurface = Enum.SurfaceType.Smooth
  1958. Part220.TopSurface = Enum.SurfaceType.Smooth
  1959. Part220.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1960. Part220.Position = Vector3.new(67.0808563, 4.29425144, -34.5625381)
  1961. Part220.Orientation = Vector3.new(0, -90, 0)
  1962. Part220.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1963. Part221.Parent = Model219
  1964. Part221.BrickColor = BrickColor.new("Ghost grey")
  1965. Part221.Rotation = Vector3.new(0, -90, 0)
  1966. Part221.Anchored = true
  1967. Part221.Size = Vector3.new(1.78000081, 0.600000501, 0.129999995)
  1968. Part221.CFrame = CFrame.new(67.6958542, 4.5192461, -34.5625458, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1969. Part221.BottomSurface = Enum.SurfaceType.Smooth
  1970. Part221.TopSurface = Enum.SurfaceType.Smooth
  1971. Part221.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1972. Part221.Position = Vector3.new(67.6958542, 4.5192461, -34.5625458)
  1973. Part221.Orientation = Vector3.new(0, -90, 0)
  1974. Part221.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1975. Part222.Parent = Model219
  1976. Part222.BrickColor = BrickColor.new("Ghost grey")
  1977. Part222.Rotation = Vector3.new(0, -90, 0)
  1978. Part222.Anchored = true
  1979. Part222.Size = Vector3.new(3.8700006, 0.409999877, 0.129999995)
  1980. Part222.CFrame = CFrame.new(67.6958618, 5.01699162, -34.4875107, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1981. Part222.BottomSurface = Enum.SurfaceType.Smooth
  1982. Part222.TopSurface = Enum.SurfaceType.Smooth
  1983. Part222.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1984. Part222.Position = Vector3.new(67.6958618, 5.01699162, -34.4875107)
  1985. Part222.Orientation = Vector3.new(0, -90, 0)
  1986. Part222.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1987. Part223.Parent = Model219
  1988. Part223.BrickColor = BrickColor.new("Ghost grey")
  1989. Part223.Rotation = Vector3.new(0, -90, 0)
  1990. Part223.Anchored = true
  1991. Part223.Size = Vector3.new(0.330001533, 0.329999834, 0.169999987)
  1992. Part223.CFrame = CFrame.new(67.6758728, 4.99066639, -34.6175385, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1993. Part223.BottomSurface = Enum.SurfaceType.Smooth
  1994. Part223.TopSurface = Enum.SurfaceType.Smooth
  1995. Part223.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1996. Part223.Position = Vector3.new(67.6758728, 4.99066639, -34.6175385)
  1997. Part223.Orientation = Vector3.new(0, -90, 0)
  1998. Part223.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1999. Decal224.Parent = Part223
  2000. Decal224.Texture = "http://www.roblox.com/asset/?id=13663332"
  2001. Decal224.Face = Enum.NormalId.Back
  2002. Part225.Parent = Model219
  2003. Part225.BrickColor = BrickColor.new("Really black")
  2004. Part225.Rotation = Vector3.new(0, -90, 0)
  2005. Part225.Anchored = true
  2006. Part225.Size = Vector3.new(3.8700006, 2.0899992, 0.129999995)
  2007. Part225.CFrame = CFrame.new(67.6958618, 6.26845837, -34.4875107, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2008. Part225.BottomSurface = Enum.SurfaceType.Smooth
  2009. Part225.TopSurface = Enum.SurfaceType.Smooth
  2010. Part225.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2011. Part225.Position = Vector3.new(67.6958618, 6.26845837, -34.4875107)
  2012. Part225.Orientation = Vector3.new(0, -90, 0)
  2013. Part225.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2014. Part226.Parent = Model219
  2015. Part226.BrickColor = BrickColor.new("Really black")
  2016. Part226.Rotation = Vector3.new(0, -90, 0)
  2017. Part226.Anchored = true
  2018. Part226.Size = Vector3.new(3.58000064, 1.78999925, 0.150000021)
  2019. Part226.CFrame = CFrame.new(67.6858521, 6.29845715, -34.4925156, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2020. Part226.BottomSurface = Enum.SurfaceType.Smooth
  2021. Part226.TopSurface = Enum.SurfaceType.Smooth
  2022. Part226.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2023. Part226.Position = Vector3.new(67.6858521, 6.29845715, -34.4925156)
  2024. Part226.Orientation = Vector3.new(0, -90, 0)
  2025. Part226.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2026. Decal227.Parent = Part226
  2027. Decal227.Texture = "http://www.roblox.com/asset/?id=303074382"
  2028. Decal227.Face = Enum.NormalId.Back
  2029. Model228.Name = "Computer"
  2030. Model228.Parent = Model214
  2031. Part229.Parent = Model228
  2032. Part229.BrickColor = BrickColor.new("Ghost grey")
  2033. Part229.Rotation = Vector3.new(0, -90, 0)
  2034. Part229.Anchored = true
  2035. Part229.Size = Vector3.new(1.87999976, 2.91999984, 3.11999917)
  2036. Part229.CFrame = CFrame.new(67.5506439, 5.67925262, -31.4225159, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2037. Part229.BottomSurface = Enum.SurfaceType.Smooth
  2038. Part229.TopSurface = Enum.SurfaceType.Smooth
  2039. Part229.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2040. Part229.Position = Vector3.new(67.5506439, 5.67925262, -31.4225159)
  2041. Part229.Orientation = Vector3.new(0, -90, 0)
  2042. Part229.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2043. Part230.Parent = Model228
  2044. Part230.BrickColor = BrickColor.new("Pearl")
  2045. Part230.Rotation = Vector3.new(0, -90, 0)
  2046. Part230.Anchored = true
  2047. Part230.Size = Vector3.new(1.42999995, 0.209999874, 1.34999955)
  2048. Part230.CFrame = CFrame.new(66.6256485, 6.54424667, -31.4475174, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2049. Part230.BottomSurface = Enum.SurfaceType.Smooth
  2050. Part230.TopSurface = Enum.SurfaceType.Smooth
  2051. Part230.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2052. Part230.Position = Vector3.new(66.6256485, 6.54424667, -31.4475174)
  2053. Part230.Orientation = Vector3.new(0, -90, 0)
  2054. Part230.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2055. Part231.Parent = Model228
  2056. Part231.BrickColor = BrickColor.new("Pearl")
  2057. Part231.Rotation = Vector3.new(0, -90, 0)
  2058. Part231.Anchored = true
  2059. Part231.Size = Vector3.new(1.46000004, 0.209999874, 1.34999955)
  2060. Part231.CFrame = CFrame.new(66.6256409, 6.2034483, -31.4525223, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2061. Part231.BottomSurface = Enum.SurfaceType.Smooth
  2062. Part231.TopSurface = Enum.SurfaceType.Smooth
  2063. Part231.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2064. Part231.Position = Vector3.new(66.6256409, 6.2034483, -31.4525223)
  2065. Part231.Orientation = Vector3.new(0, -90, 0)
  2066. Part231.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2067. Part232.Parent = Model228
  2068. Part232.BrickColor = BrickColor.new("Ghost grey")
  2069. Part232.Rotation = Vector3.new(0, -90, 0)
  2070. Part232.Anchored = true
  2071. Part232.Size = Vector3.new(0.330001533, 0.329999834, 0.169999987)
  2072. Part232.CFrame = CFrame.new(66.0602875, 4.48069859, -32.0779419, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2073. Part232.BottomSurface = Enum.SurfaceType.Smooth
  2074. Part232.TopSurface = Enum.SurfaceType.Smooth
  2075. Part232.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2076. Part232.Position = Vector3.new(66.0602875, 4.48069859, -32.0779419)
  2077. Part232.Orientation = Vector3.new(0, -90, 0)
  2078. Part232.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2079. Decal233.Parent = Part232
  2080. Decal233.Texture = "http://www.roblox.com/asset/?id=13663332"
  2081. Decal233.Face = Enum.NormalId.Back
  2082. Part234.Parent = Model228
  2083. Part234.BrickColor = BrickColor.new("Pearl")
  2084. Part234.Rotation = Vector3.new(0, -90, 0)
  2085. Part234.Anchored = true
  2086. Part234.Size = Vector3.new(0.109999992, 0.699999869, 1.34999955)
  2087. Part234.CFrame = CFrame.new(66.6256561, 5.39516068, -32.1673889, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2088. Part234.BottomSurface = Enum.SurfaceType.Smooth
  2089. Part234.TopSurface = Enum.SurfaceType.Smooth
  2090. Part234.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2091. Part234.Position = Vector3.new(66.6256561, 5.39516068, -32.1673889)
  2092. Part234.Orientation = Vector3.new(0, -90, 0)
  2093. Part234.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2094. Model235.Name = "table"
  2095. Model235.Parent = Model214
  2096. Part236.Parent = Model235
  2097. Part236.Material = Enum.Material.DiamondPlate
  2098. Part236.Rotation = Vector3.new(0, -90, 0)
  2099. Part236.Anchored = true
  2100. Part236.Size = Vector3.new(0.237999946, 3.3319993, 0.237999946)
  2101. Part236.CFrame = CFrame.new(70.0075378, 2.31524563, -29.9049301, -0.000113000002, 0, -1, 0, 1, 0, 1, 0, -0.000113000002)
  2102. Part236.Position = Vector3.new(70.0075378, 2.31524563, -29.9049301)
  2103. Part236.Orientation = Vector3.new(0, -90.0099945, 0)
  2104. Part237.Parent = Model235
  2105. Part237.Material = Enum.Material.DiamondPlate
  2106. Part237.Rotation = Vector3.new(0, -90, 0)
  2107. Part237.Anchored = true
  2108. Part237.Size = Vector3.new(0.237999946, 3.3319993, 0.237999946)
  2109. Part237.CFrame = CFrame.new(65.2485504, 2.31525517, -38.2354813, -0.000113000002, 0, -1, 0, 1, 0, 1, 0, -0.000113000002)
  2110. Part237.Position = Vector3.new(65.2485504, 2.31525517, -38.2354813)
  2111. Part237.Orientation = Vector3.new(0, -90.0099945, 0)
  2112. Part238.Parent = Model235
  2113. Part238.Material = Enum.Material.DiamondPlate
  2114. Part238.Rotation = Vector3.new(0, -90, 0)
  2115. Part238.Anchored = true
  2116. Part238.Size = Vector3.new(0.237999946, 3.3319993, 0.237999946)
  2117. Part238.CFrame = CFrame.new(65.2475586, 2.31525517, -29.9054642, -0.000113000002, 0, -1, 0, 1, 0, 1, 0, -0.000113000002)
  2118. Part238.Position = Vector3.new(65.2475586, 2.31525517, -29.9054642)
  2119. Part238.Orientation = Vector3.new(0, -90.0099945, 0)
  2120. Part239.Parent = Model235
  2121. Part239.Material = Enum.Material.Metal
  2122. Part239.Rotation = Vector3.new(0, -90, 0)
  2123. Part239.Anchored = true
  2124. Part239.Size = Vector3.new(9.04399776, 0.237999946, 5.47399902)
  2125. Part239.CFrame = CFrame.new(67.6280441, 4.1002512, -34.0703354, -0.000113000002, 0, -1, 0, 1, 0, 1, 0, -0.000113000002)
  2126. Part239.BottomSurface = Enum.SurfaceType.Smooth
  2127. Part239.TopSurface = Enum.SurfaceType.Smooth
  2128. Part239.Position = Vector3.new(67.6280441, 4.1002512, -34.0703354)
  2129. Part239.Orientation = Vector3.new(0, -90.0099945, 0)
  2130. Part240.Parent = Model235
  2131. Part240.Material = Enum.Material.DiamondPlate
  2132. Part240.Rotation = Vector3.new(0, -90, 0)
  2133. Part240.Anchored = true
  2134. Part240.Size = Vector3.new(0.237999946, 3.3319993, 0.237999946)
  2135. Part240.CFrame = CFrame.new(70.0085297, 2.31524563, -38.2350235, -0.000113000002, 0, -1, 0, 1, 0, 1, 0, -0.000113000002)
  2136. Part240.Position = Vector3.new(70.0085297, 2.31524563, -38.2350235)
  2137. Part240.Orientation = Vector3.new(0, -90.0099945, 0)
  2138. Model241.Name = "Macintosh Console i think"
  2139. Model241.Parent = Model24
  2140. Part242.Parent = Model241
  2141. Part242.BrickColor = BrickColor.new("Wheat")
  2142. Part242.Anchored = true
  2143. Part242.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2144. Part242.CFrame = CFrame.new(59.7425613, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2145. Part242.BottomSurface = Enum.SurfaceType.Smooth
  2146. Part242.TopSurface = Enum.SurfaceType.Smooth
  2147. Part242.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2148. Part242.Position = Vector3.new(59.7425613, 4.58006001, -36.4534378)
  2149. Part242.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2150. Part243.Parent = Model241
  2151. Part243.BrickColor = BrickColor.new("Wheat")
  2152. Part243.Anchored = true
  2153. Part243.Size = Vector3.new(3.12000036, 0.720000029, 3.43999934)
  2154. Part243.CFrame = CFrame.new(61.1475677, 4.56005955, -36.5034332, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2155. Part243.BottomSurface = Enum.SurfaceType.Smooth
  2156. Part243.TopSurface = Enum.SurfaceType.Smooth
  2157. Part243.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2158. Part243.Position = Vector3.new(61.1475677, 4.56005955, -36.5034332)
  2159. Part243.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2160. Part244.Parent = Model241
  2161. Part244.BrickColor = BrickColor.new("Wheat")
  2162. Part244.Anchored = true
  2163. Part244.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2164. Part244.CFrame = CFrame.new(59.9230423, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2165. Part244.BottomSurface = Enum.SurfaceType.Smooth
  2166. Part244.TopSurface = Enum.SurfaceType.Smooth
  2167. Part244.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2168. Part244.Position = Vector3.new(59.9230423, 4.58006001, -36.4534378)
  2169. Part244.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2170. Part245.Parent = Model241
  2171. Part245.BrickColor = BrickColor.new("Wheat")
  2172. Part245.Anchored = true
  2173. Part245.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2174. Part245.CFrame = CFrame.new(60.1008911, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2175. Part245.BottomSurface = Enum.SurfaceType.Smooth
  2176. Part245.TopSurface = Enum.SurfaceType.Smooth
  2177. Part245.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2178. Part245.Position = Vector3.new(60.1008911, 4.58006001, -36.4534378)
  2179. Part245.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2180. Part246.Parent = Model241
  2181. Part246.BrickColor = BrickColor.new("Wheat")
  2182. Part246.Anchored = true
  2183. Part246.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2184. Part246.CFrame = CFrame.new(60.2846642, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2185. Part246.BottomSurface = Enum.SurfaceType.Smooth
  2186. Part246.TopSurface = Enum.SurfaceType.Smooth
  2187. Part246.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2188. Part246.Position = Vector3.new(60.2846642, 4.58006001, -36.4534378)
  2189. Part246.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2190. Part247.Parent = Model241
  2191. Part247.BrickColor = BrickColor.new("Wheat")
  2192. Part247.Anchored = true
  2193. Part247.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2194. Part247.CFrame = CFrame.new(60.4617004, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2195. Part247.BottomSurface = Enum.SurfaceType.Smooth
  2196. Part247.TopSurface = Enum.SurfaceType.Smooth
  2197. Part247.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2198. Part247.Position = Vector3.new(60.4617004, 4.58006001, -36.4534378)
  2199. Part247.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2200. Part248.Parent = Model241
  2201. Part248.BrickColor = BrickColor.new("Wheat")
  2202. Part248.Anchored = true
  2203. Part248.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2204. Part248.CFrame = CFrame.new(60.8358345, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2205. Part248.BottomSurface = Enum.SurfaceType.Smooth
  2206. Part248.TopSurface = Enum.SurfaceType.Smooth
  2207. Part248.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2208. Part248.Position = Vector3.new(60.8358345, 4.58006001, -36.4534378)
  2209. Part248.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2210. Part249.Parent = Model241
  2211. Part249.BrickColor = BrickColor.new("Wheat")
  2212. Part249.Anchored = true
  2213. Part249.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2214. Part249.CFrame = CFrame.new(61.0196075, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2215. Part249.BottomSurface = Enum.SurfaceType.Smooth
  2216. Part249.TopSurface = Enum.SurfaceType.Smooth
  2217. Part249.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2218. Part249.Position = Vector3.new(61.0196075, 4.58006001, -36.4534378)
  2219. Part249.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2220. Part250.Parent = Model241
  2221. Part250.BrickColor = BrickColor.new("Wheat")
  2222. Part250.Anchored = true
  2223. Part250.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2224. Part250.CFrame = CFrame.new(61.1966438, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2225. Part250.BottomSurface = Enum.SurfaceType.Smooth
  2226. Part250.TopSurface = Enum.SurfaceType.Smooth
  2227. Part250.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2228. Part250.Position = Vector3.new(61.1966438, 4.58006001, -36.4534378)
  2229. Part250.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2230. Part251.Parent = Model241
  2231. Part251.BrickColor = BrickColor.new("Wheat")
  2232. Part251.Anchored = true
  2233. Part251.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2234. Part251.CFrame = CFrame.new(60.6579857, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2235. Part251.BottomSurface = Enum.SurfaceType.Smooth
  2236. Part251.TopSurface = Enum.SurfaceType.Smooth
  2237. Part251.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2238. Part251.Position = Vector3.new(60.6579857, 4.58006001, -36.4534378)
  2239. Part251.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2240. Part252.Parent = Model241
  2241. Part252.BrickColor = BrickColor.new("Wheat")
  2242. Part252.Anchored = true
  2243. Part252.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2244. Part252.CFrame = CFrame.new(61.5211487, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2245. Part252.BottomSurface = Enum.SurfaceType.Smooth
  2246. Part252.TopSurface = Enum.SurfaceType.Smooth
  2247. Part252.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2248. Part252.Position = Vector3.new(61.5211487, 4.58006001, -36.4534378)
  2249. Part252.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2250. Part253.Parent = Model241
  2251. Part253.BrickColor = BrickColor.new("Wheat")
  2252. Part253.Anchored = true
  2253. Part253.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2254. Part253.CFrame = CFrame.new(61.3432999, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2255. Part253.BottomSurface = Enum.SurfaceType.Smooth
  2256. Part253.TopSurface = Enum.SurfaceType.Smooth
  2257. Part253.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2258. Part253.Position = Vector3.new(61.3432999, 4.58006001, -36.4534378)
  2259. Part253.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2260. Part254.Parent = Model241
  2261. Part254.BrickColor = BrickColor.new("Wheat")
  2262. Part254.Anchored = true
  2263. Part254.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2264. Part254.CFrame = CFrame.new(61.7049217, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2265. Part254.BottomSurface = Enum.SurfaceType.Smooth
  2266. Part254.TopSurface = Enum.SurfaceType.Smooth
  2267. Part254.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2268. Part254.Position = Vector3.new(61.7049217, 4.58006001, -36.4534378)
  2269. Part254.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2270. Part255.Parent = Model241
  2271. Part255.BrickColor = BrickColor.new("Wheat")
  2272. Part255.Anchored = true
  2273. Part255.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2274. Part255.CFrame = CFrame.new(61.881958, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2275. Part255.BottomSurface = Enum.SurfaceType.Smooth
  2276. Part255.TopSurface = Enum.SurfaceType.Smooth
  2277. Part255.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2278. Part255.Position = Vector3.new(61.881958, 4.58006001, -36.4534378)
  2279. Part255.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2280. Part256.Parent = Model241
  2281. Part256.BrickColor = BrickColor.new("Wheat")
  2282. Part256.Anchored = true
  2283. Part256.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2284. Part256.CFrame = CFrame.new(62.0601234, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2285. Part256.BottomSurface = Enum.SurfaceType.Smooth
  2286. Part256.TopSurface = Enum.SurfaceType.Smooth
  2287. Part256.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2288. Part256.Position = Vector3.new(62.0601234, 4.58006001, -36.4534378)
  2289. Part256.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2290. Part257.Parent = Model241
  2291. Part257.BrickColor = BrickColor.new("Wheat")
  2292. Part257.Anchored = true
  2293. Part257.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2294. Part257.CFrame = CFrame.new(62.4217453, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2295. Part257.BottomSurface = Enum.SurfaceType.Smooth
  2296. Part257.TopSurface = Enum.SurfaceType.Smooth
  2297. Part257.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2298. Part257.Position = Vector3.new(62.4217453, 4.58006001, -36.4534378)
  2299. Part257.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2300. Part258.Parent = Model241
  2301. Part258.BrickColor = BrickColor.new("Wheat")
  2302. Part258.Anchored = true
  2303. Part258.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2304. Part258.CFrame = CFrame.new(62.5987816, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2305. Part258.BottomSurface = Enum.SurfaceType.Smooth
  2306. Part258.TopSurface = Enum.SurfaceType.Smooth
  2307. Part258.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2308. Part258.Position = Vector3.new(62.5987816, 4.58006001, -36.4534378)
  2309. Part258.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2310. Part259.Parent = Model241
  2311. Part259.BrickColor = BrickColor.new("Wheat")
  2312. Part259.Anchored = true
  2313. Part259.Size = Vector3.new(0.0700000003, 0.75999999, 3.23999929)
  2314. Part259.CFrame = CFrame.new(62.2379723, 4.58006001, -36.4534378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2315. Part259.BottomSurface = Enum.SurfaceType.Smooth
  2316. Part259.TopSurface = Enum.SurfaceType.Smooth
  2317. Part259.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2318. Part259.Position = Vector3.new(62.2379723, 4.58006001, -36.4534378)
  2319. Part259.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2320. Part260.Parent = Model241
  2321. Part260.BrickColor = BrickColor.new("Wheat")
  2322. Part260.Anchored = true
  2323. Part260.Size = Vector3.new(0.400000006, 0.349999905, 0.440000057)
  2324. Part260.CFrame = CFrame.new(60.0520401, 4.6962862, -34.9721832, 1, 0, -7.4485853e-09, 0, 1, 0, 7.4485853e-09, 0, 1)
  2325. Part260.BottomSurface = Enum.SurfaceType.Smooth
  2326. Part260.TopSurface = Enum.SurfaceType.Smooth
  2327. Part260.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2328. Part260.Position = Vector3.new(60.0520401, 4.6962862, -34.9721832)
  2329. Part260.Color = Color3.new(0.945098, 0.905882, 0.780392)
  2330. Decal261.Parent = Part260
  2331. Decal261.Texture = "http://www.roblox.com/asset/?id=748318287"
  2332. Decal261.Face = Enum.NormalId.Back
  2333. Part262.Parent = Model241
  2334. Part262.Anchored = true
  2335. Part262.Size = Vector3.new(0.830000579, 0.189999998, 0.109999999)
  2336. Part262.CFrame = CFrame.new(60.0525665, 4.36595631, -34.8265915, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2337. Part262.BottomSurface = Enum.SurfaceType.Smooth
  2338. Part262.TopSurface = Enum.SurfaceType.Smooth
  2339. Part262.Position = Vector3.new(60.0525665, 4.36595631, -34.8265915)
  2340. Part263.Parent = Model24
  2341. Part263.BrickColor = BrickColor.new("Black")
  2342. Part263.Anchored = true
  2343. Part263.Size = Vector3.new(3.73999977, 1, 2.25999999)
  2344. Part263.CFrame = CFrame.new(62.8799973, 3.8312273, -0.95000267, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2345. Part263.BottomSurface = Enum.SurfaceType.Smooth
  2346. Part263.TopSurface = Enum.SurfaceType.Smooth
  2347. Part263.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2348. Part263.Position = Vector3.new(62.8799973, 3.8312273, -0.95000267)
  2349. Part263.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2350. Part264.Parent = Model24
  2351. Part264.BrickColor = BrickColor.new("Ghost grey")
  2352. Part264.Rotation = Vector3.new(0, 90, 0)
  2353. Part264.Anchored = true
  2354. Part264.FormFactor = Enum.FormFactor.Custom
  2355. Part264.Size = Vector3.new(4, 20.600008, 1)
  2356. Part264.CFrame = CFrame.new(46.0899773, 10.3000345, -37.6199417, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2357. Part264.BottomSurface = Enum.SurfaceType.Smooth
  2358. Part264.TopSurface = Enum.SurfaceType.Smooth
  2359. Part264.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2360. Part264.Position = Vector3.new(46.0899773, 10.3000345, -37.6199417)
  2361. Part264.Orientation = Vector3.new(0, 90, 0)
  2362. Part264.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2363. BlockMesh265.Parent = Part264
  2364. Part266.Parent = Model24
  2365. Part266.Transparency = 0.5
  2366. Part266.Rotation = Vector3.new(0, 90, 0)
  2367. Part266.Anchored = true
  2368. Part266.FormFactor = Enum.FormFactor.Plate
  2369. Part266.Size = Vector3.new(13, 8.40000057, 1)
  2370. Part266.CFrame = CFrame.new(46.0899773, 7.80002022, -4.11997604, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2371. Part266.BottomSurface = Enum.SurfaceType.Smooth
  2372. Part266.TopSurface = Enum.SurfaceType.Smooth
  2373. Part266.Position = Vector3.new(46.0899773, 7.80002022, -4.11997604)
  2374. Part266.Orientation = Vector3.new(0, 90, 0)
  2375. BlockMesh267.Parent = Part266
  2376. Decal268.Parent = Part266
  2377. Decal268.Texture = "http://www.roblox.com/asset/?id=66630862"
  2378. Decal268.Face = Enum.NormalId.Back
  2379. Decal269.Parent = Part266
  2380. Decal269.Texture = "http://www.roblox.com/asset/?id=66630862"
  2381. Part270.Parent = Model24
  2382. Part270.Transparency = 0.5
  2383. Part270.Rotation = Vector3.new(0, 90, 0)
  2384. Part270.Anchored = true
  2385. Part270.FormFactor = Enum.FormFactor.Plate
  2386. Part270.Size = Vector3.new(13, 8.40000057, 1)
  2387. Part270.CFrame = CFrame.new(46.0899773, 7.80002022, -29.1199493, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2388. Part270.BottomSurface = Enum.SurfaceType.Smooth
  2389. Part270.TopSurface = Enum.SurfaceType.Smooth
  2390. Part270.Position = Vector3.new(46.0899773, 7.80002022, -29.1199493)
  2391. Part270.Orientation = Vector3.new(0, 90, 0)
  2392. BlockMesh271.Parent = Part270
  2393. Decal272.Parent = Part270
  2394. Decal272.Texture = "http://www.roblox.com/asset/?id=66630862"
  2395. Decal272.Face = Enum.NormalId.Back
  2396. Decal273.Parent = Part270
  2397. Decal273.Texture = "http://www.roblox.com/asset/?id=66630862"
  2398. Part274.Parent = Model24
  2399. Part274.Transparency = 0.5
  2400. Part274.Rotation = Vector3.new(0, 90, 0)
  2401. Part274.Anchored = true
  2402. Part274.CanCollide = false
  2403. Part274.FormFactor = Enum.FormFactor.Plate
  2404. Part274.Size = Vector3.new(6, 10.8000002, 1)
  2405. Part274.CFrame = CFrame.new(46.0899773, 6.60002422, -16.6199741, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2406. Part274.BottomSurface = Enum.SurfaceType.Smooth
  2407. Part274.TopSurface = Enum.SurfaceType.Smooth
  2408. Part274.Position = Vector3.new(46.0899773, 6.60002422, -16.6199741)
  2409. Part274.Orientation = Vector3.new(0, 90, 0)
  2410. BlockMesh275.Parent = Part274
  2411. Decal276.Parent = Part274
  2412. Decal276.Texture = "http://www.roblox.com/asset/?id=66630578"
  2413. Decal276.Face = Enum.NormalId.Back
  2414. Decal277.Parent = Part274
  2415. Decal277.Texture = "http://www.roblox.com/asset/?id=66630563"
  2416. Part278.Parent = Model24
  2417. Part278.BrickColor = BrickColor.new("Ghost grey")
  2418. Part278.Rotation = Vector3.new(0, 90, 0)
  2419. Part278.Anchored = true
  2420. Part278.FormFactor = Enum.FormFactor.Custom
  2421. Part278.Size = Vector3.new(46, 1.20000005, 24.9999981)
  2422. Part278.CFrame = CFrame.new(58.0899811, 21.2000427, -16.6199741, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2423. Part278.BottomSurface = Enum.SurfaceType.Smooth
  2424. Part278.TopSurface = Enum.SurfaceType.Smooth
  2425. Part278.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2426. Part278.Position = Vector3.new(58.0899811, 21.2000427, -16.6199741)
  2427. Part278.Orientation = Vector3.new(0, 90, 0)
  2428. Part278.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2429. BlockMesh279.Parent = Part278
  2430. Part280.Parent = Model24
  2431. Part280.BrickColor = BrickColor.new("Ghost grey")
  2432. Part280.Rotation = Vector3.new(-180, 0, -180)
  2433. Part280.Anchored = true
  2434. Part280.FormFactor = Enum.FormFactor.Custom
  2435. Part280.Size = Vector3.new(23, 20.6000042, 1)
  2436. Part280.CFrame = CFrame.new(58.0899811, 10.3000193, 5.87999344, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2437. Part280.BottomSurface = Enum.SurfaceType.Smooth
  2438. Part280.TopSurface = Enum.SurfaceType.Smooth
  2439. Part280.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2440. Part280.Position = Vector3.new(58.0899811, 10.3000193, 5.87999344)
  2441. Part280.Orientation = Vector3.new(0, 180, 0)
  2442. Part280.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2443. BlockMesh281.Parent = Part280
  2444. Part282.Parent = Model24
  2445. Part282.BrickColor = BrickColor.new("Ghost grey")
  2446. Part282.Rotation = Vector3.new(0, 90, 0)
  2447. Part282.Anchored = true
  2448. Part282.Size = Vector3.new(6, 1.20000005, 1)
  2449. Part282.CFrame = CFrame.new(46.0899773, 0.600029945, -16.6199741, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2450. Part282.BottomSurface = Enum.SurfaceType.Smooth
  2451. Part282.TopSurface = Enum.SurfaceType.Smooth
  2452. Part282.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2453. Part282.Position = Vector3.new(46.0899773, 0.600029945, -16.6199741)
  2454. Part282.Orientation = Vector3.new(0, 90, 0)
  2455. Part282.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2456. BlockMesh283.Parent = Part282
  2457. Part284.Parent = Model24
  2458. Part284.BrickColor = BrickColor.new("Ghost grey")
  2459. Part284.Rotation = Vector3.new(0, -90, 0)
  2460. Part284.Anchored = true
  2461. Part284.FormFactor = Enum.FormFactor.Custom
  2462. Part284.Size = Vector3.new(38, 8.59999943, 1)
  2463. Part284.CFrame = CFrame.new(46.0899773, 16.3000183, -16.6199741, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2464. Part284.BottomSurface = Enum.SurfaceType.Smooth
  2465. Part284.TopSurface = Enum.SurfaceType.Smooth
  2466. Part284.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2467. Part284.Position = Vector3.new(46.0899773, 16.3000183, -16.6199741)
  2468. Part284.Orientation = Vector3.new(0, -90, 0)
  2469. Part284.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2470. BlockMesh285.Parent = Part284
  2471. Part286.Parent = Model24
  2472. Part286.BrickColor = BrickColor.new("Ghost grey")
  2473. Part286.Rotation = Vector3.new(0, 90, 0)
  2474. Part286.Anchored = true
  2475. Part286.FormFactor = Enum.FormFactor.Custom
  2476. Part286.Size = Vector3.new(4, 20.6000042, 1)
  2477. Part286.CFrame = CFrame.new(46.0899773, 10.3000193, 4.37999344, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2478. Part286.BottomSurface = Enum.SurfaceType.Smooth
  2479. Part286.TopSurface = Enum.SurfaceType.Smooth
  2480. Part286.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2481. Part286.Position = Vector3.new(46.0899773, 10.3000193, 4.37999344)
  2482. Part286.Orientation = Vector3.new(0, 90, 0)
  2483. Part286.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2484. BlockMesh287.Parent = Part286
  2485. Part288.Parent = Model24
  2486. Part288.Material = Enum.Material.WoodPlanks
  2487. Part288.BrickColor = BrickColor.new("Dark orange")
  2488. Part288.Rotation = Vector3.new(0, 90, 0)
  2489. Part288.Anchored = true
  2490. Part288.FormFactor = Enum.FormFactor.Plate
  2491. Part288.Size = Vector3.new(44, 0.400000006, 23)
  2492. Part288.CFrame = CFrame.new(58.0899811, 1.00003719, -16.6199741, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2493. Part288.BottomSurface = Enum.SurfaceType.Smooth
  2494. Part288.TopSurface = Enum.SurfaceType.Smooth
  2495. Part288.Color = Color3.new(0.627451, 0.372549, 0.207843)
  2496. Part288.Position = Vector3.new(58.0899811, 1.00003719, -16.6199741)
  2497. Part288.Orientation = Vector3.new(0, 90, 0)
  2498. Part288.Color = Color3.new(0.627451, 0.372549, 0.207843)
  2499. BlockMesh289.Parent = Part288
  2500. Part290.Parent = Model24
  2501. Part290.BrickColor = BrickColor.new("Ghost grey")
  2502. Part290.Rotation = Vector3.new(0, 90, 0)
  2503. Part290.Anchored = true
  2504. Part290.Size = Vector3.new(3, 12, 1)
  2505. Part290.CFrame = CFrame.new(46.0899773, 6.00003338, -21.1199741, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2506. Part290.BottomSurface = Enum.SurfaceType.Smooth
  2507. Part290.TopSurface = Enum.SurfaceType.Smooth
  2508. Part290.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2509. Part290.Position = Vector3.new(46.0899773, 6.00003338, -21.1199741)
  2510. Part290.Orientation = Vector3.new(0, 90, 0)
  2511. Part290.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2512. BlockMesh291.Parent = Part290
  2513. Part292.Parent = Model24
  2514. Part292.BrickColor = BrickColor.new("Ghost grey")
  2515. Part292.Rotation = Vector3.new(0, 90, 0)
  2516. Part292.Anchored = true
  2517. Part292.Size = Vector3.new(3, 12, 1)
  2518. Part292.CFrame = CFrame.new(46.0899773, 6.00003338, -12.119976, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2519. Part292.BottomSurface = Enum.SurfaceType.Smooth
  2520. Part292.TopSurface = Enum.SurfaceType.Smooth
  2521. Part292.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2522. Part292.Position = Vector3.new(46.0899773, 6.00003338, -12.119976)
  2523. Part292.Orientation = Vector3.new(0, 90, 0)
  2524. Part292.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2525. BlockMesh293.Parent = Part292
  2526. Model294.Name = "Macintosh Plus"
  2527. Model294.Parent = Model24
  2528. Part295.Parent = Model294
  2529. Part295.BrickColor = BrickColor.new("Really black")
  2530. Part295.Rotation = Vector3.new(2.25, -3.14999986, 0.539999962)
  2531. Part295.Anchored = true
  2532. Part295.Size = Vector3.new(0.209999785, 1.2900002, 1.51000023)
  2533. Part295.CFrame = CFrame.new(48.4408073, 6.02783775, -23.2744865, 0.998443902, -0.00934129953, -0.0549862012, 0.00719109084, 0.999207437, -0.0391734689, 0.0553085059, 0.0387170836, 0.997719109)
  2534. Part295.BottomSurface = Enum.SurfaceType.Smooth
  2535. Part295.TopSurface = Enum.SurfaceType.Smooth
  2536. Part295.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2537. Part295.Position = Vector3.new(48.4408073, 6.02783775, -23.2744865)
  2538. Part295.Orientation = Vector3.new(2.25, -3.14999986, 0.409999996)
  2539. Part295.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2540. Part296.Parent = Model294
  2541. Part296.BrickColor = BrickColor.new("Ghost grey")
  2542. Part296.Rotation = Vector3.new(2.25, -3.14999986, 0.539999962)
  2543. Part296.Anchored = true
  2544. Part296.Size = Vector3.new(1.50999939, 2.21000028, 2)
  2545. Part296.CFrame = CFrame.new(47.7002525, 5.28400898, -23.3695602, 0.99844408, -0.00934274681, -0.0549846366, 0.00719260564, 0.999207556, -0.0391733721, 0.0553070009, 0.038716916, 0.997719347)
  2546. Part296.BottomSurface = Enum.SurfaceType.Smooth
  2547. Part296.TopSurface = Enum.SurfaceType.Smooth
  2548. Part296.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2549. Part296.Position = Vector3.new(47.7002525, 5.28400898, -23.3695602)
  2550. Part296.Orientation = Vector3.new(2.25, -3.14999986, 0.409999996)
  2551. Part296.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2552. Attachment297.Name = "Attachment0"
  2553. Attachment297.Parent = Part296
  2554. Attachment297.Rotation = Vector3.new(-0, -90, 0)
  2555. Attachment297.CFrame = CFrame.new(-0.0399999991, -0.949999988, 1, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2556. Attachment297.Position = Vector3.new(-0.0399999991, -0.949999988, 1)
  2557. Attachment297.Axis = Vector3.new(0, 0, 1)
  2558. Attachment297.Orientation = Vector3.new(-0, -90, 0)
  2559. RodConstraint298.Parent = Part296
  2560. RodConstraint298.Color = BrickColor.new("Medium stone grey")
  2561. RodConstraint298.Visible = true
  2562. RodConstraint298.Attachment0 = Attachment297
  2563. RodConstraint298.Attachment1 = Attachment305
  2564. RodConstraint298.Color = BrickColor.new("Medium stone grey")
  2565. RodConstraint298.Length = 1.1879171133041
  2566. Attachment299.Name = "Attachment0"
  2567. Attachment299.Parent = Part296
  2568. Attachment299.Rotation = Vector3.new(0, 90, 0)
  2569. Attachment299.CFrame = CFrame.new(0.00999999978, -0.919999957, -1, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2570. Attachment299.Position = Vector3.new(0.00999999978, -0.919999957, -1)
  2571. Attachment299.Axis = Vector3.new(0, 0, -1)
  2572. Attachment299.Orientation = Vector3.new(0, 90, 0)
  2573. RodConstraint300.Parent = Part296
  2574. RodConstraint300.Color = BrickColor.new("Medium stone grey")
  2575. RodConstraint300.Visible = true
  2576. RodConstraint300.Attachment0 = Attachment299
  2577. RodConstraint300.Attachment1 = Attachment302
  2578. RodConstraint300.Color = BrickColor.new("Medium stone grey")
  2579. RodConstraint300.Length = 2.0653133392334
  2580. Part301.Parent = Model294
  2581. Part301.BrickColor = BrickColor.new("Ghost grey")
  2582. Part301.Rotation = Vector3.new(2.25, -3.15999985, -0.209999993)
  2583. Part301.Anchored = true
  2584. Part301.Size = Vector3.new(1.20000029, 0.230000407, 0.779999852)
  2585. Part301.CFrame = CFrame.new(49.9523468, 4.38393116, -25.8664398, 0.998473227, 0.00373974256, -0.0551167168, -0.00590422517, 0.99921608, -0.0391605869, 0.0549270324, 0.0394262113, 0.997712135)
  2586. Part301.BottomSurface = Enum.SurfaceType.Smooth
  2587. Part301.TopSurface = Enum.SurfaceType.Smooth
  2588. Part301.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2589. Part301.Position = Vector3.new(49.9523468, 4.38393116, -25.8664398)
  2590. Part301.Orientation = Vector3.new(2.24000001, -3.15999985, -0.340000004)
  2591. Part301.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2592. Attachment302.Name = "Attachment1"
  2593. Attachment302.Parent = Part301
  2594. Attachment302.Rotation = Vector3.new(-90.5725632, 89.2495728, 90.5732956)
  2595. Attachment302.CFrame = CFrame.new(-0.600000143, -0.049999997, 0.159999996, -0.000131080102, -0.0130998548, 0.999914229, 1.1966591e-05, 0.999914229, 0.0130998567, -1, 1.36826948e-05, -0.000130912085)
  2596. Attachment302.Position = Vector3.new(-0.600000143, -0.049999997, 0.159999996)
  2597. Attachment302.Axis = Vector3.new(-0.000131080102, 1.1966591e-05, -1)
  2598. Attachment302.Orientation = Vector3.new(-0.75058794, 90.0074997, 0.000685693987)
  2599. Part303.Parent = Model294
  2600. Part303.BrickColor = BrickColor.new("Ghost grey")
  2601. Part303.Rotation = Vector3.new(-173.860001, -86.8300018, -176.119995)
  2602. Part303.Anchored = true
  2603. Part303.Size = Vector3.new(3.33999991, 0.249999985, 1.77999949)
  2604. Part303.CFrame = CFrame.new(49.736351, 4.29687786, -23.3860893, -0.0551058613, 0.00373977702, -0.998473585, -0.0391607136, 0.999215484, 0.00590384007, 0.997712255, 0.0394262709, -0.0549161844)
  2605. Part303.BottomSurface = Enum.SurfaceType.Smooth
  2606. Part303.TopSurface = Enum.SurfaceType.Smooth
  2607. Part303.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2608. Part303.Position = Vector3.new(49.736351, 4.29687786, -23.3860893)
  2609. Part303.Orientation = Vector3.new(-0.340000004, -93.1500015, -2.24000001)
  2610. Part303.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2611. Decal304.Parent = Part303
  2612. Decal304.Texture = "http://www.roblox.com/asset/?id=193925140"
  2613. Decal304.Face = Enum.NormalId.Top
  2614. Attachment305.Name = "Attachment1"
  2615. Attachment305.Parent = Part303
  2616. Attachment305.Rotation = Vector3.new(0.75058794, 0.00673024589, -0.000773866777)
  2617. Attachment305.CFrame = CFrame.new(1.25999999, 0, 0.889999747, 1, 1.35065229e-05, 0.000117464951, -1.19665901e-05, 0.999914229, -0.0130998567, -0.000117631804, 0.0130998548, 0.999914229)
  2618. Attachment305.Position = Vector3.new(1.25999999, 0, 0.889999747)
  2619. Attachment305.Axis = Vector3.new(1, -1.19665901e-05, -0.000117631804)
  2620. Attachment305.Orientation = Vector3.new(0.75058794, 0.00673082331, -0.000685693929)
  2621. Part306.Parent = Model294
  2622. Part306.BrickColor = BrickColor.new("Ghost grey")
  2623. Part306.Rotation = Vector3.new(2.25, -3.14999986, 0.539999962)
  2624. Part306.Anchored = true
  2625. Part306.Size = Vector3.new(0.229999796, 2.66999984, 2)
  2626. Part306.CFrame = CFrame.new(48.4069862, 5.51893234, -23.3213844, 0.998443604, -0.00934129581, -0.0549861714, 0.00719108293, 0.999206722, -0.0391734317, 0.0553084835, 0.0387170576, 0.997718334)
  2627. Part306.BottomSurface = Enum.SurfaceType.Smooth
  2628. Part306.TopSurface = Enum.SurfaceType.Smooth
  2629. Part306.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2630. Part306.Position = Vector3.new(48.4069862, 5.51893234, -23.3213844)
  2631. Part306.Orientation = Vector3.new(2.25, -3.14999986, 0.409999996)
  2632. Part306.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2633. Part307.Parent = Model294
  2634. Part307.BrickColor = BrickColor.new("Ghost grey")
  2635. Part307.Rotation = Vector3.new(2.25, -3.15999985, -0.209999993)
  2636. Part307.Anchored = true
  2637. Part307.Size = Vector3.new(0.349999964, 0.360000342, 0.400000095)
  2638. Part307.CFrame = CFrame.new(48.4107704, 4.92004108, -23.3680267, 0.998473287, 0.00373963173, -0.0551169999, -0.00590413203, 0.999215961, -0.0391607061, 0.0549273342, 0.0394263491, 0.997711599)
  2639. Part307.BottomSurface = Enum.SurfaceType.Smooth
  2640. Part307.TopSurface = Enum.SurfaceType.Smooth
  2641. Part307.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2642. Part307.Position = Vector3.new(48.4107704, 4.92004108, -23.3680267)
  2643. Part307.Orientation = Vector3.new(2.24000001, -3.15999985, -0.340000004)
  2644. Part307.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2645. Decal308.Parent = Part307
  2646. Decal308.Texture = "http://www.roblox.com/asset/?id=748318287"
  2647. Decal308.Face = Enum.NormalId.Right
  2648. Model309.Parent = Model24
  2649. Part310.Name = "Smooth Block Model"
  2650. Part310.Parent = Model309
  2651. Part310.Rotation = Vector3.new(0, 90, 0)
  2652. Part310.Anchored = true
  2653. Part310.FormFactor = Enum.FormFactor.Custom
  2654. Part310.Size = Vector3.new(2.80000019, 2.80000019, 18.0000038)
  2655. Part310.CFrame = CFrame.new(60.5899811, 2.60002613, -1.02000046, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2656. Part310.BottomSurface = Enum.SurfaceType.Smooth
  2657. Part310.TopSurface = Enum.SurfaceType.Smooth
  2658. Part310.Position = Vector3.new(60.5899811, 2.60002613, -1.02000046)
  2659. Part310.Orientation = Vector3.new(0, 90, 0)
  2660. Part311.Name = "Smooth Block Model"
  2661. Part311.Parent = Model309
  2662. Part311.BrickColor = BrickColor.new("Ghost grey")
  2663. Part311.Anchored = true
  2664. Part311.FormFactor = Enum.FormFactor.Custom
  2665. Part311.Size = Vector3.new(23.0000019, 0.400000006, 27.9999905)
  2666. Part311.CFrame = CFrame.new(58.0899811, 20.2210388, -17.539959, 1, 0, 0, 0, 0.999999523, 5.96046448e-08, 0, -5.96046448e-08, 0.999999523)
  2667. Part311.BottomSurface = Enum.SurfaceType.Smooth
  2668. Part311.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2669. Part311.Position = Vector3.new(58.0899811, 20.2210388, -17.539959)
  2670. Part311.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2671. BlockMesh312.Parent = Part311
  2672. BlockMesh312.Offset = Vector3.new(0, 0, -0.300000012)
  2673. BlockMesh312.Scale = Vector3.new(1, 0.100000001, 1.5)
  2674. BlockMesh312.Scale = Vector3.new(1, 0.100000001, 1.5)
  2675. Part313.Name = "Smooth Block Model"
  2676. Part313.Parent = Model309
  2677. Part313.BrickColor = BrickColor.new("Really black")
  2678. Part313.Rotation = Vector3.new(0, 90, 0)
  2679. Part313.Anchored = true
  2680. Part313.FormFactor = Enum.FormFactor.Custom
  2681. Part313.Size = Vector3.new(3.19999909, 0.200000003, 18.0000076)
  2682. Part313.CFrame = CFrame.new(60.5899811, 4.20003223, -1.02000046, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2683. Part313.BottomSurface = Enum.SurfaceType.Smooth
  2684. Part313.TopSurface = Enum.SurfaceType.Smooth
  2685. Part313.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2686. Part313.Position = Vector3.new(60.5899811, 4.20003223, -1.02000046)
  2687. Part313.Orientation = Vector3.new(0, 90, 0)
  2688. Part313.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2689. Model314.Name = "Macintosh Mini"
  2690. Model314.Parent = Model24
  2691. Part315.Parent = Model314
  2692. Part315.BrickColor = BrickColor.new("Pearl")
  2693. Part315.Rotation = Vector3.new(0, -0.00999999978, -0.0899999961)
  2694. Part315.Anchored = true
  2695. Part315.Size = Vector3.new(1.63000035, 0.279999971, 2.30000019)
  2696. Part315.CFrame = CFrame.new(49.5091743, 4.34011173, -28.3908043, 0.999998927, 0.00148417696, -0.000103620048, -0.00148417696, 0.999998927, 5.57646107e-09, 0.000103619946, 1.48214042e-07, 1)
  2697. Part315.BottomSurface = Enum.SurfaceType.Smooth
  2698. Part315.TopSurface = Enum.SurfaceType.Smooth
  2699. Part315.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2700. Part315.Position = Vector3.new(49.5091743, 4.34011173, -28.3908043)
  2701. Part315.Orientation = Vector3.new(0, -0.00999999978, -0.0899999961)
  2702. Part315.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2703. Part316.Parent = Model314
  2704. Part316.BrickColor = BrickColor.new("Pearl")
  2705. Part316.Rotation = Vector3.new(-93.9799957, -89.9199982, -93.9799957)
  2706. Part316.Anchored = true
  2707. Part316.Size = Vector3.new(0.550001502, 0.140000001, 0.610000014)
  2708. Part316.CFrame = CFrame.new(49.4993019, 4.43012524, -28.3658066, -0.00010338163, 0.00148417696, -0.999998927, 5.22260857e-09, 0.999998927, 0.00148417696, 1, 1.48214042e-07, -0.000103381528)
  2709. Part316.BottomSurface = Enum.SurfaceType.Smooth
  2710. Part316.TopSurface = Enum.SurfaceType.Smooth
  2711. Part316.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2712. Part316.Position = Vector3.new(49.4993019, 4.43012524, -28.3658066)
  2713. Part316.Orientation = Vector3.new(-0.0899999961, -90.0099945, 0)
  2714. Part316.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2715. Decal317.Parent = Part316
  2716. Decal317.Texture = "http://www.roblox.com/asset/?id=13663332"
  2717. Decal317.Face = Enum.NormalId.Top
  2718. Part318.Parent = Model314
  2719. Part318.BrickColor = BrickColor.new("Really black")
  2720. Part318.Rotation = Vector3.new(0, -0.00999999978, -0.0899999961)
  2721. Part318.Anchored = true
  2722. Part318.Size = Vector3.new(0.0700000003, 0.0500000007, 2.06000042)
  2723. Part318.CFrame = CFrame.new(50.309227, 4.38392353, -28.3907318, 0.999998927, 0.00148417696, -0.000103620048, -0.00148417696, 0.999998927, 5.57646107e-09, 0.000103619946, 1.48214042e-07, 1)
  2724. Part318.BottomSurface = Enum.SurfaceType.Smooth
  2725. Part318.TopSurface = Enum.SurfaceType.Smooth
  2726. Part318.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2727. Part318.Position = Vector3.new(50.309227, 4.38392353, -28.3907318)
  2728. Part318.Orientation = Vector3.new(0, -0.00999999978, -0.0899999961)
  2729. Part318.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2730. Model319.Name = "Macbook"
  2731. Model319.Parent = Model24
  2732. Part320.Parent = Model319
  2733. Part320.BrickColor = BrickColor.new("Institutional white")
  2734. Part320.Rotation = Vector3.new(-0.680000007, -87.5, 1.24000001)
  2735. Part320.Anchored = true
  2736. Part320.Size = Vector3.new(2.87000036, 0.099999994, 1.46000028)
  2737. Part320.CFrame = CFrame.new(49.3345375, 4.24985981, -32.5957108, 0.0435525551, -0.000943871855, -0.999051452, 0.0334435254, 0.999440491, 0.000513690116, 0.998493075, -0.0334341079, 0.0435596742)
  2738. Part320.BottomSurface = Enum.SurfaceType.Smooth
  2739. Part320.TopSurface = Enum.SurfaceType.Smooth
  2740. Part320.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2741. Part320.Position = Vector3.new(49.3345375, 4.24985981, -32.5957108)
  2742. Part320.Orientation = Vector3.new(-0.0299999993, -87.5, 1.91999996)
  2743. Part320.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2744. Decal321.Parent = Part320
  2745. Decal321.Texture = "http://www.roblox.com/asset/?id=193925140"
  2746. Decal321.Face = Enum.NormalId.Top
  2747. Part322.Parent = Model319
  2748. Part322.BrickColor = BrickColor.new("Institutional white")
  2749. Part322.Rotation = Vector3.new(-0.680000007, -87.5, 1.24000001)
  2750. Part322.Anchored = true
  2751. Part322.Size = Vector3.new(2.87000036, 0.099999994, 0.550000012)
  2752. Part322.CFrame = CFrame.new(50.3186226, 4.24935246, -32.6386185, 0.0435525514, -0.000943871855, -0.999051452, 0.0334435217, 0.999440491, 0.000513690116, 0.998492956, -0.0334341079, 0.0435596742)
  2753. Part322.BottomSurface = Enum.SurfaceType.Smooth
  2754. Part322.TopSurface = Enum.SurfaceType.Smooth
  2755. Part322.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2756. Part322.Position = Vector3.new(50.3186226, 4.24935246, -32.6386185)
  2757. Part322.Orientation = Vector3.new(-0.0299999993, -87.5, 1.91999996)
  2758. Part322.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2759. Part323.Parent = Model319
  2760. Part323.BrickColor = BrickColor.new("Institutional white")
  2761. Part323.Rotation = Vector3.new(-0.680000007, -87.5, 1.24000001)
  2762. Part323.Anchored = true
  2763. Part323.Size = Vector3.new(2.87000036, 2.0599997, 0.129999995)
  2764. Part323.CFrame = CFrame.new(48.5302925, 5.20041084, -32.5724411, 0.043552462, -0.000943871273, -0.999050736, 0.033443477, 0.999440491, 0.000513690058, 0.998491287, -0.0334341004, 0.0435596555)
  2765. Part323.BottomSurface = Enum.SurfaceType.Smooth
  2766. Part323.TopSurface = Enum.SurfaceType.Smooth
  2767. Part323.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2768. Part323.Position = Vector3.new(48.5302925, 5.20041084, -32.5724411)
  2769. Part323.Orientation = Vector3.new(-0.0299999993, -87.5, 1.91999996)
  2770. Part323.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2771. Part324.Parent = Model319
  2772. Part324.BrickColor = BrickColor.new("Really black")
  2773. Part324.Rotation = Vector3.new(-1.91999996, 2.5, 0.049999997)
  2774. Part324.Anchored = true
  2775. Part324.Size = Vector3.new(0.0500000007, 1.60999966, 2.50999975)
  2776. Part324.CFrame = CFrame.new(48.619709, 5.26499653, -32.5885239, 0.999051273, -0.000943871855, 0.0435543321, -0.000513750012, 0.999440491, 0.033443518, -0.0435614586, -0.0334341079, 0.998492658)
  2777. Part324.BottomSurface = Enum.SurfaceType.Smooth
  2778. Part324.TopSurface = Enum.SurfaceType.Smooth
  2779. Part324.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2780. Part324.Position = Vector3.new(48.619709, 5.26499653, -32.5885239)
  2781. Part324.Orientation = Vector3.new(-1.91999996, 2.5, -0.0299999993)
  2782. Part324.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2783. Part325.Parent = Model319
  2784. Part325.BrickColor = BrickColor.new("Pearl")
  2785. Part325.Rotation = Vector3.new(-0.680000007, -87.5, 1.24000001)
  2786. Part325.Anchored = true
  2787. Part325.Size = Vector3.new(1.04000139, 0.109999977, 0.390000105)
  2788. Part325.CFrame = CFrame.new(50.3436089, 4.25818729, -32.5248489, 0.0435525142, -0.000943871681, -0.999051094, 0.0334435031, 0.999440491, 0.000513690116, 0.998492241, -0.0334341042, 0.0435596667)
  2789. Part325.BottomSurface = Enum.SurfaceType.Smooth
  2790. Part325.TopSurface = Enum.SurfaceType.Smooth
  2791. Part325.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2792. Part325.Position = Vector3.new(50.3436089, 4.25818729, -32.5248489)
  2793. Part325.Orientation = Vector3.new(-0.0299999993, -87.5, 1.91999996)
  2794. Part325.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2795. Model326.Name = "Cash2"
  2796. Model326.Parent = Model0
  2797. Part327.Name = "Smooth Block Model"
  2798. Part327.Parent = Model326
  2799. Part327.Rotation = Vector3.new(63.9399986, -89.8899994, 63.25)
  2800. Part327.Anchored = true
  2801. Part327.FormFactor = Enum.FormFactor.Plate
  2802. Part327.Size = Vector3.new(1, 0.400000006, 1)
  2803. Part327.CFrame = CFrame.new(57.5484619, 6.1041584, -1.46193862, 0.00089405966, -0.00177416438, -0.999998271, -0.0119117536, 0.999927342, -0.00178469019, 0.999928892, 0.011913321, 0.000872861419)
  2804. Part327.BottomSurface = Enum.SurfaceType.Smooth
  2805. Part327.TopSurface = Enum.SurfaceType.Smooth
  2806. Part327.Position = Vector3.new(57.5484619, 6.1041584, -1.46193862)
  2807. Part327.Orientation = Vector3.new(0.099999994, -89.9499969, -0.680000007)
  2808. SpecialMesh328.Parent = Part327
  2809. SpecialMesh328.MeshType = Enum.MeshType.Torso
  2810. Weld329.Name = "Virus"
  2811. Weld329.Parent = SpecialMesh328
  2812. Decal330.Parent = Part327
  2813. Decal330.Texture = "http://www.roblox.com/asset/?id=2276240"
  2814. Decal330.Face = Enum.NormalId.Right
  2815. Weld331.Name = "Virus"
  2816. Weld331.Parent = Decal330
  2817. Weld332.Name = "Virus"
  2818. Weld332.Parent = Part327
  2819. Part333.Name = "Smooth Block Model"
  2820. Part333.Parent = Model326
  2821. Part333.Rotation = Vector3.new(-179.319992, -0.049999997, 179.899994)
  2822. Part333.Anchored = true
  2823. Part333.Size = Vector3.new(3, 1.20000005, 1)
  2824. Part333.CFrame = CFrame.new(58.5507736, 5.29408884, -0.472412884, -0.999998391, -0.00177416403, -0.000894059776, -0.00178469066, 0.999927282, 0.0119117554, 0.000872861536, 0.01191332, -0.999929011)
  2825. Part333.BottomSurface = Enum.SurfaceType.Smooth
  2826. Part333.TopSurface = Enum.SurfaceType.Smooth
  2827. Part333.Position = Vector3.new(58.5507736, 5.29408884, -0.472412884)
  2828. Part333.Orientation = Vector3.new(-0.680000007, -179.949997, -0.099999994)
  2829. SpecialMesh334.Parent = Part333
  2830. SpecialMesh334.MeshType = Enum.MeshType.Wedge
  2831. Weld335.Name = "Virus"
  2832. Weld335.Parent = SpecialMesh334
  2833. Decal336.Parent = Part333
  2834. Decal336.Texture = "http://www.roblox.com/asset/?id=2753044"
  2835. Weld337.Name = "Virus"
  2836. Weld337.Parent = Decal336
  2837. Weld338.Name = "Virus"
  2838. Weld338.Parent = Part333
  2839. Part339.Name = "Smooth Block Model"
  2840. Part339.Parent = Model326
  2841. Part339.Rotation = Vector3.new(-179.319992, -0.049999997, 179.899994)
  2842. Part339.Anchored = true
  2843. Part339.FormFactor = Enum.FormFactor.Plate
  2844. Part339.Size = Vector3.new(3, 0.400000006, 2)
  2845. Part339.CFrame = CFrame.new(58.5517502, 4.5001049, -0.981907785, -0.999998033, -0.00177416485, -0.000894059427, -0.00178468949, 0.999927461, 0.0119117508, 0.000872861187, 0.0119133228, -0.999928653)
  2846. Part339.BottomSurface = Enum.SurfaceType.Smooth
  2847. Part339.TopSurface = Enum.SurfaceType.Smooth
  2848. Part339.Position = Vector3.new(58.5517502, 4.5001049, -0.981907785)
  2849. Part339.Orientation = Vector3.new(-0.680000007, -179.949997, -0.099999994)
  2850. BlockMesh340.Parent = Part339
  2851. Weld341.Name = "Virus"
  2852. Weld341.Parent = BlockMesh340
  2853. Weld342.Name = "Virus"
  2854. Weld342.Parent = Part339
  2855. Part343.Name = "Smooth Block Model"
  2856. Part343.Parent = Model326
  2857. Part343.Rotation = Vector3.new(-179.319992, -0.049999997, 179.899994)
  2858. Part343.Anchored = true
  2859. Part343.Size = Vector3.new(3, 1.20000005, 1)
  2860. Part343.CFrame = CFrame.new(58.549881, 5.30600071, -1.4723419, -0.999998152, -0.0017741645, -0.000894059543, -0.00178468996, 0.999927402, 0.0119117526, 0.000872861303, 0.0119133219, -0.999928772)
  2861. Part343.BottomSurface = Enum.SurfaceType.Smooth
  2862. Part343.TopSurface = Enum.SurfaceType.Smooth
  2863. Part343.Position = Vector3.new(58.549881, 5.30600071, -1.4723419)
  2864. Part343.Orientation = Vector3.new(-0.680000007, -179.949997, -0.099999994)
  2865. BlockMesh344.Parent = Part343
  2866. Weld345.Name = "Virus"
  2867. Weld345.Parent = BlockMesh344
  2868. Weld346.Name = "Virus"
  2869. Weld346.Parent = Part343
  2870. Part347.Name = "Smooth Block Model"
  2871. Part347.Parent = Model326
  2872. Part347.Rotation = Vector3.new(-179.319992, -0.049999997, 179.899994)
  2873. Part347.Anchored = true
  2874. Part347.FormFactor = Enum.FormFactor.Plate
  2875. Part347.Size = Vector3.new(1, 0.400000006, 1)
  2876. Part347.CFrame = CFrame.new(59.5484695, 6.10772943, -1.46368361, -0.999998391, -0.00177416403, -0.000894059776, -0.00178469066, 0.999927282, 0.0119117554, 0.000872861536, 0.01191332, -0.999929011)
  2877. Part347.BottomSurface = Enum.SurfaceType.Smooth
  2878. Part347.TopSurface = Enum.SurfaceType.Smooth
  2879. Part347.Position = Vector3.new(59.5484695, 6.10772943, -1.46368361)
  2880. Part347.Orientation = Vector3.new(-0.680000007, -179.949997, -0.099999994)
  2881. SpecialMesh348.Parent = Part347
  2882. SpecialMesh348.Scale = Vector3.new(0.200000003, 2, 0.200000003)
  2883. SpecialMesh348.Scale = Vector3.new(0.200000003, 2, 0.200000003)
  2884. Weld349.Name = "Virus"
  2885. Weld349.Parent = SpecialMesh348
  2886. Weld350.Name = "Virus"
  2887. Weld350.Parent = Part347
  2888. Part351.Name = "Smooth Block Model"
  2889. Part351.Parent = Model326
  2890. Part351.Rotation = Vector3.new(-179.319992, -0.049999997, 179.899994)
  2891. Part351.Anchored = true
  2892. Part351.FormFactor = Enum.FormFactor.Plate
  2893. Part351.Size = Vector3.new(1, 0.400000006, 1)
  2894. Part351.CFrame = CFrame.new(59.5477524, 6.50770092, -1.45891833, -0.999998868, -0.0017741638, -0.000894060184, -0.00178469217, 0.999927044, 0.0119117619, 0.000872861943, 0.0119133173, -0.999929488)
  2895. Part351.BottomSurface = Enum.SurfaceType.Smooth
  2896. Part351.TopSurface = Enum.SurfaceType.Smooth
  2897. Part351.Position = Vector3.new(59.5477524, 6.50770092, -1.45891833)
  2898. Part351.Orientation = Vector3.new(-0.680000007, -179.949997, -0.099999994)
  2899. BlockMesh352.Parent = Part351
  2900. BlockMesh352.Scale = Vector3.new(1, 1, 0.200000003)
  2901. BlockMesh352.Scale = Vector3.new(1, 1, 0.200000003)
  2902. Weld353.Name = "Virus"
  2903. Weld353.Parent = BlockMesh352
  2904. Decal354.Parent = Part351
  2905. Decal354.Texture = "http://www.roblox.com/asset/?id=2821492"
  2906. Weld355.Name = "Virus"
  2907. Weld355.Parent = Decal354
  2908. Weld356.Name = "Virus"
  2909. Weld356.Parent = Part351
  2910. VelocityMotor357.Name = "4D Being"
  2911. VelocityMotor357.Parent = Model326
  2912. Weld358.Name = "Virus"
  2913. Weld358.Parent = VelocityMotor357
  2914. VelocityMotor359.Name = "4D Being"
  2915. VelocityMotor359.Parent = VelocityMotor357
  2916. VelocityMotor360.Name = "4D Being"
  2917. VelocityMotor360.Parent = VelocityMotor359
  2918. VelocityMotor361.Name = "4D Being"
  2919. VelocityMotor361.Parent = VelocityMotor360
  2920. Weld362.Name = "Virus"
  2921. Weld362.Parent = Model326
  2922. Part363.Parent = Model0
  2923. Part363.BrickColor = BrickColor.new("Black")
  2924. Part363.Anchored = true
  2925. Part363.Size = Vector3.new(3.52000022, 1, 2.26999974)
  2926. Part363.CFrame = CFrame.new(54.7899857, 3.8492527, -1.01499987, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2927. Part363.BottomSurface = Enum.SurfaceType.Smooth
  2928. Part363.TopSurface = Enum.SurfaceType.Smooth
  2929. Part363.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2930. Part363.Position = Vector3.new(54.7899857, 3.8492527, -1.01499987)
  2931. Part363.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2932. for i,v in pairs(mas:GetChildren()) do
  2933. v.Parent = workspace
  2934. pcall(function() v:MakeJoints() end)
  2935. end
  2936. mas:Destroy()
  2937. for i,v in pairs(cors) do
  2938. spawn(function()
  2939. pcall(v)
  2940. end)
  2941. end
Advertisement
Add Comment
Please, Sign In to add comment