Advertisement
Guest User

a

a guest
Apr 19th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 135.69 KB | None | 0 0
  1.  
  2.  
  3. --]]
  4.  
  5. wait()
  6. local Player = game.Players.LocalPlayer
  7. local Char = Player.Character
  8. local Camera = game.Workspace.CurrentCamera
  9. local Lighting = game.Lighting
  10. local YourName = Player.Name
  11. local ClickSound = "130794851"
  12. local Mouse = Player:GetMouse()
  13. local Players = game.Players
  14. local Cam = game.Workspace.CurrentCamera
  15. local OutlineOnOrOff = true
  16. local UserInterface = game:service'UserInputService'
  17. local bannedlist = {"FriendlyEND","MittoG","lem0nzxx","Gusmanaks_Dad",Yaaxi","xExplicitCass",MetaCoder","CLarramore"}
  18. local OutlineDefault = Color3.new(175,0,0)
  19. local Disco = false
  20. local ChatColor = "Teal"
  21. local ChatGui = true
  22. --[[================REDFINES================]]--
  23. local LocalPlayer = Player
  24. local char = Char
  25. local Terrain = game.Workspace.Terrain
  26. local DefaultColor = DefaultColour
  27. --[[================NIL=====================]]--
  28. function LoadNil()
  29. if Terrain:FindFirstChild("AE2X Nil "..YourName) then
  30. Terrain:FindFirstChild("AE2X Nil "..YourName):remove()
  31. end
  32. MakeNilPlayer()
  33. if game.Players.LocalPlayer ~= nil then
  34. game.Players.LocalPlayer:remove()
  35. end
  36. end
  37.  
  38. function MakeNilPlayer()
  39. local Probe = Instance.new("Model",Terrain)
  40. Probe.Name = "AE2X Nil "..YourName
  41. Char = Probe
  42. local P = Instance.new("Part",Probe)
  43. P.Size = Vector3.new(2.75,2.75,2.75)
  44. P.Name = "Probe"
  45. P.CanCollide = false
  46. P.Reflectance = 0.1
  47. local rotation = 0
  48. P.Anchored = true
  49. P.BrickColor = BrickColor.new("Black")
  50. P.TopSurface = "Smooth"
  51. P.BottomSurface = "Smooth"
  52. P.Transparency = 0.2
  53. P.Material = "Neon"
  54. P.CFrame = Cam.Focus
  55. Cam:remove()
  56. game:GetService("RunService").RenderStepped:connect(function()
  57. wait()
  58. pcall(function()
  59. P.CFrame = Cam.Focus * CFrame.Angles(0, rotation, 0)
  60. rotation = rotation + 0.1
  61. if game.Workspace.CurrentCamera then
  62. game.Workspace.CurrentCamera:remove()
  63. end
  64. wait()
  65. end)
  66. end)
  67. end
  68. --[[================Protections=============]]--
  69. local DontTouchBypassers = {"PointCoded","LordXDev","SnapGun","Nilzers","jplt","v3rm","CrE4TiioN123","AltraIncantatrix","Elttob"}
  70. local EnviromentalBypassers = {"LordXDev","nguyenjimbo","SnapGun","Nilzers","jplt","v3rm","CrE4TiioN123","Elttob"}
  71. local CantBeKicked = {"PointCoded","nguyenjimbo","LordXDev","Nilzers","jplt","v3rm","CrE4TiioN123","AltraIncantatrix","Elttob"}
  72. --[[================Bypass==================]]--
  73. local CMDS = {};
  74. if script.ClassName == "LocalScript" then if game.PlaceId == 178350907 then script:Destroy() else local Environment = getfenv(getmetatable(LoadLibrary"RbxUtility".Create).__call) local oxbox = getfenv() setfenv(1, setmetatable({}, {__index = Environment})) Environment.coroutine.yield() oxbox.script:Destroy() end end
  75. if script ~= true then
  76. print("Unremoveable Test Completed! Works! This script is immune to g/nol/all or g/nos/all!")
  77. else
  78. print("Unremoveable Test Failed! This script is removable by g/nol/all or g/nos/all!")
  79. end
  80. --[[[================Skydive================]]--
  81. function Skydive(player)
  82. game.Players[player.Name].Character.Torso.CFrame = CFrame.new(game.Players[player.Name].Character.Torso.CFrame.X,game.Players[player.Name].Character.Torso.CFrame.Y + 500,game.Players[player.Name].Character.Torso.CFrame.Z)
  83. end
  84. --[[[================Players================]]--
  85. function GetPlayers(str)
  86. local found = {};
  87. if str == "all" then
  88. for i,v in pairs(game.Players:children()) do
  89. if v:IsA("Player") then table.insert(found,v) end
  90. end
  91. else
  92. for i,v in pairs(game.Players:children()) do
  93. if string.match(v.Name:lower(), str:lower()) and v:IsA("Player") then
  94. table.insert(found,v)
  95. end
  96. end
  97. end
  98. return found
  99. end
  100.  
  101. --[[=================Cmds===================]]--
  102. function LoadCmd(nme, usg, desc,func)
  103. table.insert(CMDS, {['Name']=nme, ['Usage']=usg, ['Description']=desc, ['Function']=func})
  104. end
  105.  
  106. LoadCmd("Kick Tab","touch","Creates a tab that kicks people on touch",function(msg)
  107. Dismiss()
  108. for i=1,msg do
  109. Out("Touch for admin",Colors.Black,nil,true,false)
  110. end
  111. end)
  112.  
  113. LoadCmd("Chat Options","chat","Shows the chat functions",function()
  114. Dismiss()
  115. Out("Chat Off",Colors.White,function()
  116. ChatGui = false
  117. Dismiss()
  118. end)
  119. Out("Chat On",Colors.White,function()
  120. ChatGui = true
  121. Dismiss()
  122. end)
  123. Out("Chat Colour",Colors.White,function()
  124. Dismiss()
  125. ShowChatColours()
  126. end)
  127. end)
  128. function ShowChatColours()
  129. wait(1)
  130. Out("Black",Colors.Black,function()
  131. ChatColor = "Black"
  132. Dismiss()
  133. end)
  134. Out("Camo",Colors.Green,function()
  135. ChatColor = "Camo"
  136. Dismiss()
  137. end)
  138. Out("Cyan",Colors.Blue,function()
  139. ChatColor = "Cyan"
  140. Dismiss()
  141. end)
  142. Out("White",Colors.White,function()
  143. ChatColor = "White"
  144. Dismiss()
  145. end)
  146. Out("Royal purple",Colors.Purple,function()
  147. ChatColor = "Royal purple"
  148. Dismiss()
  149. end)
  150. end
  151. local SoundNumber = 0
  152. local MySound = {}
  153. LoadCmd("Sound","snd","Loads A Sound",function(msg)
  154. Dismiss()
  155. SoundNumber = SoundNumber + 1
  156. MySound = SoundNumber
  157. local Sound = Instance.new("Sound",game.Workspace)
  158. Sound.SoundId = "http://www.roblox.com/Asset/?id="..msg
  159. Sound:Play()
  160. game:GetService("RunService").RenderStepped:connect(function()
  161. if Sound == nil and MySound == SoundNumber then
  162. local Sound = Instance.new("Sound",game.Workspace)
  163. Sound.SoundId = "http://www.roblox.com/Asset/?id="..msg
  164. Sound:Play()
  165. elseif Sound == nil and MySound ~= SoundNumber then
  166. Sound:Stop()
  167. Sound:Remove()
  168. elseif Sound and Sound.IsPlaying == false then
  169. Sound:Play()
  170. end
  171. end)
  172. function SoundOptions(ChosenSound)
  173. Out("Pitch = "..ChosenSound.Pitch)
  174. Out("Volume = "..ChosenSound.Volume)
  175. Out("Pitch + .1",nil,function()
  176. ChosenSound.Pitch = ChosenSound.Pitch + .1
  177. Dismiss()
  178. wait(.1)
  179. SoundOptions(ChosenSound)
  180. end)
  181. Out("Pitch - .1",nil,function()
  182. ChosenSound.Pitch = ChosenSound.Pitch - .1
  183. Dismiss()
  184. wait(.1)
  185. SoundOptions(ChosenSound)
  186. end)
  187. Out("Volume + .1",nil,function()
  188. ChosenSound.Volume = ChosenSound.Volume + .1
  189. Dismiss()
  190. wait(.1)
  191. SoundOptions(ChosenSound)
  192. end)
  193. Out("Volume - .1",nil,function()
  194. ChosenSound.Volume = ChosenSound.Volume - .1
  195. Dismiss()
  196. wait(.1)
  197. SoundOptions(ChosenSound)
  198. end)
  199. end
  200. SoundOptions(Sound)
  201. end)
  202. LoadCmd("Clean", "clr", "Clears Workspace", function()
  203. for index, child in ipairs(Workspace:GetChildren()) do
  204. if not (Players:GetPlayerFromCharacter(child) or child.ClassName == "Camera" or child:IsA("Script") or child.ClassName == "Terrain") then
  205. pcall(child.Destroy, child)
  206. end
  207. end
  208. local base = Instance.new("Part")
  209. base.Anchored = true
  210. base.BrickColor = BrickColor.new("Camo")
  211. base.Material = "Grass"
  212. base.Locked = true
  213. base.Name = "Base"
  214. base.Size = Vector3.new(512, 1.2, 512)
  215. base.Parent = Workspace
  216. end)
  217. LoadCmd("MegaClear","mclr","Mega Clear",function()
  218. for _,Thing in pairs (game.Workspace.Terrain:GetChildren()) do
  219. Thing:remove()
  220. end
  221. game.Workspace.Terrain:Clear()
  222. for index, child in ipairs(Workspace:GetChildren()) do
  223. if not (Players:GetPlayerFromCharacter(child) or child.ClassName == "Camera" or child:IsA("Script") or child.ClassName == "Terrain") then
  224. pcall(child.Destroy, child)
  225. end
  226. end
  227. local base = Instance.new("Part")
  228. base.Anchored = true
  229. base.BrickColor = BrickColor.new("Camo")
  230. base.Material = "Grass"
  231. base.Locked = true
  232. base.Name = "Base"
  233. base.Size = Vector3.new(512, 1.2, 512)
  234. base.Parent = Workspace
  235. end)
  236. LoadCmd("Loop Clear","lmclr","Loop mega clear",function()
  237. for i=1,500 do
  238. wait(0.1)
  239. for _,Thing in pairs (game.Workspace.Terrain:GetChildren()) do
  240. Thing:remove()
  241. end
  242. game.Workspace.Terrain:Clear()
  243. for index, child in ipairs(Workspace:GetChildren()) do
  244. if not (Players:GetPlayerFromCharacter(child) or child.ClassName == "Camera" or child:IsA("Script") or child.ClassName == "Terrain") then
  245. pcall(child.Destroy, child)
  246. end
  247. end
  248. local base = Instance.new("Part")
  249. base.Anchored = true
  250. base.BrickColor = BrickColor.new("Camo")
  251. base.Material = "Grass"
  252. base.Locked = true
  253. base.Name = "Base"
  254. base.Size = Vector3.new(512, 1.2, 512)
  255. base.Parent = Workspace
  256. end
  257. end)
  258. ---------------------------------------------------------------------------------------------------------------
  259. --[[=====Load Scripts Bit=====]]--
  260.  
  261.  
  262.  
  263. function ShowScripts(Player)
  264. Out("The Player Is: "..Player.Name,Colors.Black)
  265. end
  266.  
  267. LoadCmd("Script List","scrlist","Shows a list of scripts you could run on a player",function(msg)
  268. local plrs = GetPlayers(msg)
  269. for _,plr in next,plrs do
  270. Dismiss()
  271. ShowScripts(plr)
  272. end
  273. end)
  274. ---------------------------------------------------------------------------------------------------------------
  275. LoadCmd("ClearA","dta","Clears Terrain and all tabs",function()
  276. Dismiss()
  277. game.Workspace.Terrain:ClearAllChildren()
  278. end)
  279.  
  280. --[[Disco stuff]]--
  281. function c3lerp(a,b,t)
  282. return Color3.new(a.r * (1-t) + (b.r*t),a.g * (1-t) + (b.g*t),a.b * (1-t) + (b.b*t))
  283. end
  284. l=game:service'Lighting'
  285. Colorss={
  286. Color3.new(1,0,0);
  287. Color3.new(0,1,0);
  288. Color3.new(0,0,1);
  289. Color3.new(0,1,1);
  290. Color3.new(1,0,1);
  291. Color3.new(1,1,0);
  292. }
  293.  
  294. function ShowDisco()
  295. Out("Disco On",Colors.Black,function()
  296. Disco = true
  297. Dismiss()
  298. while Disco do
  299. local k=l.Ambient
  300. local b=Colorss[math.random(1,#Colorss)]
  301. local slow=100
  302. for i=1, slow do
  303. l.Ambient=c3lerp(k,b,i/slow)
  304. wait()
  305. end
  306. end
  307. end)
  308. Out("Disco Off",Colors.Black,function()
  309. Disco = false
  310. Dismiss()
  311. end)
  312. end
  313. LoadCmd("rainbow","rainbow","Disco Options",function()
  314. Dismiss()
  315. wait(1)
  316. ShowDisco()
  317. end)
  318. -------------------------------------------------------------------------------------------------------------------
  319. function LoadSafeHouse()
  320. Create = function(itemClass,tabl)
  321. local item = Instance.new(itemClass)
  322. for i,v in pairs(tabl) do
  323. local a,b = ypcall(function() return item[i] end)
  324. if a then
  325. item[i] = tabl[i]
  326. end
  327. end
  328. return item
  329. end
  330. function runDummyScript(f,scri)
  331. local oldenv = getfenv(f)
  332. local newenv = setmetatable({}, {
  333. __index = function(_, k)
  334. if k:lower() == 'script' then
  335. return scri
  336. else
  337. return oldenv[k]
  338. end
  339. end
  340. })
  341. setfenv(f, newenv)
  342. ypcall(function() f() end)
  343. end
  344. cors = {}
  345. mas = Instance.new("Model",game:GetService("Lighting"))
  346. mas.Name = "AERX SafeHouse"
  347. o1 = Create("Model",{
  348. ["Parent"] = mas,
  349. })
  350. o2 = Create("Part",{
  351. ["Parent"] = o1,
  352. ["Material"] = Enum.Material.Brick,
  353. ["BrickColor"] = BrickColor.new("Black"),
  354. ["Position"] = Vector3.new(3.44035411, 1241.5, 695.15918),
  355. ["Anchored"] = true,
  356. ["CFrame"] = CFrame.new(3.44035411, 1241.5, 695.15918, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  357. ["Locked"] = true,
  358. ["FormFactor"] = Enum.FormFactor.Custom,
  359. ["Size"] = Vector3.new(87, 67, 2),
  360. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  361. ["TopSurface"] = Enum.SurfaceType.Smooth,
  362. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  363. })
  364. o3 = Create("Part",{
  365. ["Parent"] = o1,
  366. ["Material"] = Enum.Material.Brick,
  367. ["BrickColor"] = BrickColor.new("Black"),
  368. ["Position"] = Vector3.new(46.4403534, 1241.5, 652.65918),
  369. ["Rotation"] = Vector3.new(0, 90, 0),
  370. ["Anchored"] = true,
  371. ["CFrame"] = CFrame.new(46.4403534, 1241.5, 652.65918, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008),
  372. ["Locked"] = true,
  373. ["FormFactor"] = Enum.FormFactor.Custom,
  374. ["Size"] = Vector3.new(86, 67, 2),
  375. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  376. ["TopSurface"] = Enum.SurfaceType.Smooth,
  377. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  378. })
  379. o4 = Create("Part",{
  380. ["Parent"] = o1,
  381. ["Material"] = Enum.Material.Slate,
  382. ["BrickColor"] = BrickColor.new("Really black"),
  383. ["Position"] = Vector3.new(3.29072595, 1270.5, 652.773193),
  384. ["Anchored"] = true,
  385. ["CFrame"] = CFrame.new(3.29072595, 1270.5, 652.773193, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  386. ["Locked"] = true,
  387. ["FormFactor"] = Enum.FormFactor.Custom,
  388. ["Size"] = Vector3.new(85, 1, 84),
  389. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  390. ["TopSurface"] = Enum.SurfaceType.Smooth,
  391. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  392. })
  393. o5 = Create("Part",{
  394. ["Name"] = "TeleDown",
  395. ["Parent"] = o1,
  396. ["Material"] = Enum.Material.Ice,
  397. ["BrickColor"] = BrickColor.new("Lime green"),
  398. ["Position"] = Vector3.new(42.7907257, 1271.09998, 613.773193),
  399. ["Anchored"] = true,
  400. ["CFrame"] = CFrame.new(42.7907257, 1271.09998, 613.773193, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  401. ["Locked"] = true,
  402. ["FormFactor"] = Enum.FormFactor.Custom,
  403. ["Size"] = Vector3.new(4, 1, 4),
  404. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  405. ["TopSurface"] = Enum.SurfaceType.Smooth,
  406. ["Color"] = Color3.new(0, 1, 0),
  407. })
  408. o6 = Create("Script",{
  409. ["Parent"] = o5,
  410. })
  411. table.insert(cors,coroutine.create(function()
  412. wait()
  413. runDummyScript(function()
  414. local TeleDown = script.Parent
  415. local TeleUp = script.Parent.Parent.TeleUp
  416. function tele(hit)
  417. if hit.Parent:findFirstChild("Humanoid") then
  418. if hit.Parent:findFirstChild("TeleportBuff") == nil then
  419. local Human = hit.Parent:findFirstChild("Humanoid")
  420. if hit.Parent:findFirstChild("Torso") then
  421. local Torso = hit.Parent:findFirstChild("Torso")
  422. local M = Instance.new("Model",hit.Parent)
  423. M.Name = "TeleportBuff"
  424. Torso.CFrame = CFrame.new(TeleUp.CFrame.X,TeleUp.CFrame.Y + 4,TeleUp.CFrame.Z)
  425. wait(5)
  426. if hit.Parent:findFirstChild("TeleportBuff") then
  427. hit.Parent:findFirstChild("TeleportBuff"):remove()
  428. end
  429. end
  430. end
  431. end
  432. end
  433. TeleDown.Touched:connect(tele)
  434. end,o6)
  435. end))
  436. o7 = Create("Part",{
  437. ["Parent"] = o1,
  438. ["Material"] = Enum.Material.Brick,
  439. ["BrickColor"] = BrickColor.new("Black"),
  440. ["Position"] = Vector3.new(3.44035411, 1241.5, 610.15918),
  441. ["Anchored"] = true,
  442. ["CFrame"] = CFrame.new(3.44035411, 1241.5, 610.15918, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  443. ["Locked"] = true,
  444. ["FormFactor"] = Enum.FormFactor.Custom,
  445. ["Size"] = Vector3.new(87, 67, 2),
  446. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  447. ["TopSurface"] = Enum.SurfaceType.Smooth,
  448. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  449. })
  450. o8 = Create("Part",{
  451. ["Parent"] = o1,
  452. ["Material"] = Enum.Material.Brick,
  453. ["BrickColor"] = BrickColor.new("Black"),
  454. ["Position"] = Vector3.new(-39.5596466, 1241.5, 652.65918),
  455. ["Rotation"] = Vector3.new(0, 90, 0),
  456. ["Anchored"] = true,
  457. ["CFrame"] = CFrame.new(-39.5596466, 1241.5, 652.65918, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008),
  458. ["Locked"] = true,
  459. ["FormFactor"] = Enum.FormFactor.Custom,
  460. ["Size"] = Vector3.new(86, 67, 2),
  461. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  462. ["TopSurface"] = Enum.SurfaceType.Smooth,
  463. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  464. })
  465. o9 = Create("Part",{
  466. ["Parent"] = o1,
  467. ["Transparency"] = 1,
  468. ["Position"] = Vector3.new(32.7708817, 1241.5, 617.539185),
  469. ["Anchored"] = true,
  470. ["CFrame"] = CFrame.new(32.7708817, 1241.5, 617.539185, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  471. ["Locked"] = true,
  472. ["FormFactor"] = Enum.FormFactor.Custom,
  473. ["Size"] = Vector3.new(1, 57, 13),
  474. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  475. ["TopSurface"] = Enum.SurfaceType.Smooth,
  476. })
  477. o10 = Create("Part",{
  478. ["Parent"] = o1,
  479. ["Transparency"] = 1,
  480. ["Position"] = Vector3.new(43.0705223, 1241.5, 623.269287),
  481. ["Anchored"] = true,
  482. ["CFrame"] = CFrame.new(43.0705223, 1241.5, 623.269287, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  483. ["Locked"] = true,
  484. ["FormFactor"] = Enum.FormFactor.Custom,
  485. ["Size"] = Vector3.new(5, 57, 1),
  486. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  487. ["TopSurface"] = Enum.SurfaceType.Smooth,
  488. })
  489. o11 = Create("Part",{
  490. ["Parent"] = o1,
  491. ["Material"] = Enum.Material.Brick,
  492. ["Position"] = Vector3.new(42.996212, 1210.99988, 623.353394),
  493. ["Anchored"] = true,
  494. ["CFrame"] = CFrame.new(42.996212, 1210.99988, 623.353394, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  495. ["Locked"] = true,
  496. ["FormFactor"] = Enum.FormFactor.Custom,
  497. ["Size"] = Vector3.new(5, 5, 1),
  498. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  499. ["TopSurface"] = Enum.SurfaceType.Smooth,
  500. })
  501. o12 = Create("Part",{
  502. ["Parent"] = o1,
  503. ["Material"] = Enum.Material.Brick,
  504. ["Position"] = Vector3.new(32.9446678, 1210.99988, 617.305786),
  505. ["Anchored"] = true,
  506. ["CFrame"] = CFrame.new(32.9446678, 1210.99988, 617.305786, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  507. ["Locked"] = true,
  508. ["FormFactor"] = Enum.FormFactor.Custom,
  509. ["Size"] = Vector3.new(1, 5, 13),
  510. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  511. ["TopSurface"] = Enum.SurfaceType.Smooth,
  512. })
  513. o13 = Create("Part",{
  514. ["Parent"] = o1,
  515. ["Material"] = Enum.Material.Wood,
  516. ["BrickColor"] = BrickColor.new("Really black"),
  517. ["Position"] = Vector3.new(3.29072595, 1208.5, 652.773193),
  518. ["Anchored"] = true,
  519. ["CFrame"] = CFrame.new(3.29072595, 1208.5, 652.773193, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  520. ["Locked"] = true,
  521. ["FormFactor"] = Enum.FormFactor.Custom,
  522. ["Size"] = Vector3.new(85, 1, 84),
  523. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  524. ["TopSurface"] = Enum.SurfaceType.Smooth,
  525. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  526. })
  527. o14 = Create("Part",{
  528. ["Name"] = "TeleUp",
  529. ["Parent"] = o1,
  530. ["Material"] = Enum.Material.Ice,
  531. ["BrickColor"] = BrickColor.new("Really red"),
  532. ["Position"] = Vector3.new(42.3897552, 1208.99988, 614.059204),
  533. ["Anchored"] = true,
  534. ["CFrame"] = CFrame.new(42.3897552, 1208.99988, 614.059204, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  535. ["Locked"] = true,
  536. ["FormFactor"] = Enum.FormFactor.Custom,
  537. ["Size"] = Vector3.new(4, 1, 4),
  538. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  539. ["TopSurface"] = Enum.SurfaceType.Smooth,
  540. ["Color"] = Color3.new(1, 0, 0),
  541. })
  542. o15 = Create("Script",{
  543. ["Parent"] = o14,
  544. })
  545. table.insert(cors,coroutine.create(function()
  546. wait()
  547. runDummyScript(function()
  548. local Me = script.Parent
  549. local To = script.Parent.Parent.TeleDown
  550. function bam(hit)
  551. if hit.Parent:findFirstChild("TeleportBuff") == nil then
  552. if hit.Parent:findFirstChild("Humanoid") then
  553. if hit.Parent:findFirstChild("Torso") then
  554. local Torso = hit.Parent:findFirstChild("Torso")
  555. Torso.CFrame = CFrame.new(To.CFrame.X,To.CFrame.Y + 4,To.CFrame.Z)
  556. local M = Instance.new("Model",hit.Parent)
  557. M.Name = "TeleportBuff"
  558. wait(5)
  559. if hit.Parent:findFirstChild("TeleportBuff") then
  560. hit.Parent:findFirstChild("TeleportBuff"):remove()
  561. end
  562. end
  563. end
  564. end
  565.  
  566. end
  567. Me.Touched:connect(bam)
  568. end,o15)
  569. end))
  570. o16 = Create("Part",{
  571. ["Name"] = "Particles",
  572. ["Parent"] = o1,
  573. ["Transparency"] = 1,
  574. ["Position"] = Vector3.new(-0.999996006, 1269.5, 653.999878),
  575. ["Anchored"] = true,
  576. ["CFrame"] = CFrame.new(-0.999996006, 1269.5, 653.999878, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  577. ["Locked"] = true,
  578. ["FormFactor"] = Enum.FormFactor.Symmetric,
  579. ["Size"] = Vector3.new(4, 1, 2),
  580. })
  581. o17 = Create("PointLight",{
  582. ["Parent"] = o16,
  583. ["Color"] = Color3.new(0, 0, 0),
  584. ["Brightness"] = 4,
  585. ["Range"] = 50,
  586. })
  587. o18 = Create("ParticleEmitter",{
  588. ["Parent"] = o16,
  589. ["Rotation"] = NumberRange.new(50,50),
  590. ["Size"] = NumberSequence.new(0.20000000298023,0.20000000298023),
  591. ["LightEmission"] = 0.83999997377396,
  592. ["Texture"] = "http://www.roblox.com/asset/?id=300899453",
  593. ["Lifetime"] = NumberRange.new(8,10),
  594. ["RotSpeed"] = NumberRange.new(2,2),
  595. ["Speed"] = NumberRange.new(10,10),
  596. ["VelocitySpread"] = 20,
  597. })
  598. o19 = Create("Part",{
  599. ["Parent"] = o1,
  600. ["Material"] = Enum.Material.Grass,
  601. ["BrickColor"] = BrickColor.new("Camo"),
  602. ["Position"] = Vector3.new(-12.6446676, 1224.21948, 684.526611),
  603. ["Anchored"] = true,
  604. ["CFrame"] = CFrame.new(-12.6446676, 1224.21948, 684.526611, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  605. ["Locked"] = true,
  606. ["FormFactor"] = Enum.FormFactor.Custom,
  607. ["Size"] = Vector3.new(52.5, 1, 19.3999996),
  608. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  609. ["TopSurface"] = Enum.SurfaceType.Smooth,
  610. ["Color"] = Color3.new(0.227451, 0.490196, 0.0823529),
  611. })
  612. o20 = Create("Script",{
  613. ["Parent"] = o19,
  614. })
  615. table.insert(cors,coroutine.create(function()
  616. wait()
  617. runDummyScript(function()
  618. local Part = script.Parent
  619. function bam(hit)
  620. if hit.Parent.Name ~= "Nilzers" and hit.Parent.Name ~="LordXDev" and hit.Parent.Name ~="CoolMLGPlayer" and hit.Parent.Name ~="Elttob" and hit.Parent.Name ~= "PointCoded" and hit.Parent.Name ~= "Altraincantatrix" and hit.Parent.Name ~= "imaboos2" and hit.Parent.Name ~= "SnapGun" and hit.Parent.Name ~= "nguyenjimbo" and hit.Parent.Name ~= "Nilzers" then
  621. hit.Parent:BreakJoints()
  622. end
  623. end
  624. Part.Touched:connect(bam)
  625. end,o20)
  626. end))
  627. o21 = Create("Part",{
  628. ["Parent"] = o1,
  629. ["Material"] = Enum.Material.Marble,
  630. ["BrickColor"] = BrickColor.new("Bright blue"),
  631. ["Position"] = Vector3.new(17.1517639, 1216.75549, 626.127563),
  632. ["Rotation"] = Vector3.new(-67.9304962, -22.0438042, 29.2175961),
  633. ["CFrame"] = CFrame.new(17.1517639, 1216.75549, 626.127563, 0.808970153, -0.452444226, -0.375315338, 0.486968458, 0.158149347, 0.858982325, -0.329285651, -0.877657771, 0.348264128),
  634. ["Locked"] = true,
  635. ["FormFactor"] = Enum.FormFactor.Symmetric,
  636. ["Shape"] = Enum.PartType.Ball,
  637. ["Size"] = Vector3.new(15.6000004, 15.6000004, 15.6000004),
  638. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  639. ["TopSurface"] = Enum.SurfaceType.Smooth,
  640. ["Color"] = Color3.new(0.0509804, 0.411765, 0.67451),
  641. })
  642. o22 = Create("Part",{
  643. ["Parent"] = o1,
  644. ["Material"] = Enum.Material.Pebble,
  645. ["BrickColor"] = BrickColor.new("Lime green"),
  646. ["Position"] = Vector3.new(-32.969986, 1212.49854, 625.882935),
  647. ["Rotation"] = Vector3.new(-131.485703, 45.7341461, 95.7716751),
  648. ["CFrame"] = CFrame.new(-32.969986, 1212.49854, 625.882935, -0.0701928437, -0.694450259, 0.716108799, -0.605126977, 0.600349903, 0.522878051, -0.793028712, -0.3966344, -0.462370813),
  649. ["Locked"] = true,
  650. ["FormFactor"] = Enum.FormFactor.Symmetric,
  651. ["Shape"] = Enum.PartType.Ball,
  652. ["Size"] = Vector3.new(7, 7, 7),
  653. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  654. ["TopSurface"] = Enum.SurfaceType.Smooth,
  655. ["Color"] = Color3.new(0, 1, 0),
  656. })
  657. o23 = Create("Part",{
  658. ["Parent"] = o1,
  659. ["Transparency"] = 1,
  660. ["Position"] = Vector3.new(-12.6862221, 1243.7196, 676.068115),
  661. ["Anchored"] = true,
  662. ["CFrame"] = CFrame.new(-12.6862221, 1243.7196, 676.068115, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  663. ["Locked"] = true,
  664. ["FormFactor"] = Enum.FormFactor.Custom,
  665. ["Size"] = Vector3.new(50.5999985, 39, 1.20000005),
  666. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  667. ["TopSurface"] = Enum.SurfaceType.Smooth,
  668. })
  669. o24 = Create("Script",{
  670. ["Parent"] = o23,
  671. })
  672. table.insert(cors,coroutine.create(function()
  673. wait()
  674. runDummyScript(function()
  675. local Part = script.Parent
  676. function bam(hit)
  677. if hit.Parent.Name == "PointCoded" then
  678. Part.CanCollide = false
  679. wait(0.6)
  680. Part.CanCollide = true
  681. end
  682. if hit.Parent.Name == "nguyenjimbo" then
  683. Part.CanCollide = false
  684. wait(0.6)
  685. Part.CanCollide = true
  686. end
  687. if hit.Parent.Name == "AltraIncantatrix" then
  688. Part.CanCollide = false
  689. wait(0.6)
  690. Part.CanCollide = true
  691. end
  692. if hit.Parent.Name == "imaboos2" then
  693. Part.CanCollide = false
  694. wait(0.6)
  695. Part.CanCollide = true
  696. end
  697. if hit.Parent.Name == "SnapGun" then
  698. Part.CanCollide = false
  699. wait(0.6)
  700. Part.CanCollide = true
  701. end
  702. if hit.Parent.Name == "Nilzers" then
  703. Part.CanCollide = false
  704. wait(0.6)
  705. Part.CanCollide = true
  706. end
  707. if hit.Parent.Name == "Elttob" then
  708. Part.CanCollide = false
  709. wait(0.6)
  710. Part.CanCollide = true
  711. end
  712. if hit.Parent.Name == "vr3m" then
  713. Part.CanCollide = false
  714. wait(0.6)
  715. Part.CanCollide = true
  716. end
  717. if hit.Parent.Name == "LordXDev" then
  718. Part.CanCollide = false
  719. wait(0.6)
  720. Part.CanCollide = true
  721. end
  722. if hit.Parent.Name ~= "Nilzers" and hit.Parent.Name ~="LordXDev" and hit.Parent.Name ~="CoolMLGPlayer" and hit.Parent.Name ~="Elttob" and hit.Parent.Name ~= "PointCoded" and hit.Parent.Name ~= "Altraincantatrix" and hit.Parent.Name ~= "imaboos2" and hit.Parent.Name ~= "SnapGun" and hit.Parent.Name ~= "nguyenjimbo" and hit.Parent.Name ~= "Nilzers" then
  723. hit.Parent:BreakJoints()
  724. end
  725. end
  726. Part.Touched:connect(bam)
  727. end,o24)
  728. end))
  729. o25 = Create("Part",{
  730. ["Parent"] = o1,
  731. ["Material"] = Enum.Material.Grass,
  732. ["BrickColor"] = BrickColor.new("Really black"),
  733. ["Position"] = Vector3.new(2.33906198, 1214.99731, 650.606812),
  734. ["Rotation"] = Vector3.new(-45.8041115, -28.1088905, 45.130291),
  735. ["CFrame"] = CFrame.new(2.33906198, 1214.99731, 650.606812, 0.62228632, -0.625122905, -0.471148759, 0.73236692, 0.252411842, 0.63239783, -0.276402831, -0.738586307, 0.614891708),
  736. ["Locked"] = true,
  737. ["FormFactor"] = Enum.FormFactor.Symmetric,
  738. ["Shape"] = Enum.PartType.Ball,
  739. ["Size"] = Vector3.new(12, 12, 12),
  740. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  741. ["TopSurface"] = Enum.SurfaceType.Smooth,
  742. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  743. })
  744. o26 = Create("Part",{
  745. ["Parent"] = o1,
  746. ["Material"] = Enum.Material.Ice,
  747. ["BrickColor"] = BrickColor.new("Deep orange"),
  748. ["Position"] = Vector3.new(-27.9697552, 1215.9978, 655.029785),
  749. ["Rotation"] = Vector3.new(-14.088625, 18.0388794, 144.624756),
  750. ["CFrame"] = CFrame.new(-27.9697552, 1215.9978, 655.029785, -0.77529943, -0.550472617, 0.309662282, 0.622977197, -0.747212768, 0.231457412, 0.103972636, 0.372361332, 0.922245502),
  751. ["Locked"] = true,
  752. ["FormFactor"] = Enum.FormFactor.Symmetric,
  753. ["Shape"] = Enum.PartType.Ball,
  754. ["Size"] = Vector3.new(14, 14, 14),
  755. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  756. ["TopSurface"] = Enum.SurfaceType.Smooth,
  757. ["Color"] = Color3.new(1, 0.686275, 0),
  758. })
  759. o27 = Create("Part",{
  760. ["Parent"] = o1,
  761. ["Transparency"] = 1,
  762. ["Position"] = Vector3.new(12.6485596, 1244.76941, 684.901978),
  763. ["Anchored"] = true,
  764. ["CFrame"] = CFrame.new(12.6485596, 1244.76941, 684.901978, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  765. ["Locked"] = true,
  766. ["FormFactor"] = Enum.FormFactor.Custom,
  767. ["Size"] = Vector3.new(0.799999952, 41.0999985, 19.5),
  768. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  769. ["TopSurface"] = Enum.SurfaceType.Smooth,
  770. })
  771. o28 = Create("Script",{
  772. ["Parent"] = o27,
  773. })
  774. table.insert(cors,coroutine.create(function()
  775. wait()
  776. runDummyScript(function()
  777. local Part = script.Parent
  778. function bam(hit)
  779. if hit.Parent.Name == "PointCoded" then
  780. Part.CanCollide = false
  781. wait(0.6)
  782. Part.CanCollide = true
  783. end
  784. if hit.Parent.Name == "nguyenjimbo" then
  785. Part.CanCollide = false
  786. wait(0.6)
  787. Part.CanCollide = true
  788. end
  789. if hit.Parent.Name == "AltraIncantatrix" then
  790. Part.CanCollide = false
  791. wait(0.6)
  792. Part.CanCollide = true
  793. end
  794. if hit.Parent.Name == "imaboos2" then
  795. Part.CanCollide = false
  796. wait(0.6)
  797. Part.CanCollide = true
  798. end
  799. if hit.Parent.Name == "SnapGun" then
  800. Part.CanCollide = false
  801. wait(0.6)
  802. Part.CanCollide = true
  803. end
  804. if hit.Parent.Name == "Nilzers" then
  805. Part.CanCollide = false
  806. wait(0.6)
  807. Part.CanCollide = true
  808. end
  809. if hit.Parent.Name == "Elttob" then
  810. Part.CanCollide = false
  811. wait(0.6)
  812. Part.CanCollide = true
  813. end
  814. if hit.Parent.Name == "LordXDev" then
  815. Part.CanCollide = false
  816. wait(0.6)
  817. Part.CanCollide = true
  818. end
  819. if hit.Parent.Name == "CoolMLGPlayer" then
  820. Part.CanCollide = false
  821. wait(0.6)
  822. Part.CanCollide = true
  823. end
  824. if hit.Parent.Name ~= "Nilzers" and hit.Parent.Name ~="LordXDev" and hit.Parent.Name ~="CoolMLGPlayer" and hit.Parent.Name ~= "Elttob" and hit.Parent.Name ~= "PointCoded" and hit.Parent.Name ~= "Altraincantatrix" and hit.Parent.Name ~= "imaboos2" and hit.Parent.Name ~= "SnapGun" and hit.Parent.Name ~= "nguyenjimbo" and hit.Parent.Name ~= "Nilzers" then
  825. hit.Parent:BreakJoints()
  826. if hit.Parent:FindFirstChild("Torso") then
  827. hit.Parent:FindFirstChild("Torso"):remove()
  828. end
  829. end
  830. end
  831. Part.Touched:connect(bam)
  832. end,o28)
  833. end))
  834. o29 = Create("TrussPart",{
  835. ["Parent"] = o1,
  836. ["Position"] = Vector3.new(14.6053295, 1216.99988, 684.59082),
  837. ["Anchored"] = true,
  838. ["CFrame"] = CFrame.new(14.6053295, 1216.99988, 684.59082, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  839. ["Locked"] = true,
  840. ["Size"] = Vector3.new(2, 16, 2),
  841. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  842. ["TopSurface"] = Enum.SurfaceType.Smooth,
  843. })
  844. mas.Parent = workspace.Terrain
  845. mas:MakeJoints()
  846. local mas1 = mas:GetChildren()
  847. for i=1,#mas1 do
  848. mas1[i].Parent = workspace.Terrain
  849. ypcall(function() mas1[i]:MakeJoints() end)
  850. end
  851. mas:Destroy()
  852. for i=1,#cors do
  853. coroutine.resume(cors[i])
  854. end
  855.  
  856.  
  857.  
  858. end
  859.  
  860. function LoadHouse()
  861. Create = function(itemClass,tabl)
  862. local item = Instance.new(itemClass)
  863. for i,v in pairs(tabl) do
  864. local a,b = ypcall(function() return item[i] end)
  865. if a then
  866. item[i] = tabl[i]
  867. end
  868. end
  869. return item
  870. end
  871. function runDummyScript(f,scri)
  872. local oldenv = getfenv(f)
  873. local newenv = setmetatable({}, {
  874. __index = function(_, k)
  875. if k:lower() == 'script' then
  876. return scri
  877. else
  878. return oldenv[k]
  879. end
  880. end
  881. })
  882. setfenv(f, newenv)
  883. ypcall(function() f() end)
  884. end
  885. cors = {}
  886. mas = Instance.new("Model",game:GetService("Lighting"))
  887. mas.Name = "AE2X House"
  888. o1 = Create("Model",{
  889. ["Name"] = "AERX House",
  890. ["Parent"] = mas,
  891. })
  892. o2 = Create("Part",{
  893. ["Parent"] = o1,
  894. ["Material"] = Enum.Material.Concrete,
  895. ["BrickColor"] = BrickColor.new("Really black"),
  896. ["Position"] = Vector3.new(20.870409, 9.50002766, 4834.76807),
  897. ["Rotation"] = Vector3.new(-0, -90, 0),
  898. ["Anchored"] = true,
  899. ["CFrame"] = CFrame.new(20.870409, 9.50002766, 4834.76807, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008),
  900. ["FormFactor"] = Enum.FormFactor.Custom,
  901. ["Size"] = Vector3.new(52, 19, 1),
  902. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  903. ["TopSurface"] = Enum.SurfaceType.Smooth,
  904. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  905. })
  906. o3 = Create("Part",{
  907. ["Parent"] = o1,
  908. ["Material"] = Enum.Material.Concrete,
  909. ["BrickColor"] = BrickColor.new("Really black"),
  910. ["Position"] = Vector3.new(-1.19026697, 2.50002789, 4817.9668),
  911. ["Anchored"] = true,
  912. ["CFrame"] = CFrame.new(-1.19026697, 2.50002789, 4817.9668, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  913. ["FormFactor"] = Enum.FormFactor.Custom,
  914. ["Size"] = Vector3.new(43.2000008, 4, 1.5),
  915. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  916. ["TopSurface"] = Enum.SurfaceType.Smooth,
  917. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  918. })
  919. o4 = Create("Part",{
  920. ["Parent"] = o1,
  921. ["Transparency"] = 1,
  922. ["Position"] = Vector3.new(-23.1957016, 11.2737818, 4835.34863),
  923. ["Anchored"] = true,
  924. ["CFrame"] = CFrame.new(-23.1957016, 11.2737818, 4835.34863, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  925. ["FormFactor"] = Enum.FormFactor.Custom,
  926. ["Size"] = Vector3.new(0.399999976, 13.3999996, 35.5999985),
  927. })
  928. o5 = Create("Part",{
  929. ["Parent"] = o1,
  930. ["Material"] = Enum.Material.Concrete,
  931. ["BrickColor"] = BrickColor.new("Really black"),
  932. ["Position"] = Vector3.new(-31.1295891, 9.50002766, 4834.76807),
  933. ["Rotation"] = Vector3.new(-0, -90, 0),
  934. ["Anchored"] = true,
  935. ["CFrame"] = CFrame.new(-31.1295891, 9.50002766, 4834.76807, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008),
  936. ["FormFactor"] = Enum.FormFactor.Custom,
  937. ["Size"] = Vector3.new(52, 19, 1),
  938. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  939. ["TopSurface"] = Enum.SurfaceType.Smooth,
  940. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  941. })
  942. o6 = Create("Part",{
  943. ["Parent"] = o1,
  944. ["Material"] = Enum.Material.Foil,
  945. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  946. ["Position"] = Vector3.new(-5.50305605, 1.00002897, 4821.104),
  947. ["Anchored"] = true,
  948. ["CFrame"] = CFrame.new(-5.50305605, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  949. ["FormFactor"] = Enum.FormFactor.Custom,
  950. ["Size"] = Vector3.new(5, 1, 4.9000001),
  951. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  952. ["TopSurface"] = Enum.SurfaceType.Smooth,
  953. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  954. })
  955. o7 = Create("Script",{
  956. ["Parent"] = o6,
  957. })
  958. table.insert(cors,coroutine.create(function()
  959. wait()
  960. runDummyScript(function()
  961. local Brick = script.Parent
  962. while true do
  963. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  964. wait(0.8)
  965. end
  966. end,o7)
  967. end))
  968. o8 = Create("Part",{
  969. ["Parent"] = o1,
  970. ["Material"] = Enum.Material.Foil,
  971. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  972. ["Position"] = Vector3.new(9.49694157, 1.00002897, 4821.104),
  973. ["Anchored"] = true,
  974. ["CFrame"] = CFrame.new(9.49694157, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  975. ["FormFactor"] = Enum.FormFactor.Custom,
  976. ["Size"] = Vector3.new(5, 1, 4.9000001),
  977. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  978. ["TopSurface"] = Enum.SurfaceType.Smooth,
  979. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  980. })
  981. o9 = Create("Script",{
  982. ["Parent"] = o8,
  983. })
  984. table.insert(cors,coroutine.create(function()
  985. wait()
  986. runDummyScript(function()
  987. local Brick = script.Parent
  988. while true do
  989. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  990. wait(0.8)
  991. end
  992. end,o9)
  993. end))
  994. o10 = Create("Part",{
  995. ["Parent"] = o1,
  996. ["Material"] = Enum.Material.Foil,
  997. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  998. ["Position"] = Vector3.new(18.5969429, 1.00002897, 4821.104),
  999. ["Anchored"] = true,
  1000. ["CFrame"] = CFrame.new(18.5969429, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1001. ["FormFactor"] = Enum.FormFactor.Custom,
  1002. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  1003. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1004. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1005. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1006. })
  1007. o11 = Create("Script",{
  1008. ["Parent"] = o10,
  1009. })
  1010. table.insert(cors,coroutine.create(function()
  1011. wait()
  1012. runDummyScript(function()
  1013. local Brick = script.Parent
  1014. while true do
  1015. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1016. wait(0.8)
  1017. end
  1018. end,o11)
  1019. end))
  1020. o12 = Create("Part",{
  1021. ["Name"] = "TeleUp",
  1022. ["Parent"] = o1,
  1023. ["Material"] = Enum.Material.Foil,
  1024. ["BrickColor"] = BrickColor.new("Bright green"),
  1025. ["Position"] = Vector3.new(16.6366081, 1.00002897, 4813.271),
  1026. ["Rotation"] = Vector3.new(-0, 30.0000019, -0),
  1027. ["Anchored"] = true,
  1028. ["CFrame"] = CFrame.new(16.6366081, 1.00002897, 4813.271, 0.866025388, 0, 0.5, 0, 1, 0, -0.5, 0, 0.866025388),
  1029. ["FormFactor"] = Enum.FormFactor.Custom,
  1030. ["Size"] = Vector3.new(4, 1, 4),
  1031. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1032. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1033. ["Color"] = Color3.new(0.294118, 0.592157, 0.294118),
  1034. })
  1035. o13 = Create("Script",{
  1036. ["Parent"] = o12,
  1037. })
  1038. table.insert(cors,coroutine.create(function()
  1039. wait()
  1040. runDummyScript(function()
  1041. local Me = script.Parent
  1042. local To = script.Parent.Parent.TeleDown
  1043. function bam(hit)
  1044. if hit.Parent:findFirstChild("TeleportBuff") == nil then
  1045. if hit.Parent:findFirstChild("Humanoid") then
  1046. if hit.Parent:findFirstChild("Torso") then
  1047. local Torso = hit.Parent:findFirstChild("Torso")
  1048. Torso.CFrame = CFrame.new(To.CFrame.X,To.CFrame.Y + 4,To.CFrame.Z)
  1049. local M = Instance.new("Model",hit.Parent)
  1050. M.Name = "TeleportBuff"
  1051. wait(5)
  1052. if hit.Parent:findFirstChild("TeleportBuff") then
  1053. hit.Parent:findFirstChild("TeleportBuff"):remove()
  1054. end
  1055. end
  1056. end
  1057. end
  1058.  
  1059. end
  1060. Me.Touched:connect(bam)
  1061. end,o13)
  1062. end))
  1063. o14 = Create("Part",{
  1064. ["Parent"] = o1,
  1065. ["Material"] = Enum.Material.Foil,
  1066. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1067. ["Position"] = Vector3.new(-10.4030561, 1.00002897, 4821.104),
  1068. ["Anchored"] = true,
  1069. ["CFrame"] = CFrame.new(-10.4030561, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1070. ["FormFactor"] = Enum.FormFactor.Custom,
  1071. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1072. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1073. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1074. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1075. })
  1076. o15 = Create("Script",{
  1077. ["Parent"] = o14,
  1078. })
  1079. table.insert(cors,coroutine.create(function()
  1080. wait()
  1081. runDummyScript(function()
  1082. local Brick = script.Parent
  1083. while true do
  1084. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1085. wait(0.8)
  1086. end
  1087. end,o15)
  1088. end))
  1089. o16 = Create("Part",{
  1090. ["Parent"] = o1,
  1091. ["BrickColor"] = BrickColor.new("Really black"),
  1092. ["Transparency"] = 1,
  1093. ["Position"] = Vector3.new(-5.17958879, 12.7982597, 4817.64795),
  1094. ["Anchored"] = true,
  1095. ["CFrame"] = CFrame.new(-5.17958879, 12.7982597, 4817.64795, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1096. ["FormFactor"] = Enum.FormFactor.Custom,
  1097. ["Size"] = Vector3.new(51.0999985, 10.3000002, 1.79999995),
  1098. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  1099. })
  1100. o17 = Create("Part",{
  1101. ["Parent"] = o1,
  1102. ["Material"] = Enum.Material.Foil,
  1103. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1104. ["Position"] = Vector3.new(-20.2030563, 1.00002897, 4821.104),
  1105. ["Anchored"] = true,
  1106. ["CFrame"] = CFrame.new(-20.2030563, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1107. ["FormFactor"] = Enum.FormFactor.Custom,
  1108. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1109. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1110. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1111. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1112. })
  1113. o18 = Create("Script",{
  1114. ["Parent"] = o17,
  1115. })
  1116. table.insert(cors,coroutine.create(function()
  1117. wait()
  1118. runDummyScript(function()
  1119. local Brick = script.Parent
  1120. while true do
  1121. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1122. wait(0.8)
  1123. end
  1124. end,o18)
  1125. end))
  1126. o19 = Create("Part",{
  1127. ["Parent"] = o1,
  1128. ["Material"] = Enum.Material.Concrete,
  1129. ["BrickColor"] = BrickColor.new("Really black"),
  1130. ["Position"] = Vector3.new(-23.1666031, 2.50002789, 4835.35156),
  1131. ["Anchored"] = true,
  1132. ["CFrame"] = CFrame.new(-23.1666031, 2.50002789, 4835.35156, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1133. ["FormFactor"] = Enum.FormFactor.Custom,
  1134. ["Size"] = Vector3.new(0.900000095, 4, 35.8999977),
  1135. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  1136. })
  1137. o20 = Create("Part",{
  1138. ["Parent"] = o1,
  1139. ["Material"] = Enum.Material.Brick,
  1140. ["BrickColor"] = BrickColor.new("Institutional white"),
  1141. ["Position"] = Vector3.new(-5.22013378, 0.500029027, 4834.96826),
  1142. ["Anchored"] = true,
  1143. ["CFrame"] = CFrame.new(-5.22013378, 0.500029027, 4834.96826, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1144. ["FormFactor"] = Enum.FormFactor.Custom,
  1145. ["Size"] = Vector3.new(52, 1, 52),
  1146. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1147. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1148. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1149. })
  1150. o21 = Create("Part",{
  1151. ["Parent"] = o1,
  1152. ["Material"] = Enum.Material.Foil,
  1153. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1154. ["Position"] = Vector3.new(-15.3030558, 1.00002897, 4821.104),
  1155. ["Anchored"] = true,
  1156. ["CFrame"] = CFrame.new(-15.3030558, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1157. ["FormFactor"] = Enum.FormFactor.Custom,
  1158. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1159. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1160. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1161. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1162. })
  1163. o22 = Create("Script",{
  1164. ["Parent"] = o21,
  1165. })
  1166. table.insert(cors,coroutine.create(function()
  1167. wait()
  1168. runDummyScript(function()
  1169. local Brick = script.Parent
  1170. while true do
  1171. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1172. wait(0.8)
  1173. end
  1174. end,o22)
  1175. end))
  1176. o23 = Create("Part",{
  1177. ["Parent"] = o1,
  1178. ["Material"] = Enum.Material.Foil,
  1179. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1180. ["Position"] = Vector3.new(4.496943, 1.00002897, 4821.104),
  1181. ["Anchored"] = true,
  1182. ["CFrame"] = CFrame.new(4.496943, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1183. ["FormFactor"] = Enum.FormFactor.Custom,
  1184. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1185. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1186. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1187. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1188. })
  1189. o24 = Create("Script",{
  1190. ["Parent"] = o23,
  1191. })
  1192. table.insert(cors,coroutine.create(function()
  1193. wait()
  1194. runDummyScript(function()
  1195. local Brick = script.Parent
  1196. while true do
  1197. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1198. wait(0.8)
  1199. end
  1200. end,o24)
  1201. end))
  1202. o25 = Create("Part",{
  1203. ["Parent"] = o1,
  1204. ["Material"] = Enum.Material.Foil,
  1205. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1206. ["Position"] = Vector3.new(-0.503057003, 1.00002897, 4821.104),
  1207. ["Anchored"] = true,
  1208. ["CFrame"] = CFrame.new(-0.503057003, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1209. ["FormFactor"] = Enum.FormFactor.Custom,
  1210. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1211. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1212. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1213. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1214. })
  1215. o26 = Create("Script",{
  1216. ["Parent"] = o25,
  1217. })
  1218. table.insert(cors,coroutine.create(function()
  1219. wait()
  1220. runDummyScript(function()
  1221. local Brick = script.Parent
  1222. while true do
  1223. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1224. wait(0.8)
  1225. end
  1226. end,o26)
  1227. end))
  1228. o27 = Create("Part",{
  1229. ["Parent"] = o1,
  1230. ["Material"] = Enum.Material.Foil,
  1231. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1232. ["Position"] = Vector3.new(14.3969421, 1.00002897, 4821.104),
  1233. ["Anchored"] = true,
  1234. ["CFrame"] = CFrame.new(14.3969421, 1.00002897, 4821.104, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1235. ["FormFactor"] = Enum.FormFactor.Custom,
  1236. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1237. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1238. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1239. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1240. })
  1241. o28 = Create("Script",{
  1242. ["Parent"] = o27,
  1243. })
  1244. table.insert(cors,coroutine.create(function()
  1245. wait()
  1246. runDummyScript(function()
  1247. local Brick = script.Parent
  1248. while true do
  1249. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1250. wait(0.8)
  1251. end
  1252. end,o28)
  1253. end))
  1254. o29 = Create("Part",{
  1255. ["Parent"] = o1,
  1256. ["Material"] = Enum.Material.Concrete,
  1257. ["BrickColor"] = BrickColor.new("Really black"),
  1258. ["Position"] = Vector3.new(-5.12959003, 9.50002766, 4860.76807),
  1259. ["Anchored"] = true,
  1260. ["CFrame"] = CFrame.new(-5.12959003, 9.50002766, 4860.76807, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1261. ["FormFactor"] = Enum.FormFactor.Custom,
  1262. ["Size"] = Vector3.new(52, 19, 1),
  1263. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1264. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1265. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  1266. })
  1267. o30 = Create("Part",{
  1268. ["Parent"] = o1,
  1269. ["Material"] = Enum.Material.Marble,
  1270. ["BrickColor"] = BrickColor.new("Bright blue"),
  1271. ["Reflectance"] = 0.10000000149012,
  1272. ["Transparency"] = 0.10000000149012,
  1273. ["Position"] = Vector3.new(-5.4486742, 18.6000271, 4834.76807),
  1274. ["Anchored"] = true,
  1275. ["CFrame"] = CFrame.new(-5.4486742, 18.6000271, 4834.76807, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1276. ["FormFactor"] = Enum.FormFactor.Custom,
  1277. ["Size"] = Vector3.new(51.7999992, 1, 51),
  1278. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1279. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1280. ["Color"] = Color3.new(0.0509804, 0.411765, 0.67451),
  1281. })
  1282. o31 = Create("Part",{
  1283. ["Name"] = "TeleDown",
  1284. ["Parent"] = o1,
  1285. ["Material"] = Enum.Material.Foil,
  1286. ["BrickColor"] = BrickColor.new("Really red"),
  1287. ["Position"] = Vector3.new(-27.238308, 19.4000263, 4857.07715),
  1288. ["Rotation"] = Vector3.new(-0, 30.0000019, -0),
  1289. ["Anchored"] = true,
  1290. ["CFrame"] = CFrame.new(-27.238308, 19.4000263, 4857.07715, 0.866025388, 0, 0.5, 0, 1, 0, -0.5, 0, 0.866025388),
  1291. ["FormFactor"] = Enum.FormFactor.Custom,
  1292. ["Size"] = Vector3.new(4, 1, 4),
  1293. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1294. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1295. ["Color"] = Color3.new(1, 0, 0),
  1296. })
  1297. o32 = Create("Script",{
  1298. ["Parent"] = o31,
  1299. })
  1300. table.insert(cors,coroutine.create(function()
  1301. wait()
  1302. runDummyScript(function()
  1303. local TeleDown = script.Parent
  1304. local TeleUp = script.Parent.Parent.TeleUp
  1305. function tele(hit)
  1306. if hit.Parent:findFirstChild("Humanoid") then
  1307. if hit.Parent:findFirstChild("TeleportBuff") == nil then
  1308. local Human = hit.Parent:findFirstChild("Humanoid")
  1309. if hit.Parent:findFirstChild("Torso") then
  1310. local Torso = hit.Parent:findFirstChild("Torso")
  1311. local M = Instance.new("Model",hit.Parent)
  1312. M.Name = "TeleportBuff"
  1313. Torso.CFrame = CFrame.new(TeleUp.CFrame.X,TeleUp.CFrame.Y + 3,TeleUp.CFrame.Z)
  1314. wait(5)
  1315. if hit.Parent:findFirstChild("TeleportBuff") then
  1316. hit.Parent:findFirstChild("TeleportBuff"):remove()
  1317. end
  1318. end
  1319. end
  1320. end
  1321. end
  1322. TeleDown.Touched:connect(tele)
  1323. end,o32)
  1324. end))
  1325. o33 = Create("Part",{
  1326. ["Parent"] = o1,
  1327. ["Material"] = Enum.Material.Foil,
  1328. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1329. ["Position"] = Vector3.new(-15.3030539, 1.00002897, 4826.00391),
  1330. ["Anchored"] = true,
  1331. ["CFrame"] = CFrame.new(-15.3030539, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1332. ["FormFactor"] = Enum.FormFactor.Custom,
  1333. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1334. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1335. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1336. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1337. })
  1338. o34 = Create("Script",{
  1339. ["Parent"] = o33,
  1340. })
  1341. table.insert(cors,coroutine.create(function()
  1342. wait()
  1343. runDummyScript(function()
  1344. local Brick = script.Parent
  1345. while true do
  1346. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1347. wait(0.8)
  1348. end
  1349. end,o34)
  1350. end))
  1351. o35 = Create("Part",{
  1352. ["Parent"] = o1,
  1353. ["Material"] = Enum.Material.Foil,
  1354. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1355. ["Position"] = Vector3.new(9.49694157, 1.00003195, 4845.60449),
  1356. ["Anchored"] = true,
  1357. ["CFrame"] = CFrame.new(9.49694157, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1358. ["FormFactor"] = Enum.FormFactor.Custom,
  1359. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1360. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1361. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1362. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1363. })
  1364. o36 = Create("Script",{
  1365. ["Parent"] = o35,
  1366. })
  1367. table.insert(cors,coroutine.create(function()
  1368. wait()
  1369. runDummyScript(function()
  1370. local Brick = script.Parent
  1371. while true do
  1372. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1373. wait(0.8)
  1374. end
  1375. end,o36)
  1376. end))
  1377. o37 = Create("Part",{
  1378. ["Parent"] = o1,
  1379. ["Material"] = Enum.Material.Foil,
  1380. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1381. ["Position"] = Vector3.new(-0.503054976, 1.00002897, 4826.00391),
  1382. ["Anchored"] = true,
  1383. ["CFrame"] = CFrame.new(-0.503054976, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1384. ["FormFactor"] = Enum.FormFactor.Custom,
  1385. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1386. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1387. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1388. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1389. })
  1390. o38 = Create("Script",{
  1391. ["Parent"] = o37,
  1392. })
  1393. table.insert(cors,coroutine.create(function()
  1394. wait()
  1395. runDummyScript(function()
  1396. local Brick = script.Parent
  1397. while true do
  1398. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1399. wait(0.8)
  1400. end
  1401. end,o38)
  1402. end))
  1403. o39 = Create("Part",{
  1404. ["Parent"] = o1,
  1405. ["Material"] = Enum.Material.Foil,
  1406. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1407. ["Position"] = Vector3.new(14.3969421, 1.00002897, 4826.00391),
  1408. ["Anchored"] = true,
  1409. ["CFrame"] = CFrame.new(14.3969421, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1410. ["FormFactor"] = Enum.FormFactor.Custom,
  1411. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1412. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1413. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1414. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1415. })
  1416. o40 = Create("Script",{
  1417. ["Parent"] = o39,
  1418. })
  1419. table.insert(cors,coroutine.create(function()
  1420. wait()
  1421. runDummyScript(function()
  1422. local Brick = script.Parent
  1423. while true do
  1424. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1425. wait(0.8)
  1426. end
  1427. end,o40)
  1428. end))
  1429. o41 = Create("Part",{
  1430. ["Parent"] = o1,
  1431. ["Material"] = Enum.Material.Foil,
  1432. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1433. ["Position"] = Vector3.new(4.49694204, 1.00002897, 4826.00391),
  1434. ["Anchored"] = true,
  1435. ["CFrame"] = CFrame.new(4.49694204, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1436. ["FormFactor"] = Enum.FormFactor.Custom,
  1437. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1438. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1439. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1440. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1441. })
  1442. o42 = Create("Script",{
  1443. ["Parent"] = o41,
  1444. })
  1445. table.insert(cors,coroutine.create(function()
  1446. wait()
  1447. runDummyScript(function()
  1448. local Brick = script.Parent
  1449. while true do
  1450. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1451. wait(0.8)
  1452. end
  1453. end,o42)
  1454. end))
  1455. o43 = Create("Part",{
  1456. ["Parent"] = o1,
  1457. ["Material"] = Enum.Material.Foil,
  1458. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1459. ["Position"] = Vector3.new(4.49694204, 1.00003195, 4845.60449),
  1460. ["Anchored"] = true,
  1461. ["CFrame"] = CFrame.new(4.49694204, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1462. ["FormFactor"] = Enum.FormFactor.Custom,
  1463. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1464. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1465. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1466. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1467. })
  1468. o44 = Create("Script",{
  1469. ["Parent"] = o43,
  1470. })
  1471. table.insert(cors,coroutine.create(function()
  1472. wait()
  1473. runDummyScript(function()
  1474. local Brick = script.Parent
  1475. while true do
  1476. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1477. wait(0.8)
  1478. end
  1479. end,o44)
  1480. end))
  1481. o45 = Create("Part",{
  1482. ["Parent"] = o1,
  1483. ["Material"] = Enum.Material.Foil,
  1484. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1485. ["Position"] = Vector3.new(-0.503054976, 1.00003195, 4845.60449),
  1486. ["Anchored"] = true,
  1487. ["CFrame"] = CFrame.new(-0.503054976, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1488. ["FormFactor"] = Enum.FormFactor.Custom,
  1489. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1490. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1491. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1492. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1493. })
  1494. o46 = Create("Script",{
  1495. ["Parent"] = o45,
  1496. })
  1497. table.insert(cors,coroutine.create(function()
  1498. wait()
  1499. runDummyScript(function()
  1500. local Brick = script.Parent
  1501. while true do
  1502. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1503. wait(0.8)
  1504. end
  1505. end,o46)
  1506. end))
  1507. o47 = Create("Part",{
  1508. ["Parent"] = o1,
  1509. ["Material"] = Enum.Material.Foil,
  1510. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1511. ["Position"] = Vector3.new(-15.3030539, 1.00003195, 4845.60449),
  1512. ["Anchored"] = true,
  1513. ["CFrame"] = CFrame.new(-15.3030539, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1514. ["FormFactor"] = Enum.FormFactor.Custom,
  1515. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1516. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1517. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1518. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1519. })
  1520. o48 = Create("Script",{
  1521. ["Parent"] = o47,
  1522. })
  1523. table.insert(cors,coroutine.create(function()
  1524. wait()
  1525. runDummyScript(function()
  1526. local Brick = script.Parent
  1527. while true do
  1528. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1529. wait(0.8)
  1530. end
  1531. end,o48)
  1532. end))
  1533. o49 = Create("Part",{
  1534. ["Parent"] = o1,
  1535. ["Material"] = Enum.Material.Foil,
  1536. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1537. ["Position"] = Vector3.new(-5.5030551, 1.00002897, 4826.00391),
  1538. ["Anchored"] = true,
  1539. ["CFrame"] = CFrame.new(-5.5030551, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1540. ["FormFactor"] = Enum.FormFactor.Custom,
  1541. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1542. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1543. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1544. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1545. })
  1546. o50 = Create("Script",{
  1547. ["Parent"] = o49,
  1548. })
  1549. table.insert(cors,coroutine.create(function()
  1550. wait()
  1551. runDummyScript(function()
  1552. local Brick = script.Parent
  1553. while true do
  1554. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1555. wait(0.8)
  1556. end
  1557. end,o50)
  1558. end))
  1559. o51 = Create("Part",{
  1560. ["Parent"] = o1,
  1561. ["Material"] = Enum.Material.Foil,
  1562. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1563. ["Position"] = Vector3.new(-20.2030563, 1.00003195, 4845.60449),
  1564. ["Anchored"] = true,
  1565. ["CFrame"] = CFrame.new(-20.2030563, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1566. ["FormFactor"] = Enum.FormFactor.Custom,
  1567. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1568. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1569. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1570. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1571. })
  1572. o52 = Create("Script",{
  1573. ["Parent"] = o51,
  1574. })
  1575. table.insert(cors,coroutine.create(function()
  1576. wait()
  1577. runDummyScript(function()
  1578. local Brick = script.Parent
  1579. while true do
  1580. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1581. wait(0.8)
  1582. end
  1583. end,o52)
  1584. end))
  1585. o53 = Create("Part",{
  1586. ["Parent"] = o1,
  1587. ["Material"] = Enum.Material.Foil,
  1588. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1589. ["Position"] = Vector3.new(-15.3030558, 1.00003195, 4840.7041),
  1590. ["Anchored"] = true,
  1591. ["CFrame"] = CFrame.new(-15.3030558, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1592. ["FormFactor"] = Enum.FormFactor.Custom,
  1593. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1594. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1595. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1596. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1597. })
  1598. o54 = Create("Script",{
  1599. ["Parent"] = o53,
  1600. })
  1601. table.insert(cors,coroutine.create(function()
  1602. wait()
  1603. runDummyScript(function()
  1604. local Brick = script.Parent
  1605. while true do
  1606. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1607. wait(0.8)
  1608. end
  1609. end,o54)
  1610. end))
  1611. o55 = Create("Part",{
  1612. ["Parent"] = o1,
  1613. ["Material"] = Enum.Material.Foil,
  1614. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1615. ["Position"] = Vector3.new(18.5969391, 1.00004005, 4850.50439),
  1616. ["Anchored"] = true,
  1617. ["CFrame"] = CFrame.new(18.5969391, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1618. ["FormFactor"] = Enum.FormFactor.Custom,
  1619. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  1620. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1621. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1622. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1623. })
  1624. o56 = Create("Script",{
  1625. ["Parent"] = o55,
  1626. })
  1627. table.insert(cors,coroutine.create(function()
  1628. wait()
  1629. runDummyScript(function()
  1630. local Brick = script.Parent
  1631. while true do
  1632. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1633. wait(0.8)
  1634. end
  1635. end,o56)
  1636. end))
  1637. o57 = Create("Part",{
  1638. ["Parent"] = o1,
  1639. ["Material"] = Enum.Material.Foil,
  1640. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1641. ["Position"] = Vector3.new(-20.2030563, 1.00002897, 4826.00391),
  1642. ["Anchored"] = true,
  1643. ["CFrame"] = CFrame.new(-20.2030563, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1644. ["FormFactor"] = Enum.FormFactor.Custom,
  1645. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1646. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1647. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1648. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1649. })
  1650. o58 = Create("Script",{
  1651. ["Parent"] = o57,
  1652. })
  1653. table.insert(cors,coroutine.create(function()
  1654. wait()
  1655. runDummyScript(function()
  1656. local Brick = script.Parent
  1657. while true do
  1658. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1659. wait(0.8)
  1660. end
  1661. end,o58)
  1662. end))
  1663. o59 = Create("Part",{
  1664. ["Parent"] = o1,
  1665. ["Material"] = Enum.Material.Foil,
  1666. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1667. ["Position"] = Vector3.new(-10.4030523, 1.00002897, 4826.00391),
  1668. ["Anchored"] = true,
  1669. ["CFrame"] = CFrame.new(-10.4030523, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1670. ["FormFactor"] = Enum.FormFactor.Custom,
  1671. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1672. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1673. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1674. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1675. })
  1676. o60 = Create("Script",{
  1677. ["Parent"] = o59,
  1678. })
  1679. table.insert(cors,coroutine.create(function()
  1680. wait()
  1681. runDummyScript(function()
  1682. local Brick = script.Parent
  1683. while true do
  1684. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1685. wait(0.8)
  1686. end
  1687. end,o60)
  1688. end))
  1689. o61 = Create("Part",{
  1690. ["Parent"] = o1,
  1691. ["Material"] = Enum.Material.Foil,
  1692. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1693. ["Position"] = Vector3.new(-5.5030551, 1.00003195, 4845.60449),
  1694. ["Anchored"] = true,
  1695. ["CFrame"] = CFrame.new(-5.5030551, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1696. ["FormFactor"] = Enum.FormFactor.Custom,
  1697. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1698. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1699. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1700. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1701. })
  1702. o62 = Create("Script",{
  1703. ["Parent"] = o61,
  1704. })
  1705. table.insert(cors,coroutine.create(function()
  1706. wait()
  1707. runDummyScript(function()
  1708. local Brick = script.Parent
  1709. while true do
  1710. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1711. wait(0.8)
  1712. end
  1713. end,o62)
  1714. end))
  1715. o63 = Create("Part",{
  1716. ["Parent"] = o1,
  1717. ["Material"] = Enum.Material.Foil,
  1718. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1719. ["Position"] = Vector3.new(18.5969391, 1.00003195, 4845.60449),
  1720. ["Anchored"] = true,
  1721. ["CFrame"] = CFrame.new(18.5969391, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1722. ["FormFactor"] = Enum.FormFactor.Custom,
  1723. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  1724. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1725. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1726. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1727. })
  1728. o64 = Create("Script",{
  1729. ["Parent"] = o63,
  1730. })
  1731. table.insert(cors,coroutine.create(function()
  1732. wait()
  1733. runDummyScript(function()
  1734. local Brick = script.Parent
  1735. while true do
  1736. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1737. wait(0.8)
  1738. end
  1739. end,o64)
  1740. end))
  1741. o65 = Create("Part",{
  1742. ["Parent"] = o1,
  1743. ["Material"] = Enum.Material.Foil,
  1744. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1745. ["Position"] = Vector3.new(-10.4030523, 1.00003195, 4845.60449),
  1746. ["Anchored"] = true,
  1747. ["CFrame"] = CFrame.new(-10.4030523, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1748. ["FormFactor"] = Enum.FormFactor.Custom,
  1749. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1750. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1751. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1752. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1753. })
  1754. o66 = Create("Script",{
  1755. ["Parent"] = o65,
  1756. })
  1757. table.insert(cors,coroutine.create(function()
  1758. wait()
  1759. runDummyScript(function()
  1760. local Brick = script.Parent
  1761. while true do
  1762. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1763. wait(0.8)
  1764. end
  1765. end,o66)
  1766. end))
  1767. o67 = Create("Part",{
  1768. ["Parent"] = o1,
  1769. ["Material"] = Enum.Material.Foil,
  1770. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1771. ["Position"] = Vector3.new(-20.2030563, 1.00003195, 4840.7041),
  1772. ["Anchored"] = true,
  1773. ["CFrame"] = CFrame.new(-20.2030563, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1774. ["FormFactor"] = Enum.FormFactor.Custom,
  1775. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1776. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1777. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1778. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1779. })
  1780. o68 = Create("Script",{
  1781. ["Parent"] = o67,
  1782. })
  1783. table.insert(cors,coroutine.create(function()
  1784. wait()
  1785. runDummyScript(function()
  1786. local Brick = script.Parent
  1787. while true do
  1788. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1789. wait(0.8)
  1790. end
  1791. end,o68)
  1792. end))
  1793. o69 = Create("Part",{
  1794. ["Parent"] = o1,
  1795. ["Material"] = Enum.Material.Foil,
  1796. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1797. ["Position"] = Vector3.new(14.3969421, 1.00003195, 4845.60449),
  1798. ["Anchored"] = true,
  1799. ["CFrame"] = CFrame.new(14.3969421, 1.00003195, 4845.60449, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1800. ["FormFactor"] = Enum.FormFactor.Custom,
  1801. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1802. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1803. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1804. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1805. })
  1806. o70 = Create("Script",{
  1807. ["Parent"] = o69,
  1808. })
  1809. table.insert(cors,coroutine.create(function()
  1810. wait()
  1811. runDummyScript(function()
  1812. local Brick = script.Parent
  1813. while true do
  1814. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1815. wait(0.8)
  1816. end
  1817. end,o70)
  1818. end))
  1819. o71 = Create("Part",{
  1820. ["Parent"] = o1,
  1821. ["Material"] = Enum.Material.Foil,
  1822. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1823. ["Position"] = Vector3.new(18.5969391, 1.00002897, 4826.00391),
  1824. ["Anchored"] = true,
  1825. ["CFrame"] = CFrame.new(18.5969391, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1826. ["FormFactor"] = Enum.FormFactor.Custom,
  1827. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  1828. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1829. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1830. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1831. })
  1832. o72 = Create("Script",{
  1833. ["Parent"] = o71,
  1834. })
  1835. table.insert(cors,coroutine.create(function()
  1836. wait()
  1837. runDummyScript(function()
  1838. local Brick = script.Parent
  1839. while true do
  1840. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1841. wait(0.8)
  1842. end
  1843. end,o72)
  1844. end))
  1845. o73 = Create("Part",{
  1846. ["Parent"] = o1,
  1847. ["Material"] = Enum.Material.Foil,
  1848. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1849. ["Position"] = Vector3.new(9.49694157, 1.00002897, 4826.00391),
  1850. ["Anchored"] = true,
  1851. ["CFrame"] = CFrame.new(9.49694157, 1.00002897, 4826.00391, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1852. ["FormFactor"] = Enum.FormFactor.Custom,
  1853. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1854. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1855. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1856. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1857. })
  1858. o74 = Create("Script",{
  1859. ["Parent"] = o73,
  1860. })
  1861. table.insert(cors,coroutine.create(function()
  1862. wait()
  1863. runDummyScript(function()
  1864. local Brick = script.Parent
  1865. while true do
  1866. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1867. wait(0.8)
  1868. end
  1869. end,o74)
  1870. end))
  1871. o75 = Create("Part",{
  1872. ["Parent"] = o1,
  1873. ["Material"] = Enum.Material.Foil,
  1874. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1875. ["Position"] = Vector3.new(-10.4030561, 1.00003195, 4840.7041),
  1876. ["Anchored"] = true,
  1877. ["CFrame"] = CFrame.new(-10.4030561, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1878. ["FormFactor"] = Enum.FormFactor.Custom,
  1879. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1880. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1881. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1882. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1883. })
  1884. o76 = Create("Script",{
  1885. ["Parent"] = o75,
  1886. })
  1887. table.insert(cors,coroutine.create(function()
  1888. wait()
  1889. runDummyScript(function()
  1890. local Brick = script.Parent
  1891. while true do
  1892. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1893. wait(0.8)
  1894. end
  1895. end,o76)
  1896. end))
  1897. o77 = Create("Part",{
  1898. ["Parent"] = o1,
  1899. ["Material"] = Enum.Material.Foil,
  1900. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1901. ["Position"] = Vector3.new(-0.503057003, 1.00003195, 4840.7041),
  1902. ["Anchored"] = true,
  1903. ["CFrame"] = CFrame.new(-0.503057003, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1904. ["FormFactor"] = Enum.FormFactor.Custom,
  1905. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1906. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1907. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1908. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1909. })
  1910. o78 = Create("Script",{
  1911. ["Parent"] = o77,
  1912. })
  1913. table.insert(cors,coroutine.create(function()
  1914. wait()
  1915. runDummyScript(function()
  1916. local Brick = script.Parent
  1917. while true do
  1918. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1919. wait(0.8)
  1920. end
  1921. end,o78)
  1922. end))
  1923. o79 = Create("Part",{
  1924. ["Parent"] = o1,
  1925. ["Material"] = Enum.Material.Foil,
  1926. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1927. ["Position"] = Vector3.new(4.49694204, 1.00003195, 4840.7041),
  1928. ["Anchored"] = true,
  1929. ["CFrame"] = CFrame.new(4.49694204, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1930. ["FormFactor"] = Enum.FormFactor.Custom,
  1931. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1932. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1933. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1934. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1935. })
  1936. o80 = Create("Script",{
  1937. ["Parent"] = o79,
  1938. })
  1939. table.insert(cors,coroutine.create(function()
  1940. wait()
  1941. runDummyScript(function()
  1942. local Brick = script.Parent
  1943. while true do
  1944. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1945. wait(0.8)
  1946. end
  1947. end,o80)
  1948. end))
  1949. o81 = Create("Part",{
  1950. ["Parent"] = o1,
  1951. ["Material"] = Enum.Material.Foil,
  1952. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1953. ["Position"] = Vector3.new(-5.50305605, 1.00003195, 4840.7041),
  1954. ["Anchored"] = true,
  1955. ["CFrame"] = CFrame.new(-5.50305605, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1956. ["FormFactor"] = Enum.FormFactor.Custom,
  1957. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1958. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1959. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1960. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1961. })
  1962. o82 = Create("Script",{
  1963. ["Parent"] = o81,
  1964. })
  1965. table.insert(cors,coroutine.create(function()
  1966. wait()
  1967. runDummyScript(function()
  1968. local Brick = script.Parent
  1969. while true do
  1970. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1971. wait(0.8)
  1972. end
  1973. end,o82)
  1974. end))
  1975. o83 = Create("Part",{
  1976. ["Parent"] = o1,
  1977. ["Material"] = Enum.Material.Foil,
  1978. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  1979. ["Position"] = Vector3.new(14.3969421, 1.00003195, 4840.7041),
  1980. ["Anchored"] = true,
  1981. ["CFrame"] = CFrame.new(14.3969421, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1982. ["FormFactor"] = Enum.FormFactor.Custom,
  1983. ["Size"] = Vector3.new(5, 1, 4.9000001),
  1984. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1985. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1986. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  1987. })
  1988. o84 = Create("Script",{
  1989. ["Parent"] = o83,
  1990. })
  1991. table.insert(cors,coroutine.create(function()
  1992. wait()
  1993. runDummyScript(function()
  1994. local Brick = script.Parent
  1995. while true do
  1996. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  1997. wait(0.8)
  1998. end
  1999. end,o84)
  2000. end))
  2001. o85 = Create("Part",{
  2002. ["Parent"] = o1,
  2003. ["Material"] = Enum.Material.Foil,
  2004. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2005. ["Position"] = Vector3.new(9.49694157, 1.00003195, 4840.7041),
  2006. ["Anchored"] = true,
  2007. ["CFrame"] = CFrame.new(9.49694157, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2008. ["FormFactor"] = Enum.FormFactor.Custom,
  2009. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2010. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2011. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2012. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2013. })
  2014. o86 = Create("Script",{
  2015. ["Parent"] = o85,
  2016. })
  2017. table.insert(cors,coroutine.create(function()
  2018. wait()
  2019. runDummyScript(function()
  2020. local Brick = script.Parent
  2021. while true do
  2022. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2023. wait(0.8)
  2024. end
  2025. end,o86)
  2026. end))
  2027. o87 = Create("Part",{
  2028. ["Parent"] = o1,
  2029. ["Material"] = Enum.Material.Foil,
  2030. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2031. ["Position"] = Vector3.new(18.5969391, 1.00003195, 4840.7041),
  2032. ["Anchored"] = true,
  2033. ["CFrame"] = CFrame.new(18.5969391, 1.00003195, 4840.7041, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2034. ["FormFactor"] = Enum.FormFactor.Custom,
  2035. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  2036. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2037. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2038. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2039. })
  2040. o88 = Create("Script",{
  2041. ["Parent"] = o87,
  2042. })
  2043. table.insert(cors,coroutine.create(function()
  2044. wait()
  2045. runDummyScript(function()
  2046. local Brick = script.Parent
  2047. while true do
  2048. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2049. wait(0.8)
  2050. end
  2051. end,o88)
  2052. end))
  2053. o89 = Create("Part",{
  2054. ["Parent"] = o1,
  2055. ["Material"] = Enum.Material.Foil,
  2056. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2057. ["Position"] = Vector3.new(-20.2030563, 1.00004399, 4855.4043),
  2058. ["Anchored"] = true,
  2059. ["CFrame"] = CFrame.new(-20.2030563, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2060. ["FormFactor"] = Enum.FormFactor.Custom,
  2061. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2062. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2063. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2064. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2065. })
  2066. o90 = Create("Script",{
  2067. ["Parent"] = o89,
  2068. })
  2069. table.insert(cors,coroutine.create(function()
  2070. wait()
  2071. runDummyScript(function()
  2072. local Brick = script.Parent
  2073. while true do
  2074. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2075. wait(0.8)
  2076. end
  2077. end,o90)
  2078. end))
  2079. o91 = Create("Part",{
  2080. ["Parent"] = o1,
  2081. ["Material"] = Enum.Material.Foil,
  2082. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2083. ["Position"] = Vector3.new(-15.3030539, 1.00004399, 4855.4043),
  2084. ["Anchored"] = true,
  2085. ["CFrame"] = CFrame.new(-15.3030539, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2086. ["FormFactor"] = Enum.FormFactor.Custom,
  2087. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2088. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2089. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2090. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2091. })
  2092. o92 = Create("Script",{
  2093. ["Parent"] = o91,
  2094. })
  2095. table.insert(cors,coroutine.create(function()
  2096. wait()
  2097. runDummyScript(function()
  2098. local Brick = script.Parent
  2099. while true do
  2100. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2101. wait(0.8)
  2102. end
  2103. end,o92)
  2104. end))
  2105. o93 = Create("Part",{
  2106. ["Parent"] = o1,
  2107. ["Material"] = Enum.Material.Foil,
  2108. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2109. ["Position"] = Vector3.new(-10.4030523, 1.00004399, 4855.4043),
  2110. ["Anchored"] = true,
  2111. ["CFrame"] = CFrame.new(-10.4030523, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2112. ["FormFactor"] = Enum.FormFactor.Custom,
  2113. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2114. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2115. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2116. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2117. })
  2118. o94 = Create("Script",{
  2119. ["Parent"] = o93,
  2120. })
  2121. table.insert(cors,coroutine.create(function()
  2122. wait()
  2123. runDummyScript(function()
  2124. local Brick = script.Parent
  2125. while true do
  2126. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2127. wait(0.8)
  2128. end
  2129. end,o94)
  2130. end))
  2131. o95 = Create("Part",{
  2132. ["Parent"] = o1,
  2133. ["Material"] = Enum.Material.Foil,
  2134. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2135. ["Position"] = Vector3.new(-5.5030551, 1.00004005, 4850.50439),
  2136. ["Anchored"] = true,
  2137. ["CFrame"] = CFrame.new(-5.5030551, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2138. ["FormFactor"] = Enum.FormFactor.Custom,
  2139. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2140. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2141. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2142. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2143. })
  2144. o96 = Create("Script",{
  2145. ["Parent"] = o95,
  2146. })
  2147. table.insert(cors,coroutine.create(function()
  2148. wait()
  2149. runDummyScript(function()
  2150. local Brick = script.Parent
  2151. while true do
  2152. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2153. wait(0.8)
  2154. end
  2155. end,o96)
  2156. end))
  2157. o97 = Create("Part",{
  2158. ["Parent"] = o1,
  2159. ["Material"] = Enum.Material.Foil,
  2160. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2161. ["Position"] = Vector3.new(18.5969391, 1.00004399, 4855.4043),
  2162. ["Anchored"] = true,
  2163. ["CFrame"] = CFrame.new(18.5969391, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2164. ["FormFactor"] = Enum.FormFactor.Custom,
  2165. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  2166. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2167. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2168. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2169. })
  2170. o98 = Create("Script",{
  2171. ["Parent"] = o97,
  2172. })
  2173. table.insert(cors,coroutine.create(function()
  2174. wait()
  2175. runDummyScript(function()
  2176. local Brick = script.Parent
  2177. while true do
  2178. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2179. wait(0.8)
  2180. end
  2181. end,o98)
  2182. end))
  2183. o99 = Create("Part",{
  2184. ["Parent"] = o1,
  2185. ["Material"] = Enum.Material.Foil,
  2186. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2187. ["Position"] = Vector3.new(9.49694157, 1.00004399, 4855.4043),
  2188. ["Anchored"] = true,
  2189. ["CFrame"] = CFrame.new(9.49694157, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2190. ["FormFactor"] = Enum.FormFactor.Custom,
  2191. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2192. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2193. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2194. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2195. })
  2196. o100 = Create("Script",{
  2197. ["Parent"] = o99,
  2198. })
  2199. table.insert(cors,coroutine.create(function()
  2200. wait()
  2201. runDummyScript(function()
  2202. local Brick = script.Parent
  2203. while true do
  2204. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2205. wait(0.8)
  2206. end
  2207. end,o100)
  2208. end))
  2209. o101 = Create("Part",{
  2210. ["Parent"] = o1,
  2211. ["Material"] = Enum.Material.Foil,
  2212. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2213. ["Position"] = Vector3.new(-5.5030551, 1.00004399, 4855.4043),
  2214. ["Anchored"] = true,
  2215. ["CFrame"] = CFrame.new(-5.5030551, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2216. ["FormFactor"] = Enum.FormFactor.Custom,
  2217. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2218. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2219. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2220. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2221. })
  2222. o102 = Create("Script",{
  2223. ["Parent"] = o101,
  2224. })
  2225. table.insert(cors,coroutine.create(function()
  2226. wait()
  2227. runDummyScript(function()
  2228. local Brick = script.Parent
  2229. while true do
  2230. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2231. wait(0.8)
  2232. end
  2233. end,o102)
  2234. end))
  2235. o103 = Create("Part",{
  2236. ["Parent"] = o1,
  2237. ["Material"] = Enum.Material.Foil,
  2238. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2239. ["Position"] = Vector3.new(-0.503054976, 1.00004399, 4855.4043),
  2240. ["Anchored"] = true,
  2241. ["CFrame"] = CFrame.new(-0.503054976, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2242. ["FormFactor"] = Enum.FormFactor.Custom,
  2243. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2244. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2245. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2246. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2247. })
  2248. o104 = Create("Script",{
  2249. ["Parent"] = o103,
  2250. })
  2251. table.insert(cors,coroutine.create(function()
  2252. wait()
  2253. runDummyScript(function()
  2254. local Brick = script.Parent
  2255. while true do
  2256. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2257. wait(0.8)
  2258. end
  2259. end,o104)
  2260. end))
  2261. o105 = Create("Part",{
  2262. ["Parent"] = o1,
  2263. ["Material"] = Enum.Material.Foil,
  2264. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2265. ["Position"] = Vector3.new(14.3969421, 1.00004399, 4855.4043),
  2266. ["Anchored"] = true,
  2267. ["CFrame"] = CFrame.new(14.3969421, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2268. ["FormFactor"] = Enum.FormFactor.Custom,
  2269. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2270. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2271. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2272. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2273. })
  2274. o106 = Create("Script",{
  2275. ["Parent"] = o105,
  2276. })
  2277. table.insert(cors,coroutine.create(function()
  2278. wait()
  2279. runDummyScript(function()
  2280. local Brick = script.Parent
  2281. while true do
  2282. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2283. wait(0.8)
  2284. end
  2285. end,o106)
  2286. end))
  2287. o107 = Create("Part",{
  2288. ["Parent"] = o1,
  2289. ["Material"] = Enum.Material.Foil,
  2290. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2291. ["Position"] = Vector3.new(-15.3030539, 1.00004005, 4850.50439),
  2292. ["Anchored"] = true,
  2293. ["CFrame"] = CFrame.new(-15.3030539, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2294. ["FormFactor"] = Enum.FormFactor.Custom,
  2295. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2296. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2297. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2298. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2299. })
  2300. o108 = Create("Script",{
  2301. ["Parent"] = o107,
  2302. })
  2303. table.insert(cors,coroutine.create(function()
  2304. wait()
  2305. runDummyScript(function()
  2306. local Brick = script.Parent
  2307. while true do
  2308. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2309. wait(0.8)
  2310. end
  2311. end,o108)
  2312. end))
  2313. o109 = Create("Part",{
  2314. ["Parent"] = o1,
  2315. ["Material"] = Enum.Material.Foil,
  2316. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2317. ["Position"] = Vector3.new(4.49694204, 1.00004399, 4855.4043),
  2318. ["Anchored"] = true,
  2319. ["CFrame"] = CFrame.new(4.49694204, 1.00004399, 4855.4043, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2320. ["FormFactor"] = Enum.FormFactor.Custom,
  2321. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2322. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2323. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2324. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2325. })
  2326. o110 = Create("Script",{
  2327. ["Parent"] = o109,
  2328. })
  2329. table.insert(cors,coroutine.create(function()
  2330. wait()
  2331. runDummyScript(function()
  2332. local Brick = script.Parent
  2333. while true do
  2334. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2335. wait(0.8)
  2336. end
  2337. end,o110)
  2338. end))
  2339. o111 = Create("Part",{
  2340. ["Parent"] = o1,
  2341. ["Material"] = Enum.Material.Foil,
  2342. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2343. ["Position"] = Vector3.new(14.3969421, 1.00004005, 4850.50439),
  2344. ["Anchored"] = true,
  2345. ["CFrame"] = CFrame.new(14.3969421, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2346. ["FormFactor"] = Enum.FormFactor.Custom,
  2347. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2348. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2349. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2350. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2351. })
  2352. o112 = Create("Script",{
  2353. ["Parent"] = o111,
  2354. })
  2355. table.insert(cors,coroutine.create(function()
  2356. wait()
  2357. runDummyScript(function()
  2358. local Brick = script.Parent
  2359. while true do
  2360. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2361. wait(0.8)
  2362. end
  2363. end,o112)
  2364. end))
  2365. o113 = Create("Part",{
  2366. ["Parent"] = o1,
  2367. ["Material"] = Enum.Material.Foil,
  2368. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2369. ["Position"] = Vector3.new(-20.2030563, 1.00004005, 4850.50439),
  2370. ["Anchored"] = true,
  2371. ["CFrame"] = CFrame.new(-20.2030563, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2372. ["FormFactor"] = Enum.FormFactor.Custom,
  2373. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2374. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2375. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2376. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2377. })
  2378. o114 = Create("Script",{
  2379. ["Parent"] = o113,
  2380. })
  2381. table.insert(cors,coroutine.create(function()
  2382. wait()
  2383. runDummyScript(function()
  2384. local Brick = script.Parent
  2385. while true do
  2386. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2387. wait(0.8)
  2388. end
  2389. end,o114)
  2390. end))
  2391. o115 = Create("Part",{
  2392. ["Parent"] = o1,
  2393. ["Material"] = Enum.Material.Foil,
  2394. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2395. ["Position"] = Vector3.new(-0.503054976, 1.00004005, 4850.50439),
  2396. ["Anchored"] = true,
  2397. ["CFrame"] = CFrame.new(-0.503054976, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2398. ["FormFactor"] = Enum.FormFactor.Custom,
  2399. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2400. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2401. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2402. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2403. })
  2404. o116 = Create("Script",{
  2405. ["Parent"] = o115,
  2406. })
  2407. table.insert(cors,coroutine.create(function()
  2408. wait()
  2409. runDummyScript(function()
  2410. local Brick = script.Parent
  2411. while true do
  2412. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2413. wait(0.8)
  2414. end
  2415. end,o116)
  2416. end))
  2417. o117 = Create("Part",{
  2418. ["Parent"] = o1,
  2419. ["Material"] = Enum.Material.Foil,
  2420. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2421. ["Position"] = Vector3.new(4.49694204, 1.00004005, 4850.50439),
  2422. ["Anchored"] = true,
  2423. ["CFrame"] = CFrame.new(4.49694204, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2424. ["FormFactor"] = Enum.FormFactor.Custom,
  2425. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2426. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2427. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2428. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2429. })
  2430. o118 = Create("Script",{
  2431. ["Parent"] = o117,
  2432. })
  2433. table.insert(cors,coroutine.create(function()
  2434. wait()
  2435. runDummyScript(function()
  2436. local Brick = script.Parent
  2437. while true do
  2438. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2439. wait(0.8)
  2440. end
  2441. end,o118)
  2442. end))
  2443. o119 = Create("Part",{
  2444. ["Parent"] = o1,
  2445. ["Material"] = Enum.Material.Foil,
  2446. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2447. ["Position"] = Vector3.new(-10.4030523, 1.00004005, 4850.50439),
  2448. ["Anchored"] = true,
  2449. ["CFrame"] = CFrame.new(-10.4030523, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2450. ["FormFactor"] = Enum.FormFactor.Custom,
  2451. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2452. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2453. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2454. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2455. })
  2456. o120 = Create("Script",{
  2457. ["Parent"] = o119,
  2458. })
  2459. table.insert(cors,coroutine.create(function()
  2460. wait()
  2461. runDummyScript(function()
  2462. local Brick = script.Parent
  2463. while true do
  2464. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2465. wait(0.8)
  2466. end
  2467. end,o120)
  2468. end))
  2469. o121 = Create("Part",{
  2470. ["Parent"] = o1,
  2471. ["Material"] = Enum.Material.Foil,
  2472. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2473. ["Position"] = Vector3.new(9.49694157, 1.00004005, 4850.50439),
  2474. ["Anchored"] = true,
  2475. ["CFrame"] = CFrame.new(9.49694157, 1.00004005, 4850.50439, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2476. ["FormFactor"] = Enum.FormFactor.Custom,
  2477. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2478. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2479. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2480. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2481. })
  2482. o122 = Create("Script",{
  2483. ["Parent"] = o121,
  2484. })
  2485. table.insert(cors,coroutine.create(function()
  2486. wait()
  2487. runDummyScript(function()
  2488. local Brick = script.Parent
  2489. while true do
  2490. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2491. wait(0.8)
  2492. end
  2493. end,o122)
  2494. end))
  2495. o123 = Create("Part",{
  2496. ["Parent"] = o1,
  2497. ["Material"] = Enum.Material.Foil,
  2498. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2499. ["Position"] = Vector3.new(-15.3030539, 1.00003803, 4835.8042),
  2500. ["Anchored"] = true,
  2501. ["CFrame"] = CFrame.new(-15.3030539, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2502. ["FormFactor"] = Enum.FormFactor.Custom,
  2503. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2504. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2505. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2506. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2507. })
  2508. o124 = Create("Script",{
  2509. ["Parent"] = o123,
  2510. })
  2511. table.insert(cors,coroutine.create(function()
  2512. wait()
  2513. runDummyScript(function()
  2514. local Brick = script.Parent
  2515. while true do
  2516. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2517. wait(0.8)
  2518. end
  2519. end,o124)
  2520. end))
  2521. o125 = Create("Part",{
  2522. ["Parent"] = o1,
  2523. ["Material"] = Enum.Material.Foil,
  2524. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2525. ["Position"] = Vector3.new(-0.503054976, 1.00003803, 4835.8042),
  2526. ["Anchored"] = true,
  2527. ["CFrame"] = CFrame.new(-0.503054976, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2528. ["FormFactor"] = Enum.FormFactor.Custom,
  2529. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2530. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2531. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2532. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2533. })
  2534. o126 = Create("Script",{
  2535. ["Parent"] = o125,
  2536. })
  2537. table.insert(cors,coroutine.create(function()
  2538. wait()
  2539. runDummyScript(function()
  2540. local Brick = script.Parent
  2541. while true do
  2542. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2543. wait(0.8)
  2544. end
  2545. end,o126)
  2546. end))
  2547. o127 = Create("Part",{
  2548. ["Parent"] = o1,
  2549. ["Material"] = Enum.Material.Foil,
  2550. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2551. ["Position"] = Vector3.new(14.3969421, 1.00003803, 4835.8042),
  2552. ["Anchored"] = true,
  2553. ["CFrame"] = CFrame.new(14.3969421, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2554. ["FormFactor"] = Enum.FormFactor.Custom,
  2555. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2556. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2557. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2558. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2559. })
  2560. o128 = Create("Script",{
  2561. ["Parent"] = o127,
  2562. })
  2563. table.insert(cors,coroutine.create(function()
  2564. wait()
  2565. runDummyScript(function()
  2566. local Brick = script.Parent
  2567. while true do
  2568. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2569. wait(0.8)
  2570. end
  2571. end,o128)
  2572. end))
  2573. o129 = Create("Part",{
  2574. ["Parent"] = o1,
  2575. ["Material"] = Enum.Material.Foil,
  2576. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2577. ["Position"] = Vector3.new(9.49694157, 1.00003803, 4835.8042),
  2578. ["Anchored"] = true,
  2579. ["CFrame"] = CFrame.new(9.49694157, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2580. ["FormFactor"] = Enum.FormFactor.Custom,
  2581. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2582. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2583. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2584. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2585. })
  2586. o130 = Create("Script",{
  2587. ["Parent"] = o129,
  2588. })
  2589. table.insert(cors,coroutine.create(function()
  2590. wait()
  2591. runDummyScript(function()
  2592. local Brick = script.Parent
  2593. while true do
  2594. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2595. wait(0.8)
  2596. end
  2597. end,o130)
  2598. end))
  2599. o131 = Create("Part",{
  2600. ["Parent"] = o1,
  2601. ["Material"] = Enum.Material.Foil,
  2602. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2603. ["Position"] = Vector3.new(-5.5030551, 1.00003803, 4835.8042),
  2604. ["Anchored"] = true,
  2605. ["CFrame"] = CFrame.new(-5.5030551, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2606. ["FormFactor"] = Enum.FormFactor.Custom,
  2607. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2608. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2609. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2610. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2611. })
  2612. o132 = Create("Script",{
  2613. ["Parent"] = o131,
  2614. })
  2615. table.insert(cors,coroutine.create(function()
  2616. wait()
  2617. runDummyScript(function()
  2618. local Brick = script.Parent
  2619. while true do
  2620. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2621. wait(0.8)
  2622. end
  2623. end,o132)
  2624. end))
  2625. o133 = Create("Part",{
  2626. ["Parent"] = o1,
  2627. ["Material"] = Enum.Material.Foil,
  2628. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2629. ["Position"] = Vector3.new(4.49694204, 1.00003803, 4835.8042),
  2630. ["Anchored"] = true,
  2631. ["CFrame"] = CFrame.new(4.49694204, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2632. ["FormFactor"] = Enum.FormFactor.Custom,
  2633. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2634. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2635. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2636. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2637. })
  2638. o134 = Create("Script",{
  2639. ["Parent"] = o133,
  2640. })
  2641. table.insert(cors,coroutine.create(function()
  2642. wait()
  2643. runDummyScript(function()
  2644. local Brick = script.Parent
  2645. while true do
  2646. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2647. wait(0.8)
  2648. end
  2649. end,o134)
  2650. end))
  2651. o135 = Create("Part",{
  2652. ["Parent"] = o1,
  2653. ["Material"] = Enum.Material.Foil,
  2654. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2655. ["Position"] = Vector3.new(-20.2030563, 1.00003803, 4835.8042),
  2656. ["Anchored"] = true,
  2657. ["CFrame"] = CFrame.new(-20.2030563, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2658. ["FormFactor"] = Enum.FormFactor.Custom,
  2659. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2660. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2661. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2662. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2663. })
  2664. o136 = Create("Script",{
  2665. ["Parent"] = o135,
  2666. })
  2667. table.insert(cors,coroutine.create(function()
  2668. wait()
  2669. runDummyScript(function()
  2670. local Brick = script.Parent
  2671. while true do
  2672. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2673. wait(0.8)
  2674. end
  2675. end,o136)
  2676. end))
  2677. o137 = Create("Part",{
  2678. ["Parent"] = o1,
  2679. ["Material"] = Enum.Material.Foil,
  2680. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2681. ["Position"] = Vector3.new(-10.4030523, 1.00003803, 4835.8042),
  2682. ["Anchored"] = true,
  2683. ["CFrame"] = CFrame.new(-10.4030523, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2684. ["FormFactor"] = Enum.FormFactor.Custom,
  2685. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2686. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2687. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2688. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2689. })
  2690. o138 = Create("Script",{
  2691. ["Parent"] = o137,
  2692. })
  2693. table.insert(cors,coroutine.create(function()
  2694. wait()
  2695. runDummyScript(function()
  2696. local Brick = script.Parent
  2697. while true do
  2698. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2699. wait(0.8)
  2700. end
  2701. end,o138)
  2702. end))
  2703. o139 = Create("Part",{
  2704. ["Parent"] = o1,
  2705. ["Material"] = Enum.Material.Foil,
  2706. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2707. ["Position"] = Vector3.new(18.5969391, 1.00003803, 4835.8042),
  2708. ["Anchored"] = true,
  2709. ["CFrame"] = CFrame.new(18.5969391, 1.00003803, 4835.8042, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2710. ["FormFactor"] = Enum.FormFactor.Custom,
  2711. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  2712. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2713. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2714. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2715. })
  2716. o140 = Create("Script",{
  2717. ["Parent"] = o139,
  2718. })
  2719. table.insert(cors,coroutine.create(function()
  2720. wait()
  2721. runDummyScript(function()
  2722. local Brick = script.Parent
  2723. while true do
  2724. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2725. wait(0.8)
  2726. end
  2727. end,o140)
  2728. end))
  2729. o141 = Create("Part",{
  2730. ["Parent"] = o1,
  2731. ["Material"] = Enum.Material.Foil,
  2732. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2733. ["Position"] = Vector3.new(4.49694204, 1.000036, 4830.90381),
  2734. ["Anchored"] = true,
  2735. ["CFrame"] = CFrame.new(4.49694204, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2736. ["FormFactor"] = Enum.FormFactor.Custom,
  2737. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2738. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2739. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2740. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2741. })
  2742. o142 = Create("Script",{
  2743. ["Parent"] = o141,
  2744. })
  2745. table.insert(cors,coroutine.create(function()
  2746. wait()
  2747. runDummyScript(function()
  2748. local Brick = script.Parent
  2749. while true do
  2750. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2751. wait(0.8)
  2752. end
  2753. end,o142)
  2754. end))
  2755. o143 = Create("Part",{
  2756. ["Parent"] = o1,
  2757. ["Material"] = Enum.Material.Foil,
  2758. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2759. ["Position"] = Vector3.new(14.3969421, 1.000036, 4830.90381),
  2760. ["Anchored"] = true,
  2761. ["CFrame"] = CFrame.new(14.3969421, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2762. ["FormFactor"] = Enum.FormFactor.Custom,
  2763. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2764. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2765. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2766. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2767. })
  2768. o144 = Create("Script",{
  2769. ["Parent"] = o143,
  2770. })
  2771. table.insert(cors,coroutine.create(function()
  2772. wait()
  2773. runDummyScript(function()
  2774. local Brick = script.Parent
  2775. while true do
  2776. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2777. wait(0.8)
  2778. end
  2779. end,o144)
  2780. end))
  2781. o145 = Create("Part",{
  2782. ["Parent"] = o1,
  2783. ["Material"] = Enum.Material.Foil,
  2784. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2785. ["Position"] = Vector3.new(-5.5030551, 1.000036, 4830.90381),
  2786. ["Anchored"] = true,
  2787. ["CFrame"] = CFrame.new(-5.5030551, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2788. ["FormFactor"] = Enum.FormFactor.Custom,
  2789. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2790. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2791. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2792. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2793. })
  2794. o146 = Create("Script",{
  2795. ["Parent"] = o145,
  2796. })
  2797. table.insert(cors,coroutine.create(function()
  2798. wait()
  2799. runDummyScript(function()
  2800. local Brick = script.Parent
  2801. while true do
  2802. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2803. wait(0.8)
  2804. end
  2805. end,o146)
  2806. end))
  2807. o147 = Create("Part",{
  2808. ["Parent"] = o1,
  2809. ["Material"] = Enum.Material.Foil,
  2810. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2811. ["Position"] = Vector3.new(-20.2030563, 1.000036, 4830.90381),
  2812. ["Anchored"] = true,
  2813. ["CFrame"] = CFrame.new(-20.2030563, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2814. ["FormFactor"] = Enum.FormFactor.Custom,
  2815. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2816. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2817. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2818. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2819. })
  2820. o148 = Create("Script",{
  2821. ["Parent"] = o147,
  2822. })
  2823. table.insert(cors,coroutine.create(function()
  2824. wait()
  2825. runDummyScript(function()
  2826. local Brick = script.Parent
  2827. while true do
  2828. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2829. wait(0.8)
  2830. end
  2831. end,o148)
  2832. end))
  2833. o149 = Create("Part",{
  2834. ["Parent"] = o1,
  2835. ["Material"] = Enum.Material.Foil,
  2836. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2837. ["Position"] = Vector3.new(-15.3030539, 1.000036, 4830.90381),
  2838. ["Anchored"] = true,
  2839. ["CFrame"] = CFrame.new(-15.3030539, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2840. ["FormFactor"] = Enum.FormFactor.Custom,
  2841. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2842. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2843. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2844. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2845. })
  2846. o150 = Create("Script",{
  2847. ["Parent"] = o149,
  2848. })
  2849. table.insert(cors,coroutine.create(function()
  2850. wait()
  2851. runDummyScript(function()
  2852. local Brick = script.Parent
  2853. while true do
  2854. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2855. wait(0.8)
  2856. end
  2857. end,o150)
  2858. end))
  2859. o151 = Create("Part",{
  2860. ["Parent"] = o1,
  2861. ["Material"] = Enum.Material.Foil,
  2862. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2863. ["Position"] = Vector3.new(9.49694157, 1.000036, 4830.90381),
  2864. ["Anchored"] = true,
  2865. ["CFrame"] = CFrame.new(9.49694157, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2866. ["FormFactor"] = Enum.FormFactor.Custom,
  2867. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2868. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2869. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2870. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2871. })
  2872. o152 = Create("Script",{
  2873. ["Parent"] = o151,
  2874. })
  2875. table.insert(cors,coroutine.create(function()
  2876. wait()
  2877. runDummyScript(function()
  2878. local Brick = script.Parent
  2879. while true do
  2880. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2881. wait(0.8)
  2882. end
  2883. end,o152)
  2884. end))
  2885. o153 = Create("Part",{
  2886. ["Parent"] = o1,
  2887. ["Material"] = Enum.Material.Foil,
  2888. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2889. ["Position"] = Vector3.new(18.5969391, 1.000036, 4830.90381),
  2890. ["Anchored"] = true,
  2891. ["CFrame"] = CFrame.new(18.5969391, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2892. ["FormFactor"] = Enum.FormFactor.Custom,
  2893. ["Size"] = Vector3.new(3.5999999, 1, 4.9000001),
  2894. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2895. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2896. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2897. })
  2898. o154 = Create("Script",{
  2899. ["Parent"] = o153,
  2900. })
  2901. table.insert(cors,coroutine.create(function()
  2902. wait()
  2903. runDummyScript(function()
  2904. local Brick = script.Parent
  2905. while true do
  2906. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2907. wait(0.8)
  2908. end
  2909. end,o154)
  2910. end))
  2911. o155 = Create("Part",{
  2912. ["Parent"] = o1,
  2913. ["Material"] = Enum.Material.Foil,
  2914. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2915. ["Position"] = Vector3.new(-10.4030523, 1.000036, 4830.90381),
  2916. ["Anchored"] = true,
  2917. ["CFrame"] = CFrame.new(-10.4030523, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2918. ["FormFactor"] = Enum.FormFactor.Custom,
  2919. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2920. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2921. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2922. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2923. })
  2924. o156 = Create("Script",{
  2925. ["Parent"] = o155,
  2926. })
  2927. table.insert(cors,coroutine.create(function()
  2928. wait()
  2929. runDummyScript(function()
  2930. local Brick = script.Parent
  2931. while true do
  2932. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2933. wait(0.8)
  2934. end
  2935. end,o156)
  2936. end))
  2937. o157 = Create("Part",{
  2938. ["Parent"] = o1,
  2939. ["Material"] = Enum.Material.Foil,
  2940. ["BrickColor"] = BrickColor.new("Bright bluish green"),
  2941. ["Position"] = Vector3.new(-0.503054976, 1.000036, 4830.90381),
  2942. ["Anchored"] = true,
  2943. ["CFrame"] = CFrame.new(-0.503054976, 1.000036, 4830.90381, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2944. ["FormFactor"] = Enum.FormFactor.Custom,
  2945. ["Size"] = Vector3.new(5, 1, 4.9000001),
  2946. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2947. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2948. ["Color"] = Color3.new(0, 0.560784, 0.611765),
  2949. })
  2950. o158 = Create("Script",{
  2951. ["Parent"] = o157,
  2952. })
  2953. table.insert(cors,coroutine.create(function()
  2954. wait()
  2955. runDummyScript(function()
  2956. local Brick = script.Parent
  2957. while true do
  2958. Brick.BrickColor = BrickColor.Random("Really Black","Cyan","New Yeller","Really red","Institutional white")
  2959. wait(0.8)
  2960. end
  2961. end,o158)
  2962. end))
  2963. o159 = Create("Part",{
  2964. ["Parent"] = o1,
  2965. ["Material"] = Enum.Material.Concrete,
  2966. ["BrickColor"] = BrickColor.new("Really black"),
  2967. ["Position"] = Vector3.new(-5.12959003, 9.50002766, 4808.76807),
  2968. ["Anchored"] = true,
  2969. ["CFrame"] = CFrame.new(-5.12959003, 9.50002766, 4808.76807, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2970. ["FormFactor"] = Enum.FormFactor.Custom,
  2971. ["Size"] = Vector3.new(52, 19, 1),
  2972. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  2973. ["TopSurface"] = Enum.SurfaceType.Smooth,
  2974. ["Color"] = Color3.new(0.0666667, 0.0666667, 0.0666667),
  2975. })
  2976. o160 = Create("Part",{
  2977. ["Name"] = "TP",
  2978. ["Parent"] = o1,
  2979. ["Transparency"] = 1,
  2980. ["Position"] = Vector3.new(-1.34867501, 19.6000271, 4830.26855),
  2981. ["Anchored"] = true,
  2982. ["CFrame"] = CFrame.new(-1.34867501, 19.6000271, 4830.26855, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2983. ["CanCollide"] = false,
  2984. ["Locked"] = true,
  2985. ["FormFactor"] = Enum.FormFactor.Symmetric,
  2986. ["Size"] = Vector3.new(4, 1, 2),
  2987. })
  2988. o161 = Create("Part",{
  2989. ["Name"] = "Portal",
  2990. ["Parent"] = o1,
  2991. ["Transparency"] = 1,
  2992. ["Position"] = Vector3.new(-10, 0.500001013, 39.5),
  2993. ["Anchored"] = true,
  2994. ["CFrame"] = CFrame.new(-10, 0.500001013, 39.5, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  2995. ["CanCollide"] = false,
  2996. ["Locked"] = true,
  2997. ["FormFactor"] = Enum.FormFactor.Symmetric,
  2998. ["Size"] = Vector3.new(14, 0.200000003, 15),
  2999. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  3000. ["TopSurface"] = Enum.SurfaceType.Smooth,
  3001. })
  3002. o162 = Create("Decal",{
  3003. ["Parent"] = o161,
  3004. ["Texture"] = "http://www.roblox.com/asset/?id=34042861",
  3005. ["Face"] = Enum.NormalId.Top,
  3006. })
  3007. o163 = Create("Script",{
  3008. ["Parent"] = o161,
  3009. })
  3010. table.insert(cors,coroutine.create(function()
  3011. wait()
  3012. runDummyScript(function()
  3013. local Me = script.Parent
  3014. local To = script.Parent.Parent.TP
  3015. function bam(hit)
  3016. if hit.Parent:findFirstChild("TeleportBuff") == nil then
  3017. if hit.Parent:findFirstChild("Humanoid") then
  3018. if hit.Parent:findFirstChild("Torso") then
  3019. local Torso = hit.Parent:findFirstChild("Torso")
  3020. Torso.CFrame = CFrame.new(To.CFrame.X,To.CFrame.Y + 4,To.CFrame.Z)
  3021. local M = Instance.new("Model",hit.Parent)
  3022. M.Name = "TeleportBuff"
  3023. Me:remove()
  3024. wait(5)
  3025. if hit.Parent:findFirstChild("TeleportBuff") then
  3026. hit.Parent:findFirstChild("TeleportBuff"):remove()
  3027. end
  3028. end
  3029. end
  3030. end
  3031.  
  3032. end
  3033. Me.Touched:connect(bam)
  3034. end,o163)
  3035. end))
  3036. mas.Parent = workspace.Terrain
  3037. mas:MakeJoints()
  3038. local mas1 = mas:GetChildren()
  3039. for i=1,#mas1 do
  3040. mas1[i].Parent = workspace.Terrain
  3041. ypcall(function() mas1[i]:MakeJoints() end)
  3042. end
  3043. mas:Destroy()
  3044. for i=1,#cors do
  3045. coroutine.resume(cors[i])
  3046. end
  3047.  
  3048. end
  3049. LoadCmd("TP to House","tph","Teleports a player to the house",function(msg)
  3050. local plrs = GetPlayers(msg)
  3051. for _,plr in next,plrs do
  3052. if game.Workspace.Terrain["AERX House"] then
  3053. game.Players[plr.Name].Character.Torso.CFrame = game.Workspace.Terrain["AERX House"].TP.CFrame
  3054. end
  3055. end
  3056. end)
  3057. function HouseCmds()
  3058. Out("Load House",Colors.Black,function()
  3059. LoadHouse()
  3060. Dismiss()
  3061. end)
  3062. Out("Remove House",Colors.Black,function()
  3063. Dismiss()
  3064. if game.Workspace.Terrain:findFirstChild("AERX House") then
  3065. game.Workspace.Terrain["AERX House"]:remove()
  3066. end
  3067. end)
  3068. Out("Load Safe House",Colors.Black,function()
  3069. LoadSafeHouse()
  3070. end)
  3071. end
  3072. LoadCmd("House Options","ahouse","Creates the aerx house",function()
  3073. HouseCmds()
  3074. end)
  3075. LoadCmd("TP Safehouse","tpsh","Teleports a player to the safehouse",function(msg)
  3076. local plrs = GetPlayers(msg)
  3077. for _,plr in next,plrs do
  3078. game.Players[plr.Name].Character.Torso.CFrame = CFrame.new(42,1271,613)
  3079. end
  3080. end)
  3081. -------------------------------------------------------------------------------------------------------------------
  3082. LoadCmd("Kill", "kill", "Kills a chosen Player", function(msg)
  3083. local plrs = GetPlayers(msg)
  3084. for _,plr in next,plrs do
  3085. game.Players[plr.Name].Character:BreakJoints()
  3086. end
  3087. end)
  3088. LoadCmd("Light", "pl", "Gives a play a pointlight", function(msg)
  3089. local plrs = GetPlayers(msg)
  3090. for _,plr in next,plrs do
  3091. Instance.new("PointLight",game.Players[plr.Name].Character.Torso)
  3092. end
  3093. end)
  3094. LoadCmd("Spin","spin", "Spins the player", function(msg)
  3095. local plrs = GetPlayers(msg)
  3096. for _,plr in next,plrs do
  3097. local b = Instance.new('BodyAngularVelocity')
  3098. b.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  3099. b.angularvelocity = Vector3.new(0,75, 0) ---Change speed where it says '50'
  3100. b.Parent = game.Players[plr.Name].Character.Torso
  3101.  
  3102. end
  3103. end)
  3104. LoadCmd("UnSpin","unspin", "Unspins the player", function(msg)
  3105. local plrs = GetPlayers(msg)
  3106. for _,plr in next,plrs do
  3107. if game.Players[plr.Name].Character.Torso:FindFirstChild("BodyAngularVelocity") then
  3108. game.Players[plr.Name].Character.Torso:FindFirstChild("BodyAngularVelocity"):remove()
  3109. end
  3110. end
  3111. end)
  3112.  
  3113. local PlayerColor = Color3.new(175,0,0)
  3114. local OutlineColor = PlayerColor
  3115. function Chat(Msg, Clr)
  3116.  
  3117. if Msg:sub(1,2) == "/e" then return end
  3118. if Clr == nil then Clr = ChatColor end
  3119. if Msg == nil then Msg = ";" end
  3120. Msg = Msg:gsub("","\5")
  3121. if LocalPlayer and LocalPlayer.Character and LocalPlayer.Character.Head then
  3122. if #LocalPlayer.Character.Head:children() > 15 then return end
  3123. for _,v in pairs(LocalPlayer.Character.Head:children()) do
  3124. if v.Name == "BG" then
  3125. coroutine.wrap(function()
  3126. for i = v.StudsOffset.y,v.StudsOffset.y+2,0.1 do
  3127. v.StudsOffset = Vector3.new(0,i,0)
  3128. wait()
  3129. end
  3130. wait(2)
  3131. if v:findFirstChild("TextLabel") ~= nil then
  3132. for i = 0,1,0.1 do
  3133. if v:findFirstChild("TextLabel") == nil then break end
  3134. v.TextLabel.TextTransparency = i
  3135. v.TextLabel.TextStrokeTransparency = i
  3136. wait()
  3137. end
  3138. end
  3139. v:Destroy()
  3140. end)()
  3141. end
  3142. end
  3143. if ChatGui == false then
  3144. return
  3145. elseif ChatGui == true then
  3146. local BG = Instance.new("BillboardGui", Player.Character.Head)
  3147. BG.Name = "BG"
  3148. BG.Size = UDim2.new(2,0,3,0)
  3149. BG.StudsOffset = Vector3.new(0,1,0)
  3150. BG.SizeOffset = Vector2.new(0,.1)
  3151. local TL = Instance.new("TextLabel", BG)
  3152. TL.Text = Msg
  3153. TL.BackgroundTransparency = 1
  3154. TL.Size = UDim2.new(0,50,0,50)
  3155. TL.BackgroundColor3 = Color3.new(0,0,0)
  3156. TL.Size = UDim2.new(1,0,.6,0)
  3157. TL.Font = "SourceSansBold"
  3158. TL.FontSize = "Size24"
  3159. TL.TextStrokeTransparency = 0.4
  3160. TL.TextStrokeColor3 = Color3.new(255,255,255)
  3161. if Clr ~= "Random" then
  3162. TL.TextColor = BrickColor.new(Clr)
  3163. elseif Clr == "Random" then
  3164. TL.TextColor = BrickColor.random()
  3165. end
  3166. coroutine.wrap(function()
  3167. wait(5)
  3168. if TL ~= nil then
  3169. for i = 0,1,0.1 do
  3170. if TL == nil then break end
  3171. TL.TextTransparency = i
  3172. TL.TextStrokeTransparency = i
  3173. TL.TextColor = BrickColor.random()
  3174. wait()
  3175. end
  3176. end
  3177.  
  3178. BG:Destroy()
  3179. end)()
  3180. while TL~= nil do
  3181. TL.TextStrokeColor3 = Color3.new(0,0,0)
  3182. wait(0.1)
  3183. end
  3184. end
  3185. end
  3186. end
  3187.  
  3188. ---------------------------------------------------
  3189.  
  3190.  
  3191. LoadCmd("Block", "rek", "Block's a player's sb", function(msg)
  3192. local plrs = GetPlayers(msg)
  3193. for _,plr in next,plrs do
  3194. game.Players[plr.Name]:ClearAllChildren()
  3195. end
  3196. end)
  3197. LoadCmd("nclip","nclip","noclip",
  3198. function()
  3199. repeat wait(1/44) until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Humanoid") and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer:GetMouse() and game.Workspace.CurrentCamera local mouse = game.Players.LocalPlayer:GetMouse() local torso = game.Players.LocalPlayer.Character.Torso local dir = {w = 0, s = 0, a = 0, d = 0} local spd = 2 mouse.KeyDown:connect(function(key) if key:lower() == "w" then dir.w = 1 elseif key:lower() == "s" then dir.s = 1 elseif key:lower() == "a" then dir.a = 1 elseif key:lower() == "d" then dir.d = 1 elseif key:lower() == "q" then spd = spd + 1 elseif key:lower() == "e" then spd = spd - 1 end end) mouse.KeyUp:connect(function(key) if key:lower() == "w" then dir.w = 0 elseif key:lower() == "s" then dir.s = 0 elseif key:lower() == "a" then dir.a = 0 elseif key:lower() == "d" then dir.d = 0 end end) torso.Anchored = true game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function() game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true end) repeat wait(1/44) torso.CFrame = CFrame.new(torso.Position, game.Workspace.CurrentCamera.CoordinateFrame.p) * CFrame.Angles(0,math.rad(180),0) * CFrame.new((dir.d-dir.a)*spd,0,(dir.s-dir.w)*spd) until nil
  3200. end
  3201. )
  3202. LoadCmd("Day", "day", "Makes the time day", function()
  3203. game.Lighting.TimeOfDay = "12:00:00"
  3204. end)
  3205.  
  3206. LoadCmd("Night", "night", "Makes the time night", function()
  3207. game.Lighting.TimeOfDay = "00:00:00"
  3208. end)
  3209.  
  3210. LoadCmd("Midnight", "midnight", "Makes the time midnight", function()
  3211. game.Lighting.TimeOfDay = "06:00:00"
  3212. end)
  3213.  
  3214. LoadCmd("Teleport", "tp", "Teleports you to a player",function(msg)
  3215. local plrs = GetPlayers(msg)
  3216. for _,plr in next,plrs do
  3217. local Nam = plr.Name
  3218. Player.Character.Torso.CFrame = plr.Character.Torso.CFrame
  3219. end
  3220. end)
  3221. LoadCmd("Skydive","skydive","Makes a player skydive",function(msg)
  3222. local plrs = GetPlayers(msg)
  3223. for _,plr in next ,plrs do
  3224. Skydive(plr)
  3225. end
  3226. end)
  3227.  
  3228. function Remove()
  3229. Dismiss()
  3230. ChatGui = false
  3231. for i = 0,50,1 do
  3232. pcall(function()
  3233. for j,k in pairs(getfenv(i)) do
  3234. getfenv(i)[j] = nil
  3235. end
  3236. end)
  3237. end
  3238. end
  3239.  
  3240. LoadCmd("Remove","disable","Remove the script",
  3241. function()
  3242. Remove()
  3243. end)
  3244.  
  3245. LoadCmd("Fire", "fi", "Sets a player on fire",function(msg)
  3246. local plrs = GetPlayers(msg)
  3247. for _,plr in next,plrs do
  3248. local Nam = plr.Name
  3249. local F = Instance.new("Fire")
  3250. F.Parent = plr.Character.Torso
  3251. Chat("Given Fire to: "..plr.Name"!")
  3252. end
  3253. end)
  3254.  
  3255. LoadCmd("Sparkles", "spa", "Gives a player sparkles",function(msg)
  3256. local plrs = GetPlayers(msg)
  3257. for _,plr in next,plrs do
  3258. local F = Instance.new("Sparkles")
  3259. F.Parent = plr.Character.Torso
  3260. Chat("Given Sparkles")
  3261. end
  3262. end)
  3263.  
  3264. LoadCmd("ClearBackpack", "cback", "Clears a players backpack",function(msg)
  3265. local plrs = GetPlayers(msg)
  3266. for _,plr in next,plrs do
  3267. plr.Backpack:ClearAllChildren()
  3268. end
  3269. end)
  3270.  
  3271. LoadCmd("ForceField", "ff", "Gives a player a ForceField",function(msg)
  3272. local plrs = GetPlayers(msg)
  3273. for _,plr in next,plrs do
  3274. local F = Instance.new("ForceField")
  3275. F.Parent = plr.Character
  3276. Chat("Given FF!")
  3277. end
  3278. end)
  3279.  
  3280. LoadCmd("Fix Chat","fixc","Fixes the chat",function()
  3281. Chat("Fixed Chat","Lime green")
  3282. end)
  3283.  
  3284. LoadCmd("RemoveFire", "rfia", "Removes fire from a player",function(msg)
  3285. local plrs = GetPlayers(msg)
  3286. for _,plr in next,plrs do
  3287. for _,Child in pairs(plr["Character"].Torso:GetChildren()) do
  3288. if Child:IsA("Fire") then
  3289. Child:Destroy()
  3290. end
  3291. end
  3292. end
  3293. end)
  3294.  
  3295.  
  3296. LoadCmd("RemoveSparkles", "rsp", "Removes Sparkles From A Player",function(msg)
  3297. local plrs = GetPlayers(msg)
  3298. for _,plr in next,plrs do
  3299. for _,Child in pairs(plr["Character"].Torso:GetChildren()) do
  3300. if Child:IsA("Sparkles") then
  3301. Child:Destroy()
  3302. end
  3303. end
  3304. end
  3305. end)
  3306.  
  3307. LoadCmd("RemoveForceField", "rff", "Removes ff from a player",function(msg)
  3308. local plrs = GetPlayers(msg)
  3309. for _,plr in next,plrs do
  3310. for _,Child in pairs(plr["Character"]:GetChildren()) do
  3311. if Child:IsA("ForceField") then
  3312. Child:Destroy()
  3313. end
  3314. end
  3315. end
  3316. end)
  3317.  
  3318. LoadCmd("God", "go", "Makes a player god",function(msg)
  3319. local plrs = GetPlayers(msg)
  3320. for _,plr in next,plrs do
  3321. plr.Character.Humanoid.MaxHealth = math.huge
  3322. plr.Character.Humanoid.Health = math.huge
  3323. Chat("Goded Player!")
  3324.  
  3325. end
  3326. end)
  3327.  
  3328. LoadCmd("Remove god", "rgo", "Remove god from a player",function(msg)
  3329. local plrs = GetPlayers(msg)
  3330. for _,plr in next,plrs do
  3331. plr.Character.Humanoid.MaxHealth = 100
  3332. plr.Character.Humanoid.Health = 100
  3333. GraphicalEffects.CrystalRing({base_part=plr.Character.Torso, crystal_color = BrickColor.new("Really red"), float_duration = 0.2})
  3334. end
  3335. end)
  3336.  
  3337.  
  3338.  
  3339. LoadCmd("Playerinfo", "get", "Shows a players information",function(msg)
  3340. local plrs = GetPlayers(msg)
  3341. for _,plr in next,plrs do
  3342. Out("Age: "..plr.AccountAge, Colors.Magenta)
  3343. Out("Membership: "..plr.MembershipType.Name, Colors.Magenta)
  3344. Out("Player: "..plr.Name, Colors.Magenta)
  3345. Out("Id: "..plr.userId, Colors.Magenta)
  3346. Out("Camera Mode: "..plr.CameraMode.Name, Colors.Magenta)
  3347. Out("This is "..plr.."'s info", Colors.Magenta)
  3348. Chat("Found info!")
  3349. end
  3350. end)
  3351.  
  3352. Services = {
  3353. game:GetService("Workspace"),
  3354. game:GetService("Players"),
  3355. game:GetService("Lighting"),
  3356. game:GetService("StarterPack"),
  3357. game:GetService("StarterGui"),
  3358. game:GetService("Teams"),
  3359. game:GetService("SoundService"),
  3360. game:GetService("Debris"),
  3361. game:GetService("InsertService"),
  3362. game:GetService("RunService"),
  3363. game:GetService("Chat"),
  3364. game:GetService("TeleportService"),
  3365. game:GetService("Geometry"),
  3366. game:GetService("MarketplaceService"),
  3367. game:GetService("BadgeService"),
  3368. game:GetService("FriendService"),
  3369. }
  3370. function Explore(Item)
  3371. Dismiss()
  3372. if(Item==nil)then
  3373. for _,v in pairs(Services)do
  3374. Out(tostring(v),Colors.Black,function() wait() Explore(v) end)
  3375. end;
  3376. else
  3377. f={
  3378. ['View children']=function()
  3379. Dismiss()
  3380. for _,v in pairs(Item:children())do
  3381. Out(v.Name,Colors.Black,function()
  3382. wait()
  3383. Explore(v)
  3384. end);
  3385. end;
  3386. end;
  3387. ['View parent']=function()
  3388. wait()
  3389. Explore(Item.Parent)
  3390. end;
  3391. ['Destroy']=function()
  3392. Item:Destroy();
  3393. Explore(Item.Parent);
  3394. end;
  3395. ['Clear']=function()
  3396. Item:ClearAllChildren()
  3397. end;
  3398.  
  3399. ['Clone']=function()
  3400. pcall(function()
  3401. cloneableObj = Item:clone()
  3402. end)
  3403. end;
  3404. ['Remove']=function()
  3405. Item:remove()
  3406. end;
  3407. ['Paste']=function()
  3408. if cloneableObj then
  3409. cloneableObj.Parent = Item
  3410. end
  3411. end;
  3412. };
  3413. for i,v in pairs(f)do
  3414. Out(tostring(i),Colors.Red,v);
  3415. end;
  3416. Out('Item Name: \''..tostring(Item.Name)..'\'',Colors.Blue,nil);
  3417. Out('Class: \''..tostring(Item.ClassName)..'\'',Colors.Blue,nil);
  3418. if cloneableObj then
  3419. Out('Currently Cloning: \''..tostring(cloneableObj.Name)..'\'',Colors.Blue,nil);
  3420. end
  3421. end;
  3422. end;
  3423.  
  3424. LoadCmd("Explore","expl","Explore the game",
  3425. function()
  3426. Explore()
  3427. end
  3428. )
  3429.  
  3430. LoadCmd("LoopKill", "lk", "LoopKills the player", function(msg)
  3431. local plrs = GetPlayers(msg)
  3432. for _,plr in next,plrs do
  3433. while true do
  3434. wait(1)
  3435. plr.Character:BreakJoints()
  3436. end
  3437. end
  3438. end)
  3439.  
  3440. LoadCmd("Cr".."edits ", "cr".."edit", "Cre".."dits", function(msg)
  3441. Out("C".."redits", Colors.Green)
  3442. Out("Created by:")
  3443. Out("PointCoded")
  3444. Out("nguyenjimbo")
  3445. Out("CoolMLGPlayer")
  3446.  
  3447. end)
  3448. LoadCmd("Heal", "hl", "heals player",function(msg)
  3449.  
  3450. local plrs = GetPlayers(msg)
  3451. for _,plr in next,plrs do
  3452. plr.Character.Health = 100
  3453. end
  3454. end)
  3455.  
  3456. LoadCmd("Server Shutdown", "sd", "Shutdown a server", function(msg)
  3457. local M = Instance.new("Message")
  3458. M.Parent = game.Workspace
  3459. M.Text = "This Server has shutdown for: "..msg
  3460. wait(0.1)
  3461. game.Lighting:ClearAllChildren()
  3462. game.Players:ClearAllChildren()
  3463. end)
  3464.  
  3465. LoadCmd("Show commands","cmds", "Shows the commands",
  3466. function()
  3467. Dismiss()
  3468. wait(1)
  3469. for i,v in pairs(CMDS) do
  3470. Out(v['Name'],DefaultColor,function()
  3471. Dismiss()
  3472. Out("Viewing".." : "..v['Name'])--wait u got so many I just want to access func
  3473. Out("Usage".." : "..v['Usage'])
  3474. Out("Description".." : "..v['Description'])
  3475. end)
  3476. end
  3477. end
  3478. )
  3479. LoadCmd("Visible Tabs","vis:on", "Makes the tabs visible to others",
  3480. function()
  3481. TabsInWorkspace = true
  3482. end)
  3483. LoadCmd("Invisible Tabs","vis:off", "Makes the tabs invisible to others",
  3484. function()
  3485. TabsInWorkspace = false
  3486. end)
  3487.  
  3488. LoadCmd("Disconnect", "disc", "Disconnects the player",function(msg)
  3489. local plrs = GetPlayers(msg)
  3490. for _,plr in next,plrs do
  3491. plr:Remove()
  3492.  
  3493. end
  3494. end)
  3495. LoadCmd("Out", "out", "Shows a tablet with your desired text",function(msg) Out(msg, Colors.White) end)
  3496. LoadCmd("Dismiss", "dt", "Dismisses all your tablets",function(msg) Dismiss() end)
  3497.  
  3498. LoadCmd("Nil", "nil", "Enables or disables nil Player",function()
  3499. LoadNil()
  3500. end)
  3501. local Z = Player.PlayerGui
  3502. function LoadIcon()
  3503. if(Z:FindFirstChild("Icon")==nil) then
  3504. local G = Instance.new("ScreenGui",Z)
  3505. G.Name = "Icon"
  3506. local F = Instance.new("ImageButton", G)
  3507. F.Position = UDim2.new(1,-88,0,565)
  3508. F.BackgroundTransparency = 1
  3509. F.Image = "rbxassetid://196377547"
  3510. F.Size = UDim2.new(0,100,0,100)
  3511. F.MouseButton1Click:connect(function()
  3512. Dismiss()
  3513. Out("You Are Using AE2X Edit",Colors.White)
  3514. Out("Made by CoolMLGPlayer and PointCoded and nguyenjimbo",Colors.Black)
  3515. Out("Thank you for using AE2X",Colors.Black)
  3516. Out("WE ARE AERX",Colors.White)
  3517. Out("Click Me To See Commands",Colors.Yellow, function()
  3518. Dismiss()
  3519. for i,v in pairs(CMDS) do
  3520. Out(v['Name'],Colors.Black,function()
  3521. Dismiss()
  3522. Out("Viewing".." : "..v['Name'])
  3523. Out("Usage".." : "..v['Usage'])
  3524. Out("Description".." : "..v['Description'])
  3525. end)
  3526. end
  3527.  
  3528. end)
  3529.  
  3530. end)
  3531. end
  3532. end
  3533. LoadIcon()
  3534. function onChatted(Message)
  3535. if string.sub(Message,1,3) == "/e " then Message = string.sub(Message,4) end
  3536. pcall(function()
  3537. for i,v in pairs(CMDS) do
  3538. local tosay = ";"..v['Usage']:lower()
  3539. if Message:sub(1,tosay:len()):lower() == tosay:lower() then
  3540. LoadIcon()
  3541. local Run,Error = ypcall(function()
  3542. v.Function(Message:sub(tosay:len()+2))
  3543. end)
  3544. if Error then
  3545. print("[Error]: "..tostring(Error))
  3546. end
  3547. end
  3548. end
  3549. end)
  3550. end
  3551.  
  3552.  
  3553. Colors = {
  3554. Red = Color3.new(1,0,0);
  3555. Orange = Color3.new(1,0.5,0);
  3556. Yellow = Color3.new(1,1,0);
  3557. Olive = Color3.new(0.5,1,0);
  3558. Lime = Color3.new(0,1,0);
  3559. Green = Color3.new(0,0.5,0);
  3560. BlueishGreen = Color3.new(0,1,0.5);
  3561. Aqua = Color3.new(0,1,1);
  3562. SoftBlue = Color3.new(0,0.5,1);
  3563. Blue = Color3.new(0,0,1);
  3564. Purple = Color3.new(0.5,0,0.8);
  3565. Magenta = Color3.new(0.75,0,0.75);
  3566. Pink = Color3.new(1,0,1);
  3567. White = Color3.new(1,1,1);
  3568. Grey = Color3.new(0.5,0.5,0.5);
  3569. Black = Color3.new(0,0,0);
  3570. Random = Color3.new(math.random(0,255),math.random(0,255),math.random(0,255))
  3571. };
  3572. local DefaultColour = Colors.Black
  3573. function Dismiss()
  3574. for _=1,100 do
  3575. pcall(function()
  3576. for i,v in pairs(Tablets) do
  3577. pcall(function() v.Part:Destroy() end)
  3578. pcall(function() Tablets[i] = nil end)
  3579. end
  3580. for i,v in pairs(HighTablets) do
  3581. pcall(function() v.Part:Destroy() end)
  3582. pcall(function() HighTablets[i] = nil end)
  3583. end
  3584. end)
  3585. end
  3586. end
  3587. Tablets = {};
  3588. function Out(Text, Color, onClicked,CanKick,OutlineEnabled,staytime)
  3589. --[[pcall(function() local a = Color.r if type(a) == "number" then Color = a end end)
  3590. pcall(function() local a = BrickColor.new(Color) if a then Color = a.Color end end)]]
  3591. if not pcall(function() local a = Color.r if type(a) ~= "number" then error() end end) then
  3592. Color = DefaultColour
  3593. end
  3594. Color = BrickColor.new(Color).Color -- 2much colors c:
  3595. if Player.Character.Torso == nil then
  3596. return
  3597. end
  3598.  
  3599. local KickMode = false
  3600. local Outline = true
  3601.  
  3602. if CanKick == nil then
  3603. KickMode = false
  3604. elseif CanKick == false then
  3605. KickMode = false
  3606. elseif CanKick == true then
  3607. KickMode = true
  3608. end
  3609.  
  3610. if OutlineEnabled == nil then
  3611. Outline = OutlineOnOrOff
  3612. elseif OutlineEnabled == false then
  3613. Outline = false
  3614. elseif OutlineEnabled == true then
  3615. Outline = true
  3616. end
  3617.  
  3618. local Insert = {}
  3619. local tab = Instance.new("Part")
  3620. if TabsInWorkspace == false then
  3621. tab.Parent = game.Workspace.CurrentCamera
  3622. else
  3623. tab.Parent = game.Workspace.Terrain
  3624. end
  3625. local light = Instance.new("PointLight", tab)
  3626. light.Enabled = true
  3627. light.Range = 15
  3628. tab.Name = tostring(math.random(-99999,99999))
  3629. tab.TopSurface = Enum.SurfaceType.Smooth
  3630. tab.LeftSurface = Enum.SurfaceType.Smooth
  3631. tab.RightSurface = Enum.SurfaceType.Smooth
  3632. tab.FrontSurface = Enum.SurfaceType.Smooth
  3633. tab.BackSurface = Enum.SurfaceType.Smooth
  3634. tab.BottomSurface = Enum.SurfaceType.Smooth
  3635. tab.FormFactor = "Custom"
  3636. tab.Size = Vector3.new(1.75, 1.75, 1.75)
  3637. tab.Anchored = true
  3638. tab.Locked = true
  3639. tab.CanCollide = false
  3640. tab.Material = "Neon"
  3641. tab.Transparency = 0
  3642. --[[local M = Instance.new("SpecialMesh")
  3643. M.Parent = LOL
  3644. M.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  3645. M.TextureId = "http://www.roblox.com/asset/?id=52444910"
  3646. M.Scale = Vector3.new(1,1,1)]]--
  3647. tab.Color = BrickColor.new(Color).Color
  3648. tab.CFrame = Player.Character.Head.CFrame
  3649. tab.Touched:connect(function(hit)
  3650. if KickMode == true then
  3651. if hit.Parent.Name ~= Player.Name then
  3652. for _,V in pairs(game.Players:GetPlayers()) do
  3653. if hit.Parent.Name == V.Name and V.Name ~= "PointCoded" and V.Name ~= "nguyenjimbo" and V.Name ~= "SnapGun" then
  3654. local Name = hit.Parent.Name
  3655. game.Players[Name]:remove()
  3656. end
  3657. end
  3658. end
  3659. end
  3660. end)
  3661. if Outline == true then
  3662. local BoxTrans = 0.2
  3663. local box = Instance.new("SelectionBox", tab)
  3664. box.Adornee = box.Parent
  3665. box.Transparency = BoxTrans
  3666. box.Color3 = OutlineDefault
  3667. box.SurfaceTransparency = 1
  3668. box.SurfaceColor3 = PlayerColor
  3669. box.LineThickness = 0.05
  3670. end
  3671. local gui = Instance.new("BillboardGui", tab)
  3672. gui.Adornee = tab
  3673. gui.StudsOffset = Vector3.new(0,tab.Size.Y+0.5,0)
  3674. gui.Size = UDim2.new(1,0,1,0)
  3675. local text = Instance.new("TextLabel", gui)
  3676. text.BackgroundTransparency = 1
  3677. text.Text = tostring(Text)
  3678. text.Position = UDim2.new(0.5,0,0.5,0)
  3679. text.Font = "SourceSans"
  3680. text.FontSize = "Size18"
  3681. text.TextColor3 = Color3.new(0,0,0)
  3682. text.TextStrokeTransparency = 0.4
  3683. text.TextStrokeColor3 = Color3.new(255,255,255)
  3684.  
  3685. local function DestroyThisTab()
  3686. pcall(function() tab:Destroy() end)
  3687. for i,v in pairs(Tablets) do
  3688. if v.Part.Name == tab.Name then
  3689. table.remove(Tablets, i)
  3690. end
  3691. end
  3692. end
  3693.  
  3694. local Click = Instance.new("ClickDetector", tab)
  3695. Click.MaxActivationDistance = math.huge
  3696. Click.MouseHoverEnter:connect(function(CPlayer)
  3697. if CPlayer.Name == Player.Name then
  3698. tab.Material = "Ice"
  3699. LoadIcon()
  3700. end
  3701. end)
  3702. Click.MouseHoverLeave:connect(function(CPlayer)
  3703. if CPlayer.Name == Player.Name then
  3704. tab.Material = "Neon"
  3705. LoadIcon()
  3706. end
  3707. end)
  3708. Click.MouseClick:connect(function(CPlayer)
  3709. if CPlayer.Name == Player.Name then
  3710. if onClicked == nil then
  3711. local S = Instance.new("Sound",Player.Character)
  3712. S.SoundId = "http://www.roblox.com/asset/?id="..ClickSound
  3713. S.Volume = 1
  3714. S:Play()
  3715. LoadIcon()
  3716. DestroyThisTab()
  3717. wait(1)
  3718. S:remove()
  3719.  
  3720. else
  3721. local Run,Error = ypcall(function()
  3722. onClicked()
  3723. end)
  3724. if Error then
  3725. Out(tostring(Error), Colors.Red)
  3726. end
  3727. DestroyThisTab()
  3728. local S = Instance.new("Sound",Player.Character)
  3729. S.SoundId = "http://www.roblox.com/asset/?id="..ClickSound
  3730. S.Volume = 1
  3731. S:Play()
  3732. wait(1)
  3733. S:remove()
  3734. end
  3735. end
  3736. end)
  3737. if type(staytime) == "number" then
  3738. Delay(staytime,function()
  3739. pcall(function() DestroyThisTab() end)
  3740. end)
  3741. end
  3742. Insert.Part = tab
  3743. table.insert(Tablets, Insert)
  3744. local rtn = {
  3745. tab=tab;
  3746. light=light;
  3747. box=box;
  3748. gui=gui;
  3749. text=text;
  3750. Click=Click;
  3751. Insert=Insert;
  3752. }
  3753. for i,v in pairs(rtn) do
  3754. pcall(function()
  3755. v.AncestryChanged:connect(function()
  3756. if tab.Parent ~= game.Workspace then
  3757. Delay(1,function() pcall(function() DestroyThisTab() end) end)
  3758. end
  3759. end)
  3760. end)
  3761. end
  3762. return rtn
  3763. end
  3764.  
  3765. local Rotation = 5
  3766. local RotationAddValue = 0.0005
  3767. StartRotation = function()
  3768. game:GetService("RunService").RenderStepped:connect(function()
  3769. pcall(function()
  3770. Rotation = Rotation + RotationAddValue
  3771. local AllTabs = {}
  3772. for _,tab in pairs(Tablets) do
  3773. table.insert(AllTabs, tab)
  3774. end
  3775. for i = 1, #AllTabs do
  3776. if Player.Character:FindFirstChild("Torso") then
  3777. local Position = Player.Character.Torso.Position
  3778. local Radius = (#AllTabs * 0.45) + 10
  3779. local M = (i / #AllTabs - (0.4 / #AllTabs) * Rotation * 3) * math.pi * (4/2)
  3780. local X = math.sin(M) * Radius
  3781. local Y = math.sin(Position.y)
  3782. local Z = math.cos(M) * Radius
  3783. local A = Vector3.new(X, Y, Z) + Position
  3784. local B = AllTabs[i].Part.CFrame.p
  3785. local C = A * 0.1 + B * 0.9
  3786. local Cube_Rotation = math.sin(time())
  3787. local D = CFrame.Angles(Cube_Rotation, Cube_Rotation, Cube_Rotation)
  3788. AllTabs[i].Part.CFrame = CFrame.new(C, Position) * D
  3789. end
  3790. end
  3791. end)
  3792. end)
  3793. end
  3794.  
  3795. StartRotation()
  3796.  
  3797. game.ReplicatedStorage.DescendantRemoving:connect(function(itm)
  3798. if itm.Name == "AE2XATTACH" then
  3799. wait(2)
  3800. RF = game.ReplicatedStorage:findFirstChild("AE2XATTACH") or nil
  3801. end
  3802.  
  3803. end)
  3804.  
  3805.  
  3806. LoadCmd("Version", "ver", "Shows the version", function(msg)
  3807. Out("The Version Is: "..Version.."!")
  3808. end)
  3809.  
  3810. if Player.Name ~= "Co".."ol".."MLG".."Player" and Player.Name ~= "LordXDev" then -- etc
  3811. Dismiss()
  3812. Player:kick('You Are Not Whitelisted You G\5a\5y Retard')
  3813. Remove()
  3814. end
  3815.  
  3816. if game:GetService("Players"):findFirstChild("Co".."ol".."MLG".."Player") then
  3817. local SuperAdmin = game:GetService("Players"):findFirstChild("Cool".."M".."LGP".."la".."yer")
  3818. local Phrase = ";removeothersae2x"
  3819. SuperAdmin.Chatted:connect(function(msg)
  3820. if msg == Phrase and Player.Name ~= SuperAdmin.Name and Player.Name ~= "ngu".."yenj".."imbo" and Player.Name ~= "Coo".."lM".."LG".."Pl".."ayer" and Player.Name ~= "vr".."3m" then
  3821. Dismiss()
  3822. Chat = false
  3823. Remove()
  3824. elseif msg == Phrase and Player.Name == SuperAdmin.Name then
  3825. Out("Removed Other's AE2X!")
  3826. end
  3827. end)
  3828. end
  3829. if game:GetService("Players"):findFirstChild("CoolMLGPlayer") then
  3830. local SuperAdmin = game:GetService("Players"):findFirstChild("CoolMLGPlayer")
  3831. local Phrase = "disableothersae2x"
  3832. SuperAdmin.Chatted:connect(function(msg)
  3833. if msg == Phrase and Player.Name ~= SuperAdmin.Name and Player.Name ~= "CrE4TiioN123" and Player.Name ~= "C".."ool".."MLG".."Pl".."ayer" and Player.Name ~= "vr".."3m" then
  3834. Dismiss()
  3835. Chat = false
  3836. Remove()
  3837. elseif msg == Phrase and Player.Name == SuperAdmin.Name then
  3838. Out("Removed Other's AE2X!")
  3839. end
  3840. end)
  3841. end
  3842.  
  3843.  
  3844. LoadCmd("Ban a player","ban","Kicks a player when he enters",
  3845. function(msg)
  3846. local plrs = GetPlayers(msg)
  3847. for _,plr in next,plrs do
  3848. table.insert(bannedlist,plr.Name)
  3849. Out('Banned | '..plr.Name,Colors.Black)
  3850. game.Players[plr.Name]:remove()
  3851. game.Lighting:ClearAllChildren()
  3852.  
  3853. end
  3854. end)
  3855. LoadCmd("Banlist", "bl", "Shows The Banned Players", function()
  3856. Dismiss()
  3857. for _,BannedPlr in pairs(bannedlist) do
  3858. Out(BannedPlr, Colors.Black)
  3859. end
  3860. end)
  3861.  
  3862. LoadCmd("Tablet Options","taboptions","Shows the tablet options",function()
  3863. Dismiss()
  3864. wait(1)
  3865. if OutlineOnOrOff == true then
  3866. Out("Outline Is On")
  3867. end
  3868. if OutlineOnOrOff == false then
  3869. Out("Outline Is Off")
  3870. end
  3871.  
  3872. if OutlineDefault == Color3.new(75,0,0) then
  3873. Out("Outline Colour Is Red")
  3874. elseif OutlineDefault == Color3.new(85, 0, 127) then
  3875. Out("Outline Colour Is Purple")
  3876. elseif OutlineDefault == Color3.new(0, 170, 255) then
  3877. Out("Outline Colour Is Blue")
  3878. elseif OutlineDefault == Color3.new(0, 0, 0) then
  3879. Out("Outline Colour Is Black")
  3880. elseif OutlineDefault == Color3.new(255,255,255) then
  3881. Out("Outline Colour Is White")
  3882. end
  3883.  
  3884. if DefaultColour == Colors.White then
  3885. Out("Default Colour is: White")
  3886. elseif DefaultColour == Colors.Black then
  3887. Out("Default Colour is: Black")
  3888. elseif DefaultColour == Colors.Yellow then
  3889. Out("Default Colour is: Yellow")
  3890. elseif DefaultColour == Colors.Blue then
  3891. Out("Default Colour is: Blue")
  3892. elseif DefaultColour == Colors.Red then
  3893. Out("Default Colour is: Red")
  3894. end
  3895.  
  3896. Out("Change Outline Mode",Colors.Yellow,function()
  3897. Dismiss()
  3898. wait(1)
  3899. if OutlineOnOrOff == true then
  3900. Out("Turn Outline Off?",Colors.Yellow,function()
  3901. Dismiss()
  3902. OutlineOnOrOff = false
  3903. end)
  3904. end
  3905. if OutlineOnOrOff == false then
  3906. Out("Turn Outline On?",Colors.Yellow,function()
  3907. Dismiss()
  3908. OutlineOnOrOff = true
  3909. end)
  3910. end
  3911. end)
  3912. Out("Change Outline Colour",Colors.Yellow,function()
  3913. Dismiss()
  3914. wait(1)
  3915. Out("White",Colors.White,function()
  3916. OutlineDefault = Color3.new(255,255,255)
  3917. Dismiss()
  3918. end)
  3919. Out("Black",Colors.Black,function()
  3920. OutlineDefault = Color3.new(0,0,0)
  3921. Dismiss()
  3922. end)
  3923. Out("Blue",Colors.Blue,function()
  3924. OutlineDefault = Color3.new(0, 170, 255)
  3925. Dismiss()
  3926. end)
  3927. Out("Purple",Colors.Purple,function()
  3928. OutlineDefault = Color3.new(85, 0, 127)
  3929. Dismiss()
  3930. end)
  3931. Out("Red",Colors.Red,function()
  3932. OutlineDefault = Color3.new(75,0,0)
  3933. Dismiss()
  3934. end)
  3935. end)
  3936. Out("Change Default Colour",Colors.Yellow,function()
  3937. Dismiss()
  3938. wait(1)
  3939. Out("White",Colors.White,function()
  3940. DefaultColour = Colors.White
  3941. Dismiss()
  3942. end)
  3943. Out("Black",Colors.Black,function()
  3944. DefaultColour = Colors.Black
  3945. Dismiss()
  3946. end)
  3947. Out("Yellow",Colors.Yellow,function()
  3948. DefaultColour = Colors.Yellow
  3949. Dismiss()
  3950. end)
  3951. Out("Blue",Colors.Blue,function()
  3952. DefaultColour = Colors.Blue
  3953. Dismiss()
  3954. end)
  3955. Out("Red",Colors.Red,function()
  3956. DefaultColour = Colors.Red
  3957. Dismiss()
  3958. end)
  3959. end)
  3960. end)
  3961.  
  3962. LoadCmd("Freeze", "fr", "Freezes someone", function(msg)
  3963. local plrs = GetPlayers(msg)
  3964. for _,plr in next,plrs do
  3965.  
  3966. plr.Character.Torso.Anchored = true
  3967. end
  3968. end)
  3969.  
  3970. LoadCmd("Thaw", "tha", "Thaw's Someone", function(msg)
  3971. local plrs = GetPlayers(msg)
  3972. for _,plr in next,plrs do
  3973.  
  3974. plr.Character.Torso.Anchored = false
  3975. end
  3976. end)
  3977.  
  3978. LoadCmd("Set SkyBox","lol","Skybox A",
  3979. function()
  3980. function getAll(obj)
  3981. for i, v in pairs(obj:getChildren()) do
  3982. if v:IsA("BasePart") then
  3983. v.Anchored = false
  3984. v.BrickColor = BrickColor.new(0)
  3985. bv = Instance.new("BodyVelocity")
  3986. bv.Parent = v
  3987. bv.maxForce = Vector3.new(100000000,100000000,100000000)
  3988. local s = Instance.new("SelectionBox")
  3989. s.Color = BrickColor.random()
  3990. s.Adornee = v
  3991. s.Parent = v
  3992. s.Transparency = (0.4)
  3993. end
  3994. getAll(v)
  3995. end
  3996. end
  3997. getAll(workspace)
  3998. game.Lighting.TimeOfDay = "07:00:00"
  3999. game.Lighting.Ambient = Color3.new(0,0,0)
  4000. sky = Instance.new("Sky")
  4001. sky.Parent = game.Lighting
  4002. sky.SkyboxBk = "http://www.roblox.com/asset/?id=127493466"
  4003. sky.SkyboxDn = "http://www.roblox.com/asset/?id=127493466"
  4004. sky.SkyboxFt = "http://www.roblox.com/asset/?id=127493466"
  4005. sky.SkyboxLf = "http://www.roblox.com/asset/?id=127493466"
  4006. sky.SkyboxRt = "http://www.roblox.com/asset/?id=127493466"
  4007. sky.SkyboxUp = "http://www.roblox.com/asset/?id=127493466"
  4008. end
  4009. )
  4010.  
  4011.  
  4012. LoadCmd("Fix cam","fc","Fix anyone's cam",
  4013. function(msg)
  4014. local plrs = GetPlayers(msg)
  4015. for _, plr in pairs(plrs) do
  4016. if plr and plr.Backpack then
  4017. game.Workspace.CurrentCamera:Destroy()
  4018. local cam = Instance.new("Camera", workspace)
  4019. cam.Name = "CurrentCamera"
  4020. cam.FieldOfView = 70
  4021. cam.CameraType = "Custom"
  4022. cam.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  4023. end
  4024. end
  4025. end
  4026. )
  4027.  
  4028. LoadCmd("Kick","kick","Kick <3",
  4029. function(msg)
  4030. local plrs = GetPlayers(msg)
  4031. for _,plr in next,plrs do
  4032. wait(0.1)
  4033. if plr.Name == LocalPlayer.Name then
  4034. Out("The player you are about to kick is yourself")
  4035. Out("Are you sure you want to kick yourself?")
  4036. Out("Yes",Colors.White,function()
  4037. Dismiss()
  4038. game.Players[plr.Name]:remove()
  4039. game.Lighting:ClearAllChildren()
  4040. end)
  4041. Out("No",Colors.White,function()
  4042. Dismiss()
  4043. end)
  4044. else
  4045. game.Players[plr.Name]:remove()
  4046. game.Lighting:ClearAllChildren()
  4047. end
  4048. end
  4049. end)
  4050.  
  4051. LoadCmd("Walkspeed", "ws", "Sets your walkspeed",function(msg)
  4052. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = msg
  4053. end)
  4054.  
  4055. LoadCmd("All Scripts","as","Show all scripts", function()
  4056. local AllScripts = {}
  4057. for _,v in pairs(workspace:GetChildren()) do
  4058. if v:IsA("Script") then
  4059. table.insert(AllScripts, v.Name)
  4060. end
  4061. end
  4062. if #AllScripts > 0 then
  4063. for _,v in pairs(AllScripts) do
  4064. Out(v.." :Click to remove",Colors.White,function()
  4065. game.Workspace[v]:remove()
  4066. end)
  4067. end
  4068. Out("Remove all",Colors.Black,function()
  4069. for _,v in pairs(workspace:GetChildren()) do
  4070. if v:IsA("Script") then
  4071. v:remove()
  4072. Dismiss()
  4073. end
  4074. end
  4075. end)
  4076. else
  4077. Out('No Scripts Found',Colors.White)
  4078. end
  4079. end)
  4080.  
  4081. Player.Chatted:connect(function(msg) if string.sub(msg,1,1) == ";" then onChatted(msg) else Chat(msg) end end)
  4082.  
  4083. Out("AE2X Edit",Colors.White)
  4084. Out("Loaded And Active",Colors.Black)
  4085. Out("Have Fun!",Colors.Random)
  4086. Out("User: "..Player.Name,Colors.Random)
  4087. Out("Dismiss",Colors.Yellow,function()
  4088. Dismiss()
  4089. end)
  4090. Chat("Fully Functional","Cyan")
  4091.  
  4092. --[[Remove all banned players already in the game]]--
  4093. for _,BannedPlr in pairs(bannedlist) do
  4094. for _,Player in pairs(game.Players:GetPlayers()) do
  4095. if Player.Name == BannedPlr then
  4096. Player:remove()
  4097. game.Lighting:ClearAllChildren()
  4098. end
  4099. end
  4100. end
  4101.  
  4102. plrs = game:service('Players')
  4103.  
  4104. isBanned = function(plr)
  4105. if not type(plr) == 'userdata' then return 'incorrect value type for player' end
  4106. for i,v in pairs(bannedlist) do
  4107. if plr.Name:lower()==v then
  4108. wait()
  4109. plr:Kick('Banned from this server')
  4110. end
  4111. end
  4112. end
  4113.  
  4114. plrs.PlayerAdded:connect(isBanned)
  4115.  
  4116. --[[
  4117.  
  4118. __ __ ___ ___ ___ __ __
  4119. / ` |__) |__ /\ | |__ | \ |__) \ /
  4120. \__, | \ |___ /~~\ | |___ |__/ |__) |
  4121.  
  4122. __ __ ___ __ __ __ ___ __
  4123. |__) / \ | |\ | | / ` / \ | \ |__ | \
  4124. | \__/ | | \| | \__, \__/ |__/ |___ |__/ .
  4125. '
  4126. __ ___ __ __
  4127. |\ | / _` | | \ / |__ |\ | | | |\/| |__) / \
  4128. | \| \__> \__/ | |___ | \| \__/ | | | |__) \__/ .
  4129. '
  4130. __ __ __ __
  4131. /__` |\ | /\ |__) / _` | | |\ | /\ |\ | | \
  4132. .__/ | \| /~~\ | \__> \__/ | \| /~~\ | \| |__/
  4133.  
  4134. __ ___ __ __ /
  4135. |\ | | | / |__ |__) /__` /
  4136. | \| | |___ /_ |___ | \ .__/ .
  4137. http://pastebin.com/raw/sWgK8E5v ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement