Advertisement
Zach_rookie_editor3

L0uh pls dont kill me

Dec 11th, 2019
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 136.13 KB | None | 0 0
  1. 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 = {}
  2. do
  3. script.Parent = owner.Character
  4. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  5. local function NewFakeEvent()
  6. local Bind = Instance.new("BindableEvent")
  7. local Fake;Fake = {Connections = {},
  8. fakeEvent=true;
  9. Connect=function(self,Func)
  10. Bind.Event:connect(Func)
  11. self.Connections[Bind] = true
  12. return setmetatable({Connected = true},{
  13. __index = function (self,Index)
  14. if Index:lower() == "disconnect" then
  15. return function() Fake.Connections[Bind] = false;self.Connected = false end
  16. end
  17. return Fake[Index]
  18. end;
  19. __tostring = function() return "Connection" end;
  20. })
  21. end}
  22. Fake.connect = Fake.Connect;return Fake;
  23. end
  24. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  25. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  26. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  27. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  28. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  29. local function TriggerEvent(self,Event,...)
  30. local Trigger = Mouse[Event]
  31. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  32. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  33. end
  34. end
  35. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  36. Event.OnServerEvent:Connect(function(FiredBy,Input)
  37. if FiredBy.Name ~= owner.Name then return end
  38. if Input.MouseEvent then
  39. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  40. else
  41. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  42. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  43. for _,Action in pairs(ContextActionService.Actions) do
  44. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  45. end
  46. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  47. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  48. end
  49. end)
  50. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  51. Event.Parent = NLS([[
  52. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  53. local Input = function(Input,gameProcessedEvent)
  54. if gameProcessedEvent then return end
  55. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  56. end
  57. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  58. local Hit,Target
  59. while wait(1/30) do
  60. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  61. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  62. end
  63. end
  64. ]],owner.Character)
  65. end
  66. RealGame = game;game = setmetatable({},{
  67. __index = function (self,Index)
  68. local Sandbox = function (Thing)
  69. if Thing:IsA("Player") then
  70. local RealPlayer = Thing
  71. return setmetatable({},{
  72. __index = function (self,Index)
  73. local Type = type(RealPlayer[Index])
  74. if Type == "function" then
  75. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  76. return function (self)return InternalData["Mouse"] end
  77. end
  78. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  79. end
  80. return RealPlayer[Index]
  81. end;
  82. __tostring = function(self) return RealPlayer.Name end
  83. })
  84. end
  85. end
  86. if RealGame[Index] then
  87. local Type = type(RealGame[Index])
  88. if Type == "function" then
  89. if Index:lower() == "getservice" or Index:lower() == "service" then
  90. return function (self,Service)
  91. local FakeServices = {
  92. ["players"] = function()
  93. return setmetatable({},{
  94. __index = function (self2,Index2)
  95. local RealService = RealGame:GetService(Service)
  96. local Type2 = type(Index2)
  97. if Type2 == "function" then
  98. return function (self,...) return RealService[Index2](RealService,...)end
  99. else
  100. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  101. return RealService[Index2]
  102. end
  103. end;
  104. __tostring = function(self) return RealGame:GetService(Service).Name end
  105. })
  106. end;
  107. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  108. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  109. ["runservice"] = function()
  110. return setmetatable({},{
  111. __index = function(self2,Index2)
  112. local RealService = RealGame:GetService(Service)
  113. local Type2 = type(Index2)
  114. if Type2 == "function" then
  115. return function (self,...) return RealService[Index2](RealService,...) end
  116. else
  117. local RunServices = {
  118. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  119. ["renderstepped"] = function() return RealService["Stepped"] end
  120. }
  121. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  122. return RealService[Index2]
  123. end
  124. end
  125. })
  126. end
  127. }
  128. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  129. return RealGame:GetService(Service)
  130. end
  131. end
  132. return function (self,...) return RealGame[Index](RealGame,...) end
  133. else
  134. if game:GetService(Index) then return game:GetService(Index) end
  135. return RealGame[Index]
  136. end
  137. end
  138. return nil
  139. end
  140. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  141. print(" made by zachrogamehard133447")
  142. print(" code is 9281 ")
  143.  
  144.  
  145.  
  146. local runDummyScript = function(f,scri)
  147. local oldenv = getfenv(f)
  148. local newenv = setmetatable({}, {
  149. __index = function(_, k)
  150. if k:lower() == 'script' then
  151. return scri
  152. else
  153. return oldenv[k]
  154. end
  155. end
  156. })
  157. setfenv(f, newenv)
  158. ypcall(function() f() end)
  159. end
  160. cors = {}
  161. mas = Instance.new("Model",game:GetService("Lighting"))
  162. mas.Name = "CompiledModel"
  163. o1 = Instance.new("Model")
  164. o2 = Instance.new("Model")
  165. o3 = Instance.new("Part")
  166. o4 = Instance.new("SpecialMesh")
  167. o9 = Instance.new("Decal")
  168. o10 = Instance.new("Part")
  169. o11 = Instance.new("Motor6D")
  170. o12 = Instance.new("Part")
  171. o14 = Instance.new("Part")
  172. o15 = Instance.new("Part")
  173. o17 = Instance.new("Weld")
  174. o18 = Instance.new("Part")
  175. o19 = Instance.new("Part")
  176. o20 = Instance.new("Decal")
  177. o29 = Instance.new("Motor6D")
  178. o30 = Instance.new("Motor6D")
  179. o31 = Instance.new("Humanoid")
  180. o33 = Instance.new("Part")
  181. o34 = Instance.new("SpecialMesh")
  182. o38 = Instance.new("Part")
  183. o39 = Instance.new("SpecialMesh")
  184. o42 = Instance.new("CharacterMesh")
  185. o43 = Instance.new("CharacterMesh")
  186. o44 = Instance.new("CharacterMesh")
  187. o45 = Instance.new("CharacterMesh")
  188. o46 = Instance.new("CharacterMesh")
  189. o47 = Instance.new("BodyColors")
  190. o48 = Instance.new("Shirt")
  191. o49 = Instance.new("Pants")
  192. o50 = Instance.new("Model")
  193. o51 = Instance.new("Model")
  194. o52 = Instance.new("Part")
  195. o53 = Instance.new("Weld")
  196. o54 = Instance.new("Part")
  197. o55 = Instance.new("Weld")
  198. o56 = Instance.new("Model")
  199. o57 = Instance.new("Part")
  200. o58 = Instance.new("Weld")
  201. o59 = Instance.new("Part")
  202. o60 = Instance.new("Weld")
  203. o61 = Instance.new("Model")
  204. o62 = Instance.new("Part")
  205. o63 = Instance.new("Weld")
  206. o64 = Instance.new("Part")
  207. o65 = Instance.new("Weld")
  208. o66 = Instance.new("Model")
  209. o67 = Instance.new("Part")
  210. o68 = Instance.new("Weld")
  211. o69 = Instance.new("Part")
  212. o70 = Instance.new("Weld")
  213. o71 = Instance.new("Part")
  214. o72 = Instance.new("Weld")
  215. o73 = Instance.new("Model")
  216. o74 = Instance.new("Part")
  217. o75 = Instance.new("Weld")
  218. o76 = Instance.new("Part")
  219. o77 = Instance.new("Weld")
  220. o78 = Instance.new("Model")
  221. o79 = Instance.new("Part")
  222. o80 = Instance.new("Weld")
  223. o81 = Instance.new("Part")
  224. o82 = Instance.new("Weld")
  225. o83 = Instance.new("Part")
  226. o84 = Instance.new("Weld")
  227. o85 = Instance.new("Model")
  228. o91 = Instance.new("Weld")
  229. o93 = Instance.new("Model")
  230. o99 = Instance.new("Weld")
  231. o101 = Instance.new("Model")
  232. o102 = Instance.new("Part")
  233. o103 = Instance.new("Weld")
  234. o104 = Instance.new("Part")
  235. o105 = Instance.new("Weld")
  236. o106 = Instance.new("Model")
  237. o107 = Instance.new("Part")
  238. o108 = Instance.new("SpecialMesh")
  239. o113 = Instance.new("Decal")
  240. o114 = Instance.new("Part")
  241. o115 = Instance.new("Motor6D")
  242. o116 = Instance.new("Part")
  243. o118 = Instance.new("Part")
  244. o119 = Instance.new("Part")
  245. o121 = Instance.new("Part")
  246. o122 = Instance.new("Part")
  247. o123 = Instance.new("Decal")
  248. o132 = Instance.new("Motor6D")
  249. o133 = Instance.new("Motor6D")
  250. o134 = Instance.new("Motor6D")
  251. o135 = Instance.new("Humanoid")
  252. o137 = Instance.new("Part")
  253. o138 = Instance.new("SpecialMesh")
  254. o140 = Instance.new("Weld")
  255. o142 = Instance.new("BodyColors")
  256. o143 = Instance.new("Shirt")
  257. o144 = Instance.new("Pants")
  258. o145 = Instance.new("Model")
  259. o146 = Instance.new("Part")
  260. o147 = Instance.new("Part")
  261. o148 = Instance.new("Weld")
  262. o149 = Instance.new("Part")
  263. o150 = Instance.new("Part")
  264. o151 = Instance.new("Weld")
  265. o152 = Instance.new("Weld")
  266. o153 = Instance.new("Weld")
  267. o154 = Instance.new("Weld")
  268. o155 = Instance.new("Weld")
  269. o156 = Instance.new("Weld")
  270. o157 = Instance.new("Part")
  271. o158 = Instance.new("Weld")
  272. o159 = Instance.new("Weld")
  273. o160 = Instance.new("Model")
  274. o161 = Instance.new("Part")
  275. o162 = Instance.new("BlockMesh")
  276. o163 = Instance.new("Model")
  277. o164 = Instance.new("Part")
  278. o165 = Instance.new("ClickDetector")
  279. o166 = Instance.new("Decal")
  280. o167 = Instance.new("BlockMesh")
  281. o168 = Instance.new("Part")
  282. o169 = Instance.new("ClickDetector")
  283. o170 = Instance.new("Decal")
  284. o171 = Instance.new("BlockMesh")
  285. o172 = Instance.new("Part")
  286. o173 = Instance.new("ClickDetector")
  287. o174 = Instance.new("Decal")
  288. o175 = Instance.new("BlockMesh")
  289. o176 = Instance.new("Part")
  290. o177 = Instance.new("ClickDetector")
  291. o178 = Instance.new("Decal")
  292. o179 = Instance.new("BlockMesh")
  293. o180 = Instance.new("Part")
  294. o181 = Instance.new("ClickDetector")
  295. o182 = Instance.new("Decal")
  296. o183 = Instance.new("BlockMesh")
  297. o184 = Instance.new("Part")
  298. o185 = Instance.new("ClickDetector")
  299. o186 = Instance.new("Decal")
  300. o187 = Instance.new("BlockMesh")
  301. o188 = Instance.new("Part")
  302. o189 = Instance.new("ClickDetector")
  303. o190 = Instance.new("Decal")
  304. o191 = Instance.new("BlockMesh")
  305. o192 = Instance.new("Part")
  306. o193 = Instance.new("ClickDetector")
  307. o194 = Instance.new("Decal")
  308. o195 = Instance.new("BlockMesh")
  309. o196 = Instance.new("Part")
  310. o197 = Instance.new("ClickDetector")
  311. o198 = Instance.new("Decal")
  312. o199 = Instance.new("BlockMesh")
  313. o200 = Instance.new("Part")
  314. o201 = Instance.new("ClickDetector")
  315. o202 = Instance.new("Decal")
  316. o203 = Instance.new("BlockMesh")
  317. o204 = Instance.new("Part")
  318. o205 = Instance.new("ClickDetector")
  319. o206 = Instance.new("Decal")
  320. o207 = Instance.new("BlockMesh")
  321. o208 = Instance.new("Part")
  322. o209 = Instance.new("ClickDetector")
  323. o210 = Instance.new("Decal")
  324. o211 = Instance.new("BlockMesh")
  325. o212 = Instance.new("Script")
  326. o213 = Instance.new("Model")
  327. o214 = Instance.new("Part")
  328. o215 = Instance.new("Weld")
  329. o216 = Instance.new("Part")
  330. o217 = Instance.new("Weld")
  331. o218 = Instance.new("Part")
  332. o219 = Instance.new("Script")
  333. o220 = Instance.new("NumberValue")
  334. o221 = Instance.new("ClickDetector")
  335. o222 = Instance.new("Weld")
  336. o223 = Instance.new("Part")
  337. o224 = Instance.new("Weld")
  338. o225 = Instance.new("Weld")
  339. o226 = Instance.new("Part")
  340. o227 = Instance.new("Weld")
  341. o228 = Instance.new("Model")
  342. o229 = Instance.new("Part")
  343. o230 = Instance.new("SpecialMesh")
  344. o231 = Instance.new("Smoke")
  345. o232 = Instance.new("Part")
  346. o233 = Instance.new("Part")
  347. o234 = Instance.new("Part")
  348. o235 = Instance.new("Part")
  349. o236 = Instance.new("WedgePart")
  350. o237 = Instance.new("WedgePart")
  351. o238 = Instance.new("Part")
  352. o239 = Instance.new("Part")
  353. o240 = Instance.new("Weld")
  354. o241 = Instance.new("WedgePart")
  355. o242 = Instance.new("WedgePart")
  356. o243 = Instance.new("WedgePart")
  357. o244 = Instance.new("WedgePart")
  358. o245 = Instance.new("Part")
  359. o246 = Instance.new("Part")
  360. o247 = Instance.new("Weld")
  361. o248 = Instance.new("Part")
  362. o249 = Instance.new("WedgePart")
  363. o250 = Instance.new("WedgePart")
  364. o251 = Instance.new("Part")
  365. o252 = Instance.new("Weld")
  366. o253 = Instance.new("Model")
  367. o254 = Instance.new("Part")
  368. o255 = Instance.new("SpecialMesh")
  369. o256 = Instance.new("Part")
  370. o257 = Instance.new("SpecialMesh")
  371. o258 = Instance.new("Part")
  372. o259 = Instance.new("SpecialMesh")
  373. o260 = Instance.new("Part")
  374. o261 = Instance.new("Weld")
  375. o262 = Instance.new("Part")
  376. o263 = Instance.new("Weld")
  377. o264 = Instance.new("Part")
  378. o265 = Instance.new("Weld")
  379. o266 = Instance.new("Part")
  380. o267 = Instance.new("Fire")
  381. o268 = Instance.new("Smoke")
  382. o269 = Instance.new("Model")
  383. o270 = Instance.new("Part")
  384. o271 = Instance.new("Part")
  385. o272 = Instance.new("Weld")
  386. o273 = Instance.new("Part")
  387. o274 = Instance.new("Weld")
  388. o275 = Instance.new("Part")
  389. o276 = Instance.new("Part")
  390. o277 = Instance.new("Part")
  391. o278 = Instance.new("Part")
  392. o279 = Instance.new("Part")
  393. o280 = Instance.new("Part")
  394. o281 = Instance.new("Weld")
  395. o282 = Instance.new("Part")
  396. o283 = Instance.new("Model")
  397. o284 = Instance.new("Part")
  398. o285 = Instance.new("SpecialMesh")
  399. o290 = Instance.new("Decal")
  400. o291 = Instance.new("Part")
  401. o292 = Instance.new("Motor6D")
  402. o293 = Instance.new("Part")
  403. o295 = Instance.new("Part")
  404. o296 = Instance.new("Part")
  405. o298 = Instance.new("Part")
  406. o299 = Instance.new("Part")
  407. o300 = Instance.new("Decal")
  408. o309 = Instance.new("Humanoid")
  409. o311 = Instance.new("Part")
  410. o312 = Instance.new("SpecialMesh")
  411. o316 = Instance.new("Part")
  412. o317 = Instance.new("SpecialMesh")
  413. o319 = Instance.new("Weld")
  414. o320 = Instance.new("CharacterMesh")
  415. o321 = Instance.new("CharacterMesh")
  416. o322 = Instance.new("CharacterMesh")
  417. o323 = Instance.new("CharacterMesh")
  418. o324 = Instance.new("CharacterMesh")
  419. o325 = Instance.new("BodyColors")
  420. o326 = Instance.new("Shirt")
  421. o327 = Instance.new("Pants")
  422. o328 = Instance.new("Model")
  423. o329 = Instance.new("Part")
  424. o330 = Instance.new("SpecialMesh")
  425. o335 = Instance.new("Decal")
  426. o336 = Instance.new("Part")
  427. o337 = Instance.new("Motor6D")
  428. o338 = Instance.new("Part")
  429. o340 = Instance.new("Part")
  430. o341 = Instance.new("Snap")
  431. o342 = Instance.new("Part")
  432. o344 = Instance.new("Part")
  433. o345 = Instance.new("Part")
  434. o346 = Instance.new("Decal")
  435. o355 = Instance.new("Motor6D")
  436. o356 = Instance.new("Motor6D")
  437. o357 = Instance.new("Motor6D")
  438. o358 = Instance.new("Humanoid")
  439. o360 = Instance.new("Part")
  440. o361 = Instance.new("SpecialMesh")
  441. o363 = Instance.new("Weld")
  442. o364 = Instance.new("BodyColors")
  443. o365 = Instance.new("Part")
  444. o366 = Instance.new("Weld")
  445. o367 = Instance.new("Weld")
  446. o368 = Instance.new("Weld")
  447. o369 = Instance.new("Weld")
  448. o370 = Instance.new("Weld")
  449. o371 = Instance.new("Weld")
  450. o372 = Instance.new("Model")
  451. o373 = Instance.new("Part")
  452. o374 = Instance.new("SpecialMesh")
  453. o375 = Instance.new("ManualWeld")
  454. o376 = Instance.new("Model")
  455. o377 = Instance.new("Part")
  456. o382 = Instance.new("SpecialMesh")
  457. o383 = Instance.new("StringValue")
  458. o384 = Instance.new("Vector3Value")
  459. o385 = Instance.new("Vector3Value")
  460. o386 = Instance.new("Vector3Value")
  461. o387 = Instance.new("Vector3Value")
  462. o388 = Instance.new("Vector3Value")
  463. o389 = Instance.new("Decal")
  464. o390 = Instance.new("Snap")
  465. o391 = Instance.new("Part")
  466. o392 = Instance.new("Part")
  467. o394 = Instance.new("Weld")
  468. o395 = Instance.new("Weld")
  469. o396 = Instance.new("Weld")
  470. o397 = Instance.new("Weld")
  471. o398 = Instance.new("Weld")
  472. o399 = Instance.new("Weld")
  473. o400 = Instance.new("Part")
  474. o401 = Instance.new("Snap")
  475. o402 = Instance.new("Part")
  476. o404 = Instance.new("Weld")
  477. o405 = Instance.new("Weld")
  478. o406 = Instance.new("Weld")
  479. o407 = Instance.new("Weld")
  480. o408 = Instance.new("Weld")
  481. o409 = Instance.new("Weld")
  482. o410 = Instance.new("Part")
  483. o411 = Instance.new("Snap")
  484. o412 = Instance.new("Part")
  485. o413 = Instance.new("Decal")
  486. o422 = Instance.new("Humanoid")
  487. o424 = Instance.new("Part")
  488. o425 = Instance.new("SpecialMesh")
  489. o426 = Instance.new("StringValue")
  490. o428 = Instance.new("Weld")
  491. o430 = Instance.new("Part")
  492. o431 = Instance.new("SpecialMesh")
  493. o433 = Instance.new("Vector3Value")
  494. o434 = Instance.new("Weld")
  495. o436 = Instance.new("BodyColors")
  496. o437 = Instance.new("Shirt")
  497. o438 = Instance.new("ShirtGraphic")
  498. o439 = Instance.new("Pants")
  499. o440 = Instance.new("Model")
  500. o441 = Instance.new("Part")
  501. o446 = Instance.new("Decal")
  502. o447 = Instance.new("SpecialMesh")
  503. o448 = Instance.new("StringValue")
  504. o449 = Instance.new("Vector3Value")
  505. o450 = Instance.new("Vector3Value")
  506. o451 = Instance.new("Vector3Value")
  507. o452 = Instance.new("Vector3Value")
  508. o453 = Instance.new("Vector3Value")
  509. o454 = Instance.new("Snap")
  510. o455 = Instance.new("Part")
  511. o456 = Instance.new("Motor6D")
  512. o457 = Instance.new("Part")
  513. o459 = Instance.new("Part")
  514. o460 = Instance.new("Part")
  515. o462 = Instance.new("Part")
  516. o463 = Instance.new("Part")
  517. o464 = Instance.new("Decal")
  518. o473 = Instance.new("Humanoid")
  519. o475 = Instance.new("Part")
  520. o476 = Instance.new("SpecialMesh")
  521. o478 = Instance.new("Weld")
  522. o480 = Instance.new("BodyColors")
  523. o481 = Instance.new("Shirt")
  524. o482 = Instance.new("Pants")
  525. o483 = Instance.new("Tool")
  526. o484 = Instance.new("Part")
  527. o485 = Instance.new("SpecialMesh")
  528. o487 = Instance.new("Animation")
  529. o1.Name = "Ultimate house"
  530. o1.Parent = mas
  531. o2.Name = "Badmylife1234"
  532. o2.Parent = o1
  533. o2.PrimaryPart = o10
  534. o3.Name = "Head"
  535. o3.Parent = o2
  536. o3.BrickColor = BrickColor.new("Light orange")
  537. o3.Position = Vector3.new(176, 2.00000024, 11)
  538. o3.Rotation = Vector3.new(0, -90, 0)
  539. o3.Anchored = true
  540. o3.FormFactor = Enum.FormFactor.Symmetric
  541. o3.Size = Vector3.new(2, 1, 1)
  542. o3.CFrame = CFrame.new(176, 2.00000024, 11, 1.19248806e-08, -1.88079096e-37, -1, 1.97686953e-22, 1, 2.35739336e-30, 1, 2.02629122e-22, 1.19248806e-08)
  543. o3.TopSurface = Enum.SurfaceType.Smooth
  544. o3.Color = Color3.new(0.917647, 0.721569, 0.572549)
  545. o3.Position = Vector3.new(176, 2.00000024, 11)
  546. o4.Parent = o3
  547. o4.Scale = Vector3.new(1.25, 1.25, 1.25)
  548. o9.Name = "face"
  549. o9.Parent = o3
  550. o9.Texture = "http://www.roblox.com/asset/?id=18151722"
  551. o10.Name = "HumanoidRootPart"
  552. o10.Parent = o2
  553. o10.Transparency = 1
  554. o10.Position = Vector3.new(175, 1.49999976, 11)
  555. o10.Rotation = Vector3.new(-90, 0, -90)
  556. o10.Anchored = true
  557. o10.CanCollide = false
  558. o10.FormFactor = Enum.FormFactor.Symmetric
  559. o10.Size = Vector3.new(2, 2, 1)
  560. o10.CFrame = CFrame.new(175, 1.49999976, 11, 2.93641657e-14, 1, -1.19248824e-08, -1.19249099e-08, 1.19248824e-08, 1, 1, 2.93641657e-14, 1.19248522e-08)
  561. o10.BottomSurface = Enum.SurfaceType.Smooth
  562. o10.TopSurface = Enum.SurfaceType.Smooth
  563. o10.Position = Vector3.new(175, 1.49999976, 11)
  564. o11.Name = "RootJoint"
  565. o11.Parent = o10
  566. o11.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  567. o11.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  568. o11.Part0 = o10
  569. o11.Part1 = o19
  570. o11.MaxVelocity = 0.10000000149012
  571. o12.Name = "Left Arm"
  572. o12.Parent = o2
  573. o12.BrickColor = BrickColor.new("Light orange")
  574. o12.Position = Vector3.new(175, 1.49999976, 9.5)
  575. o12.Rotation = Vector3.new(90, -30, 90)
  576. o12.Anchored = true
  577. o12.CanCollide = false
  578. o12.FormFactor = Enum.FormFactor.Symmetric
  579. o12.Size = Vector3.new(1, 2, 1)
  580. o12.CFrame = CFrame.new(175, 1.49999976, 9.5, 5.96242966e-09, -0.866025329, -0.49999997, 1.03272892e-08, 0.49999997, -0.866025329, 1, 2.92219624e-14, 1.19248522e-08)
  581. o12.Color = Color3.new(0.917647, 0.721569, 0.572549)
  582. o12.Position = Vector3.new(175, 1.49999976, 9.5)
  583. o14.Name = "Left Leg"
  584. o14.Parent = o2
  585. o14.BrickColor = BrickColor.new("Light orange")
  586. o14.Position = Vector3.new(173, 1.49999976, 10.5)
  587. o14.Rotation = Vector3.new(-90, 0, -90)
  588. o14.Anchored = true
  589. o14.CanCollide = false
  590. o14.FormFactor = Enum.FormFactor.Symmetric
  591. o14.Size = Vector3.new(1, 2, 1)
  592. o14.CFrame = CFrame.new(173, 1.49999976, 10.5, 2.93641657e-14, 1, -1.19248824e-08, -1.19249099e-08, 1.19248824e-08, 1, 1, 2.93641657e-14, 1.19248522e-08)
  593. o14.BottomSurface = Enum.SurfaceType.Smooth
  594. o14.Color = Color3.new(0.917647, 0.721569, 0.572549)
  595. o14.Position = Vector3.new(173, 1.49999976, 10.5)
  596. o15.Name = "Right Arm"
  597. o15.Parent = o2
  598. o15.BrickColor = BrickColor.new("Light orange")
  599. o15.Position = Vector3.new(175.931854, 2.01763797, 12.5)
  600. o15.Rotation = Vector3.new(90, 0, 90)
  601. o15.Anchored = true
  602. o15.CanCollide = false
  603. o15.FormFactor = Enum.FormFactor.Symmetric
  604. o15.Size = Vector3.new(1, 2, 1)
  605. o15.CFrame = CFrame.new(175.931854, 2.01763797, 12.5, 4.45628506e-14, -1, 2.38418579e-07, 1.19248336e-08, -2.38418579e-07, -1, 1, -4.79209093e-14, 1.19249268e-08)
  606. o15.Color = Color3.new(0.917647, 0.721569, 0.572549)
  607. o15.Position = Vector3.new(175.931854, 2.01763797, 12.5)
  608. o17.Parent = o15
  609. o17.C0 = CFrame.new(-0.5, 0, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  610. o17.C1 = CFrame.new(1, 0.931854248, 0.517638206, 2.3849779e-08, -1.58558401e-14, -1, 2.26493697e-07, -1, -1.54830914e-14, -1, -2.26493697e-07, -2.38497435e-08)
  611. o17.Part0 = o15
  612. o17.Part1 = o19
  613. o18.Name = "Right Leg"
  614. o18.Parent = o2
  615. o18.BrickColor = BrickColor.new("Light orange")
  616. o18.Position = Vector3.new(173, 1.49999976, 11.5)
  617. o18.Rotation = Vector3.new(-90, 0, -90)
  618. o18.Anchored = true
  619. o18.CanCollide = false
  620. o18.FormFactor = Enum.FormFactor.Symmetric
  621. o18.Size = Vector3.new(1, 2, 1)
  622. o18.CFrame = CFrame.new(173, 1.49999976, 11.5, 2.93641657e-14, 1, -1.19248824e-08, -1.19249099e-08, 1.19248824e-08, 1, 1, 2.93641657e-14, 1.19248522e-08)
  623. o18.BottomSurface = Enum.SurfaceType.Smooth
  624. o18.Color = Color3.new(0.917647, 0.721569, 0.572549)
  625. o18.Position = Vector3.new(173, 1.49999976, 11.5)
  626. o19.Name = "Torso"
  627. o19.Parent = o2
  628. o19.BrickColor = BrickColor.new("Light orange")
  629. o19.Position = Vector3.new(175, 1.49999976, 11)
  630. o19.Rotation = Vector3.new(-90, 0, -90)
  631. o19.Anchored = true
  632. o19.FormFactor = Enum.FormFactor.Symmetric
  633. o19.Size = Vector3.new(2, 2, 1)
  634. o19.CFrame = CFrame.new(175, 1.49999976, 11, 2.93641657e-14, 1, -1.19248824e-08, -1.19249099e-08, 1.19248824e-08, 1, 1, 2.93641657e-14, 1.19248522e-08)
  635. o19.LeftSurface = Enum.SurfaceType.Weld
  636. o19.RightSurface = Enum.SurfaceType.Weld
  637. o19.Color = Color3.new(0.917647, 0.721569, 0.572549)
  638. o19.Position = Vector3.new(175, 1.49999976, 11)
  639. o20.Name = "roblox"
  640. o20.Parent = o19
  641. o29.Name = "Right Hip"
  642. o29.Parent = o19
  643. o29.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  644. o29.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  645. o29.Part0 = o19
  646. o29.Part1 = o18
  647. o29.MaxVelocity = 0.10000000149012
  648. o30.Name = "Left Hip"
  649. o30.Parent = o19
  650. o30.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  651. o30.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  652. o30.Part0 = o19
  653. o30.Part1 = o14
  654. o30.MaxVelocity = 0.10000000149012
  655. o31.Parent = o2
  656. o31.RightLeg = o18
  657. o31.LeftLeg = o14
  658. o31.Torso = o10
  659. o33.Name = "Handle"
  660. o33.Parent = mas
  661. o33.Position = Vector3.new(176.249725, 2.19999981, 11)
  662. o33.Rotation = Vector3.new(0, -90, 0)
  663. o33.Anchored = true
  664. o33.CanCollide = false
  665. o33.Locked = true
  666. o33.FormFactor = Enum.FormFactor.Plate
  667. o33.Size = Vector3.new(1, 0.400000006, 1)
  668. o33.CFrame = CFrame.new(176.249725, 2.19999981, 11, 1.19248806e-08, 3.20576983e-16, -1, 7.87137555e-09, 1, 4.1444221e-16, 1, -7.87137555e-09, 1.19248806e-08)
  669. o33.BottomSurface = Enum.SurfaceType.Smooth
  670. o33.TopSurface = Enum.SurfaceType.Smooth
  671. o33.Position = Vector3.new(176.249725, 2.19999981, 11)
  672. o34.Parent = o33
  673. o34.MeshId = "http://www.roblox.com/asset/?id=11419729"
  674. o34.TextureId = "http://www.roblox.com/asset/?id=112346956"
  675. o34.MeshType = Enum.MeshType.FileMesh
  676. o38.Name = "Handle"
  677. o38.Parent = mas
  678. o38.Position = Vector3.new(175.799728, 2.36999989, 10.9499998)
  679. o38.Rotation = Vector3.new(0, -90, 0)
  680. o38.Anchored = true
  681. o38.CanCollide = false
  682. o38.Locked = true
  683. o38.FormFactor = Enum.FormFactor.Custom
  684. o38.Size = Vector3.new(1.4000001, 1.79999995, 1.60000014)
  685. o38.CFrame = CFrame.new(175.799728, 2.36999989, 10.9499998, 1.19248806e-08, 3.20576983e-16, -1, 7.87137555e-09, 1, 4.1444221e-16, 1, -7.87137555e-09, 1.19248806e-08)
  686. o38.BottomSurface = Enum.SurfaceType.Smooth
  687. o38.TopSurface = Enum.SurfaceType.Smooth
  688. o38.Position = Vector3.new(175.799728, 2.36999989, 10.9499998)
  689. o39.Parent = o38
  690. o39.MeshId = "http://www.roblox.com/asset/?id=62246019"
  691. o39.TextureId = "http://www.roblox.com/asset/?id=292346519 "
  692. o39.MeshType = Enum.MeshType.FileMesh
  693. o42.Parent = o2
  694. o42.MeshId = 27111882
  695. o42.BodyPart = Enum.BodyPart.RightLeg
  696. o43.Parent = o2
  697. o43.MeshId = 27111857
  698. o43.BodyPart = Enum.BodyPart.LeftLeg
  699. o44.Parent = o2
  700. o44.MeshId = 27111894
  701. o44.BodyPart = Enum.BodyPart.Torso
  702. o45.Name = "Roblox 2.0 Right Arm"
  703. o45.Parent = o2
  704. o45.MeshId = 27111864
  705. o45.BodyPart = Enum.BodyPart.RightArm
  706. o46.Parent = o2
  707. o46.MeshId = 27111419
  708. o46.BodyPart = Enum.BodyPart.LeftArm
  709. o47.Parent = o2
  710. o47.HeadColor = BrickColor.new("Light orange")
  711. o47.LeftArmColor = BrickColor.new("Light orange")
  712. o47.LeftLegColor = BrickColor.new("Light orange")
  713. o47.RightArmColor = BrickColor.new("Light orange")
  714. o47.RightLegColor = BrickColor.new("Light orange")
  715. o47.TorsoColor = BrickColor.new("Light orange")
  716. o48.Name = "Shirt"
  717. o48.Parent = o2
  718. o48.ShirtTemplate = "http://www.roblox.com/asset/?id=3814588571"
  719. o49.Name = "Pants"
  720. o49.Parent = o2
  721. o49.PantsTemplate = "http://www.roblox.com/asset/?id=3025178655"
  722. o50.Parent = o1
  723. o51.Parent = o50
  724. o52.Parent = o51
  725. o52.Material = Enum.Material.Wood
  726. o52.BrickColor = BrickColor.new("Burnt Sienna")
  727. o52.Position = Vector3.new(198.225006, 1.78750277, 7.75)
  728. o52.Anchored = true
  729. o52.Size = Vector3.new(0.34375, 1.375, 0.34375)
  730. o52.CFrame = CFrame.new(198.225006, 1.78750277, 7.75, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  731. o52.BottomSurface = Enum.SurfaceType.Smooth
  732. o52.TopSurface = Enum.SurfaceType.Smooth
  733. o52.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  734. o52.Position = Vector3.new(198.225006, 1.78750277, 7.75)
  735. o53.Parent = o52
  736. o53.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  737. o53.C1 = CFrame.new(-18.3500004, -0.687500596, 13.4000006, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  738. o53.Part0 = o83
  739. o53.Part1 = o52
  740. o54.Parent = o51
  741. o54.Material = Enum.Material.Grass
  742. o54.BrickColor = BrickColor.new("Forest green")
  743. o54.Position = Vector3.new(198.225006, 3.16250277, 7.75)
  744. o54.Anchored = true
  745. o54.Size = Vector3.new(1.375, 1.375, 1.375)
  746. o54.CFrame = CFrame.new(198.225006, 3.16250277, 7.75, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  747. o54.BottomSurface = Enum.SurfaceType.Smooth
  748. o54.TopSurface = Enum.SurfaceType.Smooth
  749. o54.Color = Color3.new(0.121569, 0.501961, 0.113725)
  750. o54.Position = Vector3.new(198.225006, 3.16250277, 7.75)
  751. o55.Parent = o54
  752. o55.C0 = CFrame.new(-0.171875, 0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  753. o55.C1 = CFrame.new(-0.171875, -0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  754. o55.Part0 = o52
  755. o55.Part1 = o54
  756. o56.Parent = o50
  757. o57.Parent = o56
  758. o57.Material = Enum.Material.Wood
  759. o57.BrickColor = BrickColor.new("Burnt Sienna")
  760. o57.Position = Vector3.new(191.524994, 1.78750277, 3.19995117)
  761. o57.Anchored = true
  762. o57.Size = Vector3.new(0.34375, 1.375, 0.34375)
  763. o57.CFrame = CFrame.new(191.524994, 1.78750277, 3.19995117, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  764. o57.BottomSurface = Enum.SurfaceType.Smooth
  765. o57.TopSurface = Enum.SurfaceType.Smooth
  766. o57.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  767. o57.Position = Vector3.new(191.524994, 1.78750277, 3.19995117)
  768. o58.Parent = o57
  769. o58.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  770. o58.C1 = CFrame.new(-11.6500006, -0.687500596, 17.9500008, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  771. o58.Part0 = o83
  772. o58.Part1 = o57
  773. o59.Parent = o56
  774. o59.Material = Enum.Material.Grass
  775. o59.BrickColor = BrickColor.new("Forest green")
  776. o59.Position = Vector3.new(191.524994, 3.16250277, 3.19995117)
  777. o59.Anchored = true
  778. o59.Size = Vector3.new(1.375, 1.375, 1.375)
  779. o59.CFrame = CFrame.new(191.524994, 3.16250277, 3.19995117, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  780. o59.BottomSurface = Enum.SurfaceType.Smooth
  781. o59.TopSurface = Enum.SurfaceType.Smooth
  782. o59.Color = Color3.new(0.121569, 0.501961, 0.113725)
  783. o59.Position = Vector3.new(191.524994, 3.16250277, 3.19995117)
  784. o60.Parent = o59
  785. o60.C0 = CFrame.new(-0.171875, 0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  786. o60.C1 = CFrame.new(-0.171875, -0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  787. o60.Part0 = o57
  788. o60.Part1 = o59
  789. o61.Parent = o50
  790. o62.Parent = o61
  791. o62.Material = Enum.Material.Wood
  792. o62.BrickColor = BrickColor.new("Burnt Sienna")
  793. o62.Position = Vector3.new(189.375, 1.78750372, 17.0499268)
  794. o62.Anchored = true
  795. o62.Size = Vector3.new(0.34375, 1.375, 0.34375)
  796. o62.CFrame = CFrame.new(189.375, 1.78750372, 17.0499268, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  797. o62.BottomSurface = Enum.SurfaceType.Smooth
  798. o62.TopSurface = Enum.SurfaceType.Smooth
  799. o62.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  800. o62.Position = Vector3.new(189.375, 1.78750372, 17.0499268)
  801. o63.Parent = o62
  802. o63.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  803. o63.C1 = CFrame.new(-9.5, -0.68750155, 4.0999999, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  804. o63.Part0 = o83
  805. o63.Part1 = o62
  806. o64.Parent = o61
  807. o64.Material = Enum.Material.Grass
  808. o64.BrickColor = BrickColor.new("Forest green")
  809. o64.Position = Vector3.new(189.375, 3.16250372, 17.0499268)
  810. o64.Anchored = true
  811. o64.Size = Vector3.new(1.375, 1.375, 1.375)
  812. o64.CFrame = CFrame.new(189.375, 3.16250372, 17.0499268, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  813. o64.BottomSurface = Enum.SurfaceType.Smooth
  814. o64.TopSurface = Enum.SurfaceType.Smooth
  815. o64.Color = Color3.new(0.121569, 0.501961, 0.113725)
  816. o64.Position = Vector3.new(189.375, 3.16250372, 17.0499268)
  817. o65.Parent = o64
  818. o65.C0 = CFrame.new(-0.171875, 0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  819. o65.C1 = CFrame.new(-0.171875, -0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  820. o65.Part0 = o62
  821. o65.Part1 = o64
  822. o66.Parent = o50
  823. o67.Parent = o66
  824. o67.Material = Enum.Material.Wood
  825. o67.BrickColor = BrickColor.new("Burnt Sienna")
  826. o67.Position = Vector3.new(198.875, 1.787503, -1.15002441)
  827. o67.Anchored = true
  828. o67.Size = Vector3.new(0.34375, 1.375, 0.34375)
  829. o67.CFrame = CFrame.new(198.875, 1.787503, -1.15002441, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  830. o67.BottomSurface = Enum.SurfaceType.Smooth
  831. o67.TopSurface = Enum.SurfaceType.Smooth
  832. o67.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  833. o67.Position = Vector3.new(198.875, 1.787503, -1.15002441)
  834. o68.Parent = o67
  835. o68.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  836. o68.C1 = CFrame.new(-19, -0.687500954, 22.3000011, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  837. o68.Part0 = o83
  838. o68.Part1 = o67
  839. o69.Parent = o66
  840. o69.Material = Enum.Material.Grass
  841. o69.BrickColor = BrickColor.new("Forest green")
  842. o69.Position = Vector3.new(198.875, 3.16250324, -1.15002441)
  843. o69.Anchored = true
  844. o69.Size = Vector3.new(1.375, 1.375, 1.375)
  845. o69.CFrame = CFrame.new(198.875, 3.16250324, -1.15002441, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  846. o69.BottomSurface = Enum.SurfaceType.Smooth
  847. o69.TopSurface = Enum.SurfaceType.Smooth
  848. o69.Color = Color3.new(0.121569, 0.501961, 0.113725)
  849. o69.Position = Vector3.new(198.875, 3.16250324, -1.15002441)
  850. o70.Parent = o69
  851. o70.C0 = CFrame.new(-0.171875, 0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  852. o70.C1 = CFrame.new(-0.171875, -0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  853. o70.Part0 = o67
  854. o70.Part1 = o69
  855. o71.Parent = o50
  856. o71.Material = Enum.Material.Sand
  857. o71.BrickColor = BrickColor.new("Light orange")
  858. o71.Position = Vector3.new(190.5, 1.02500224, 8.625)
  859. o71.Anchored = true
  860. o71.Size = Vector3.new(24.5500011, 0.049999997, 29.2499981)
  861. o71.CFrame = CFrame.new(190.5, 1.02500224, 8.625, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  862. o71.BottomSurface = Enum.SurfaceType.Smooth
  863. o71.TopSurface = Enum.SurfaceType.Smooth
  864. o71.Color = Color3.new(0.917647, 0.721569, 0.572549)
  865. o71.Position = Vector3.new(190.5, 1.02500224, 8.625)
  866. o72.Parent = o71
  867. o72.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  868. o72.C1 = CFrame.new(-86.5, -0.0250022411, 55.375, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  869. o72.Part0 = o150
  870. o72.Part1 = o71
  871. o73.Parent = o50
  872. o74.Parent = o73
  873. o74.Material = Enum.Material.Wood
  874. o74.BrickColor = BrickColor.new("Burnt Sienna")
  875. o74.Position = Vector3.new(196.425003, 1.78750324, 16.1499634)
  876. o74.Anchored = true
  877. o74.Size = Vector3.new(0.34375, 1.375, 0.34375)
  878. o74.CFrame = CFrame.new(196.425003, 1.78750324, 16.1499634, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  879. o74.BottomSurface = Enum.SurfaceType.Smooth
  880. o74.TopSurface = Enum.SurfaceType.Smooth
  881. o74.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  882. o74.Position = Vector3.new(196.425003, 1.78750324, 16.1499634)
  883. o75.Parent = o74
  884. o75.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  885. o75.C1 = CFrame.new(-16.5500011, -0.687501073, 5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  886. o75.Part0 = o83
  887. o75.Part1 = o74
  888. o76.Parent = o73
  889. o76.Material = Enum.Material.Grass
  890. o76.BrickColor = BrickColor.new("Forest green")
  891. o76.Position = Vector3.new(196.425003, 3.16250324, 16.1499634)
  892. o76.Anchored = true
  893. o76.Size = Vector3.new(1.375, 1.375, 1.375)
  894. o76.CFrame = CFrame.new(196.425003, 3.16250324, 16.1499634, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  895. o76.BottomSurface = Enum.SurfaceType.Smooth
  896. o76.TopSurface = Enum.SurfaceType.Smooth
  897. o76.Color = Color3.new(0.121569, 0.501961, 0.113725)
  898. o76.Position = Vector3.new(196.425003, 3.16250324, 16.1499634)
  899. o77.Parent = o76
  900. o77.C0 = CFrame.new(-0.171875, 0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  901. o77.C1 = CFrame.new(-0.171875, -0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  902. o77.Part0 = o74
  903. o77.Part1 = o76
  904. o78.Parent = o50
  905. o79.Parent = o78
  906. o79.Material = Enum.Material.Wood
  907. o79.BrickColor = BrickColor.new("Burnt Sienna")
  908. o79.Position = Vector3.new(182.725006, 1.78750277, 4.84997559)
  909. o79.Anchored = true
  910. o79.Size = Vector3.new(0.34375, 1.375, 0.34375)
  911. o79.CFrame = CFrame.new(182.725006, 1.78750277, 4.84997559, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  912. o79.BottomSurface = Enum.SurfaceType.Smooth
  913. o79.TopSurface = Enum.SurfaceType.Smooth
  914. o79.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  915. o79.Position = Vector3.new(182.725006, 1.78750277, 4.84997559)
  916. o80.Parent = o79
  917. o80.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  918. o80.C1 = CFrame.new(-2.85000014, -0.687500775, 16.3000011, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  919. o80.Part0 = o83
  920. o80.Part1 = o79
  921. o81.Parent = o78
  922. o81.Material = Enum.Material.Grass
  923. o81.BrickColor = BrickColor.new("Forest green")
  924. o81.Position = Vector3.new(182.725006, 3.16250277, 4.84997559)
  925. o81.Anchored = true
  926. o81.Size = Vector3.new(1.375, 1.375, 1.375)
  927. o81.CFrame = CFrame.new(182.725006, 3.16250277, 4.84997559, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  928. o81.BottomSurface = Enum.SurfaceType.Smooth
  929. o81.TopSurface = Enum.SurfaceType.Smooth
  930. o81.Color = Color3.new(0.121569, 0.501961, 0.113725)
  931. o81.Position = Vector3.new(182.725006, 3.16250277, 4.84997559)
  932. o82.Parent = o81
  933. o82.C0 = CFrame.new(-0.171875, 0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  934. o82.C1 = CFrame.new(-0.171875, -0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  935. o82.Part0 = o79
  936. o82.Part1 = o81
  937. o83.Parent = o50
  938. o83.Material = Enum.Material.Grass
  939. o83.BrickColor = BrickColor.new("Bright green")
  940. o83.Position = Vector3.new(190.625, 1.07500219, 8.67492676)
  941. o83.Anchored = true
  942. o83.Size = Vector3.new(21.5, 0.049999997, 24.9500008)
  943. o83.CFrame = CFrame.new(190.625, 1.07500219, 8.67492676, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  944. o83.BottomSurface = Enum.SurfaceType.Smooth
  945. o83.TopSurface = Enum.SurfaceType.Smooth
  946. o83.Color = Color3.new(0.294118, 0.592157, 0.294118)
  947. o83.Position = Vector3.new(190.625, 1.07500219, 8.67492676)
  948. o84.Parent = o83
  949. o84.C0 = CFrame.new(-12.2750006, 0.0249999985, 14.624999, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  950. o84.C1 = CFrame.new(-12.4000006, -0.0249999985, 14.5749989, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  951. o84.Part0 = o71
  952. o84.Part1 = o83
  953. o85.Parent = o50
  954. o91.Parent = mas
  955. o91.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  956. o91.C1 = CFrame.new(15.5433111, -0.430375487, 15.4916735, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  957. o91.Part0 = o83
  958. o93.Parent = o50
  959. o99.Parent = mas
  960. o99.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  961. o99.C1 = CFrame.new(6.03749418, -0.430369675, -13.7859564, 1, 0, 0, 0, 0, 1, 0, -1, 0)
  962. o99.Part0 = o83
  963. o101.Parent = o50
  964. o102.Parent = o101
  965. o102.Material = Enum.Material.Wood
  966. o102.BrickColor = BrickColor.new("Burnt Sienna")
  967. o102.Position = Vector3.new(191.774994, 1.78750277, 9.59997559)
  968. o102.Anchored = true
  969. o102.Size = Vector3.new(0.34375, 1.375, 0.34375)
  970. o102.CFrame = CFrame.new(191.774994, 1.78750277, 9.59997559, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  971. o102.BottomSurface = Enum.SurfaceType.Smooth
  972. o102.TopSurface = Enum.SurfaceType.Smooth
  973. o102.Color = Color3.new(0.415686, 0.223529, 0.0352941)
  974. o102.Position = Vector3.new(191.774994, 1.78750277, 9.59997559)
  975. o103.Parent = o102
  976. o103.C0 = CFrame.new(-10.75, 0.0249999985, 12.4750004, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  977. o103.C1 = CFrame.new(-11.9000006, -0.687500596, 11.5500002, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  978. o103.Part0 = o83
  979. o103.Part1 = o102
  980. o104.Parent = o101
  981. o104.Material = Enum.Material.Grass
  982. o104.BrickColor = BrickColor.new("Forest green")
  983. o104.Position = Vector3.new(191.774994, 3.16250277, 9.59997559)
  984. o104.Anchored = true
  985. o104.Size = Vector3.new(1.375, 1.375, 1.375)
  986. o104.CFrame = CFrame.new(191.774994, 3.16250277, 9.59997559, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  987. o104.BottomSurface = Enum.SurfaceType.Smooth
  988. o104.TopSurface = Enum.SurfaceType.Smooth
  989. o104.Color = Color3.new(0.121569, 0.501961, 0.113725)
  990. o104.Position = Vector3.new(191.774994, 3.16250277, 9.59997559)
  991. o105.Parent = o104
  992. o105.C0 = CFrame.new(-0.171875, 0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  993. o105.C1 = CFrame.new(-0.171875, -0.6875, 0.171875, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  994. o105.Part0 = o102
  995. o105.Part1 = o104
  996. o106.Name = "tuNggod1"
  997. o106.Parent = o50
  998. o106.PrimaryPart = o114
  999. o107.Name = "Head"
  1000. o107.Parent = o106
  1001. o107.BrickColor = BrickColor.new("Institutional white")
  1002. o107.Position = Vector3.new(188.925903, 2.81211281, 5.8425293)
  1003. o107.Anchored = true
  1004. o107.FormFactor = Enum.FormFactor.Symmetric
  1005. o107.Size = Vector3.new(0.760937333, 0.380468667, 0.380468667)
  1006. o107.CFrame = CFrame.new(188.925903, 2.81211281, 5.8425293, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1007. o107.TopSurface = Enum.SurfaceType.Smooth
  1008. o107.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1009. o107.Position = Vector3.new(188.925903, 2.81211281, 5.8425293)
  1010. o108.Parent = o107
  1011. o108.Scale = Vector3.new(1.25, 1.25, 1.25)
  1012. o113.Name = "face"
  1013. o113.Parent = o107
  1014. o113.Texture = "http://www.roblox.com/asset/?id=7074749"
  1015. o114.Name = "HumanoidRootPart"
  1016. o114.Parent = o106
  1017. o114.Transparency = 1
  1018. o114.Position = Vector3.new(188.925903, 2.2414093, 5.8425293)
  1019. o114.Anchored = true
  1020. o114.CanCollide = false
  1021. o114.FormFactor = Enum.FormFactor.Symmetric
  1022. o114.Size = Vector3.new(0.760937333, 0.760937333, 0.380468667)
  1023. o114.CFrame = CFrame.new(188.925903, 2.2414093, 5.8425293, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1024. o114.BottomSurface = Enum.SurfaceType.Smooth
  1025. o114.TopSurface = Enum.SurfaceType.Smooth
  1026. o114.Position = Vector3.new(188.925903, 2.2414093, 5.8425293)
  1027. o115.Name = "RootJoint"
  1028. o115.Parent = o114
  1029. o115.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1030. o115.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1031. o115.Part0 = o114
  1032. o115.Part1 = o122
  1033. o115.MaxVelocity = 0.10000000149012
  1034. o116.Name = "Left Arm"
  1035. o116.Parent = o106
  1036. o116.BrickColor = BrickColor.new("Institutional white")
  1037. o116.Position = Vector3.new(188.355209, 2.2414093, 5.8425293)
  1038. o116.Rotation = Vector3.new(0, 0, -15)
  1039. o116.Anchored = true
  1040. o116.CanCollide = false
  1041. o116.FormFactor = Enum.FormFactor.Symmetric
  1042. o116.Size = Vector3.new(0.380468667, 0.760937333, 0.380468667)
  1043. o116.CFrame = CFrame.new(188.355209, 2.2414093, 5.8425293, 0.965925872, 0.258818835, 0, -0.258818835, 0.965925872, 0, 0, 0, 1)
  1044. o116.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1045. o116.Position = Vector3.new(188.355209, 2.2414093, 5.8425293)
  1046. o118.Name = "Left Leg"
  1047. o118.Parent = o106
  1048. o118.BrickColor = BrickColor.new("Institutional white")
  1049. o118.Position = Vector3.new(188.735672, 1.48047233, 5.8425293)
  1050. o118.Anchored = true
  1051. o118.CanCollide = false
  1052. o118.FormFactor = Enum.FormFactor.Symmetric
  1053. o118.Size = Vector3.new(0.380468667, 0.760937333, 0.380468667)
  1054. o118.CFrame = CFrame.new(188.735672, 1.48047233, 5.8425293, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1055. o118.BottomSurface = Enum.SurfaceType.Smooth
  1056. o118.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1057. o118.Position = Vector3.new(188.735672, 1.48047233, 5.8425293)
  1058. o119.Name = "Right Arm"
  1059. o119.Parent = o106
  1060. o119.BrickColor = BrickColor.new("Institutional white")
  1061. o119.Position = Vector3.new(189.496613, 2.2414093, 5.8425293)
  1062. o119.Rotation = Vector3.new(0, 0, 15)
  1063. o119.Anchored = true
  1064. o119.CanCollide = false
  1065. o119.FormFactor = Enum.FormFactor.Symmetric
  1066. o119.Size = Vector3.new(0.380468667, 0.760937333, 0.380468667)
  1067. o119.CFrame = CFrame.new(189.496613, 2.2414093, 5.8425293, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)
  1068. o119.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1069. o119.Position = Vector3.new(189.496613, 2.2414093, 5.8425293)
  1070. o121.Name = "Right Leg"
  1071. o121.Parent = o106
  1072. o121.BrickColor = BrickColor.new("Institutional white")
  1073. o121.Position = Vector3.new(189.11615, 1.48047233, 5.8425293)
  1074. o121.Anchored = true
  1075. o121.CanCollide = false
  1076. o121.FormFactor = Enum.FormFactor.Symmetric
  1077. o121.Size = Vector3.new(0.380468667, 0.760937333, 0.380468667)
  1078. o121.CFrame = CFrame.new(189.11615, 1.48047233, 5.8425293, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1079. o121.BottomSurface = Enum.SurfaceType.Smooth
  1080. o121.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1081. o121.Position = Vector3.new(189.11615, 1.48047233, 5.8425293)
  1082. o122.Name = "Torso"
  1083. o122.Parent = o106
  1084. o122.BrickColor = BrickColor.new("Institutional white")
  1085. o122.Position = Vector3.new(188.925903, 2.2414093, 5.8425293)
  1086. o122.Anchored = true
  1087. o122.FormFactor = Enum.FormFactor.Symmetric
  1088. o122.Size = Vector3.new(0.760937333, 0.760937333, 0.380468667)
  1089. o122.CFrame = CFrame.new(188.925903, 2.2414093, 5.8425293, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1090. o122.LeftSurface = Enum.SurfaceType.Weld
  1091. o122.RightSurface = Enum.SurfaceType.Weld
  1092. o122.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1093. o122.Position = Vector3.new(188.925903, 2.2414093, 5.8425293)
  1094. o123.Name = "roblox"
  1095. o123.Parent = o122
  1096. o132.Name = "Right Hip"
  1097. o132.Parent = o122
  1098. o132.C0 = CFrame.new(0.380468667, -0.380468667, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1099. o132.C1 = CFrame.new(0.190234333, 0.380468667, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1100. o132.Part0 = o122
  1101. o132.Part1 = o121
  1102. o132.MaxVelocity = 0.10000000149012
  1103. o133.Name = "Neck"
  1104. o133.Parent = o122
  1105. o133.C0 = CFrame.new(0, 0.380468667, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1106. o133.C1 = CFrame.new(0, -0.190234333, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1107. o133.Part0 = o122
  1108. o133.Part1 = o107
  1109. o133.MaxVelocity = 0.10000000149012
  1110. o134.Name = "Left Hip"
  1111. o134.Parent = o122
  1112. o134.C0 = CFrame.new(-0.380468667, -0.380468667, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1113. o134.C1 = CFrame.new(-0.190234333, 0.380468667, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1114. o134.Part0 = o122
  1115. o134.Part1 = o118
  1116. o134.MaxVelocity = 0.10000000149012
  1117. o135.Parent = o106
  1118. o135.RightLeg = o121
  1119. o135.LeftLeg = o118
  1120. o135.Torso = o114
  1121. o137.Name = "Handle"
  1122. o137.Parent = mas
  1123. o137.Position = Vector3.new(188.925903, 2.95288563, 5.83081055)
  1124. o137.Anchored = true
  1125. o137.CanCollide = false
  1126. o137.Locked = true
  1127. o137.FormFactor = Enum.FormFactor.Symmetric
  1128. o137.Size = Vector3.new(0.391882718, 0.380468667, 0.635382652)
  1129. o137.CFrame = CFrame.new(188.925903, 2.95288563, 5.83081055, 1, -7.87137555e-09, 0, 7.87137555e-09, 1, 4.1444221e-16, -3.26223034e-24, -4.1444221e-16, 1)
  1130. o137.BottomSurface = Enum.SurfaceType.Smooth
  1131. o137.TopSurface = Enum.SurfaceType.Smooth
  1132. o137.Position = Vector3.new(188.925903, 2.95288563, 5.83081055)
  1133. o138.Parent = o137
  1134. o138.MeshId = "http://www.roblox.com/asset/?id=319337852"
  1135. o138.Scale = Vector3.new(0.209257737, 0.209257737, 0.209257737)
  1136. o138.TextureId = "http://www.roblox.com/asset/?id=376189070"
  1137. o138.MeshType = Enum.MeshType.FileMesh
  1138. o140.Name = "AccessoryWeld"
  1139. o140.Parent = o137
  1140. o140.C0 = CFrame.new(3.29389982e-09, 0.0875077993, 0.0116909472, 1, 7.87137555e-09, -3.26223034e-24, -7.87137555e-09, 1, -4.1444221e-16, 0, 4.1444221e-16, 1)
  1141. o140.C1 = CFrame.new(0, 0.228281185, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1142. o140.Part0 = o137
  1143. o140.Part1 = o107
  1144. o142.Parent = o106
  1145. o142.HeadColor = BrickColor.new("Institutional white")
  1146. o142.LeftArmColor = BrickColor.new("Institutional white")
  1147. o142.LeftLegColor = BrickColor.new("Institutional white")
  1148. o142.RightArmColor = BrickColor.new("Institutional white")
  1149. o142.RightLegColor = BrickColor.new("Institutional white")
  1150. o142.TorsoColor = BrickColor.new("Institutional white")
  1151. o143.Name = "Shirt"
  1152. o143.Parent = o106
  1153. o143.ShirtTemplate = "http://www.roblox.com/asset/?id=3043830787"
  1154. o144.Name = "Pants"
  1155. o144.Parent = o106
  1156. o144.PantsTemplate = "http://www.roblox.com/asset/?id=3029787064"
  1157. o145.Name = "New house"
  1158. o145.Parent = o1
  1159. o146.Parent = o145
  1160. o146.Material = Enum.Material.WoodPlanks
  1161. o146.BrickColor = BrickColor.new("Dark orange")
  1162. o146.Position = Vector3.new(159, 20, -33.5)
  1163. o146.Anchored = true
  1164. o146.Size = Vector3.new(110, 38, 1)
  1165. o146.CFrame = CFrame.new(159, 20, -33.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1166. o146.BottomSurface = Enum.SurfaceType.Smooth
  1167. o146.TopSurface = Enum.SurfaceType.Smooth
  1168. o146.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1169. o146.Position = Vector3.new(159, 20, -33.5)
  1170. o147.Parent = o145
  1171. o147.Material = Enum.Material.WoodPlanks
  1172. o147.BrickColor = BrickColor.new("Dark orange")
  1173. o147.Position = Vector3.new(104.5, 27, 14)
  1174. o147.Rotation = Vector3.new(0, 90, 0)
  1175. o147.Anchored = true
  1176. o147.Size = Vector3.new(20, 24, 1)
  1177. o147.CFrame = CFrame.new(104.5, 27, 14, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1178. o147.BottomSurface = Enum.SurfaceType.Smooth
  1179. o147.TopSurface = Enum.SurfaceType.Smooth
  1180. o147.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1181. o147.Position = Vector3.new(104.5, 27, 14)
  1182. o148.Parent = o147
  1183. o148.C0 = CFrame.new(19.5, -19, 0.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
  1184. o148.C1 = CFrame.new(-10, -26, 0.5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1185. o148.Part0 = o226
  1186. o148.Part1 = o147
  1187. o149.Parent = o145
  1188. o149.Material = Enum.Material.WoodPlanks
  1189. o149.BrickColor = BrickColor.new("Dark orange")
  1190. o149.Position = Vector3.new(159, 20, 63.5)
  1191. o149.Anchored = true
  1192. o149.Size = Vector3.new(110, 38, 1)
  1193. o149.CFrame = CFrame.new(159, 20, 63.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1194. o149.BottomSurface = Enum.SurfaceType.Smooth
  1195. o149.TopSurface = Enum.SurfaceType.Smooth
  1196. o149.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1197. o149.Position = Vector3.new(159, 20, 63.5)
  1198. o150.Parent = o145
  1199. o150.Material = Enum.Material.WoodPlanks
  1200. o150.BrickColor = BrickColor.new("Dark orange")
  1201. o150.Position = Vector3.new(159, 0.5, 15)
  1202. o150.Anchored = true
  1203. o150.Size = Vector3.new(110, 1, 98)
  1204. o150.CFrame = CFrame.new(159, 0.5, 15, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1205. o150.BottomSurface = Enum.SurfaceType.Smooth
  1206. o150.TopSurface = Enum.SurfaceType.Smooth
  1207. o150.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1208. o150.Position = Vector3.new(159, 0.5, 15)
  1209. o151.Parent = o150
  1210. o151.C0 = CFrame.new(0.5, -7.20000029, 10.5, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  1211. o151.C1 = CFrame.new(-53.4356613, 0.500704765, 9.35669136, 1, -9.62472342e-08, -1.37147617e-05, -1.37147581e-05, 3.10043251e-05, -1, 9.66724514e-08, 1, 3.10043251e-05)
  1212. o151.Part0 = o161
  1213. o151.Part1 = o150
  1214. o152.Parent = o150
  1215. o152.C0 = CFrame.new(19.5, -19, 0.5, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  1216. o152.C1 = CFrame.new(-54, 0.5, 9, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  1217. o152.Part0 = o226
  1218. o152.Part1 = o150
  1219. o153.Parent = o150
  1220. o153.C0 = CFrame.new(49, -19.5, -0.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1221. o153.C1 = CFrame.new(55, -0.5, -49, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1222. o153.Part0 = o157
  1223. o153.Part1 = o150
  1224. o154.Parent = o150
  1225. o154.C0 = CFrame.new(18.5, -19, 0.5, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  1226. o154.C1 = CFrame.new(-54, 0.5, -48, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  1227. o154.Part0 = o223
  1228. o154.Part1 = o150
  1229. o155.Parent = o150
  1230. o155.C0 = CFrame.new(55, -19, 0.5, 0.99999994, 0, 0, 0, 0, -0.99999994, -0, 1, 0)
  1231. o155.C1 = CFrame.new(55, 0.5, -48, 0.99999994, 0, 0, 0, 0, -0.99999994, 0, 1, 0)
  1232. o155.Part0 = o146
  1233. o155.Part1 = o150
  1234. o156.Parent = o150
  1235. o156.C0 = CFrame.new(55, -19, 0.5, 0.99999994, 0, 0, 0, 0, -0.99999994, -0, 1, 0)
  1236. o156.C1 = CFrame.new(55, 0.5, 49, 0.99999994, 0, 0, 0, 0, -0.99999994, 0, 1, 0)
  1237. o156.Part0 = o149
  1238. o156.Part1 = o150
  1239. o157.Parent = o145
  1240. o157.Material = Enum.Material.WoodPlanks
  1241. o157.BrickColor = BrickColor.new("Dark orange")
  1242. o157.Position = Vector3.new(214.5, 19.5, 15)
  1243. o157.Rotation = Vector3.new(0, 90, 0)
  1244. o157.Anchored = true
  1245. o157.Size = Vector3.new(98, 39, 1)
  1246. o157.CFrame = CFrame.new(214.5, 19.5, 15, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1247. o157.BottomSurface = Enum.SurfaceType.Smooth
  1248. o157.TopSurface = Enum.SurfaceType.Smooth
  1249. o157.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1250. o157.Position = Vector3.new(214.5, 19.5, 15)
  1251. o158.Parent = o157
  1252. o158.C0 = CFrame.new(55, -19, 0.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
  1253. o158.C1 = CFrame.new(48, -18.5, -0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1254. o158.Part0 = o146
  1255. o158.Part1 = o157
  1256. o159.Parent = o157
  1257. o159.C0 = CFrame.new(55, -19, 0.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
  1258. o159.C1 = CFrame.new(-49, -18.5, -0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1259. o159.Part0 = o149
  1260. o159.Part1 = o157
  1261. o160.Name = "Code door"
  1262. o160.Parent = o145
  1263. o161.Name = "Door"
  1264. o161.Parent = o160
  1265. o161.Material = Enum.Material.Fabric
  1266. o161.BrickColor = BrickColor.new("Dark stone grey")
  1267. o161.Position = Vector3.new(105.064438, 8.20038605, 13.8564682)
  1268. o161.Anchored = true
  1269. o161.Size = Vector3.new(1, 14.4000006, 21)
  1270. o161.CFrame = CFrame.new(105.064438, 8.20038605, 13.8564682, 1, 1.37147617e-05, -9.62472342e-08, -1.37147581e-05, 1, 3.10043251e-05, 9.66724514e-08, -3.10043251e-05, 1)
  1271. o161.BackSurface = Enum.SurfaceType.Weld
  1272. o161.BottomSurface = Enum.SurfaceType.Weld
  1273. o161.FrontSurface = Enum.SurfaceType.Weld
  1274. o161.LeftSurface = Enum.SurfaceType.Weld
  1275. o161.RightSurface = Enum.SurfaceType.Weld
  1276. o161.TopSurface = Enum.SurfaceType.Weld
  1277. o161.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1278. o161.Position = Vector3.new(105.064438, 8.20038605, 13.8564682)
  1279. o162.Parent = o161
  1280. o163.Name = "KeyPad"
  1281. o163.Parent = o160
  1282. o164.Name = "B9"
  1283. o164.Parent = o163
  1284. o164.BrickColor = BrickColor.new("Institutional white")
  1285. o164.Position = Vector3.new(103.36438, 4.69985676, 26.8565941)
  1286. o164.Rotation = Vector3.new(-90, 0, 90)
  1287. o164.Anchored = true
  1288. o164.Size = Vector3.new(1, 0.400000006, 1)
  1289. o164.CFrame = CFrame.new(103.36438, 4.69985676, 26.8565941, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1290. o164.BottomSurface = Enum.SurfaceType.Weld
  1291. o164.TopSurface = Enum.SurfaceType.Smooth
  1292. o164.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1293. o164.Position = Vector3.new(103.36438, 4.69985676, 26.8565941)
  1294. o165.Parent = o164
  1295. o165.MaxActivationDistance = 20
  1296. o166.Parent = o164
  1297. o166.Texture = "http://www.roblox.com/asset/?id=2761971"
  1298. o166.Face = Enum.NormalId.Top
  1299. o167.Parent = o164
  1300. o168.Name = "B7"
  1301. o168.Parent = o163
  1302. o168.BrickColor = BrickColor.new("Institutional white")
  1303. o168.Position = Vector3.new(103.364388, 4.69982529, 24.8565903)
  1304. o168.Rotation = Vector3.new(-90, 0, 90)
  1305. o168.Anchored = true
  1306. o168.Size = Vector3.new(1, 0.400000006, 1)
  1307. o168.CFrame = CFrame.new(103.364388, 4.69982529, 24.8565903, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1308. o168.BottomSurface = Enum.SurfaceType.Weld
  1309. o168.TopSurface = Enum.SurfaceType.Smooth
  1310. o168.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1311. o168.Position = Vector3.new(103.364388, 4.69982529, 24.8565903)
  1312. o169.Parent = o168
  1313. o169.MaxActivationDistance = 20
  1314. o170.Parent = o168
  1315. o170.Texture = "http://www.roblox.com/asset/?id=2761956"
  1316. o170.Face = Enum.NormalId.Top
  1317. o171.Parent = o168
  1318. o172.Name = "B8"
  1319. o172.Parent = o163
  1320. o172.BrickColor = BrickColor.new("Institutional white")
  1321. o172.Position = Vector3.new(103.364388, 4.69984293, 25.8565941)
  1322. o172.Rotation = Vector3.new(-90, 0, 90)
  1323. o172.Anchored = true
  1324. o172.Size = Vector3.new(1, 0.400000006, 1)
  1325. o172.CFrame = CFrame.new(103.364388, 4.69984293, 25.8565941, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1326. o172.BottomSurface = Enum.SurfaceType.Weld
  1327. o172.TopSurface = Enum.SurfaceType.Smooth
  1328. o172.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1329. o172.Position = Vector3.new(103.364388, 4.69984293, 25.8565941)
  1330. o173.Parent = o172
  1331. o173.MaxActivationDistance = 20
  1332. o174.Parent = o172
  1333. o174.Texture = "http://www.roblox.com/asset/?id=2761961"
  1334. o174.Face = Enum.NormalId.Top
  1335. o175.Parent = o172
  1336. o176.Name = "B6"
  1337. o176.Parent = o163
  1338. o176.BrickColor = BrickColor.new("Institutional white")
  1339. o176.Position = Vector3.new(103.364395, 5.69989204, 26.8565598)
  1340. o176.Rotation = Vector3.new(-90, 0, 90)
  1341. o176.Anchored = true
  1342. o176.Size = Vector3.new(1, 0.400000006, 1)
  1343. o176.CFrame = CFrame.new(103.364395, 5.69989204, 26.8565598, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1344. o176.BottomSurface = Enum.SurfaceType.Weld
  1345. o176.TopSurface = Enum.SurfaceType.Smooth
  1346. o176.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1347. o176.Position = Vector3.new(103.364395, 5.69989204, 26.8565598)
  1348. o177.Parent = o176
  1349. o177.MaxActivationDistance = 20
  1350. o178.Parent = o176
  1351. o178.Texture = "http://www.roblox.com/asset/?id=2761948"
  1352. o178.Face = Enum.NormalId.Top
  1353. o179.Parent = o176
  1354. o180.Name = "B5"
  1355. o180.Parent = o163
  1356. o180.BrickColor = BrickColor.new("Institutional white")
  1357. o180.Position = Vector3.new(103.364395, 5.69987583, 25.8565598)
  1358. o180.Rotation = Vector3.new(-90, 0, 90)
  1359. o180.Anchored = true
  1360. o180.Size = Vector3.new(1, 0.400000006, 1)
  1361. o180.CFrame = CFrame.new(103.364395, 5.69987583, 25.8565598, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1362. o180.BottomSurface = Enum.SurfaceType.Weld
  1363. o180.TopSurface = Enum.SurfaceType.Smooth
  1364. o180.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1365. o180.Position = Vector3.new(103.364395, 5.69987583, 25.8565598)
  1366. o181.Parent = o180
  1367. o181.MaxActivationDistance = 20
  1368. o182.Parent = o180
  1369. o182.Texture = "http://www.roblox.com/asset/?id=2761943"
  1370. o182.Face = Enum.NormalId.Top
  1371. o183.Parent = o180
  1372. o184.Name = "B4"
  1373. o184.Parent = o163
  1374. o184.BrickColor = BrickColor.new("Institutional white")
  1375. o184.Position = Vector3.new(103.364395, 5.69985771, 24.8565598)
  1376. o184.Rotation = Vector3.new(-90, 0, 90)
  1377. o184.Anchored = true
  1378. o184.Size = Vector3.new(1, 0.400000006, 1)
  1379. o184.CFrame = CFrame.new(103.364395, 5.69985771, 24.8565598, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1380. o184.BottomSurface = Enum.SurfaceType.Weld
  1381. o184.TopSurface = Enum.SurfaceType.Smooth
  1382. o184.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1383. o184.Position = Vector3.new(103.364395, 5.69985771, 24.8565598)
  1384. o185.Parent = o184
  1385. o185.MaxActivationDistance = 10
  1386. o186.Parent = o184
  1387. o186.Texture = "http://www.roblox.com/asset/?id=2761938"
  1388. o186.Face = Enum.NormalId.Top
  1389. o187.Parent = o184
  1390. o188.Name = "B3"
  1391. o188.Parent = o163
  1392. o188.BrickColor = BrickColor.new("Institutional white")
  1393. o188.Position = Vector3.new(103.364403, 6.69989109, 26.8565273)
  1394. o188.Rotation = Vector3.new(-90, 0, 90)
  1395. o188.Anchored = true
  1396. o188.Size = Vector3.new(1, 0.400000006, 1)
  1397. o188.CFrame = CFrame.new(103.364403, 6.69989109, 26.8565273, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1398. o188.BottomSurface = Enum.SurfaceType.Weld
  1399. o188.TopSurface = Enum.SurfaceType.Smooth
  1400. o188.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1401. o188.Position = Vector3.new(103.364403, 6.69989109, 26.8565273)
  1402. o189.Parent = o188
  1403. o189.MaxActivationDistance = 20
  1404. o190.Parent = o188
  1405. o190.Texture = "http://www.roblox.com/asset/?id=2761927"
  1406. o190.Face = Enum.NormalId.Top
  1407. o191.Parent = o188
  1408. o192.Name = "B1"
  1409. o192.Parent = o163
  1410. o192.BrickColor = BrickColor.new("Institutional white")
  1411. o192.Position = Vector3.new(103.364418, 6.69876957, 24.8565044)
  1412. o192.Rotation = Vector3.new(-90, 0, -90)
  1413. o192.Anchored = true
  1414. o192.Size = Vector3.new(1, 0.400000006, 1)
  1415. o192.CFrame = CFrame.new(103.364418, 6.69876957, 24.8565044, -5.5435585e-08, 1, 1.38625483e-05, 1.78408518e-05, -1.38625473e-05, 1, 1, 5.56829036e-08, -1.78408518e-05)
  1416. o192.BottomSurface = Enum.SurfaceType.Smooth
  1417. o192.TopSurface = Enum.SurfaceType.Weld
  1418. o192.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1419. o192.Position = Vector3.new(103.364418, 6.69876957, 24.8565044)
  1420. o193.Parent = o192
  1421. o193.MaxActivationDistance = 20
  1422. o194.Parent = o192
  1423. o194.Texture = "http://www.roblox.com/asset/?id=2761913"
  1424. o194.Face = Enum.NormalId.Bottom
  1425. o195.Parent = o192
  1426. o196.Name = "B0"
  1427. o196.Parent = o163
  1428. o196.BrickColor = BrickColor.new("Institutional white")
  1429. o196.Position = Vector3.new(103.364372, 3.69981575, 25.8566208)
  1430. o196.Rotation = Vector3.new(-90, 0, 90)
  1431. o196.Anchored = true
  1432. o196.Size = Vector3.new(1, 0.400000006, 1)
  1433. o196.CFrame = CFrame.new(103.364372, 3.69981575, 25.8566208, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1434. o196.BottomSurface = Enum.SurfaceType.Weld
  1435. o196.TopSurface = Enum.SurfaceType.Smooth
  1436. o196.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1437. o196.Position = Vector3.new(103.364372, 3.69981575, 25.8566208)
  1438. o197.Parent = o196
  1439. o197.MaxActivationDistance = 20
  1440. o198.Parent = o196
  1441. o198.Texture = "http://www.roblox.com/asset/?id=2761903"
  1442. o198.Face = Enum.NormalId.Top
  1443. o199.Parent = o196
  1444. o200.Name = "Enter"
  1445. o200.Parent = o163
  1446. o200.BrickColor = BrickColor.new("Lime green")
  1447. o200.Position = Vector3.new(103.364372, 3.69979787, 24.8566208)
  1448. o200.Rotation = Vector3.new(-90, 0, 90)
  1449. o200.Anchored = true
  1450. o200.Size = Vector3.new(1, 0.400000006, 1)
  1451. o200.CFrame = CFrame.new(103.364372, 3.69979787, 24.8566208, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1452. o200.BottomSurface = Enum.SurfaceType.Weld
  1453. o200.TopSurface = Enum.SurfaceType.Smooth
  1454. o200.Color = Color3.new(0, 1, 0)
  1455. o200.Position = Vector3.new(103.364372, 3.69979787, 24.8566208)
  1456. o201.Parent = o200
  1457. o201.MaxActivationDistance = 20
  1458. o202.Parent = o200
  1459. o202.Texture = "http://www.roblox.com/asset/?id=2761987"
  1460. o202.Face = Enum.NormalId.Top
  1461. o203.Parent = o200
  1462. o204.Name = "Clear"
  1463. o204.Parent = o163
  1464. o204.BrickColor = BrickColor.new("Really red")
  1465. o204.Position = Vector3.new(103.364174, 3.69647813, 26.8564072)
  1466. o204.Rotation = Vector3.new(-90, 0, 90)
  1467. o204.Anchored = true
  1468. o204.Size = Vector3.new(1, 0.400000006, 1)
  1469. o204.CFrame = CFrame.new(103.364174, 3.69647813, 26.8564072, 2.38539641e-08, -1, 2.49300065e-05, -5.80889446e-06, 2.49300065e-05, 1, -1, -2.39987799e-08, -5.80889355e-06)
  1470. o204.BottomSurface = Enum.SurfaceType.Weld
  1471. o204.TopSurface = Enum.SurfaceType.Smooth
  1472. o204.Color = Color3.new(1, 0, 0)
  1473. o204.Position = Vector3.new(103.364174, 3.69647813, 26.8564072)
  1474. o205.Parent = o204
  1475. o205.MaxActivationDistance = 20
  1476. o206.Parent = o204
  1477. o206.Texture = "http://www.roblox.com/asset/?id=2761996"
  1478. o206.Face = Enum.NormalId.Top
  1479. o207.Parent = o204
  1480. o208.Name = "B2"
  1481. o208.Parent = o163
  1482. o208.BrickColor = BrickColor.new("Institutional white")
  1483. o208.Position = Vector3.new(103.364403, 6.69987297, 25.8565273)
  1484. o208.Rotation = Vector3.new(-90, 0, 90)
  1485. o208.Anchored = true
  1486. o208.Size = Vector3.new(1, 0.400000006, 1)
  1487. o208.CFrame = CFrame.new(103.364403, 6.69987297, 25.8565273, 5.64723628e-08, -1, 1.37147599e-05, -1.81749492e-05, 1.3714759e-05, 1, -1, -5.67216283e-08, -1.81749492e-05)
  1488. o208.BottomSurface = Enum.SurfaceType.Weld
  1489. o208.TopSurface = Enum.SurfaceType.Smooth
  1490. o208.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1491. o208.Position = Vector3.new(103.364403, 6.69987297, 25.8565273)
  1492. o209.Parent = o208
  1493. o209.MaxActivationDistance = 20
  1494. o210.Parent = o208
  1495. o210.Texture = "http://www.roblox.com/asset/?id=2761922"
  1496. o210.Face = Enum.NormalId.Top
  1497. o211.Parent = o208
  1498. o212.Name = "MasterScript"
  1499. o212.Parent = o163
  1500. table.insert(cors,coroutine.create(function()
  1501. wait()
  1502. runDummyScript(function()
  1503. Code = "9281" --change To any numbers You like
  1504. Input = ""
  1505.  
  1506.  
  1507. --This Is for my buddy siros
  1508.  
  1509. --created by
  1510. ------------------------------------------
  1511. --Clear And Enter
  1512.  
  1513. function Clear()
  1514. print("Cleared")
  1515. Input = ""
  1516. end
  1517.  
  1518. script.Parent.Clear.ClickDetector.MouseClick:connect(Clear)
  1519.  
  1520.  
  1521.  
  1522.  
  1523. function Enter()
  1524. if Input == Code then
  1525. print("Entered")
  1526. Input = ""
  1527.  
  1528. local door = script.Parent.Parent.Door
  1529.  
  1530. door.CanCollide = false
  1531. door.Transparency = door.Transparency + 0.1
  1532. wait(0.1)
  1533. door.Transparency = door.Transparency + 0.1
  1534. wait(0.1)
  1535. door.Transparency = door.Transparency + 0.1
  1536. wait(0.1)
  1537. door.Transparency = door.Transparency + 0.1
  1538. wait(0.1)
  1539. door.Transparency = door.Transparency + 0.1
  1540. wait(0.1)
  1541. door.Transparency = door.Transparency + 0.1
  1542. wait(0.1)
  1543. door.Transparency = door.Transparency + 0.1
  1544. wait(0.1)
  1545. door.Transparency = 0.8
  1546. wait(3)--
  1547. door.Transparency = door.Transparency - 0.1
  1548. wait(0.1)
  1549. door.Transparency = door.Transparency - 0.1
  1550. wait(0.1)
  1551. door.Transparency = door.Transparency - 0.1
  1552. wait(0.1)
  1553. door.Transparency = door.Transparency - 0.1
  1554. wait(0.1)
  1555. door.Transparency = door.Transparency - 0.1
  1556. wait(0.1)
  1557. door.Transparency = door.Transparency - 0.1
  1558. wait(0.1)
  1559. door.Transparency = door.Transparency - 0.1
  1560. wait(0.1)
  1561. door.Transparency = 0
  1562. door.CanCollide = true
  1563.  
  1564.  
  1565.  
  1566. return end
  1567. Input = ""
  1568. print("Wrong Code")
  1569. end
  1570.  
  1571.  
  1572.  
  1573.  
  1574. script.Parent.Enter.ClickDetector.MouseClick:connect(Enter)
  1575.  
  1576. ------------------------------------------
  1577. --Digets
  1578.  
  1579.  
  1580. function Click0()
  1581. Input = Input..0
  1582. print("0")
  1583. script.Parent.B0.Decal.Texture = "http://www.roblox.com/asset/?id=2767674"
  1584. wait(0.1)
  1585. script.Parent.B0.Decal.Texture = "http://www.roblox.com/asset/?id=2761903"
  1586. end
  1587.  
  1588. script.Parent.B0.ClickDetector.MouseClick:connect(Click0)
  1589.  
  1590. function Click1()
  1591. Input = Input..1
  1592. print("1")
  1593. script.Parent.B1.Decal.Texture = "http://www.roblox.com/asset/?id=2767677"
  1594. wait(0.1)
  1595. script.Parent.B1.Decal.Texture = "http://www.roblox.com/asset/?id=2761913"
  1596. end
  1597.  
  1598. script.Parent.B1.ClickDetector.MouseClick:connect(Click1)
  1599.  
  1600. function Click2()
  1601. Input = Input..2
  1602. print("2")
  1603. script.Parent.B2.Decal.Texture = "http://www.roblox.com/asset/?id=2767680"
  1604. wait(0.1)
  1605. script.Parent.B2.Decal.Texture = "http://www.roblox.com/asset/?id=2761922"
  1606. end
  1607.  
  1608. script.Parent.B2.ClickDetector.MouseClick:connect(Click2)
  1609.  
  1610. function Click3()
  1611. Input = Input..3
  1612. print("3")
  1613. script.Parent.B3.Decal.Texture = "http://www.roblox.com/asset/?id=2767686"
  1614. wait(0.1)
  1615. script.Parent.B3.Decal.Texture = "http://www.roblox.com/asset/?id=2761927"
  1616. end
  1617.  
  1618. script.Parent.B3.ClickDetector.MouseClick:connect(Click3)
  1619.  
  1620. function Click4()
  1621. Input = Input..4
  1622. print("4")
  1623. script.Parent.B4.Decal.Texture = "http://www.roblox.com/asset/?id=2767693"
  1624. wait(0.1)
  1625. script.Parent.B4.Decal.Texture = "http://www.roblox.com/asset/?id=2761938"
  1626. end
  1627.  
  1628. script.Parent.B4.ClickDetector.MouseClick:connect(Click4)
  1629.  
  1630. function Click5()
  1631. Input = Input..5
  1632. print("5")
  1633. script.Parent.B5.Decal.Texture = "http://www.roblox.com/asset/?id=2767695"
  1634. wait(0.1)
  1635. script.Parent.B5.Decal.Texture = "http://www.roblox.com/asset/?id=2761943"
  1636. end
  1637.  
  1638. script.Parent.B5.ClickDetector.MouseClick:connect(Click5)
  1639.  
  1640. function Click6()
  1641. Input = Input..6
  1642. print("6")
  1643. script.Parent.B6.Decal.Texture = "http://www.roblox.com/asset/?id=2767699"
  1644. wait(0.1)
  1645. script.Parent.B6.Decal.Texture = "http://www.roblox.com/asset/?id=2761948"
  1646. end
  1647.  
  1648. script.Parent.B6.ClickDetector.MouseClick:connect(Click6)
  1649.  
  1650. function Click7()
  1651. Input = Input..7
  1652. print("7")
  1653. script.Parent.B7.Decal.Texture = "http://www.roblox.com/asset/?id=2767701"
  1654. wait(0.1)
  1655. script.Parent.B7.Decal.Texture = "http://www.roblox.com/asset/?id=2761956"
  1656. end
  1657.  
  1658. script.Parent.B7.ClickDetector.MouseClick:connect(Click7)
  1659.  
  1660. function Click8()
  1661. Input = Input..8
  1662. print("8")
  1663. script.Parent.B8.Decal.Texture = "http://www.roblox.com/asset/?id=2767707"
  1664. wait(0.1)
  1665. script.Parent.B8.Decal.Texture = "http://www.roblox.com/asset/?id=2761961"
  1666. end
  1667.  
  1668. script.Parent.B8.ClickDetector.MouseClick:connect(Click8)
  1669.  
  1670. function Click9()
  1671. Input = Input..9
  1672. print("9")
  1673. script.Parent.B9.Decal.Texture = "http://www.roblox.com/asset/?id=2767714"
  1674. wait(0.1)
  1675. script.Parent.B9.Decal.Texture = "http://www.roblox.com/asset/?id=2761971"
  1676. end
  1677.  
  1678. script.Parent.B9.ClickDetector.MouseClick:connect(Click9)
  1679.  
  1680.  
  1681.  
  1682.  
  1683.  
  1684.  
  1685.  
  1686.  
  1687.  
  1688.  
  1689.  
  1690.  
  1691.  
  1692.  
  1693.  
  1694.  
  1695. end,o212)
  1696. end))
  1697. o213.Parent = o160
  1698. o214.Parent = o213
  1699. o214.Material = Enum.Material.SmoothPlastic
  1700. o214.BrickColor = BrickColor.new("Dark stone grey")
  1701. o214.Position = Vector3.new(113.5, 1.5, 30.5)
  1702. o214.Anchored = true
  1703. o214.Size = Vector3.new(5, 1, 5)
  1704. o214.CFrame = CFrame.new(113.5, 1.5, 30.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1705. o214.BottomSurface = Enum.SurfaceType.Smooth
  1706. o214.TopSurface = Enum.SurfaceType.Smooth
  1707. o214.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1708. o214.Position = Vector3.new(113.5, 1.5, 30.5)
  1709. o215.Parent = o214
  1710. o215.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1711. o215.C1 = CFrame.new(-9.5, -0.5, 33.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1712. o215.Part0 = o150
  1713. o215.Part1 = o214
  1714. o216.Parent = o213
  1715. o216.Material = Enum.Material.SmoothPlastic
  1716. o216.BrickColor = BrickColor.new("Fossil")
  1717. o216.Position = Vector3.new(113.5, 3, 30.5)
  1718. o216.Anchored = true
  1719. o216.Size = Vector3.new(1, 2, 1)
  1720. o216.CFrame = CFrame.new(113.5, 3, 30.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1721. o216.BottomSurface = Enum.SurfaceType.Smooth
  1722. o216.TopSurface = Enum.SurfaceType.Smooth
  1723. o216.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1724. o216.Position = Vector3.new(113.5, 3, 30.5)
  1725. o217.Parent = o216
  1726. o217.C0 = CFrame.new(-2.5, 0.5, 2.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1727. o217.C1 = CFrame.new(-2.5, -1, 2.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1728. o217.Part0 = o214
  1729. o217.Part1 = o216
  1730. o218.Parent = o213
  1731. o218.Material = Enum.Material.DiamondPlate
  1732. o218.BrickColor = BrickColor.new("Bright red")
  1733. o218.Position = Vector3.new(113.5, 4.5, 30.5)
  1734. o218.Anchored = true
  1735. o218.Size = Vector3.new(1, 1, 1)
  1736. o218.CFrame = CFrame.new(113.5, 4.5, 30.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1737. o218.BottomSurface = Enum.SurfaceType.Smooth
  1738. o218.TopSurface = Enum.SurfaceType.Smooth
  1739. o218.Color = Color3.new(0.768627, 0.156863, 0.109804)
  1740. o218.Position = Vector3.new(113.5, 4.5, 30.5)
  1741. o219.Parent = o218
  1742. table.insert(cors,coroutine.create(function()
  1743. wait()
  1744. runDummyScript(function()
  1745. door = script.Parent.Parent.Door
  1746.  
  1747. function clicked()
  1748. if script.Value.Value == 0 then
  1749. print("Opened")
  1750. script.Value.Value = 1
  1751. local door = script.Parent.Parent.Door
  1752.  
  1753. door.CanCollide = false
  1754. door.Transparency = door.Transparency + 0.1
  1755. wait(0.1)
  1756. door.Transparency = door.Transparency + 0.1
  1757. wait(0.1)
  1758. door.Transparency = door.Transparency + 0.1
  1759. wait(0.1)
  1760. door.Transparency = door.Transparency + 0.1
  1761. wait(0.1)
  1762. door.Transparency = door.Transparency + 0.1
  1763. wait(0.1)
  1764. door.Transparency = door.Transparency + 0.1
  1765. wait(0.1)
  1766. door.Transparency = door.Transparency + 0.1
  1767. wait(0.1)
  1768. door.Transparency = 0.8
  1769. wait(3)--
  1770. door.Transparency = door.Transparency - 0.1
  1771. wait(0.1)
  1772. door.Transparency = door.Transparency - 0.1
  1773. wait(0.1)
  1774. door.Transparency = door.Transparency - 0.1
  1775. wait(0.1)
  1776. door.Transparency = door.Transparency - 0.1
  1777. wait(0.1)
  1778. door.Transparency = door.Transparency - 0.1
  1779. wait(0.1)
  1780. door.Transparency = door.Transparency - 0.1
  1781. wait(0.1)
  1782. door.Transparency = door.Transparency - 0.1
  1783. wait(0.1)
  1784. door.Transparency = 0
  1785. door.CanCollide = true
  1786. script.Value.Value = 0
  1787. end
  1788. end
  1789.  
  1790.  
  1791. script.Parent.ClickDetector.MouseClick:connect(clicked)
  1792. end,o219)
  1793. end))
  1794. o220.Parent = o219
  1795. o221.Parent = o218
  1796. o221.MaxActivationDistance = 5
  1797. o222.Parent = o218
  1798. o222.C0 = CFrame.new(-0.5, 1, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1799. o222.C1 = CFrame.new(-0.5, -0.5, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1800. o222.Part0 = o216
  1801. o222.Part1 = o218
  1802. o223.Parent = o145
  1803. o223.Material = Enum.Material.WoodPlanks
  1804. o223.BrickColor = BrickColor.new("Dark orange")
  1805. o223.Position = Vector3.new(104.5, 20, -14.5)
  1806. o223.Rotation = Vector3.new(0, 90, 0)
  1807. o223.Anchored = true
  1808. o223.Size = Vector3.new(37, 38, 1)
  1809. o223.CFrame = CFrame.new(104.5, 20, -14.5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1810. o223.BottomSurface = Enum.SurfaceType.Smooth
  1811. o223.TopSurface = Enum.SurfaceType.Smooth
  1812. o223.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1813. o223.Position = Vector3.new(104.5, 20, -14.5)
  1814. o224.Parent = o223
  1815. o224.C0 = CFrame.new(-55, -19, 0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1816. o224.C1 = CFrame.new(18.5, -19, -0.5, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1817. o224.Part0 = o146
  1818. o224.Part1 = o223
  1819. o225.Parent = o223
  1820. o225.C0 = CFrame.new(10, -12, 0.5, -0, 0, 1, 0, 1, 0, -1, 0, -0)
  1821. o225.C1 = CFrame.new(-18.5, -5, 0.5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1822. o225.Part0 = o147
  1823. o225.Part1 = o223
  1824. o226.Parent = o145
  1825. o226.Material = Enum.Material.WoodPlanks
  1826. o226.BrickColor = BrickColor.new("Dark orange")
  1827. o226.Position = Vector3.new(104.5, 20, 43.5)
  1828. o226.Rotation = Vector3.new(0, 90, 0)
  1829. o226.Anchored = true
  1830. o226.Size = Vector3.new(39, 38, 1)
  1831. o226.CFrame = CFrame.new(104.5, 20, 43.5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1832. o226.BottomSurface = Enum.SurfaceType.Smooth
  1833. o226.TopSurface = Enum.SurfaceType.Smooth
  1834. o226.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1835. o226.Position = Vector3.new(104.5, 20, 43.5)
  1836. o227.Parent = o226
  1837. o227.C0 = CFrame.new(55, -19, -0.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1838. o227.C1 = CFrame.new(-19.5, -19, 109.5, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1839. o227.Part0 = o149
  1840. o227.Part1 = o226
  1841. o228.Name = "Fireplace"
  1842. o228.Parent = o145
  1843. o228.PrimaryPart = o251
  1844. o229.Parent = o228
  1845. o229.BrickColor = BrickColor.new("Dark orange")
  1846. o229.Transparency = 1
  1847. o229.Position = Vector3.new(139.204147, 13.1000185, 60.6887054)
  1848. o229.Rotation = Vector3.new(0, -90, 0)
  1849. o229.Anchored = true
  1850. o229.FormFactor = Enum.FormFactor.Custom
  1851. o229.Size = Vector3.new(1, 0.200000003, 2)
  1852. o229.CFrame = CFrame.new(139.204147, 13.1000185, 60.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1853. o229.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1854. o229.Position = Vector3.new(139.204147, 13.1000185, 60.6887054)
  1855. o230.Parent = o229
  1856. o231.Parent = o229
  1857. o231.Color = Color3.new(0.372549, 0.372549, 0.372549)
  1858. o231.RiseVelocity = 10
  1859. o232.Parent = o228
  1860. o232.Material = Enum.Material.Brick
  1861. o232.BrickColor = BrickColor.new("Sand red")
  1862. o232.Position = Vector3.new(140.004166, 11.3000145, 60.9886932)
  1863. o232.Rotation = Vector3.new(0, -90, 0)
  1864. o232.Anchored = true
  1865. o232.FormFactor = Enum.FormFactor.Custom
  1866. o232.Size = Vector3.new(3.60000086, 8.60000038, 0.400000006)
  1867. o232.CFrame = CFrame.new(140.004166, 11.3000145, 60.9886932, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1868. o232.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1869. o232.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1870. o232.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1871. o232.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1872. o232.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1873. o232.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1874. o232.Color = Color3.new(0.584314, 0.47451, 0.466667)
  1875. o232.Position = Vector3.new(140.004166, 11.3000145, 60.9886932)
  1876. o233.Parent = o228
  1877. o233.Material = Enum.Material.Brick
  1878. o233.BrickColor = BrickColor.new("Sand red")
  1879. o233.Position = Vector3.new(139.204147, 11.3000145, 62.9886932)
  1880. o233.Rotation = Vector3.new(0, -90, 0)
  1881. o233.Anchored = true
  1882. o233.FormFactor = Enum.FormFactor.Custom
  1883. o233.Size = Vector3.new(0.400000006, 8.60000038, 2.00000024)
  1884. o233.CFrame = CFrame.new(139.204147, 11.3000145, 62.9886932, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1885. o233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1886. o233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1887. o233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1888. o233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1889. o233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1890. o233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1891. o233.Color = Color3.new(0.584314, 0.47451, 0.466667)
  1892. o233.Position = Vector3.new(139.204147, 11.3000145, 62.9886932)
  1893. o234.Parent = o228
  1894. o234.Material = Enum.Material.Brick
  1895. o234.BrickColor = BrickColor.new("Sand red")
  1896. o234.Position = Vector3.new(138.404144, 11.3000145, 60.9886932)
  1897. o234.Rotation = Vector3.new(0, -90, 0)
  1898. o234.Anchored = true
  1899. o234.FormFactor = Enum.FormFactor.Custom
  1900. o234.Size = Vector3.new(3.60000086, 8.60000038, 0.400000006)
  1901. o234.CFrame = CFrame.new(138.404144, 11.3000145, 60.9886932, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1902. o234.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1903. o234.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1904. o234.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1905. o234.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1906. o234.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1907. o234.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1908. o234.Color = Color3.new(0.584314, 0.47451, 0.466667)
  1909. o234.Position = Vector3.new(138.404144, 11.3000145, 60.9886932)
  1910. o235.Parent = o228
  1911. o235.Material = Enum.Material.Brick
  1912. o235.BrickColor = BrickColor.new("Bright red")
  1913. o235.Position = Vector3.new(139.204147, 11.3000145, 58.6887054)
  1914. o235.Rotation = Vector3.new(0, -90, 0)
  1915. o235.Anchored = true
  1916. o235.FormFactor = Enum.FormFactor.Custom
  1917. o235.Size = Vector3.new(1, 8.60000038, 2.00000024)
  1918. o235.CFrame = CFrame.new(139.204147, 11.3000145, 58.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1919. o235.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1920. o235.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1921. o235.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1922. o235.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1923. o235.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1924. o235.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1925. o235.Color = Color3.new(0.768627, 0.156863, 0.109804)
  1926. o235.Position = Vector3.new(139.204147, 11.3000145, 58.6887054)
  1927. o236.Parent = o228
  1928. o236.Material = Enum.Material.Brick
  1929. o236.BrickColor = BrickColor.new("Sand red")
  1930. o236.Position = Vector3.new(137.204147, 7.60002232, 61.1887054)
  1931. o236.Rotation = Vector3.new(0, 90, 0)
  1932. o236.Anchored = true
  1933. o236.CFrame = CFrame.new(137.204147, 7.60002232, 61.1887054, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1934. o236.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1935. o236.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1936. o236.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1937. o236.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1938. o236.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1939. o236.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1940. o236.Color = Color3.new(0.584314, 0.47451, 0.466667)
  1941. o236.Position = Vector3.new(137.204147, 7.60002232, 61.1887054)
  1942. o237.Parent = o228
  1943. o237.Material = Enum.Material.Brick
  1944. o237.BrickColor = BrickColor.new("Bright red")
  1945. o237.Position = Vector3.new(137.204132, 7.60002232, 58.6887054)
  1946. o237.Rotation = Vector3.new(0, 90, 0)
  1947. o237.Anchored = true
  1948. o237.Size = Vector3.new(1, 1.20000005, 2)
  1949. o237.CFrame = CFrame.new(137.204132, 7.60002232, 58.6887054, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1950. o237.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1951. o237.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1952. o237.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1953. o237.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1954. o237.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1955. o237.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1956. o237.Color = Color3.new(0.768627, 0.156863, 0.109804)
  1957. o237.Position = Vector3.new(137.204132, 7.60002232, 58.6887054)
  1958. o238.Parent = o228
  1959. o238.Material = Enum.Material.Brick
  1960. o238.BrickColor = BrickColor.new("Sand red")
  1961. o238.Position = Vector3.new(139.204147, 5.80002403, 62.6887054)
  1962. o238.Rotation = Vector3.new(0, -90, 0)
  1963. o238.Anchored = true
  1964. o238.Size = Vector3.new(1, 2.4000001, 6)
  1965. o238.CFrame = CFrame.new(139.204147, 5.80002403, 62.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1966. o238.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1967. o238.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1968. o238.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1969. o238.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1970. o238.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1971. o238.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1972. o238.Color = Color3.new(0.584314, 0.47451, 0.466667)
  1973. o238.Position = Vector3.new(139.204147, 5.80002403, 62.6887054)
  1974. o239.Parent = o228
  1975. o239.Material = Enum.Material.Brick
  1976. o239.BrickColor = BrickColor.new("Sand red")
  1977. o239.Position = Vector3.new(134.304184, 2.90002823, 61.0886993)
  1978. o239.Rotation = Vector3.new(0, -90, 0)
  1979. o239.Anchored = true
  1980. o239.FormFactor = Enum.FormFactor.Custom
  1981. o239.Size = Vector3.new(3.79999995, 3.40000057, 0.200000003)
  1982. o239.CFrame = CFrame.new(134.304184, 2.90002823, 61.0886993, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1983. o239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1984. o239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1985. o239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1986. o239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1987. o239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1988. o239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1989. o239.Color = Color3.new(0.584314, 0.47451, 0.466667)
  1990. o239.Position = Vector3.new(134.304184, 2.90002823, 61.0886993)
  1991. o240.Parent = o239
  1992. o240.C0 = CFrame.new(55, -19, -0.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1993. o240.C1 = CFrame.new(1.91130066, -1.90002823, -79.695816, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1994. o240.Part0 = o149
  1995. o240.Part1 = o239
  1996. o241.Parent = o228
  1997. o241.Material = Enum.Material.Brick
  1998. o241.BrickColor = BrickColor.new("Sand red")
  1999. o241.Position = Vector3.new(141.204147, 7.60002232, 61.1887054)
  2000. o241.Rotation = Vector3.new(0, -90, 0)
  2001. o241.Anchored = true
  2002. o241.CFrame = CFrame.new(141.204147, 7.60002232, 61.1887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2003. o241.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2004. o241.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2005. o241.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2006. o241.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2007. o241.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2008. o241.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2009. o241.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2010. o241.Position = Vector3.new(141.204147, 7.60002232, 61.1887054)
  2011. o242.Parent = o228
  2012. o242.Material = Enum.Material.Brick
  2013. o242.BrickColor = BrickColor.new("Bright red")
  2014. o242.Position = Vector3.new(135.204147, 5.80002403, 58.6887054)
  2015. o242.Rotation = Vector3.new(0, 90, 0)
  2016. o242.Anchored = true
  2017. o242.Size = Vector3.new(1, 2.4000001, 2)
  2018. o242.CFrame = CFrame.new(135.204147, 5.80002403, 58.6887054, -8.74227766e-08, 0, 1, 0, 1, 0, -1, 0, -8.74227766e-08)
  2019. o242.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2020. o242.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2021. o242.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2022. o242.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2023. o242.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2024. o242.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2025. o242.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2026. o242.Position = Vector3.new(135.204147, 5.80002403, 58.6887054)
  2027. o243.Parent = o228
  2028. o243.Material = Enum.Material.Brick
  2029. o243.BrickColor = BrickColor.new("Sand red")
  2030. o243.Position = Vector3.new(135.204147, 5.80002403, 61.1887054)
  2031. o243.Rotation = Vector3.new(0, 90, 0)
  2032. o243.Anchored = true
  2033. o243.Size = Vector3.new(4, 2.4000001, 2)
  2034. o243.CFrame = CFrame.new(135.204147, 5.80002403, 61.1887054, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  2035. o243.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2036. o243.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2037. o243.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2038. o243.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2039. o243.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2040. o243.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2041. o243.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2042. o243.Position = Vector3.new(135.204147, 5.80002403, 61.1887054)
  2043. o244.Parent = o228
  2044. o244.Material = Enum.Material.Brick
  2045. o244.BrickColor = BrickColor.new("Sand red")
  2046. o244.Position = Vector3.new(143.204147, 5.80002403, 61.1887054)
  2047. o244.Rotation = Vector3.new(0, -90, 0)
  2048. o244.Anchored = true
  2049. o244.Size = Vector3.new(4, 2.4000001, 2)
  2050. o244.CFrame = CFrame.new(143.204147, 5.80002403, 61.1887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2051. o244.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2052. o244.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2053. o244.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2054. o244.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2055. o244.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2056. o244.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2057. o244.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2058. o244.Position = Vector3.new(143.204147, 5.80002403, 61.1887054)
  2059. o245.Parent = o228
  2060. o245.Material = Enum.Material.Brick
  2061. o245.BrickColor = BrickColor.new("Bright red")
  2062. o245.Position = Vector3.new(139.204132, 5.80002403, 58.6887054)
  2063. o245.Rotation = Vector3.new(0, -90, 0)
  2064. o245.Anchored = true
  2065. o245.Size = Vector3.new(1, 2.4000001, 6)
  2066. o245.CFrame = CFrame.new(139.204132, 5.80002403, 58.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2067. o245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2068. o245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2069. o245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. o245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. o245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. o245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2073. o245.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2074. o245.Position = Vector3.new(139.204132, 5.80002403, 58.6887054)
  2075. o246.Parent = o228
  2076. o246.Material = Enum.Material.Brick
  2077. o246.BrickColor = BrickColor.new("Bright red")
  2078. o246.Position = Vector3.new(135.40416, 2.80003023, 58.6887054)
  2079. o246.Rotation = Vector3.new(0, -90, 0)
  2080. o246.Anchored = true
  2081. o246.FormFactor = Enum.FormFactor.Custom
  2082. o246.Size = Vector3.new(1, 3.60000014, 2.4000001)
  2083. o246.CFrame = CFrame.new(135.40416, 2.80003023, 58.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2084. o246.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2085. o246.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2086. o246.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. o246.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. o246.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. o246.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. o246.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2091. o246.Position = Vector3.new(135.40416, 2.80003023, 58.6887054)
  2092. o247.Parent = o246
  2093. o247.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2094. o247.C1 = CFrame.new(5.31129456, -1.80003023, 31.4041595, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2095. o247.Part0 = o150
  2096. o247.Part1 = o246
  2097. o248.Parent = o228
  2098. o248.Material = Enum.Material.Brick
  2099. o248.BrickColor = BrickColor.new("Sand red")
  2100. o248.Position = Vector3.new(139.204178, 2.90002823, 63.0886993)
  2101. o248.Rotation = Vector3.new(0, -90, 0)
  2102. o248.Anchored = true
  2103. o248.FormFactor = Enum.FormFactor.Custom
  2104. o248.Size = Vector3.new(0.200000003, 3.39999986, 10)
  2105. o248.CFrame = CFrame.new(139.204178, 2.90002823, 63.0886993, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2106. o248.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. o248.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. o248.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2109. o248.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2110. o248.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2111. o248.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2112. o248.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2113. o248.Position = Vector3.new(139.204178, 2.90002823, 63.0886993)
  2114. o249.Parent = o228
  2115. o249.Material = Enum.Material.Brick
  2116. o249.BrickColor = BrickColor.new("Bright red")
  2117. o249.Position = Vector3.new(141.204147, 7.60002232, 58.6887054)
  2118. o249.Rotation = Vector3.new(0, -90, 0)
  2119. o249.Anchored = true
  2120. o249.Size = Vector3.new(1, 1.20000005, 2)
  2121. o249.CFrame = CFrame.new(141.204147, 7.60002232, 58.6887054, 8.74227766e-08, 0, -1, 0, 1, 0, 1, 0, 8.74227766e-08)
  2122. o249.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2123. o249.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. o249.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. o249.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2126. o249.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. o249.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2128. o249.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2129. o249.Position = Vector3.new(141.204147, 7.60002232, 58.6887054)
  2130. o250.Parent = o228
  2131. o250.Material = Enum.Material.Brick
  2132. o250.BrickColor = BrickColor.new("Bright red")
  2133. o250.Position = Vector3.new(143.204147, 5.80002403, 58.6887054)
  2134. o250.Rotation = Vector3.new(0, -90, 0)
  2135. o250.Anchored = true
  2136. o250.Size = Vector3.new(1, 2.4000001, 2)
  2137. o250.CFrame = CFrame.new(143.204147, 5.80002403, 58.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2138. o250.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2139. o250.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2140. o250.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2141. o250.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2142. o250.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. o250.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2144. o250.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2145. o250.Position = Vector3.new(143.204147, 5.80002403, 58.6887054)
  2146. o251.Name = "Base"
  2147. o251.Parent = o228
  2148. o251.Material = Enum.Material.Brick
  2149. o251.BrickColor = BrickColor.new("Sand red")
  2150. o251.Position = Vector3.new(139.204178, 1.10002995, 61.1887054)
  2151. o251.Rotation = Vector3.new(0, -90, 0)
  2152. o251.Anchored = true
  2153. o251.FormFactor = Enum.FormFactor.Custom
  2154. o251.Size = Vector3.new(4, 0.200000003, 10)
  2155. o251.CFrame = CFrame.new(139.204178, 1.10002995, 61.1887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2156. o251.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2157. o251.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2158. o251.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2159. o251.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2160. o251.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2161. o251.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2162. o251.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2163. o251.Position = Vector3.new(139.204178, 1.10002995, 61.1887054)
  2164. o252.Parent = o251
  2165. o252.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2166. o252.C1 = CFrame.new(2.81129456, -0.100029945, 35.2041779, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2167. o252.Part0 = o150
  2168. o252.Part1 = o251
  2169. o253.Name = "Logs"
  2170. o253.Parent = o228
  2171. o254.Parent = o253
  2172. o254.BrickColor = BrickColor.new("Dark orange")
  2173. o254.Position = Vector3.new(139.360153, 2.20003009, 60.3406982)
  2174. o254.Rotation = Vector3.new(-90, -15, -105)
  2175. o254.Anchored = true
  2176. o254.Size = Vector3.new(1, 4.80000019, 1)
  2177. o254.CFrame = CFrame.new(139.360153, 2.20003009, 60.3406982, -0.249999985, 0.933012664, -0.258819044, -0.0669873431, 0.25, 0.965925813, 0.965925813, 0.258819044, 4.83159823e-08)
  2178. o254.Color = Color3.new(0.627451, 0.372549, 0.207843)
  2179. o254.Position = Vector3.new(139.360153, 2.20003009, 60.3406982)
  2180. o255.Parent = o254
  2181. o256.Parent = o253
  2182. o256.BrickColor = BrickColor.new("Dark orange")
  2183. o256.Position = Vector3.new(139.004166, 1.80003119, 60.6887054)
  2184. o256.Rotation = Vector3.new(-90, 0, -60)
  2185. o256.Anchored = true
  2186. o256.Size = Vector3.new(1, 4.80000019, 1)
  2187. o256.CFrame = CFrame.new(139.004166, 1.80003119, 60.6887054, 0.5, 0.866025388, 2.23203944e-08, -7.53276126e-08, 1.77170527e-08, 1, 0.866025388, -0.5, 7.40941459e-08)
  2188. o256.Color = Color3.new(0.627451, 0.372549, 0.207843)
  2189. o256.Position = Vector3.new(139.004166, 1.80003119, 60.6887054)
  2190. o257.Parent = o256
  2191. o258.Parent = o253
  2192. o258.BrickColor = BrickColor.new("Dark orange")
  2193. o258.Position = Vector3.new(137.772156, 2.46402907, 61.6296997)
  2194. o258.Rotation = Vector3.new(-65.8899994, 12.0699997, -157.160004)
  2195. o258.Anchored = true
  2196. o258.FormFactor = Enum.FormFactor.Custom
  2197. o258.Size = Vector3.new(1, 3.00000072, 1)
  2198. o258.CFrame = CFrame.new(137.772156, 2.46402907, 61.6296997, -0.901220858, 0.379555881, 0.209134907, 0.0173453093, -0.450610399, 0.89255172, 0.43301174, 0.808014154, 0.399516046)
  2199. o258.Color = Color3.new(0.627451, 0.372549, 0.207843)
  2200. o258.Position = Vector3.new(137.772156, 2.46402907, 61.6296997)
  2201. o259.Parent = o258
  2202. o260.Parent = o228
  2203. o260.Material = Enum.Material.Brick
  2204. o260.BrickColor = BrickColor.new("Sand red")
  2205. o260.Position = Vector3.new(144.104172, 2.90002823, 61.0886993)
  2206. o260.Rotation = Vector3.new(0, -90, 0)
  2207. o260.Anchored = true
  2208. o260.FormFactor = Enum.FormFactor.Custom
  2209. o260.Size = Vector3.new(3.79999995, 3.40000057, 0.200000003)
  2210. o260.CFrame = CFrame.new(144.104172, 2.90002823, 61.0886993, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2211. o260.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2212. o260.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2213. o260.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2214. o260.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. o260.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. o260.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2217. o260.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2218. o260.Position = Vector3.new(144.104172, 2.90002823, 61.0886993)
  2219. o261.Parent = o260
  2220. o261.C0 = CFrame.new(55, -19, -0.5, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2221. o261.C1 = CFrame.new(1.91130066, -1.90002823, -69.8958282, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2222. o261.Part0 = o149
  2223. o261.Part1 = o260
  2224. o262.Parent = o228
  2225. o262.Material = Enum.Material.Brick
  2226. o262.BrickColor = BrickColor.new("Bright red")
  2227. o262.Position = Vector3.new(139.204147, 1.40003109, 58.6887054)
  2228. o262.Rotation = Vector3.new(0, -90, 0)
  2229. o262.Anchored = true
  2230. o262.FormFactor = Enum.FormFactor.Custom
  2231. o262.Size = Vector3.new(1, 0.800000012, 5.20000076)
  2232. o262.CFrame = CFrame.new(139.204147, 1.40003109, 58.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2233. o262.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. o262.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. o262.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2236. o262.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2237. o262.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2238. o262.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2239. o262.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2240. o262.Position = Vector3.new(139.204147, 1.40003109, 58.6887054)
  2241. o263.Parent = o262
  2242. o263.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2243. o263.C1 = CFrame.new(5.31129456, -0.40003109, 35.2041473, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2244. o263.Part0 = o150
  2245. o263.Part1 = o262
  2246. o264.Parent = o228
  2247. o264.Material = Enum.Material.Brick
  2248. o264.BrickColor = BrickColor.new("Bright red")
  2249. o264.Position = Vector3.new(143.004135, 2.80003023, 58.6887054)
  2250. o264.Rotation = Vector3.new(0, -90, 0)
  2251. o264.Anchored = true
  2252. o264.FormFactor = Enum.FormFactor.Custom
  2253. o264.Size = Vector3.new(1, 3.60000014, 2.4000001)
  2254. o264.CFrame = CFrame.new(143.004135, 2.80003023, 58.6887054, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2255. o264.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2256. o264.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2257. o264.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2258. o264.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2259. o264.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2260. o264.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2261. o264.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2262. o264.Position = Vector3.new(143.004135, 2.80003023, 58.6887054)
  2263. o265.Parent = o264
  2264. o265.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2265. o265.C1 = CFrame.new(5.31129456, -1.80003023, 39.0041351, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2266. o265.Part0 = o150
  2267. o265.Part1 = o264
  2268. o266.Name = "FirePart"
  2269. o266.Parent = o228
  2270. o266.Transparency = 1
  2271. o266.Position = Vector3.new(139.104156, 2.30003023, 60.6887054)
  2272. o266.Anchored = true
  2273. o266.FormFactor = Enum.FormFactor.Symmetric
  2274. o266.Size = Vector3.new(5, 1, 5)
  2275. o266.CFrame = CFrame.new(139.104156, 2.30003023, 60.6887054, 1, 0, 4.37113883e-08, 0, 1, 0, -4.37113883e-08, 0, 1)
  2276. o266.BottomSurface = Enum.SurfaceType.Smooth
  2277. o266.TopSurface = Enum.SurfaceType.Smooth
  2278. o266.Position = Vector3.new(139.104156, 2.30003023, 60.6887054)
  2279. o267.Parent = o266
  2280. o267.Size = 6
  2281. o267.Color = Color3.new(1, 0.501961, 0)
  2282. o267.SecondaryColor = Color3.new(1, 0, 0)
  2283. o268.Parent = o266
  2284. o268.Size = 0.10000000149012
  2285. o268.Color = Color3.new(0.372549, 0.372549, 0.372549)
  2286. o268.Opacity = 0.30000001192093
  2287. o268.RiseVelocity = 0.10000000149012
  2288. o269.Name = "Cozy Chair"
  2289. o269.Parent = o145
  2290. o270.Parent = o269
  2291. o270.Material = Enum.Material.Fabric
  2292. o270.BrickColor = BrickColor.new("Bright red")
  2293. o270.Position = Vector3.new(139.956024, 2.91208887, 47.907589)
  2294. o270.Rotation = Vector3.new(0, -90, 0)
  2295. o270.Anchored = true
  2296. o270.Size = Vector3.new(3.82417607, 0.764835179, 0.975824177)
  2297. o270.CFrame = CFrame.new(139.956024, 2.91208887, 47.907589, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2298. o270.BottomSurface = Enum.SurfaceType.Smooth
  2299. o270.TopSurface = Enum.SurfaceType.Smooth
  2300. o270.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2301. o270.Position = Vector3.new(139.956024, 2.91208887, 47.907589)
  2302. o271.Parent = o269
  2303. o271.Material = Enum.Material.Fabric
  2304. o271.BrickColor = BrickColor.new("Bright red")
  2305. o271.Position = Vector3.new(139.956024, 1.38241839, 49.5295601)
  2306. o271.Rotation = Vector3.new(0, -90, 0)
  2307. o271.Anchored = true
  2308. o271.Size = Vector3.new(0.949450493, 0.764835179, 0.975824177)
  2309. o271.CFrame = CFrame.new(139.956024, 1.38241839, 49.5295601, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2310. o271.BottomSurface = Enum.SurfaceType.Smooth
  2311. o271.TopSurface = Enum.SurfaceType.Smooth
  2312. o271.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2313. o271.Position = Vector3.new(139.956024, 1.38241839, 49.5295601)
  2314. o272.Parent = o271
  2315. o272.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2316. o272.C1 = CFrame.new(14.4704399, -0.382418394, 35.9560242, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2317. o272.Part0 = o150
  2318. o272.Part1 = o271
  2319. o273.Parent = o269
  2320. o273.Material = Enum.Material.Fabric
  2321. o273.BrickColor = BrickColor.new("Bright red")
  2322. o273.Position = Vector3.new(139.956024, 1.38241839, 46.4701881)
  2323. o273.Rotation = Vector3.new(0, -90, 0)
  2324. o273.Anchored = true
  2325. o273.Size = Vector3.new(0.949450493, 0.764835179, 0.975824177)
  2326. o273.CFrame = CFrame.new(139.956024, 1.38241839, 46.4701881, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2327. o273.BottomSurface = Enum.SurfaceType.Smooth
  2328. o273.TopSurface = Enum.SurfaceType.Smooth
  2329. o273.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2330. o273.Position = Vector3.new(139.956024, 1.38241839, 46.4701881)
  2331. o274.Parent = o273
  2332. o274.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2333. o274.C1 = CFrame.new(17.5298119, -0.382418394, 35.9560242, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2334. o274.Part0 = o150
  2335. o274.Part1 = o273
  2336. o275.Parent = o269
  2337. o275.Material = Enum.Material.Fabric
  2338. o275.BrickColor = BrickColor.new("Persimmon")
  2339. o275.Position = Vector3.new(139.956024, 2.91208887, 49.9119492)
  2340. o275.Rotation = Vector3.new(0, -90, 0)
  2341. o275.Anchored = true
  2342. o275.Size = Vector3.new(0.184615389, 0.764835179, 0.975824177)
  2343. o275.CFrame = CFrame.new(139.956024, 2.91208887, 49.9119492, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2344. o275.BottomSurface = Enum.SurfaceType.Smooth
  2345. o275.TopSurface = Enum.SurfaceType.Smooth
  2346. o275.Color = Color3.new(1, 0.34902, 0.34902)
  2347. o275.Position = Vector3.new(139.956024, 2.91208887, 49.9119492)
  2348. o276.Parent = o269
  2349. o276.Material = Enum.Material.Fabric
  2350. o276.BrickColor = BrickColor.new("Persimmon")
  2351. o276.Position = Vector3.new(144.043976, 2.91208887, 49.9119492)
  2352. o276.Rotation = Vector3.new(0, -90, 0)
  2353. o276.Anchored = true
  2354. o276.Size = Vector3.new(0.184615389, 0.764835179, 0.975824177)
  2355. o276.CFrame = CFrame.new(144.043976, 2.91208887, 49.9119492, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2356. o276.BottomSurface = Enum.SurfaceType.Smooth
  2357. o276.TopSurface = Enum.SurfaceType.Smooth
  2358. o276.Color = Color3.new(1, 0.34902, 0.34902)
  2359. o276.Position = Vector3.new(144.043976, 2.91208887, 49.9119492)
  2360. o277.Parent = o269
  2361. o277.Material = Enum.Material.Fabric
  2362. o277.BrickColor = BrickColor.new("Bright red")
  2363. o277.Position = Vector3.new(142, 2.14725375, 47.9998741)
  2364. o277.Rotation = Vector3.new(0, -90, 0)
  2365. o277.Anchored = true
  2366. o277.Size = Vector3.new(4.00879097, 0.764835179, 5.06373644)
  2367. o277.CFrame = CFrame.new(142, 2.14725375, 47.9998741, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2368. o277.BottomSurface = Enum.SurfaceType.Smooth
  2369. o277.TopSurface = Enum.SurfaceType.Smooth
  2370. o277.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2371. o277.Position = Vector3.new(142, 2.14725375, 47.9998741)
  2372. o278.Parent = o269
  2373. o278.Material = Enum.Material.Fabric
  2374. o278.BrickColor = BrickColor.new("Bright red")
  2375. o278.Position = Vector3.new(144.043976, 2.91208887, 47.907589)
  2376. o278.Rotation = Vector3.new(0, -90, 0)
  2377. o278.Anchored = true
  2378. o278.Size = Vector3.new(3.82417607, 0.764835179, 0.975824177)
  2379. o278.CFrame = CFrame.new(144.043976, 2.91208887, 47.907589, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2380. o278.BottomSurface = Enum.SurfaceType.Smooth
  2381. o278.TopSurface = Enum.SurfaceType.Smooth
  2382. o278.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2383. o278.Position = Vector3.new(144.043976, 2.91208887, 47.907589)
  2384. o279.Parent = o269
  2385. o279.Material = Enum.Material.Fabric
  2386. o279.BrickColor = BrickColor.new("Bright red")
  2387. o279.Position = Vector3.new(144.043976, 1.40879202, 49.5295601)
  2388. o279.Rotation = Vector3.new(0, -90, 0)
  2389. o279.Anchored = true
  2390. o279.Size = Vector3.new(0.949450493, 0.764835179, 0.975824177)
  2391. o279.CFrame = CFrame.new(144.043976, 1.40879202, 49.5295601, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2392. o279.BottomSurface = Enum.SurfaceType.Smooth
  2393. o279.TopSurface = Enum.SurfaceType.Smooth
  2394. o279.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2395. o279.Position = Vector3.new(144.043976, 1.40879202, 49.5295601)
  2396. o280.Parent = o269
  2397. o280.Material = Enum.Material.Fabric
  2398. o280.BrickColor = BrickColor.new("Bright red")
  2399. o280.Position = Vector3.new(144.043976, 1.38241839, 46.4701881)
  2400. o280.Rotation = Vector3.new(0, -90, 0)
  2401. o280.Anchored = true
  2402. o280.Size = Vector3.new(0.949450493, 0.764835179, 0.975824177)
  2403. o280.CFrame = CFrame.new(144.043976, 1.38241839, 46.4701881, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2404. o280.BottomSurface = Enum.SurfaceType.Smooth
  2405. o280.TopSurface = Enum.SurfaceType.Smooth
  2406. o280.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2407. o280.Position = Vector3.new(144.043976, 1.38241839, 46.4701881)
  2408. o281.Parent = o280
  2409. o281.C0 = CFrame.new(-55, 0.5, 49, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2410. o281.C1 = CFrame.new(17.5298119, -0.382418394, 40.0439758, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2411. o281.Part0 = o150
  2412. o281.Part1 = o280
  2413. o282.Parent = o269
  2414. o282.Material = Enum.Material.Fabric
  2415. o282.BrickColor = BrickColor.new("Bright red")
  2416. o282.Position = Vector3.new(141.986816, 5.14066029, 46.4306374)
  2417. o282.Rotation = Vector3.new(0, -90, 0)
  2418. o282.Anchored = true
  2419. o282.Size = Vector3.new(0.870329678, 5.43296671, 5.03736258)
  2420. o282.CFrame = CFrame.new(141.986816, 5.14066029, 46.4306374, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2421. o282.BottomSurface = Enum.SurfaceType.Smooth
  2422. o282.TopSurface = Enum.SurfaceType.Smooth
  2423. o282.Color = Color3.new(0.768627, 0.156863, 0.109804)
  2424. o282.Position = Vector3.new(141.986816, 5.14066029, 46.4306374)
  2425. o283.Name = "zachrogamehard133447"
  2426. o283.Parent = o145
  2427. o283.PrimaryPart = o291
  2428. o284.Name = "Head"
  2429. o284.Parent = o283
  2430. o284.BrickColor = BrickColor.new("Institutional white")
  2431. o284.Position = Vector3.new(141.537262, 5.50001097, 48.3370514)
  2432. o284.Rotation = Vector3.new(-180, 0, 0)
  2433. o284.Anchored = true
  2434. o284.FormFactor = Enum.FormFactor.Symmetric
  2435. o284.Size = Vector3.new(2, 1, 1)
  2436. o284.CFrame = CFrame.new(141.537262, 5.50001097, 48.3370514, 1, 8.74200552e-08, 8.7419977e-08, 8.74200552e-08, -1, 1.58287654e-11, 8.7419977e-08, -1.58211222e-11, -1)
  2437. o284.TopSurface = Enum.SurfaceType.Smooth
  2438. o284.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2439. o284.Position = Vector3.new(141.537262, 5.50001097, 48.3370514)
  2440. o285.Parent = o284
  2441. o285.Scale = Vector3.new(1.25, 1.25, 1.25)
  2442. o290.Name = "face"
  2443. o290.Parent = o284
  2444. o290.Texture = "http://www.roblox.com/asset/?id=18151722"
  2445. o291.Name = "HumanoidRootPart"
  2446. o291.Parent = o283
  2447. o291.Transparency = 1
  2448. o291.Position = Vector3.new(141.537262, 4.00001097, 48.3370514)
  2449. o291.Rotation = Vector3.new(180, 0, -180)
  2450. o291.Anchored = true
  2451. o291.CanCollide = false
  2452. o291.FormFactor = Enum.FormFactor.Symmetric
  2453. o291.Size = Vector3.new(2, 2, 1)
  2454. o291.CFrame = CFrame.new(141.537262, 4.00001097, 48.3370514, -1, 2.72137868e-12, -8.7419977e-08, 2.72137868e-12, 1, -1.58211222e-11, 8.7419977e-08, -1.58211222e-11, -1)
  2455. o291.BottomSurface = Enum.SurfaceType.Smooth
  2456. o291.TopSurface = Enum.SurfaceType.Smooth
  2457. o291.Position = Vector3.new(141.537262, 4.00001097, 48.3370514)
  2458. o292.Name = "RootJoint"
  2459. o292.Parent = o291
  2460. o292.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2461. o292.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2462. o292.Part0 = o291
  2463. o292.Part1 = o299
  2464. o292.MaxVelocity = 0.10000000149012
  2465. o293.Name = "Left Arm"
  2466. o293.Parent = o283
  2467. o293.BrickColor = BrickColor.new("Institutional white")
  2468. o293.Position = Vector3.new(143.037262, 4.00001097, 48.3370514)
  2469. o293.Rotation = Vector3.new(180, 0, 165)
  2470. o293.Anchored = true
  2471. o293.CanCollide = false
  2472. o293.FormFactor = Enum.FormFactor.Symmetric
  2473. o293.Size = Vector3.new(1, 2, 1)
  2474. o293.CFrame = CFrame.new(143.037262, 4.00001097, 48.3370514, -0.965925813, -0.258819044, -8.44371186e-08, -0.258819044, 0.965925813, -2.26412364e-08, 8.7419977e-08, -1.58211222e-11, -1)
  2475. o293.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2476. o293.Position = Vector3.new(143.037262, 4.00001097, 48.3370514)
  2477. o295.Name = "Left Leg"
  2478. o295.Parent = o283
  2479. o295.BrickColor = BrickColor.new("Institutional white")
  2480. o295.Position = Vector3.new(142.037201, 3.00001097, 49.3369904)
  2481. o295.Rotation = Vector3.new(105, 0, 165)
  2482. o295.Anchored = true
  2483. o295.CanCollide = false
  2484. o295.FormFactor = Enum.FormFactor.Symmetric
  2485. o295.Size = Vector3.new(1, 2, 1)
  2486. o295.CFrame = CFrame.new(142.037201, 3.00001097, 49.3369904, -0.965925813, -0.258819044, -8.7530303e-08, -0.0669872165, 0.25, -0.965925813, 0.25000003, -0.933012664, -0.258819044)
  2487. o295.BottomSurface = Enum.SurfaceType.Smooth
  2488. o295.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2489. o295.Position = Vector3.new(142.037201, 3.00001097, 49.3369904)
  2490. o296.Name = "Right Arm"
  2491. o296.Parent = o283
  2492. o296.BrickColor = BrickColor.new("Institutional white")
  2493. o296.Position = Vector3.new(140.037201, 4.00001097, 48.3369904)
  2494. o296.Rotation = Vector3.new(-180, 0, -165)
  2495. o296.Anchored = true
  2496. o296.CanCollide = false
  2497. o296.FormFactor = Enum.FormFactor.Symmetric
  2498. o296.Size = Vector3.new(1, 2, 1)
  2499. o296.CFrame = CFrame.new(140.037201, 4.00001097, 48.3369904, -0.965925872, 0.258818835, -8.44439185e-08, 0.258818835, 0.965925872, 2.26266614e-08, 8.74227766e-08, 0, -1)
  2500. o296.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2501. o296.Position = Vector3.new(140.037201, 4.00001097, 48.3369904)
  2502. o298.Name = "Right Leg"
  2503. o298.Parent = o283
  2504. o298.BrickColor = BrickColor.new("Institutional white")
  2505. o298.Position = Vector3.new(141.037201, 3.00001097, 49.3369904)
  2506. o298.Rotation = Vector3.new(90, 0, -165)
  2507. o298.Anchored = true
  2508. o298.CanCollide = false
  2509. o298.FormFactor = Enum.FormFactor.Symmetric
  2510. o298.Size = Vector3.new(1, 2, 1)
  2511. o298.CFrame = CFrame.new(141.037201, 3.00001097, 49.3369904, -0.965925872, 0.258818835, -8.1357534e-08, 8.74227766e-08, 1.19248806e-08, -1, -0.258818835, -0.965925872, -3.41452129e-08)
  2512. o298.BottomSurface = Enum.SurfaceType.Smooth
  2513. o298.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2514. o298.Position = Vector3.new(141.037201, 3.00001097, 49.3369904)
  2515. o299.Name = "Torso"
  2516. o299.Parent = o283
  2517. o299.BrickColor = BrickColor.new("Institutional white")
  2518. o299.Position = Vector3.new(141.537262, 4.00001097, 48.3370514)
  2519. o299.Rotation = Vector3.new(180, 0, -180)
  2520. o299.Anchored = true
  2521. o299.FormFactor = Enum.FormFactor.Symmetric
  2522. o299.Size = Vector3.new(2, 2, 1)
  2523. o299.CFrame = CFrame.new(141.537262, 4.00001097, 48.3370514, -1, 2.72137868e-12, -8.7419977e-08, 2.72137868e-12, 1, -1.58211222e-11, 8.7419977e-08, -1.58211222e-11, -1)
  2524. o299.LeftSurface = Enum.SurfaceType.Weld
  2525. o299.RightSurface = Enum.SurfaceType.Weld
  2526. o299.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2527. o299.Position = Vector3.new(141.537262, 4.00001097, 48.3370514)
  2528. o300.Name = "roblox"
  2529. o300.Parent = o299
  2530. o309.Parent = o283
  2531. o309.RightLeg = o298
  2532. o309.LeftLeg = o295
  2533. o309.Torso = o291
  2534. o311.Name = "Handle"
  2535. o311.Parent = mas
  2536. o311.Position = Vector3.new(141.537262, 5.95001078, 48.3367805)
  2537. o311.Rotation = Vector3.new(180, 0, -180)
  2538. o311.Anchored = true
  2539. o311.CanCollide = false
  2540. o311.Locked = true
  2541. o311.FormFactor = Enum.FormFactor.Custom
  2542. o311.Size = Vector3.new(1.3400265, 1.34999824, 0.779999673)
  2543. o311.CFrame = CFrame.new(141.537262, 5.95001078, 48.3367805, -1, 7.87409693e-09, -8.7419977e-08, 7.87409693e-09, 1, -1.58207076e-11, 8.7419977e-08, -1.58213963e-11, -1)
  2544. o311.BottomSurface = Enum.SurfaceType.Smooth
  2545. o311.TopSurface = Enum.SurfaceType.Smooth
  2546. o311.Position = Vector3.new(141.537262, 5.95001078, 48.3367805)
  2547. o312.Parent = o311
  2548. o312.MeshId = "http://www.roblox.com/asset/?id=188004660 "
  2549. o312.TextureId = "http://www.roblox.com/asset/?id=451217406"
  2550. o312.MeshType = Enum.MeshType.FileMesh
  2551. o316.Name = "Handle"
  2552. o316.Parent = mas
  2553. o316.Position = Vector3.new(141.537262, 4.15001106, 48.8867798)
  2554. o316.Rotation = Vector3.new(180, 0, -180)
  2555. o316.Anchored = true
  2556. o316.CanCollide = false
  2557. o316.Locked = true
  2558. o316.FormFactor = Enum.FormFactor.Symmetric
  2559. o316.Size = Vector3.new(1, 2, 1)
  2560. o316.CFrame = CFrame.new(141.537262, 4.15001106, 48.8867798, -1, 2.72137868e-12, -8.7419977e-08, 2.72137868e-12, 1, -1.58211222e-11, 8.7419977e-08, -1.58211222e-11, -1)
  2561. o316.BottomSurface = Enum.SurfaceType.Smooth
  2562. o316.TopSurface = Enum.SurfaceType.Smooth
  2563. o316.Position = Vector3.new(141.537262, 4.15001106, 48.8867798)
  2564. o317.Parent = o316
  2565. o317.MeshId = "http://www.roblox.com/asset/?id=28463033"
  2566. o317.Scale = Vector3.new(1.39999998, 1.20000005, 1.39999998)
  2567. o317.TextureId = "http://www.roblox.com/asset/?id=28463022"
  2568. o317.MeshType = Enum.MeshType.FileMesh
  2569. o319.Name = "AccessoryWeld"
  2570. o319.Parent = o316
  2571. o319.C0 = CFrame.new(5.96046448e-08, 0.849999666, 0.549727678, 1, -6.83440315e-31, 0, 6.83440315e-31, 1, -0, 0, 0, 1)
  2572. o319.C1 = CFrame.new(0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2573. o319.Part0 = o316
  2574. o319.Part1 = o299
  2575. o320.Parent = o283
  2576. o320.MeshId = 27111882
  2577. o320.BodyPart = Enum.BodyPart.RightLeg
  2578. o321.Parent = o283
  2579. o321.MeshId = 27111857
  2580. o321.BodyPart = Enum.BodyPart.LeftLeg
  2581. o322.Parent = o283
  2582. o322.MeshId = 27111419
  2583. o322.BodyPart = Enum.BodyPart.LeftArm
  2584. o323.Name = "Roblox 2.0 Right Arm"
  2585. o323.Parent = o283
  2586. o323.MeshId = 27111864
  2587. o323.BodyPart = Enum.BodyPart.RightArm
  2588. o324.Parent = o283
  2589. o324.MeshId = 27111894
  2590. o324.BodyPart = Enum.BodyPart.Torso
  2591. o325.Parent = o283
  2592. o325.HeadColor = BrickColor.new("Institutional white")
  2593. o325.LeftArmColor = BrickColor.new("Institutional white")
  2594. o325.LeftLegColor = BrickColor.new("Institutional white")
  2595. o325.RightArmColor = BrickColor.new("Institutional white")
  2596. o325.RightLegColor = BrickColor.new("Institutional white")
  2597. o325.TorsoColor = BrickColor.new("Institutional white")
  2598. o326.Name = "Shirt"
  2599. o326.Parent = o283
  2600. o326.ShirtTemplate = "http://www.roblox.com/asset/?id=607785311"
  2601. o327.Name = "Pants"
  2602. o327.Parent = o283
  2603. o327.PantsTemplate = "http://www.roblox.com/asset/?id=382537568"
  2604. o328.Name = "seed_rememebrmesquid"
  2605. o328.Parent = o145
  2606. o328.PrimaryPart = o336
  2607. o329.Name = "Head"
  2608. o329.Parent = o328
  2609. o329.BrickColor = BrickColor.new("Bright yellow")
  2610. o329.Position = Vector3.new(141.838821, 8.90715694, 46.8603249)
  2611. o329.Rotation = Vector3.new(180, 0, 0)
  2612. o329.Anchored = true
  2613. o329.FormFactor = Enum.FormFactor.Symmetric
  2614. o329.Size = Vector3.new(2, 1, 1)
  2615. o329.CFrame = CFrame.new(141.838821, 8.90715694, 46.8603249, 1, 8.74227766e-08, 0, 8.74227766e-08, -1, -0, 0, 0, -1)
  2616. o329.TopSurface = Enum.SurfaceType.Smooth
  2617. o329.Color = Color3.new(0.960784, 0.803922, 0.188235)
  2618. o329.Position = Vector3.new(141.838821, 8.90715694, 46.8603249)
  2619. o330.Parent = o329
  2620. o330.Scale = Vector3.new(1.25, 1.25, 1.25)
  2621. o335.Name = "face"
  2622. o335.Parent = o329
  2623. o335.Texture = "rbxasset://textures/face.png"
  2624. o336.Name = "HumanoidRootPart"
  2625. o336.Parent = o328
  2626. o336.Transparency = 1
  2627. o336.Position = Vector3.new(141.838821, 10.4071569, 46.8603249)
  2628. o336.Rotation = Vector3.new(180, 0, 0)
  2629. o336.Anchored = true
  2630. o336.CanCollide = false
  2631. o336.FormFactor = Enum.FormFactor.Symmetric
  2632. o336.Size = Vector3.new(2, 2, 1)
  2633. o336.CFrame = CFrame.new(141.838821, 10.4071569, 46.8603249, 1, 8.74227766e-08, 0, 8.74227766e-08, -1, -0, 0, 0, -1)
  2634. o336.BottomSurface = Enum.SurfaceType.Smooth
  2635. o336.TopSurface = Enum.SurfaceType.Smooth
  2636. o336.Position = Vector3.new(141.838821, 10.4071569, 46.8603249)
  2637. o337.Name = "RootJoint"
  2638. o337.Parent = o336
  2639. o337.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2640. o337.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2641. o337.Part0 = o336
  2642. o337.Part1 = o345
  2643. o337.MaxVelocity = 0.10000000149012
  2644. o338.Name = "Left Arm"
  2645. o338.Parent = o328
  2646. o338.BrickColor = BrickColor.new("Bright yellow")
  2647. o338.Position = Vector3.new(140.338821, 9.40715694, 46.8603249)
  2648. o338.Rotation = Vector3.new(-180, 0, -90)
  2649. o338.Anchored = true
  2650. o338.CanCollide = false
  2651. o338.FormFactor = Enum.FormFactor.Symmetric
  2652. o338.Size = Vector3.new(1, 2, 1)
  2653. o338.CFrame = CFrame.new(140.338821, 9.40715694, 46.8603249, -1.31134158e-07, 1, -0, 1, 1.31134158e-07, 0, 0, 0, -0.99999994)
  2654. o338.Color = Color3.new(0.960784, 0.803922, 0.188235)
  2655. o338.Position = Vector3.new(140.338821, 9.40715694, 46.8603249)
  2656. o340.Name = "Left Leg"
  2657. o340.Parent = o328
  2658. o340.BrickColor = BrickColor.new("Black")
  2659. o340.Position = Vector3.new(141.338821, 12.4071569, 46.8603249)
  2660. o340.Rotation = Vector3.new(180, 0, 0)
  2661. o340.Anchored = true
  2662. o340.CanCollide = false
  2663. o340.FormFactor = Enum.FormFactor.Symmetric
  2664. o340.Size = Vector3.new(1, 2, 1)
  2665. o340.CFrame = CFrame.new(141.338821, 12.4071569, 46.8603249, 1, 8.74227766e-08, 0, 8.74227766e-08, -1, -0, 0, 0, -1)
  2666. o340.BottomSurface = Enum.SurfaceType.Smooth
  2667. o340.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2668. o340.Position = Vector3.new(141.338821, 12.4071569, 46.8603249)
  2669. o341.Parent = o340
  2670. o341.C0 = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  2671. o341.C1 = CFrame.new(-0.5, -1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2672. o341.Part0 = o340
  2673. o341.Part1 = o345
  2674. o342.Name = "Right Arm"
  2675. o342.Parent = o328
  2676. o342.BrickColor = BrickColor.new("Bright yellow")
  2677. o342.Position = Vector3.new(143.338821, 9.40715694, 46.8603249)
  2678. o342.Rotation = Vector3.new(-180, 0, 90)
  2679. o342.Anchored = true
  2680. o342.CanCollide = false
  2681. o342.FormFactor = Enum.FormFactor.Symmetric
  2682. o342.Size = Vector3.new(1, 2, 1)
  2683. o342.CFrame = CFrame.new(143.338821, 9.40715694, 46.8603249, 9.9347659e-08, -1, 0, -1, -9.9347659e-08, 0, 0, 0, -1)
  2684. o342.Color = Color3.new(0.960784, 0.803922, 0.188235)
  2685. o342.Position = Vector3.new(143.338821, 9.40715694, 46.8603249)
  2686. o344.Name = "Right Leg"
  2687. o344.Parent = o328
  2688. o344.BrickColor = BrickColor.new("Black")
  2689. o344.Position = Vector3.new(142.338821, 12.4071569, 46.8603249)
  2690. o344.Rotation = Vector3.new(180, 0, 0)
  2691. o344.Anchored = true
  2692. o344.CanCollide = false
  2693. o344.FormFactor = Enum.FormFactor.Symmetric
  2694. o344.Size = Vector3.new(1, 2, 1)
  2695. o344.CFrame = CFrame.new(142.338821, 12.4071569, 46.8603249, 1, 8.74227766e-08, 0, 8.74227766e-08, -1, -0, 0, 0, -1)
  2696. o344.BottomSurface = Enum.SurfaceType.Smooth
  2697. o344.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2698. o344.Position = Vector3.new(142.338821, 12.4071569, 46.8603249)
  2699. o345.Name = "Torso"
  2700. o345.Parent = o328
  2701. o345.BrickColor = BrickColor.new("Pastel yellow")
  2702. o345.Position = Vector3.new(141.838821, 10.4071569, 46.8603249)
  2703. o345.Rotation = Vector3.new(180, 0, 0)
  2704. o345.Anchored = true
  2705. o345.FormFactor = Enum.FormFactor.Symmetric
  2706. o345.Size = Vector3.new(2, 2, 1)
  2707. o345.CFrame = CFrame.new(141.838821, 10.4071569, 46.8603249, 1, 8.74227766e-08, 0, 8.74227766e-08, -1, -0, 0, 0, -1)
  2708. o345.LeftSurface = Enum.SurfaceType.Weld
  2709. o345.RightSurface = Enum.SurfaceType.Weld
  2710. o345.Color = Color3.new(1, 1, 0.8)
  2711. o345.Position = Vector3.new(141.838821, 10.4071569, 46.8603249)
  2712. o346.Name = "roblox"
  2713. o346.Parent = o345
  2714. o355.Name = "Right Hip"
  2715. o355.Parent = o345
  2716. o355.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2717. o355.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2718. o355.Part0 = o345
  2719. o355.Part1 = o344
  2720. o355.MaxVelocity = 0.10000000149012
  2721. o356.Name = "Left Hip"
  2722. o356.Parent = o345
  2723. o356.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2724. o356.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2725. o356.Part0 = o345
  2726. o356.Part1 = o340
  2727. o356.MaxVelocity = 0.10000000149012
  2728. o357.Name = "Neck"
  2729. o357.Parent = o345
  2730. o357.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2731. o357.C1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2732. o357.Part0 = o345
  2733. o357.Part1 = o329
  2734. o357.MaxVelocity = 0.10000000149012
  2735. o358.Parent = o328
  2736. o358.RightLeg = o344
  2737. o358.LeftLeg = o340
  2738. o358.Torso = o336
  2739. o360.Name = "Handle"
  2740. o360.Parent = mas
  2741. o360.Position = Vector3.new(141.838821, 8.35715675, 46.9600525)
  2742. o360.Rotation = Vector3.new(180, 0, 0)
  2743. o360.Anchored = true
  2744. o360.CanCollide = false
  2745. o360.Locked = true
  2746. o360.FormFactor = Enum.FormFactor.Symmetric
  2747. o360.Size = Vector3.new(1, 1, 2)
  2748. o360.CFrame = CFrame.new(141.838821, 8.35715675, 46.9600525, 1, 7.95513984e-08, 3.62316872e-23, 7.95513984e-08, -1, -4.1444221e-16, 3.26223034e-24, 4.1444221e-16, -1)
  2749. o360.BottomSurface = Enum.SurfaceType.Smooth
  2750. o360.TopSurface = Enum.SurfaceType.Smooth
  2751. o360.Position = Vector3.new(141.838821, 8.35715675, 46.9600525)
  2752. o361.Parent = o360
  2753. o361.MeshId = "http://www.roblox.com/asset/?id=46834172"
  2754. o361.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  2755. o361.TextureId = "http://www.roblox.com/asset/?id=47991609"
  2756. o361.MeshType = Enum.MeshType.FileMesh
  2757. o363.Name = "AccessoryWeld"
  2758. o363.Parent = o360
  2759. o363.C0 = CFrame.new(8.65838956e-09, 0.0499997139, 0.0997277573, 1, 7.87137555e-09, -3.26223034e-24, -7.87137555e-09, 1, -4.1444221e-16, 0, 4.1444221e-16, 1)
  2760. o363.C1 = CFrame.new(0, 0.600000024, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2761. o363.Part0 = o360
  2762. o363.Part1 = o329
  2763. o364.Parent = o328
  2764. o364.HeadColor = BrickColor.new("Bright yellow")
  2765. o364.LeftArmColor = BrickColor.new("Bright yellow")
  2766. o364.LeftLegColor = BrickColor.new("Black")
  2767. o364.RightArmColor = BrickColor.new("Bright yellow")
  2768. o364.RightLegColor = BrickColor.new("Black")
  2769. o364.TorsoColor = BrickColor.new("Pastel yellow")
  2770. o365.Parent = o145
  2771. o365.Material = Enum.Material.Wood
  2772. o365.BrickColor = BrickColor.new("Maroon")
  2773. o365.Position = Vector3.new(159.5, 39.5, 15)
  2774. o365.Anchored = true
  2775. o365.Size = Vector3.new(111, 1, 98)
  2776. o365.CFrame = CFrame.new(159.5, 39.5, 15, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2777. o365.BottomSurface = Enum.SurfaceType.Smooth
  2778. o365.TopSurface = Enum.SurfaceType.Smooth
  2779. o365.Color = Color3.new(0.458824, 0, 0)
  2780. o365.Position = Vector3.new(159.5, 39.5, 15)
  2781. o366.Parent = o365
  2782. o366.C0 = CFrame.new(-55, 19, 0.5, -0.99999994, 0, 0, 0, 0, 0.99999994, 0, 1, 0)
  2783. o366.C1 = CFrame.new(-55.5, -0.5, 49, -0.99999994, 0, 0, 0, 0, 0.99999994, 0, 1, 0)
  2784. o366.Part0 = o149
  2785. o366.Part1 = o365
  2786. o367.Parent = o365
  2787. o367.C0 = CFrame.new(-55, 19, 0.5, -0.99999994, 0, 0, 0, 0, 0.99999994, 0, 1, 0)
  2788. o367.C1 = CFrame.new(-55.5, -0.5, -48, -0.99999994, 0, 0, 0, 0, 0.99999994, 0, 1, 0)
  2789. o367.Part0 = o146
  2790. o367.Part1 = o365
  2791. o368.Parent = o365
  2792. o368.C0 = CFrame.new(-19.5, 19, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2793. o368.C1 = CFrame.new(-54.5, -0.5, 48, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2794. o368.Part0 = o226
  2795. o368.Part1 = o365
  2796. o369.Parent = o365
  2797. o369.C0 = CFrame.new(-49, 19.5, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2798. o369.C1 = CFrame.new(55.5, -0.5, 49, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2799. o369.Part0 = o157
  2800. o369.Part1 = o365
  2801. o370.Parent = o365
  2802. o370.C0 = CFrame.new(-10, 12, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2803. o370.C1 = CFrame.new(-54.5, -0.5, 9, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2804. o370.Part0 = o147
  2805. o370.Part1 = o365
  2806. o371.Parent = o365
  2807. o371.C0 = CFrame.new(-18.5, 19, 0.5, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  2808. o371.C1 = CFrame.new(-54.5, -0.5, -11, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  2809. o371.Part0 = o223
  2810. o371.Part1 = o365
  2811. o372.Parent = o1
  2812. o373.Name = "Dumpster"
  2813. o373.Parent = o372
  2814. o373.BrickColor = BrickColor.new("Bright green")
  2815. o373.Position = Vector3.new(-83.8000183, 3.5, -413.200012)
  2816. o373.Rotation = Vector3.new(0, 90, 0)
  2817. o373.Anchored = true
  2818. o373.FormFactor = Enum.FormFactor.Custom
  2819. o373.Size = Vector3.new(8.39999962, 7.00000048, 5.59999943)
  2820. o373.CFrame = CFrame.new(-83.8000183, 3.5, -413.200012, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, 0)
  2821. o373.Color = Color3.new(0.294118, 0.592157, 0.294118)
  2822. o373.Position = Vector3.new(-83.8000183, 3.5, -413.200012)
  2823. o374.Parent = o373
  2824. o374.MeshId = "http://www.roblox.com/asset/?id=93054682"
  2825. o374.TextureId = "http://www.roblox.com/asset/?id=93054830"
  2826. o374.MeshType = Enum.MeshType.FileMesh
  2827. o375.Name = "Dumpster-to-Trashcan Strong Joint"
  2828. o375.Parent = o373
  2829. o375.C0 = CFrame.new(-4.19999981, -3.50000024, -2.79999971, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2830. o375.C1 = CFrame.new(-1.5, -2.20000029, 2.5, -4.37113883e-08, 0, 1, 0, 1, 0, -1, 0, 0)
  2831. o375.Part0 = o373
  2832. o376.Name = "jeenzaza131"
  2833. o376.Parent = o372
  2834. o376.PrimaryPart = o391
  2835. o377.Name = "Head"
  2836. o377.Parent = o376
  2837. o377.BrickColor = BrickColor.new("Light orange")
  2838. o377.Position = Vector3.new(-83.990715, 7.50000715, -413.009308)
  2839. o377.Rotation = Vector3.new(0, 90, 0)
  2840. o377.Anchored = true
  2841. o377.FormFactor = Enum.FormFactor.Symmetric
  2842. o377.Size = Vector3.new(2, 1, 1)
  2843. o377.CFrame = CFrame.new(-83.990715, 7.50000715, -413.009308, -8.74227268e-08, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999999464, -4.86387706e-15, 8.74227766e-08)
  2844. o377.TopSurface = Enum.SurfaceType.Smooth
  2845. o377.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2846. o377.Position = Vector3.new(-83.990715, 7.50000715, -413.009308)
  2847. o382.Parent = o377
  2848. o382.MeshId = "http://www.roblox.com/asset/?id=83001675"
  2849. o382.Scale = Vector3.new(1.25, 1.25, 1.25)
  2850. o382.MeshType = Enum.MeshType.FileMesh
  2851. o383.Name = "AvatarPartScaleType"
  2852. o383.Parent = o382
  2853. o383.Value = "Classic"
  2854. o384.Name = "FaceCenterAttachment"
  2855. o384.Parent = o382
  2856. o385.Name = "FaceFrontAttachment"
  2857. o385.Parent = o382
  2858. o385.Value = Vector3.new(0, 0, -0.589999974)
  2859. o386.Name = "HairAttachment"
  2860. o386.Parent = o382
  2861. o386.Value = Vector3.new(0, 0.589999974, -0)
  2862. o387.Name = "HatAttachment"
  2863. o387.Parent = o382
  2864. o387.Value = Vector3.new(0, 0.589999974, -0)
  2865. o388.Name = "NeckRigAttachment"
  2866. o388.Parent = o382
  2867. o388.Value = Vector3.new(0, -0.490999997, -0)
  2868. o389.Name = "face"
  2869. o389.Parent = o377
  2870. o389.Texture = "http://www.roblox.com/asset/?id=20418518"
  2871. o390.Parent = o377
  2872. o390.C0 = CFrame.new(0, -0.5, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  2873. o390.C1 = CFrame.new(0, 1, 0, 0.999998331, -8.74226771e-08, -4.86387155e-15, 4.86387452e-15, -1.06303412e-22, -1, -8.74227268e-08, 1, 1.06303412e-22)
  2874. o390.Part0 = o377
  2875. o390.Part1 = o412
  2876. o391.Name = "HumanoidRootPart"
  2877. o391.Parent = o376
  2878. o391.Transparency = 1
  2879. o391.Position = Vector3.new(-83.990715, 6.00000715, -413.009308)
  2880. o391.Rotation = Vector3.new(0, 90, 0)
  2881. o391.Anchored = true
  2882. o391.CanCollide = false
  2883. o391.FormFactor = Enum.FormFactor.Symmetric
  2884. o391.Size = Vector3.new(2, 2, 1)
  2885. o391.CFrame = CFrame.new(-83.990715, 6.00000715, -413.009308, 0, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.99999994, 0, 0)
  2886. o391.BottomSurface = Enum.SurfaceType.Smooth
  2887. o391.TopSurface = Enum.SurfaceType.Smooth
  2888. o391.Position = Vector3.new(-83.990715, 6.00000715, -413.009308)
  2889. o392.Name = "Left Arm"
  2890. o392.Parent = o376
  2891. o392.BrickColor = BrickColor.new("Light orange")
  2892. o392.Position = Vector3.new(-83.990715, 6.00000715, -411.509308)
  2893. o392.Rotation = Vector3.new(0, 90, 0)
  2894. o392.Anchored = true
  2895. o392.CanCollide = false
  2896. o392.FormFactor = Enum.FormFactor.Symmetric
  2897. o392.Size = Vector3.new(1, 2, 1)
  2898. o392.CFrame = CFrame.new(-83.990715, 6.00000715, -411.509308, -2.62267378e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994934, -1.45916096e-14, 2.62267946e-07)
  2899. o392.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2900. o392.Position = Vector3.new(-83.990715, 6.00000715, -411.509308)
  2901. o394.Parent = o392
  2902. o394.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2903. o394.C1 = CFrame.new(-1, 0, 0, 8.74226771e-08, 4.86387155e-15, 0.999997139, 1.06303412e-22, 1, 4.86386901e-15, -1, -1.06303412e-22, -8.74226274e-08)
  2904. o394.Part0 = o392
  2905. o394.Part1 = o412
  2906. o395.Parent = o392
  2907. o395.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2908. o395.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999881, 0, 1, 0, -1, 0, 0)
  2909. o395.Part0 = o392
  2910. o395.Part1 = o412
  2911. o396.Parent = o392
  2912. o396.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2913. o396.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999762, 0, 1, 0, -1, 0, 0)
  2914. o396.Part0 = o392
  2915. o396.Part1 = o412
  2916. o397.Parent = o392
  2917. o397.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2918. o397.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999642, 0, 1, 0, -1, 0, 0)
  2919. o397.Part0 = o392
  2920. o397.Part1 = o412
  2921. o398.Parent = o392
  2922. o398.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2923. o398.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999404, 0, 1, 0, -1, 0, 0)
  2924. o398.Part0 = o392
  2925. o398.Part1 = o412
  2926. o399.Parent = o392
  2927. o399.C0 = CFrame.new(0.5, 0, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2928. o399.C1 = CFrame.new(-1, 0, 0, -0, 0, 0.999999523, 0, 1, 0, -1, 0, 0)
  2929. o399.Part0 = o392
  2930. o399.Part1 = o412
  2931. o400.Name = "Left Leg"
  2932. o400.Parent = o376
  2933. o400.BrickColor = BrickColor.new("Light orange")
  2934. o400.Position = Vector3.new(-83.990715, 4.00000811, -412.509308)
  2935. o400.Rotation = Vector3.new(0, 90, 0)
  2936. o400.Anchored = true
  2937. o400.CanCollide = false
  2938. o400.FormFactor = Enum.FormFactor.Symmetric
  2939. o400.Size = Vector3.new(1, 2, 1)
  2940. o400.CFrame = CFrame.new(-83.990715, 4.00000811, -412.509308, -2.62267378e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994934, -1.45916096e-14, 2.62267946e-07)
  2941. o400.BottomSurface = Enum.SurfaceType.Smooth
  2942. o400.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2943. o400.Position = Vector3.new(-83.990715, 4.00000811, -412.509308)
  2944. o401.Parent = o400
  2945. o401.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2946. o401.C1 = CFrame.new(-0.5, -1, 0, -0.999997139, -8.74226771e-08, 4.86387155e-15, -4.86386901e-15, -1.06303412e-22, 1, 8.74226274e-08, 1, -1.06303412e-22)
  2947. o401.Part0 = o400
  2948. o401.Part1 = o412
  2949. o402.Name = "Right Arm"
  2950. o402.Parent = o376
  2951. o402.BrickColor = BrickColor.new("Light orange")
  2952. o402.Position = Vector3.new(-83.990715, 6.00000715, -414.509277)
  2953. o402.Rotation = Vector3.new(0, 90, 0)
  2954. o402.Anchored = true
  2955. o402.CanCollide = false
  2956. o402.FormFactor = Enum.FormFactor.Symmetric
  2957. o402.Size = Vector3.new(1, 2, 1)
  2958. o402.CFrame = CFrame.new(-83.990715, 6.00000715, -414.509277, -2.62267378e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994934, -1.45916096e-14, 2.62267946e-07)
  2959. o402.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2960. o402.Position = Vector3.new(-83.990715, 6.00000715, -414.509277)
  2961. o404.Parent = o402
  2962. o404.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2963. o404.C1 = CFrame.new(1, 0, 0, -8.74226771e-08, 4.86387155e-15, -0.999997139, -1.06303412e-22, 1, -4.86386901e-15, 1, -1.06303412e-22, 8.74226274e-08)
  2964. o404.Part0 = o402
  2965. o404.Part1 = o412
  2966. o405.Parent = o402
  2967. o405.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2968. o405.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999762, 0, 1, 0, 1, 0, 0)
  2969. o405.Part0 = o402
  2970. o405.Part1 = o412
  2971. o406.Parent = o402
  2972. o406.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2973. o406.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999404, 0, 1, 0, 1, 0, 0)
  2974. o406.Part0 = o402
  2975. o406.Part1 = o412
  2976. o407.Parent = o402
  2977. o407.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2978. o407.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999523, 0, 1, 0, 1, 0, 0)
  2979. o407.Part0 = o402
  2980. o407.Part1 = o412
  2981. o408.Parent = o402
  2982. o408.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2983. o408.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999642, 0, 1, 0, 1, 0, 0)
  2984. o408.Part0 = o402
  2985. o408.Part1 = o412
  2986. o409.Parent = o402
  2987. o409.C0 = CFrame.new(-0.5, 0, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2988. o409.C1 = CFrame.new(1, 0, 0, 0, 0, -0.999999881, 0, 1, 0, 1, 0, 0)
  2989. o409.Part0 = o402
  2990. o409.Part1 = o412
  2991. o410.Name = "Right Leg"
  2992. o410.Parent = o376
  2993. o410.BrickColor = BrickColor.new("Light orange")
  2994. o410.Position = Vector3.new(-83.990715, 4.00000811, -413.509308)
  2995. o410.Rotation = Vector3.new(0, 90, 0)
  2996. o410.Anchored = true
  2997. o410.CanCollide = false
  2998. o410.FormFactor = Enum.FormFactor.Symmetric
  2999. o410.Size = Vector3.new(1, 2, 1)
  3000. o410.CFrame = CFrame.new(-83.990715, 4.00000811, -413.509308, -2.62267264e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999994457, -1.45916096e-14, 2.62267946e-07)
  3001. o410.BottomSurface = Enum.SurfaceType.Smooth
  3002. o410.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3003. o410.Position = Vector3.new(-83.990715, 4.00000811, -413.509308)
  3004. o411.Parent = o410
  3005. o411.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  3006. o411.C1 = CFrame.new(0.5, -1, 0, -0.999996662, -8.74226771e-08, 4.86387155e-15, -4.86386647e-15, -1.06303412e-22, 1, 8.74225847e-08, 1, -1.06303412e-22)
  3007. o411.Part0 = o410
  3008. o411.Part1 = o412
  3009. o412.Name = "Torso"
  3010. o412.Parent = o376
  3011. o412.BrickColor = BrickColor.new("Light orange")
  3012. o412.Position = Vector3.new(-83.990715, 6.00000715, -413.009308)
  3013. o412.Rotation = Vector3.new(0, 90, 0)
  3014. o412.Anchored = true
  3015. o412.FormFactor = Enum.FormFactor.Symmetric
  3016. o412.Size = Vector3.new(2, 2, 1)
  3017. o412.CFrame = CFrame.new(-83.990715, 6.00000715, -413.009308, -1.74845255e-07, -5.56362707e-08, 1, 0, 1, 5.56362707e-08, -0.999997795, -9.72774904e-15, 1.74845454e-07)
  3018. o412.LeftSurface = Enum.SurfaceType.Weld
  3019. o412.RightSurface = Enum.SurfaceType.Weld
  3020. o412.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3021. o412.Position = Vector3.new(-83.990715, 6.00000715, -413.009308)
  3022. o413.Name = "roblox"
  3023. o413.Parent = o412
  3024. o413.Texture = "http://www.roblox.com/asset/?id=2313289396"
  3025. o422.Parent = o376
  3026. o422.RightLeg = o410
  3027. o422.LeftLeg = o400
  3028. o422.Torso = o391
  3029. o424.Name = "Handle"
  3030. o424.Parent = mas
  3031. o424.Position = Vector3.new(-84.194313, 7.7412138, -413.00528)
  3032. o424.Rotation = Vector3.new(0, 90, 0)
  3033. o424.Anchored = true
  3034. o424.CanCollide = false
  3035. o424.Locked = true
  3036. o424.Size = Vector3.new(1.10000002, 1.10000002, 1.10000002)
  3037. o424.CFrame = CFrame.new(-84.194313, 7.7412138, -413.00528, 2.59204724e-15, -5.56362707e-08, 1, 7.87137555e-09, 1, 5.56362707e-08, -0.99999994, 7.87137466e-09, 3.02998106e-15)
  3038. o424.BottomSurface = Enum.SurfaceType.Smooth
  3039. o424.TopSurface = Enum.SurfaceType.Smooth
  3040. o424.Position = Vector3.new(-84.194313, 7.7412138, -413.00528)
  3041. o425.Name = "SpecialMesh"
  3042. o425.Parent = o424
  3043. o425.MeshId = "rbxassetid://4082083430"
  3044. o425.TextureId = "http://www.roblox.com/asset/?id=4082013712"
  3045. o425.MeshType = Enum.MeshType.FileMesh
  3046. o426.Name = "AvatarPartScaleType"
  3047. o426.Parent = o424
  3048. o426.Value = "Classic"
  3049. o428.Name = "AccessoryWeld"
  3050. o428.Parent = o424
  3051. o428.C0 = CFrame.new(0.00401687622, -0.241205215, -0.396402359, 1, 7.87137555e-09, 3.02998127e-15, -7.87137555e-09, 1, -4.1444258e-16, -3.02998127e-15, 4.14442554e-16, 1)
  3052. o428.C1 = CFrame.new(0, 0, -0.600000024, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3053. o428.Part0 = o424
  3054. o428.Part1 = o377
  3055. o430.Name = "Handle"
  3056. o430.Parent = mas
  3057. o430.Position = Vector3.new(-83.9607162, 7.75000715, -413.009308)
  3058. o430.Rotation = Vector3.new(0, 90, 0)
  3059. o430.Anchored = true
  3060. o430.CanCollide = false
  3061. o430.Locked = true
  3062. o430.FormFactor = Enum.FormFactor.Symmetric
  3063. o430.Size = Vector3.new(1.4200002, 0.870000005, 1.40999985)
  3064. o430.CFrame = CFrame.new(-83.9607162, 7.75000715, -413.009308, 2.59204724e-15, -5.56362707e-08, 1, 7.87137555e-09, 1, 5.56362707e-08, -0.99999994, 7.87137466e-09, 3.02998106e-15)
  3065. o430.BottomSurface = Enum.SurfaceType.Smooth
  3066. o430.TopSurface = Enum.SurfaceType.Smooth
  3067. o430.Position = Vector3.new(-83.9607162, 7.75000715, -413.009308)
  3068. o431.Parent = o430
  3069. o431.MeshId = "rbxassetid://726889242"
  3070. o431.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  3071. o431.TextureId = "rbxassetid://726600123"
  3072. o431.MeshType = Enum.MeshType.FileMesh
  3073. o433.Name = "OriginalSize"
  3074. o433.Parent = o430
  3075. o433.Value = Vector3.new(1.4200002, 0.870000005, 1.40999985)
  3076. o434.Name = "AccessoryWeld"
  3077. o434.Parent = o430
  3078. o434.C0 = CFrame.new(0, 0.349999994, -0.0299999993, 1, 7.87137555e-09, 3.02998127e-15, -7.87137555e-09, 1, -4.1444258e-16, -3.02998127e-15, 4.14442554e-16, 1)
  3079. o434.C1 = CFrame.new(0, 0.600000024, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3080. o434.Part0 = o430
  3081. o434.Part1 = o377
  3082. o436.Parent = o376
  3083. o436.HeadColor = BrickColor.new("Light orange")
  3084. o436.LeftArmColor = BrickColor.new("Light orange")
  3085. o436.LeftLegColor = BrickColor.new("Light orange")
  3086. o436.RightArmColor = BrickColor.new("Light orange")
  3087. o436.RightLegColor = BrickColor.new("Light orange")
  3088. o436.TorsoColor = BrickColor.new("Light orange")
  3089. o437.Name = "Shirt"
  3090. o437.Parent = o376
  3091. o437.ShirtTemplate = "http://www.roblox.com/asset/?id=1942939563"
  3092. o438.Parent = o376
  3093. o438.Graphic = "http://www.roblox.com/asset/?id=2313289396"
  3094. o439.Name = "Pants"
  3095. o439.Parent = o376
  3096. o439.PantsTemplate = "http://www.roblox.com/asset/?id=1686871468"
  3097. o440.Name = "l0uh"
  3098. o440.Parent = o1
  3099. o440.PrimaryPart = o455
  3100. o441.Name = "Head"
  3101. o441.Parent = o440
  3102. o441.BrickColor = BrickColor.new("Light orange")
  3103. o441.Position = Vector3.new(173.282166, 6.50001097, 10.7303581)
  3104. o441.Rotation = Vector3.new(0, -90, 0)
  3105. o441.Anchored = true
  3106. o441.FormFactor = Enum.FormFactor.Symmetric
  3107. o441.Size = Vector3.new(1, 1, 1)
  3108. o441.CFrame = CFrame.new(173.282166, 6.50001097, 10.7303581, 0, 0, -1, 0, 1, 0, 0.999999523, 0, 0)
  3109. o441.TopSurface = Enum.SurfaceType.Smooth
  3110. o441.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3111. o441.Position = Vector3.new(173.282166, 6.50001097, 10.7303581)
  3112. o446.Name = "face"
  3113. o446.Parent = o441
  3114. o446.Texture = "rbxasset://textures/face.png"
  3115. o447.Parent = o441
  3116. o447.MeshId = "http://www.roblox.com/asset/?id=2953451364"
  3117. o447.Scale = Vector3.new(1.20000005, 1.20000005, 1.20000005)
  3118. o447.TextureId = "http://roblox.com/asset/?id=2952976127"
  3119. o447.MeshType = Enum.MeshType.FileMesh
  3120. o448.Name = "AvatarPartScaleType"
  3121. o448.Parent = o447
  3122. o448.Value = "ProportionsSlender"
  3123. o449.Name = "NeckRigAttachment"
  3124. o449.Parent = o447
  3125. o449.Value = Vector3.new(-0, -0.702411532, 0.0221303143)
  3126. o450.Name = "FaceFrontAttachment"
  3127. o450.Parent = o447
  3128. o450.Value = Vector3.new(0, -0.27201128, -0.588587582)
  3129. o451.Name = "HatAttachment"
  3130. o451.Parent = o447
  3131. o451.Value = Vector3.new(0, 0.479756117, 0.0221303124)
  3132. o452.Name = "HairAttachment"
  3133. o452.Parent = o447
  3134. o452.Value = Vector3.new(0, 0.479756117, 0.0221303124)
  3135. o453.Name = "FaceCenterAttachment"
  3136. o453.Parent = o447
  3137. o453.Value = Vector3.new(0, -0.27201128, 0.0221303124)
  3138. o454.Parent = o441
  3139. o454.C0 = CFrame.new(0, -0.5, 0, 1, 0, 0, -0, -0, -1, 0, 1, 0)
  3140. o454.C1 = CFrame.new(0, 1, 0, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  3141. o454.Part0 = o441
  3142. o454.Part1 = o463
  3143. o455.Name = "HumanoidRootPart"
  3144. o455.Parent = o440
  3145. o455.Transparency = 1
  3146. o455.Position = Vector3.new(173.282166, 5.00001097, 10.7303581)
  3147. o455.Rotation = Vector3.new(0, -90, 0)
  3148. o455.Anchored = true
  3149. o455.CanCollide = false
  3150. o455.FormFactor = Enum.FormFactor.Symmetric
  3151. o455.Size = Vector3.new(2, 2, 1)
  3152. o455.CFrame = CFrame.new(173.282166, 5.00001097, 10.7303581, 0, 0, -1, 0, 1, 0, 0.999999523, 0, 0)
  3153. o455.BottomSurface = Enum.SurfaceType.Smooth
  3154. o455.TopSurface = Enum.SurfaceType.Smooth
  3155. o455.Position = Vector3.new(173.282166, 5.00001097, 10.7303581)
  3156. o456.Name = "RootJoint"
  3157. o456.Parent = o455
  3158. o456.C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  3159. o456.C1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  3160. o456.Part0 = o455
  3161. o456.Part1 = o463
  3162. o456.MaxVelocity = 0.10000000149012
  3163. o457.Name = "Left Arm"
  3164. o457.Parent = o440
  3165. o457.BrickColor = BrickColor.new("Light orange")
  3166. o457.Position = Vector3.new(174.282166, 5.00001097, 10.2303591)
  3167. o457.Rotation = Vector3.new(-105, -90, 0)
  3168. o457.Anchored = true
  3169. o457.CanCollide = false
  3170. o457.FormFactor = Enum.FormFactor.Symmetric
  3171. o457.Size = Vector3.new(1, 2, 1)
  3172. o457.CFrame = CFrame.new(174.282166, 5.00001097, 10.2303591, 0, 0, -1, 0.9659217, -0.258818835, 0, -0.258817732, -0.965925872, 0)
  3173. o457.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3174. o457.Position = Vector3.new(174.282166, 5.00001097, 10.2303591)
  3175. o459.Name = "Left Leg"
  3176. o459.Parent = o440
  3177. o459.BrickColor = BrickColor.new("Light orange")
  3178. o459.Position = Vector3.new(174.282166, 3.00001097, 10.2303581)
  3179. o459.Rotation = Vector3.new(90, -60, 90)
  3180. o459.Anchored = true
  3181. o459.CanCollide = false
  3182. o459.FormFactor = Enum.FormFactor.Symmetric
  3183. o459.Size = Vector3.new(1, 2, 1)
  3184. o459.CFrame = CFrame.new(174.282166, 3.00001097, 10.2303581, 0, -0.5, -0.866025388, 0, 0.866025388, -0.5, 1, 0, 0)
  3185. o459.BottomSurface = Enum.SurfaceType.Smooth
  3186. o459.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3187. o459.Position = Vector3.new(174.282166, 3.00001097, 10.2303581)
  3188. o460.Name = "Right Arm"
  3189. o460.Parent = o440
  3190. o460.BrickColor = BrickColor.new("Light orange")
  3191. o460.Position = Vector3.new(174.282166, 5.00001097, 11.2303572)
  3192. o460.Rotation = Vector3.new(90, 0, 0)
  3193. o460.Anchored = true
  3194. o460.CanCollide = false
  3195. o460.FormFactor = Enum.FormFactor.Symmetric
  3196. o460.Size = Vector3.new(1, 2, 1)
  3197. o460.CFrame = CFrame.new(174.282166, 5.00001097, 11.2303572, 0.999993563, -1.19208948e-07, 5.8021219e-15, -4.7306446e-16, -4.37113421e-08, -0.999999464, 1.19208948e-07, 1, -4.37114167e-08)
  3198. o460.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3199. o460.Position = Vector3.new(174.282166, 5.00001097, 11.2303572)
  3200. o462.Name = "Right Leg"
  3201. o462.Parent = o440
  3202. o462.BrickColor = BrickColor.new("Light orange")
  3203. o462.Position = Vector3.new(173.282166, 3.00001097, 11.2303581)
  3204. o462.Rotation = Vector3.new(-90, -75, -90)
  3205. o462.Anchored = true
  3206. o462.CanCollide = false
  3207. o462.FormFactor = Enum.FormFactor.Symmetric
  3208. o462.Size = Vector3.new(1, 2, 1)
  3209. o462.CFrame = CFrame.new(173.282166, 3.00001097, 11.2303581, 0, 0.258818835, -0.965925872, 0, 0.965925872, 0.258818835, 0.999999523, 0, 0)
  3210. o462.BottomSurface = Enum.SurfaceType.Smooth
  3211. o462.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3212. o462.Position = Vector3.new(173.282166, 3.00001097, 11.2303581)
  3213. o463.Name = "Torso"
  3214. o463.Parent = o440
  3215. o463.BrickColor = BrickColor.new("Light orange")
  3216. o463.Position = Vector3.new(173.282166, 5.00001097, 10.7303581)
  3217. o463.Rotation = Vector3.new(0, -90, 0)
  3218. o463.Anchored = true
  3219. o463.FormFactor = Enum.FormFactor.Symmetric
  3220. o463.Size = Vector3.new(2, 2, 1)
  3221. o463.CFrame = CFrame.new(173.282166, 5.00001097, 10.7303581, 0, 0, -1, 0, 1, 0, 0.999999523, 0, 0)
  3222. o463.LeftSurface = Enum.SurfaceType.Weld
  3223. o463.RightSurface = Enum.SurfaceType.Weld
  3224. o463.Color = Color3.new(0.917647, 0.721569, 0.572549)
  3225. o463.Position = Vector3.new(173.282166, 5.00001097, 10.7303581)
  3226. o464.Name = "roblox"
  3227. o464.Parent = o463
  3228. o473.Parent = o440
  3229. o473.RightLeg = o462
  3230. o473.LeftLeg = o459
  3231. o473.Torso = o455
  3232. o475.Name = "Handle"
  3233. o475.Parent = mas
  3234. o475.Position = Vector3.new(173.4319, 5.70001125, 10.7303581)
  3235. o475.Rotation = Vector3.new(0, -90, 0)
  3236. o475.Anchored = true
  3237. o475.CanCollide = false
  3238. o475.Locked = true
  3239. o475.FormFactor = Enum.FormFactor.Symmetric
  3240. o475.Size = Vector3.new(1, 1, 1)
  3241. o475.CFrame = CFrame.new(173.4319, 5.70001125, 10.7303581, 0, 0, -1, -6.83440315e-31, 1, 0, 0.999999523, 6.83439986e-31, 0)
  3242. o475.BottomSurface = Enum.SurfaceType.Smooth
  3243. o475.TopSurface = Enum.SurfaceType.Smooth
  3244. o475.Position = Vector3.new(173.4319, 5.70001125, 10.7303581)
  3245. o476.Parent = o475
  3246. o476.MeshId = "http://www.roblox.com/asset/?id=315518694 "
  3247. o476.TextureId = "http://www.roblox.com/asset/?id=315518757 "
  3248. o476.MeshType = Enum.MeshType.FileMesh
  3249. o478.Name = "AccessoryWeld"
  3250. o478.Parent = o475
  3251. o478.C0 = CFrame.new(5.96037353e-08, 0.299999714, 0.149727643, 1, -6.83440315e-31, 0, 6.83440315e-31, 1, -0, 0, 0, 1)
  3252. o478.C1 = CFrame.new(0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3253. o478.Part0 = o475
  3254. o478.Part1 = o463
  3255. o480.Parent = o440
  3256. o480.HeadColor = BrickColor.new("Light orange")
  3257. o480.LeftArmColor = BrickColor.new("Light orange")
  3258. o480.LeftLegColor = BrickColor.new("Light orange")
  3259. o480.RightArmColor = BrickColor.new("Light orange")
  3260. o480.RightLegColor = BrickColor.new("Light orange")
  3261. o480.TorsoColor = BrickColor.new("Light orange")
  3262. o481.Name = "Shirt"
  3263. o481.Parent = o440
  3264. o481.ShirtTemplate = "http://www.roblox.com/asset/?id=2146593171"
  3265. o482.Name = "Pants"
  3266. o482.Parent = o440
  3267. o482.PantsTemplate = "http://www.roblox.com/asset/?id=2688156990"
  3268. o483.Name = "BanHammar"
  3269. o483.Parent = o440
  3270. o483.TextureId = "http://www.roblox.com/asset/?id=10684453"
  3271. o483.GripPos = Vector3.new(0, -1, 0)
  3272. o484.Name = "Handle"
  3273. o484.Parent = o483
  3274. o484.BrickColor = BrickColor.new("Dark stone grey")
  3275. o484.Position = Vector3.new(174.804321, 5.53989458, 10.9165268)
  3276. o484.Rotation = Vector3.new(24.3600006, 11.4200001, -18.2399998)
  3277. o484.Anchored = true
  3278. o484.FormFactor = Enum.FormFactor.Plate
  3279. o484.Size = Vector3.new(1, 5.20000029, 1)
  3280. o484.CFrame = CFrame.new(174.804321, 5.53989458, 10.9165268, 0.93096751, 0.30672428, 0.19803977, -0.207502678, 0.890807927, -0.404232681, -0.300403386, 0.335233867, 0.892959118)
  3281. o484.BottomSurface = Enum.SurfaceType.Smooth
  3282. o484.TopSurface = Enum.SurfaceType.Smooth
  3283. o484.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3284. o484.Position = Vector3.new(174.804321, 5.53989458, 10.9165268)
  3285. o485.Parent = o484
  3286. o485.MeshId = "http://www.roblox.com/asset/?id=10604848"
  3287. o485.Scale = Vector3.new(0.5, 0.5, 0.5)
  3288. o485.TextureId = "http://www.roblox.com/asset/?id=10605252"
  3289. o485.MeshType = Enum.MeshType.FileMesh
  3290. o487.Parent = o483
  3291. o487.AnimationId = "http://www.roblox.com/twohandswordwithswingout-item?id=32659706"
  3292. mas.Parent = workspace
  3293. mas:MakeJoints()
  3294. local mas1 = mas:GetChildren()
  3295. for i=1,#mas1 do
  3296. mas1[i].Parent = workspace
  3297. ypcall(function() mas1[i]:MakeJoints() end)
  3298. end
  3299. mas:Destroy()
  3300. for i=1,#cors do
  3301. coroutine.resume(cors[i])
  3302. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement