roblox1234createscri

Untitled

Dec 16th, 2020 (edited)
1,014
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 70.45 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. local plr=game.Players.LocalPlayer
  146. local mo=plr:GetMouse()
  147. local ch=plr.Character
  148. local t=ch.Torso
  149. for i,v in pairs(ch:GetChildren()) do
  150. if v.ClassName=="Part" and v.Name~="RayCast" then
  151. v.Locked=true
  152. v.Anchored=false
  153. end
  154. end
  155. function Live(Object)
  156. if Object.ClassName == "Motor6D" then
  157. Object:Clone().Parent = game.Players.LocalPlayer.Character.Torso
  158. end
  159. end
  160. game.Players.LocalPlayer.Character.Torso.DescendantRemoving:connect(Live)
  161.  
  162. function Life()
  163. game.Players.LocalPlayer.Character.XXX_NUMBER_XXX545.MaxHealth = math.huge
  164. game.Players.LocalPlayer.Character.XXX_NUMBER_XXX545.Health = math.huge
  165. end
  166. game.Players.LocalPlayer.Character.Humanoid.Died:connect(Life)
  167.  
  168. o1 = Instance.new("Model")
  169. o2 = Instance.new("Part")
  170. o3 = Instance.new("Part")
  171. o4 = Instance.new("SpecialMesh")
  172. o5 = Instance.new("Part")
  173. o6 = Instance.new("Part")
  174. o7 = Instance.new("Part")
  175. o8 = Instance.new("SpecialMesh")
  176. o9 = Instance.new("Part")
  177. o10 = Instance.new("SpecialMesh")
  178. o11 = Instance.new("Part")
  179. o12 = Instance.new("Part")
  180. o13 = Instance.new("Part")
  181. o14 = Instance.new("SpecialMesh")
  182. o15 = Instance.new("Part")
  183. o16 = Instance.new("SpecialMesh")
  184. o17 = Instance.new("Part")
  185. o18 = Instance.new("Part")
  186. o19 = Instance.new("SpecialMesh")
  187. o20 = Instance.new("Part")
  188. o21 = Instance.new("Part")
  189. o22 = Instance.new("SpecialMesh")
  190. o23 = Instance.new("Part")
  191. o24 = Instance.new("SpecialMesh")
  192. o25 = Instance.new("Part")
  193. o26 = Instance.new("Part")
  194. o27 = Instance.new("SpecialMesh")
  195. o28 = Instance.new("Part")
  196. o29 = Instance.new("SpecialMesh")
  197. o30 = Instance.new("Part")
  198. o31 = Instance.new("Part")
  199. o32 = Instance.new("SpecialMesh")
  200. o33 = Instance.new("Part")
  201. o34 = Instance.new("Part")
  202. o35 = Instance.new("SpecialMesh")
  203. o36 = Instance.new("Part")
  204. o37 = Instance.new("Part")
  205. o38 = Instance.new("SpecialMesh")
  206. o39 = Instance.new("Part")
  207. o40 = Instance.new("SpecialMesh")
  208. o41 = Instance.new("Part")
  209. o42 = Instance.new("SpecialMesh")
  210. o43 = Instance.new("Part")
  211. o44 = Instance.new("SpecialMesh")
  212. o45 = Instance.new("Part")
  213. o46 = Instance.new("SpecialMesh")
  214. o47 = Instance.new("Part")
  215. o48 = Instance.new("SpecialMesh")
  216. o49 = Instance.new("Part")
  217. o50 = Instance.new("SpecialMesh")
  218. o51 = Instance.new("Part")
  219. o52 = Instance.new("SpecialMesh")
  220. o53 = Instance.new("Part")
  221. o54 = Instance.new("SpecialMesh")
  222. o55 = Instance.new("Part")
  223. o56 = Instance.new("SpecialMesh")
  224. o57 = Instance.new("Part")
  225. o58 = Instance.new("Part")
  226. o59 = Instance.new("SpecialMesh")
  227. o60 = Instance.new("Part")
  228. o61 = Instance.new("SpecialMesh")
  229. o62 = Instance.new("Part")
  230. o63 = Instance.new("SpecialMesh")
  231. o64 = Instance.new("Part")
  232. o65 = Instance.new("SpecialMesh")
  233. o66 = Instance.new("Part")
  234. o67 = Instance.new("SpecialMesh")
  235. o68 = Instance.new("Part")
  236. o69 = Instance.new("SpecialMesh")
  237. o70 = Instance.new("Part")
  238. o71 = Instance.new("SpecialMesh")
  239. o72 = Instance.new("Part")
  240. o73 = Instance.new("SpecialMesh")
  241. o74 = Instance.new("Part")
  242. o75 = Instance.new("SpecialMesh")
  243. o76 = Instance.new("Part")
  244. o77 = Instance.new("SpecialMesh")
  245. o78 = Instance.new("Part")
  246. o79 = Instance.new("SpecialMesh")
  247. o80 = Instance.new("Part")
  248. o81 = Instance.new("Part")
  249. o82 = Instance.new("Part")
  250. o83 = Instance.new("Part")
  251. o84 = Instance.new("SpecialMesh")
  252. o85 = Instance.new("Part")
  253. o86 = Instance.new("SpecialMesh")
  254. o87 = Instance.new("Part")
  255. o88 = Instance.new("Part")
  256. o89 = Instance.new("Part")
  257. o90 = Instance.new("Part")
  258. o91 = Instance.new("SpecialMesh")
  259. o92 = Instance.new("Part")
  260. o93 = Instance.new("SpecialMesh")
  261. o94 = Instance.new("Part")
  262. o95 = Instance.new("SpecialMesh")
  263. o96 = Instance.new("Part")
  264. o97 = Instance.new("SpecialMesh")
  265. o98 = Instance.new("Part")
  266. o99 = Instance.new("Part")
  267. o100 = Instance.new("SpecialMesh")
  268. o101 = Instance.new("Part")
  269. o102 = Instance.new("SpecialMesh")
  270. o103 = Instance.new("Part")
  271. o104 = Instance.new("SpecialMesh")
  272. o105 = Instance.new("Part")
  273. o106 = Instance.new("SpecialMesh")
  274. o107 = Instance.new("Part")
  275. o1.Parent = ch
  276. o2.Parent = o1
  277. o2.BrickColor = BrickColor.new("Smoky grey")
  278. o2.Position = Vector3.new(-15.8999987, 6.80002117, 68.9000015)
  279. o2.Anchored = true
  280. o2.Size = Vector3.new(1, 1.20000017, 1)
  281. o2.CFrame = CFrame.new(-15.8999987, 6.80002117, 68.9000015, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  282. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  283. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  284. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  285. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  286. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  287. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  288. o2.Color = Color3.new(0.356863, 0.364706, 0.411765)
  289. o2.Position = Vector3.new(-15.8999987, 6.80002117, 68.9000015)
  290. o3.Parent = o1
  291. o3.BrickColor = BrickColor.new("Dark stone grey")
  292. o3.Position = Vector3.new(-22.1000118, 8.10002041, 72.0999451)
  293. o3.Rotation = Vector3.new(-180, 0, -180)
  294. o3.Anchored = true
  295. o3.Size = Vector3.new(1, 1.40000021, 1)
  296. o3.CFrame = CFrame.new(-22.1000118, 8.10002041, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  297. o3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  298. o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  299. o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  300. o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  301. o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  302. o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  303. o3.Color = Color3.new(0.388235, 0.372549, 0.384314)
  304. o3.Position = Vector3.new(-22.1000118, 8.10002041, 72.0999451)
  305. o4.Parent = o3
  306. o4.MeshType = Enum.MeshType.Wedge
  307. o5.Parent = o1
  308. o5.BrickColor = BrickColor.new("Dark stone grey")
  309. o5.Position = Vector3.new(-22.1000214, 6.80001879, 71.4999466)
  310. o5.Rotation = Vector3.new(-180, 0, -180)
  311. o5.Anchored = true
  312. o5.Size = Vector3.new(1, 4, 0.200000003)
  313. o5.CFrame = CFrame.new(-22.1000214, 6.80001879, 71.4999466, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  314. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  315. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  316. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  317. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  318. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  319. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  320. o5.Color = Color3.new(0.388235, 0.372549, 0.384314)
  321. o5.Position = Vector3.new(-22.1000214, 6.80001879, 71.4999466)
  322. o6.Parent = o1
  323. o6.BrickColor = BrickColor.new("Dark stone grey")
  324. o6.Position = Vector3.new(-20.1000118, 6.80001879, 71.4999619)
  325. o6.Rotation = Vector3.new(-180, 0, -180)
  326. o6.Anchored = true
  327. o6.Size = Vector3.new(1, 4, 0.200000003)
  328. o6.CFrame = CFrame.new(-20.1000118, 6.80001879, 71.4999619, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  329. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  330. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  331. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  332. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  333. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  334. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  335. o6.Color = Color3.new(0.388235, 0.372549, 0.384314)
  336. o6.Position = Vector3.new(-20.1000118, 6.80001879, 71.4999619)
  337. o7.Parent = o1
  338. o7.BrickColor = BrickColor.new("Dark stone grey")
  339. o7.Position = Vector3.new(-20.1000195, 8.10002041, 72.0999451)
  340. o7.Rotation = Vector3.new(-180, 0, -180)
  341. o7.Anchored = true
  342. o7.Size = Vector3.new(1, 1.40000021, 1)
  343. o7.CFrame = CFrame.new(-20.1000195, 8.10002041, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  344. o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  345. o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  346. o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  347. o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  348. o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  349. o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  350. o7.Color = Color3.new(0.388235, 0.372549, 0.384314)
  351. o7.Position = Vector3.new(-20.1000195, 8.10002041, 72.0999451)
  352. o8.Parent = o7
  353. o8.MeshType = Enum.MeshType.Wedge
  354. o9.Parent = o1
  355. o9.BrickColor = BrickColor.new("Dark stone grey")
  356. o9.Position = Vector3.new(-20.1000195, 8.10002041, 68.7000046)
  357. o9.Anchored = true
  358. o9.Size = Vector3.new(1, 1.40000021, 1)
  359. o9.CFrame = CFrame.new(-20.1000195, 8.10002041, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  360. o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  361. o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  362. o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  363. o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  364. o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  365. o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  366. o9.Color = Color3.new(0.388235, 0.372549, 0.384314)
  367. o9.Position = Vector3.new(-20.1000195, 8.10002041, 68.7000046)
  368. o10.Parent = o9
  369. o10.MeshType = Enum.MeshType.Wedge
  370. o11.Parent = o1
  371. o11.BrickColor = BrickColor.new("Dark stone grey")
  372. o11.Position = Vector3.new(-22.1000233, 6.80002117, 68.7000046)
  373. o11.Anchored = true
  374. o11.Size = Vector3.new(1, 1.20000017, 1)
  375. o11.CFrame = CFrame.new(-22.1000233, 6.80002117, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  376. o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  377. o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  378. o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  379. o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  380. o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  381. o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  382. o11.Color = Color3.new(0.388235, 0.372549, 0.384314)
  383. o11.Position = Vector3.new(-22.1000233, 6.80002117, 68.7000046)
  384. o12.Parent = o1
  385. o12.BrickColor = BrickColor.new("Dark stone grey")
  386. o12.Position = Vector3.new(-20.1000195, 6.80001974, 69.2999954)
  387. o12.Anchored = true
  388. o12.Size = Vector3.new(1, 4, 0.200000003)
  389. o12.CFrame = CFrame.new(-20.1000195, 6.80001974, 69.2999954, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  390. o12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  391. o12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  392. o12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  393. o12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  394. o12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  395. o12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  396. o12.Color = Color3.new(0.388235, 0.372549, 0.384314)
  397. o12.Position = Vector3.new(-20.1000195, 6.80001974, 69.2999954)
  398. o13.Parent = o1
  399. o13.BrickColor = BrickColor.new("Smoky grey")
  400. o13.Position = Vector3.new(-21.1000214, 5.5000205, 68.9000015)
  401. o13.Rotation = Vector3.new(-0, 0, -179.999954)
  402. o13.Anchored = true
  403. o13.Size = Vector3.new(1, 1.40000021, 1)
  404. o13.CFrame = CFrame.new(-21.1000214, 5.5000205, 68.9000015, -1.00000024, 9.08970833e-007, 0, -9.08970833e-007, -1.00000024, 0, 0, 0, 1)
  405. o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  406. o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  407. o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  408. o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  409. o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  410. o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  411. o13.Color = Color3.new(0.356863, 0.364706, 0.411765)
  412. o13.Position = Vector3.new(-21.1000214, 5.5000205, 68.9000015)
  413. o14.Parent = o13
  414. o14.MeshType = Enum.MeshType.Wedge
  415. o15.Parent = o1
  416. o15.BrickColor = BrickColor.new("Dark stone grey")
  417. o15.Position = Vector3.new(-22.1000233, 8.10002041, 68.7000046)
  418. o15.Anchored = true
  419. o15.Size = Vector3.new(1, 1.40000021, 1)
  420. o15.CFrame = CFrame.new(-22.1000233, 8.10002041, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  421. o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  422. o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  423. o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  424. o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  425. o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  426. o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  427. o15.Color = Color3.new(0.388235, 0.372549, 0.384314)
  428. o15.Position = Vector3.new(-22.1000233, 8.10002041, 68.7000046)
  429. o16.Parent = o15
  430. o16.MeshType = Enum.MeshType.Wedge
  431. o17.Parent = o1
  432. o17.BrickColor = BrickColor.new("Smoky grey")
  433. o17.Position = Vector3.new(-21.1000099, 6.80002117, 71.8999481)
  434. o17.Rotation = Vector3.new(-180, 0, -180)
  435. o17.Anchored = true
  436. o17.Size = Vector3.new(1, 1.20000017, 1)
  437. o17.CFrame = CFrame.new(-21.1000099, 6.80002117, 71.8999481, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  438. o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  439. o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  440. o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  441. o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  442. o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  443. o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  444. o17.Color = Color3.new(0.356863, 0.364706, 0.411765)
  445. o17.Position = Vector3.new(-21.1000099, 6.80002117, 71.8999481)
  446. o18.Parent = o1
  447. o18.BrickColor = BrickColor.new("Smoky grey")
  448. o18.Position = Vector3.new(-21.1000099, 5.50002003, 71.8999481)
  449. o18.Rotation = Vector3.new(-180, 0, -0)
  450. o18.Anchored = true
  451. o18.Size = Vector3.new(1, 1.40000021, 1)
  452. o18.CFrame = CFrame.new(-21.1000099, 5.50002003, 71.8999481, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  453. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  454. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  455. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  456. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  457. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  458. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  459. o18.Color = Color3.new(0.356863, 0.364706, 0.411765)
  460. o18.Position = Vector3.new(-21.1000099, 5.50002003, 71.8999481)
  461. o19.Parent = o18
  462. o19.MeshType = Enum.MeshType.Wedge
  463. o20.Parent = o1
  464. o20.BrickColor = BrickColor.new("Dark stone grey")
  465. o20.Position = Vector3.new(-22.1000118, 6.80002117, 72.0999451)
  466. o20.Rotation = Vector3.new(-180, 0, -180)
  467. o20.Anchored = true
  468. o20.Size = Vector3.new(1, 1.20000017, 1)
  469. o20.CFrame = CFrame.new(-22.1000118, 6.80002117, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  470. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  471. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  472. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  473. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  474. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  475. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  476. o20.Color = Color3.new(0.388235, 0.372549, 0.384314)
  477. o20.Position = Vector3.new(-22.1000118, 6.80002117, 72.0999451)
  478. o21.Parent = o1
  479. o21.BrickColor = BrickColor.new("Dark stone grey")
  480. o21.Position = Vector3.new(-20.1000195, 5.50002289, 72.0999451)
  481. o21.Rotation = Vector3.new(-180, 0, -0)
  482. o21.Anchored = true
  483. o21.Size = Vector3.new(1, 1.40000021, 1)
  484. o21.CFrame = CFrame.new(-20.1000195, 5.50002289, 72.0999451, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  485. o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  486. o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  487. o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  488. o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  489. o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  490. o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  491. o21.Color = Color3.new(0.388235, 0.372549, 0.384314)
  492. o21.Position = Vector3.new(-20.1000195, 5.50002289, 72.0999451)
  493. o22.Parent = o21
  494. o22.MeshType = Enum.MeshType.Wedge
  495. o23.Parent = o1
  496. o23.BrickColor = BrickColor.new("Dark stone grey")
  497. o23.Position = Vector3.new(-22.1000233, 5.50002289, 68.7000046)
  498. o23.Rotation = Vector3.new(-0, 0, -179.999954)
  499. o23.Anchored = true
  500. o23.Size = Vector3.new(1, 1.40000021, 1)
  501. o23.CFrame = CFrame.new(-22.1000233, 5.50002289, 68.7000046, -1.00000024, 9.08970833e-007, 0, -9.08970833e-007, -1.00000024, 0, 0, 0, 1)
  502. o23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  503. o23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  504. o23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  505. o23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  506. o23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  507. o23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  508. o23.Color = Color3.new(0.388235, 0.372549, 0.384314)
  509. o23.Position = Vector3.new(-22.1000233, 5.50002289, 68.7000046)
  510. o24.Parent = o23
  511. o24.MeshType = Enum.MeshType.Wedge
  512. o25.Parent = o1
  513. o25.BrickColor = BrickColor.new("Dark stone grey")
  514. o25.Position = Vector3.new(-22.1000233, 6.80001974, 69.2999954)
  515. o25.Anchored = true
  516. o25.Size = Vector3.new(1, 4, 0.200000003)
  517. o25.CFrame = CFrame.new(-22.1000233, 6.80001974, 69.2999954, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  518. o25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  519. o25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  520. o25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  521. o25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  522. o25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  523. o25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  524. o25.Color = Color3.new(0.388235, 0.372549, 0.384314)
  525. o25.Position = Vector3.new(-22.1000233, 6.80001974, 69.2999954)
  526. o26.Parent = o1
  527. o26.BrickColor = BrickColor.new("Dark stone grey")
  528. o26.Position = Vector3.new(-22.1000118, 5.50002289, 72.0999451)
  529. o26.Rotation = Vector3.new(-180, 0, -0)
  530. o26.Anchored = true
  531. o26.Size = Vector3.new(1, 1.40000021, 1)
  532. o26.CFrame = CFrame.new(-22.1000118, 5.50002289, 72.0999451, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  533. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  534. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  535. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  536. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  537. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  538. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  539. o26.Color = Color3.new(0.388235, 0.372549, 0.384314)
  540. o26.Position = Vector3.new(-22.1000118, 5.50002289, 72.0999451)
  541. o27.Parent = o26
  542. o27.MeshType = Enum.MeshType.Wedge
  543. o28.Parent = o1
  544. o28.BrickColor = BrickColor.new("Smoky grey")
  545. o28.Position = Vector3.new(-21.1000214, 8.10002041, 68.9000015)
  546. o28.Anchored = true
  547. o28.Size = Vector3.new(1, 1.40000021, 1)
  548. o28.CFrame = CFrame.new(-21.1000214, 8.10002041, 68.9000015, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  549. o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  550. o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  551. o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  552. o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  553. o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  554. o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  555. o28.Color = Color3.new(0.356863, 0.364706, 0.411765)
  556. o28.Position = Vector3.new(-21.1000214, 8.10002041, 68.9000015)
  557. o29.Parent = o28
  558. o29.MeshType = Enum.MeshType.Wedge
  559. o30.Parent = o1
  560. o30.BrickColor = BrickColor.new("Smoky grey")
  561. o30.Position = Vector3.new(-21.1000214, 6.80002117, 68.9000015)
  562. o30.Anchored = true
  563. o30.Size = Vector3.new(1, 1.20000017, 1)
  564. o30.CFrame = CFrame.new(-21.1000214, 6.80002117, 68.9000015, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  565. o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  566. o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  567. o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  568. o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  569. o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  570. o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  571. o30.Color = Color3.new(0.356863, 0.364706, 0.411765)
  572. o30.Position = Vector3.new(-21.1000214, 6.80002117, 68.9000015)
  573. o31.Parent = o1
  574. o31.BrickColor = BrickColor.new("Smoky grey")
  575. o31.Position = Vector3.new(-21.1000099, 8.10002041, 71.8999481)
  576. o31.Rotation = Vector3.new(-180, 0, -180)
  577. o31.Anchored = true
  578. o31.Size = Vector3.new(1, 1.40000021, 1)
  579. o31.CFrame = CFrame.new(-21.1000099, 8.10002041, 71.8999481, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  580. o31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  581. o31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  582. o31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  583. o31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  584. o31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  585. o31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  586. o31.Color = Color3.new(0.356863, 0.364706, 0.411765)
  587. o31.Position = Vector3.new(-21.1000099, 8.10002041, 71.8999481)
  588. o32.Parent = o31
  589. o32.MeshType = Enum.MeshType.Wedge
  590. o33.Parent = o1
  591. o33.BrickColor = BrickColor.new("Dark stone grey")
  592. o33.Position = Vector3.new(-20.1000195, 6.80002117, 72.0999451)
  593. o33.Rotation = Vector3.new(-180, 0, -180)
  594. o33.Anchored = true
  595. o33.Size = Vector3.new(1, 1.20000017, 1)
  596. o33.CFrame = CFrame.new(-20.1000195, 6.80002117, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  597. o33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  598. o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  599. o33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  600. o33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  601. o33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  602. o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  603. o33.Color = Color3.new(0.388235, 0.372549, 0.384314)
  604. o33.Position = Vector3.new(-20.1000195, 6.80002117, 72.0999451)
  605. o34.Parent = o1
  606. o34.BrickColor = BrickColor.new("Dark stone grey")
  607. o34.Position = Vector3.new(-20.1000195, 5.50002289, 68.7000046)
  608. o34.Rotation = Vector3.new(-0, 0, -179.999954)
  609. o34.Anchored = true
  610. o34.Size = Vector3.new(1, 1.40000021, 1)
  611. o34.CFrame = CFrame.new(-20.1000195, 5.50002289, 68.7000046, -1.00000024, 9.08970833e-007, 0, -9.08970833e-007, -1.00000024, 0, 0, 0, 1)
  612. o34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  613. o34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  614. o34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  615. o34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  616. o34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  617. o34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  618. o34.Color = Color3.new(0.388235, 0.372549, 0.384314)
  619. o34.Position = Vector3.new(-20.1000195, 5.50002289, 68.7000046)
  620. o35.Parent = o34
  621. o35.MeshType = Enum.MeshType.Wedge
  622. o36.Parent = o1
  623. o36.BrickColor = BrickColor.new("Dark stone grey")
  624. o36.Position = Vector3.new(-20.1000195, 6.80002117, 68.7000046)
  625. o36.Anchored = true
  626. o36.Size = Vector3.new(1, 1.20000017, 1)
  627. o36.CFrame = CFrame.new(-20.1000195, 6.80002117, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  628. o36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  629. o36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  630. o36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  631. o36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  632. o36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  633. o36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  634. o36.Color = Color3.new(0.388235, 0.372549, 0.384314)
  635. o36.Position = Vector3.new(-20.1000195, 6.80002117, 68.7000046)
  636. o37.Parent = o1
  637. o37.Material = Enum.Material.Neon
  638. o37.BrickColor = BrickColor.new("Pastel brown")
  639. o37.Position = Vector3.new(-24.1000004, 6.80002117, 70.3999863)
  640. o37.Anchored = true
  641. o37.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  642. o37.CFrame = CFrame.new(-24.1000004, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  643. o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  644. o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  645. o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  646. o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  647. o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  648. o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  649. o37.Color = Color3.new(1, 0.8, 0.6)
  650. o37.Position = Vector3.new(-24.1000004, 6.80002117, 70.3999863)
  651. o38.Parent = o37
  652. o38.MeshType = Enum.MeshType.Cylinder
  653. o39.Parent = o1
  654. o39.Material = Enum.Material.Neon
  655. o39.BrickColor = BrickColor.new("Pastel brown")
  656. o39.Position = Vector3.new(-12.0999775, 6.80002117, 70.3999863)
  657. o39.Rotation = Vector3.new(-180, 0, -180)
  658. o39.Anchored = true
  659. o39.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  660. o39.CFrame = CFrame.new(-12.0999775, 6.80002117, 70.3999863, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  661. o39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  662. o39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  663. o39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  664. o39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  665. o39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  666. o39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  667. o39.Color = Color3.new(1, 0.8, 0.6)
  668. o39.Position = Vector3.new(-12.0999775, 6.80002117, 70.3999863)
  669. o40.Parent = o39
  670. o40.MeshType = Enum.MeshType.Cylinder
  671. o41.Parent = o1
  672. o41.Material = Enum.Material.Neon
  673. o41.BrickColor = BrickColor.new("Pastel brown")
  674. o41.Position = Vector3.new(-12.8999729, 6.80002117, 70.399971)
  675. o41.Rotation = Vector3.new(-180, 0, -180)
  676. o41.Anchored = true
  677. o41.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  678. o41.CFrame = CFrame.new(-12.8999729, 6.80002117, 70.399971, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  679. o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  680. o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  681. o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  682. o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  683. o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  684. o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  685. o41.Color = Color3.new(1, 0.8, 0.6)
  686. o41.Position = Vector3.new(-12.8999729, 6.80002117, 70.399971)
  687. o42.Parent = o41
  688. o42.MeshType = Enum.MeshType.Cylinder
  689. o43.Parent = o1
  690. o43.BrickColor = BrickColor.new("Fossil")
  691. o43.Position = Vector3.new(-10.9999838, 6.80002117, 70.399971)
  692. o43.Rotation = Vector3.new(-180, 0, -180)
  693. o43.Anchored = true
  694. o43.Size = Vector3.new(0.400000662, 4, 2.80000019)
  695. o43.CFrame = CFrame.new(-10.9999838, 6.80002117, 70.399971, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  696. o43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  697. o43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  698. o43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  699. o43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  700. o43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  701. o43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  702. o43.Color = Color3.new(0.623529, 0.631373, 0.67451)
  703. o43.Position = Vector3.new(-10.9999838, 6.80002117, 70.399971)
  704. o44.Parent = o43
  705. o44.MeshType = Enum.MeshType.Cylinder
  706. o45.Parent = o1
  707. o45.BrickColor = BrickColor.new("Smoky grey")
  708. o45.Position = Vector3.new(-12.5999699, 6.80002117, 70.3999786)
  709. o45.Rotation = Vector3.new(-180, 0, -180)
  710. o45.Anchored = true
  711. o45.Size = Vector3.new(2.80000067, 4, 3.20000029)
  712. o45.CFrame = CFrame.new(-12.5999699, 6.80002117, 70.3999786, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  713. o45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  714. o45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  715. o45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  716. o45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  717. o45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  718. o45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  719. o45.Color = Color3.new(0.356863, 0.364706, 0.411765)
  720. o45.Position = Vector3.new(-12.5999699, 6.80002117, 70.3999786)
  721. o46.Parent = o45
  722. o46.MeshType = Enum.MeshType.Cylinder
  723. o47.Parent = o1
  724. o47.Material = Enum.Material.Neon
  725. o47.BrickColor = BrickColor.new("Pastel brown")
  726. o47.Position = Vector3.new(-13.6999846, 6.80002117, 70.3999634)
  727. o47.Rotation = Vector3.new(-180, 0, -180)
  728. o47.Anchored = true
  729. o47.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  730. o47.CFrame = CFrame.new(-13.6999846, 6.80002117, 70.3999634, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  731. o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  732. o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  733. o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  734. o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  735. o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  736. o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  737. o47.Color = Color3.new(1, 0.8, 0.6)
  738. o47.Position = Vector3.new(-13.6999846, 6.80002117, 70.3999634)
  739. o48.Parent = o47
  740. o48.MeshType = Enum.MeshType.Cylinder
  741. o49.Parent = o1
  742. o49.Material = Enum.Material.Neon
  743. o49.BrickColor = BrickColor.new("Pastel brown")
  744. o49.Position = Vector3.new(-13.299984, 6.80002117, 70.3999863)
  745. o49.Rotation = Vector3.new(-180, 0, -180)
  746. o49.Anchored = true
  747. o49.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  748. o49.CFrame = CFrame.new(-13.299984, 6.80002117, 70.3999863, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  749. o49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  750. o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  751. o49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  752. o49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  753. o49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  754. o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  755. o49.Color = Color3.new(1, 0.8, 0.6)
  756. o49.Position = Vector3.new(-13.299984, 6.80002117, 70.3999863)
  757. o50.Parent = o49
  758. o50.MeshType = Enum.MeshType.Cylinder
  759. o51.Parent = o1
  760. o51.Material = Enum.Material.Neon
  761. o51.BrickColor = BrickColor.new("Pastel brown")
  762. o51.Position = Vector3.new(-11.6999683, 6.80002117, 70.3999786)
  763. o51.Rotation = Vector3.new(-180, 0, -180)
  764. o51.Anchored = true
  765. o51.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  766. o51.CFrame = CFrame.new(-11.6999683, 6.80002117, 70.3999786, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  767. o51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  768. o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  769. o51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  770. o51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  771. o51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  772. o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  773. o51.Color = Color3.new(1, 0.8, 0.6)
  774. o51.Position = Vector3.new(-11.6999683, 6.80002117, 70.3999786)
  775. o52.Parent = o51
  776. o52.MeshType = Enum.MeshType.Cylinder
  777. o53.Parent = o1
  778. o53.BrickColor = BrickColor.new("Fossil")
  779. o53.Position = Vector3.new(-14.1999989, 6.80002117, 70.3999481)
  780. o53.Rotation = Vector3.new(-180, 0, -180)
  781. o53.Anchored = true
  782. o53.Size = Vector3.new(0.400000662, 4, 2.80000019)
  783. o53.CFrame = CFrame.new(-14.1999989, 6.80002117, 70.3999481, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  784. o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  785. o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  786. o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  787. o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  788. o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  789. o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  790. o53.Color = Color3.new(0.623529, 0.631373, 0.67451)
  791. o53.Position = Vector3.new(-14.1999989, 6.80002117, 70.3999481)
  792. o54.Parent = o53
  793. o54.MeshType = Enum.MeshType.Cylinder
  794. o55.Parent = o1
  795. o55.Material = Enum.Material.Neon
  796. o55.BrickColor = BrickColor.new("Pastel brown")
  797. o55.Position = Vector3.new(-12.4999714, 6.80002117, 70.399971)
  798. o55.Rotation = Vector3.new(-180, 0, -180)
  799. o55.Anchored = true
  800. o55.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  801. o55.CFrame = CFrame.new(-12.4999714, 6.80002117, 70.399971, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  802. o55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  803. o55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  804. o55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  805. o55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  806. o55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  807. o55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  808. o55.Color = Color3.new(1, 0.8, 0.6)
  809. o55.Position = Vector3.new(-12.4999714, 6.80002117, 70.399971)
  810. o56.Parent = o55
  811. o56.MeshType = Enum.MeshType.Cylinder
  812. o57.Parent = o1
  813. o57.BrickColor = BrickColor.new("Dark stone grey")
  814. o57.Position = Vector3.new(-14.8999996, 6.80001974, 69.2999954)
  815. o57.Anchored = true
  816. o57.Size = Vector3.new(1, 4, 0.200000003)
  817. o57.CFrame = CFrame.new(-14.8999996, 6.80001974, 69.2999954, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  818. o57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  819. o57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  820. o57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  821. o57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  822. o57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  823. o57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  824. o57.Color = Color3.new(0.388235, 0.372549, 0.384314)
  825. o57.Position = Vector3.new(-14.8999996, 6.80001974, 69.2999954)
  826. o58.Parent = o1
  827. o58.BrickColor = BrickColor.new("Smoky grey")
  828. o58.Position = Vector3.new(-15.8999987, 5.5000205, 68.9000015)
  829. o58.Rotation = Vector3.new(-0, 0, -179.999954)
  830. o58.Anchored = true
  831. o58.Size = Vector3.new(1, 1.40000021, 1)
  832. o58.CFrame = CFrame.new(-15.8999987, 5.5000205, 68.9000015, -1.00000024, 9.08970833e-007, 0, -9.08970833e-007, -1.00000024, 0, 0, 0, 1)
  833. o58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  834. o58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  835. o58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  836. o58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  837. o58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  838. o58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  839. o58.Color = Color3.new(0.356863, 0.364706, 0.411765)
  840. o58.Position = Vector3.new(-15.8999987, 5.5000205, 68.9000015)
  841. o59.Parent = o58
  842. o59.MeshType = Enum.MeshType.Wedge
  843. o60.Parent = o1
  844. o60.BrickColor = BrickColor.new("Smoky grey")
  845. o60.Position = Vector3.new(-15.8999987, 8.10002041, 68.9000015)
  846. o60.Anchored = true
  847. o60.Size = Vector3.new(1, 1.40000021, 1)
  848. o60.CFrame = CFrame.new(-15.8999987, 8.10002041, 68.9000015, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  849. o60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  850. o60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  851. o60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  852. o60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  853. o60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  854. o60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  855. o60.Color = Color3.new(0.356863, 0.364706, 0.411765)
  856. o60.Position = Vector3.new(-15.8999987, 8.10002041, 68.9000015)
  857. o61.Parent = o60
  858. o61.MeshType = Enum.MeshType.Wedge
  859. o62.Parent = o1
  860. o62.Material = Enum.Material.Neon
  861. o62.BrickColor = BrickColor.new("Pastel brown")
  862. o62.Position = Vector3.new(-25.300005, 6.80002117, 70.3999863)
  863. o62.Anchored = true
  864. o62.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  865. o62.CFrame = CFrame.new(-25.300005, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  866. o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  867. o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  868. o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  869. o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  870. o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  871. o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  872. o62.Color = Color3.new(1, 0.8, 0.6)
  873. o62.Position = Vector3.new(-25.300005, 6.80002117, 70.3999863)
  874. o63.Parent = o62
  875. o63.MeshType = Enum.MeshType.Cylinder
  876. o64.Parent = o1
  877. o64.Material = Enum.Material.Neon
  878. o64.BrickColor = BrickColor.new("Pastel brown")
  879. o64.Position = Vector3.new(-23.2999973, 6.80002117, 70.3999863)
  880. o64.Anchored = true
  881. o64.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  882. o64.CFrame = CFrame.new(-23.2999973, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  883. o64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  884. o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  885. o64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  886. o64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  887. o64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  888. o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  889. o64.Color = Color3.new(1, 0.8, 0.6)
  890. o64.Position = Vector3.new(-23.2999973, 6.80002117, 70.3999863)
  891. o65.Parent = o64
  892. o65.MeshType = Enum.MeshType.Cylinder
  893. o66.Parent = o1
  894. o66.BrickColor = BrickColor.new("Fossil")
  895. o66.Position = Vector3.new(-22.7999973, 6.80002117, 70.3999863)
  896. o66.Anchored = true
  897. o66.Size = Vector3.new(0.400000662, 4, 2.80000019)
  898. o66.CFrame = CFrame.new(-22.7999973, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  899. o66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  900. o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  901. o66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  902. o66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  903. o66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  904. o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  905. o66.Color = Color3.new(0.623529, 0.631373, 0.67451)
  906. o66.Position = Vector3.new(-22.7999973, 6.80002117, 70.3999863)
  907. o67.Parent = o66
  908. o67.MeshType = Enum.MeshType.Cylinder
  909. o68.Parent = o1
  910. o68.BrickColor = BrickColor.new("Dark stone grey")
  911. o68.Position = Vector3.new(-14.8999996, 8.10002041, 68.7000046)
  912. o68.Anchored = true
  913. o68.Size = Vector3.new(1, 1.40000021, 1)
  914. o68.CFrame = CFrame.new(-14.8999996, 8.10002041, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  915. o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  916. o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  917. o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  918. o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  919. o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  920. o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  921. o68.Color = Color3.new(0.388235, 0.372549, 0.384314)
  922. o68.Position = Vector3.new(-14.8999996, 8.10002041, 68.7000046)
  923. o69.Parent = o68
  924. o69.MeshType = Enum.MeshType.Wedge
  925. o70.Parent = o1
  926. o70.Material = Enum.Material.Neon
  927. o70.BrickColor = BrickColor.new("Pastel brown")
  928. o70.Position = Vector3.new(-24.9000034, 6.80002117, 70.3999863)
  929. o70.Anchored = true
  930. o70.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  931. o70.CFrame = CFrame.new(-24.9000034, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  932. o70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  933. o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  934. o70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  935. o70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  936. o70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  937. o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  938. o70.Color = Color3.new(1, 0.8, 0.6)
  939. o70.Position = Vector3.new(-24.9000034, 6.80002117, 70.3999863)
  940. o71.Parent = o70
  941. o71.MeshType = Enum.MeshType.Cylinder
  942. o72.Parent = o1
  943. o72.Material = Enum.Material.Neon
  944. o72.BrickColor = BrickColor.new("Pastel brown")
  945. o72.Position = Vector3.new(-23.6999989, 6.80002117, 70.3999863)
  946. o72.Anchored = true
  947. o72.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  948. o72.CFrame = CFrame.new(-23.6999989, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  949. o72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  950. o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  951. o72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  952. o72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  953. o72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  954. o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  955. o72.Color = Color3.new(1, 0.8, 0.6)
  956. o72.Position = Vector3.new(-23.6999989, 6.80002117, 70.3999863)
  957. o73.Parent = o72
  958. o73.MeshType = Enum.MeshType.Cylinder
  959. o74.Parent = o1
  960. o74.BrickColor = BrickColor.new("Fossil")
  961. o74.Position = Vector3.new(-25.9999924, 6.80002117, 70.3999863)
  962. o74.Anchored = true
  963. o74.Size = Vector3.new(0.400000662, 4, 2.80000019)
  964. o74.CFrame = CFrame.new(-25.9999924, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  965. o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  966. o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  967. o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  968. o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  969. o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  970. o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  971. o74.Color = Color3.new(0.623529, 0.631373, 0.67451)
  972. o74.Position = Vector3.new(-25.9999924, 6.80002117, 70.3999863)
  973. o75.Parent = o74
  974. o75.MeshType = Enum.MeshType.Cylinder
  975. o76.Parent = o1
  976. o76.BrickColor = BrickColor.new("Dark stone grey")
  977. o76.Position = Vector3.new(-16.9000015, 8.10002041, 68.7000046)
  978. o76.Anchored = true
  979. o76.Size = Vector3.new(1, 1.40000021, 1)
  980. o76.CFrame = CFrame.new(-16.9000015, 8.10002041, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  981. o76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  982. o76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  983. o76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  984. o76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  985. o76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  986. o76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  987. o76.Color = Color3.new(0.388235, 0.372549, 0.384314)
  988. o76.Position = Vector3.new(-16.9000015, 8.10002041, 68.7000046)
  989. o77.Parent = o76
  990. o77.MeshType = Enum.MeshType.Wedge
  991. o78.Parent = o1
  992. o78.BrickColor = BrickColor.new("Dark stone grey")
  993. o78.Position = Vector3.new(-16.9000015, 5.50002289, 68.7000046)
  994. o78.Rotation = Vector3.new(-0, 0, -179.999954)
  995. o78.Anchored = true
  996. o78.Size = Vector3.new(1, 1.40000021, 1)
  997. o78.CFrame = CFrame.new(-16.9000015, 5.50002289, 68.7000046, -1.00000024, 9.08970833e-007, 0, -9.08970833e-007, -1.00000024, 0, 0, 0, 1)
  998. o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  999. o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. o78.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1005. o78.Position = Vector3.new(-16.9000015, 5.50002289, 68.7000046)
  1006. o79.Parent = o78
  1007. o79.MeshType = Enum.MeshType.Wedge
  1008. o80.Parent = o1
  1009. o80.BrickColor = BrickColor.new("Dark stone grey")
  1010. o80.Position = Vector3.new(-16.9000015, 6.80002117, 68.7000046)
  1011. o80.Anchored = true
  1012. o80.Size = Vector3.new(1, 1.20000017, 1)
  1013. o80.CFrame = CFrame.new(-16.9000015, 6.80002117, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1014. o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1015. o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1016. o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1017. o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1018. o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. o80.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1021. o80.Position = Vector3.new(-16.9000015, 6.80002117, 68.7000046)
  1022. o81.Parent = o1
  1023. o81.BrickColor = BrickColor.new("Dark stone grey")
  1024. o81.Position = Vector3.new(-16.9000015, 6.80001974, 69.2999954)
  1025. o81.Anchored = true
  1026. o81.Size = Vector3.new(1, 4, 0.200000003)
  1027. o81.CFrame = CFrame.new(-16.9000015, 6.80001974, 69.2999954, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1028. o81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1029. o81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1030. o81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1031. o81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1032. o81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1033. o81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. o81.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1035. o81.Position = Vector3.new(-16.9000015, 6.80001974, 69.2999954)
  1036. o82.Parent = o1
  1037. o82.BrickColor = BrickColor.new("Smoky grey")
  1038. o82.Position = Vector3.new(-15.8999882, 6.80002117, 71.8999481)
  1039. o82.Rotation = Vector3.new(-180, 0, -180)
  1040. o82.Anchored = true
  1041. o82.Size = Vector3.new(1, 1.20000017, 1)
  1042. o82.CFrame = CFrame.new(-15.8999882, 6.80002117, 71.8999481, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1043. o82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1044. o82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1045. o82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1046. o82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1047. o82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1048. o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1049. o82.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1050. o82.Position = Vector3.new(-15.8999882, 6.80002117, 71.8999481)
  1051. o83.Parent = o1
  1052. o83.BrickColor = BrickColor.new("Dark stone grey")
  1053. o83.Position = Vector3.new(-16.8999901, 5.50002289, 72.0999451)
  1054. o83.Rotation = Vector3.new(-180, 0, -0)
  1055. o83.Anchored = true
  1056. o83.Size = Vector3.new(1, 1.40000021, 1)
  1057. o83.CFrame = CFrame.new(-16.8999901, 5.50002289, 72.0999451, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  1058. o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1061. o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1062. o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1063. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1064. o83.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1065. o83.Position = Vector3.new(-16.8999901, 5.50002289, 72.0999451)
  1066. o84.Parent = o83
  1067. o84.MeshType = Enum.MeshType.Wedge
  1068. o85.Parent = o1
  1069. o85.BrickColor = BrickColor.new("Smoky grey")
  1070. o85.Position = Vector3.new(-15.8999882, 5.50002003, 71.8999481)
  1071. o85.Rotation = Vector3.new(-180, 0, -0)
  1072. o85.Anchored = true
  1073. o85.Size = Vector3.new(1, 1.40000021, 1)
  1074. o85.CFrame = CFrame.new(-15.8999882, 5.50002003, 71.8999481, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  1075. o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1077. o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1078. o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1079. o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1080. o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1081. o85.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1082. o85.Position = Vector3.new(-15.8999882, 5.50002003, 71.8999481)
  1083. o86.Parent = o85
  1084. o86.MeshType = Enum.MeshType.Wedge
  1085. o87.Parent = o1
  1086. o87.BrickColor = BrickColor.new("Dark stone grey")
  1087. o87.Position = Vector3.new(-16.8999996, 6.80001879, 71.4999466)
  1088. o87.Rotation = Vector3.new(-180, 0, -180)
  1089. o87.Anchored = true
  1090. o87.Size = Vector3.new(1, 4, 0.200000003)
  1091. o87.CFrame = CFrame.new(-16.8999996, 6.80001879, 71.4999466, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1092. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1097. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1098. o87.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1099. o87.Position = Vector3.new(-16.8999996, 6.80001879, 71.4999466)
  1100. o88.Parent = o1
  1101. o88.BrickColor = BrickColor.new("Dark stone grey")
  1102. o88.Position = Vector3.new(-14.899992, 6.80001879, 71.4999619)
  1103. o88.Rotation = Vector3.new(-180, 0, -180)
  1104. o88.Anchored = true
  1105. o88.Size = Vector3.new(1, 4, 0.200000003)
  1106. o88.CFrame = CFrame.new(-14.899992, 6.80001879, 71.4999619, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1107. o88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1108. o88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1109. o88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1110. o88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. o88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. o88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. o88.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1114. o88.Position = Vector3.new(-14.899992, 6.80001879, 71.4999619)
  1115. o89.Parent = o1
  1116. o89.BrickColor = BrickColor.new("Dark stone grey")
  1117. o89.Position = Vector3.new(-16.8999901, 6.80002117, 72.0999451)
  1118. o89.Rotation = Vector3.new(-180, 0, -180)
  1119. o89.Anchored = true
  1120. o89.Size = Vector3.new(1, 1.20000017, 1)
  1121. o89.CFrame = CFrame.new(-16.8999901, 6.80002117, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1122. o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1123. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1124. o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1125. o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. o89.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1129. o89.Position = Vector3.new(-16.8999901, 6.80002117, 72.0999451)
  1130. o90.Parent = o1
  1131. o90.BrickColor = BrickColor.new("Dark stone grey")
  1132. o90.Position = Vector3.new(-14.8999996, 5.50002289, 72.0999451)
  1133. o90.Rotation = Vector3.new(-180, 0, -0)
  1134. o90.Anchored = true
  1135. o90.Size = Vector3.new(1, 1.40000021, 1)
  1136. o90.CFrame = CFrame.new(-14.8999996, 5.50002289, 72.0999451, 1, 0, 0, 0, -1, 0, 0, 0, -1)
  1137. o90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1138. o90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1139. o90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1140. o90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1141. o90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1142. o90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. o90.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1144. o90.Position = Vector3.new(-14.8999996, 5.50002289, 72.0999451)
  1145. o91.Parent = o90
  1146. o91.MeshType = Enum.MeshType.Wedge
  1147. o92.Parent = o1
  1148. o92.BrickColor = BrickColor.new("Smoky grey")
  1149. o92.Position = Vector3.new(-15.8999882, 8.10002041, 71.8999481)
  1150. o92.Rotation = Vector3.new(-180, 0, -180)
  1151. o92.Anchored = true
  1152. o92.Size = Vector3.new(1, 1.40000021, 1)
  1153. o92.CFrame = CFrame.new(-15.8999882, 8.10002041, 71.8999481, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1154. o92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1155. o92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1156. o92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1157. o92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1158. o92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1159. o92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1160. o92.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1161. o92.Position = Vector3.new(-15.8999882, 8.10002041, 71.8999481)
  1162. o93.Parent = o92
  1163. o93.MeshType = Enum.MeshType.Wedge
  1164. o94.Parent = o1
  1165. o94.BrickColor = BrickColor.new("Dark stone grey")
  1166. o94.Position = Vector3.new(-16.8999901, 8.10002041, 72.0999451)
  1167. o94.Rotation = Vector3.new(-180, 0, -180)
  1168. o94.Anchored = true
  1169. o94.Size = Vector3.new(1, 1.40000021, 1)
  1170. o94.CFrame = CFrame.new(-16.8999901, 8.10002041, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1171. o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1172. o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1174. o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. o94.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1178. o94.Position = Vector3.new(-16.8999901, 8.10002041, 72.0999451)
  1179. o95.Parent = o94
  1180. o95.MeshType = Enum.MeshType.Wedge
  1181. o96.Parent = o1
  1182. o96.BrickColor = BrickColor.new("Dark stone grey")
  1183. o96.Position = Vector3.new(-14.8999996, 8.10002041, 72.0999451)
  1184. o96.Rotation = Vector3.new(-180, 0, -180)
  1185. o96.Anchored = true
  1186. o96.Size = Vector3.new(1, 1.40000021, 1)
  1187. o96.CFrame = CFrame.new(-14.8999996, 8.10002041, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1188. o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1191. o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1192. o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1193. o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. o96.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1195. o96.Position = Vector3.new(-14.8999996, 8.10002041, 72.0999451)
  1196. o97.Parent = o96
  1197. o97.MeshType = Enum.MeshType.Wedge
  1198. o98.Parent = o1
  1199. o98.BrickColor = BrickColor.new("Dark stone grey")
  1200. o98.Position = Vector3.new(-14.8999996, 6.80002117, 72.0999451)
  1201. o98.Rotation = Vector3.new(-180, 0, -180)
  1202. o98.Anchored = true
  1203. o98.Size = Vector3.new(1, 1.20000017, 1)
  1204. o98.CFrame = CFrame.new(-14.8999996, 6.80002117, 72.0999451, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  1205. o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1206. o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. o98.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1212. o98.Position = Vector3.new(-14.8999996, 6.80002117, 72.0999451)
  1213. o99.Parent = o1
  1214. o99.BrickColor = BrickColor.new("Smoky grey")
  1215. o99.Position = Vector3.new(-24.3999977, 6.80002117, 70.3999863)
  1216. o99.Anchored = true
  1217. o99.Size = Vector3.new(2.80000067, 4, 3.20000029)
  1218. o99.CFrame = CFrame.new(-24.3999977, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1219. o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1220. o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1221. o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1222. o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1223. o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. o99.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1226. o99.Position = Vector3.new(-24.3999977, 6.80002117, 70.3999863)
  1227. o100.Parent = o99
  1228. o100.MeshType = Enum.MeshType.Cylinder
  1229. o101.Name = "Main"
  1230. o101.Parent = o1
  1231. o101.BrickColor = BrickColor.new("Smoky grey")
  1232. o101.Position = Vector3.new(-18.4999981, 6.80002117, 70.3999863)
  1233. o101.Anchored = true
  1234. o101.Size = Vector3.new(8.20000076, 4, 2.4000001)
  1235. o101.CFrame = CFrame.new(-18.4999981, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1236. o101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1237. o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. o101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1239. o101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. o101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1242. o101.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1243. o101.Position = Vector3.new(-18.4999981, 6.80002117, 70.3999863)
  1244. o102.Parent = o101
  1245. o102.MeshType = Enum.MeshType.Cylinder
  1246. o103.Parent = o1
  1247. o103.Material = Enum.Material.Neon
  1248. o103.BrickColor = BrickColor.new("Pastel brown")
  1249. o103.Position = Vector3.new(-24.5000019, 6.80002117, 70.3999863)
  1250. o103.Anchored = true
  1251. o103.Size = Vector3.new(0.200000003, 3.99999976, 3.60000038)
  1252. o103.CFrame = CFrame.new(-24.5000019, 6.80002117, 70.3999863, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1253. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1254. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. o103.Color = Color3.new(1, 0.8, 0.6)
  1260. o103.Position = Vector3.new(-24.5000019, 6.80002117, 70.3999863)
  1261. o104.Parent = o103
  1262. o104.MeshType = Enum.MeshType.Cylinder
  1263. o105.Parent = o1
  1264. o105.BrickColor = BrickColor.new("Dark stone grey")
  1265. o105.Position = Vector3.new(-14.8999996, 5.50002289, 68.7000046)
  1266. o105.Rotation = Vector3.new(-0, 0, -179.999954)
  1267. o105.Anchored = true
  1268. o105.Size = Vector3.new(1, 1.40000021, 1)
  1269. o105.CFrame = CFrame.new(-14.8999996, 5.50002289, 68.7000046, -1.00000024, 9.08970833e-007, 0, -9.08970833e-007, -1.00000024, 0, 0, 0, 1)
  1270. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1271. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1273. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. o105.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1277. o105.Position = Vector3.new(-14.8999996, 5.50002289, 68.7000046)
  1278. o106.Parent = o105
  1279. o106.MeshType = Enum.MeshType.Wedge
  1280. o107.Parent = o1
  1281. o107.BrickColor = BrickColor.new("Dark stone grey")
  1282. o107.Position = Vector3.new(-14.8999996, 6.80002117, 68.7000046)
  1283. o107.Anchored = true
  1284. o107.Size = Vector3.new(1, 1.20000017, 1)
  1285. o107.CFrame = CFrame.new(-14.8999996, 6.80002117, 68.7000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1286. o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. o107.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1293. o107.Position = Vector3.new(-14.8999996, 6.80002117, 68.7000046)
  1294.  
  1295. for i,v in pairs(o1:GetChildren()) do
  1296. if v:IsA("BasePart") then
  1297. local w=Instance.new("Weld",o1)
  1298. w.Part0=o101
  1299. w.Part1=v
  1300. w.C0=o101.CFrame:inverse()
  1301. w.C1=v.CFrame:inverse()
  1302. v.Anchored=false
  1303. end
  1304. end
  1305.  
  1306. local railgunBP=Instance.new("BodyPosition",o101)
  1307. railgunBP.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  1308. local railgunBG=Instance.new("BodyGyro",o101)
  1309. railgunBG.maxTorque=Vector3.new(0,math.huge,math.huge)
  1310.  
  1311. function findHumanoid(character)
  1312. for i,v in pairs(character:GetChildren()) do
  1313. if v.ClassName=="Humanoid" then
  1314. return v
  1315. end
  1316. end
  1317. end
  1318.  
  1319. function isHumanoid(character)
  1320. for i,v in pairs(character:GetChildren()) do
  1321. if v.ClassName=="Humanoid" then
  1322. return true
  1323. end
  1324. end
  1325. end
  1326.  
  1327. function randomHitlerNoise()
  1328. local x=math.random(1,5)
  1329. if x==1 then
  1330. return 213188169
  1331. end
  1332. if x==2 then
  1333. return 213188220
  1334. end
  1335. if x==3 then
  1336. return 221920103
  1337. end
  1338. if x==4 then
  1339. return 221920080
  1340. end
  1341. if x==5 then
  1342. return 222371509
  1343. end
  1344. end
  1345. function stopMusic()
  1346. for i,v in pairs(workspace:GetChildren()) do
  1347. if v.ClassName=="Sound" then
  1348. v.Volume=1
  1349. end
  1350. end
  1351. coroutine.resume(coroutine.create(function()
  1352. for i=1,40 do
  1353. for i,v in pairs(workspace:GetChildren()) do
  1354. if v.ClassName=="Sound" then
  1355. v.Volume=v.Volume-1/40
  1356. end
  1357. wait()
  1358. end
  1359. end
  1360. for i,v in pairs(workspace:GetChildren()) do
  1361. if v.ClassName=="Sound" then
  1362. v:Destroy()
  1363. end
  1364. end
  1365. end))
  1366. end
  1367.  
  1368. function playMusic(id1,id2,vol)
  1369. coroutine.resume(coroutine.create(function()
  1370. local m=Instance.new("Sound",workspace)
  1371. while true do
  1372. m.SoundId="http://www.roblox.com/asset/?id="..id1..""
  1373. m.Volume=vol
  1374. m:play()
  1375. wait(m.TimeLength)
  1376. m.SoundId="http://www.roblox.com/asset/?id="..id2..""
  1377. m:play()
  1378. wait(m.TimeLength)
  1379. wait()
  1380. end
  1381. end))
  1382. end
  1383. local idk=Instance.new("BillboardGui",ch.Head)
  1384. idk.Adornee=ch.Head
  1385. idk.ExtentsOffset=Vector3.new(0,2,0)
  1386. idk.Size=UDim2.new(10,0,10,0)
  1387. idk.AlwaysOnTop=true
  1388. local idkf=Instance.new("ImageLabel",idk)
  1389. idkf.BackgroundTransparency=1
  1390. idkf.Position=UDim2.new(0,0,0,0)
  1391. idkf.Size=UDim2.new(1,0,1,0)
  1392. idkf.Image="http://www.roblox.com/asset/?id=0"
  1393. idkf.ImageColor3=Color3.new(255,85,0)
  1394. local idkff=Instance.new("TextLabel",idkf)
  1395. idkff.BackgroundTransparency=1
  1396. idkff.Size=UDim2.new(1,0,1,0)
  1397. idkff.FontSize="Size48"
  1398. idkff.Font="Fantasy"
  1399. idkff.Text="God"
  1400. idkff.TextColor3=Color3.new(255,255,127)
  1401. idkff.TextScaled=false
  1402. idkff.TextStrokeTransparency=0
  1403. idkff.TextStrokeColor3=Color3.new(0,0,0)
  1404. idkff.TextWrapped=false
  1405. local ff=Instance.new("ForceField",ch)
  1406. ff.Visible=false
  1407. ch.Humanoid.MaxHealth=math.huge
  1408. ch.Humanoid.Name="XXX_NUMBER_XXX545"
  1409. local m=Instance.new("Model",game.Workspace)
  1410. m.Name="pyro"
  1411. local pname=""..plr.Name..""
  1412. local mp=Instance.new("Part",ch)
  1413. mp.Anchored=false
  1414. mp.CanCollide=false
  1415. mp.Size=Vector3.new(3,3,3)
  1416. mp.Transparency=0.4
  1417. mp.BrickColor=BrickColor.new("Really black")
  1418. mp.Material="Neon"
  1419. mp.Shape="Ball"
  1420. local bp=Instance.new("BodyPosition",mp)
  1421. bp.MaxForce=Vector3.new(math.huge,math.huge,math.huge)
  1422. bp.P=9000
  1423. bp.Position=t.Position+Vector3.new(3,6,0)
  1424. local bg=Instance.new("BodyGyro",mp)
  1425. bg.maxTorque=Vector3.new(math.huge,math.huge,math.huge)
  1426. local penceModeOn=false
  1427. function sunder(part,amount,particleLifetime,particleEffect)
  1428. if part.Size.x>500 and part.Size.z>500 or part.Size.y>500 then return end
  1429. for i=1,amount do
  1430. local pclone=part:Clone()
  1431. pclone.FormFactor="Custom"
  1432. pclone.Parent=part.Parent
  1433. pclone.CFrame=part.CFrame
  1434. *CFrame.new(math.random(1,4),math.random(1,4),math.random(1,4))
  1435. *CFrame.new(-4/2,-4/2,-4/2)
  1436. pclone.Anchored=false
  1437. pclone.CanCollide=false
  1438. pclone.Size=Vector3.new(pclone.Size.x/amount,pclone.Size.y/amount,pclone.Size.z/amount)*1.7
  1439. game.Debris:AddItem(pclone,particleLifetime)
  1440. pclone.CanCollide=true
  1441. end
  1442. part:Destroy()
  1443. end
  1444. function castRay(bc,p1,p2)
  1445. local p=Instance.new("Part",plr.Character)
  1446. p.BrickColor=bc
  1447. if penceModeOn then p.BrickColor=BrickColor.new("Cyan") end
  1448. p.FormFactor="Custom"
  1449. p.Anchored=true
  1450. p.CanCollide=false
  1451. p.Material="Neon"
  1452. p.Name="RayCast"
  1453. local distance=(p1-p2).magnitude
  1454. p.Size=Vector3.new(0.2,0.2,distance)
  1455. p.CFrame=CFrame.new(p1,p2)*CFrame.new(0,0,-distance/2)
  1456. local m=Instance.new("BlockMesh",p)
  1457. coroutine.resume(coroutine.create(function()
  1458. for i=1,10 do
  1459. m.Scale=m.Scale+Vector3.new(math.random(3,7),math.random(-1,7),0)
  1460. p.Transparency=i/10
  1461. wait()
  1462. end
  1463. end))
  1464. game.Debris:AddItem(p,0.4)
  1465. end
  1466. function chainSunder(parent,target,radius,amount,particleLifetime,particleEffect)
  1467. for i,v in pairs(parent:GetChildren()) do
  1468. if v.ClassName=="Part" then
  1469. if (v.Position-target.Position).magnitude<radius then
  1470. if v:findFirstChild("gayGuiFlag")~=nil then v.gayGuiFlag:Destroy() end
  1471. sunder(v,amount,particleLifetime,particleEffect)
  1472. end
  1473. end
  1474. end
  1475. end
  1476. local gay=false
  1477. local gays={}
  1478. local currentGays=0
  1479. function makeGay(char)
  1480. if char==ch then return end
  1481. currentGays=currentGays+1
  1482. local marked=Instance.new("StringValue",char);marked.Name="gayMarker";
  1483. local bblol=Instance.new("BillboardGui",char.Head)
  1484. bblol.Name="gayGuiFlag"
  1485. bblol.AlwaysOnTop=true
  1486. bblol.Adornee=char.Head
  1487. bblol.ExtentsOffset=Vector3.new(0,0,0)
  1488. bblol.Size=UDim2.new(0,3,0,3)
  1489. local imagelol=Instance.new("ImageLabel",bblol)
  1490. imagelol.Image="rbxassetid://524015150"
  1491. imagelol.Size=UDim2.new(0,20,0,20)
  1492. print(bblol.Parent)
  1493. print(imagelol.Parent)
  1494. if char:findFirstChild("Pants")~=nil then
  1495. char.Pants:Destroy()
  1496. end
  1497. for i,v in pairs(char:GetChildren()) do
  1498. if v:IsA("Part") then
  1499. v.BrickColor=BrickColor.new("Pastel brown")
  1500. v.Anchored=false
  1501. end
  1502. end
  1503. end
  1504. function getCharactersNumber(x)
  1505. local plrs=0
  1506. for i,v in pairs(x) do
  1507. if isHumanoid(x) then
  1508. plrs=plrs+1
  1509. end
  1510. end
  1511. return plrs
  1512. end
  1513. local defence=false
  1514. function penceMode()
  1515. if not penceModeOn then
  1516. penceModeOn=true
  1517. defence=false
  1518. playMusic(567155997,567155997,1.5)
  1519. idkff.Text="mike pence"
  1520. for i,v in pairs(workspace:GetChildren()) do
  1521. if isHumanoid(v) and v~=ch then
  1522. makeGay(v)
  1523. end
  1524. end
  1525. elseif penceModeOn then
  1526. penceModeOn=false
  1527. defence=true
  1528. stopMusic()
  1529. idkff.Text="God: do not approach"
  1530. end
  1531. end
  1532. function beGay()
  1533. currentGays=currentGays+1
  1534. local hsound=Instance.new("Sound",ch.Head)
  1535. hsound.SoundId="http://www.roblox.com/asset/?id=650270975"
  1536. hsound.Volume=3
  1537. local disort=Instance.new("DistortionSoundEffect",hsound)
  1538. disort.Level=0.75
  1539. hsound:play()
  1540. game.Debris:AddItem(hsound,5)
  1541. if not gay then
  1542. gay=true
  1543. local hat=Instance.new("Part",ch);hat.Anchored=true;hat.CanCollide=false;hat.Size=Vector3.new(1,1,1);hat.BrickColor=BrickColor.new("Lime green")
  1544. local mesh=Instance.new("SpecialMesh",hat);mesh.MeshId="http://www.roblox.com/asset/?id=1090610";
  1545. local w=Instance.new("Weld",hat)
  1546. w.Part0=hat
  1547. w.Part1=ch.Head
  1548. w.C1=CFrame.new(0,0.5,0)
  1549. hat.Anchored=false
  1550. for i,v in pairs(ch:GetChildren()) do
  1551. if v:IsA("Part") then
  1552. v.BrickColor=BrickColor.new("Lime green")
  1553. v.Material="SmoothPlastic"
  1554. v.Anchored=false
  1555. end
  1556. end
  1557. end
  1558. end
  1559.  
  1560. function toggleDefence()
  1561. if defence then
  1562. defence=false
  1563. idkff.Text="God"
  1564. elseif not defence then
  1565. defence=true
  1566. idkff.Text="God: do not approach"
  1567. end
  1568. end
  1569. function handleKeyDown(key)
  1570. if key=="f" then
  1571. local hsound=Instance.new("Sound",mp)
  1572. if not penceModeOn then
  1573. hsound.SoundId="http://www.roblox.com/asset/?id="..randomHitlerNoise()..""
  1574. end
  1575. if penceModeOn then
  1576. hsound.SoundId="http://www.roblox.com/asset/?id=517251746"
  1577. end
  1578. hsound.Volume=3
  1579. local disort=Instance.new("DistortionSoundEffect",hsound)
  1580. disort.Level=0.75
  1581. hsound:play()
  1582. game.Debris:AddItem(hsound,5)
  1583.  
  1584. castRay(BrickColor.new("Really red"),mp.CFrame.p,mo.Hit.p)
  1585. chainSunder(mo.Target.Parent,mo.Target,5,5,50,true)
  1586. if isHumanoid(mo.Target.Parent) and penceMode then
  1587. currentGays=currentGays-1
  1588. end
  1589. local e=Instance.new("Explosion",workspace)
  1590. e.Position=mo.Hit.p
  1591. e.BlastRadius=1
  1592. e.BlastPressure=1
  1593. end
  1594. if key=="g" then
  1595. for i=1,100 do
  1596. local hsound=Instance.new("Sound",mp)
  1597. if not penceModeOn then
  1598. hsound.SoundId="http://www.roblox.com/asset/?id="..randomHitlerNoise()..""
  1599. end
  1600. if penceModeOn then
  1601. hsound.SoundId="http://www.roblox.com/asset/?id=517251746"
  1602. end
  1603. hsound.Volume=3
  1604. local disort=Instance.new("DistortionSoundEffect",hsound)
  1605. disort.Level=0.75
  1606. hsound:play()
  1607. game.Debris:AddItem(hsound,5)
  1608.  
  1609. castRay(BrickColor.new("Really red"),mp.CFrame.p,mo.Hit.p)
  1610. chainSunder(mo.Target.Parent,mo.Target,5,5,50,true)
  1611. if isHumanoid(mo.Target.Parent) and penceMode then
  1612. currentGays=currentGays-1
  1613. end
  1614. local e=Instance.new("Explosion",workspace)
  1615. e.Position=mo.Hit.p
  1616. e.BlastRadius=1
  1617. e.BlastPressure=1
  1618. wait()
  1619. end
  1620. end
  1621. if key=="e" then
  1622. beGay()
  1623. end
  1624. if key=="q" then
  1625. toggleDefence()
  1626. end
  1627. if key=="z" then
  1628. penceMode()
  1629. end
  1630. end
  1631. local gayInfoText=Instance.new("TextLabel")
  1632. gayInfoText.BackgroundTransparency=1
  1633. gayInfoText.Position=UDim2.new(0.5,0,0,0)
  1634. gayInfoText.Size=UDim2.new(0,200,0,50)
  1635. gayInfoText.Font="Code"
  1636. gayInfoText.FontSize="Size42"
  1637. gayInfoText.TextColor3=Color3.new(1,1,1)
  1638. gayInfoText.Text="Gays left: 0"
  1639. local myguixd
  1640. local myguitextxd
  1641. mo.KeyDown:connect(handleKeyDown)
  1642. function fire()
  1643. local sound0=Instance.new("Sound",o101)
  1644. sound0.SoundId="http://www.roblox.com/asset/?id=213188254"
  1645. sound0.Volume=2
  1646. sound0.Pitch=0.85
  1647. sound0:play()
  1648. game.Debris:AddItem(sound0,5)
  1649. local sound=Instance.new("Sound",o101)
  1650. sound.SoundId="http://www.roblox.com/asset/?id=331898488"
  1651. sound.Volume=2
  1652. sound.Pitch=0.85
  1653. sound:play()
  1654. game.Debris:AddItem(sound,5)
  1655. castRay(BrickColor.new("Deep orange"),o101.CFrame*CFrame.new(10,0,0).p,mo.Hit.p)
  1656. chainSunder(mo.Target.Parent,mo.Target,30,5,50,true)
  1657. end
  1658. mo.Button1Down:connect(function()
  1659. fire()
  1660. end)
  1661. game:GetService("RunService").RenderStepped:connect(function()
  1662. bp.Position=t.Position+Vector3.new(3,6,0)
  1663. bg.cframe=mo.Hit
  1664. railgunBP.Position=ch.Torso.Position+Vector3.new(-5,10,0)
  1665. railgunBG.cframe=mo.Hit*CFrame.Angles(0,math.rad(90),0)
  1666. if ch:findFirstChild("ForceField")==nil then local ff=Instance.new("ForceField",ch) end
  1667. Life()
  1668. for i,v in pairs(ch:GetChildren()) do
  1669. if v.ClassName=="Part" and v.Name~="RayCast" then
  1670. v.Locked=true
  1671. v.Anchored=false
  1672. end
  1673. end
  1674. for i,v in pairs(workspace:GetChildren()) do
  1675. if not defence then return end
  1676. for i,x in pairs(v:GetChildren()) do
  1677. if findHumanoid(x.Parent) then
  1678. if (x.Parent.Torso.Position-ch.Torso.Position).magnitude<=12 and x.Parent~=ch then
  1679. x.Parent.Humanoid:Destroy()
  1680. local hsound=Instance.new("Sound",workspace)
  1681. hsound.SoundId="http://www.roblox.com/asset/?id=460919688"
  1682. hsound.Volume=0.5
  1683. local disort=Instance.new("DistortionSoundEffect",hsound)
  1684. disort.Level=1
  1685. hsound:play()
  1686. game.Debris:AddItem(hsound,5)
  1687.  
  1688. castRay(BrickColor.new("Really red"),mp.CFrame.p,x.Parent.Torso.CFrame.p)
  1689. chainSunder(x.Parent,x.Parent.Torso,24,5,50,true)
  1690. local e=Instance.new("Explosion",workspace)
  1691. e.Position=x.Parent.Torso.CFrame.p
  1692. e.BlastRadius=1
  1693. e.BlastPressure=1
  1694. x:Destroy()
  1695. end
  1696. end
  1697. end
  1698. end
  1699. if penceModeOn then
  1700. if plr.PlayerGui:findFirstChild("OKGUIXD")==nil then
  1701. myguixd=Instance.new("ScreenGui",plr.PlayerGui)
  1702. myguixd.Name="OKGUIXD"
  1703. myguitextxd=gayInfoText:clone()
  1704. myguitextxd.Parent=myguixd
  1705. end
  1706. for i,v in pairs(workspace:GetChildren()) do
  1707. if isHumanoid(v) and v:findFirstChild("gayMarker")~=nil then
  1708. local screenguilol=Instance.new("ScreenGui",game.Players:GetPlayerFromCharacter(v).PlayerGui)
  1709. gayInfoText:clone().Parent=screenguilol
  1710. coroutine.resume(coroutine.create(function()
  1711. while wait() do
  1712. if not penceMode then screenguilol:Destroy() myguixd:Destroy() break end
  1713. gayInfoText.Text="Gays left: "..currentGays..""
  1714. myguitextxd.Text="Gays left: "..currentGays..""
  1715. end
  1716. end))
  1717. end
  1718. end
  1719. end
  1720. end)
Add Comment
Please, Sign In to add comment