Advertisement
sneakydodge123

rick

Sep 3rd, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 170.73 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,game,owner = owner,game
  3. local RealPlayer = Player
  4. do
  5. print("FE Compatibility code by Mokiros")
  6. local rp = RealPlayer
  7. script.Parent = rp.Character
  8.  
  9. --RemoteEvent for communicating
  10. local Event = Instance.new("RemoteEvent")
  11. Event.Name = "UserInput_Event"
  12.  
  13. --Fake event to make stuff like Mouse.KeyDown work
  14. local function fakeEvent()
  15. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  16. t.connect = t.Connect
  17. return t
  18. end
  19.  
  20. --Creating fake input objects with fake variables
  21. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  22. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  23. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  24. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  25. end}
  26. --Merged 2 functions into one by checking amount of arguments
  27. CAS.UnbindAction = CAS.BindAction
  28.  
  29. --This function will trigger the events that have been :Connect()'ed
  30. local function te(self,ev,...)
  31. local t = m[ev]
  32. if t and t._fakeEvent then
  33. for _,f in pairs(t.Functions) do
  34. f(...)
  35. end
  36. end
  37. end
  38. m.TrigEvent = te
  39. UIS.TrigEvent = te
  40.  
  41. Event.OnServerEvent:Connect(function(plr,io)
  42. if plr~=rp then return end
  43. m.Target = io.Target
  44. m.Hit = io.Hit
  45. if not io.isMouse then
  46. local b = io.UserInputState == Enum.UserInputState.Begin
  47. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  48. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  49. end
  50. for _,t in pairs(CAS.Actions) do
  51. for _,k in pairs(t.Keys) do
  52. if k==io.KeyCode then
  53. t.Function(t.Name,io.UserInputState,io)
  54. end
  55. end
  56. end
  57. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  58. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  59. end
  60. end)
  61. Event.Parent = NLS([==[
  62. local Player = game:GetService("Players").LocalPlayer
  63. local Event = script:WaitForChild("UserInput_Event")
  64.  
  65. local Mouse = Player:GetMouse()
  66. local UIS = game:GetService("UserInputService")
  67. local input = function(io,a)
  68. if a then return end
  69. --Since InputObject is a client-side instance, we create and pass table instead
  70. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  71. end
  72. UIS.InputBegan:Connect(input)
  73. UIS.InputEnded:Connect(input)
  74.  
  75. local h,t
  76. --Give the server mouse data 30 times every second, but only if the values changed
  77. --If player is not moving their mouse, client won't fire events
  78. while wait(1/30) do
  79. if h~=Mouse.Hit or t~=Mouse.Target then
  80. h,t=Mouse.Hit,Mouse.Target
  81. Event:FireServer({isMouse=true,Target=t,Hit=h})
  82. end
  83. end]==],Player.Character)
  84.  
  85. ----Sandboxed game object that allows the usage of client-side methods and services
  86. --Real game object
  87. local _rg = game
  88.  
  89. --Metatable for fake service
  90. local fsmt = {
  91. __index = function(self,k)
  92. local s = rawget(self,"_RealService")
  93. if s then return s[k] end
  94. end,
  95. __newindex = function(self,k,v)
  96. local s = rawget(self,"_RealService")
  97. if s then s[k]=v end
  98. end,
  99. __call = function(self,...)
  100. local s = rawget(self,"_RealService")
  101. if s then return s(...) end
  102. end
  103. }
  104. local function FakeService(t,RealService)
  105. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  106. return setmetatable(t,fsmt)
  107. end
  108.  
  109. --Fake game object
  110. local g = {
  111. GetService = function(self,s)
  112. return self[s]
  113. end,
  114. Players = FakeService({
  115. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  116. },"Players"),
  117. UserInputService = FakeService(UIS,"UserInputService"),
  118. ContextActionService = FakeService(CAS,"ContextActionService"),
  119. }
  120. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  121. g.service = g.GetService
  122.  
  123. g.RunService = FakeService({
  124. RenderStepped = _rg:GetService("RunService").Heartbeat,
  125. BindToRenderStep = function(self,name,_,fun)
  126. self._btrs[name] = self.Heartbeat:Connect(fun)
  127. end,
  128. UnbindFromRenderStep = function(self,name)
  129. self._btrs[name]:Disconnect()
  130. end,
  131. },"RunService")
  132.  
  133. setmetatable(g,{
  134. __index=function(self,s)
  135. return _rg:GetService(s) or typeof(_rg[s])=="function"
  136. and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  137. end,
  138. __newindex = fsmt.__newindex,
  139. __call = fsmt.__call
  140. })
  141. --Changing owner to fake player object to support owner:GetMouse()
  142. game,owner = g,g.Players.LocalPlayer
  143. end
  144.  
  145.  
  146.  
  147. --Made by N3xul.
  148. -- | \ | |___ \ | | / ____| (_) | |
  149. -- | \| | __) |_ ___ _| | | (___ ___ _ __ _ _ __ | |_
  150. -- | . ` ||__ <\ \/ / | | | | \___ \ / __| '__| | '_ \| __|
  151. -- | |\ |___) |> <| |_| | | ____) | (__| | | | |_) | |_
  152. -- |_| \_|____//_/\_\\__,_|_| |_____/ \___|_| |_| .__/ \__|
  153. -- | |
  154. -- |_|
  155. local children = game.Workspace:GetChildren()
  156. for _, child in pairs(children) do
  157. for _, child in pairs(child:GetChildren()) do
  158. table.insert(children, child)
  159. end
  160.  
  161. if child.ClassName ~= "Terrain" and child:IsA("BasePart") then
  162. child:Destroy()
  163. end
  164. end
  165.  
  166. for i,v in pairs(Workspace:GetChildren()) do
  167. if v.Name == 'Terrain' then
  168. v:Clear()
  169.  
  170. end
  171.  
  172. end
  173. local runDummyScript = function(f,scri)
  174. local oldenv = getfenv(f)
  175. local newenv = setmetatable({}, {
  176. __index = function(_, k)
  177. if k:lower() == 'script' then
  178. return scri
  179. else
  180. return oldenv[k]
  181. end
  182. end
  183. })
  184. setfenv(f, newenv)
  185. ypcall(function() f() end)
  186. end
  187. cors = {}
  188. mas = Instance.new("Model",game:GetService("Lighting"))
  189. mas.Name = "CompiledModel"
  190. o1 = Instance.new("Model")
  191. o2 = Instance.new("SpawnLocation")
  192. o3 = Instance.new("Part")
  193. o4 = Instance.new("Part")
  194. o5 = Instance.new("Part")
  195. o6 = Instance.new("Decal")
  196. o7 = Instance.new("Model")
  197. o8 = Instance.new("Part")
  198. o9 = Instance.new("Decal")
  199. o10 = Instance.new("Decal")
  200. o11 = Instance.new("SurfaceLight")
  201. o12 = Instance.new("SpecialMesh")
  202. o13 = Instance.new("Model")
  203. o14 = Instance.new("Part")
  204. o15 = Instance.new("SpecialMesh")
  205. o16 = Instance.new("Model")
  206. o17 = Instance.new("Part")
  207. o18 = Instance.new("SpecialMesh")
  208. o19 = Instance.new("Decal")
  209. o20 = Instance.new("Part")
  210. o21 = Instance.new("Part")
  211. o22 = Instance.new("Part")
  212. o23 = Instance.new("Part")
  213. o24 = Instance.new("Part")
  214. o25 = Instance.new("Humanoid")
  215. o26 = Instance.new("Pants")
  216. o27 = Instance.new("Shirt")
  217. o28 = Instance.new("Model")
  218. o29 = Instance.new("Part")
  219. o30 = Instance.new("SpecialMesh")
  220. o31 = Instance.new("Decal")
  221. o32 = Instance.new("Part")
  222. o33 = Instance.new("Part")
  223. o34 = Instance.new("Part")
  224. o35 = Instance.new("Part")
  225. o36 = Instance.new("Part")
  226. o37 = Instance.new("Humanoid")
  227. o38 = Instance.new("Pants")
  228. o39 = Instance.new("Shirt")
  229. o40 = Instance.new("Part")
  230. o41 = Instance.new("SpecialMesh")
  231. o42 = Instance.new("Model")
  232. o43 = Instance.new("Part")
  233. o44 = Instance.new("CylinderMesh")
  234. o45 = Instance.new("Part")
  235. o46 = Instance.new("CylinderMesh")
  236. o47 = Instance.new("Part")
  237. o48 = Instance.new("CylinderMesh")
  238. o49 = Instance.new("Part")
  239. o50 = Instance.new("CylinderMesh")
  240. o51 = Instance.new("Part")
  241. o52 = Instance.new("CylinderMesh")
  242. o53 = Instance.new("Part")
  243. o54 = Instance.new("SpecialMesh")
  244. o55 = Instance.new("Part")
  245. o56 = Instance.new("SpecialMesh")
  246. o57 = Instance.new("Part")
  247. o58 = Instance.new("CylinderMesh")
  248. o59 = Instance.new("Model")
  249. o60 = Instance.new("Part")
  250. o61 = Instance.new("CylinderMesh")
  251. o62 = Instance.new("Part")
  252. o63 = Instance.new("CylinderMesh")
  253. o64 = Instance.new("Part")
  254. o65 = Instance.new("CylinderMesh")
  255. o66 = Instance.new("Part")
  256. o67 = Instance.new("CylinderMesh")
  257. o68 = Instance.new("Part")
  258. o69 = Instance.new("SpecialMesh")
  259. o70 = Instance.new("Part")
  260. o71 = Instance.new("SpecialMesh")
  261. o72 = Instance.new("Part")
  262. o73 = Instance.new("CylinderMesh")
  263. o74 = Instance.new("Part")
  264. o75 = Instance.new("CylinderMesh")
  265. o76 = Instance.new("Model")
  266. o77 = Instance.new("Part")
  267. o78 = Instance.new("Part")
  268. o79 = Instance.new("Part")
  269. o80 = Instance.new("Part")
  270. o81 = Instance.new("Part")
  271. o82 = Instance.new("Part")
  272. o83 = Instance.new("Part")
  273. o84 = Instance.new("Part")
  274. o85 = Instance.new("Part")
  275. o86 = Instance.new("Part")
  276. o87 = Instance.new("Part")
  277. o88 = Instance.new("Part")
  278. o89 = Instance.new("ParticleEmitter")
  279. o90 = Instance.new("Part")
  280. o91 = Instance.new("SurfaceGui")
  281. o92 = Instance.new("TextLabel")
  282. o93 = Instance.new("Part")
  283. o94 = Instance.new("Part")
  284. o95 = Instance.new("Part")
  285. o96 = Instance.new("Part")
  286. o97 = Instance.new("Part")
  287. o98 = Instance.new("SurfaceGui")
  288. o99 = Instance.new("TextLabel")
  289. o100 = Instance.new("Part")
  290. o101 = Instance.new("Model")
  291. o102 = Instance.new("Part")
  292. o103 = Instance.new("Part")
  293. o104 = Instance.new("SpecialMesh")
  294. o105 = Instance.new("Decal")
  295. o106 = Instance.new("Part")
  296. o107 = Instance.new("Part")
  297. o108 = Instance.new("Part")
  298. o109 = Instance.new("Part")
  299. o110 = Instance.new("Part")
  300. o111 = Instance.new("ShirtGraphic")
  301. o112 = Instance.new("Pants")
  302. o113 = Instance.new("Shirt")
  303. o114 = Instance.new("Part")
  304. o115 = Instance.new("SurfaceGui")
  305. o116 = Instance.new("TextLabel")
  306. o117 = Instance.new("Part")
  307. o118 = Instance.new("SpecialMesh")
  308. o119 = Instance.new("BodyColors")
  309. o120 = Instance.new("Humanoid")
  310. o121 = Instance.new("SpawnLocation")
  311. o122 = Instance.new("SpawnLocation")
  312. o123 = Instance.new("SpawnLocation")
  313. o124 = Instance.new("SpawnLocation")
  314. o125 = Instance.new("SpawnLocation")
  315. o126 = Instance.new("SpawnLocation")
  316. o127 = Instance.new("SpawnLocation")
  317. o128 = Instance.new("SpawnLocation")
  318. o129 = Instance.new("SpawnLocation")
  319. o130 = Instance.new("SpawnLocation")
  320. o131 = Instance.new("SpawnLocation")
  321. o132 = Instance.new("SpawnLocation")
  322. o133 = Instance.new("SpawnLocation")
  323. o134 = Instance.new("Part")
  324. o135 = Instance.new("Decal")
  325. o136 = Instance.new("Part")
  326. o137 = Instance.new("Part")
  327. o138 = Instance.new("Decal")
  328. o139 = Instance.new("Part")
  329. o140 = Instance.new("Decal")
  330. o141 = Instance.new("Part")
  331. o142 = Instance.new("Decal")
  332. o143 = Instance.new("Part")
  333. o144 = Instance.new("BlockMesh")
  334. o145 = Instance.new("Decal")
  335. o146 = Instance.new("Part")
  336. o147 = Instance.new("Decal")
  337. o148 = Instance.new("Part")
  338. o149 = Instance.new("Decal")
  339. o150 = Instance.new("Part")
  340. o151 = Instance.new("Part")
  341. o152 = Instance.new("Decal")
  342. o153 = Instance.new("Part")
  343. o154 = Instance.new("Decal")
  344. o155 = Instance.new("Part")
  345. o156 = Instance.new("Decal")
  346. o157 = Instance.new("Part")
  347. o158 = Instance.new("Decal")
  348. o159 = Instance.new("Part")
  349. o160 = Instance.new("Decal")
  350. o161 = Instance.new("Part")
  351. o162 = Instance.new("Part")
  352. o163 = Instance.new("Decal")
  353. o164 = Instance.new("Part")
  354. o165 = Instance.new("Decal")
  355. o166 = Instance.new("Part")
  356. o167 = Instance.new("Decal")
  357. o168 = Instance.new("Part")
  358. o169 = Instance.new("Decal")
  359. o170 = Instance.new("Part")
  360. o171 = Instance.new("Decal")
  361. o172 = Instance.new("Part")
  362. o173 = Instance.new("Decal")
  363. o174 = Instance.new("Part")
  364. o175 = Instance.new("Decal")
  365. o176 = Instance.new("Part")
  366. o177 = Instance.new("Decal")
  367. o178 = Instance.new("Part")
  368. o179 = Instance.new("Decal")
  369. o180 = Instance.new("Part")
  370. o181 = Instance.new("Decal")
  371. o182 = Instance.new("Part")
  372. o183 = Instance.new("Decal")
  373. o184 = Instance.new("Part")
  374. o185 = Instance.new("Decal")
  375. o186 = Instance.new("Part")
  376. o187 = Instance.new("Decal")
  377. o188 = Instance.new("Part")
  378. o189 = Instance.new("Decal")
  379. o190 = Instance.new("Part")
  380. o191 = Instance.new("Decal")
  381. o192 = Instance.new("Part")
  382. o193 = Instance.new("Part")
  383. o194 = Instance.new("Part")
  384. o195 = Instance.new("Part")
  385. o196 = Instance.new("Part")
  386. o197 = Instance.new("Part")
  387. o198 = Instance.new("Part")
  388. o199 = Instance.new("Part")
  389. o200 = Instance.new("Part")
  390. o201 = Instance.new("Part")
  391. o202 = Instance.new("Part")
  392. o203 = Instance.new("Part")
  393. o204 = Instance.new("Part")
  394. o205 = Instance.new("Part")
  395. o206 = Instance.new("Part")
  396. o207 = Instance.new("Part")
  397. o208 = Instance.new("Part")
  398. o209 = Instance.new("Part")
  399. o210 = Instance.new("Part")
  400. o211 = Instance.new("Part")
  401. o212 = Instance.new("Part")
  402. o213 = Instance.new("Part")
  403. o214 = Instance.new("Part")
  404. o215 = Instance.new("Part")
  405. o216 = Instance.new("Part")
  406. o217 = Instance.new("Part")
  407. o218 = Instance.new("Part")
  408. o219 = Instance.new("Part")
  409. o220 = Instance.new("Part")
  410. o221 = Instance.new("Part")
  411. o222 = Instance.new("Part")
  412. o223 = Instance.new("Part")
  413. o224 = Instance.new("Part")
  414. o225 = Instance.new("Part")
  415. o226 = Instance.new("Part")
  416. o227 = Instance.new("Part")
  417. o228 = Instance.new("Part")
  418. o229 = Instance.new("Part")
  419. o230 = Instance.new("Part")
  420. o231 = Instance.new("Part")
  421. o232 = Instance.new("Part")
  422. o233 = Instance.new("Part")
  423. o234 = Instance.new("Part")
  424. o235 = Instance.new("Part")
  425. o236 = Instance.new("Part")
  426. o237 = Instance.new("Part")
  427. o238 = Instance.new("Part")
  428. o239 = Instance.new("Part")
  429. o240 = Instance.new("Part")
  430. o241 = Instance.new("Part")
  431. o242 = Instance.new("Part")
  432. o243 = Instance.new("Part")
  433. o244 = Instance.new("Part")
  434. o245 = Instance.new("Part")
  435. o246 = Instance.new("Part")
  436. o247 = Instance.new("Part")
  437. o1.Name = "N3xul Map - Rick and Morty Map"
  438. o1.Parent = mas
  439. o2.Name = "Spawn"
  440. o2.Parent = o1
  441. o2.Transparency = 1
  442. o2.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  443. o2.Anchored = true
  444. o2.Locked = true
  445. o2.Size = Vector3.new(6, 0.0500000007, 6)
  446. o2.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  447. o2.TopSurface = Enum.SurfaceType.Smooth
  448. o2.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  449. o3.Name = "Hitbox"
  450. o3.Parent = o1
  451. o3.Material = Enum.Material.SmoothPlastic
  452. o3.BrickColor = BrickColor.new("Really red")
  453. o3.Transparency = 1
  454. o3.Position = Vector3.new(83.6963196, 145.118362, 110.550209)
  455. o3.Rotation = Vector3.new(0, 50, 0)
  456. o3.Anchored = true
  457. o3.Locked = true
  458. o3.Size = Vector3.new(32.4000092, 32.1100006, 0.0500000007)
  459. o3.CFrame = CFrame.new(83.6963196, 145.118362, 110.550209, 0.642792702, 1.23988841e-07, 0.766040266, 4.32004254e-06, 1, -3.78685263e-06, -0.766040266, 5.74348815e-06, 0.642792702)
  460. o3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  461. o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  462. o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  463. o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  464. o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  465. o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  466. o3.Color = Color3.new(1, 0, 0)
  467. o3.Position = Vector3.new(83.6963196, 145.118362, 110.550209)
  468. o3.Orientation = Vector3.new(0, 50, 0)
  469. o3.Color = Color3.new(1, 0, 0)
  470. o4.Name = "Hitbox"
  471. o4.Parent = o1
  472. o4.Material = Enum.Material.SmoothPlastic
  473. o4.BrickColor = BrickColor.new("Really red")
  474. o4.Transparency = 1
  475. o4.Position = Vector3.new(126.905197, 145.06839, 92.0195389)
  476. o4.Rotation = Vector3.new(0, -20, 0)
  477. o4.Anchored = true
  478. o4.Locked = true
  479. o4.Size = Vector3.new(16.9199886, 32.25, 0.0500000007)
  480. o4.CFrame = CFrame.new(126.905197, 145.06839, 92.0195389, 0.939691067, 1.24192724e-07, -0.342025012, -2.08114716e-06, 1, -5.35470281e-06, 0.342025012, 5.74356955e-06, 0.939691067)
  481. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  482. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  483. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  484. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  485. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  486. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  487. o4.Color = Color3.new(1, 0, 0)
  488. o4.Position = Vector3.new(126.905197, 145.06839, 92.0195389)
  489. o4.Orientation = Vector3.new(0, -20, 0)
  490. o4.Color = Color3.new(1, 0, 0)
  491. o5.Name = "mountain"
  492. o5.Parent = o1
  493. o5.BrickColor = BrickColor.new("Pastel Blue")
  494. o5.Transparency = 1
  495. o5.Position = Vector3.new(-140.519592, 28.0617447, 620.008118)
  496. o5.Rotation = Vector3.new(180, 46, -180)
  497. o5.Anchored = true
  498. o5.Locked = true
  499. o5.FormFactor = Enum.FormFactor.Custom
  500. o5.Size = Vector3.new(80.2000046, 56.5999985, 4)
  501. o5.CFrame = CFrame.new(-140.519592, 28.0617447, 620.008118, -0.694663167, 4.36680457e-05, 0.719335198, 3.80000056e-05, 1, -2.40094523e-05, -0.719335198, 1.06562566e-05, -0.694663167)
  502. o5.BottomSurface = Enum.SurfaceType.Smooth
  503. o5.TopSurface = Enum.SurfaceType.Smooth
  504. o5.Color = Color3.new(0.501961, 0.733333, 0.858824)
  505. o5.Position = Vector3.new(-140.519592, 28.0617447, 620.008118)
  506. o5.Orientation = Vector3.new(0, 134, 0)
  507. o5.Color = Color3.new(0.501961, 0.733333, 0.858824)
  508. o6.Parent = o5
  509. o6.Texture = "http://www.roblox.com/asset/?id=108407248"
  510. o6.Face = Enum.NormalId.Back
  511. o7.Name = "Rick and Morty"
  512. o7.Parent = o1
  513. o8.Name = "Teleporter"
  514. o8.Parent = o7
  515. o8.Material = Enum.Material.SmoothPlastic
  516. o8.BrickColor = BrickColor.new("Lime green")
  517. o8.Transparency = 1
  518. o8.Position = Vector3.new(120.748367, 133.792923, 91.7276993)
  519. o8.Rotation = Vector3.new(180, 0, -180)
  520. o8.Anchored = true
  521. o8.CanCollide = false
  522. o8.Locked = true
  523. o8.Size = Vector3.new(19.9600029, 16.5, 0.0500000007)
  524. o8.CFrame = CFrame.new(120.748367, 133.792923, 91.7276993, -1, 3.10008691e-05, 3.09991301e-05, 3.09999996e-05, 1, -2.80009608e-05, -3.09999996e-05, -2.80000004e-05, -1)
  525. o8.Color = Color3.new(0, 1, 0)
  526. o8.Position = Vector3.new(120.748367, 133.792923, 91.7276993)
  527. o8.Orientation = Vector3.new(0, 180, 0)
  528. o8.Color = Color3.new(0, 1, 0)
  529. o9.Parent = o8
  530. o9.Texture = "rbxassetid://383899755"
  531. o10.Parent = o8
  532. o10.Texture = "rbxassetid://383899755"
  533. o10.Face = Enum.NormalId.Back
  534. o11.Parent = o8
  535. o11.Color = Color3.new(0, 1, 0.0669856)
  536. o11.Range = 5
  537. o11.Color = Color3.new(0, 1, 0.0669856)
  538. o12.Parent = o8
  539. o12.MeshType = Enum.MeshType.Sphere
  540. o13.Name = "Morty"
  541. o13.Parent = o7
  542. o14.Name = "Handle"
  543. o14.Parent = o13
  544. o14.Position = Vector3.new(122.43634, 133.033493, 94.873848)
  545. o14.Rotation = Vector3.new(-180, 25, -180)
  546. o14.Anchored = true
  547. o14.CanCollide = false
  548. o14.Locked = true
  549. o14.FormFactor = Enum.FormFactor.Symmetric
  550. o14.Size = Vector3.new(1, 1, 2)
  551. o14.CFrame = CFrame.new(122.43634, 133.033493, 94.873848, -0.906340718, 0, 0.422547847, 0, 1, 0, -0.422547847, 0, -0.906340718)
  552. o14.BottomSurface = Enum.SurfaceType.Smooth
  553. o14.TopSurface = Enum.SurfaceType.Smooth
  554. o14.Position = Vector3.new(122.43634, 133.033493, 94.873848)
  555. o14.Orientation = Vector3.new(0, 155, 0)
  556. o15.Parent = o14
  557. o15.MeshId = "http://www.roblox.com/asset/?id=15730710"
  558. o15.TextureId = "http://www.roblox.com/asset/?id=20642711"
  559. o15.MeshType = Enum.MeshType.FileMesh
  560. o16.Name = " "
  561. o16.Parent = o13
  562. o17.Name = "Head"
  563. o17.Parent = o16
  564. o17.Material = Enum.Material.SmoothPlastic
  565. o17.BrickColor = BrickColor.new("Light orange")
  566. o17.Position = Vector3.new(122.42955, 132.675385, 94.9203568)
  567. o17.Rotation = Vector3.new(180, 21.3700008, -179.990005)
  568. o17.Anchored = true
  569. o17.Locked = true
  570. o17.FormFactor = Enum.FormFactor.Symmetric
  571. o17.Size = Vector3.new(1.63201141, 0.816005707, 0.816005707)
  572. o17.CFrame = CFrame.new(122.42955, 132.675385, 94.9203568, -0.93123585, 0.000101429985, 0.364416987, 0.000107999986, 1, -2.35038829e-06, -0.364416957, 3.71682654e-05, -0.93123585)
  573. o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  574. o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  575. o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  576. o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  577. o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  578. o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  579. o17.Color = Color3.new(0.917647, 0.721569, 0.572549)
  580. o17.Position = Vector3.new(122.42955, 132.675385, 94.9203568)
  581. o17.Orientation = Vector3.new(0, 158.630005, 0.00999999978)
  582. o17.Color = Color3.new(0.917647, 0.721569, 0.572549)
  583. o18.Parent = o17
  584. o18.Scale = Vector3.new(1.25, 1.25, 1.25)
  585. o18.Scale = Vector3.new(1.25, 1.25, 1.25)
  586. o19.Parent = o17
  587. o19.Texture = "http://www.roblox.com/asset/?id=530775759"
  588. o20.Name = "Left Arm"
  589. o20.Parent = o16
  590. o20.Material = Enum.Material.SmoothPlastic
  591. o20.BrickColor = BrickColor.new("Pastel brown")
  592. o20.Position = Vector3.new(123.569412, 132.281342, 95.1863403)
  593. o20.Rotation = Vector3.new(46.2299995, 33.8199997, 137.979996)
  594. o20.Anchored = true
  595. o20.Locked = true
  596. o20.FormFactor = Enum.FormFactor.Symmetric
  597. o20.Size = Vector3.new(0.816005707, 1.63201141, 0.816005707)
  598. o20.CFrame = CFrame.new(123.569412, 132.281342, 95.1863403, -0.617185295, -0.556116164, 0.556612194, 0.164525077, -0.782998204, -0.599871039, 0.769424379, -0.278654963, 0.574750006)
  599. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  600. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  601. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  602. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  603. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  604. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  605. o20.Color = Color3.new(1, 0.8, 0.6)
  606. o20.Position = Vector3.new(123.569412, 132.281342, 95.1863403)
  607. o20.Orientation = Vector3.new(36.8600006, 44.0800018, 168.130005)
  608. o20.Color = Color3.new(1, 0.8, 0.6)
  609. o21.Name = "Left Leg"
  610. o21.Parent = o16
  611. o21.Material = Enum.Material.SmoothPlastic
  612. o21.BrickColor = BrickColor.new("Pastel brown")
  613. o21.Position = Vector3.new(122.808762, 129.819397, 95.0688553)
  614. o21.Rotation = Vector3.new(180, 21.3700008, -179.990005)
  615. o21.RotVelocity = Vector3.new(5.20220578e-09, -7.43822781e-10, 5.48922108e-05)
  616. o21.Velocity = Vector3.new(0.00111119798, 0.00933332648, 1.79396409e-09)
  617. o21.Anchored = true
  618. o21.Locked = true
  619. o21.FormFactor = Enum.FormFactor.Symmetric
  620. o21.Size = Vector3.new(0.816005707, 1.63201141, 0.816005707)
  621. o21.CFrame = CFrame.new(122.808762, 129.819397, 95.0688553, -0.93123585, 0.000101429985, 0.364416987, 0.000107999986, 1, -2.35038829e-06, -0.364416957, 3.71682654e-05, -0.93123585)
  622. o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  623. o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  624. o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  625. o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  626. o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  627. o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  628. o21.Color = Color3.new(1, 0.8, 0.6)
  629. o21.Position = Vector3.new(122.808762, 129.819397, 95.0688553)
  630. o21.Orientation = Vector3.new(0, 158.630005, 0.00999999978)
  631. o21.Color = Color3.new(1, 0.8, 0.6)
  632. o22.Name = "Right Arm"
  633. o22.Parent = o16
  634. o22.Material = Enum.Material.SmoothPlastic
  635. o22.BrickColor = BrickColor.new("Pastel brown")
  636. o22.Position = Vector3.new(121.449738, 131.45137, 94.4743423)
  637. o22.Rotation = Vector3.new(-176.270004, 21.0599995, 169.720001)
  638. o22.Anchored = true
  639. o22.Locked = true
  640. o22.FormFactor = Enum.FormFactor.Symmetric
  641. o22.Size = Vector3.new(0.816005707, 1.63201141, 0.816005707)
  642. o22.CFrame = CFrame.new(121.449738, 131.45137, 94.4743423, -0.918228626, -0.166577399, 0.3593162, -0.15511094, 0.986028433, 0.0607340485, -0.364412874, 3.38725076e-05, -0.931237519)
  643. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  644. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  645. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  646. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  647. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  648. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  649. o22.Color = Color3.new(1, 0.8, 0.6)
  650. o22.Position = Vector3.new(121.449738, 131.45137, 94.4743423)
  651. o22.Orientation = Vector3.new(-3.48000002, 158.899994, -8.93999958)
  652. o22.Color = Color3.new(1, 0.8, 0.6)
  653. o23.Name = "Right Leg"
  654. o23.Parent = o16
  655. o23.Material = Enum.Material.SmoothPlastic
  656. o23.BrickColor = BrickColor.new("Pastel brown")
  657. o23.Position = Vector3.new(122.048904, 129.819397, 94.771431)
  658. o23.Rotation = Vector3.new(178.820007, 27.7700005, -176.779999)
  659. o23.Anchored = true
  660. o23.Locked = true
  661. o23.FormFactor = Enum.FormFactor.Symmetric
  662. o23.Size = Vector3.new(0.816005707, 1.63201141, 0.816005707)
  663. o23.CFrame = CFrame.new(122.048904, 129.819397, 94.771431, -0.883421719, 0.0496372618, 0.465942472, 0.0465319864, 0.998751462, -0.0181737654, -0.466262817, 0.00562612899, -0.884628415)
  664. o23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  665. o23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  666. o23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  667. o23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  668. o23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  669. o23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  670. o23.Color = Color3.new(1, 0.8, 0.6)
  671. o23.Position = Vector3.new(122.048904, 129.819397, 94.771431)
  672. o23.Orientation = Vector3.new(1.03999996, 152.220001, 2.67000008)
  673. o23.Color = Color3.new(1, 0.8, 0.6)
  674. o24.Name = "Torso"
  675. o24.Parent = o16
  676. o24.Material = Enum.Material.SmoothPlastic
  677. o24.BrickColor = BrickColor.new("Pastel brown")
  678. o24.Position = Vector3.new(122.42955, 131.451401, 94.9203568)
  679. o24.Rotation = Vector3.new(180, 21.3700008, -179.990005)
  680. o24.Anchored = true
  681. o24.Locked = true
  682. o24.FormFactor = Enum.FormFactor.Symmetric
  683. o24.Size = Vector3.new(1.63201141, 1.63201141, 0.816005707)
  684. o24.CFrame = CFrame.new(122.42955, 131.451401, 94.9203568, -0.93123585, 0.000101429985, 0.364416987, 0.000107999986, 1, -2.35038829e-06, -0.364416957, 3.71682654e-05, -0.93123585)
  685. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  686. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  687. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  688. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  689. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  690. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  691. o24.Color = Color3.new(1, 0.8, 0.6)
  692. o24.Position = Vector3.new(122.42955, 131.451401, 94.9203568)
  693. o24.Orientation = Vector3.new(0, 158.630005, 0.00999999978)
  694. o24.Color = Color3.new(1, 0.8, 0.6)
  695. o25.Parent = o16
  696. o25.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  697. o25.RightLeg = o23
  698. o25.LeftLeg = o21
  699. o25.Torso = o24
  700. o25.Health = 0
  701. o25.MaxHealth = 0
  702. o26.Name = "Pants"
  703. o26.Parent = o16
  704. o26.PantsTemplate = "http://www.roblox.com/asset/?id=189626615"
  705. o27.Name = "Shirt"
  706. o27.Parent = o16
  707. o27.ShirtTemplate = "http://www.roblox.com/asset/?id=189626730"
  708. o28.Name = "Rick"
  709. o28.Parent = o7
  710. o29.Name = "head"
  711. o29.Parent = o28
  712. o29.Material = Enum.Material.SmoothPlastic
  713. o29.BrickColor = BrickColor.new("Brick yellow")
  714. o29.Position = Vector3.new(118.278183, 133.483276, 94.3281326)
  715. o29.Rotation = Vector3.new(-180, 0, -180)
  716. o29.Anchored = true
  717. o29.Locked = true
  718. o29.FormFactor = Enum.FormFactor.Symmetric
  719. o29.Size = Vector3.new(2, 1, 1)
  720. o29.CFrame = CFrame.new(118.278183, 133.483276, 94.3281326, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  721. o29.TopSurface = Enum.SurfaceType.Smooth
  722. o29.Color = Color3.new(0.843137, 0.772549, 0.603922)
  723. o29.Position = Vector3.new(118.278183, 133.483276, 94.3281326)
  724. o29.Orientation = Vector3.new(0, 180, 0)
  725. o29.Color = Color3.new(0.843137, 0.772549, 0.603922)
  726. o30.Parent = o29
  727. o30.Scale = Vector3.new(1.25, 1.25, 1.25)
  728. o30.Scale = Vector3.new(1.25, 1.25, 1.25)
  729. o31.Parent = o29
  730. o31.Texture = "http://www.roblox.com/asset/?id=775503445"
  731. o32.Name = "Torso"
  732. o32.Parent = o28
  733. o32.Material = Enum.Material.SmoothPlastic
  734. o32.BrickColor = BrickColor.new("Brick yellow")
  735. o32.Position = Vector3.new(118.278183, 131.983307, 94.3281326)
  736. o32.Rotation = Vector3.new(-180, 0, -180)
  737. o32.Anchored = true
  738. o32.Locked = true
  739. o32.FormFactor = Enum.FormFactor.Symmetric
  740. o32.Size = Vector3.new(2, 2, 1)
  741. o32.CFrame = CFrame.new(118.278183, 131.983307, 94.3281326, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  742. o32.Color = Color3.new(0.843137, 0.772549, 0.603922)
  743. o32.Position = Vector3.new(118.278183, 131.983307, 94.3281326)
  744. o32.Orientation = Vector3.new(0, 180, 0)
  745. o32.Color = Color3.new(0.843137, 0.772549, 0.603922)
  746. o33.Name = "Left Leg"
  747. o33.Parent = o28
  748. o33.Material = Enum.Material.SmoothPlastic
  749. o33.BrickColor = BrickColor.new("Brick yellow")
  750. o33.Position = Vector3.new(118.778183, 129.983322, 94.3280716)
  751. o33.Rotation = Vector3.new(-180, 0, -180)
  752. o33.Anchored = true
  753. o33.Locked = true
  754. o33.FormFactor = Enum.FormFactor.Symmetric
  755. o33.Size = Vector3.new(1, 2, 1)
  756. o33.CFrame = CFrame.new(118.778183, 129.983322, 94.3280716, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  757. o33.BottomSurface = Enum.SurfaceType.Smooth
  758. o33.Color = Color3.new(0.843137, 0.772549, 0.603922)
  759. o33.Position = Vector3.new(118.778183, 129.983322, 94.3280716)
  760. o33.Orientation = Vector3.new(0, 180, 0)
  761. o33.Color = Color3.new(0.843137, 0.772549, 0.603922)
  762. o34.Name = "Right Leg"
  763. o34.Parent = o28
  764. o34.Material = Enum.Material.SmoothPlastic
  765. o34.BrickColor = BrickColor.new("Brick yellow")
  766. o34.Position = Vector3.new(117.778137, 129.983322, 94.3280411)
  767. o34.Rotation = Vector3.new(-180, 0, -180)
  768. o34.Anchored = true
  769. o34.Locked = true
  770. o34.FormFactor = Enum.FormFactor.Symmetric
  771. o34.Size = Vector3.new(1, 2, 1)
  772. o34.CFrame = CFrame.new(117.778137, 129.983322, 94.3280411, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  773. o34.BottomSurface = Enum.SurfaceType.Smooth
  774. o34.Color = Color3.new(0.843137, 0.772549, 0.603922)
  775. o34.Position = Vector3.new(117.778137, 129.983322, 94.3280411)
  776. o34.Orientation = Vector3.new(0, 180, 0)
  777. o34.Color = Color3.new(0.843137, 0.772549, 0.603922)
  778. o35.Name = "Right Arm"
  779. o35.Parent = o28
  780. o35.Material = Enum.Material.SmoothPlastic
  781. o35.BrickColor = BrickColor.new("Brick yellow")
  782. o35.Position = Vector3.new(116.778168, 131.983307, 94.3280411)
  783. o35.Rotation = Vector3.new(-180, 0, -180)
  784. o35.Anchored = true
  785. o35.Locked = true
  786. o35.FormFactor = Enum.FormFactor.Symmetric
  787. o35.Size = Vector3.new(1, 2, 1)
  788. o35.CFrame = CFrame.new(116.778168, 131.983307, 94.3280411, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  789. o35.Color = Color3.new(0.843137, 0.772549, 0.603922)
  790. o35.Position = Vector3.new(116.778168, 131.983307, 94.3280411)
  791. o35.Orientation = Vector3.new(0, 180, 0)
  792. o35.Color = Color3.new(0.843137, 0.772549, 0.603922)
  793. o36.Name = "Left Arm"
  794. o36.Parent = o28
  795. o36.Material = Enum.Material.SmoothPlastic
  796. o36.BrickColor = BrickColor.new("Brick yellow")
  797. o36.Position = Vector3.new(119.778168, 131.983307, 94.3280716)
  798. o36.Rotation = Vector3.new(-180, 0, -180)
  799. o36.Anchored = true
  800. o36.Locked = true
  801. o36.FormFactor = Enum.FormFactor.Symmetric
  802. o36.Size = Vector3.new(1, 2, 1)
  803. o36.CFrame = CFrame.new(119.778168, 131.983307, 94.3280716, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  804. o36.Color = Color3.new(0.843137, 0.772549, 0.603922)
  805. o36.Position = Vector3.new(119.778168, 131.983307, 94.3280716)
  806. o36.Orientation = Vector3.new(0, 180, 0)
  807. o36.Color = Color3.new(0.843137, 0.772549, 0.603922)
  808. o37.Parent = o28
  809. o37.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  810. o37.RightLeg = o34
  811. o37.LeftLeg = o33
  812. o37.Torso = o32
  813. o37.Health = 0
  814. o37.MaxHealth = 0
  815. o38.Parent = o28
  816. o38.PantsTemplate = "rbxassetid://305802449"
  817. o39.Parent = o28
  818. o39.ShirtTemplate = "rbxassetid://305802231"
  819. o40.Name = "Handle"
  820. o40.Parent = o28
  821. o40.Material = Enum.Material.SmoothPlastic
  822. o40.BrickColor = BrickColor.new("Pastel Blue")
  823. o40.Position = Vector3.new(118.20842, 133.983276, 93.9323807)
  824. o40.Rotation = Vector3.new(-180, 0, -180)
  825. o40.Anchored = true
  826. o40.CanCollide = false
  827. o40.Locked = true
  828. o40.FormFactor = Enum.FormFactor.Custom
  829. o40.Size = Vector3.new(1.60002756, 2.20000029, 1.99999785)
  830. o40.CFrame = CFrame.new(118.20842, 133.983276, 93.9323807, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  831. o40.BottomSurface = Enum.SurfaceType.Smooth
  832. o40.TopSurface = Enum.SurfaceType.Smooth
  833. o40.Color = Color3.new(0.501961, 0.733333, 0.858824)
  834. o40.Position = Vector3.new(118.20842, 133.983276, 93.9323807)
  835. o40.Orientation = Vector3.new(0, 180, 0)
  836. o40.Color = Color3.new(0.501961, 0.733333, 0.858824)
  837. o41.Parent = o40
  838. o41.MeshId = "http://www.roblox.com/asset/?id=145304686 "
  839. o41.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  840. o41.MeshType = Enum.MeshType.FileMesh
  841. o41.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  842. o42.Name = "Beer 1"
  843. o42.Parent = o28
  844. o43.Name = "Iceshard"
  845. o43.Parent = o42
  846. o43.BrickColor = BrickColor.new("Deep orange")
  847. o43.Position = Vector3.new(116.140335, 129.107986, 93.7861404)
  848. o43.Rotation = Vector3.new(90, 0, -150)
  849. o43.Anchored = true
  850. o43.Locked = true
  851. o43.FormFactor = Enum.FormFactor.Plate
  852. o43.Size = Vector3.new(0.540021002, 0.21600841, 0.540021002)
  853. o43.CFrame = CFrame.new(116.140335, 129.107986, 93.7861404, -0.866025388, 0.500000238, 0, 0, 0, -1, -0.500000238, -0.866025388, 0)
  854. o43.BottomSurface = Enum.SurfaceType.Weld
  855. o43.TopSurface = Enum.SurfaceType.Smooth
  856. o43.Color = Color3.new(1, 0.690196, 0)
  857. o43.Position = Vector3.new(116.140335, 129.107986, 93.7861404)
  858. o43.Orientation = Vector3.new(90, 150, 0)
  859. o43.Color = Color3.new(1, 0.690196, 0)
  860. o44.Parent = o43
  861. o44.Scale = Vector3.new(0.330000013, 0.200000003, 0.330000013)
  862. o44.Scale = Vector3.new(0.330000013, 0.200000003, 0.330000013)
  863. o45.Name = "Iceshard"
  864. o45.Parent = o42
  865. o45.Material = Enum.Material.SmoothPlastic
  866. o45.BrickColor = BrickColor.new("Really black")
  867. o45.Position = Vector3.new(116.302322, 129.107986, 93.5054092)
  868. o45.Rotation = Vector3.new(90, 0, 30)
  869. o45.Anchored = true
  870. o45.Locked = true
  871. o45.FormFactor = Enum.FormFactor.Plate
  872. o45.Size = Vector3.new(0.540021002, 0.43201682, 0.540021002)
  873. o45.CFrame = CFrame.new(116.302322, 129.107986, 93.5054092, 0.866025388, -0.500000238, 0, 0, 0, -1, 0.500000238, 0.866025388, 0)
  874. o45.BottomSurface = Enum.SurfaceType.Weld
  875. o45.TopSurface = Enum.SurfaceType.Smooth
  876. o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  877. o45.Position = Vector3.new(116.302322, 129.107986, 93.5054092)
  878. o45.Orientation = Vector3.new(90, -30, 0)
  879. o45.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  880. o46.Parent = o45
  881. o46.Scale = Vector3.new(0.200000003, 1.5, 1)
  882. o46.Scale = Vector3.new(0.200000003, 1.5, 1)
  883. o47.Name = "Iceshard"
  884. o47.Parent = o42
  885. o47.BrickColor = BrickColor.new("Really black")
  886. o47.Transparency = 0.30000001192093
  887. o47.Position = Vector3.new(116.275314, 129.107986, 93.5522232)
  888. o47.Rotation = Vector3.new(90, 0, -150)
  889. o47.Anchored = true
  890. o47.Locked = true
  891. o47.FormFactor = Enum.FormFactor.Plate
  892. o47.Size = Vector3.new(0.540021002, 0.43201682, 0.540021002)
  893. o47.CFrame = CFrame.new(116.275314, 129.107986, 93.5522232, -0.866025388, 0.500000238, 0, 0, 0, -1, -0.500000238, -0.866025388, 0)
  894. o47.BottomSurface = Enum.SurfaceType.Weld
  895. o47.TopSurface = Enum.SurfaceType.Smooth
  896. o47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  897. o47.Position = Vector3.new(116.275314, 129.107986, 93.5522232)
  898. o47.Orientation = Vector3.new(90, 150, 0)
  899. o47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  900. o48.Parent = o47
  901. o48.Scale = Vector3.new(0.300000012, 1.5, 1)
  902. o48.Scale = Vector3.new(0.300000012, 1.5, 1)
  903. o49.Name = "Iceshard"
  904. o49.Parent = o42
  905. o49.BrickColor = BrickColor.new("Really black")
  906. o49.Transparency = 0.30000001192093
  907. o49.Position = Vector3.new(116.572296, 129.107986, 93.0377884)
  908. o49.Rotation = Vector3.new(90, 0, -150)
  909. o49.Anchored = true
  910. o49.Locked = true
  911. o49.FormFactor = Enum.FormFactor.Plate
  912. o49.Size = Vector3.new(0.540021002, 0.648025215, 0.540021002)
  913. o49.CFrame = CFrame.new(116.572296, 129.107986, 93.0377884, -0.866025388, 0.500000238, 0, 0, 0, -1, -0.500000238, -0.866025388, 0)
  914. o49.BottomSurface = Enum.SurfaceType.Weld
  915. o49.TopSurface = Enum.SurfaceType.Smooth
  916. o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  917. o49.Position = Vector3.new(116.572296, 129.107986, 93.0377884)
  918. o49.Orientation = Vector3.new(90, 150, 0)
  919. o49.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  920. o50.Parent = o49
  921. o50.Scale = Vector3.new(0.699999988, 1, 1)
  922. o50.Scale = Vector3.new(0.699999988, 1, 1)
  923. o51.Name = "Iceshard"
  924. o51.Parent = o42
  925. o51.BrickColor = BrickColor.new("Really black")
  926. o51.Position = Vector3.new(116.572296, 129.107986, 93.0377884)
  927. o51.Rotation = Vector3.new(90, 0, 30)
  928. o51.Anchored = true
  929. o51.Locked = true
  930. o51.FormFactor = Enum.FormFactor.Custom
  931. o51.Size = Vector3.new(0.540021002, 0.756029367, 0.540021002)
  932. o51.CFrame = CFrame.new(116.572296, 129.107986, 93.0377884, 0.866025388, -0.500000238, 0, 0, 0, -1, 0.500000238, 0.866025388, 0)
  933. o51.BottomSurface = Enum.SurfaceType.Weld
  934. o51.TopSurface = Enum.SurfaceType.Smooth
  935. o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  936. o51.Position = Vector3.new(116.572296, 129.107986, 93.0377884)
  937. o51.Orientation = Vector3.new(90, -30, 0)
  938. o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  939. o52.Parent = o51
  940. o52.Scale = Vector3.new(0.600000024, 1, 1)
  941. o52.Scale = Vector3.new(0.600000024, 1, 1)
  942. o53.Parent = o42
  943. o53.Material = Enum.Material.SmoothPlastic
  944. o53.BrickColor = BrickColor.new("Really black")
  945. o53.Position = Vector3.new(116.410309, 129.107986, 93.318367)
  946. o53.Rotation = Vector3.new(-180, -60, 90)
  947. o53.Anchored = true
  948. o53.Locked = true
  949. o53.FormFactor = Enum.FormFactor.Plate
  950. o53.Size = Vector3.new(0.540021002, 0.21600841, 0.540021002)
  951. o53.CFrame = CFrame.new(116.410309, 129.107986, 93.318367, 0, -0.500000238, -0.866025388, -1, 0, 0, 0, 0.866025388, -0.500000238)
  952. o53.BackSurface = Enum.SurfaceType.Weld
  953. o53.FrontSurface = Enum.SurfaceType.Weld
  954. o53.LeftSurface = Enum.SurfaceType.Weld
  955. o53.RightSurface = Enum.SurfaceType.Weld
  956. o53.TopSurface = Enum.SurfaceType.Weld
  957. o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  958. o53.Position = Vector3.new(116.410309, 129.107986, 93.318367)
  959. o53.Orientation = Vector3.new(0, -120, -90)
  960. o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  961. o54.Parent = o53
  962. o54.Scale = Vector3.new(0.600000024, 2.5, 0.600000024)
  963. o54.MeshType = Enum.MeshType.Sphere
  964. o54.Scale = Vector3.new(0.600000024, 2.5, 0.600000024)
  965. o55.Parent = o42
  966. o55.Material = Enum.Material.SmoothPlastic
  967. o55.BrickColor = BrickColor.new("Really black")
  968. o55.Transparency = 0.30000001192093
  969. o55.Position = Vector3.new(116.437302, 129.107986, 93.2715225)
  970. o55.Rotation = Vector3.new(-180, -60, 90)
  971. o55.Anchored = true
  972. o55.Locked = true
  973. o55.FormFactor = Enum.FormFactor.Plate
  974. o55.Size = Vector3.new(0.540021002, 0.21600841, 0.540021002)
  975. o55.CFrame = CFrame.new(116.437302, 129.107986, 93.2715225, 0, -0.500000238, -0.866025388, -1, 0, 0, 0, 0.866025388, -0.500000238)
  976. o55.BackSurface = Enum.SurfaceType.Weld
  977. o55.FrontSurface = Enum.SurfaceType.Weld
  978. o55.LeftSurface = Enum.SurfaceType.Weld
  979. o55.RightSurface = Enum.SurfaceType.Weld
  980. o55.TopSurface = Enum.SurfaceType.Weld
  981. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  982. o55.Position = Vector3.new(116.437302, 129.107986, 93.2715225)
  983. o55.Orientation = Vector3.new(0, -120, -90)
  984. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  985. o56.Parent = o55
  986. o56.Scale = Vector3.new(0.699999988, 3, 0.699999988)
  987. o56.MeshType = Enum.MeshType.Sphere
  988. o56.Scale = Vector3.new(0.699999988, 3, 0.699999988)
  989. o57.Name = "Iceshard"
  990. o57.Parent = o42
  991. o57.BrickColor = BrickColor.new("Institutional white")
  992. o57.Position = Vector3.new(116.572266, 129.161972, 93.0378799)
  993. o57.Rotation = Vector3.new(90, 0, 30)
  994. o57.Anchored = true
  995. o57.Locked = true
  996. o57.FormFactor = Enum.FormFactor.Plate
  997. o57.Size = Vector3.new(0.540021002, 0.43201682, 0.540021002)
  998. o57.CFrame = CFrame.new(116.572266, 129.161972, 93.0378799, 0.866025388, -0.500000238, 0, 0, 0, -1, 0.500000238, 0.866025388, 0)
  999. o57.BottomSurface = Enum.SurfaceType.Weld
  1000. o57.TopSurface = Enum.SurfaceType.Smooth
  1001. o57.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1002. o57.Position = Vector3.new(116.572266, 129.161972, 93.0378799)
  1003. o57.Orientation = Vector3.new(90, -30, 0)
  1004. o57.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1005. o58.Parent = o57
  1006. o58.Scale = Vector3.new(0.550000012, 1, 1)
  1007. o58.Scale = Vector3.new(0.550000012, 1, 1)
  1008. o59.Name = "Beer 2"
  1009. o59.Parent = o28
  1010. o60.Name = "Iceshard"
  1011. o60.Parent = o59
  1012. o60.BrickColor = BrickColor.new("Deep orange")
  1013. o60.Position = Vector3.new(116.858398, 131.009033, 94.7467117)
  1014. o60.Rotation = Vector3.new(60, 0, -180)
  1015. o60.Anchored = true
  1016. o60.Locked = true
  1017. o60.FormFactor = Enum.FormFactor.Plate
  1018. o60.Size = Vector3.new(0.540021002, 0.21600841, 0.540021002)
  1019. o60.CFrame = CFrame.new(116.858398, 131.009033, 94.7467117, -1, 0, 0, 0, -0.500000954, -0.866024852, 0, -0.866024852, 0.500000954)
  1020. o60.BottomSurface = Enum.SurfaceType.Weld
  1021. o60.TopSurface = Enum.SurfaceType.Smooth
  1022. o60.Color = Color3.new(1, 0.690196, 0)
  1023. o60.Position = Vector3.new(116.858398, 131.009033, 94.7467117)
  1024. o60.Orientation = Vector3.new(60, 0, 180)
  1025. o60.Color = Color3.new(1, 0.690196, 0)
  1026. o61.Parent = o60
  1027. o61.Scale = Vector3.new(0.330000013, 0.200000003, 0.330000013)
  1028. o61.Scale = Vector3.new(0.330000013, 0.200000003, 0.330000013)
  1029. o62.Name = "Iceshard"
  1030. o62.Parent = o59
  1031. o62.BrickColor = BrickColor.new("Really black")
  1032. o62.Transparency = 0.30000001192093
  1033. o62.Position = Vector3.new(116.858398, 130.874008, 94.5130081)
  1034. o62.Rotation = Vector3.new(60, 0, -180)
  1035. o62.Anchored = true
  1036. o62.Locked = true
  1037. o62.FormFactor = Enum.FormFactor.Plate
  1038. o62.Size = Vector3.new(0.540021002, 0.43201682, 0.540021002)
  1039. o62.CFrame = CFrame.new(116.858398, 130.874008, 94.5130081, -1, 0, 0, 0, -0.500000954, -0.866024852, 0, -0.866024852, 0.500000954)
  1040. o62.BottomSurface = Enum.SurfaceType.Weld
  1041. o62.TopSurface = Enum.SurfaceType.Smooth
  1042. o62.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1043. o62.Position = Vector3.new(116.858398, 130.874008, 94.5130081)
  1044. o62.Orientation = Vector3.new(60, 0, 180)
  1045. o62.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1046. o63.Parent = o62
  1047. o63.Scale = Vector3.new(0.300000012, 1.5, 1)
  1048. o63.Scale = Vector3.new(0.300000012, 1.5, 1)
  1049. o64.Name = "Iceshard"
  1050. o64.Parent = o59
  1051. o64.BrickColor = BrickColor.new("Really black")
  1052. o64.Transparency = 0.30000001192093
  1053. o64.Position = Vector3.new(116.858444, 130.576996, 93.9984818)
  1054. o64.Rotation = Vector3.new(60, 0, -180)
  1055. o64.Anchored = true
  1056. o64.Locked = true
  1057. o64.FormFactor = Enum.FormFactor.Plate
  1058. o64.Size = Vector3.new(0.540021002, 0.648025215, 0.540021002)
  1059. o64.CFrame = CFrame.new(116.858444, 130.576996, 93.9984818, -1, 0, 0, 0, -0.500000954, -0.866024852, 0, -0.866024852, 0.500000954)
  1060. o64.BottomSurface = Enum.SurfaceType.Weld
  1061. o64.TopSurface = Enum.SurfaceType.Smooth
  1062. o64.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1063. o64.Position = Vector3.new(116.858444, 130.576996, 93.9984818)
  1064. o64.Orientation = Vector3.new(60, 0, 180)
  1065. o64.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1066. o65.Parent = o64
  1067. o65.Scale = Vector3.new(0.699999988, 1, 1)
  1068. o65.Scale = Vector3.new(0.699999988, 1, 1)
  1069. o66.Name = "Iceshard"
  1070. o66.Parent = o59
  1071. o66.BrickColor = BrickColor.new("Really black")
  1072. o66.Position = Vector3.new(116.858444, 130.576996, 93.9984818)
  1073. o66.Rotation = Vector3.new(60, 0, 0)
  1074. o66.Anchored = true
  1075. o66.Locked = true
  1076. o66.FormFactor = Enum.FormFactor.Custom
  1077. o66.Size = Vector3.new(0.540021002, 0.756029367, 0.540021002)
  1078. o66.CFrame = CFrame.new(116.858444, 130.576996, 93.9984818, 1, 0, 0, 0, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954)
  1079. o66.BottomSurface = Enum.SurfaceType.Weld
  1080. o66.TopSurface = Enum.SurfaceType.Smooth
  1081. o66.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1082. o66.Position = Vector3.new(116.858444, 130.576996, 93.9984818)
  1083. o66.Orientation = Vector3.new(60, 0, 0)
  1084. o66.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1085. o67.Parent = o66
  1086. o67.Scale = Vector3.new(0.600000024, 1, 1)
  1087. o67.Scale = Vector3.new(0.600000024, 1, 1)
  1088. o68.Parent = o59
  1089. o68.Material = Enum.Material.SmoothPlastic
  1090. o68.BrickColor = BrickColor.new("Really black")
  1091. o68.Position = Vector3.new(116.858398, 130.738937, 94.2790604)
  1092. o68.Rotation = Vector3.new(60, -90, 0)
  1093. o68.Anchored = true
  1094. o68.Locked = true
  1095. o68.FormFactor = Enum.FormFactor.Plate
  1096. o68.Size = Vector3.new(0.540021002, 0.21600841, 0.540021002)
  1097. o68.CFrame = CFrame.new(116.858398, 130.738937, 94.2790604, 0, 0, -1, -0.866024196, 0.500002146, 0, 0.500002146, 0.866024196, 0)
  1098. o68.BackSurface = Enum.SurfaceType.Weld
  1099. o68.FrontSurface = Enum.SurfaceType.Weld
  1100. o68.LeftSurface = Enum.SurfaceType.Weld
  1101. o68.RightSurface = Enum.SurfaceType.Weld
  1102. o68.TopSurface = Enum.SurfaceType.Weld
  1103. o68.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1104. o68.Position = Vector3.new(116.858398, 130.738937, 94.2790604)
  1105. o68.Orientation = Vector3.new(0, -90, -60)
  1106. o68.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1107. o69.Parent = o68
  1108. o69.Scale = Vector3.new(0.600000024, 2.5, 0.600000024)
  1109. o69.MeshType = Enum.MeshType.Sphere
  1110. o69.Scale = Vector3.new(0.600000024, 2.5, 0.600000024)
  1111. o70.Parent = o59
  1112. o70.Material = Enum.Material.SmoothPlastic
  1113. o70.BrickColor = BrickColor.new("Really black")
  1114. o70.Transparency = 0.30000001192093
  1115. o70.Position = Vector3.new(116.858383, 130.71196, 94.2323685)
  1116. o70.Rotation = Vector3.new(60, -90, 0)
  1117. o70.Anchored = true
  1118. o70.Locked = true
  1119. o70.FormFactor = Enum.FormFactor.Plate
  1120. o70.Size = Vector3.new(0.540021002, 0.21600841, 0.540021002)
  1121. o70.CFrame = CFrame.new(116.858383, 130.71196, 94.2323685, 0, 0, -1, -0.866024196, 0.500002146, 0, 0.500002146, 0.866024196, 0)
  1122. o70.BackSurface = Enum.SurfaceType.Weld
  1123. o70.FrontSurface = Enum.SurfaceType.Weld
  1124. o70.LeftSurface = Enum.SurfaceType.Weld
  1125. o70.RightSurface = Enum.SurfaceType.Weld
  1126. o70.TopSurface = Enum.SurfaceType.Weld
  1127. o70.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1128. o70.Position = Vector3.new(116.858383, 130.71196, 94.2323685)
  1129. o70.Orientation = Vector3.new(0, -90, -60)
  1130. o70.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1131. o71.Parent = o70
  1132. o71.Scale = Vector3.new(0.699999988, 3, 0.699999988)
  1133. o71.MeshType = Enum.MeshType.Sphere
  1134. o71.Scale = Vector3.new(0.699999988, 3, 0.699999988)
  1135. o72.Name = "Iceshard"
  1136. o72.Parent = o59
  1137. o72.BrickColor = BrickColor.new("Institutional white")
  1138. o72.Position = Vector3.new(116.858414, 130.623825, 93.9716568)
  1139. o72.Rotation = Vector3.new(60, 0, 0)
  1140. o72.Anchored = true
  1141. o72.Locked = true
  1142. o72.FormFactor = Enum.FormFactor.Plate
  1143. o72.Size = Vector3.new(0.540021002, 0.43201682, 0.540021002)
  1144. o72.CFrame = CFrame.new(116.858414, 130.623825, 93.9716568, 1, 0, 0, 0, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954)
  1145. o72.BottomSurface = Enum.SurfaceType.Weld
  1146. o72.TopSurface = Enum.SurfaceType.Smooth
  1147. o72.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1148. o72.Position = Vector3.new(116.858414, 130.623825, 93.9716568)
  1149. o72.Orientation = Vector3.new(60, 0, 0)
  1150. o72.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1151. o73.Parent = o72
  1152. o73.Scale = Vector3.new(0.550000012, 1, 1)
  1153. o73.Scale = Vector3.new(0.550000012, 1, 1)
  1154. o74.Name = "Iceshard"
  1155. o74.Parent = o59
  1156. o74.Material = Enum.Material.SmoothPlastic
  1157. o74.BrickColor = BrickColor.new("Really black")
  1158. o74.Position = Vector3.new(116.858444, 130.847, 94.4661942)
  1159. o74.Rotation = Vector3.new(60, 0, 0)
  1160. o74.Anchored = true
  1161. o74.Locked = true
  1162. o74.FormFactor = Enum.FormFactor.Plate
  1163. o74.Size = Vector3.new(0.540021002, 0.43201682, 0.540021002)
  1164. o74.CFrame = CFrame.new(116.858444, 130.847, 94.4661942, 1, 0, 0, 0, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954)
  1165. o74.BottomSurface = Enum.SurfaceType.Weld
  1166. o74.TopSurface = Enum.SurfaceType.Smooth
  1167. o74.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1168. o74.Position = Vector3.new(116.858444, 130.847, 94.4661942)
  1169. o74.Orientation = Vector3.new(60, 0, 0)
  1170. o74.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1171. o75.Parent = o74
  1172. o75.Scale = Vector3.new(0.200000003, 1.5, 1)
  1173. o75.Scale = Vector3.new(0.200000003, 1.5, 1)
  1174. o76.Name = "Teleporter gun"
  1175. o76.Parent = o28
  1176. o77.Parent = o76
  1177. o77.BrickColor = BrickColor.new("Really black")
  1178. o77.Position = Vector3.new(119.451233, 130.207916, 95.8009644)
  1179. o77.Rotation = Vector3.new(72.9499969, 80.4199982, -17.6399994)
  1180. o77.Anchored = true
  1181. o77.Locked = true
  1182. o77.Size = Vector3.new(0.200000003, 0.24000001, 0.98999995)
  1183. o77.CFrame = CFrame.new(119.451233, 130.207916, 95.8009644, 0.15857996, 0.0504249074, 0.986057758, 0.809503794, 0.565150499, -0.159086779, -0.565292895, 0.82344538, 0.0488024056)
  1184. o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1185. o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1186. o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1187. o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. o77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1191. o77.Position = Vector3.new(119.451233, 130.207916, 95.8009644)
  1192. o77.Orientation = Vector3.new(9.14999962, 87.1699982, 55.0800018)
  1193. o77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1194. o78.Parent = o76
  1195. o78.Material = Enum.Material.Neon
  1196. o78.BrickColor = BrickColor.new("Lime green")
  1197. o78.Position = Vector3.new(119.791306, 130.148666, 95.8118362)
  1198. o78.Rotation = Vector3.new(72.9499969, 80.4199982, -17.6399994)
  1199. o78.Anchored = true
  1200. o78.Locked = true
  1201. o78.Shape = Enum.PartType.Cylinder
  1202. o78.Size = Vector3.new(0.200000003, 0.310000002, 0.200000003)
  1203. o78.CFrame = CFrame.new(119.791306, 130.148666, 95.8118362, 0.15857996, 0.0504249074, 0.986057758, 0.809503794, 0.565150499, -0.159086779, -0.565292895, 0.82344538, 0.0488024056)
  1204. o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1205. o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1206. o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. o78.Color = Color3.new(0, 1, 0)
  1211. o78.Position = Vector3.new(119.791306, 130.148666, 95.8118362)
  1212. o78.Orientation = Vector3.new(9.14999962, 87.1699982, 55.0800018)
  1213. o78.Color = Color3.new(0, 1, 0)
  1214. o79.Parent = o76
  1215. o79.BrickColor = BrickColor.new("Pearl")
  1216. o79.Position = Vector3.new(119.651093, 131.156891, 95.1648331)
  1217. o79.Rotation = Vector3.new(58.7400017, -9.28999996, -2.33999991)
  1218. o79.Anchored = true
  1219. o79.Locked = true
  1220. o79.Shape = Enum.PartType.Cylinder
  1221. o79.Size = Vector3.new(1.03999996, 0.300000012, 0.480000019)
  1222. o79.CFrame = CFrame.new(119.651093, 131.156891, 95.1648331, 0.986058235, 0.040323589, -0.161441192, -0.159087047, 0.512921154, -0.843565762, 0.0487910099, 0.857488155, 0.512185037)
  1223. o79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. o79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. o79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. o79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. o79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. o79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. o79.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1230. o79.Position = Vector3.new(119.651093, 131.156891, 95.1648331)
  1231. o79.Orientation = Vector3.new(57.5200005, -17.4899998, -17.2299995)
  1232. o79.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1233. o80.Parent = o76
  1234. o80.BrickColor = BrickColor.new("Really black")
  1235. o80.Position = Vector3.new(119.690842, 131.195831, 95.2039566)
  1236. o80.Rotation = Vector3.new(-133.039993, 8.63000011, 94.1800003)
  1237. o80.Anchored = true
  1238. o80.Locked = true
  1239. o80.Shape = Enum.PartType.Cylinder
  1240. o80.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1241. o80.CFrame = CFrame.new(119.690842, 131.195831, 95.2039566, -0.0720960125, -0.98605746, 0.149976656, -0.672709167, 0.1590911, 0.722601235, -0.73638618, -0.0487939976, -0.674799681)
  1242. o80.BottomSurface = Enum.SurfaceType.Smooth
  1243. o80.TopSurface = Enum.SurfaceType.Smooth
  1244. o80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1245. o80.Position = Vector3.new(119.690842, 131.195831, 95.2039566)
  1246. o80.Orientation = Vector3.new(-46.2700005, 167.470001, -76.6900024)
  1247. o80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1248. o81.Parent = o76
  1249. o81.BrickColor = BrickColor.new("Really black")
  1250. o81.Position = Vector3.new(119.512878, 130.403381, 95.7066116)
  1251. o81.Rotation = Vector3.new(-124.75, 9.13000011, 92.9000015)
  1252. o81.Anchored = true
  1253. o81.Locked = true
  1254. o81.Shape = Enum.PartType.Cylinder
  1255. o81.Size = Vector3.new(0.200000003, 0.469999999, 0.449999988)
  1256. o81.CFrame = CFrame.new(119.512878, 130.403381, 95.7066116, -0.0499359891, -0.986057639, 0.158734694, -0.562649906, 0.159087062, 0.811243773, -0.825185835, -0.0488018021, -0.562749386)
  1257. o81.BottomSurface = Enum.SurfaceType.Smooth
  1258. o81.TopSurface = Enum.SurfaceType.Smooth
  1259. o81.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1260. o81.Position = Vector3.new(119.512878, 130.403381, 95.7066116)
  1261. o81.Orientation = Vector3.new(-54.2200012, 164.25, -74.2099991)
  1262. o81.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1263. o82.Parent = o76
  1264. o82.Material = Enum.Material.Neon
  1265. o82.BrickColor = BrickColor.new("Lime green")
  1266. o82.Position = Vector3.new(119.465729, 130.201187, 95.7956619)
  1267. o82.Rotation = Vector3.new(72.9499969, 80.4199982, -17.6399994)
  1268. o82.Anchored = true
  1269. o82.Locked = true
  1270. o82.Shape = Enum.PartType.Cylinder
  1271. o82.Size = Vector3.new(0.200000003, 0.310000002, 0.200000003)
  1272. o82.CFrame = CFrame.new(119.465729, 130.201187, 95.7956619, 0.15857996, 0.0504249074, 0.986057758, 0.809503794, 0.565150499, -0.159086779, -0.565292895, 0.82344538, 0.0488024056)
  1273. o82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. o82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. o82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. o82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. o82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. o82.Color = Color3.new(0, 1, 0)
  1280. o82.Position = Vector3.new(119.465729, 130.201187, 95.7956619)
  1281. o82.Orientation = Vector3.new(9.14999962, 87.1699982, 55.0800018)
  1282. o82.Color = Color3.new(0, 1, 0)
  1283. o83.Parent = o76
  1284. o83.BrickColor = BrickColor.new("Pearl")
  1285. o83.Position = Vector3.new(119.650711, 131.151764, 95.1563187)
  1286. o83.Rotation = Vector3.new(58.7400017, -9.28999996, -2.33999991)
  1287. o83.Anchored = true
  1288. o83.Locked = true
  1289. o83.Shape = Enum.PartType.Cylinder
  1290. o83.Size = Vector3.new(1.03999996, 0.300000012, 0.480000019)
  1291. o83.CFrame = CFrame.new(119.650711, 131.151764, 95.1563187, 0.986058235, 0.040323589, -0.161441192, -0.159087047, 0.512921154, -0.843565762, 0.0487910099, 0.857488155, 0.512185037)
  1292. o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1294. o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1295. o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1296. o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1297. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1298. o83.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1299. o83.Position = Vector3.new(119.650711, 131.151764, 95.1563187)
  1300. o83.Orientation = Vector3.new(57.5200005, -17.4899998, -17.2299995)
  1301. o83.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1302. o84.Parent = o76
  1303. o84.BrickColor = BrickColor.new("Pearl")
  1304. o84.Position = Vector3.new(119.649918, 131.141495, 95.1391068)
  1305. o84.Rotation = Vector3.new(58.7400017, -9.28999996, -2.33999991)
  1306. o84.Anchored = true
  1307. o84.Locked = true
  1308. o84.Shape = Enum.PartType.Cylinder
  1309. o84.Size = Vector3.new(1.03999996, 0.300000012, 0.480000019)
  1310. o84.CFrame = CFrame.new(119.649918, 131.141495, 95.1391068, 0.986058235, 0.040323589, -0.161441192, -0.159087047, 0.512921154, -0.843565762, 0.0487910099, 0.857488155, 0.512185037)
  1311. o84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1312. o84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1313. o84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1314. o84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1315. o84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1316. o84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1317. o84.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1318. o84.Position = Vector3.new(119.649918, 131.141495, 95.1391068)
  1319. o84.Orientation = Vector3.new(57.5200005, -17.4899998, -17.2299995)
  1320. o84.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1321. o85.Parent = o76
  1322. o85.BrickColor = BrickColor.new("Pearl")
  1323. o85.Position = Vector3.new(119.650345, 131.146713, 95.1477432)
  1324. o85.Rotation = Vector3.new(58.7400017, -9.28999996, -2.33999991)
  1325. o85.Anchored = true
  1326. o85.Locked = true
  1327. o85.Shape = Enum.PartType.Cylinder
  1328. o85.Size = Vector3.new(1.03999996, 0.300000012, 0.480000019)
  1329. o85.CFrame = CFrame.new(119.650345, 131.146713, 95.1477432, 0.986058235, 0.040323589, -0.161441192, -0.159087047, 0.512921154, -0.843565762, 0.0487910099, 0.857488155, 0.512185037)
  1330. o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1331. o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1332. o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1333. o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1334. o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1335. o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1336. o85.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1337. o85.Position = Vector3.new(119.650345, 131.146713, 95.1477432)
  1338. o85.Orientation = Vector3.new(57.5200005, -17.4899998, -17.2299995)
  1339. o85.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1340. o86.Parent = o76
  1341. o86.Material = Enum.Material.Neon
  1342. o86.BrickColor = BrickColor.new("Lime green")
  1343. o86.Position = Vector3.new(119.110672, 130.258484, 95.7781754)
  1344. o86.Rotation = Vector3.new(72.9499969, 80.4199982, -17.6399994)
  1345. o86.Anchored = true
  1346. o86.Locked = true
  1347. o86.Shape = Enum.PartType.Cylinder
  1348. o86.Size = Vector3.new(0.200000003, 0.310000002, 0.200000003)
  1349. o86.CFrame = CFrame.new(119.110672, 130.258484, 95.7781754, 0.15857996, 0.0504249074, 0.986057758, 0.809503794, 0.565150499, -0.159086779, -0.565292895, 0.82344538, 0.0488024056)
  1350. o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1353. o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1354. o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1356. o86.Color = Color3.new(0, 1, 0)
  1357. o86.Position = Vector3.new(119.110672, 130.258484, 95.7781754)
  1358. o86.Orientation = Vector3.new(9.14999962, 87.1699982, 55.0800018)
  1359. o86.Color = Color3.new(0, 1, 0)
  1360. o87.Parent = o76
  1361. o87.BrickColor = BrickColor.new("Pearl")
  1362. o87.Position = Vector3.new(119.550415, 130.661011, 95.4785538)
  1363. o87.Rotation = Vector3.new(72.9499969, 80.4199982, -17.6399994)
  1364. o87.Anchored = true
  1365. o87.Locked = true
  1366. o87.Size = Vector3.new(1.31000006, 0.270000041, 1.03000009)
  1367. o87.CFrame = CFrame.new(119.550415, 130.661011, 95.4785538, 0.15857996, 0.0504249074, 0.986057758, 0.809503794, 0.565150499, -0.159086779, -0.565292895, 0.82344538, 0.0488024056)
  1368. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1369. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1371. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1372. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. o87.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1375. o87.Position = Vector3.new(119.550415, 130.661011, 95.4785538)
  1376. o87.Orientation = Vector3.new(9.14999962, 87.1699982, 55.0800018)
  1377. o87.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1378. o88.Parent = o76
  1379. o88.Material = Enum.Material.SmoothPlastic
  1380. o88.BrickColor = BrickColor.new("Institutional white")
  1381. o88.Transparency = 1
  1382. o88.Position = Vector3.new(119.522568, 130.543945, 95.9157181)
  1383. o88.Rotation = Vector3.new(-107.050003, -80.4199982, -162.360001)
  1384. o88.Anchored = true
  1385. o88.Locked = true
  1386. o88.FormFactor = Enum.FormFactor.Custom
  1387. o88.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1388. o88.CFrame = CFrame.new(119.522568, 130.543945, 95.9157181, -0.15857996, 0.0504249074, -0.986057758, -0.809503794, 0.565150499, 0.159086779, 0.565292895, 0.82344538, -0.0488024056)
  1389. o88.BottomSurface = Enum.SurfaceType.Smooth
  1390. o88.TopSurface = Enum.SurfaceType.Smooth
  1391. o88.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1392. o88.Position = Vector3.new(119.522568, 130.543945, 95.9157181)
  1393. o88.Orientation = Vector3.new(-9.14999962, -92.8300018, -55.0800018)
  1394. o88.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1395. o89.Parent = o88
  1396. o89.Rotation = NumberRange.new(0,360)
  1397. o89.Size = NumberSequence.new(0.10000000149012,0.10000000149012)
  1398. o89.Color = ColorSequence.new(Color3.new(0, 1, 0.164706),Color3.new(0, 1, 0.164706))
  1399. o89.LightEmission = 1
  1400. o89.Texture = "http://www.roblox.com/asset/?id=243098098"
  1401. o89.Lifetime = NumberRange.new(0.20000000298023,0.20000000298023)
  1402. o89.Rate = 300
  1403. o89.Speed = NumberRange.new(0,0)
  1404. o89.Color = ColorSequence.new(Color3.new(0, 1, 0.164706),Color3.new(0, 1, 0.164706))
  1405. o90.Parent = o76
  1406. o90.BrickColor = BrickColor.new("Maroon")
  1407. o90.Position = Vector3.new(119.608139, 130.884079, 95.3483658)
  1408. o90.Rotation = Vector3.new(72.9499969, 80.4199982, -17.6399994)
  1409. o90.Anchored = true
  1410. o90.Locked = true
  1411. o90.Size = Vector3.new(0.240000069, 0.270000041, 0.540000081)
  1412. o90.CFrame = CFrame.new(119.608139, 130.884079, 95.3483658, 0.15857996, 0.0504249074, 0.986057758, 0.809503794, 0.565150499, -0.159086779, -0.565292895, 0.82344538, 0.0488024056)
  1413. o90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1414. o90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1415. o90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1416. o90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1417. o90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1418. o90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1419. o90.Color = Color3.new(0.458824, 0, 0)
  1420. o90.Position = Vector3.new(119.608139, 130.884079, 95.3483658)
  1421. o90.Orientation = Vector3.new(9.14999962, 87.1699982, 55.0800018)
  1422. o90.Color = Color3.new(0.458824, 0, 0)
  1423. o91.Parent = o90
  1424. o91.Face = Enum.NormalId.Top
  1425. o92.Parent = o91
  1426. o92.Size = UDim2.new(1,0,1,0)
  1427. o92.Text = "C-137"
  1428. o92.BackgroundColor3 = Color3.new(1, 1, 1)
  1429. o92.BackgroundTransparency = 1
  1430. o92.Font = Enum.Font.SciFi
  1431. o92.FontSize = Enum.FontSize.Size96
  1432. o92.TextColor3 = Color3.new(1, 0, 0.0156863)
  1433. o92.TextScaled = true
  1434. o92.TextWrapped = true
  1435. o93.Parent = o76
  1436. o93.BrickColor = BrickColor.new("Pearl")
  1437. o93.Position = Vector3.new(119.635651, 131.028107, 94.718544)
  1438. o93.Rotation = Vector3.new(72.9499969, 80.4199982, 93.6399994)
  1439. o93.Anchored = true
  1440. o93.Locked = true
  1441. o93.Shape = Enum.PartType.Cylinder
  1442. o93.Size = Vector3.new(0.807492971, 0.448607206, 0.448607206)
  1443. o93.CFrame = CFrame.new(119.635651, 131.028107, 94.718544, -0.0105509963, -0.166071951, 0.986057222, 0.232844904, -0.959412754, -0.159092993, 0.972456634, 0.227919817, 0.0487917624)
  1444. o93.BottomSurface = Enum.SurfaceType.Smooth
  1445. o93.TopSurface = Enum.SurfaceType.Smooth
  1446. o93.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1447. o93.Position = Vector3.new(119.635651, 131.028107, 94.718544)
  1448. o93.Orientation = Vector3.new(9.14999962, 87.1699982, 166.360001)
  1449. o93.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1450. o94.Parent = o76
  1451. o94.BrickColor = BrickColor.new("Pearl")
  1452. o94.Position = Vector3.new(119.640091, 130.931473, 94.3149796)
  1453. o94.Rotation = Vector3.new(-107.050003, -80.4199982, -3.6400001)
  1454. o94.Anchored = true
  1455. o94.Locked = true
  1456. o94.Shape = Enum.PartType.Ball
  1457. o94.Size = Vector3.new(0.453093261, 0.453093261, 0.453093261)
  1458. o94.CFrame = CFrame.new(119.640091, 130.931473, 94.3149796, 0.166072994, 0.0105529288, -0.986057043, 0.959412992, -0.232843444, 0.159093633, -0.227917999, -0.972456992, -0.0487936214)
  1459. o94.BottomSurface = Enum.SurfaceType.Smooth
  1460. o94.TopSurface = Enum.SurfaceType.Smooth
  1461. o94.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1462. o94.Position = Vector3.new(119.640091, 130.931473, 94.3149796)
  1463. o94.Orientation = Vector3.new(-9.14999962, -92.8300018, 103.639999)
  1464. o94.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1465. o95.Parent = o76
  1466. o95.BrickColor = BrickColor.new("Lime green")
  1467. o95.Transparency = 0.5
  1468. o95.Position = Vector3.new(119.542114, 130.645294, 96.0362625)
  1469. o95.Rotation = Vector3.new(72.9499969, 80.4199982, -17.6399994)
  1470. o95.Anchored = true
  1471. o95.Locked = true
  1472. o95.Shape = Enum.PartType.Ball
  1473. o95.Size = Vector3.new(0.301669657, 0.301669657, 0.301669657)
  1474. o95.CFrame = CFrame.new(119.542114, 130.645294, 96.0362625, 0.15857996, 0.0504249074, 0.986057758, 0.809503794, 0.565150499, -0.159086779, -0.565292895, 0.82344538, 0.0488024056)
  1475. o95.BottomSurface = Enum.SurfaceType.Smooth
  1476. o95.TopSurface = Enum.SurfaceType.Smooth
  1477. o95.Color = Color3.new(0, 1, 0)
  1478. o95.Position = Vector3.new(119.542114, 130.645294, 96.0362625)
  1479. o95.Orientation = Vector3.new(9.14999962, 87.1699982, 55.0800018)
  1480. o95.Color = Color3.new(0, 1, 0)
  1481. o96.Parent = o76
  1482. o96.BrickColor = BrickColor.new("Lime green")
  1483. o96.Transparency = 0.5
  1484. o96.Position = Vector3.new(119.532913, 130.545395, 95.8975906)
  1485. o96.Rotation = Vector3.new(-107.050003, -80.4199982, 107.639999)
  1486. o96.Anchored = true
  1487. o96.Locked = true
  1488. o96.Shape = Enum.PartType.Cylinder
  1489. o96.Size = Vector3.new(0.307629138, 0.298682868, 0.298682868)
  1490. o96.CFrame = CFrame.new(119.532913, 130.545395, 95.8975906, -0.0504259877, -0.158580974, -0.98605746, -0.565149903, -0.809503913, 0.159088239, -0.823445797, 0.565292478, -0.0488019809)
  1491. o96.BottomSurface = Enum.SurfaceType.Smooth
  1492. o96.TopSurface = Enum.SurfaceType.Smooth
  1493. o96.Color = Color3.new(0, 1, 0)
  1494. o96.Position = Vector3.new(119.532913, 130.545395, 95.8975906)
  1495. o96.Orientation = Vector3.new(-9.14999962, -92.8300018, -145.080002)
  1496. o96.Color = Color3.new(0, 1, 0)
  1497. o97.Name = "Quote"
  1498. o97.Parent = o7
  1499. o97.Material = Enum.Material.Wood
  1500. o97.BrickColor = BrickColor.new("Persimmon")
  1501. o97.Transparency = 1
  1502. o97.Position = Vector3.new(115.109085, 134.563339, 94.5203629)
  1503. o97.Rotation = Vector3.new(180, 0, -180)
  1504. o97.Anchored = true
  1505. o97.CanCollide = false
  1506. o97.Locked = true
  1507. o97.FormFactor = Enum.FormFactor.Custom
  1508. o97.Size = Vector3.new(4, 2, 0.400000006)
  1509. o97.CFrame = CFrame.new(115.109085, 134.563339, 94.5203629, -1.00000834, 4.5848725e-07, 7.62426566e-08, 4.58488557e-07, 1, -2.38849395e-07, -7.62372068e-08, -2.38828278e-07, -1.00000834)
  1510. o97.BottomSurface = Enum.SurfaceType.Smooth
  1511. o97.TopSurface = Enum.SurfaceType.Smooth
  1512. o97.Color = Color3.new(1, 0.34902, 0.34902)
  1513. o97.Position = Vector3.new(115.109085, 134.563339, 94.5203629)
  1514. o97.Orientation = Vector3.new(0, 180, 0)
  1515. o97.Color = Color3.new(1, 0.34902, 0.34902)
  1516. o98.Name = "Life"
  1517. o98.Parent = o97
  1518. o98.CanvasSize = Vector2.new(256, 128)
  1519. o99.Name = "Contents"
  1520. o99.Parent = o98
  1521. o99.Position = UDim2.new(0,8,0,8)
  1522. o99.Size = UDim2.new(1,-16,1,-16)
  1523. o99.Text = "Nobody exists on purpose. Nobody belongs anywhere."
  1524. o99.Position = UDim2.new(0,8,0,8)
  1525. o99.BackgroundColor3 = Color3.new(1, 1, 1)
  1526. o99.BackgroundTransparency = 1
  1527. o99.BorderSizePixel = 0
  1528. o99.ClipsDescendants = true
  1529. o99.Font = Enum.Font.SourceSansBold
  1530. o99.FontSize = Enum.FontSize.Size48
  1531. o99.TextColor3 = Color3.new(1, 1, 0.8)
  1532. o99.TextScaled = true
  1533. o99.TextStrokeTransparency = 0
  1534. o99.TextWrapped = true
  1535. o100.Name = "Hitbox"
  1536. o100.Parent = o1
  1537. o100.Material = Enum.Material.SmoothPlastic
  1538. o100.BrickColor = BrickColor.new("Really red")
  1539. o100.Transparency = 1
  1540. o100.Position = Vector3.new(106.091354, 145.11824, 122.960182)
  1541. o100.Rotation = Vector3.new(-180, 0, -180)
  1542. o100.Anchored = true
  1543. o100.Locked = true
  1544. o100.Size = Vector3.new(68.1600494, 32.25, 0.0500000007)
  1545. o100.CFrame = CFrame.new(106.091354, 145.11824, 122.960182, -1.00000083, 1.2411337e-07, 6.40749931e-06, 1.2415245e-07, 1, 5.74361047e-06, -6.5267086e-06, 5.74360956e-06, -1.00000107)
  1546. o100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1547. o100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. o100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. o100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. o100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. o100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. o100.Color = Color3.new(1, 0, 0)
  1553. o100.Position = Vector3.new(106.091354, 145.11824, 122.960182)
  1554. o100.Orientation = Vector3.new(0, 180, 0)
  1555. o100.Color = Color3.new(1, 0, 0)
  1556. o101.Name = "oliver551"
  1557. o101.Parent = o1
  1558. o101.PrimaryPart = o102
  1559. o102.Name = "HumanoidRootPart"
  1560. o102.Parent = o101
  1561. o102.Transparency = 1
  1562. o102.Position = Vector3.new(70.0094681, 140.844391, 115.042015)
  1563. o102.Rotation = Vector3.new(180, -76.1200027, -180)
  1564. o102.Anchored = true
  1565. o102.CanCollide = false
  1566. o102.FormFactor = Enum.FormFactor.Custom
  1567. o102.Size = Vector3.new(2, 2, 1)
  1568. o102.CFrame = CFrame.new(70.0094681, 140.844391, 115.042015, -0.239958867, 1.52813808e-12, -0.970790088, 1.65076407e-11, 1, -2.50621811e-12, 0.970790088, -1.66266202e-11, -0.239958867)
  1569. o102.BottomSurface = Enum.SurfaceType.Smooth
  1570. o102.TopSurface = Enum.SurfaceType.Smooth
  1571. o102.Position = Vector3.new(70.0094681, 140.844391, 115.042015)
  1572. o102.Orientation = Vector3.new(0, -103.879997, 0)
  1573. o103.Name = "Head"
  1574. o103.Parent = o101
  1575. o103.BrickColor = BrickColor.new("Cool yellow")
  1576. o103.Position = Vector3.new(70.1716385, 142.315659, 115.082077)
  1577. o103.Rotation = Vector3.new(-124.099998, -66.2099991, -126.5)
  1578. o103.RotVelocity = Vector3.new(-3.76922912e-07, 7.72911791e-13, 9.60745083e-08)
  1579. o103.Velocity = Vector3.new(-1.66824861e-07, -1.66078894e-06, -6.54493192e-07)
  1580. o103.Anchored = true
  1581. o103.FormFactor = Enum.FormFactor.Custom
  1582. o103.Size = Vector3.new(2, 1, 1)
  1583. o103.CFrame = CFrame.new(70.1716385, 142.315659, 115.082077, -0.239958882, 0.324324816, -0.915012062, -2.53508947e-08, 0.942543566, 0.334083378, 0.970790088, 0.080166325, -0.226171717)
  1584. o103.BottomSurface = Enum.SurfaceType.Smooth
  1585. o103.TopSurface = Enum.SurfaceType.Smooth
  1586. o103.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1587. o103.Position = Vector3.new(70.1716385, 142.315659, 115.082077)
  1588. o103.Orientation = Vector3.new(-19.5200005, -103.879997, 0)
  1589. o103.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1590. o104.Parent = o103
  1591. o104.Scale = Vector3.new(1.25, 1.25, 1.25)
  1592. o104.Scale = Vector3.new(1.25, 1.25, 1.25)
  1593. o105.Name = "face"
  1594. o105.Parent = o103
  1595. o105.Texture = "http://www.roblox.com/asset/?id=144080495 "
  1596. o106.Name = "Torso"
  1597. o106.Parent = o101
  1598. o106.BrickColor = BrickColor.new("Dark green")
  1599. o106.Position = Vector3.new(70.0094681, 140.844391, 115.042015)
  1600. o106.Rotation = Vector3.new(180, -70.4199982, -180)
  1601. o106.Anchored = true
  1602. o106.FormFactor = Enum.FormFactor.Custom
  1603. o106.Size = Vector3.new(2, 2, 1)
  1604. o106.CFrame = CFrame.new(70.0094681, 140.844391, 115.042015, -0.335063934, 1.40841991e-10, -0.942202687, 7.18663795e-10, 1, -1.06087888e-10, 0.942202687, -7.12673032e-10, -0.335063934)
  1605. o106.BottomSurface = Enum.SurfaceType.Smooth
  1606. o106.TopSurface = Enum.SurfaceType.Smooth
  1607. o106.Color = Color3.new(0.156863, 0.498039, 0.278431)
  1608. o106.Position = Vector3.new(70.0094681, 140.844391, 115.042015)
  1609. o106.Orientation = Vector3.new(0, -109.580002, 0)
  1610. o106.Color = Color3.new(0.156863, 0.498039, 0.278431)
  1611. o107.Name = "Left Arm"
  1612. o107.Parent = o101
  1613. o107.BrickColor = BrickColor.new("Cool yellow")
  1614. o107.Position = Vector3.new(70.5565567, 140.78714, 113.749748)
  1615. o107.Rotation = Vector3.new(165.699997, -69.8099976, 166.470001)
  1616. o107.RotVelocity = Vector3.new(-3.76922912e-07, 7.72911791e-13, 9.60745083e-08)
  1617. o107.Velocity = Vector3.new(-1.99736707e-08, -2.1913329e-06, -7.83572034e-08)
  1618. o107.Anchored = true
  1619. o107.CanCollide = false
  1620. o107.FormFactor = Enum.FormFactor.Custom
  1621. o107.Size = Vector3.new(1, 2, 1)
  1622. o107.CFrame = CFrame.new(70.5565567, 140.78714, 113.749748, -0.335653007, -0.0807663575, -0.938524246, -0.0013551017, 0.996357918, -0.0852587074, 0.941991985, -0.0273455475, -0.33453995)
  1623. o107.BottomSurface = Enum.SurfaceType.Smooth
  1624. o107.TopSurface = Enum.SurfaceType.Smooth
  1625. o107.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1626. o107.Position = Vector3.new(70.5565567, 140.78714, 113.749748)
  1627. o107.Orientation = Vector3.new(4.88999987, -109.620003, -0.0799999982)
  1628. o107.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1629. o108.Name = "Left Leg"
  1630. o108.Parent = o101
  1631. o108.BrickColor = BrickColor.new("Bright blue")
  1632. o108.Position = Vector3.new(70.6280823, 138.959778, 114.689354)
  1633. o108.Rotation = Vector3.new(122.529999, -56.5299988, 125.139999)
  1634. o108.RotVelocity = Vector3.new(-3.76922912e-07, 7.72911791e-13, 9.60745083e-08)
  1635. o108.Velocity = Vector3.new(1.55589433e-07, -1.83043085e-06, 6.10415384e-07)
  1636. o108.Anchored = true
  1637. o108.CanCollide = false
  1638. o108.FormFactor = Enum.FormFactor.Custom
  1639. o108.Size = Vector3.new(1, 2, 1)
  1640. o108.CFrame = CFrame.new(70.6280823, 138.959778, 114.689354, -0.317483336, -0.451049656, -0.834129632, -0.0349930562, 0.884605646, -0.465025157, 0.947625101, -0.118449025, -0.296631098)
  1641. o108.BottomSurface = Enum.SurfaceType.Smooth
  1642. o108.TopSurface = Enum.SurfaceType.Smooth
  1643. o108.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1644. o108.Position = Vector3.new(70.6280823, 138.959778, 114.689354)
  1645. o108.Orientation = Vector3.new(27.7099991, -109.580002, -2.26999998)
  1646. o108.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1647. o109.Name = "Right Leg"
  1648. o109.Parent = o101
  1649. o109.BrickColor = BrickColor.new("Bright blue")
  1650. o109.Position = Vector3.new(69.4305344, 138.939453, 115.404251)
  1651. o109.Rotation = Vector3.new(-125.559998, -58.5600014, -127.940002)
  1652. o109.RotVelocity = Vector3.new(-3.76922912e-07, 7.72911791e-13, 9.60745083e-08)
  1653. o109.Velocity = Vector3.new(1.57542729e-07, -1.50746882e-06, 6.18076001e-07)
  1654. o109.Anchored = true
  1655. o109.CanCollide = false
  1656. o109.FormFactor = Enum.FormFactor.Custom
  1657. o109.Size = Vector3.new(1, 2, 1)
  1658. o109.CFrame = CFrame.new(69.4305344, 138.939453, 115.404251, -0.32075268, 0.411405802, -0.853156984, 0.0319376513, 0.904928565, 0.424363554, 0.94663173, 0.108867928, -0.303397655)
  1659. o109.BottomSurface = Enum.SurfaceType.Smooth
  1660. o109.TopSurface = Enum.SurfaceType.Smooth
  1661. o109.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1662. o109.Position = Vector3.new(69.4305344, 138.939453, 115.404251)
  1663. o109.Orientation = Vector3.new(-25.1100006, -109.580002, 2.01999998)
  1664. o109.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1665. o110.Name = "Right Arm"
  1666. o110.Parent = o101
  1667. o110.BrickColor = BrickColor.new("Cool yellow")
  1668. o110.Position = Vector3.new(69.4579391, 140.832977, 116.332756)
  1669. o110.Rotation = Vector3.new(-150.169998, -67.6800003, -151.960007)
  1670. o110.RotVelocity = Vector3.new(-3.76922912e-07, 7.72911791e-13, 9.60745083e-08)
  1671. o110.Velocity = Vector3.new(-2.43776697e-08, -1.14915349e-06, -9.56435144e-08)
  1672. o110.Anchored = true
  1673. o110.CanCollide = false
  1674. o110.FormFactor = Enum.FormFactor.Custom
  1675. o110.Size = Vector3.new(1, 2, 1)
  1676. o110.CFrame = CFrame.new(69.4579391, 140.832977, 116.332756, -0.335234523, 0.178511858, -0.92507571, 0.00152590009, 0.981987298, 0.188941061, 0.942140758, 0.0619279966, -0.329468429)
  1677. o110.BottomSurface = Enum.SurfaceType.Smooth
  1678. o110.TopSurface = Enum.SurfaceType.Smooth
  1679. o110.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1680. o110.Position = Vector3.new(69.4579391, 140.832977, 116.332756)
  1681. o110.Orientation = Vector3.new(-10.8900003, -109.599998, 0.0900000036)
  1682. o110.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1683. o111.Parent = o101
  1684. o111.Graphic = "http://www.roblox.com/asset/?id=916733093"
  1685. o112.Name = "Pants"
  1686. o112.Parent = o101
  1687. o112.PantsTemplate = "http://www.roblox.com/asset/?id=616980141"
  1688. o113.Name = "Shirt"
  1689. o113.Parent = o101
  1690. o113.ShirtTemplate = "http://www.roblox.com/asset/?id=602599985"
  1691. o114.Name = "Quote"
  1692. o114.Parent = o101
  1693. o114.Material = Enum.Material.Wood
  1694. o114.BrickColor = BrickColor.new("Persimmon")
  1695. o114.Transparency = 1
  1696. o114.Position = Vector3.new(69.2667007, 140.643326, 119.237953)
  1697. o114.Rotation = Vector3.new(-42.8100014, -76.1100006, -45.4199982)
  1698. o114.Anchored = true
  1699. o114.CanCollide = false
  1700. o114.Locked = true
  1701. o114.FormFactor = Enum.FormFactor.Custom
  1702. o114.Size = Vector3.new(4, 2, 0.400000006)
  1703. o114.CFrame = CFrame.new(69.2667007, 140.643326, 119.237953, 0.168529555, 0.171010479, -0.970751226, -0.0593909994, 0.984808266, 0.163176507, 0.983907819, 0.0301536992, 0.176125526)
  1704. o114.BottomSurface = Enum.SurfaceType.Smooth
  1705. o114.TopSurface = Enum.SurfaceType.Smooth
  1706. o114.Color = Color3.new(1, 0.34902, 0.34902)
  1707. o114.Position = Vector3.new(69.2667007, 140.643326, 119.237953)
  1708. o114.Orientation = Vector3.new(-9.39000034, -79.7200012, -3.45000005)
  1709. o114.Color = Color3.new(1, 0.34902, 0.34902)
  1710. o115.Name = "Life2"
  1711. o115.Parent = o114
  1712. o115.CanvasSize = Vector2.new(256, 128)
  1713. o116.Name = "Contents"
  1714. o116.Parent = o115
  1715. o116.Position = UDim2.new(0,8,0,8)
  1716. o116.Size = UDim2.new(1,-16,1,-16)
  1717. o116.Text = "Made by oliver551"
  1718. o116.Position = UDim2.new(0,8,0,8)
  1719. o116.BackgroundColor3 = Color3.new(1, 1, 1)
  1720. o116.BackgroundTransparency = 1
  1721. o116.BorderSizePixel = 0
  1722. o116.ClipsDescendants = true
  1723. o116.Font = Enum.Font.SourceSansBold
  1724. o116.FontSize = Enum.FontSize.Size48
  1725. o116.TextColor3 = Color3.new(1, 1, 0.8)
  1726. o116.TextScaled = true
  1727. o116.TextStrokeTransparency = 0
  1728. o116.TextWrapped = true
  1729. o117.Name = "Handle"
  1730. o117.Parent = o101
  1731. o117.Position = Vector3.new(70.2141876, 142.4646, 115.092606)
  1732. o117.Rotation = Vector3.new(-124.099998, -66.2099991, -126.5)
  1733. o117.Anchored = true
  1734. o117.CanCollide = false
  1735. o117.Locked = true
  1736. o117.FormFactor = Enum.FormFactor.Custom
  1737. o117.Size = Vector3.new(1.93002772, 1.76999903, 1.60000014)
  1738. o117.CFrame = CFrame.new(70.2141876, 142.4646, 115.092606, -0.239958882, 0.324324816, -0.915012062, -2.53508947e-08, 0.942543566, 0.334083378, 0.970790088, 0.080166325, -0.226171717)
  1739. o117.BottomSurface = Enum.SurfaceType.Smooth
  1740. o117.TopSurface = Enum.SurfaceType.Smooth
  1741. o117.Position = Vector3.new(70.2141876, 142.4646, 115.092606)
  1742. o117.Orientation = Vector3.new(-19.5200005, -103.879997, 0)
  1743. o118.Parent = o117
  1744. o118.MeshId = "http://www.roblox.com/asset/?id=151738660 "
  1745. o118.TextureId = "http://www.roblox.com/asset/?id=244067519"
  1746. o118.MeshType = Enum.MeshType.FileMesh
  1747. o119.Parent = o101
  1748. o119.HeadColor = BrickColor.new("Really red")
  1749. o119.LeftArmColor = BrickColor.new("Really black")
  1750. o119.LeftLegColor = BrickColor.new("Really red")
  1751. o119.RightArmColor = BrickColor.new("Really red")
  1752. o119.RightLegColor = BrickColor.new("Really black")
  1753. o119.TorsoColor = BrickColor.new("Really black")
  1754. o120.Parent = o101
  1755. o120.HealthDisplayDistance = 0
  1756. o120.NameDisplayDistance = 0
  1757. o120.RightLeg = o109
  1758. o120.LeftLeg = o108
  1759. o120.Torso = o102
  1760. o120.AutoRotate = false
  1761. o120.Health = 0
  1762. o120.WalkSpeed = 18
  1763. o121.Name = "Spawn"
  1764. o121.Parent = o1
  1765. o121.Transparency = 1
  1766. o121.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1767. o121.Anchored = true
  1768. o121.Locked = true
  1769. o121.Size = Vector3.new(6, 0.0500000007, 6)
  1770. o121.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1771. o121.TopSurface = Enum.SurfaceType.Smooth
  1772. o121.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1773. o122.Name = "Spawn"
  1774. o122.Parent = o1
  1775. o122.Transparency = 1
  1776. o122.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1777. o122.Anchored = true
  1778. o122.Locked = true
  1779. o122.Size = Vector3.new(6, 0.0500000007, 6)
  1780. o122.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1781. o122.TopSurface = Enum.SurfaceType.Smooth
  1782. o122.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1783. o123.Name = "Spawn"
  1784. o123.Parent = o1
  1785. o123.Transparency = 1
  1786. o123.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1787. o123.Anchored = true
  1788. o123.Locked = true
  1789. o123.Size = Vector3.new(6, 0.0500000007, 6)
  1790. o123.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1791. o123.TopSurface = Enum.SurfaceType.Smooth
  1792. o123.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1793. o124.Name = "Spawn"
  1794. o124.Parent = o1
  1795. o124.Transparency = 1
  1796. o124.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1797. o124.Anchored = true
  1798. o124.Locked = true
  1799. o124.Size = Vector3.new(6, 0.0500000007, 6)
  1800. o124.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1801. o124.TopSurface = Enum.SurfaceType.Smooth
  1802. o124.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1803. o125.Name = "Spawn"
  1804. o125.Parent = o1
  1805. o125.Transparency = 1
  1806. o125.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1807. o125.Anchored = true
  1808. o125.Locked = true
  1809. o125.Size = Vector3.new(6, 0.0500000007, 6)
  1810. o125.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1811. o125.TopSurface = Enum.SurfaceType.Smooth
  1812. o125.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1813. o126.Name = "Spawn"
  1814. o126.Parent = o1
  1815. o126.Transparency = 1
  1816. o126.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1817. o126.Anchored = true
  1818. o126.Locked = true
  1819. o126.Size = Vector3.new(6, 0.0500000007, 6)
  1820. o126.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1821. o126.TopSurface = Enum.SurfaceType.Smooth
  1822. o126.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1823. o127.Name = "Spawn"
  1824. o127.Parent = o1
  1825. o127.Transparency = 1
  1826. o127.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1827. o127.Anchored = true
  1828. o127.Locked = true
  1829. o127.Size = Vector3.new(6, 0.0500000007, 6)
  1830. o127.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1831. o127.TopSurface = Enum.SurfaceType.Smooth
  1832. o127.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1833. o128.Name = "Spawn"
  1834. o128.Parent = o1
  1835. o128.Transparency = 1
  1836. o128.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1837. o128.Anchored = true
  1838. o128.Locked = true
  1839. o128.Size = Vector3.new(6, 0.0500000007, 6)
  1840. o128.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1841. o128.TopSurface = Enum.SurfaceType.Smooth
  1842. o128.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1843. o129.Name = "Spawn"
  1844. o129.Parent = o1
  1845. o129.Transparency = 1
  1846. o129.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1847. o129.Anchored = true
  1848. o129.Locked = true
  1849. o129.Size = Vector3.new(6, 0.0500000007, 6)
  1850. o129.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1851. o129.TopSurface = Enum.SurfaceType.Smooth
  1852. o129.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1853. o130.Name = "Spawn"
  1854. o130.Parent = o1
  1855. o130.Transparency = 1
  1856. o130.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1857. o130.Anchored = true
  1858. o130.Locked = true
  1859. o130.Size = Vector3.new(6, 0.0500000007, 6)
  1860. o130.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1861. o130.TopSurface = Enum.SurfaceType.Smooth
  1862. o130.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1863. o131.Name = "Spawn"
  1864. o131.Parent = o1
  1865. o131.Transparency = 1
  1866. o131.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1867. o131.Anchored = true
  1868. o131.Locked = true
  1869. o131.Size = Vector3.new(6, 0.0500000007, 6)
  1870. o131.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1871. o131.TopSurface = Enum.SurfaceType.Smooth
  1872. o131.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1873. o132.Name = "Spawn"
  1874. o132.Parent = o1
  1875. o132.Transparency = 1
  1876. o132.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1877. o132.Anchored = true
  1878. o132.Locked = true
  1879. o132.Size = Vector3.new(6, 0.0500000007, 6)
  1880. o132.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1881. o132.TopSurface = Enum.SurfaceType.Smooth
  1882. o132.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1883. o133.Name = "Spawn"
  1884. o133.Parent = o1
  1885. o133.Transparency = 1
  1886. o133.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1887. o133.Anchored = true
  1888. o133.Locked = true
  1889. o133.Size = Vector3.new(6, 0.0500000007, 6)
  1890. o133.CFrame = CFrame.new(120.646057, 129.018356, 104.018715, 1, -5.51026105e-08, 5.96046448e-08, 4.9163603e-08, 1, 3.55271368e-15, 2.98023224e-08, 3.2447911e-09, 1)
  1891. o133.TopSurface = Enum.SurfaceType.Smooth
  1892. o133.Position = Vector3.new(120.646057, 129.018356, 104.018715)
  1893. o134.Name = "mountain"
  1894. o134.Parent = o1
  1895. o134.BrickColor = BrickColor.new("Pastel Blue")
  1896. o134.Transparency = 1
  1897. o134.Position = Vector3.new(82.2628326, 174.581268, 38.1716385)
  1898. o134.Rotation = Vector3.new(0, 19, 0)
  1899. o134.Anchored = true
  1900. o134.Locked = true
  1901. o134.FormFactor = Enum.FormFactor.Custom
  1902. o134.Size = Vector3.new(80.2000046, 56.5999985, 4)
  1903. o134.CFrame = CFrame.new(82.2628326, 174.581268, 38.1716385, 0.945512772, -2.52983391e-05, 0.325584918, 3.5999994e-05, 1, -2.68443491e-05, -0.325584918, 3.71027345e-05, 0.945512772)
  1904. o134.BottomSurface = Enum.SurfaceType.Smooth
  1905. o134.TopSurface = Enum.SurfaceType.Smooth
  1906. o134.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1907. o134.Position = Vector3.new(82.2628326, 174.581268, 38.1716385)
  1908. o134.Orientation = Vector3.new(0, 19, 0)
  1909. o134.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1910. o135.Parent = o134
  1911. o135.Texture = "http://www.roblox.com/asset/?id=108407235"
  1912. o135.Face = Enum.NormalId.Back
  1913. o136.Name = "Hitbox"
  1914. o136.Parent = o1
  1915. o136.Material = Enum.Material.SmoothPlastic
  1916. o136.BrickColor = BrickColor.new("Really red")
  1917. o136.Transparency = 1
  1918. o136.Position = Vector3.new(106.499222, 145.06839, 93.6895828)
  1919. o136.Rotation = Vector3.new(0, 20, 0)
  1920. o136.Anchored = true
  1921. o136.Locked = true
  1922. o136.Size = Vector3.new(26.739996, 32.25, 0.0500000007)
  1923. o136.CFrame = CFrame.new(106.499222, 145.06839, 93.6895828, 0.939697385, 1.23969258e-07, 0.342015564, 1.84782596e-06, 1, -5.43954002e-06, -0.342015564, 5.74350179e-06, 0.939697385)
  1924. o136.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1925. o136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1926. o136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1927. o136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1928. o136.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1929. o136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1930. o136.Color = Color3.new(1, 0, 0)
  1931. o136.Position = Vector3.new(106.499222, 145.06839, 93.6895828)
  1932. o136.Orientation = Vector3.new(0, 20, 0)
  1933. o136.Color = Color3.new(1, 0, 0)
  1934. o137.Name = "mountain"
  1935. o137.Parent = o1
  1936. o137.BrickColor = BrickColor.new("Pastel Blue")
  1937. o137.Transparency = 1
  1938. o137.Position = Vector3.new(361.727722, 27.5823288, 557.065186)
  1939. o137.Rotation = Vector3.new(179.990005, -74, 180)
  1940. o137.Anchored = true
  1941. o137.Locked = true
  1942. o137.FormFactor = Enum.FormFactor.Custom
  1943. o137.Size = Vector3.new(109.880013, 56.5999985, 4)
  1944. o137.CFrame = CFrame.new(361.727722, 27.5823288, 557.065186, -0.275602549, -1.40890224e-05, -0.961265564, 4.10001012e-05, 1, -2.64106129e-05, 0.961265564, -4.66909187e-05, -0.275602549)
  1945. o137.BottomSurface = Enum.SurfaceType.Smooth
  1946. o137.TopSurface = Enum.SurfaceType.Smooth
  1947. o137.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1948. o137.Position = Vector3.new(361.727722, 27.5823288, 557.065186)
  1949. o137.Orientation = Vector3.new(0, -106, 0)
  1950. o137.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1951. o138.Parent = o137
  1952. o138.Texture = "http://www.roblox.com/asset/?id=108407257"
  1953. o138.Face = Enum.NormalId.Back
  1954. o139.Name = "mountain"
  1955. o139.Parent = o1
  1956. o139.BrickColor = BrickColor.new("Pastel Blue")
  1957. o139.Transparency = 1
  1958. o139.Position = Vector3.new(253.629242, 174.482391, 34.8967667)
  1959. o139.Rotation = Vector3.new(0, -16, 0)
  1960. o139.Anchored = true
  1961. o139.Locked = true
  1962. o139.FormFactor = Enum.FormFactor.Custom
  1963. o139.Size = Vector3.new(109.880013, 56.5999985, 4)
  1964. o139.CFrame = CFrame.new(253.629242, 174.482391, 34.8967667, 0.961271584, -4.66911515e-05, -0.275603175, 4.10000248e-05, 1, -2.64111532e-05, 0.275603175, 1.40885504e-05, 0.961271584)
  1965. o139.BottomSurface = Enum.SurfaceType.Smooth
  1966. o139.TopSurface = Enum.SurfaceType.Smooth
  1967. o139.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1968. o139.Position = Vector3.new(253.629242, 174.482391, 34.8967667)
  1969. o139.Orientation = Vector3.new(0, -16, 0)
  1970. o139.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1971. o140.Parent = o139
  1972. o140.Texture = "http://www.roblox.com/asset/?id=108407257"
  1973. o140.Face = Enum.NormalId.Back
  1974. o141.Name = "mountain"
  1975. o141.Parent = o1
  1976. o141.BrickColor = BrickColor.new("Pastel Blue")
  1977. o141.Transparency = 1
  1978. o141.Position = Vector3.new(10.8001137, 174.681274, 73.8110123)
  1979. o141.Rotation = Vector3.new(0, 34, 0)
  1980. o141.Anchored = true
  1981. o141.Locked = true
  1982. o141.FormFactor = Enum.FormFactor.Custom
  1983. o141.Size = Vector3.new(80.2000046, 56.5999985, 4)
  1984. o141.CFrame = CFrame.new(10.8001137, 174.681274, 73.8110123, 0.829052985, -1.17384889e-05, 0.559170008, 3.19999999e-05, 1, -2.64520804e-05, -0.559170008, 3.98236189e-05, 0.829052985)
  1985. o141.BottomSurface = Enum.SurfaceType.Smooth
  1986. o141.TopSurface = Enum.SurfaceType.Smooth
  1987. o141.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1988. o141.Position = Vector3.new(10.8001137, 174.681274, 73.8110123)
  1989. o141.Orientation = Vector3.new(0, 34, 0)
  1990. o141.Color = Color3.new(0.501961, 0.733333, 0.858824)
  1991. o142.Parent = o141
  1992. o142.Texture = "http://www.roblox.com/asset/?id=108407221"
  1993. o142.Face = Enum.NormalId.Back
  1994. o143.Name = "far island"
  1995. o143.Parent = o1
  1996. o143.BrickColor = BrickColor.new("Bright blue")
  1997. o143.Reflectance = 0.10000000149012
  1998. o143.Transparency = 1
  1999. o143.Position = Vector3.new(-192.322571, 66.7556839, 662.98175)
  2000. o143.Rotation = Vector3.new(0, 40, 0)
  2001. o143.Anchored = true
  2002. o143.CanCollide = false
  2003. o143.Locked = true
  2004. o143.FormFactor = Enum.FormFactor.Custom
  2005. o143.Size = Vector3.new(0.200012207, 118.400002, 187.099976)
  2006. o143.CFrame = CFrame.new(-192.322571, 66.7556839, 662.98175, 0.766049027, 2.49185141e-05, 0.642792761, 1.29438149e-05, 1, -5.41923109e-05, -0.642792761, 4.98336594e-05, 0.766049027)
  2007. o143.BottomSurface = Enum.SurfaceType.Smooth
  2008. o143.TopSurface = Enum.SurfaceType.Smooth
  2009. o143.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2010. o143.Position = Vector3.new(-192.322571, 66.7556839, 662.98175)
  2011. o143.Orientation = Vector3.new(0, 40, 0)
  2012. o143.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2013. o144.Parent = o143
  2014. o145.Parent = o143
  2015. o145.Texture = "http://www.roblox.com/asset/?id=109294020"
  2016. o145.Face = Enum.NormalId.Right
  2017. o146.Name = "mountain"
  2018. o146.Parent = o1
  2019. o146.BrickColor = BrickColor.new("Pastel Blue")
  2020. o146.Transparency = 1
  2021. o146.Position = Vector3.new(181.789291, 27.6817627, 713.865051)
  2022. o146.Rotation = Vector3.new(180, -14, -180)
  2023. o146.Anchored = true
  2024. o146.Locked = true
  2025. o146.FormFactor = Enum.FormFactor.Custom
  2026. o146.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2027. o146.CFrame = CFrame.new(181.789291, 27.6817627, 713.865051, -0.970295012, 3.09391871e-05, -0.241925001, 3.79999983e-05, 1, -2.45200627e-05, 0.241925001, -3.29848372e-05, -0.970295012)
  2028. o146.BottomSurface = Enum.SurfaceType.Smooth
  2029. o146.TopSurface = Enum.SurfaceType.Smooth
  2030. o146.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2031. o146.Position = Vector3.new(181.789291, 27.6817627, 713.865051)
  2032. o146.Orientation = Vector3.new(0, -166, 0)
  2033. o146.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2034. o147.Parent = o146
  2035. o147.Texture = "http://www.roblox.com/asset/?id=108407248"
  2036. o147.Face = Enum.NormalId.Back
  2037. o148.Name = "mountain"
  2038. o148.Parent = o1
  2039. o148.BrickColor = BrickColor.new("Pastel Blue")
  2040. o148.Transparency = 1
  2041. o148.Position = Vector3.new(320.025574, 27.7812233, 637.354431)
  2042. o148.Rotation = Vector3.new(180, -44, -180)
  2043. o148.Anchored = true
  2044. o148.Locked = true
  2045. o148.FormFactor = Enum.FormFactor.Custom
  2046. o148.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2047. o148.CFrame = CFrame.new(320.025574, 27.7812233, 637.354431, -0.719360232, 4.53084203e-06, -0.694637239, 3.20000108e-05, 1, -2.66163297e-05, 0.694637239, -4.13751259e-05, -0.719360232)
  2048. o148.BottomSurface = Enum.SurfaceType.Smooth
  2049. o148.TopSurface = Enum.SurfaceType.Smooth
  2050. o148.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2051. o148.Position = Vector3.new(320.025574, 27.7812233, 637.354431)
  2052. o148.Orientation = Vector3.new(0, -136, 0)
  2053. o148.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2054. o149.Parent = o148
  2055. o149.Texture = "http://www.roblox.com/asset/?id=108407221"
  2056. o149.Face = Enum.NormalId.Back
  2057. o150.Name = "Hitbox"
  2058. o150.Parent = o1
  2059. o150.Material = Enum.Material.SmoothPlastic
  2060. o150.BrickColor = BrickColor.new("Really red")
  2061. o150.Transparency = 1
  2062. o150.Position = Vector3.new(137.37146, 145.118362, 109.240211)
  2063. o150.Rotation = Vector3.new(0, -80, 0)
  2064. o150.Anchored = true
  2065. o150.Locked = true
  2066. o150.Size = Vector3.new(29.2800274, 32.25, 0.0500000007)
  2067. o150.CFrame = CFrame.new(137.37146, 145.118362, 109.240211, 0.173644513, 1.24140286e-07, -0.98480916, -5.67789357e-06, 1, -8.7508829e-07, 0.98480916, 5.74358683e-06, 0.173644513)
  2068. o150.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2069. o150.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. o150.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. o150.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. o150.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2073. o150.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2074. o150.Color = Color3.new(1, 0, 0)
  2075. o150.Position = Vector3.new(137.37146, 145.118362, 109.240211)
  2076. o150.Orientation = Vector3.new(0, -80, 0)
  2077. o150.Color = Color3.new(1, 0, 0)
  2078. o151.Name = "mountain"
  2079. o151.Parent = o1
  2080. o151.BrickColor = BrickColor.new("Pastel Blue")
  2081. o151.Transparency = 1
  2082. o151.Position = Vector3.new(322.813995, 27.7812233, 314.237488)
  2083. o151.Rotation = Vector3.new(0, -56, 0)
  2084. o151.Anchored = true
  2085. o151.Locked = true
  2086. o151.FormFactor = Enum.FormFactor.Custom
  2087. o151.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2088. o151.CFrame = CFrame.new(322.813995, 27.7812233, 314.237488, 0.559165776, -3.98239754e-05, -0.829048634, 3.19996325e-05, 1, -2.64516766e-05, 0.829048634, -1.17384925e-05, 0.559165776)
  2089. o151.BottomSurface = Enum.SurfaceType.Smooth
  2090. o151.TopSurface = Enum.SurfaceType.Smooth
  2091. o151.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2092. o151.Position = Vector3.new(322.813995, 27.7812233, 314.237488)
  2093. o151.Orientation = Vector3.new(0, -56, 0)
  2094. o151.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2095. o152.Parent = o151
  2096. o152.Texture = "http://www.roblox.com/asset/?id=108407221"
  2097. o152.Face = Enum.NormalId.Back
  2098. o153.Name = "mountain"
  2099. o153.Parent = o1
  2100. o153.BrickColor = BrickColor.new("Pastel Blue")
  2101. o153.Transparency = 1
  2102. o153.Position = Vector3.new(255.837585, 27.6812229, 684.86145)
  2103. o153.Rotation = Vector3.new(180, -29, -180)
  2104. o153.Anchored = true
  2105. o153.Locked = true
  2106. o153.FormFactor = Enum.FormFactor.Custom
  2107. o153.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2108. o153.CFrame = CFrame.new(255.837585, 27.6812229, 684.86145, -0.874611795, 1.83316552e-05, -0.484823883, 3.5999994e-05, 1, -2.71322479e-05, 0.484823883, -4.11838446e-05, -0.874611795)
  2109. o153.BottomSurface = Enum.SurfaceType.Smooth
  2110. o153.TopSurface = Enum.SurfaceType.Smooth
  2111. o153.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2112. o153.Position = Vector3.new(255.837585, 27.6812229, 684.86145)
  2113. o153.Orientation = Vector3.new(0, -151, 0)
  2114. o153.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2115. o154.Parent = o153
  2116. o154.Texture = "http://www.roblox.com/asset/?id=108407235"
  2117. o154.Face = Enum.NormalId.Back
  2118. o155.Name = "mountain"
  2119. o155.Parent = o1
  2120. o155.BrickColor = BrickColor.new("Pastel Blue")
  2121. o155.Transparency = 1
  2122. o155.Position = Vector3.new(87.6437454, 27.5823288, 717.843567)
  2123. o155.Rotation = Vector3.new(180, 6, -180)
  2124. o155.Anchored = true
  2125. o155.Locked = true
  2126. o155.FormFactor = Enum.FormFactor.Custom
  2127. o155.Size = Vector3.new(109.880013, 56.5999985, 4)
  2128. o155.CFrame = CFrame.new(87.6437454, 27.5823288, 717.843567, -0.994525611, 4.36462105e-05, 0.104494058, 4.10000248e-05, 1, -2.74718277e-05, -0.104494058, -2.30371734e-05, -0.994525611)
  2129. o155.BottomSurface = Enum.SurfaceType.Smooth
  2130. o155.TopSurface = Enum.SurfaceType.Smooth
  2131. o155.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2132. o155.Position = Vector3.new(87.6437454, 27.5823288, 717.843567)
  2133. o155.Orientation = Vector3.new(0, 174, 0)
  2134. o155.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2135. o156.Parent = o155
  2136. o156.Texture = "http://www.roblox.com/asset/?id=108407257"
  2137. o156.Face = Enum.NormalId.Back
  2138. o157.Name = "mountain"
  2139. o157.Parent = o1
  2140. o157.BrickColor = BrickColor.new("Pastel Blue")
  2141. o157.Transparency = 1
  2142. o157.Position = Vector3.new(358.453064, 27.681221, 385.699799)
  2143. o157.Rotation = Vector3.new(0, -71, 0.00999999978)
  2144. o157.Anchored = true
  2145. o157.Locked = true
  2146. o157.FormFactor = Enum.FormFactor.Custom
  2147. o157.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2148. o157.CFrame = CFrame.new(358.453064, 27.681221, 385.699799, 0.325581938, -3.71030947e-05, -0.945507467, 3.5999743e-05, 1, -2.68438653e-05, 0.945507467, -2.52982572e-05, 0.325581938)
  2149. o157.BottomSurface = Enum.SurfaceType.Smooth
  2150. o157.TopSurface = Enum.SurfaceType.Smooth
  2151. o157.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2152. o157.Position = Vector3.new(358.453064, 27.681221, 385.699799)
  2153. o157.Orientation = Vector3.new(0, -71, 0)
  2154. o157.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2155. o158.Parent = o157
  2156. o158.Texture = "http://www.roblox.com/asset/?id=108407235"
  2157. o158.Face = Enum.NormalId.Back
  2158. o159.Name = "mountain"
  2159. o159.Parent = o1
  2160. o159.BrickColor = BrickColor.new("Pastel Blue")
  2161. o159.Transparency = 1
  2162. o159.Position = Vector3.new(-191.03804, 27.9623146, 540.465576)
  2163. o159.Rotation = Vector3.new(180, 66, -179.990005)
  2164. o159.Anchored = true
  2165. o159.Locked = true
  2166. o159.FormFactor = Enum.FormFactor.Custom
  2167. o159.Size = Vector3.new(109.880013, 56.5999985, 4)
  2168. o159.CFrame = CFrame.new(-191.03804, 27.9623146, 540.465576, -0.40677315, 4.00259487e-05, 0.913529277, 4.10000139e-05, 1, -2.55582945e-05, -0.913529277, 2.70582805e-05, -0.40677315)
  2169. o159.BottomSurface = Enum.SurfaceType.Smooth
  2170. o159.TopSurface = Enum.SurfaceType.Smooth
  2171. o159.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2172. o159.Position = Vector3.new(-191.03804, 27.9623146, 540.465576)
  2173. o159.Orientation = Vector3.new(0, 114, 0)
  2174. o159.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2175. o160.Parent = o159
  2176. o160.Texture = "http://www.roblox.com/asset/?id=108407257"
  2177. o160.Face = Enum.NormalId.Back
  2178. o161.Name = "Hitbox"
  2179. o161.Parent = o1
  2180. o161.Material = Enum.Material.SmoothPlastic
  2181. o161.BrickColor = BrickColor.new("Really red")
  2182. o161.Transparency = 1
  2183. o161.Position = Vector3.new(105.981445, 161.218262, 106.110085)
  2184. o161.Rotation = Vector3.new(-180, 0, -180)
  2185. o161.Anchored = true
  2186. o161.CanCollide = false
  2187. o161.Locked = true
  2188. o161.Size = Vector3.new(67.9400253, 0.0500000007, 33.7500038)
  2189. o161.CFrame = CFrame.new(105.981445, 161.218262, 106.110085, -1.00000083, 1.2411337e-07, 6.40749931e-06, 1.2415245e-07, 1, 5.74361047e-06, -6.5267086e-06, 5.74360956e-06, -1.00000107)
  2190. o161.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2191. o161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2192. o161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2193. o161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2194. o161.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2195. o161.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2196. o161.Color = Color3.new(1, 0, 0)
  2197. o161.Position = Vector3.new(105.981445, 161.218262, 106.110085)
  2198. o161.Orientation = Vector3.new(0, 180, 0)
  2199. o161.Color = Color3.new(1, 0, 0)
  2200. o162.Name = "mountain"
  2201. o162.Parent = o1
  2202. o162.BrickColor = BrickColor.new("Pastel Blue")
  2203. o162.Transparency = 1
  2204. o162.Position = Vector3.new(374.157745, 27.6817627, 463.659576)
  2205. o162.Rotation = Vector3.new(0.0199999996, -85.9899979, 0.0199999996)
  2206. o162.Anchored = true
  2207. o162.Locked = true
  2208. o162.FormFactor = Enum.FormFactor.Custom
  2209. o162.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2210. o162.CFrame = CFrame.new(374.157745, 27.6817627, 463.659576, 0.0697585195, -2.60195266e-05, -0.997557878, 3.79998746e-05, 1, -2.34247673e-05, 0.997557878, -3.6273108e-05, 0.0697585195)
  2211. o162.BottomSurface = Enum.SurfaceType.Smooth
  2212. o162.TopSurface = Enum.SurfaceType.Smooth
  2213. o162.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2214. o162.Position = Vector3.new(374.157745, 27.6817627, 463.659576)
  2215. o162.Orientation = Vector3.new(0, -86, 0)
  2216. o162.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2217. o163.Parent = o162
  2218. o163.Texture = "http://www.roblox.com/asset/?id=108407248"
  2219. o163.Face = Enum.NormalId.Back
  2220. o164.Name = "mountain"
  2221. o164.Parent = o1
  2222. o164.BrickColor = BrickColor.new("Pastel Blue")
  2223. o164.Transparency = 1
  2224. o164.Position = Vector3.new(372.746857, 145.812943, 215.936539)
  2225. o164.Rotation = Vector3.new(179.990005, -74, 180)
  2226. o164.Anchored = true
  2227. o164.Locked = true
  2228. o164.FormFactor = Enum.FormFactor.Custom
  2229. o164.Size = Vector3.new(109.880013, 56.5999985, 4)
  2230. o164.CFrame = CFrame.new(372.746857, 145.812943, 215.936539, -0.275601625, -1.41286482e-05, -0.961267233, 4.09988206e-05, 1, -2.64516675e-05, 0.961267233, -4.67010323e-05, -0.275601625)
  2231. o164.BottomSurface = Enum.SurfaceType.Smooth
  2232. o164.TopSurface = Enum.SurfaceType.Smooth
  2233. o164.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2234. o164.Position = Vector3.new(372.746857, 145.812943, 215.936539)
  2235. o164.Orientation = Vector3.new(0, -106, 0)
  2236. o164.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2237. o165.Parent = o164
  2238. o165.Texture = "http://www.roblox.com/asset/?id=108407257"
  2239. o165.Face = Enum.NormalId.Back
  2240. o166.Name = "mountain"
  2241. o166.Parent = o1
  2242. o166.BrickColor = BrickColor.new("Pastel Blue")
  2243. o166.Transparency = 1
  2244. o166.Position = Vector3.new(385.176788, 145.912186, 122.530739)
  2245. o166.Rotation = Vector3.new(0.0199999996, -86, 0.0199999996)
  2246. o166.Anchored = true
  2247. o166.Locked = true
  2248. o166.FormFactor = Enum.FormFactor.Custom
  2249. o166.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2250. o166.CFrame = CFrame.new(385.176788, 145.912186, 122.530739, 0.0697599575, -2.60591532e-05, -0.997559071, 3.8012724e-05, 1, -2.34637828e-05, 0.997559071, -3.62831925e-05, 0.0697599575)
  2251. o166.BottomSurface = Enum.SurfaceType.Smooth
  2252. o166.TopSurface = Enum.SurfaceType.Smooth
  2253. o166.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2254. o166.Position = Vector3.new(385.176788, 145.912186, 122.530739)
  2255. o166.Orientation = Vector3.new(0, -86, 0)
  2256. o166.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2257. o167.Parent = o166
  2258. o167.Texture = "http://www.roblox.com/asset/?id=108407248"
  2259. o167.Face = Enum.NormalId.Back
  2260. o168.Name = "mountain"
  2261. o168.Parent = o1
  2262. o168.BrickColor = BrickColor.new("Pastel Blue")
  2263. o168.Transparency = 1
  2264. o168.Position = Vector3.new(-158.859665, 166.341278, 204.668259)
  2265. o168.Rotation = Vector3.new(0, 79, 0)
  2266. o168.Anchored = true
  2267. o168.Locked = true
  2268. o168.FormFactor = Enum.FormFactor.Custom
  2269. o168.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2270. o168.CFrame = CFrame.new(-158.859665, 166.341278, 204.668259, 0.190789968, 2.48403666e-07, 0.981630862, 3.59999976e-05, 1, -7.25001883e-06, -0.981630862, 3.672194e-05, 0.190789968)
  2271. o168.BottomSurface = Enum.SurfaceType.Smooth
  2272. o168.TopSurface = Enum.SurfaceType.Smooth
  2273. o168.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2274. o168.Position = Vector3.new(-158.859665, 166.341278, 204.668259)
  2275. o168.Orientation = Vector3.new(0, 79, 0)
  2276. o168.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2277. o169.Parent = o168
  2278. o169.Texture = "http://www.roblox.com/asset/?id=108407235"
  2279. o169.Face = Enum.NormalId.Back
  2280. o170.Name = "mountain"
  2281. o170.Parent = o1
  2282. o170.BrickColor = BrickColor.new("Pastel Blue")
  2283. o170.Transparency = 1
  2284. o170.Position = Vector3.new(-163.968887, 166.441299, 280.903442)
  2285. o170.Rotation = Vector3.new(-180, 86, -180)
  2286. o170.Anchored = true
  2287. o170.Locked = true
  2288. o170.FormFactor = Enum.FormFactor.Custom
  2289. o170.Size = Vector3.new(73.2400055, 56.5999985, 4)
  2290. o170.CFrame = CFrame.new(-163.968887, 166.441299, 280.903442, -0.0697299987, 5.43120882e-09, 0.997565985, 3.19999999e-05, 1, 2.23135999e-06, -0.997565985, 3.20776999e-05, -0.0697299987)
  2291. o170.BottomSurface = Enum.SurfaceType.Smooth
  2292. o170.TopSurface = Enum.SurfaceType.Smooth
  2293. o170.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2294. o170.Position = Vector3.new(-163.968887, 166.441299, 280.903442)
  2295. o170.Orientation = Vector3.new(0, 94, 0)
  2296. o170.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2297. o171.Parent = o170
  2298. o171.Texture = "http://www.roblox.com/asset/?id=108407221"
  2299. o171.Face = Enum.NormalId.Back
  2300. o172.Name = "mountain"
  2301. o172.Parent = o1
  2302. o172.BrickColor = BrickColor.new("Pastel Blue")
  2303. o172.Transparency = 1
  2304. o172.Position = Vector3.new(-76.0140533, 166.24231, 54.6258812)
  2305. o172.Rotation = Vector3.new(0, 44, 0)
  2306. o172.Anchored = true
  2307. o172.Locked = true
  2308. o172.FormFactor = Enum.FormFactor.Custom
  2309. o172.Size = Vector3.new(109.880013, 56.5999985, 4)
  2310. o172.CFrame = CFrame.new(-76.0140533, 166.24231, 54.6258812, 0.719315052, -1.17972049e-05, 0.694684029, 4.1000003e-05, 1, -2.54716051e-05, -0.694684029, 4.68041508e-05, 0.719315052)
  2311. o172.BottomSurface = Enum.SurfaceType.Smooth
  2312. o172.TopSurface = Enum.SurfaceType.Smooth
  2313. o172.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2314. o172.Position = Vector3.new(-76.0140533, 166.24231, 54.6258812)
  2315. o172.Orientation = Vector3.new(0, 44, 0)
  2316. o172.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2317. o173.Parent = o172
  2318. o173.Texture = "http://www.roblox.com/asset/?id=108407257"
  2319. o173.Face = Enum.NormalId.Back
  2320. o174.Name = "mountain"
  2321. o174.Parent = o1
  2322. o174.BrickColor = BrickColor.new("Pastel Blue")
  2323. o174.Transparency = 1
  2324. o174.Position = Vector3.new(-133.480881, 166.341782, 129.301651)
  2325. o174.Rotation = Vector3.new(0, 64, 0)
  2326. o174.Anchored = true
  2327. o174.Locked = true
  2328. o174.FormFactor = Enum.FormFactor.Custom
  2329. o174.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2330. o174.CFrame = CFrame.new(-133.480881, 166.341782, 129.301651, 0.438367844, 1.46617367e-06, 0.898795724, 3.79999838e-05, 1, -2.016492e-05, -0.898795724, 4.299387e-05, 0.438367844)
  2331. o174.BottomSurface = Enum.SurfaceType.Smooth
  2332. o174.TopSurface = Enum.SurfaceType.Smooth
  2333. o174.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2334. o174.Position = Vector3.new(-133.480881, 166.341782, 129.301651)
  2335. o174.Orientation = Vector3.new(0, 64, 0)
  2336. o174.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2337. o175.Parent = o174
  2338. o175.Texture = "http://www.roblox.com/asset/?id=108407248"
  2339. o175.Face = Enum.NormalId.Back
  2340. o176.Name = "mountain"
  2341. o176.Parent = o1
  2342. o176.BrickColor = BrickColor.new("Pastel Blue")
  2343. o176.Transparency = 1
  2344. o176.Position = Vector3.new(-269.539581, 26.2017422, 644.588074)
  2345. o176.Rotation = Vector3.new(180, 46, -180)
  2346. o176.Anchored = true
  2347. o176.Locked = true
  2348. o176.FormFactor = Enum.FormFactor.Custom
  2349. o176.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2350. o176.CFrame = CFrame.new(-269.539581, 26.2017422, 644.588074, -0.694663167, 4.36680457e-05, 0.719335198, 3.80000056e-05, 1, -2.40094523e-05, -0.719335198, 1.06562566e-05, -0.694663167)
  2351. o176.BottomSurface = Enum.SurfaceType.Smooth
  2352. o176.TopSurface = Enum.SurfaceType.Smooth
  2353. o176.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2354. o176.Position = Vector3.new(-269.539581, 26.2017422, 644.588074)
  2355. o176.Orientation = Vector3.new(0, 134, 0)
  2356. o176.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2357. o177.Parent = o176
  2358. o177.Texture = "http://www.roblox.com/asset/?id=108407248"
  2359. o177.Face = Enum.NormalId.Back
  2360. o178.Name = "mountain"
  2361. o178.Parent = o1
  2362. o178.BrickColor = BrickColor.new("Pastel Blue")
  2363. o178.Transparency = 1
  2364. o178.Position = Vector3.new(-207.397278, 26.2012005, 694.213684)
  2365. o178.Rotation = Vector3.new(180, 31, -180)
  2366. o178.Anchored = true
  2367. o178.Locked = true
  2368. o178.FormFactor = Enum.FormFactor.Custom
  2369. o178.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2370. o178.CFrame = CFrame.new(-207.397278, 26.2012005, 694.213684, -0.857178152, 4.30597174e-05, 0.515020132, 3.60000085e-05, 1, -2.36909273e-05, -0.515020132, -1.76661604e-06, -0.857178152)
  2371. o178.BottomSurface = Enum.SurfaceType.Smooth
  2372. o178.TopSurface = Enum.SurfaceType.Smooth
  2373. o178.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2374. o178.Position = Vector3.new(-207.397278, 26.2012005, 694.213684)
  2375. o178.Orientation = Vector3.new(0, 149, 0)
  2376. o178.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2377. o179.Parent = o178
  2378. o179.Texture = "http://www.roblox.com/asset/?id=108407235"
  2379. o179.Face = Enum.NormalId.Back
  2380. o180.Name = "mountain"
  2381. o180.Parent = o1
  2382. o180.BrickColor = BrickColor.new("Pastel Blue")
  2383. o180.Transparency = 1
  2384. o180.Position = Vector3.new(-186.640182, 42.5615005, 372.044434)
  2385. o180.Rotation = Vector3.new(0, 69, 0)
  2386. o180.Anchored = true
  2387. o180.Locked = true
  2388. o180.FormFactor = Enum.FormFactor.Custom
  2389. o180.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2390. o180.CFrame = CFrame.new(-186.640182, 42.5615005, 372.044434, 0.358350128, -8.56768111e-07, 0.933587372, 3.60000158e-05, 1, -1.29006057e-05, -0.933587372, 3.82320868e-05, 0.358350128)
  2391. o180.BottomSurface = Enum.SurfaceType.Smooth
  2392. o180.TopSurface = Enum.SurfaceType.Smooth
  2393. o180.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2394. o180.Position = Vector3.new(-186.640182, 42.5615005, 372.044434)
  2395. o180.Orientation = Vector3.new(0, 69, 0)
  2396. o180.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2397. o181.Parent = o180
  2398. o181.Texture = "http://www.roblox.com/asset/?id=108407235"
  2399. o181.Face = Enum.NormalId.Back
  2400. o182.Name = "mountain"
  2401. o182.Parent = o1
  2402. o182.BrickColor = BrickColor.new("Pastel Blue")
  2403. o182.Transparency = 1
  2404. o182.Position = Vector3.new(-148.55954, 42.562027, 302.229034)
  2405. o182.Rotation = Vector3.new(0, 54, 0)
  2406. o182.Anchored = true
  2407. o182.Locked = true
  2408. o182.FormFactor = Enum.FormFactor.Custom
  2409. o182.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2410. o182.CFrame = CFrame.new(-148.55954, 42.562027, 302.229034, 0.587779939, -2.83905979e-06, 0.809020877, 3.79999947e-05, 1, -2.40989739e-05, -0.809020877, 4.49076833e-05, 0.587779939)
  2411. o182.BottomSurface = Enum.SurfaceType.Smooth
  2412. o182.TopSurface = Enum.SurfaceType.Smooth
  2413. o182.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2414. o182.Position = Vector3.new(-148.55954, 42.562027, 302.229034)
  2415. o182.Orientation = Vector3.new(0, 54, 0)
  2416. o182.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2417. o183.Parent = o182
  2418. o183.Texture = "http://www.roblox.com/asset/?id=108407248"
  2419. o183.Face = Enum.NormalId.Back
  2420. o184.Name = "mountain"
  2421. o184.Parent = o1
  2422. o184.BrickColor = BrickColor.new("Pastel Blue")
  2423. o184.Transparency = 1
  2424. o184.Position = Vector3.new(-205.273926, 42.6614914, 449.695831)
  2425. o184.Rotation = Vector3.new(0, 84, 0)
  2426. o184.Anchored = true
  2427. o184.Locked = true
  2428. o184.FormFactor = Enum.FormFactor.Custom
  2429. o184.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2430. o184.CFrame = CFrame.new(-205.273926, 42.6614914, 449.695831, 0.10455402, -1.83377917e-08, 0.994519234, 3.20000072e-05, 1, -3.34572906e-06, -0.994519234, 3.21744301e-05, 0.10455402)
  2431. o184.BottomSurface = Enum.SurfaceType.Smooth
  2432. o184.TopSurface = Enum.SurfaceType.Smooth
  2433. o184.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2434. o184.Position = Vector3.new(-205.273926, 42.6614914, 449.695831)
  2435. o184.Orientation = Vector3.new(0, 84, 0)
  2436. o184.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2437. o185.Parent = o184
  2438. o185.Texture = "http://www.roblox.com/asset/?id=108407221"
  2439. o185.Face = Enum.NormalId.Back
  2440. o186.Name = "mountain"
  2441. o186.Parent = o1
  2442. o186.BrickColor = BrickColor.new("Pastel Blue")
  2443. o186.Transparency = 1
  2444. o186.Position = Vector3.new(-5.1408062, 28.1612091, 701.468445)
  2445. o186.Rotation = Vector3.new(180, 16, -180)
  2446. o186.Anchored = true
  2447. o186.Locked = true
  2448. o186.FormFactor = Enum.FormFactor.Custom
  2449. o186.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2450. o186.CFrame = CFrame.new(-5.1408062, 28.1612091, 701.468445, -0.961254895, 3.34957585e-05, 0.275660992, 3.19999963e-05, 1, -9.92379682e-06, -0.275660962, -7.18147021e-07, -0.961254895)
  2451. o186.BottomSurface = Enum.SurfaceType.Smooth
  2452. o186.TopSurface = Enum.SurfaceType.Smooth
  2453. o186.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2454. o186.Position = Vector3.new(-5.1408062, 28.1612091, 701.468445)
  2455. o186.Orientation = Vector3.new(0, 164, 0)
  2456. o186.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2457. o187.Parent = o186
  2458. o187.Texture = "http://www.roblox.com/asset/?id=108407221"
  2459. o187.Face = Enum.NormalId.Back
  2460. o188.Name = "mountain"
  2461. o188.Parent = o1
  2462. o188.BrickColor = BrickColor.new("Pastel Blue")
  2463. o188.Transparency = 1
  2464. o188.Position = Vector3.new(-78.3772507, 28.061203, 669.633728)
  2465. o188.Rotation = Vector3.new(180, 31, -180)
  2466. o188.Anchored = true
  2467. o188.Locked = true
  2468. o188.FormFactor = Enum.FormFactor.Custom
  2469. o188.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2470. o188.CFrame = CFrame.new(-78.3772507, 28.061203, 669.633728, -0.857178152, 4.30597174e-05, 0.515020132, 3.60000085e-05, 1, -2.36909273e-05, -0.515020132, -1.76661604e-06, -0.857178152)
  2471. o188.BottomSurface = Enum.SurfaceType.Smooth
  2472. o188.TopSurface = Enum.SurfaceType.Smooth
  2473. o188.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2474. o188.Position = Vector3.new(-78.3772507, 28.061203, 669.633728)
  2475. o188.Orientation = Vector3.new(0, 149, 0)
  2476. o188.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2477. o189.Parent = o188
  2478. o189.Texture = "http://www.roblox.com/asset/?id=108407235"
  2479. o189.Face = Enum.NormalId.Back
  2480. o190.Name = "mountain"
  2481. o190.Parent = o1
  2482. o190.BrickColor = BrickColor.new("Pastel Blue")
  2483. o190.Transparency = 1
  2484. o190.Position = Vector3.new(160.223038, 174.581802, 22.466774)
  2485. o190.Rotation = Vector3.new(0, 4, 0)
  2486. o190.Anchored = true
  2487. o190.Locked = true
  2488. o190.FormFactor = Enum.FormFactor.Custom
  2489. o190.Size = Vector3.new(80.2000046, 56.5999985, 4)
  2490. o190.CFrame = CFrame.new(160.223038, 174.581802, 22.466774, 0.997563779, -3.62732681e-05, 0.0697599873, 3.7999991e-05, 1, -2.34252984e-05, -0.0697599873, 2.601911e-05, 0.997563779)
  2491. o190.BottomSurface = Enum.SurfaceType.Smooth
  2492. o190.TopSurface = Enum.SurfaceType.Smooth
  2493. o190.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2494. o190.Position = Vector3.new(160.223038, 174.581802, 22.466774)
  2495. o190.Orientation = Vector3.new(0, 4, 0)
  2496. o190.Color = Color3.new(0.501961, 0.733333, 0.858824)
  2497. o191.Parent = o190
  2498. o191.Texture = "http://www.roblox.com/asset/?id=108407248"
  2499. o191.Face = Enum.NormalId.Back
  2500. o192.Parent = o1
  2501. o192.Material = Enum.Material.Marble
  2502. o192.BrickColor = BrickColor.new("Bright orange")
  2503. o192.Position = Vector3.new(135.633224, 47.8279572, 370.741394)
  2504. o192.Rotation = Vector3.new(161.889999, -17.6100006, 164.029999)
  2505. o192.Anchored = true
  2506. o192.Locked = true
  2507. o192.Size = Vector3.new(30.6310577, 108.040497, 27.916832)
  2508. o192.CFrame = CFrame.new(135.633224, 47.8279572, 370.741394, -0.91638267, -0.26219213, -0.302488595, -0.171032652, 0.939647317, -0.296330571, 0.361927927, -0.219816655, -0.905919135)
  2509. o192.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2510. o192.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. o192.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2512. o192.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2513. o192.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2514. o192.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2515. o192.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2516. o192.Position = Vector3.new(135.633224, 47.8279572, 370.741394)
  2517. o192.Orientation = Vector3.new(17.2399998, -161.539993, -10.3199997)
  2518. o192.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2519. o193.Parent = o1
  2520. o193.Material = Enum.Material.Sand
  2521. o193.BrickColor = BrickColor.new("Cool yellow")
  2522. o193.Position = Vector3.new(62.636055, 7.5283556, 444.158722)
  2523. o193.Rotation = Vector3.new(-180, 0, -180)
  2524. o193.Anchored = true
  2525. o193.Locked = true
  2526. o193.Size = Vector3.new(626.379883, 0.0500000007, 569.999939)
  2527. o193.CFrame = CFrame.new(62.636055, 7.5283556, 444.158722, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2528. o193.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2529. o193.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2530. o193.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2531. o193.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. o193.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2533. o193.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2534. o193.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2535. o193.Position = Vector3.new(62.636055, 7.5283556, 444.158722)
  2536. o193.Orientation = Vector3.new(0, 180, 0)
  2537. o193.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2538. o194.Parent = o1
  2539. o194.Material = Enum.Material.Marble
  2540. o194.BrickColor = BrickColor.new("Bright orange")
  2541. o194.Position = Vector3.new(198.787399, 131.315216, 109.744019)
  2542. o194.Rotation = Vector3.new(177.330002, 30.6599998, -145.050003)
  2543. o194.Anchored = true
  2544. o194.Locked = true
  2545. o194.Size = Vector3.new(67.7200165, 34.5500031, 38.8100014)
  2546. o194.CFrame = CFrame.new(198.787399, 131.315216, 109.744019, -0.705093205, 0.4927333, 0.509958386, 0.552749097, 0.832386553, -0.0400129147, -0.444198132, 0.253666192, -0.85926801)
  2547. o194.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. o194.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2549. o194.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2550. o194.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2551. o194.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2552. o194.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2553. o194.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2554. o194.Position = Vector3.new(198.787399, 131.315216, 109.744019)
  2555. o194.Orientation = Vector3.new(2.28999996, 149.309998, 33.5900002)
  2556. o194.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2557. o195.Parent = o1
  2558. o195.Material = Enum.Material.Marble
  2559. o195.BrickColor = BrickColor.new("Bright orange")
  2560. o195.Position = Vector3.new(102.356888, 130.083176, 111.159981)
  2561. o195.Rotation = Vector3.new(-10.2600002, 1.19000006, -3.24000001)
  2562. o195.Anchored = true
  2563. o195.Locked = true
  2564. o195.Size = Vector3.new(3.98003006, 9.8500185, 4.68999958)
  2565. o195.CFrame = CFrame.new(102.356888, 130.083176, 111.159981, 0.998181522, 0.0565891117, 0.0207700096, -0.0593903214, 0.982212126, 0.178148717, -0.0103192143, -0.179058373, 0.983787775)
  2566. o195.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2567. o195.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2568. o195.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2569. o195.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2570. o195.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2571. o195.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2572. o195.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2573. o195.Position = Vector3.new(102.356888, 130.083176, 111.159981)
  2574. o195.Orientation = Vector3.new(-10.2600002, 1.21000004, -3.46000004)
  2575. o195.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2576. o196.Parent = o1
  2577. o196.Material = Enum.Material.Sand
  2578. o196.BrickColor = BrickColor.new("Cool yellow")
  2579. o196.Position = Vector3.new(111.846085, 128.968353, 90.2787247)
  2580. o196.Rotation = Vector3.new(-180, 0, -180)
  2581. o196.Anchored = true
  2582. o196.Locked = true
  2583. o196.Size = Vector3.new(86.7199631, 0.0500000007, 64.8400116)
  2584. o196.CFrame = CFrame.new(111.846085, 128.968353, 90.2787247, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2585. o196.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2586. o196.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. o196.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. o196.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. o196.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. o196.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2591. o196.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2592. o196.Position = Vector3.new(111.846085, 128.968353, 90.2787247)
  2593. o196.Orientation = Vector3.new(0, 180, 0)
  2594. o196.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2595. o197.Parent = o1
  2596. o197.Material = Enum.Material.Marble
  2597. o197.BrickColor = BrickColor.new("Bright orange")
  2598. o197.Position = Vector3.new(58.4651184, 129.973053, 120.587807)
  2599. o197.Rotation = Vector3.new(-180, 80, -160)
  2600. o197.Anchored = true
  2601. o197.Locked = true
  2602. o197.Size = Vector3.new(17.3799686, 39.5500069, 10.3500023)
  2603. o197.CFrame = CFrame.new(58.4651184, 129.973053, 120.587807, -0.16317673, 0.0593910664, 0.98480767, 0.342019141, 0.939693034, 1.85298887e-07, -0.925417066, 0.336823106, -0.173648849)
  2604. o197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. o197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. o197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. o197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2608. o197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2609. o197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2610. o197.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2611. o197.Position = Vector3.new(58.4651184, 129.973053, 120.587807)
  2612. o197.Orientation = Vector3.new(0, 100, 20)
  2613. o197.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2614. o198.Parent = o1
  2615. o198.Material = Enum.Material.Marble
  2616. o198.BrickColor = BrickColor.new("Bright orange")
  2617. o198.Position = Vector3.new(72.6643372, 131.386047, 65.9277725)
  2618. o198.Rotation = Vector3.new(-174.509995, -21.6000004, -125.169998)
  2619. o198.Anchored = true
  2620. o198.Locked = true
  2621. o198.Size = Vector3.new(64.4000092, 78.609993, 25.4700069)
  2622. o198.CFrame = CFrame.new(72.6643372, 131.386047, 65.9277725, -0.53562212, 0.760026217, -0.368061423, 0.793348312, 0.602222204, 0.0890331864, 0.289322287, -0.244312778, -0.925529003)
  2623. o198.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. o198.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. o198.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. o198.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. o198.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. o198.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2629. o198.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2630. o198.Position = Vector3.new(72.6643372, 131.386047, 65.9277725)
  2631. o198.Orientation = Vector3.new(-5.11000013, -158.309998, 52.7999992)
  2632. o198.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2633. o199.Parent = o1
  2634. o199.Material = Enum.Material.Marble
  2635. o199.BrickColor = BrickColor.new("Bright orange")
  2636. o199.Position = Vector3.new(86.9724884, 128.625763, 98.299263)
  2637. o199.Rotation = Vector3.new(23.6800003, 49.2900009, -5.21999979)
  2638. o199.Anchored = true
  2639. o199.Locked = true
  2640. o199.Size = Vector3.new(68.7200241, 20.9899979, 4.68999958)
  2641. o199.CFrame = CFrame.new(86.9724884, 128.625763, 98.299263, 0.649513066, 0.0593939312, 0.758027196, 0.21984458, 0.939693391, -0.262001157, -0.727874458, 0.336821318, 0.597285688)
  2642. o199.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. o199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. o199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. o199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. o199.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. o199.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2648. o199.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2649. o199.Position = Vector3.new(86.9724884, 128.625763, 98.299263)
  2650. o199.Orientation = Vector3.new(15.1899996, 51.7599983, 13.1700001)
  2651. o199.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2652. o200.Parent = o1
  2653. o200.Material = Enum.Material.Marble
  2654. o200.BrickColor = BrickColor.new("Bright orange")
  2655. o200.Position = Vector3.new(63.760788, 115.398468, 125.162987)
  2656. o200.Rotation = Vector3.new(-180, 80, -160)
  2657. o200.Anchored = true
  2658. o200.Locked = true
  2659. o200.Size = Vector3.new(8.299963, 20.3900223, 107.290047)
  2660. o200.CFrame = CFrame.new(63.760788, 115.398468, 125.162987, -0.163177192, 0.0593911856, 0.984808028, 0.342019588, 0.939693213, 1.89989805e-07, -0.92541939, 0.336823583, -0.173648834)
  2661. o200.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2662. o200.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. o200.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. o200.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2665. o200.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2666. o200.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. o200.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2668. o200.Position = Vector3.new(63.760788, 115.398468, 125.162987)
  2669. o200.Orientation = Vector3.new(0, 100, 20)
  2670. o200.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2671. o201.Parent = o1
  2672. o201.Material = Enum.Material.Marble
  2673. o201.BrickColor = BrickColor.new("Bright orange")
  2674. o201.Position = Vector3.new(104.140488, 129.69371, 111.486397)
  2675. o201.Rotation = Vector3.new(-12.1099997, -28.7600002, -3.70000005)
  2676. o201.Anchored = true
  2677. o201.Locked = true
  2678. o201.Size = Vector3.new(3.04003048, 8.13001251, 3.85000038)
  2679. o201.CFrame = CFrame.new(104.140488, 129.69371, 111.486397, 0.874836147, 0.0565889627, -0.481103808, 0.0376407988, 0.982209146, 0.183976546, 0.482955992, -0.179058149, 0.857142925)
  2680. o201.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. o201.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2682. o201.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2683. o201.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2684. o201.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. o201.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. o201.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2687. o201.Position = Vector3.new(104.140488, 129.69371, 111.486397)
  2688. o201.Orientation = Vector3.new(-10.6000004, -29.2999992, 2.19000006)
  2689. o201.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2690. o202.Parent = o1
  2691. o202.Material = Enum.Material.Marble
  2692. o202.BrickColor = BrickColor.new("Bright orange")
  2693. o202.Position = Vector3.new(130.921753, 133.718323, 88.4623489)
  2694. o202.Rotation = Vector3.new(-180, 20, -180)
  2695. o202.Anchored = true
  2696. o202.Locked = true
  2697. o202.Size = Vector3.new(35.9200096, 9.55000019, 9.25000095)
  2698. o202.CFrame = CFrame.new(130.921753, 133.718323, 88.4623489, -0.939692736, 0, 0.342019886, 0, 1, 0, -0.342019916, 0, -0.939692736)
  2699. o202.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2700. o202.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2701. o202.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2702. o202.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2703. o202.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2704. o202.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2705. o202.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2706. o202.Position = Vector3.new(130.921753, 133.718323, 88.4623489)
  2707. o202.Orientation = Vector3.new(0, 160, 0)
  2708. o202.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2709. o203.Parent = o1
  2710. o203.Material = Enum.Material.Marble
  2711. o203.BrickColor = BrickColor.new("Bright orange")
  2712. o203.Position = Vector3.new(27.3667183, 136.131012, 98.8935318)
  2713. o203.Rotation = Vector3.new(180, -35.9199982, -150)
  2714. o203.Anchored = true
  2715. o203.Locked = true
  2716. o203.Size = Vector3.new(63.1200104, 44.6100082, 23.1700115)
  2717. o203.CFrame = CFrame.new(27.3667183, 136.131012, 98.8935318, -0.701353431, 0.40492788, -0.586636662, 0.500001192, 0.866033792, -4.43427297e-07, 0.508039892, -0.293317527, -0.809856832)
  2718. o203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2719. o203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2720. o203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2721. o203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2722. o203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2723. o203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2724. o203.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2725. o203.Position = Vector3.new(27.3667183, 136.131012, 98.8935318)
  2726. o203.Orientation = Vector3.new(0, -144.080002, 30)
  2727. o203.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2728. o204.Parent = o1
  2729. o204.Material = Enum.Material.Marble
  2730. o204.BrickColor = BrickColor.new("Bright orange")
  2731. o204.Position = Vector3.new(124.268181, 89.6128693, 361.830627)
  2732. o204.Rotation = Vector3.new(167.289993, 1.66999996, 164.789993)
  2733. o204.Anchored = true
  2734. o204.Locked = true
  2735. o204.Size = Vector3.new(16.5892639, 82.8404846, 16.0586433)
  2736. o204.CFrame = CFrame.new(124.268181, 89.6128693, 361.830627, -0.964574695, -0.262191921, 0.0291745625, -0.262068987, 0.93964684, -0.219963089, 0.0302587561, -0.219816566, -0.975071847)
  2737. o204.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2738. o204.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2739. o204.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2740. o204.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2741. o204.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2742. o204.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. o204.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2744. o204.Position = Vector3.new(124.268181, 89.6128693, 361.830627)
  2745. o204.Orientation = Vector3.new(12.71, 178.289993, -15.5799999)
  2746. o204.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2747. o205.Parent = o1
  2748. o205.Material = Enum.Material.Marble
  2749. o205.BrickColor = BrickColor.new("Bright orange")
  2750. o205.Position = Vector3.new(140.093689, 24.8532867, 375.591309)
  2751. o205.Rotation = Vector3.new(180, 39.9700012, 159.990005)
  2752. o205.Anchored = true
  2753. o205.Locked = true
  2754. o205.Size = Vector3.new(49.8892365, 81.8093414, 33.7397842)
  2755. o205.CFrame = CFrame.new(140.093689, 24.8532867, 375.591309, -0.720154524, -0.26218915, 0.642372429, -0.34214586, 0.939647436, -4.87715006e-05, -0.603580058, -0.219817191, -0.766398966)
  2756. o205.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2757. o205.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2758. o205.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. o205.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. o205.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. o205.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. o205.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2763. o205.Position = Vector3.new(140.093689, 24.8532867, 375.591309)
  2764. o205.Orientation = Vector3.new(0, 140.029999, -20.0100002)
  2765. o205.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2766. o206.Parent = o1
  2767. o206.Material = Enum.Material.Marble
  2768. o206.BrickColor = BrickColor.new("Bright orange")
  2769. o206.Position = Vector3.new(214.130966, 59.8595238, 189.836304)
  2770. o206.Rotation = Vector3.new(-4.17999983, 46.9900017, -20.6800003)
  2771. o206.Anchored = true
  2772. o206.Locked = true
  2773. o206.Size = Vector3.new(25.2199574, 161.509995, 225.770035)
  2774. o206.CFrame = CFrame.new(214.130966, 59.8595238, 189.836304, 0.638174295, 0.240873218, 0.731241107, -0.402099818, 0.914242148, 0.0497692674, -0.656543374, -0.325793445, 0.680300891)
  2775. o206.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2776. o206.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. o206.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. o206.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2779. o206.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2780. o206.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2781. o206.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2782. o206.Position = Vector3.new(214.130966, 59.8595238, 189.836304)
  2783. o206.Orientation = Vector3.new(-2.8499999, 47.0699997, -23.7399998)
  2784. o206.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2785. o207.Parent = o1
  2786. o207.Material = Enum.Material.Sand
  2787. o207.BrickColor = BrickColor.new("Cool yellow")
  2788. o207.Position = Vector3.new(59.9744186, 139.144562, 91.7278595)
  2789. o207.Rotation = Vector3.new(-163.190002, 40.5, 174.479996)
  2790. o207.Anchored = true
  2791. o207.Locked = true
  2792. o207.Size = Vector3.new(27.1199913, 0.0500000007, 88.7200394)
  2793. o207.CFrame = CFrame.new(59.9744186, 139.144562, 91.7278595, -0.75682497, -0.0731381848, 0.649512708, 0.0948448926, 0.970913291, 0.219844505, -0.646699727, 0.227986827, -0.727874517)
  2794. o207.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. o207.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. o207.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. o207.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2798. o207.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2799. o207.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2800. o207.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2801. o207.Position = Vector3.new(59.9744186, 139.144562, 91.7278595)
  2802. o207.Orientation = Vector3.new(-12.6999998, 138.259995, 5.57999992)
  2803. o207.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2804. o208.Parent = o1
  2805. o208.Material = Enum.Material.Marble
  2806. o208.BrickColor = BrickColor.new("Bright orange")
  2807. o208.Position = Vector3.new(132.604294, 140.326263, 70.0458755)
  2808. o208.Rotation = Vector3.new(177.330002, 30.6599998, -145.050003)
  2809. o208.Anchored = true
  2810. o208.Locked = true
  2811. o208.Size = Vector3.new(64.4000092, 31.9500065, 38.8100014)
  2812. o208.CFrame = CFrame.new(132.604294, 140.326263, 70.0458755, -0.705093205, 0.4927333, 0.509958386, 0.552749097, 0.832386553, -0.0400129147, -0.444198132, 0.253666192, -0.85926801)
  2813. o208.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2814. o208.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2815. o208.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2816. o208.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2817. o208.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2818. o208.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2819. o208.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2820. o208.Position = Vector3.new(132.604294, 140.326263, 70.0458755)
  2821. o208.Orientation = Vector3.new(2.28999996, 149.309998, 33.5900002)
  2822. o208.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2823. o209.Parent = o1
  2824. o209.Material = Enum.Material.Marble
  2825. o209.BrickColor = BrickColor.new("Bright orange")
  2826. o209.Position = Vector3.new(142.06575, 17.7859077, 377.24472)
  2827. o209.Rotation = Vector3.new(167.289993, 1.66999996, 164.789993)
  2828. o209.Anchored = true
  2829. o209.Locked = true
  2830. o209.Size = Vector3.new(49.8892365, 96.851944, 33.7397842)
  2831. o209.CFrame = CFrame.new(142.06575, 17.7859077, 377.24472, -0.964574695, -0.262191921, 0.0291745625, -0.262068987, 0.93964684, -0.219963089, 0.0302587561, -0.219816566, -0.975071847)
  2832. o209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2833. o209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2834. o209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2835. o209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2836. o209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2837. o209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2838. o209.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2839. o209.Position = Vector3.new(142.06575, 17.7859077, 377.24472)
  2840. o209.Orientation = Vector3.new(12.71, 178.289993, -15.5799999)
  2841. o209.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2842. o210.Parent = o1
  2843. o210.Material = Enum.Material.Marble
  2844. o210.BrickColor = BrickColor.new("Bright orange")
  2845. o210.Position = Vector3.new(31.3863316, 138.532532, 97.4019775)
  2846. o210.Rotation = Vector3.new(180, -35.9199982, -110)
  2847. o210.Anchored = true
  2848. o210.Locked = true
  2849. o210.Size = Vector3.new(14.9800072, 32.2300072, 25.4700069)
  2850. o210.CFrame = CFrame.new(31.3863316, 138.532532, 97.4019775, -0.276987284, 0.761012018, -0.586633503, 0.93969202, 0.342021912, -9.68575478e-08, 0.200641364, -0.551254809, -0.8098526)
  2851. o210.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2852. o210.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2853. o210.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2854. o210.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2855. o210.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2856. o210.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2857. o210.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2858. o210.Position = Vector3.new(31.3863316, 138.532532, 97.4019775)
  2859. o210.Orientation = Vector3.new(0, -144.080002, 70)
  2860. o210.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2861. o211.Parent = o1
  2862. o211.Material = Enum.Material.Marble
  2863. o211.BrickColor = BrickColor.new("Bright orange")
  2864. o211.Position = Vector3.new(47.9034767, 126.223381, 125.073097)
  2865. o211.Rotation = Vector3.new(-180, 80, -160)
  2866. o211.Anchored = true
  2867. o211.Locked = true
  2868. o211.Size = Vector3.new(11.9599676, 34.2700043, 16.470005)
  2869. o211.CFrame = CFrame.new(47.9034767, 126.223381, 125.073097, -0.16317673, 0.0593910664, 0.98480767, 0.342019141, 0.939693034, 1.85298887e-07, -0.925417066, 0.336823106, -0.173648849)
  2870. o211.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2871. o211.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2872. o211.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2873. o211.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2874. o211.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2875. o211.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2876. o211.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2877. o211.Position = Vector3.new(47.9034767, 126.223381, 125.073097)
  2878. o211.Orientation = Vector3.new(0, 100, 20)
  2879. o211.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2880. o212.Parent = o1
  2881. o212.Material = Enum.Material.Marble
  2882. o212.BrickColor = BrickColor.new("Bright orange")
  2883. o212.Position = Vector3.new(103.520584, 131.484955, 110.027657)
  2884. o212.Rotation = Vector3.new(23.6800003, 49.2900009, -5.21999979)
  2885. o212.Anchored = true
  2886. o212.Locked = true
  2887. o212.Size = Vector3.new(6.16002798, 11.0699959, 4.68999958)
  2888. o212.CFrame = CFrame.new(103.520584, 131.484955, 110.027657, 0.649513066, 0.0593939312, 0.758027196, 0.21984458, 0.939693391, -0.262001157, -0.727874458, 0.336821318, 0.597285688)
  2889. o212.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2890. o212.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2891. o212.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2892. o212.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2893. o212.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2894. o212.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2895. o212.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2896. o212.Position = Vector3.new(103.520584, 131.484955, 110.027657)
  2897. o212.Orientation = Vector3.new(15.1899996, 51.7599983, 13.1700001)
  2898. o212.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2899. o213.Parent = o1
  2900. o213.Material = Enum.Material.Marble
  2901. o213.BrickColor = BrickColor.new("Bright orange")
  2902. o213.Position = Vector3.new(-47.1617165, 74.4342651, 219.880707)
  2903. o213.Rotation = Vector3.new(-180, 40, 160)
  2904. o213.Anchored = true
  2905. o213.Locked = true
  2906. o213.Size = Vector3.new(25.2199574, 161.509995, 277.910126)
  2907. o213.CFrame = CFrame.new(-47.1617165, 74.4342651, 219.880707, -0.719841003, -0.262000948, 0.64278686, -0.342015922, 0.939693749, 9.25335314e-07, -0.604017496, -0.219843328, -0.766045094)
  2908. o213.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2909. o213.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2910. o213.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2911. o213.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2912. o213.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2913. o213.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2914. o213.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2915. o213.Position = Vector3.new(-47.1617165, 74.4342651, 219.880707)
  2916. o213.Orientation = Vector3.new(0, 140, -20)
  2917. o213.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2918. o214.Parent = o1
  2919. o214.Material = Enum.Material.Sand
  2920. o214.BrickColor = BrickColor.new("Cool yellow")
  2921. o214.Position = Vector3.new(68.230896, 141.191422, 85.6594315)
  2922. o214.Rotation = Vector3.new(-163.190002, 40.5, 164.479996)
  2923. o214.Anchored = true
  2924. o214.Locked = true
  2925. o214.Size = Vector3.new(46.3399811, 0.0500000007, 68.260025)
  2926. o214.CFrame = CFrame.new(68.230896, 141.191422, 85.6594315, -0.732626736, -0.203448176, 0.649512768, -0.0751931369, 0.972632647, 0.21984455, -0.676464379, 0.112225108, -0.727874577)
  2927. o214.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. o214.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2929. o214.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2930. o214.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2931. o214.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2932. o214.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2933. o214.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2934. o214.Position = Vector3.new(68.230896, 141.191422, 85.6594315)
  2935. o214.Orientation = Vector3.new(-12.6999998, 138.259995, -4.42000008)
  2936. o214.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2937. o215.Parent = o1
  2938. o215.Material = Enum.Material.Marble
  2939. o215.BrickColor = BrickColor.new("Bright orange")
  2940. o215.Position = Vector3.new(98.65065, 134.296112, 83.2907181)
  2941. o215.Rotation = Vector3.new(-169.419998, -21.4200001, 173.75)
  2942. o215.Anchored = true
  2943. o215.Locked = true
  2944. o215.Size = Vector3.new(52.6800117, 17.3700066, 19.6300011)
  2945. o215.CFrame = CFrame.new(98.65065, 134.296112, 83.2907181, -0.925416589, -0.101305902, -0.365160286, -0.173648104, 0.969846666, 0.171008646, 0.336825192, 0.221663505, -0.915103734)
  2946. o215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2947. o215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2948. o215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2949. o215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2950. o215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2951. o215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2952. o215.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2953. o215.Position = Vector3.new(98.65065, 134.296112, 83.2907181)
  2954. o215.Orientation = Vector3.new(-9.85000038, -158.25, -10.1499996)
  2955. o215.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2956. o216.Parent = o1
  2957. o216.Material = Enum.Material.Marble
  2958. o216.BrickColor = BrickColor.new("Bright orange")
  2959. o216.Position = Vector3.new(161.742279, 132.201828, 97.1384659)
  2960. o216.Rotation = Vector3.new(-180, 80, -160)
  2961. o216.Anchored = true
  2962. o216.Locked = true
  2963. o216.Size = Vector3.new(57.8399506, 17.8900032, 52.2299919)
  2964. o216.CFrame = CFrame.new(161.742279, 132.201828, 97.1384659, -0.16317673, 0.0593910664, 0.98480767, 0.342019141, 0.939693034, 1.85298887e-07, -0.925417066, 0.336823106, -0.173648849)
  2965. o216.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2966. o216.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2967. o216.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2968. o216.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2969. o216.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2970. o216.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. o216.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2972. o216.Position = Vector3.new(161.742279, 132.201828, 97.1384659)
  2973. o216.Orientation = Vector3.new(0, 100, 20)
  2974. o216.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2975. o217.Parent = o1
  2976. o217.Material = Enum.Material.Marble
  2977. o217.BrickColor = BrickColor.new("Bright orange")
  2978. o217.Position = Vector3.new(61.9029388, 125.81665, 121.156715)
  2979. o217.Rotation = Vector3.new(37.3400002, 78.8799973, -17.9400005)
  2980. o217.Anchored = true
  2981. o217.Locked = true
  2982. o217.Size = Vector3.new(12.0399637, 31.530014, 10.3500023)
  2983. o217.CFrame = CFrame.new(61.9029388, 125.81665, 121.156715, 0.183487833, 0.0593910813, 0.981226623, 0.321393371, 0.939693213, -0.116977185, -0.929001391, 0.336823612, 0.153334662)
  2984. o217.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2985. o217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2986. o217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2987. o217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2988. o217.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2989. o217.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2990. o217.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2991. o217.Position = Vector3.new(61.9029388, 125.81665, 121.156715)
  2992. o217.Orientation = Vector3.new(6.71999979, 81.1200027, 18.8799992)
  2993. o217.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2994. o218.Parent = o1
  2995. o218.Material = Enum.Material.Marble
  2996. o218.BrickColor = BrickColor.new("Bright orange")
  2997. o218.Position = Vector3.new(78.2381134, 134.468628, 75.9897537)
  2998. o218.Rotation = Vector3.new(-6.34000015, 47.1100006, 17.3899994)
  2999. o218.Anchored = true
  3000. o218.Locked = true
  3001. o218.Size = Vector3.new(92.4200134, 19.2699947, 45.7700233)
  3002. o218.CFrame = CFrame.new(78.2381134, 134.468628, 75.9897537, 0.649513364, -0.203448191, 0.732626796, 0.219844654, 0.972632647, 0.0751931891, -0.727874637, 0.112225071, 0.676464677)
  3003. o218.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3004. o218.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3005. o218.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3006. o218.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3007. o218.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. o218.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3009. o218.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3010. o218.Position = Vector3.new(78.2381134, 134.468628, 75.9897537)
  3011. o218.Orientation = Vector3.new(-4.30999994, 47.2799988, 12.7399998)
  3012. o218.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3013. o219.Parent = o1
  3014. o219.Material = Enum.Material.Marble
  3015. o219.BrickColor = BrickColor.new("Bright orange")
  3016. o219.Position = Vector3.new(105.491158, 64.7652512, 142.382233)
  3017. o219.Rotation = Vector3.new(70, 90, 0)
  3018. o219.Anchored = true
  3019. o219.Locked = true
  3020. o219.Size = Vector3.new(134.840012, 8.25000095, 167.990036)
  3021. o219.CFrame = CFrame.new(105.491158, 64.7652512, 142.382233, -1.7366151e-06, 2.24804876e-06, 1, 0.939696074, 0.342027128, 8.62984677e-07, -0.342022061, 0.939697146, -2.70641522e-06)
  3022. o219.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3023. o219.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3024. o219.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3025. o219.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3026. o219.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3027. o219.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3028. o219.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3029. o219.Position = Vector3.new(105.491158, 64.7652512, 142.382233)
  3030. o219.Orientation = Vector3.new(0, 90, 70)
  3031. o219.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3032. o220.Parent = o1
  3033. o220.Material = Enum.Material.Marble
  3034. o220.BrickColor = BrickColor.new("Bright orange")
  3035. o220.Position = Vector3.new(112.849457, 128.174026, 87.7310257)
  3036. o220.Rotation = Vector3.new(-180, -20, -150)
  3037. o220.Anchored = true
  3038. o220.Locked = true
  3039. o220.Size = Vector3.new(10.9800091, 4.87000179, 6.83000135)
  3040. o220.CFrame = CFrame.new(112.849457, 128.174026, 87.7310257, -0.81379801, 0.469845265, -0.342020929, 0.499998987, 0.866026044, 1.58279061e-08, 0.296198994, -0.171010107, -0.939692438)
  3041. o220.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3042. o220.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3043. o220.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3044. o220.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3045. o220.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3046. o220.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3047. o220.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3048. o220.Position = Vector3.new(112.849457, 128.174026, 87.7310257)
  3049. o220.Orientation = Vector3.new(0, -160, 30)
  3050. o220.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3051. o221.Parent = o1
  3052. o221.Material = Enum.Material.Marble
  3053. o221.BrickColor = BrickColor.new("Bright orange")
  3054. o221.Position = Vector3.new(130.394196, 83.5706253, 136.863556)
  3055. o221.Rotation = Vector3.new(-180, 80, -160)
  3056. o221.Anchored = true
  3057. o221.Locked = true
  3058. o221.Size = Vector3.new(6.43996286, 6.97001982, 33.010006)
  3059. o221.CFrame = CFrame.new(130.394196, 83.5706253, 136.863556, -0.16317673, 0.0593910664, 0.98480767, 0.342019141, 0.939693034, 1.85298887e-07, -0.925417066, 0.336823106, -0.173648849)
  3060. o221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3061. o221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3062. o221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3063. o221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3064. o221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3065. o221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3066. o221.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3067. o221.Position = Vector3.new(130.394196, 83.5706253, 136.863556)
  3068. o221.Orientation = Vector3.new(0, 100, 20)
  3069. o221.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3070. o222.Parent = o1
  3071. o222.Material = Enum.Material.Marble
  3072. o222.BrickColor = BrickColor.new("Bright orange")
  3073. o222.Position = Vector3.new(58.2258339, 136.332962, 125.123573)
  3074. o222.Rotation = Vector3.new(37.3400002, 78.8799973, -17.9400005)
  3075. o222.Anchored = true
  3076. o222.Locked = true
  3077. o222.Size = Vector3.new(10.2399673, 56.2500343, 7.21000051)
  3078. o222.CFrame = CFrame.new(58.2258339, 136.332962, 125.123573, 0.183487833, 0.0593910813, 0.981226623, 0.321393371, 0.939693213, -0.116977185, -0.929001391, 0.336823612, 0.153334662)
  3079. o222.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3080. o222.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. o222.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3082. o222.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. o222.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. o222.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3085. o222.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3086. o222.Position = Vector3.new(58.2258339, 136.332962, 125.123573)
  3087. o222.Orientation = Vector3.new(6.71999979, 81.1200027, 18.8799992)
  3088. o222.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3089. o223.Parent = o1
  3090. o223.Material = Enum.Material.Marble
  3091. o223.BrickColor = BrickColor.new("Bright orange")
  3092. o223.Position = Vector3.new(101.822601, 130.803253, 89.988472)
  3093. o223.Rotation = Vector3.new(180, -20, -170)
  3094. o223.Anchored = true
  3095. o223.Locked = true
  3096. o223.Size = Vector3.new(35.9200096, 9.55000019, 9.25000095)
  3097. o223.CFrame = CFrame.new(101.822601, 130.803253, 89.988472, -0.925418973, 0.163176, -0.342019081, 0.173648283, 0.984808564, -6.53325642e-08, 0.336824149, -0.0593909957, -0.939694762)
  3098. o223.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3099. o223.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3100. o223.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3101. o223.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3102. o223.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3103. o223.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3104. o223.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3105. o223.Position = Vector3.new(101.822601, 130.803253, 89.988472)
  3106. o223.Orientation = Vector3.new(0, -160, 10)
  3107. o223.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3108. o224.Parent = o1
  3109. o224.Material = Enum.Material.Marble
  3110. o224.BrickColor = BrickColor.new("Bright orange")
  3111. o224.Position = Vector3.new(299.191711, 41.9492226, 278.412598)
  3112. o224.Rotation = Vector3.new(117.790001, 72.7799988, -132.059998)
  3113. o224.Anchored = true
  3114. o224.Locked = true
  3115. o224.Size = Vector3.new(56.9889565, 93.4516068, 38.5412827)
  3116. o224.CFrame = CFrame.new(299.191711, 41.9492226, 278.412598, -0.198341951, 0.219801009, 0.955169141, -0.219960377, 0.93969059, -0.261914194, -0.955132425, -0.262047917, -0.13803257)
  3117. o224.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3118. o224.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3119. o224.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3120. o224.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3121. o224.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3122. o224.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3123. o224.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3124. o224.Position = Vector3.new(299.191711, 41.9492226, 278.412598)
  3125. o224.Orientation = Vector3.new(15.1800003, 98.2200012, -13.1700001)
  3126. o224.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3127. o225.Parent = o1
  3128. o225.Material = Enum.Material.Marble
  3129. o225.BrickColor = BrickColor.new("Bright orange")
  3130. o225.Position = Vector3.new(-150.516281, 17.0749035, 437.120178)
  3131. o225.Rotation = Vector3.new(-180, 40, 160)
  3132. o225.Anchored = true
  3133. o225.Locked = true
  3134. o225.Size = Vector3.new(32.8999596, 53.9499969, 22.250042)
  3135. o225.CFrame = CFrame.new(-150.516281, 17.0749035, 437.120178, -0.719841003, -0.262000948, 0.64278686, -0.342015922, 0.939693749, 9.25335314e-07, -0.604017496, -0.219843328, -0.766045094)
  3136. o225.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3137. o225.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3138. o225.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3139. o225.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3140. o225.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3141. o225.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3142. o225.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3143. o225.Position = Vector3.new(-150.516281, 17.0749035, 437.120178)
  3144. o225.Orientation = Vector3.new(0, 140, -20)
  3145. o225.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3146. o226.Parent = o1
  3147. o226.Material = Enum.Material.Marble
  3148. o226.BrickColor = BrickColor.new("Bright orange")
  3149. o226.Position = Vector3.new(-160.944611, 59.7830849, 428.045074)
  3150. o226.Rotation = Vector3.new(167.289993, 1.70000005, 164.800003)
  3151. o226.Anchored = true
  3152. o226.Locked = true
  3153. o226.Size = Vector3.new(10.9399576, 54.6299934, 10.5900345)
  3154. o226.CFrame = CFrame.new(-160.944611, 59.7830849, 428.045074, -0.964610755, -0.262004703, 0.0296998322, -0.262005895, 0.939692259, -0.21984458, 0.0296916366, -0.219845474, -0.975082934)
  3155. o226.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3156. o226.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3157. o226.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3158. o226.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3159. o226.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3160. o226.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3161. o226.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3162. o226.Position = Vector3.new(-160.944611, 59.7830849, 428.045074)
  3163. o226.Orientation = Vector3.new(12.6999998, 178.259995, -15.5799999)
  3164. o226.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3165. o227.Parent = o1
  3166. o227.Material = Enum.Material.Marble
  3167. o227.BrickColor = BrickColor.new("Bright orange")
  3168. o227.Position = Vector3.new(-148.237808, 119.659523, 320.677368)
  3169. o227.Rotation = Vector3.new(150.479996, -46.0400009, 157.820007)
  3170. o227.Anchored = true
  3171. o227.Locked = true
  3172. o227.Size = Vector3.new(18.9500771, 127.989517, 18.3439445)
  3173. o227.CFrame = CFrame.new(-148.237808, 119.659523, 320.677368, -0.642787576, -0.262005359, -0.719854116, -3.35276127e-06, 0.939696431, -0.342021644, 0.766049385, -0.219843641, -0.60402447)
  3174. o227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3175. o227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3176. o227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3177. o227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3178. o227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3179. o227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3180. o227.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3181. o227.Position = Vector3.new(-148.237808, 119.659523, 320.677368)
  3182. o227.Orientation = Vector3.new(20, -130, 0)
  3183. o227.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3184. o228.Parent = o1
  3185. o228.Material = Enum.Material.Marble
  3186. o228.BrickColor = BrickColor.new("Bright orange")
  3187. o228.Position = Vector3.new(320.261261, 58.5978928, 565.176453)
  3188. o228.Rotation = Vector3.new(12.6999998, -1.70000005, -15.1999998)
  3189. o228.Anchored = true
  3190. o228.Locked = true
  3191. o228.Size = Vector3.new(10.9399576, 54.6299934, 10.5900345)
  3192. o228.CFrame = CFrame.new(320.261261, 58.5978928, 565.176453, 0.964615881, 0.26200062, -0.0296936948, -0.262001961, 0.939697683, -0.219827965, -0.0296920892, 0.219827294, 0.975087583)
  3193. o228.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3194. o228.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3195. o228.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3196. o228.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3197. o228.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3198. o228.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3199. o228.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3200. o228.Position = Vector3.new(320.261261, 58.5978928, 565.176453)
  3201. o228.Orientation = Vector3.new(12.6999998, -1.74000001, -15.5799999)
  3202. o228.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3203. o229.Parent = o1
  3204. o229.Material = Enum.Material.Marble
  3205. o229.BrickColor = BrickColor.new("Bright orange")
  3206. o229.Position = Vector3.new(29.9069366, 8.4474678, 664.983521)
  3207. o229.Rotation = Vector3.new(-180, 40, -160)
  3208. o229.Anchored = true
  3209. o229.Locked = true
  3210. o229.Size = Vector3.new(32.8999596, 53.9499969, 22.250042)
  3211. o229.CFrame = CFrame.new(29.9069366, 8.4474678, 664.983521, -0.719850063, 0.262002975, 0.64278686, 0.342021585, 0.939694822, 8.19570232e-07, -0.604024112, 0.219847396, -0.766045094)
  3212. o229.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3213. o229.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3214. o229.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3215. o229.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3216. o229.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3217. o229.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3218. o229.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3219. o229.Position = Vector3.new(29.9069366, 8.4474678, 664.983521)
  3220. o229.Orientation = Vector3.new(0, 140, 20)
  3221. o229.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3222. o230.Parent = o1
  3223. o230.Material = Enum.Material.Marble
  3224. o230.BrickColor = BrickColor.new("Bright orange")
  3225. o230.Position = Vector3.new(37.3777657, 30.630764, 670.520081)
  3226. o230.Rotation = Vector3.new(-167.289993, 1.70000005, -164.800003)
  3227. o230.Anchored = true
  3228. o230.Locked = true
  3229. o230.Size = Vector3.new(20.1999607, 54.6299934, 18.4100361)
  3230. o230.CFrame = CFrame.new(37.3777657, 30.630764, 670.520081, -0.964613318, 0.26200065, 0.0296896994, 0.262000293, 0.939695418, 0.21984826, 0.029697597, 0.219847009, -0.975083828)
  3231. o230.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3232. o230.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3233. o230.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3234. o230.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3235. o230.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3236. o230.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3237. o230.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3238. o230.Position = Vector3.new(37.3777657, 30.630764, 670.520081)
  3239. o230.Orientation = Vector3.new(-12.6999998, 178.259995, 15.5799999)
  3240. o230.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3241. o231.Parent = o1
  3242. o231.Material = Enum.Material.Marble
  3243. o231.BrickColor = BrickColor.new("Bright orange")
  3244. o231.Position = Vector3.new(308.533539, 11.2285938, 555.01178)
  3245. o231.Rotation = Vector3.new(12.6999998, -1.70000005, -15.1999998)
  3246. o231.Anchored = true
  3247. o231.Locked = true
  3248. o231.Size = Vector3.new(32.8999596, 63.8699913, 22.250042)
  3249. o231.CFrame = CFrame.new(308.533539, 11.2285938, 555.01178, 0.964615881, 0.26200062, -0.0296936948, -0.262001961, 0.939697683, -0.219827965, -0.0296920892, 0.219827294, 0.975087583)
  3250. o231.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3251. o231.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3252. o231.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3253. o231.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3254. o231.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3255. o231.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3256. o231.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3257. o231.Position = Vector3.new(308.533539, 11.2285938, 555.01178)
  3258. o231.Orientation = Vector3.new(12.6999998, -1.74000001, -15.5799999)
  3259. o231.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3260. o232.Parent = o1
  3261. o232.Material = Enum.Material.Marble
  3262. o232.BrickColor = BrickColor.new("Bright orange")
  3263. o232.Position = Vector3.new(-155.632019, 40.0344582, 432.095367)
  3264. o232.Rotation = Vector3.new(167.289993, 1.70000005, 164.800003)
  3265. o232.Anchored = true
  3266. o232.Locked = true
  3267. o232.Size = Vector3.new(20.1999607, 54.6299934, 18.4100361)
  3268. o232.CFrame = CFrame.new(-155.632019, 40.0344582, 432.095367, -0.964610755, -0.262004703, 0.0296998322, -0.262005895, 0.939692259, -0.21984458, 0.0296916366, -0.219845474, -0.975082934)
  3269. o232.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3270. o232.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3271. o232.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3272. o232.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3273. o232.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. o232.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. o232.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3276. o232.Position = Vector3.new(-155.632019, 40.0344582, 432.095367)
  3277. o232.Orientation = Vector3.new(12.6999998, 178.259995, -15.5799999)
  3278. o232.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3279. o233.Parent = o1
  3280. o233.Material = Enum.Material.Marble
  3281. o233.BrickColor = BrickColor.new("Bright orange")
  3282. o233.Position = Vector3.new(297.303284, 33.8756409, 280.664124)
  3283. o233.Rotation = Vector3.new(154.580002, 37.1699982, -163.990005)
  3284. o233.Anchored = true
  3285. o233.Locked = true
  3286. o233.Size = Vector3.new(56.9889565, 110.634918, 38.5412827)
  3287. o233.CFrame = CFrame.new(297.303284, 33.8756409, 280.664124, -0.765912533, 0.219797894, 0.604207754, -0.000145426748, 0.939691246, -0.342023969, -0.642944932, -0.262048304, -0.71968925)
  3288. o233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3289. o233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. o233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. o233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. o233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. o233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. o233.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3295. o233.Position = Vector3.new(297.303284, 33.8756409, 280.664124)
  3296. o233.Orientation = Vector3.new(20, 139.990005, -0.00999999978)
  3297. o233.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3298. o234.Parent = o1
  3299. o234.Material = Enum.Material.Marble
  3300. o234.BrickColor = BrickColor.new("Bright orange")
  3301. o234.Position = Vector3.new(312.666992, 115.472397, 256.830292)
  3302. o234.Rotation = Vector3.new(154.580002, 37.1699982, -163.990005)
  3303. o234.Anchored = true
  3304. o234.Locked = true
  3305. o234.Size = Vector3.new(30.8900814, 94.6294937, 18.3439445)
  3306. o234.CFrame = CFrame.new(312.666992, 115.472397, 256.830292, -0.765912533, 0.219797894, 0.604207754, -0.000145426748, 0.939691246, -0.342023969, -0.642944932, -0.262048304, -0.71968925)
  3307. o234.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. o234.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3309. o234.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3310. o234.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3311. o234.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3312. o234.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3313. o234.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3314. o234.Position = Vector3.new(312.666992, 115.472397, 256.830292)
  3315. o234.Orientation = Vector3.new(20, 139.990005, -0.00999999978)
  3316. o234.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3317. o235.Parent = o1
  3318. o235.Material = Enum.Material.Marble
  3319. o235.BrickColor = BrickColor.new("Bright orange")
  3320. o235.Position = Vector3.new(-149.216705, 12.414031, 438.210663)
  3321. o235.Rotation = Vector3.new(167.289993, 1.70000005, 164.800003)
  3322. o235.Anchored = true
  3323. o235.Locked = true
  3324. o235.Size = Vector3.new(32.8999596, 63.8699913, 22.250042)
  3325. o235.CFrame = CFrame.new(-149.216705, 12.414031, 438.210663, -0.964610755, -0.262004703, 0.0296998322, -0.262005895, 0.939692259, -0.21984458, 0.0296916366, -0.219845474, -0.975082934)
  3326. o235.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3327. o235.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3328. o235.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3329. o235.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3330. o235.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3331. o235.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3332. o235.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3333. o235.Position = Vector3.new(-149.216705, 12.414031, 438.210663)
  3334. o235.Orientation = Vector3.new(12.6999998, 178.259995, -15.5799999)
  3335. o235.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3336. o236.Parent = o1
  3337. o236.Material = Enum.Material.Marble
  3338. o236.BrickColor = BrickColor.new("Bright orange")
  3339. o236.Position = Vector3.new(28.6073685, 3.78656197, 663.893188)
  3340. o236.Rotation = Vector3.new(-167.289993, 1.70000005, -164.800003)
  3341. o236.Anchored = true
  3342. o236.Locked = true
  3343. o236.Size = Vector3.new(32.8999596, 63.8699913, 22.250042)
  3344. o236.CFrame = CFrame.new(28.6073685, 3.78656197, 663.893188, -0.964613318, 0.26200065, 0.0296896994, 0.262000293, 0.939695418, 0.21984826, 0.029697597, 0.219847009, -0.975083828)
  3345. o236.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3346. o236.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3347. o236.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3348. o236.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3349. o236.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3350. o236.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3351. o236.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3352. o236.Position = Vector3.new(28.6073685, 3.78656197, 663.893188)
  3353. o236.Orientation = Vector3.new(-12.6999998, 178.259995, 15.5799999)
  3354. o236.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3355. o237.Parent = o1
  3356. o237.Material = Enum.Material.Marble
  3357. o237.BrickColor = BrickColor.new("Bright orange")
  3358. o237.Position = Vector3.new(309.833099, 15.889493, 556.102173)
  3359. o237.Rotation = Vector3.new(0, -40, -20)
  3360. o237.Anchored = true
  3361. o237.Locked = true
  3362. o237.Size = Vector3.new(32.8999596, 53.9499969, 22.250042)
  3363. o237.CFrame = CFrame.new(309.833099, 15.889493, 556.102173, 0.719848871, 0.261996895, -0.64278543, -0.342002213, 0.939699173, 1.11162663e-05, 0.604020119, 0.219825163, 0.766048908)
  3364. o237.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3365. o237.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3366. o237.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3367. o237.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3368. o237.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3369. o237.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3370. o237.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3371. o237.Position = Vector3.new(309.833099, 15.889493, 556.102173)
  3372. o237.Orientation = Vector3.new(0, -40, -20)
  3373. o237.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3374. o238.Parent = o1
  3375. o238.Material = Enum.Material.Marble
  3376. o238.BrickColor = BrickColor.new("Bright orange")
  3377. o238.Position = Vector3.new(309.655151, 81.2253265, 269.253326)
  3378. o238.Rotation = Vector3.new(154.580002, 37.1699982, -163.990005)
  3379. o238.Anchored = true
  3380. o238.Locked = true
  3381. o238.Size = Vector3.new(34.9901543, 94.6294937, 31.8896675)
  3382. o238.CFrame = CFrame.new(309.655151, 81.2253265, 269.253326, -0.765912533, 0.219797894, 0.604207754, -0.000145426748, 0.939691246, -0.342023969, -0.642944932, -0.262048304, -0.71968925)
  3383. o238.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3384. o238.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3385. o238.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3386. o238.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3387. o238.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. o238.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. o238.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3390. o238.Position = Vector3.new(309.655151, 81.2253265, 269.253326)
  3391. o238.Orientation = Vector3.new(20, 139.990005, -0.00999999978)
  3392. o238.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3393. o239.Parent = o1
  3394. o239.Material = Enum.Material.Marble
  3395. o239.BrickColor = BrickColor.new("Bright orange")
  3396. o239.Position = Vector3.new(42.9854774, 50.0485039, 675.633057)
  3397. o239.Rotation = Vector3.new(-167.289993, 1.70000005, -164.800003)
  3398. o239.Anchored = true
  3399. o239.Locked = true
  3400. o239.Size = Vector3.new(10.9399576, 54.6299934, 10.5900345)
  3401. o239.CFrame = CFrame.new(42.9854774, 50.0485039, 675.633057, -0.964613318, 0.26200065, 0.0296896994, 0.262000293, 0.939695418, 0.21984826, 0.029697597, 0.219847009, -0.975083828)
  3402. o239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. o239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3404. o239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3405. o239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3406. o239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. o239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3408. o239.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3409. o239.Position = Vector3.new(42.9854774, 50.0485039, 675.633057)
  3410. o239.Orientation = Vector3.new(-12.6999998, 178.259995, 15.5799999)
  3411. o239.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3412. o240.Parent = o1
  3413. o240.Material = Enum.Material.Marble
  3414. o240.BrickColor = BrickColor.new("Bright orange")
  3415. o240.Position = Vector3.new(-135.284561, 69.7375793, 331.930573)
  3416. o240.Rotation = Vector3.new(150.479996, -46.0400009, 157.820007)
  3417. o240.Anchored = true
  3418. o240.Locked = true
  3419. o240.Size = Vector3.new(34.9901543, 94.6294937, 31.8896675)
  3420. o240.CFrame = CFrame.new(-135.284561, 69.7375793, 331.930573, -0.642787576, -0.262005359, -0.719854116, -3.35276127e-06, 0.939696431, -0.342021644, 0.766049385, -0.219843641, -0.60402447)
  3421. o240.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3422. o240.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3423. o240.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3424. o240.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3425. o240.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. o240.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3427. o240.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3428. o240.Position = Vector3.new(-135.284561, 69.7375793, 331.930573)
  3429. o240.Orientation = Vector3.new(20, -130, 0)
  3430. o240.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3431. o241.Parent = o1
  3432. o241.Material = Enum.Material.Marble
  3433. o241.BrickColor = BrickColor.new("Bright orange")
  3434. o241.Position = Vector3.new(173.351303, 123.656036, 95.5867386)
  3435. o241.Rotation = Vector3.new(177.330002, 30.6599998, -145.050003)
  3436. o241.Anchored = true
  3437. o241.Locked = true
  3438. o241.Size = Vector3.new(54.7800293, 34.5500031, 24.6499996)
  3439. o241.CFrame = CFrame.new(173.351303, 123.656036, 95.5867386, -0.705093205, 0.4927333, 0.509958386, 0.552749097, 0.832386553, -0.0400129147, -0.444198132, 0.253666192, -0.85926801)
  3440. o241.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3441. o241.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3442. o241.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3443. o241.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. o241.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. o241.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3446. o241.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3447. o241.Position = Vector3.new(173.351303, 123.656036, 95.5867386)
  3448. o241.Orientation = Vector3.new(2.28999996, 149.309998, 33.5900002)
  3449. o241.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3450. o242.Parent = o1
  3451. o242.Material = Enum.Material.Marble
  3452. o242.BrickColor = BrickColor.new("Bright orange")
  3453. o242.Position = Vector3.new(-126.126823, 30.4618855, 342.396149)
  3454. o242.Rotation = Vector3.new(164.660004, -7.94999981, 164.660004)
  3455. o242.Anchored = true
  3456. o242.Locked = true
  3457. o242.Size = Vector3.new(56.9889565, 93.4516068, 38.5412827)
  3458. o242.CFrame = CFrame.new(-126.126823, 30.4618855, 342.396149, -0.955117702, -0.262005061, -0.138262108, -0.219849616, 0.939695835, -0.262003571, 0.198566541, -0.219846129, -0.95511651)
  3459. o242.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3460. o242.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3461. o242.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3462. o242.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3463. o242.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3464. o242.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3465. o242.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3466. o242.Position = Vector3.new(-126.126823, 30.4618855, 342.396149)
  3467. o242.Orientation = Vector3.new(15.1899996, -171.759995, -13.1700001)
  3468. o242.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3469. o243.Parent = o1
  3470. o243.Material = Enum.Material.Marble
  3471. o243.BrickColor = BrickColor.new("Bright orange")
  3472. o243.Position = Vector3.new(-123.875671, 22.3883362, 344.284973)
  3473. o243.Rotation = Vector3.new(150.479996, -46.0400009, 157.820007)
  3474. o243.Anchored = true
  3475. o243.Locked = true
  3476. o243.Size = Vector3.new(56.9889565, 110.634918, 38.5412827)
  3477. o243.CFrame = CFrame.new(-123.875671, 22.3883362, 344.284973, -0.642787576, -0.262005359, -0.719854116, -3.35276127e-06, 0.939696431, -0.342021644, 0.766049385, -0.219843641, -0.60402447)
  3478. o243.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3479. o243.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3480. o243.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. o243.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3482. o243.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3483. o243.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3484. o243.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3485. o243.Position = Vector3.new(-123.875671, 22.3883362, 344.284973)
  3486. o243.Orientation = Vector3.new(20, -130, 0)
  3487. o243.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3488. o244.Parent = o1
  3489. o244.Material = Enum.Material.Marble
  3490. o244.BrickColor = BrickColor.new("Bright orange")
  3491. o244.Position = Vector3.new(314.94873, 38.8491745, 561.126526)
  3492. o244.Rotation = Vector3.new(12.6999998, -1.70000005, -15.1999998)
  3493. o244.Anchored = true
  3494. o244.Locked = true
  3495. o244.Size = Vector3.new(20.1999607, 54.6299934, 18.4100361)
  3496. o244.CFrame = CFrame.new(314.94873, 38.8491745, 561.126526, 0.964615881, 0.26200062, -0.0296936948, -0.262001961, 0.939697683, -0.219827965, -0.0296920892, 0.219827294, 0.975087583)
  3497. o244.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. o244.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3499. o244.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3500. o244.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3501. o244.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3502. o244.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3503. o244.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3504. o244.Position = Vector3.new(314.94873, 38.8491745, 561.126526)
  3505. o244.Orientation = Vector3.new(12.6999998, -1.74000001, -15.5799999)
  3506. o244.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3507. o245.Parent = o1
  3508. o245.Material = Enum.Material.Sand
  3509. o245.BrickColor = BrickColor.new("Cool yellow")
  3510. o245.Position = Vector3.new(164.935669, 140.637726, 99.6715393)
  3511. o245.Rotation = Vector3.new(-180, 80, -160)
  3512. o245.Anchored = true
  3513. o245.Locked = true
  3514. o245.Size = Vector3.new(57.8399925, 0.0500000007, 57.6600266)
  3515. o245.CFrame = CFrame.new(164.935669, 140.637726, 99.6715393, -0.163176477, 0.0593911447, 0.984807551, 0.342019141, 0.939692795, 0, -0.925416827, 0.336823165, -0.173648313)
  3516. o245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. o245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. o245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3519. o245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3520. o245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3521. o245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3522. o245.Color = Color3.new(0.992157, 0.917647, 0.552941)
  3523. o245.Position = Vector3.new(164.935669, 140.637726, 99.6715393)
  3524. o245.Orientation = Vector3.new(0, 100, 20)
  3525. o245.Color = Color3.new(0.992157, 0.917647, 0.552941)
  3526. o246.Parent = o1
  3527. o246.Material = Enum.Material.Sand
  3528. o246.BrickColor = BrickColor.new("Cool yellow")
  3529. o246.Position = Vector3.new(59.0053749, 125.559639, 127.995461)
  3530. o246.Rotation = Vector3.new(-180, 80, -160)
  3531. o246.Anchored = true
  3532. o246.Locked = true
  3533. o246.Size = Vector3.new(11.519989, 0.0500000007, 96.400032)
  3534. o246.CFrame = CFrame.new(59.0053749, 125.559639, 127.995461, -0.163176864, 0.0593911931, 0.984807611, 0.342019618, 0.939692676, 1.78813934e-07, -0.925416589, 0.336823642, -0.173648685)
  3535. o246.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3536. o246.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3537. o246.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3538. o246.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3539. o246.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3540. o246.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3541. o246.Color = Color3.new(0.992157, 0.917647, 0.552941)
  3542. o246.Position = Vector3.new(59.0053749, 125.559639, 127.995461)
  3543. o246.Orientation = Vector3.new(0, 100, 20)
  3544. o246.Color = Color3.new(0.992157, 0.917647, 0.552941)
  3545. o247.Parent = o1
  3546. o247.Material = Enum.Material.Marble
  3547. o247.BrickColor = BrickColor.new("Bright orange")
  3548. o247.Position = Vector3.new(30.0308914, 128.463943, 125.239502)
  3549. o247.Rotation = Vector3.new(19.0799999, -10.5699997, -3.46000004)
  3550. o247.Anchored = true
  3551. o247.Locked = true
  3552. o247.Size = Vector3.new(25.2399788, 6.15000677, 10.770009)
  3553. o247.CFrame = CFrame.new(30.0308914, 128.463943, 125.239502, 0.981224895, 0.0593879931, -0.183496237, -0.116977058, 0.939693213, -0.321392387, 0.15334332, 0.336823046, 0.928997338)
  3554. o247.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3555. o247.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3556. o247.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3557. o247.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3558. o247.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3559. o247.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3560. o247.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3561. o247.Position = Vector3.new(30.0308914, 128.463943, 125.239502)
  3562. o247.Orientation = Vector3.new(18.75, -11.1700001, -7.0999999)
  3563. o247.Color = Color3.new(0.854902, 0.521569, 0.254902)
  3564. mas.Parent = workspace
  3565. mas:MakeJoints()
  3566. local mas1 = mas:GetChildren()
  3567. for i=1,#mas1 do
  3568. mas1[i].Parent = workspace
  3569. ypcall(function() mas1[i]:MakeJoints() end)
  3570. end
  3571. mas:Destroy()
  3572. for i=1,#cors do
  3573. coroutine.resume(cors[i])
  3574. end
  3575. game:GetService("Lighting").Ambient = Color3.new(0, 0, 0)
  3576. game:GetService("Lighting").Brightness = 1
  3577. game:GetService("Lighting").Outlines = false
  3578. game:GetService("Lighting").TimeOfDay = "15:00:00"
  3579. local l = game.Lighting
  3580. local sky = Instance.new("Sky",l)
  3581. sky.CelestialBodiesShown = true
  3582. sky.SkyboxBk = "http://www.roblox.com/asset/?id=174070373"
  3583. sky.SkyboxDn = "http://www.roblox.com/asset/?id=174070680"
  3584. sky.SkyboxFt = "http://www.roblox.com/asset/?id=174071389"
  3585. sky.SkyboxLf = "http://www.roblox.com/asset/?id=174071449"
  3586. sky.SkyboxRt = "http://www.roblox.com/asset/?id=174071494"
  3587. sky.SkyboxUp = "http://www.roblox.com/asset/?id=174071511"
  3588. sky.StarCount = 1000
  3589. sky.Name = "N3xul Sky"
  3590. local s = Instance.new("Sound")
  3591.  
  3592. s.Name = "Life"
  3593. s.Pitch = 1
  3594. s.SoundId = "http://www.roblox.com/asset/?id=326413390 "
  3595. s.Volume = 1
  3596. s.Looped = true
  3597. s.archivable = false
  3598.  
  3599. s.Parent = game.Workspace
  3600.  
  3601. wait(1)
  3602.  
  3603. s:play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement