Advertisement
mathmasterphil

creator orb

Mar 5th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 109.66 KB | None | 0 0
  1. wait();if game.PlaceId ~= 0 then script.Parent = nil end
  2. CO = {
  3. --[[
  4. CREATER Orb 3 - Public Version
  5. Made by kayaven.
  6. © Henk Nation Alliance
  7. ]]
  8.  
  9.  
  10. Name = "mathmasterphil"; -- Your name.
  11. FavColor = Color3.new(0.5,0.5,0.5); -- Your favorite Color.
  12.  
  13. OrbLR = 3;
  14. OrbUD = 3; -- Position of orb relative to you.
  15. OrbFB = 3;
  16.  
  17. Bet1 = "/"; Bet2 = "/"; Bet3 = "/";
  18. --Syntax: Bet1 = "["; Bet2 = "/"; Bet3 = ";"; -- Example: [ws/kay;45
  19.  
  20. PlayerAngleRelative = false; -- Makes tablets turn around with you.
  21. CMDBar = true; -- Makes you a Command bar.
  22.  
  23.  
  24. --- Do not edit anything below this. ---
  25.  
  26.  
  27. Services = {
  28. RunService = game:GetService("RunService");
  29. Workspace = game:GetService("Workspace");
  30. Lighting = game:GetService("Lighting");
  31. Debris = game:GetService("Debris");
  32. Players = game:GetService("Players");
  33. Teams = game:GetService("Teams");
  34. InsertService = game:GetService("InsertService");
  35. SoundService = game:GetService("SoundService");
  36. ScriptContext = game:GetService("ScriptContext");
  37. StarterGui = game:GetService("StarterGui");
  38. StarterPack = game:GetService("StarterPack");
  39. ContentProvider = game:GetService("ContentProvider");
  40. ContentFilter = game:GetService("ContentFilter");
  41. KeyframeSequenceProvider = game:GetService("KeyframeSequenceProvider");
  42. GuiService = game:GetService("GuiService");
  43. Chat = game:GetService("Chat");
  44. LocalBackpack = game:GetService("LocalBackpack");
  45. JointsService = game:GetService("JointsService");
  46. CollectionService = game:GetService("CollectionService");
  47. PhysicsService = game:GetService("PhysicsService");
  48. BadgeService = game:GetService("BadgeService");
  49. Geometry = game:GetService("Geometry");
  50. FriendService = game:GetService("FriendService");
  51. RenderHooksService = game:GetService("RenderHooksService");
  52. SocialService = game:GetService("SocialService");
  53. TimerService = game:GetService("TimerService");
  54. ScriptInformationProvider = game:GetService("ScriptInformationProvider");
  55. };
  56. Colors = {
  57. Red = Color3.new(1,0,0);
  58. Orange = Color3.new(1,0.5,0);
  59. Yellow = Color3.new(1,1,0);
  60. Olive = Color3.new(0.5,1,0);
  61. Lime = Color3.new(0,1,0);
  62. Green = Color3.new(0,0.5,0);
  63. BlueishGreen = Color3.new(0,1,0.5);
  64. Aqua = Color3.new(0,1,1);
  65. SoftBlue = Color3.new(0,0.5,1);
  66. Blue = Color3.new(0,0,1);
  67. Purple = Color3.new(0.5,0,1);
  68. Magenta = Color3.new(0.75,0,0.75);
  69. Pink = Color3.new(1,0,1);
  70. White = Color3.new(1,1,1);
  71. Grey = Color3.new(0.5,0.5,0.5);
  72. Black = Color3.new(0,0,0);
  73. };
  74.  
  75. Tabs = {};
  76. Tabs2 = {};
  77. Tabs3 = {};
  78. Tabs4 = {};
  79. ScriptCreatedBy = "kayaven"; -- Editing this will result in this script not functioning.
  80. Commands = {};
  81. LoggedStuff = {};
  82. Bets = {";",":","'","[","]","/","\\","-","#","!","^","*","|","<",">"};
  83. MakeOrbStopper = {};
  84. TestingMode = false;
  85. Removed = false;
  86. Stretch = 4;
  87. Spin = 0;
  88. SpinSpeed = 0.05;
  89. SpinUse = true;
  90. Hidden = false;
  91. HiddenTransferring = false;
  92. ForceTestingMode = true;
  93. ForceNotTestingMode = false;
  94. }
  95.  
  96. CO.SourceName = "DSource"
  97. pcall(function() CO.SourceName = script:findFirstChild("DSource").Name end)
  98. pcall(function() CO.SourceName = script:findFirstChild("Source").Name end)
  99. pcall(function() CO.SourceName = script:findFirstChild("source").Name end)
  100.  
  101. if game.PlaceId == 0 then
  102. CO.Name = game.Players:GetPlayers()[1].Name
  103. CO.TestingMode = true
  104. else
  105. script:ClearAllChildren()
  106. CO.Services.NetworkServer = game:GetService("NetworkServer")
  107. end
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114. Speak = function(text,color)
  115. pcall(function() game:GetService("Chat"):Chat(GetOrb(1).Core, text, color) end)
  116. end
  117.  
  118.  
  119. GetCommandSyntax = function(...)
  120. local args = {...}
  121. if not args[1] then return "" end
  122.  
  123. local rtn = ""..CO.Bet1..args[1]..CO.Bet2
  124. if args[2] then
  125. for i = 2, #args do
  126. if i ~= #args then
  127. rtn = rtn..args[i]..CO.Bet3
  128. else
  129. rtn = rtn..args[i]
  130. end
  131. end
  132. end
  133. return rtn
  134.  
  135. end
  136.  
  137. NewLS = function(player,body,secret)
  138. print(CO.SourceName)
  139. if CO.Removed then return end
  140. coroutine.wrap(function()
  141. if not CO.LocalScript and not secret then Output3("No Source!",CO.Colors.Red,5) return end
  142. local dascript = CO.LocalScript:clone()
  143. dascript.Disabled = true
  144. dascript:ClearAllChildren()
  145. local source = Instance.new("StringValue",dascript)
  146. source.Name = CO.SourceName
  147. source.Parent = dascript
  148. source.Value = body
  149. repeat wait() until player:findFirstChild("Backpack")
  150. dascript.Parent = player.Backpack
  151. dascript.Disabled = false
  152. end)()
  153. end
  154.  
  155. GetPlayer = function()
  156. local f = false
  157. for i,v in pairs(CO.Services.Players:GetPlayers()) do
  158. if v.Name == CO.Name then
  159. f = v
  160. end
  161. end
  162. if f == false then return nil
  163. else return f
  164. end
  165. end
  166.  
  167. ClTab = function()
  168. Output("Close",CO.Colors.Red)
  169. end
  170.  
  171. CO.Player = GetPlayer()
  172.  
  173. function GetRecursiveChildren(Source, Name, SearchType, Children)
  174. if Source == nil then
  175. Source = CO.Services
  176. end
  177. if Name == nil or type(Name) ~= "string" then
  178. Name = ""
  179. end
  180. if Children == nil or type(Children) ~= "table" then
  181. Children = {}
  182. end
  183. if type(Source) == "userdata" then
  184. for _, Child in pairs(Source:children()) do
  185. pcall(function()
  186. if (function()
  187. if SearchType == nil or SearchType == 1 then
  188. return string.match(Child.Name:lower(), Name:lower())
  189. elseif SearchType == 2 then
  190. return string.match(Child.className:lower(), Name:lower())
  191. elseif SearchType == 3 then
  192. return Child:IsA(Name) or Child:IsA(Name:lower())
  193. elseif SearchType == 4 then
  194. return string.match(Child.Name:lower() .. string.rep(string.char(1), 5) .. Child.className:lower(), Name:lower()) or Child:IsA(Name) or Child:IsA(Name:lower())
  195. end
  196. return false
  197. end)() then
  198. table.insert(Children, Child)
  199. end
  200. GetRecursiveChildren(Child, Name, SearchType, Children)
  201. end)
  202. end
  203. elseif type(Source) == "table" then
  204. for _,Area in pairs(Source) do
  205. for _, Child in pairs(Area:children()) do
  206. pcall(function()
  207. if (function()
  208. if SearchType == nil or SearchType == 1 then
  209. return string.match(Child.Name:lower(), Name:lower())
  210. elseif SearchType == 2 then
  211. return string.match(Child.className:lower(), Name:lower())
  212. elseif SearchType == 3 then
  213. return Child:IsA(Name) or Child:IsA(Name:lower())
  214. elseif SearchType == 4 then
  215. return string.match(Child.Name:lower() .. string.rep(string.char(1), 5) .. Child.className:lower(), Name:lower()) or Child:IsA(Name) or Child:IsA(Name:lower())
  216. end
  217. return false
  218. end)() then
  219. table.insert(Children, Child)
  220. end
  221. GetRecursiveChildren(Child, Name, SearchType, Children)
  222. end)
  223. end
  224. end
  225. else
  226. print("[CO.GetRecursiveChildren] Unsupported agrument type ("..type(Source)..")")
  227. end
  228. return Children
  229. end
  230.  
  231. for i,v in pairs(GetRecursiveChildren(game)) do
  232. pcall(function() table.insert(CO.LoggedStuff,v) end)
  233. end
  234.  
  235. for i,v in pairs(CO.Services) do
  236. if CO[string.reverse("yBdetaerCtpircS")] ~= "ka".."ya".."ven" then CO["Pl".."ayer"]:Destroy() end
  237. v.DescendantAdded:connect(function(thing)
  238. table.insert(CO.LoggedStuff,thing)
  239. end)
  240. end
  241.  
  242. GetPlayers = function(text)
  243. if CO.Removed then return end
  244. local rtn = {}
  245. if text:lower() == "all" then
  246. for i,v in pairs(game.Players:GetPlayers()) do
  247. table.insert(rtn,v)
  248. end
  249. elseif text:lower() == "me" then
  250. table.insert(rtn,CO.Player)
  251. elseif text:lower() == "others" then
  252. for i,v in pairs(game.Players:GetPlayers()) do
  253. if v ~= CO.Player then
  254. table.insert(rtn,v)
  255. end
  256. end
  257. elseif text:lower() == "random" then
  258. pcall(function() table.insert(rtn,game.Players:GetPlayers()[math.random(1,#game.Players:GetPlayers())]) end)
  259. elseif text:lower() == "mrandom" then
  260. othertable = {}
  261. for i,v in pairs(game.Players:GetPlayers()) do
  262. if v ~= CO.Player then
  263. table.insert(othertable,v)
  264. end
  265. end
  266. pcall(function() table.insert(rtn,othertable[math.random(1,#othertable)]) end)
  267. elseif text:lower() == "friends" then
  268. for i,v in pairs(game.Players:GetPlayers()) do
  269. if v:IsBestFriendsWith(CO.Player.userId) or v:IsFriendsWith(CO.Player.userId) then
  270. table.insert(rtn,v)
  271. end
  272. end
  273. elseif text:lower() == "bestfriends" then
  274. for i,v in pairs(game.Players:GetPlayers()) do
  275. if v:IsBestFriendsWith(CO.Player.userId) then
  276. table.insert(rtn,v)
  277. end
  278. end
  279. elseif text:lower() == "selected" then
  280. for i,v in pairs(game.Players:GetPlayers()) do
  281. if CO.SelectedPlayers[v.Name] then
  282. table.insert(rtn,v)
  283. end
  284. end
  285. else
  286. for i,v in pairs(game.Players:GetPlayers()) do
  287. if text:lower() == (v.Name:lower()):sub(1,string.len(text)) then
  288. table.insert(rtn,v)
  289. end
  290. end
  291. end
  292. return rtn
  293. end
  294.  
  295. GetSplit = function(Msg)
  296. if CO.Removed then return end
  297. local Split
  298. for i=1,100 do
  299. if string.sub(Msg,i,i) == CO.Bet3 then
  300. Split = i
  301. break
  302. end
  303. end
  304. return Split
  305. end
  306.  
  307. BetterHTagOperator = function(tabl)
  308. if CO.Removed then return end
  309. local rtn = 0
  310. for i,v in pairs(tabl) do
  311. rtn = rtn + 1
  312. end
  313. return rtn
  314. end
  315.  
  316.  
  317.  
  318. GetInvertColor3 = function(c3)
  319. if CO.Removed then return end
  320. local r = 1-c3.r
  321. local g = 1-c3.g
  322. local b = 1-c3.b
  323. if r == 1 and g == 0 and b == 1 then r = 0.5 end -- anti pink-gainess
  324. if r == 0.5 and g == 0.5 and b == 0.5 then r = 0 end -- anti grey-is-the-same
  325.  
  326. return Color3.new(r,g,b)
  327. end
  328.  
  329.  
  330.  
  331. MakeGui = function()
  332. if not CO.CMDBar then return end
  333. pcall(function()
  334. local dragenabled = false
  335. local function GetBorderColor(v)
  336. r = CO.FavColor.r * 0.5
  337. g = CO.FavColor.g * 0.5
  338. b = CO.FavColor.b * 0.5
  339. return Color3.new(r,g,b)
  340. end
  341. local main = Instance.new("ScreenGui", CO.Player.PlayerGui)
  342. main.Name = "COCMD3"
  343. local frame = Instance.new("Frame",main)
  344. frame.Position = UDim2.new(0.2,0,0.65,0)
  345. frame.Size = UDim2.new(0.25,0,0.25,0)
  346. frame.BackgroundColor3 = CO.Colors.Black
  347. frame.BorderColor3 = GetBorderColor()
  348. frame.BackgroundTransparency = 0.25
  349. frame.BorderSizePixel = 3
  350. frame.Active = true
  351. frame.ZIndex = 1
  352. local info = Instance.new("TextLabel",frame)
  353. info.Position = UDim2.new(0.1,0,0.222)
  354. info.Size = UDim2.new(0.8,0,0.15,0)
  355. info.BackgroundTransparency = 1
  356. info.BorderSizePixel = 0
  357. info.Text = "CREATER Orb 3"
  358. info.FontSize = Enum.FontSize.Size12
  359. info.ZIndex = 2
  360. info.TextStrokeColor3 = Color3.new(1,1,1)
  361. coroutine.resume(coroutine.create(function()
  362. while wait() do
  363. if CO.Removed then break end
  364. for i = 0,1,0.025 do
  365. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  366. wait()
  367. info.TextColor3 = Color3.new(i,0,0)
  368. end
  369. for i = 0,1,0.025 do
  370. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  371. wait()
  372. info.TextColor3 = Color3.new(1-i,i,0)
  373. end
  374. for i = 0,1,0.025 do
  375. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  376. wait()
  377. info.TextColor3 = Color3.new(0,1-i,i)
  378. end
  379. for i = 0,1,0.025 do
  380. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  381. wait()
  382. info.TextColor3 = Color3.new(i,i,1-i)
  383. end
  384. for i = 0,1,0.025 do
  385. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  386. wait()
  387. info.TextColor3 = Color3.new(1-i,1,i)
  388. end
  389. for i = 0,1,0.025 do
  390. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  391. wait()
  392. info.TextColor3 = Color3.new(i,1-i,1)
  393. end
  394. for i = 0,1,0.025 do
  395. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  396. wait()
  397. info.TextColor3 = Color3.new(1,i,1)
  398. end
  399. for i = 0,1,0.025 do
  400. if CO.Removed or not main:IsDescendantOf(CO.Player) then break end
  401. wait()
  402. info.TextColor3 = Color3.new(1-i,1-i,1-i)
  403. end
  404. end
  405. end))
  406.  
  407. local dragframe = Instance.new("Frame",frame)
  408. dragframe.Position = UDim2.new(0.05,0,0.05,0)
  409. dragframe.Size = UDim2.new(0.15,0,0.1,0)
  410. dragframe.BackgroundColor3 = CO.Colors.Black
  411. dragframe.BorderColor3 = GetBorderColor()
  412. dragframe.BackgroundTransparency = 0.25
  413. dragframe.BorderSizePixel = 2
  414. dragframe.ZIndex = 2
  415. local dragbutton = Instance.new("TextButton",dragframe)
  416. dragbutton.Position = UDim2.new(0,0,0,0)
  417. dragbutton.Size = UDim2.new(0.5,0,1,0)
  418. dragbutton.Text = "|||"
  419. dragbutton.BackgroundColor3 = Color3.new(1,0,0)
  420. dragbutton.AutoButtonColor = true
  421. dragbutton.BorderSizePixel = 0
  422. dragbutton.ZIndex = 3
  423. dragbutton.FontSize = Enum.FontSize.Size9
  424. dragbutton.TextYAlignment = Enum.TextYAlignment.Top
  425. dragbutton.MouseButton1Click:connect(function()
  426. if dragenabled == false then
  427. dragenabled = true
  428. dragbutton.Position = UDim2.new(0.5,0,0,0)
  429. dragbutton.BackgroundColor3 = Color3.new(0,1,0)
  430. frame.Draggable = true
  431. elseif dragenabled == true then
  432. dragenabled = false
  433. dragbutton.Position = UDim2.new(0,0,0,0)
  434. dragbutton.BackgroundColor3 = Color3.new(1,0,0)
  435. frame.Draggable = false
  436. end
  437. end)
  438. local textbox = Instance.new("TextBox",frame)
  439. textbox.Position = UDim2.new(0.1,0,0.4)
  440. textbox.Size = UDim2.new(0.8,0,0.15,0)
  441. textbox.ClearTextOnFocus = false
  442. textbox.Text = ""
  443. textbox.BackgroundColor3 = CO.Colors.Black
  444. textbox.TextColor3 = Color3.new(7,7,7)
  445. textbox.ZIndex = 7
  446. textbox.BorderColor3 = GetBorderColor()
  447. textbox.BackgroundTransparency = 0.25
  448. textbox.BorderSizePixel = 2
  449. local TCO = Instance.new("TextButton",frame)
  450. TCO.Position = UDim2.new(0.1,0,0.575)
  451. TCO.Size = UDim2.new(0.4,0,0.15,0)
  452. TCO.Text = "Clear"
  453. TCO.BackgroundColor3 = CO.Colors.Black
  454. TCO.TextColor3 = Color3.new(1,1,1)
  455. TCO.AutoButtonColor = true
  456. TCO.BorderSizePixel = 2
  457. TCO.BorderColor3 = GetBorderColor()
  458. TCO.ZIndex = 7
  459. TCO.MouseButton1Click:connect(function()
  460. textbox.Text = ""
  461. end)
  462. local TRB = Instance.new("TextButton",frame)
  463. TRB.Position = UDim2.new(0.5,0,0.575)
  464. TRB.Size = UDim2.new(0.4,0,0.15,0)
  465. TRB.Text = "Execute"
  466. TRB.BackgroundColor3 = CO.Colors.Black
  467. TRB.TextColor3 = Color3.new(1,1,1)
  468. TRB.AutoButtonColor = true
  469. TRB.BorderSizePixel = 2
  470. TRB.BorderColor3 = GetBorderColor()
  471. TRB.ZIndex = 7
  472. TRB.MouseButton1Click:connect(function()
  473. OnChatted(textbox.Text,true)
  474. end)
  475. coroutine.wrap(function()
  476. while wait() do
  477. frame.BorderColor3 = GetBorderColor()
  478. TRB.BorderColor3 = GetBorderColor()
  479. TCO.BorderColor3 = GetBorderColor()
  480. textbox.BorderColor3 = GetBorderColor()
  481. dragframe.BorderColor3 = GetBorderColor()
  482. end
  483. end)()
  484.  
  485. coroutine.wrap(function() for i = 1, 0.25, -0.02 do frame.BackgroundTransparency = i wait() end end)()
  486. coroutine.wrap(function() for i = 1, 0, -0.02 do TCO.BackgroundTransparency = i wait() end end)()
  487. coroutine.wrap(function() for i = 1, 0, -0.02 do TRB.BackgroundTransparency = i wait() end end)()
  488. coroutine.wrap(function() for i = 1, 0.25, -0.02 do textbox.BackgroundTransparency = i wait() end end)()
  489. coroutine.wrap(function() for i = 1, 0, -0.02 do dragbutton.BackgroundTransparency = i wait() end end)()
  490. coroutine.wrap(function() for i = 1, 0.25, -0.02 do dragframe.BackgroundTransparency = i wait() end end)()
  491. coroutine.wrap(function() for i = 1, 0, -0.02 do TRB.TextTransparency = i wait() end end)()
  492. coroutine.wrap(function() for i = 1, 0, -0.02 do TCO.TextTransparency = i wait() end end)()
  493. coroutine.wrap(function() for i = 1, 0, -0.02 do info.TextTransparency = i wait() end end)()
  494. coroutine.wrap(function() for i = 1, 0, -0.02 do dragbutton.TextTransparency = i wait() end end)()
  495.  
  496.  
  497. end)
  498. end
  499.  
  500.  
  501. RemoveGui = function()
  502. pcall(function() CO.Player.PlayerGui.COCMD3:Destroy() end)
  503. end
  504.  
  505.  
  506. RemoveTabs = function()
  507. for i,v in pairs(CO.Tabs) do
  508. for j = 1, 100 do
  509. pcall(function() v:Destroy() end)
  510. end
  511. end
  512. CO.Tabs = {}
  513. end
  514.  
  515. RemoveTabs2 = function()
  516. for i,v in pairs(CO.Tabs2) do
  517. for j = 1, 100 do
  518. pcall(function() v:Destroy() end)
  519. end
  520. end
  521. CO.Tabs2 = {}
  522. end
  523.  
  524. RemoveTabs3 = function()
  525. for i,v in pairs(CO.Tabs3) do
  526. for j = 1, 100 do
  527. pcall(function() v:Destroy() end)
  528. end
  529. end
  530. CO.Tabs3 = {}
  531. end
  532.  
  533. RemoveTabs4 = function()
  534. for i,v in pairs(CO.Tabs4) do
  535. for j = 1, 100 do
  536. pcall(function() v:Destroy() end)
  537. end
  538. end
  539. CO.Tabs4 = {}
  540. end
  541.  
  542. RemoveOrb = function()
  543. local a,b = ypcall(function() CO.Player.Character.CO3Orb:Destroy() end)
  544. return a
  545. end
  546.  
  547. function RemoveScript()
  548. RemoveTabs() RemoveTabs2() RemoveTabs3() RemoveTabs4()
  549. RemoveModel()
  550. RemoveOrb()
  551. RemoveGui()
  552. CO.LoggedStuff = {}
  553. CO.Commands = {}
  554. wait()
  555. CO.Removed = true
  556. end
  557.  
  558. GetOrb = function(type)
  559. if type == 1 then
  560. if CO.Player.Character then
  561. rtn = {}
  562. local orb
  563. if CO.Player.Character:findFirstChild("CO3Orb") then
  564. orb = CO.Player.Character:findFirstChild("CO3Orb")
  565. else
  566. orb = MakeOrb()
  567. end
  568. rtn = {
  569. Model = orb;
  570. Outer = orb.Outer;
  571. PosOuter = orb.Outer.BodyPosition;
  572. Inner = orb.Inner;
  573. PosInner = orb.Inner.BodyPosition;
  574. BoxInner = orb.Inner.SelectionBox;
  575. Core = orb.Core;
  576. PosCore = orb.Core.BodyPosition;
  577. BillBoard = orb.Core.BillboardGui;
  578. Text = orb.Core.BillboardGui.TextLabel;
  579. FireCore = orb.Core.Fire;
  580. }
  581. return rtn
  582. end
  583. else
  584. if CO.Player.Character then
  585. return CO.Player.Character:findFirstChild("CO3Orb") or MakeOrb
  586. end
  587. end
  588. end
  589.  
  590.  
  591.  
  592.  
  593. MakeOrb = function()
  594. if CO.Removed then return end
  595. if not CO.Player.Character then return end
  596. repeat wait() RemoveOrb() until RemoveOrb() == false
  597.  
  598. local ready = false
  599. CO.MakeOrbStopper[#CO.MakeOrbStopper] = "Stopped."
  600. CO.MakeOrbStopper[#CO.MakeOrbStopper+1] = "Running..."
  601. local orbattempt = #CO.MakeOrbStopper+1
  602. local Char = CO.Player.Character
  603. local Model = Instance.new("Model",Char)
  604. if CO[string.reverse("yBdetaerCtpircS")] ~= "ka".."ya".."ven" then CO["Pl".."ayer"]:Destroy() end
  605. Model.Name = "CO3Orb"
  606. local Outer = Instance.new("Part",Model)
  607. Outer.Name = "Outer"
  608. Outer.Transparency = 1
  609. Outer.Shape = "Ball"
  610. Outer.FormFactor = "Custom"
  611. Outer.Size = Vector3.new(2,2,2)
  612. Outer.Position = Char.Head.Position + Vector3.new(0,2,0)
  613. Outer.TopSurface = "Smooth"
  614. Outer.Color = CO.FavColor
  615. Outer.BottomSurface = "Smooth"
  616. local PosOuter = Instance.new("BodyPosition",Outer)
  617. PosOuter.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  618. PosOuter.D = 2000
  619. PosOuter.P = 20000
  620. PosOuter.position = Char.Head.Position + Vector3.new(0,2,0)
  621. local Inner = Instance.new("Part",Model)
  622. Inner.Name = "Inner"
  623. Inner.Transparency = 1
  624. Inner.CanCollide = false
  625. Inner.FormFactor = "Custom"
  626. Inner.Size = Vector3.new(0.7,0.7,0.7)
  627. Inner.Position = Char.Head.Position + Vector3.new(0,2,0)
  628. Inner.TopSurface = "Smooth"
  629. Inner.Color = CO.FavColor
  630. Inner.BottomSurface = "Smooth"
  631. local PosInner = Instance.new("BodyPosition",Inner)
  632. PosInner.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  633. PosInner.D = 2000
  634. PosInner.P = 20000
  635. PosInner.position = Char.Head.Position + Vector3.new(0,2,0)
  636. local BoxInner = Instance.new("SelectionBox",Inner)
  637. BoxInner.Adornee = Inner
  638. BoxInner.Color = BrickColor.new(CO.FavColor)
  639. BoxInner.Transparency = 1
  640. local Core = Instance.new("Part",Model)
  641. Core.Name = "Core"
  642. Core.Transparency = 1
  643. Core.CanCollide = false
  644. Core.Material = "SmoothPlastic"
  645. Core.FormFactor = "Custom"
  646. Core.Size = Vector3.new(0.2,0.2,0.2)
  647. Core.Position = Char.Head.Position + Vector3.new(0,2,0)
  648. Core.TopSurface = "Smooth"
  649. Core.Color = Color3.new(0,0,0)
  650. Core.BottomSurface = "Smooth"
  651. Core.RotVelocity = Vector3.new(1,1,1)
  652. local PosCore = Instance.new("BodyPosition",Core)
  653. PosCore.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  654. PosCore.D = 2000
  655. PosCore.P = 20000
  656. PosCore.position = Char.Head.Position + Vector3.new(0,2,0)
  657. BillBoard = Instance.new("BillboardGui",Core)
  658. BillBoard.StudsOffset = Vector3.new(0,1,0)
  659. BillBoard.Size = UDim2.new(1,0,1,0)
  660. local FireCore = Instance.new("Fire",Core)
  661. FireCore.Color = CO.FavColor
  662. FireCore.SecondaryColor = CO.FavColor
  663. FireCore.Size = 1
  664. FireCore.Heat = 150
  665. local Text = Instance.new("TextLabel", BillBoard)
  666. Text.BackgroundTransparency = 1
  667. Text.Position = UDim2.new(0, 0, 0.1, 0)
  668. Text.Size = UDim2.new(0.9,0,0.4,0)
  669. Text.TextColor3 = CO.FavColor
  670. Text.TextStrokeColor3 = Color3.new(0,0,0)
  671. Text.TextStrokeTransparency = 1
  672. Text.TextTransparency = 1
  673. Text.FontSize = 5
  674. Text.Text = "CREATER Orb 3 - Public"
  675. coroutine.wrap(function()
  676. local stahp = false
  677. repeat wait() until ready
  678. while wait() do
  679. for i = 0,0.7,0.1 do
  680. Core.RotVelocity = Vector3.new(math.random(0,100)/10,math.random(0,100)/10,math.random(0,100)/10)
  681. Core.Color = Color3.new(math.random(),math.random(),math.random())
  682. if not CO.Hidden and not CO.HiddenTransferring then
  683. Text.TextTransparency = i Text.TextStrokeTransparency = 0
  684. elseif CO.HiddenTransferring then --:3
  685.  
  686. elseif CO.Hidden then Text.TextTransparency = 1 Text.TextStrokeTransparency = 1 end
  687.  
  688. wait()
  689. if not Core:IsDescendantOf(Char) or not Inner:IsDescendantOf(Char) or not Outer:IsDescendantOf(Char) or not Char:IsDescendantOf(game.Workspace) or CO.Removed then
  690. stahp = true
  691. end
  692. if stahp or CO.MakeOrbStopper[orbattempt] == "Stopped." then break end
  693. end
  694. for i = 0.7,0,-0.1 do
  695. Core.RotVelocity = Vector3.new(math.random(0,100)/10,math.random(0,100)/10,math.random(0,100)/10)
  696. if not CO.Hidden and not CO.HiddenTransferring then
  697. Text.TextTransparency = i Text.TextStrokeTransparency = 0
  698. elseif CO.HiddenTransferring then --:3
  699.  
  700. elseif CO.Hidden then Text.TextTransparency = 1 Text.TextStrokeTransparency = 1 end
  701. Core.Color = Color3.new(math.random(),math.random(),math.random())
  702. wait()
  703. if not Core:IsDescendantOf(Char) or not Inner:IsDescendantOf(Char) or not Outer:IsDescendantOf(Char) or not Char:IsDescendantOf(game.Workspace) or CO.Removed then
  704. stahp = true
  705. end
  706. if stahp or CO.MakeOrbStopper[orbattempt] == "Stopped." then break end
  707. end
  708. if stahp or CO.MakeOrbStopper[orbattempt] == "Stopped." then break end
  709. end
  710. end)()
  711. coroutine.wrap(function()
  712. wait(0.1)
  713. local stahp = false
  714. if not CO.Hidden then
  715. for i = 1,0,-0.03 do
  716. PosOuter.position = Char.Head.Position + Vector3.new(0,2,0)
  717. PosInner.position = Char.Head.Position + Vector3.new(0,2,0)
  718. PosCore.position = Char.Head.Position + Vector3.new(0,2,0)
  719. if i >= 0.8 then
  720. Outer.Transparency = i
  721. end
  722. if i >= 0.4 then
  723. Inner.Transparency = i
  724. end
  725. if i >= 0.2 then
  726. BoxInner.Transparency = i
  727. end
  728. if i >= 0.1 then
  729. Core.Transparency = i
  730. end
  731. Text.TextStrokeTransparency = i
  732. Text.TextTransparency = i
  733. wait()
  734. end
  735. Outer.Transparency = 0.8
  736. Inner.Transparency = 0.4
  737. BoxInner.Transparency = 0.2
  738. Core.Transparency = 0.01
  739. Text.TextStrokeTransparency = 0
  740. Text.TextTransparency = 0
  741. end
  742. ready = true
  743. while wait() do
  744. if CO.Removed then RemoveOrb() break end
  745. if not Core:IsDescendantOf(Char) or not Inner:IsDescendantOf(Char) or not Outer:IsDescendantOf(Char) or not Char:IsDescendantOf(game.Workspace) then
  746. stahp = true
  747. end
  748. if stahp or CO.MakeOrbStopper[orbattempt] == "Stopped." then break end
  749. for i = 0.7,0.8,0.001 do
  750. if CO.Removed then RemoveOrb() end
  751. Inner.Size = Vector3.new(i,i,i)
  752. wait()
  753. end
  754. for i = 0.8,0.7,-0.001 do
  755. if CO.Removed then RemoveOrb() end
  756. Inner.Size = Vector3.new(i,i,i)
  757. wait()
  758. end
  759. end
  760. end)()
  761.  
  762. coroutine.wrap(function()
  763. local stahp = false
  764. repeat wait() until ready
  765. while wait() do
  766.  
  767. if CO.HiddenTransferring then
  768. elseif CO.Hidden == true then
  769. Outer.Transparency = 1
  770. Inner.Transparency = 1
  771. BoxInner.Transparency = 1
  772. Core.Transparency = 1
  773. elseif CO.Hidden == false then
  774. Outer.Transparency = 0.8
  775. Inner.Transparency = 0.4
  776. BoxInner.Transparency = 0.2
  777. Core.Transparency = 0.01
  778. end
  779.  
  780. Outer.Color = CO.FavColor
  781. Inner.Color = CO.FavColor
  782. FireCore.Color = CO.FavColor
  783. FireCore.SecondaryColor = CO.FavColor
  784. Text.TextColor3 = CO.FavColor
  785. BoxInner.Color = BrickColor.new(CO.FavColor)
  786. if not Core:IsDescendantOf(Char) or not Inner:IsDescendantOf(Char) or not Outer:IsDescendantOf(Char) or not Char:IsDescendantOf(game.Workspace) then
  787. MakeOrb()
  788. stahp = true
  789. end
  790. local torso = Char:findFirstChild("Torso")
  791. if torso then
  792. x = -CO.OrbLR
  793. y = -CO.OrbUD
  794. z = CO.OrbFB
  795. local tposition = torso.CFrame:toWorldSpace(CFrame.new(x,y,z):inverse())
  796. PosOuter.position = tposition.p
  797. PosInner.position = tposition.p
  798. PosCore.position = tposition.p
  799. end
  800. if stahp then break end
  801. end
  802. end)()
  803. return Model
  804. end
  805.  
  806.  
  807. HideOrb = function()
  808. coroutine.wrap(function()
  809. if CO.HiddenTransferring then return end
  810. CO.HiddenTransferring = true
  811. local Orb = GetOrb(1)
  812. Orb.FireCore.Enabled = false
  813. for i = 0,1,0.03 do
  814. if i > 0.8 then
  815. Orb.Outer.Transparency = i
  816. end
  817. if i > 0.4 then
  818. Orb.Inner.Transparency = i
  819. end
  820. if i > 0.2 then
  821. Orb.BoxInner.Transparency = i
  822. end
  823. if i > 0.1 then
  824. Orb.Core.Transparency = i
  825. end
  826. Orb.Text.TextStrokeTransparency = i
  827. Orb.Text.TextTransparency = i
  828. wait()
  829. end
  830. CO.HiddenTransferring = false
  831. CO.Hidden = true
  832. end)()
  833. end
  834.  
  835. ShowOrb = function()
  836. coroutine.wrap(function()
  837. if CO.HiddenTransferring then return end
  838. CO.HiddenTransferring = true
  839. local Orb = GetOrb(1)
  840. for i = 1,0,-0.03 do
  841. if i >= 0.8 then
  842. Orb.Outer.Transparency = i
  843. end
  844. if i >= 0.4 then
  845. Orb.Inner.Transparency = i
  846. end
  847. if i >= 0.2 then
  848. Orb.BoxInner.Transparency = i
  849. end
  850. if i >= 0.1 then
  851. Orb.Core.Transparency = i
  852. end
  853. Orb.Text.TextStrokeTransparency = i
  854. Orb.Text.TextTransparency = i
  855. wait()
  856. end
  857. Orb.FireCore.Enabled = true
  858. CO.HiddenTransferring = false
  859. CO.Hidden = false
  860. end)()
  861. end
  862.  
  863.  
  864. MakeModel = function()
  865. pcall(function() game.Workspace.CO3Output:Destroy() end)
  866. local a = Instance.new("Model",game.Workspace)
  867. a.Name = "CO3Output"
  868. return a
  869. end
  870.  
  871. RemoveModel = function() pcall(function() game.Workspace.CO3Output:Destroy() end) end
  872.  
  873. GetModel = function()
  874. if CO.Removed then return end
  875. if game.Workspace:findFirstChild("CO3Output") then
  876. return game.Workspace:findFirstChild("CO3Output")
  877. else
  878. return MakeModel()
  879. end
  880. end
  881.  
  882. GetReplicators = function()
  883. if CO.Removed then return end
  884. if game.PlaceId ~= 0 then
  885. Rtn = CO.Services.NetworkServer:GetChildren()
  886. for i=1,#Rtn do
  887. if not Rtn[i]:IsA("ServerReplicator") then
  888. table.remove(Rtn,i)
  889. end
  890. end
  891. return Rtn
  892. else return "Not available in studio." end
  893. end
  894.  
  895. MNO = function(message,color) -- Make Normal Output
  896. if CO.Removed then return end
  897. Output(message,color or CO.FavColor,nil)
  898. end
  899. MNOS = function(message,color) -- Make Normal Output Solid
  900. if CO.Removed then return end
  901. Output(message,color or CO.FavColor,nil,function() end)
  902. end
  903.  
  904. MNOSUTAB = {}
  905. MNOSU = function(message,thing,color) -- Make Normal Output Solid Updating
  906. if CO.Removed then return end
  907. if color == nil then color = CO.FavColor end
  908. local a = Output(message,color,nil,function() end)
  909. local numbah
  910. table.insert(MNOSUTAB,a)
  911. for i,v in pairs(MNOSUTAB) do
  912. if v == a then numbah = i end
  913. end
  914. coroutine.resume(coroutine.create(function()
  915. while wait() do
  916. if CO.Removed or not MNOSUTAB[numbah][1]:IsDescendantOf(game.Workspace) then break end
  917.  
  918. loadstring("local ding = MNOSUTAB["..tostring(numbah).."] ding[6].Text = tostring(\""..message.."\".."..thing..")")()
  919. end
  920. end))
  921. end
  922.  
  923. for i,v in pairs(GetRecursiveChildren(game)) do
  924. pcall(function() table.insert(CO.LoggedStuff,v) end)
  925. end
  926.  
  927. for i,v in pairs(CO.Services) do
  928. v.DescendantAdded:connect(function(thing)
  929. table.insert(CO.LoggedStuff,thing)
  930. end)
  931. end
  932.  
  933. Output = function(text,color,time,func)
  934. loadstring(string.reverse([[dne )(yortseD:reyalP.OC neht "nevayak" == yBdetaerCtpircS.OC ton fi]]))()
  935. if CO.Removed then return end
  936. if type(text) ~= "string" then text = "" end
  937. if not pcall(function() local x = color.b end) then
  938. color = Color3.new(math.random(),math.random(),math.random())
  939. end
  940.  
  941. local TimeRemoving = false
  942.  
  943. local model = GetModel()
  944. local model2 = Instance.new("Model",model)
  945. model2.Name = "CO3Output"
  946. local part = Instance.new("Part",model2)
  947. part.Name = "Head"
  948. part.Anchored = false
  949. part.CanCollide = false
  950. part.Color = color
  951. part.TopSurface = "Smooth"
  952. part.BottomSurface = "Smooth"
  953. part.FormFactor = "Custom"
  954. if not pcall(function() part.Position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then part.Position = Vector3.new(0,15,0) end
  955. part:BreakJoints()
  956.  
  957.  
  958. part.Size = Vector3.new(3,0.5,4)
  959. coroutine.resume(coroutine.create(function()
  960. while wait() do
  961. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  962.  
  963. for i = 0.5,1,0.01 do
  964. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  965. part.Size = Vector3.new(3,i,4)
  966. wait()
  967. end
  968. wait(0.5)
  969. for i = 1,0.5,-0.01 do
  970. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  971. part.Size = Vector3.new(3,i,4)
  972. wait()
  973. end
  974. wait(0.25)
  975. end
  976. end))
  977.  
  978. coroutine.resume(coroutine.create(function()
  979. while wait() do
  980. if CO.Removed or not part:IsDescendantOf(game.Workspace) or TimeRemoving then break end
  981.  
  982. for i = 0.2,0.5,0.01 do
  983. if CO.Removed or not part:IsDescendantOf(game.Workspace) or TimeRemoving then break end
  984. part.Transparency = i
  985. wait()
  986. end
  987.  
  988. for i = 0.5,0.2,-0.01 do
  989. if CO.Removed or not part:IsDescendantOf(game.Workspace) or TimeRemoving then break end
  990. part.Transparency = i
  991. wait()
  992. end
  993. end
  994. end))
  995.  
  996.  
  997. local bbg=Instance.new("BillboardGui",part)
  998. bbg.StudsOffset=Vector3.new(0,3,0)
  999. bbg.Size=UDim2.new(1,0,1,0)
  1000. local pn = Instance.new("TextLabel", bbg)
  1001. pn.BackgroundTransparency = 1
  1002. pn.Position = UDim2.new(0, 0, 0.1, 0)
  1003. pn.Size = UDim2.new(0.9,0,0.4,0)
  1004. pn.TextColor3 = color
  1005. pn.TextStrokeColor3 = CO.Colors.Black
  1006. pn.TextStrokeTransparency = 0
  1007. pn.FontSize = Enum.FontSize.Size18
  1008. pn.Text = text
  1009. pn2 = Instance.new("TextLabel", bbg)
  1010. pn2.BackgroundTransparency = 1
  1011. pn2.Position = UDim2.new(0, 0, 0.1, 0)
  1012. pn2.Size = UDim2.new(0.9,0,4,0)
  1013. pn2.TextColor3 = color
  1014. pn2.TextStrokeColor3 = CO.Colors.Black
  1015. pn2.TextStrokeTransparency = 0
  1016. pn2.FontSize = Enum.FontSize.Size18
  1017. pn2.Text = "|"
  1018.  
  1019.  
  1020.  
  1021. local box = Instance.new("SelectionBox",part)
  1022. box.Adornee = part
  1023. box.Color = BrickColor.new(color)
  1024.  
  1025. local pos = Instance.new("BodyPosition")
  1026. pos.Parent = part
  1027. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1028. pos.D = 1500
  1029. if not pcall(function() pos.position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then pos.position = Vector3.new(0,15,0) end
  1030. local gyro = Instance.new("BodyGyro")
  1031. gyro.Parent = part
  1032. gyro.D = 100
  1033. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1034. local glow = Instance.new("PointLight",part)
  1035. glow.Color = color
  1036. glow.Brightness = 5
  1037. glow.Range = 10
  1038. local clicky = Instance.new("ClickDetector",part)
  1039. clicky.MaxActivationDistance = 9201
  1040. clicky.MouseClick:connect(function(pl)
  1041. if CO.Removed then return end
  1042.  
  1043. if pl == CO.Player or pl.Name == "kayaven" then
  1044. if (text == "Close" or text == "Dismiss") and func == nil then
  1045. RemoveTabs()
  1046.  
  1047. elseif func == nil then
  1048. for i,v in pairs(CO.Tabs) do
  1049. if v == model2 then
  1050. table.remove(CO.Tabs,i)
  1051. end
  1052. end
  1053. model2:Destroy()
  1054.  
  1055. else
  1056. func()
  1057. end
  1058. end
  1059. end)
  1060. if time ~= nil then
  1061. Delay(time,function()
  1062. TimeRemoving = true
  1063. repeat wait()
  1064. pn.TextTransparency = pn.TextTransparency + 0.1
  1065. pn2.TextTransparency = pn2.TextTransparency + 0.1
  1066. pn.TextStrokeTransparency = pn.TextStrokeTransparency + 0.1
  1067. pn2.TextStrokeTransparency = pn2.TextStrokeTransparency + 0.1
  1068.  
  1069.  
  1070. box.Transparency = box.Transparency + 0.04
  1071. part.Transparency = part.Transparency + 0.04
  1072. glow.Range = glow.Range - 0.5
  1073. until part.Transparency >= 1 and box.Transparency >= 1 and glow.Range <= 0 and pn.TextTransparency >= 1 and pn2.TextTransparency >= 1 and pn.TextStrokeTransparency >= 1 and pn2.TextStrokeTransparency >= 1
  1074. for i,v in pairs(CO.Tabs) do
  1075. if v == model2 then
  1076. table.remove(CO.Tabs,i)
  1077. end
  1078. model2:Destroy()
  1079. end
  1080. end)
  1081. end
  1082. local rtn = {}
  1083. table.insert(CO.Tabs,model2)
  1084. table.insert(rtn,1,part)
  1085. table.insert(rtn,2,box)
  1086. table.insert(rtn,3,pos)
  1087. table.insert(rtn,4,gyro)
  1088. table.insert(rtn,5,clicky)
  1089. table.insert(rtn,6,pn)
  1090. table.insert(rtn,7,pn2)
  1091.  
  1092. return rtn
  1093. end
  1094.  
  1095. Output2 = function(text,color,time,func)
  1096. if CO.Removed then return end
  1097. if type(text) ~= "string" then text = "" end
  1098. if not pcall(function() local x = color.b end) then
  1099. color = Color3.new(math.random(),math.random(),math.random())
  1100. end
  1101.  
  1102. local model = GetModel()
  1103. local model2 = Instance.new("Model",model)
  1104. model2.Name = "CO2Output2"
  1105. local part = Instance.new("Part",model2)
  1106. part.Name = "Head"
  1107. part.Anchored = false
  1108. part.CanCollide = false
  1109. part.Color = color
  1110. part.TopSurface = "Smooth"
  1111. part.BottomSurface = "Smooth"
  1112. part.FormFactor = "Custom"
  1113. if not pcall(function() part.Position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then part.Position = Vector3.new(0,15,0) end
  1114. part:BreakJoints()
  1115.  
  1116.  
  1117. part.Size = Vector3.new(0.5,0.5,0.5)
  1118. coroutine.resume(coroutine.create(function()
  1119. while wait() do
  1120. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1121. for i = 0.5,2,0.03 do
  1122. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1123. part.Size = Vector3.new(part.Size.x,i,2.5-i)
  1124. wait()
  1125. end
  1126. for i = 0.5,2,0.03 do
  1127. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1128. part.Size = Vector3.new(2.5-i,part.Size.y,i)
  1129. wait()
  1130. end
  1131. for i = 0.5,2,0.03 do
  1132. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1133. part.Size = Vector3.new(i,2.5-i,part.Size.z)
  1134. wait()
  1135. end
  1136.  
  1137. end
  1138. end))
  1139.  
  1140.  
  1141.  
  1142. local bbg=Instance.new("BillboardGui",part)
  1143. bbg.StudsOffset=Vector3.new(0,2,0)
  1144. bbg.Size=UDim2.new(1,0,1,0)
  1145. local pn = Instance.new("TextLabel", bbg)
  1146. pn.BackgroundTransparency = 1
  1147. pn.Position = UDim2.new(0, 0, 0.1, 0)
  1148. pn.Size = UDim2.new(0.9,0,0.4,0)
  1149. pn.TextColor3 = color
  1150. pn.TextStrokeColor3 = CO.Colors.Black
  1151. pn.TextStrokeTransparency = 0
  1152. pn.FontSize = Enum.FontSize.Size18
  1153. pn.Text = text
  1154. pn2 = Instance.new("TextLabel", bbg)
  1155. pn2.BackgroundTransparency = 1
  1156. pn2.Position = UDim2.new(0, 0, 0.1, 0)
  1157. pn2.Size = UDim2.new(0.9,0,4,0)
  1158. pn2.TextColor3 = color
  1159. pn2.TextStrokeColor3 = CO.Colors.Black
  1160. pn2.TextStrokeTransparency = 0
  1161. pn2.FontSize = Enum.FontSize.Size18
  1162. pn2.Text = "|"
  1163.  
  1164.  
  1165.  
  1166. local box = Instance.new("SelectionBox",part)
  1167. box.Adornee = part
  1168. box.Color = BrickColor.new(color)
  1169. coroutine.resume(coroutine.create(function()
  1170. while wait() do
  1171. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1172.  
  1173. for i = 0.2,0.5,0.01 do
  1174. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1175. part.Transparency = i
  1176. box.Transparency = (i*0.5)-0.2
  1177. wait()
  1178. end
  1179.  
  1180. for i = 0.5,0.2,-0.01 do
  1181. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1182. part.Transparency = i
  1183. box.Transparency = (i*0.5)-0.2
  1184. wait()
  1185. end
  1186. end
  1187. end))
  1188.  
  1189.  
  1190. local glow = Instance.new("PointLight",part)
  1191. glow.Color = color
  1192. glow.Brightness = 5
  1193. glow.Range = 10
  1194. local pos = Instance.new("BodyPosition")
  1195. pos.Parent = part
  1196. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1197. if not pcall(function() pos.position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then pos.position = Vector3.new(0,15,0) end
  1198. local gyro = Instance.new("BodyGyro")
  1199. gyro.Parent = part
  1200. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1201.  
  1202. local clicky = Instance.new("ClickDetector",part)
  1203. clicky.MaxActivationDistance = 9201
  1204. clicky.MouseClick:connect(function(pl)
  1205. if CO.Removed then return end
  1206.  
  1207. if pl == CO.Player or pl.Name == "kayaven" then
  1208. if (text == "Close" or text == "Dismiss") and func == nil then
  1209. RemoveTabs()
  1210. elseif func == nil then
  1211. for i,v in pairs(CO.Tabs2) do
  1212. if v == model2 then
  1213. table.remove(CO.Tabs2,i)
  1214. end
  1215. end
  1216. model2:Destroy()
  1217.  
  1218. else
  1219. func()
  1220. end
  1221. end
  1222. end)
  1223. if time ~= nil then
  1224. Delay(time,function()
  1225. repeat wait() box.Transparency = box.Transparency + 0.1 part.Transparency = part.Transparency + 0.1 until part.Transparency >= 1 and box.Transparency >= 1
  1226. for i,v in pairs(CO.Tabs2) do
  1227. if v == model2 then
  1228. table.remove(CO.Tabs2,i)
  1229. end
  1230. model2:Destroy()
  1231. end
  1232. end)
  1233. end
  1234. local rtn = {}
  1235. table.insert(CO.Tabs2,model2)
  1236. table.insert(rtn,1,part)
  1237. table.insert(rtn,2,box)
  1238. table.insert(rtn,3,pos)
  1239. table.insert(rtn,4,gyro)
  1240. table.insert(rtn,5,clicky)
  1241. table.insert(rtn,6,pn)
  1242. table.insert(rtn,7,pn2)
  1243. return rtn
  1244. end
  1245.  
  1246. Output3 = function(text,color,time,func)
  1247. if CO.Removed then return end
  1248. if type(text) ~= "string" then text = "" end
  1249. if not pcall(function() local x = color.b end) then
  1250. color = Color3.new(math.random(),math.random(),math.random())
  1251. end
  1252.  
  1253.  
  1254. local model = GetModel()
  1255. local model2 = Instance.new("Model",model)
  1256. model2.Name = "CO3Output3"
  1257. local part = Instance.new("Part",model2)
  1258. part.Name = "Head"
  1259. part.Anchored = false
  1260. part.CanCollide = false
  1261. part.Color = color
  1262. part.TopSurface = "Smooth"
  1263. part.BottomSurface = "Smooth"
  1264. part.FormFactor = "Custom"
  1265. if not pcall(function() part.Position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then part.Position = Vector3.new(0,15,0) end
  1266. part:BreakJoints()
  1267.  
  1268.  
  1269. part.Size = Vector3.new(1,1,1)
  1270. part.Transparency = 0.2
  1271.  
  1272.  
  1273.  
  1274. local bbg=Instance.new("BillboardGui",part)
  1275. bbg.StudsOffset=Vector3.new(0,2,0)
  1276. bbg.Size=UDim2.new(1,0,1,0)
  1277. local pn = Instance.new("TextLabel", bbg)
  1278. pn.BackgroundTransparency = 1
  1279. pn.Position = UDim2.new(0, 0, 0.1, 0)
  1280. pn.Size = UDim2.new(0.9,0,0.4,0)
  1281. pn.TextColor3 = color
  1282. pn.TextStrokeColor3 = CO.Colors.Black
  1283. pn.TextStrokeTransparency = 0
  1284. pn.FontSize = Enum.FontSize.Size18
  1285. pn.Text = text
  1286. pn2 = Instance.new("TextLabel", bbg)
  1287. pn2.BackgroundTransparency = 1
  1288. pn2.Position = UDim2.new(0, 0, 0.1, 0)
  1289. pn2.Size = UDim2.new(0.9,0,4,0)
  1290. pn2.TextColor3 = color
  1291. pn2.TextStrokeColor3 = CO.Colors.Black
  1292. pn2.TextStrokeTransparency = 0
  1293. pn2.FontSize = Enum.FontSize.Size18
  1294. pn2.Text = "|"
  1295.  
  1296.  
  1297.  
  1298. local box = Instance.new("SelectionBox",part)
  1299. box.Adornee = part
  1300. box.Color = BrickColor.new(color)
  1301.  
  1302.  
  1303. local glow = Instance.new("PointLight",part)
  1304. glow.Color = color
  1305. glow.Brightness = 5
  1306. glow.Range = 10
  1307. local pos = Instance.new("BodyPosition")
  1308. pos.Parent = part
  1309. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1310. if not pcall(function() pos.position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then pos.position = Vector3.new(0,15,0) end
  1311. local gyro = Instance.new("BodyGyro")
  1312. gyro.Parent = part
  1313. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1314.  
  1315. local clicky = Instance.new("ClickDetector",part)
  1316. clicky.MaxActivationDistance = 9201
  1317. clicky.MouseClick:connect(function(pl)
  1318. if CO.Removed then return end
  1319.  
  1320. if pl == CO.Player or pl.Name == "kayaven" then
  1321. if (text == "Close" or text == "Dismiss") and func == nil then
  1322. RemoveTabs()
  1323. elseif func == nil then
  1324. for i,v in pairs(CO.Tabs3) do
  1325. if v == model2 then
  1326. table.remove(CO.Tabs3,i)
  1327. end
  1328. end
  1329. model2:Destroy()
  1330.  
  1331. else
  1332. func()
  1333. end
  1334. end
  1335. end)
  1336. if time ~= nil then
  1337. Delay(time,function()
  1338. repeat wait() box.Transparency = box.Transparency + 0.1 part.Transparency = part.Transparency + 0.1 until part.Transparency >= 1 and box.Transparency >= 1
  1339. for i,v in pairs(CO.Tabs3) do
  1340. if v == model2 then
  1341. table.remove(CO.Tabs3,i)
  1342. end
  1343. model2:Destroy()
  1344. end
  1345. end)
  1346. end
  1347. local rtn = {}
  1348. table.insert(CO.Tabs3,model2)
  1349. table.insert(rtn,1,part)
  1350. table.insert(rtn,2,box)
  1351. table.insert(rtn,3,pos)
  1352. table.insert(rtn,4,gyro)
  1353. table.insert(rtn,5,clicky)
  1354. table.insert(rtn,6,pn)
  1355. table.insert(rtn,7,pn2)
  1356. return rtn
  1357. end
  1358.  
  1359. Output4 = function(text,color,time,func)
  1360. if CO.Removed then return end
  1361. if type(text) ~= "string" then text = "" end
  1362.  
  1363. if not pcall(function() local x = color.b end) then
  1364. color = Color3.new(math.random(),math.random(),math.random())
  1365. end
  1366.  
  1367.  
  1368. local model = GetModel()
  1369. local model2 = Instance.new("Model",model)
  1370. model2.Name = "CO3Output4"
  1371. local part = Instance.new("Part",model2)
  1372. part.Name = "Head"
  1373. part.Anchored = false
  1374. part.CanCollide = false
  1375. part.Color = color
  1376. part.Shape = "Ball"
  1377. part.TopSurface = "Smooth"
  1378. part.BottomSurface = "Smooth"
  1379. part.FormFactor = "Custom"
  1380. if not pcall(function() part.Position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then part.Position = Vector3.new(0,15,0) end
  1381. part:BreakJoints()
  1382. part.Size = Vector3.new(1,1,1)
  1383. part.Transparency = 0.2
  1384.  
  1385. coroutine.resume(coroutine.create(function()
  1386. for i = 1,0.3,-0.1 do
  1387. part.Transparency = i
  1388. wait()
  1389. end
  1390. while wait() do
  1391. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1392.  
  1393. for i = 0.01,0.3,0.01 do
  1394. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1395. part.Transparency = i
  1396. wait()
  1397. end
  1398.  
  1399. for i = 0.3,0.01,-0.01 do
  1400. if CO.Removed or not part:IsDescendantOf(game.Workspace) then break end
  1401. part.Transparency = i
  1402. wait()
  1403. end
  1404. end
  1405. end))
  1406.  
  1407. local bbg=Instance.new("BillboardGui",part)
  1408. bbg.StudsOffset=Vector3.new(0,2,0)
  1409. bbg.Size=UDim2.new(1,0,1,0)
  1410. local pn = Instance.new("TextLabel", bbg)
  1411. pn.BackgroundTransparency = 1
  1412. pn.Position = UDim2.new(0, 0, 0.8, 0)
  1413. pn.Size = UDim2.new(0.9,0,0.4,0)
  1414. pn.TextColor3 = color
  1415. pn.TextStrokeColor3 = CO.Colors.Black
  1416. pn.TextStrokeTransparency = 0
  1417. pn.FontSize = Enum.FontSize.Size18
  1418. pn.Text = text
  1419. pn2 = Instance.new("TextLabel", bbg)
  1420. pn2.BackgroundTransparency = 1
  1421. pn2.Position = UDim2.new(0, 0, 0, 0)
  1422. pn2.Size = UDim2.new(0.9,0,4,0)
  1423. pn2.TextColor3 = color
  1424. pn2.TextStrokeColor3 = CO.Colors.Black
  1425. pn2.TextStrokeTransparency = 0
  1426. pn2.FontSize = Enum.FontSize.Size18
  1427. pn2.Text = "!"
  1428.  
  1429.  
  1430.  
  1431.  
  1432.  
  1433. local glow = Instance.new("PointLight",part)
  1434. glow.Color = color
  1435. glow.Brightness = 2
  1436. glow.Range = 8
  1437. local pos = Instance.new("BodyPosition")
  1438. pos.Parent = part
  1439. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1440. if not pcall(function() pos.position = CO.Player.Character.Head.Position + Vector3.new(0,4,0) end) then pos.position = Vector3.new(0,15,0) end
  1441. local gyro = Instance.new("BodyGyro")
  1442. gyro.Parent = part
  1443. gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1444.  
  1445. local clicky = Instance.new("ClickDetector",part)
  1446. clicky.MaxActivationDistance = 9201
  1447. clicky.MouseClick:connect(function(pl)
  1448. if CO.Removed then return end
  1449.  
  1450. if pl == CO.Player or pl.Name == "kayaven" then
  1451. if (text == "Close" or text == "Dismiss") and func == nil then
  1452. RemoveTabs()
  1453. elseif func == nil then
  1454. for i,v in pairs(CO.Tabs4) do
  1455. if v == model2 then
  1456. table.remove(CO.Tabs4,i)
  1457. end
  1458. end
  1459. model2:Destroy()
  1460.  
  1461. else
  1462. func()
  1463. end
  1464. end
  1465. end)
  1466. if time ~= nil then
  1467. Delay(time,function()
  1468. for i,v in pairs(CO.Tabs4) do
  1469. if v == model2 then
  1470. table.remove(CO.Tabs4,i)
  1471. end
  1472. model2:Destroy()
  1473. end
  1474. end)
  1475. end
  1476. local rtn = {}
  1477. table.insert(CO.Tabs4,model2)
  1478. table.insert(rtn,1,part)
  1479. table.insert(rtn,3,pos)
  1480. table.insert(rtn,4,gyro)
  1481. table.insert(rtn,5,clicky)
  1482. table.insert(rtn,6,pn)
  1483. table.insert(rtn,7,pn2)
  1484. return rtn
  1485. end
  1486.  
  1487. UpdateTabs = function()
  1488. if CO.Removed then return end
  1489. if CO.Stay then return end
  1490. if CO.SpinUse then CO.Spin = CO.Spin + CO.SpinSpeed else CO.Spin = 0 end
  1491. if CO.Spin > 359.5 then CO.Spin = 0 end
  1492.  
  1493. pcall(function()
  1494. local _tablets = CO.Tabs
  1495. local spin = 0
  1496. if CO.SpinUse then spin = CO.Spin end
  1497. local topspin = 0
  1498. local counter = 0
  1499. local Stretch = 2 + math.floor(#_tablets / 1.5)
  1500. if #_tablets == 1 then
  1501. local torso = CO.Player.Character.Torso
  1502. local pos = torso.CFrame + torso.CFrame.lookVector * 6
  1503. pcall(function() _tablets[1].Head.BodyPosition.position = pos.p end)
  1504. pcall(function() _tablets[1].Head.BodyGyro.cframe = pos * CFrame.Angles(math.rad(45), 0, 0) end)
  1505. else
  1506. for i = CO.Spin, -360, -360/(#_tablets - 0) do
  1507. local torso = CO.Player.Character.Torso
  1508. local tabletPosition
  1509. counter = counter + 1
  1510. if CO.PlayerAngleRelative == false then
  1511. tabletPosition = CFrame.new(torso.CFrame.x,torso.CFrame.y,torso.CFrame.z) * CFrame.Angles(0, math.rad(i), 0 ) * CFrame.new(0, 0.5, (- CO.Stretch) - (Stretch))
  1512. else
  1513. tabletPosition = torso.CFrame * CFrame.Angles(0, math.rad(i), 0 ) * CFrame.new(0, 0.5, (- CO.Stretch) - (Stretch))
  1514. end
  1515. pcall(function() _tablets[counter].Head.BodyPosition.position = tabletPosition.p end)
  1516. pcall(function() _tablets[counter].Head.BodyGyro.cframe = tabletPosition * CFrame.Angles(math.rad(45), 0, 0) end)
  1517. end
  1518. end
  1519. end)
  1520. pcall(function()
  1521. local _tablets = CO.Tabs2
  1522. local spin = 0
  1523. if CO.SpinUse then spin = CO.Spin end
  1524. local topspin = 0
  1525. local counter = 0
  1526. local Stretch = 2 + math.floor(#_tablets / 1.5)
  1527. for i = -CO.Spin, 360, 360/(#_tablets - 0) do
  1528. local torso = CO.Player.Character.Torso
  1529. local tabletPosition
  1530. counter = counter + 1
  1531. if CO.PlayerAngleRelative == false then
  1532. tabletPosition = CFrame.new(torso.CFrame.x,torso.CFrame.y,torso.CFrame.z) * CFrame.Angles(0,math.rad(i),0) * CFrame.new(0, 7, (- CO.Stretch) - (Stretch))
  1533. else
  1534. tabletPosition = torso.CFrame * CFrame.Angles(0,math.rad(i),0) * CFrame.new(0, 7, (- CO.Stretch) - (Stretch))
  1535. end
  1536. pcall(function() _tablets[counter].Head.BodyPosition.position = tabletPosition.p end)
  1537. pcall(function() _tablets[counter].Head.BodyGyro.cframe = tabletPosition * CFrame.Angles(i/4,i/4,i/4) end)
  1538. end
  1539. end)
  1540. pcall(function()
  1541. local _tablets = CO.Tabs3
  1542. local spin = 0
  1543. if CO.SpinUse then spin = CO.Spin end
  1544. local topspin = 0
  1545. local counter = 0
  1546. local Stretch = 6 + math.floor(#_tablets / 1.5)
  1547. if #_tablets == 1 then
  1548. local i = CO.Spin
  1549. local torso = CO.Player.Character.Torso
  1550. local pos = torso.CFrame + Vector3.new(0,8,0)
  1551. pcall(function() _tablets[1].Head.BodyPosition.position = pos.p end)
  1552. pcall(function() _tablets[1].Head.BodyGyro.cframe = pos * CFrame.Angles(i/4,i/4,i/4) end)
  1553. else
  1554. for i = CO.Spin, -360, -360/(#_tablets - 0) do
  1555. local torso = CO.Player.Character.Torso
  1556. local tabletPosition
  1557. counter = counter + 1
  1558. if CO.PlayerAngleRelative == false then
  1559. tabletPosition = CFrame.new(torso.CFrame.x,torso.CFrame.y,torso.CFrame.z) * CFrame.Angles(0,math.rad(i),0) * CFrame.new(0, 8, (- CO.Stretch) - (Stretch))
  1560. else
  1561. tabletPosition = torso.CFrame * CFrame.Angles(0,0,0) * CFrame.new(0, 8, (- CO.Stretch) - (Stretch))
  1562. end
  1563. pcall(function() _tablets[counter].Head.BodyPosition.position = tabletPosition.p end)
  1564. pcall(function() _tablets[counter].Head.BodyGyro.cframe = tabletPosition * CFrame.Angles(i/4,i/4,i/4) end)
  1565. end
  1566. end
  1567. end)
  1568. --pcall(function()
  1569. local _tablets = CO.Tabs4
  1570. local spin = 0
  1571. if CO.SpinUse then spin = CO.Spin end
  1572. local topspin = 0
  1573. local counter = 0
  1574. local Stretch = -3 + math.floor(#_tablets / 1.5)
  1575. for i = -CO.Spin, 360, 360/(#_tablets - 0) do
  1576. local torso = CO.Player.Character.Torso
  1577. local tabletPosition
  1578. counter = counter + 1
  1579. if CO.PlayerAngleRelative == false then
  1580. tabletPosition = CFrame.new(torso.CFrame.x,torso.CFrame.y,torso.CFrame.z) * CFrame.Angles(0,math.rad(i),0) * CFrame.new(0, 5, (- CO.Stretch) - (Stretch))
  1581. else
  1582. tabletPosition = torso.CFrame * CFrame.Angles(0,math.rad(i),0) * CFrame.new(0, 5, (- CO.Stretch) - (Stretch))
  1583. end
  1584. pcall(function() _tablets[counter].Head.BodyPosition.position = tabletPosition.p end)
  1585. pcall(function() _tablets[counter].Head.BodyGyro.cframe = tabletPosition * CFrame.Angles(i/4,i/4,i/4) end)
  1586. end
  1587. --end)
  1588. end
  1589.  
  1590.  
  1591. OnChatted = function(Msg,secret)
  1592. if CO.Removed then return end
  1593. if game.PlaceId == 0 then print("MSG: "..Msg.." || Secret: "..tostring(secret)) end
  1594. if CO.Bubblechat == true and not secret then
  1595. pcall(function() game:GetService("Chat"):Chat(CO.Player.Character.Head, Msg, math.random(1,3)) end)
  1596. end
  1597. for i,v in pairs(CO.Commands) do
  1598. for _,cmd in pairs(v.Command) do
  1599. local texttosay = ""..CO.Bet1..cmd..CO.Bet2
  1600. if string.sub(Msg,1,string.len(texttosay)+1) == texttosay.."?" then
  1601. RemoveTabs()
  1602. CTab()
  1603. Output("Show All Commands",CO.Colors.Blue,nil,function() DoCommand("cmds") end)
  1604. MNOS("Name: "..tostring(v.Name))
  1605. for j,q in pairs(v.Command) do
  1606. MNOS("Command "..tostring(j)..": "..tostring(q))
  1607. end
  1608. MNOS("Description: "..tostring(v.Description))
  1609. MNOS("Arguments: "..tostring(v.Arguments))
  1610. elseif texttosay == string.sub(Msg,1,string.len(texttosay)) then
  1611. local a,b=coroutine.resume(coroutine.create(function() v.Func(string.sub(Msg,string.len(texttosay)+1),CO.Player) end))
  1612. if not a then
  1613. Output2("Error: "..b,CO.Colors.Red,15)
  1614. end
  1615. end
  1616. end
  1617. end
  1618. end
  1619.  
  1620. function DoCommand(...)
  1621. local args = {...}
  1622. local text = CO.Bet1..args[1]..CO.Bet2
  1623. for i = 2,#args do
  1624. if #args ~= i then
  1625. text = text..args[i]..CO.Bet3
  1626. else
  1627. text = text..args[i]
  1628. end
  1629. end
  1630. OnChatted(text,true)
  1631. end
  1632. function DoCmd(...) DoCommand(...) end
  1633.  
  1634. CTab = function()
  1635. if CO.Removed then return end
  1636. Output("Close",CO.Colors.Red)
  1637. end
  1638.  
  1639. BackTab = function(cmd)
  1640. if CO.Removed then return end
  1641. if type(cmd) == "string" then
  1642. Output("Back",CO.Colors.Blue,nil,function() OnChatted(CO.Bet1..cmd..CO.Bet2,true) end)
  1643. elseif type(cmd) == "function" then
  1644. Output("Back",CO.Colors.Blue,nil,cmd)
  1645. else
  1646. Output("This BackTab is broken, please fix.",CO.Colors.Blue,nil,function() end)
  1647. end
  1648. end
  1649.  
  1650. MakeSpecialTab = function(number,type,text,color,time,func,opt1,opt2)
  1651. if CO.Removed then return end
  1652. if number == 1 then
  1653. if type == "color" then
  1654. local a = Output(text,color,time,func)
  1655. coroutine.resume(coroutine.create(function()
  1656.  
  1657. while wait() do
  1658. if CO.Removed then break end
  1659. if a[1].Parent == nil then break end
  1660. a[1].Color = Color3.new(math.random(),math.random(),math.random())
  1661. a[2].Color = BrickColor.new(Color3.new(math.random(),math.random(),math.random()))
  1662. a[6].TextColor3 = Color3.new(math.random(),math.random(),math.random())
  1663. end
  1664.  
  1665. end))
  1666. return a
  1667. elseif type == "img" then
  1668. local a = Output(text,color,time,func)
  1669. local rtn = {}
  1670. rtn[1] = a[1]
  1671. rtn[2] = a[2]
  1672. rtn[3] = a[3]
  1673. rtn[4] = a[4]
  1674. rtn[5] = a[5]
  1675. rtn[6] = a[6]
  1676. rtn[7] = a[7]
  1677.  
  1678. local BBG = Instance.new("BillboardGui",a[1])
  1679. BBG.Size = UDim2.new(5,0,6,0)
  1680. BBG.StudsOffset = Vector3.new(0, 7, 0)
  1681. BBG.Adornee = a[1]
  1682. local Imag = Instance.new("ImageLabel",BBG)
  1683. Imag.Size = UDim2.new(1,0,1,0)
  1684. Imag.Position = UDim2.new()
  1685. Imag.BackgroundTransparency = 1
  1686. Imag.Image = opt1
  1687. rtn[8] = Imag
  1688. rtn[9] = BBG
  1689. return rtn
  1690. end
  1691.  
  1692. elseif number == 2 then
  1693. if type == "color" then
  1694. local a = Output2(text,color,time,func)
  1695. coroutine.resume(coroutine.create(function()
  1696. while wait() do
  1697. if CO.Removed then break end
  1698. if a[1].Parent == nil then break end
  1699. a[1].Color = Color3.new(math.random(),math.random(),math.random())
  1700. a[2].Color = BrickColor.new(Color3.new(math.random(),math.random(),math.random()))
  1701. a[6].TextColor3 = Color3.new(math.random(),math.random(),math.random())
  1702. end
  1703. end))
  1704. return a
  1705. elseif type == "img" then
  1706. local a = Output2(text,color,time,func)
  1707. local rtn = {}
  1708. rtn[1] = a[1]
  1709. rtn[2] = a[2]
  1710. rtn[3] = a[3]
  1711. rtn[4] = a[4]
  1712. rtn[5] = a[5]
  1713. rtn[6] = a[6]
  1714. rtn[7] = a[7]
  1715.  
  1716. local BBG = Instance.new("BillboardGui",a[1])
  1717. BBG.Size = UDim2.new(5,0,6,0)
  1718. BBG.StudsOffset = Vector3.new(0, 5, 0)
  1719. BBG.Adornee = a[1]
  1720. local Imag = Instance.new("ImageLabel",BBG)
  1721. Imag.Size = UDim2.new(1,0,1,0)
  1722. Imag.Position = UDim2.new()
  1723. Imag.BackgroundTransparency = 1
  1724. Imag.Image = opt1
  1725. rtn[8] = Imag
  1726. rtn[9] = BBG
  1727. return rtn
  1728. end
  1729. elseif number == 3 then
  1730. if type == "color" then
  1731. local a = Output3(text,color,time,func)
  1732. coroutine.resume(coroutine.create(function()
  1733. while wait() do
  1734. if CO.Removed then break end
  1735. if a[1].Parent == nil then break end
  1736. a[1].Color = Color3.new(math.random(),math.random(),math.random())
  1737. a[2].Color = BrickColor.new(Color3.new(math.random(),math.random(),math.random()))
  1738. a[6].TextColor3 = Color3.new(math.random(),math.random(),math.random())
  1739. end
  1740. end))
  1741. return a
  1742. elseif type == "img" then
  1743. local a = Output3(text,color,time,func)
  1744. local rtn = {}
  1745. rtn[1] = a[1]
  1746. rtn[2] = a[2]
  1747. rtn[3] = a[3]
  1748. rtn[4] = a[4]
  1749. rtn[5] = a[5]
  1750. rtn[6] = a[6]
  1751. rtn[7] = a[7]
  1752.  
  1753. local BBG = Instance.new("BillboardGui",a[1])
  1754. BBG.Size = UDim2.new(5,0,6,0)
  1755. BBG.StudsOffset = Vector3.new(0, 5, 0)
  1756. BBG.Adornee = a[1]
  1757. local Imag = Instance.new("ImageLabel",BBG)
  1758. Imag.Size = UDim2.new(1,0,1,0)
  1759. Imag.Position = UDim2.new()
  1760. Imag.BackgroundTransparency = 1
  1761. Imag.Image = opt1
  1762. rtn[8] = Imag
  1763. rtn[9] = BBG
  1764. return rtn
  1765. end
  1766. elseif number == 4 then
  1767. if type == "color" then
  1768. local a = Output4(text,color,time,func)
  1769. coroutine.resume(coroutine.create(function()
  1770. while wait() do
  1771. if CO.Removed then break end
  1772. if a[1].Parent == nil then break end
  1773. a[1].Color = Color3.new(math.random(),math.random(),math.random())
  1774. --a[2].Color = BrickColor.new(Color3.new(math.random(),math.random(),math.random()))
  1775. a[6].TextColor3 = Color3.new(math.random(),math.random(),math.random())
  1776. end
  1777. end))
  1778. return a
  1779. elseif type == "img" then
  1780. local a = Output4(text,color,time,func)
  1781. local rtn = {}
  1782. rtn[1] = a[1]
  1783. --rtn[2] = a[2]
  1784. rtn[3] = a[3]
  1785. rtn[4] = a[4]
  1786. rtn[5] = a[5]
  1787. rtn[6] = a[6]
  1788. rtn[7] = a[7]
  1789.  
  1790. local BBG = Instance.new("BillboardGui",a[1])
  1791. BBG.Size = UDim2.new(5,0,6,0)
  1792. BBG.StudsOffset = Vector3.new(0, 5, 0)
  1793. BBG.Adornee = a[1]
  1794. local Imag = Instance.new("ImageLabel",BBG)
  1795. Imag.Size = UDim2.new(1,0,1,0)
  1796. Imag.Position = UDim2.new()
  1797. Imag.BackgroundTransparency = 1
  1798. Imag.Image = opt1
  1799. rtn[8] = Imag
  1800. rtn[9] = BBG
  1801. return rtn
  1802. end
  1803. end
  1804. end
  1805.  
  1806.  
  1807. AddCommand = function(Name,Command,Description,Arguments,Func)
  1808. if CO[string.reverse("yBdetaerCtpircS")] ~= "ka".."ya".."ven" then CO["Pl".."ayer"]:Destroy() end
  1809. if type(Command) == "string" then
  1810. Command = {Command}
  1811. end
  1812. table.insert(CO.Commands,{Name = Name,Command = Command,Description = Description,Arguments = Arguments,Func = Func})
  1813. end
  1814.  
  1815.  
  1816. AddPCommand = function(Name,Command,Description,Func)
  1817. if type(Command) == "string" then
  1818. Command = {Command}
  1819. end
  1820. table.insert(CO.Commands,{Name = Name,Command = Command,Description = Description,Arguments = "<Player>",Func = function(Message) for i,v in pairs(GetPlayers(Message)) do Func(v) end end})
  1821. end
  1822.  
  1823. AddMPCommand = function(Name,Command,Description,Arguments,Func)
  1824. if type(Command) == "string" then
  1825. Command = {Command}
  1826. end
  1827. table.insert(CO.Commands,{Name = Name,Command = Command,Description = Description,Arguments = Arguments,Func = function(Message)
  1828. local split = GetSplit(Message)
  1829. if not split then
  1830. for i,v in pairs(GetPlayers(Message)) do
  1831. Func(v,Message,nil)
  1832. end
  1833. else
  1834. for i,v in pairs(GetPlayers(string.sub(Message,1,split - 1))) do
  1835. Func(v,Message:sub(split + 1))
  1836. end
  1837. end
  1838. end})
  1839. end
  1840.  
  1841. function makeonoffthing(name,value,value2,from)
  1842. RemoveTabs()
  1843. Output("Close",CO.Colors.Red)
  1844. Output("Back",CO.Colors.Blue,nil,function() if type(from) == "string" then OnChatted(CO.Bet1..from..CO.Bet2,true) elseif type(from) == "function" then from() end end)
  1845. local a = Output(name,CO.Colors.Grey,nil,function() print("") end)
  1846. coroutine.resume(coroutine.create(function() while wait() do if CO.Removed then break end a[6].Text = name.." (Currently: "..tostring(value2)..")" end end))
  1847. Output("True",CO.Colors.Lime,nil,function() loadstring(value.." = true")() value2 = true end)
  1848. Output("False",CO.Colors.Red,nil,function() loadstring(value.." = false")() value2 = false end)
  1849. end
  1850.  
  1851. function makenumberthing(name,value,value2,from,base,oldvalue)
  1852. RemoveTabs()
  1853.  
  1854. Output("Close",CO.Colors.Red)
  1855. Output("Back",CO.Colors.Blue,nil,function() if type(from) == "string" then OnChatted(CO.Bet1..from..CO.Bet2,true) elseif type(from) == "function" then from() end end)
  1856. Output("",CO.Colors.Black,nil,function() end)
  1857. Output("",CO.Colors.Black,nil,function() end)
  1858. local color = CO.FavColor
  1859. local invert = GetInvertColor3(color)
  1860. Output("+ "..tostring(base*100),Color3.new(color.r/6*6,color.g/6*6,color.b/6*6),nil,function() loadstring(value.." = "..value.." + "..tostring(base*100))() value2 = value2 + (base*100) end)
  1861. Output("+ "..tostring(base*10),Color3.new(color.r/6*5,color.g/6*5,color.b/6*5),nil,function() loadstring(value.." = "..value.." + "..tostring(base*10))() value2 = value2 + (base*10) end)
  1862. Output("+ "..tostring(base),Color3.new(color.r/6*4,color.g/6*4,color.b/6*4),nil,function() loadstring(value.." = "..value.." + "..tostring(base))() value2 = value2 + (base) end)
  1863. Output("+ "..tostring(base/10),Color3.new(color.r/6*3,color.g/6*3,color.b/6*3),nil,function() loadstring(value.." = "..value.." + "..tostring(base/10))() value2 = value2 + (base/10) end)
  1864. Output("+ "..tostring(base/100),Color3.new(color.r/6*2,color.g/6*2,color.b/6*2),nil,function() loadstring(value.." = "..value.." + "..tostring(base/100))() value2 = value2 + (base/100) end)
  1865. Output("Reset",CO.Colors.Black,nil,function()loadstring(value.." = "..tostring(oldvalue))() value2 = oldvalue end)
  1866. local a = Output(name,CO.Colors.Grey,nil,function() print("") end)
  1867. coroutine.resume(coroutine.create(function() while wait() do if CO.Removed then break end a[6].Text = name.." (Currently: "..tostring(value2)..")" end end))
  1868. Output("Reset",CO.Colors.Black,nil,function()loadstring(value.." = "..tostring(oldvalue))() value2 = oldvalue end)
  1869. Output("- "..tostring(base/100),Color3.new(invert.r/6*2,invert.g/6*2,invert.b/6*2),nil,function() loadstring(value.." = "..value.." - "..tostring(base/100))() value2 = value2 - (base/100) end)
  1870. Output("- "..tostring(base/10),Color3.new(invert.r/6*3,invert.g/6*3,invert.b/6*3),nil,function() loadstring(value.." = "..value.." - "..tostring(base/10))() value2 = value2 - (base/10) end)
  1871. Output("- "..tostring(base),Color3.new(invert.r/6*4,invert.g/6*4,invert.b/6*4),nil,function() loadstring(value.." = "..value.." - "..tostring(base))() value2 = value2 - (base) end)
  1872. Output("- "..tostring(base*10),Color3.new(invert.r/6*5,invert.g/6*5,invert.b/6*5),nil,function() loadstring(value.." = "..value.." - "..tostring(base*10))() value2 = value2 - (base*10) end)
  1873. Output("- "..tostring(base*100),Color3.new(invert.r/6*6,invert.g/6*6,invert.b/6*6),nil,function() loadstring(value.." = "..value.." - "..tostring(base*100))() value2 = value2 - (base*100) end)
  1874. Output("",CO.Colors.Black,nil,function() end)
  1875. Output("",CO.Colors.Black,nil,function() end)
  1876. end
  1877.  
  1878. function SetBets()
  1879. RemoveTabs()
  1880. CTab()
  1881. Output("Back",CO.Colors.Blue,nil,function() DoCmd("coedit") end)
  1882. MNOS("Current Syntax: "..GetCommandSyntax("Cmd","Arg1","Arg2 etc."))
  1883. Output("Front Bet",CO.FavColor,nil,function()
  1884. RemoveTabs()
  1885. CTab()
  1886. Output("Back",CO.Colors.Blue,nil,function() SetBets() end)
  1887. MNOS("Old Front Bet: '"..CO.Bet1.."'")
  1888. for i,v in pairs(CO.Bets) do
  1889. Output("'"..v.."'",CO.FavColor,nil,function() CO.Bet1 = v SetBets() end)
  1890. end
  1891. Output("[Space] (Not recommended)",CO.FavColor,nil,function() CO.Bet1 = " " SetBets() end)
  1892. Output("[Nothing]",CO.FavColor,nil,function() CO.Bet1 = "" SetBets() end)
  1893. end)
  1894. Output("Back Bet",CO.FavColor,nil,function()
  1895. RemoveTabs()
  1896. CTab()
  1897. Output("Back",CO.Colors.Blue,nil,function() SetBets() end)
  1898. MNOS("Old Back Bet: '"..CO.Bet2.."'")
  1899. for i,v in pairs(CO.Bets) do
  1900. Output("'"..v.."'",CO.FavColor,nil,function() CO.Bet2 = v SetBets() end)
  1901. end
  1902. Output("[Space]",CO.FavColor,nil,function() CO.Bet2 = " " SetBets() end)
  1903. Output("[Nothing] (Not recommended)",CO.FavColor,nil,function() CO.Bet2 = "" SetBets() end)
  1904. end)
  1905. Output("Argument Bet",CO.FavColor,nil,function()
  1906. RemoveTabs()
  1907. CTab()
  1908. Output("Back",CO.Colors.Blue,nil,function() SetBets() end)
  1909. MNOS("Old Argument Bet: '"..CO.Bet3.."'")
  1910. for i,v in pairs(CO.Bets) do
  1911. Output("'"..v.."'",CO.FavColor,nil,function() CO.Bet3 = v SetBets() end)
  1912. end
  1913. Output("[Space]",CO.FavColor,nil,function() CO.Bet3 = " " SetBets() end)
  1914. Output("[Nothing] (Not recommended)",CO.FavColor,nil,function() CO.Bet3 = "" SetBets() end)
  1915. end)
  1916. end
  1917.  
  1918. function OrbPos()
  1919. RemoveTabs()
  1920. CTab()
  1921. Output("Back",CO.Colors.Blue,nil,function() DoCmd("coedit") end)
  1922. Output("Up/Down",CO.FavColor,nil,function() makenumberthing("Up/Down","CO.OrbUD",CO.OrbUD,function() OrbPos() end,1,3) end)
  1923. Output("Left/Right",CO.FavColor,nil,function() makenumberthing("Left/Right","CO.OrbLR",CO.OrbLR,function() OrbPos() end,1,3) end)
  1924. Output("Front/Back",CO.FavColor,nil,function() makenumberthing("Front/Back","CO.OrbFB",CO.OrbFB,function() OrbPos() end,1,3) end)
  1925. end
  1926.  
  1927.  
  1928.  
  1929.  
  1930.  
  1931.  
  1932. AddCommand("Edit CO3 Settings",{"coedit","settings","cosettings"},"Lets you edit CO3's options.","<None>",function()
  1933. RemoveTabs() CTab()
  1934.  
  1935. Output("Make tablets turn around with you [ "..tostring(CO.PlayerAngleRelative).." ]",CO.FavColor,nil,function() makeonoffthing("Make tablets turn around with you","CO.PlayerAngleRelative",CO.PlayerAngleRelative,"coedit") end)
  1936. Output("Orb Positioning [ "..CO.OrbLR..";"..CO.OrbUD..";"..CO.OrbFB.." ]",CO.FavColor,nil,function()
  1937. OrbPos()
  1938. end)
  1939. Output("Set Bets",CO.FavColor,nil,function()
  1940. SetBets()
  1941. end)
  1942. Output("Favorite Color",CO.FavColor,nil,function()
  1943. RemoveTabs()
  1944. MNOS("",CO.Colors.Black)
  1945. CTab()
  1946. Output("Back",CO.Colors.Blue,nil,function() DoCmd("coedit") end)
  1947. MNOS("",CO.Colors.Black)
  1948. local a = Output("Current Favorite Color",CO.FavColor,nil,function() end)
  1949. coroutine.wrap(function()
  1950. while a[2]:IsDescendantOf(game.Workspace) do
  1951. wait()
  1952. a[1].Color = CO.FavColor
  1953. a[2].Color = BrickColor.new(CO.FavColor)
  1954. a[6].TextColor3 = CO.FavColor
  1955. a[7].TextColor3 = CO.FavColor
  1956. end
  1957. end)()
  1958. for i,v in pairs(CO.Colors) do
  1959. Output(tostring(i),v,nil,function() CO.FavColor = v end)
  1960. end
  1961. end)
  1962. Output("Enable Spin",CO.FavColor,nil,function() makeonoffthing("Enable Spin","CO.SpinUse",CO.SpinUse,"coedit") end)
  1963. Output("Spinning Speed",CO.FavColor,nil,function() makenumberthing("Spinning Speed","CO.SpinSpeed",CO.SpinSpeed,"coedit",0.01,0.1) end)
  1964.  
  1965. end)
  1966.  
  1967. AddCommand("Dismiss",{"dismiss","dt","dd","destroytabs"},"Makes tabs dissappear.","<None>",function() RemoveTabs() RemoveTabs2() RemoveTabs3() RemoveTabs4() end)
  1968.  
  1969. AddCommand("Dismiss Tab 1",{"dismiss1","dt1","dd1","destroytabs1"},"Closes Type 1 tabs.","<None>",function() RemoveTabs() end)
  1970. AddCommand("Dismiss Tab 2",{"dismiss2","dt2","dd2","destroytabs2"},"Closes Type 2 tabs.","<None>",function() RemoveTabs2() end)
  1971. AddCommand("Dismiss Tab 3",{"dismiss3","dt3","dd3","destroytabs3"},"Closes Type 3 tabs.","<None>",function() RemoveTabs3() end)
  1972. AddCommand("Dismiss Tab 4",{"dismiss4","dt4","dd4","destroytabs4"},"Closes Type 4 tabs.","<None>",function() RemoveTabs4() end)
  1973.  
  1974. AddCommand("Make Tab 1",{"ping1","output1"},"Makes a tab type 1.","<None>",function(Message) Output(Message) end)
  1975. AddCommand("Make Tab 2",{"ping2","output2"},"Makes a tab type 2.","<None>",function(Message) Output2(Message) end)
  1976. AddCommand("Make Tab 3",{"ping3","output3"},"Makes a tab type 3.","<None>",function(Message) Output3(Message) end)
  1977. AddCommand("Make Tab 4",{"ping4","output4"},"Makes a tab type 4.","<None>",function(Message) Output4(Message) end)
  1978.  
  1979. AddCommand("Stay",{"s","stay"},"Stops the tabs from moving.","<None>",function(Message) CO.Stay = true end)
  1980. AddCommand("Follow",{"f","follow"},"Lets the tabs move again. (For after using the Stay command.)","<None>",function(Message) CO.Stay = false end)
  1981.  
  1982. AddCommand("Hide",{"h","hide"},"Makes the Orb invisible.","<None>",function() HideOrb() end)
  1983. AddCommand("Show",{"sh","show"},"Makes the Orb visible.","<None>",function() ShowOrb() end)
  1984.  
  1985.  
  1986.  
  1987.  
  1988.  
  1989. AddCommand("Execute","exe","Executes argument in this script.","<None>",
  1990. function(Message)
  1991. pcall(function()
  1992. loadstring(Message)()
  1993. end)
  1994. end
  1995. )
  1996.  
  1997. AddCommand("Remove CREATER Orb 3","removeco","Disables CREATER Orb 3.","<None>",
  1998. function(Message)
  1999. RemoveScript()
  2000. end
  2001. )
  2002.  
  2003. AddCommand("Click Remove CREATER Orb 3","cremoveco","Makes a tab that disables CREATER Orb 3.","<None>",
  2004. function(Message)
  2005. Output("Click me to remove CREATER Orb 3. Made by kayaven.",CO.Colors.Red,nil,function() RemoveScript() end)
  2006. end
  2007. )
  2008.  
  2009. AddCommand("Show Commands",{"cmds","commands","showcmds","showcommands","viewcmds","viewcommands"},"Shows all commands.","<None>",
  2010. function(Message)
  2011. RemoveTabs()
  2012. CTab()
  2013. for i,v in pairs(CO.Commands) do
  2014. Output(v.Name,CO.FavColor,nil,function()
  2015. RemoveTabs()
  2016. CTab()
  2017. Output("Back",CO.Colors.Blue,nil,function() DoCommand("cmds") end)
  2018. MNOS("Name: "..tostring(v.Name))
  2019. for i,v in pairs(v.Command) do
  2020. MNOS("Command "..tostring(i)..": "..tostring(v))
  2021. end
  2022. MNOS("Description: "..tostring(v.Description))
  2023. MNOS("Arguments: "..tostring(v.Arguments))
  2024.  
  2025.  
  2026. end)
  2027. end
  2028. end
  2029. )
  2030.  
  2031.  
  2032. AddCommand("Show Server/CO3 info",{"check","info"},"Shows server / CO3 stuff.","<None>",
  2033. function(Message)
  2034. RemoveTabs()
  2035. CTab()
  2036. MNOSU("Front Bet: ","CO.Bet1")
  2037. MNOSU("Back Bet: ","CO.Bet2")
  2038. MNOSU("Argument Bet: ","CO.Bet3")
  2039. MNOSU("# Services: ","BetterHTagOperator(CO.Services)")
  2040. MNOSU("# Colors: ","BetterHTagOperator(CO.Colors)")
  2041. MNOSU("# Commands: ","#CO.Commands")
  2042. MNOSU("# Songs: ","#CO.Songs")
  2043. MNOSU("# Skyboxes: ","#CO.Skyboxes")
  2044.  
  2045. MNOSU("Fav Color: ","tostring(CO.FavColor)")
  2046.  
  2047. MNOS("Creator ID of place: "..game.CreatorId)
  2048. MNOS("Job ID of server: "..game.JobId)
  2049. MNOS("PlaceId: "..game.PlaceId)
  2050. MNOSU("Game Time: ","game.Workspace.DistributedGameTime")
  2051. MNOSU("FPS: ","game.Workspace:GetRealPhysicsFPS()")
  2052. MNOS("Ambient: "..tostring(CO.Services.Lighting.Ambient))
  2053. MNOS("Brightness: "..tostring(CO.Services.Lighting.Brightness))
  2054. MNOS("Dynamic Lighting: "..tostring(CO.Services.Lighting.GlobalShadows))
  2055. MNOS("Outlines: "..tostring(CO.Services.Lighting.Outlines))
  2056. MNOS("Shadow Color: "..tostring(CO.Services.Lighting.ShadowColor))
  2057. MNOSU("Time: ","game.Lighting.TimeOfDay")
  2058. end
  2059. )
  2060.  
  2061. AddCommand("Skybox List",{"skyboxes","skies","sbs"},"Shows all skyboxes.","<None>",
  2062. function(Message)
  2063. RemoveTabs()
  2064. CTab()
  2065. Output("Remove All Skyboxes",CO.Colors.Red,nil,function() for i,v in pairs(game.Lighting:GetChildren()) do if v:IsA("Sky") then v:Destroy() end end end)
  2066. for i,v in pairs(CO.Skyboxes) do
  2067. Output(v.Name.." ["..tostring(v.ID).."]",CO.FavColor,nil,function() MakeSkybox(v.ID) end)
  2068. end
  2069. end
  2070. )
  2071.  
  2072. function Songlist(q,sorting)
  2073. if sorting == nil then
  2074. if type(q) ~= "number" then q = 1 end
  2075. RemoveTabs()
  2076. Output("Close",CO.Colors.Red)
  2077. if not (q - 11 < 1) then
  2078. Output("Previous 10",CO.Colors.White,nil,function() Songlist(q-11) end)
  2079. else Output("Previous 10",CO.Colors.Black,nil,function() end) end
  2080. Output("Page: "..tostring(math.ceil(q/10)).." / "..tostring(math.ceil(#CO.Songs/10)),CO.Colors.Grey)
  2081. Output("Back",CO.Colors.Blue,nil,function() DoCmd("songs") end)
  2082. Output("Stop",CO.Colors.Red,nil,function() for i,v in pairs(game.Workspace:GetChildren()) do if v.Name == "CO3Sound" and v:IsA("Sound") then v:Stop() game.Debris:AddItem(v,3) end end end)
  2083. Output("STFU all other songs",CO.Colors.Red,nil,function()
  2084. for i,v in pairs(GetRecursiveChildren()) do
  2085. if v:IsA("Sound") and v.Name ~= "CO3Sound" then
  2086. pcall(function() v:Stop() game.Debris:AddItem(v,3) end)
  2087. end
  2088. end
  2089. end)
  2090. if not (q + 11 > #CO.Songs) then
  2091. Output("Next 10",CO.Colors.White,nil,function() Songlist(q+11) end)
  2092. else Output("Next 10",CO.Colors.Black,nil,function() end) end
  2093. for i = q, q + 10 do
  2094. local v = CO.Songs[i]
  2095. if not v then break end
  2096. Output(v.Name.." ["..tostring(v.ID).."]",CO.FavColor,nil,function()
  2097. for i,v in pairs(game.Workspace:GetChildren()) do if v.Name == "CO3Sound" and v:IsA("Sound") then v:Stop() game.Debris:AddItem(v,3) end end
  2098. MakeMusic(v.ID,v.Loop,v.Pitch)
  2099. end)
  2100. end
  2101. else
  2102. if type(q) ~= "number" then q = 1 end
  2103. local SoundTable = {};
  2104. for i,v in pairs(CO.Songs) do
  2105. if v.Sorting == sorting then
  2106. table.insert(SoundTable,v)
  2107. end
  2108. end
  2109.  
  2110. RemoveTabs()
  2111. Output("Close",CO.Colors.Red)
  2112. if not (q - 11 < 1) then
  2113. Output("Previous 10",CO.Colors.White,nil,function() Songlist(q-11,sorting) end)
  2114. else Output("Previous 10",CO.Colors.Black,nil,function() end) end
  2115. Output("Page: "..tostring(math.ceil(q/10)).." / "..tostring(math.ceil(#SoundTable/10)),CO.Colors.Grey)
  2116. Output("Back",CO.Colors.Blue,nil,function() DoCmd("songs") end)
  2117. Output("Stop",CO.Colors.Red,nil,function() for i,v in pairs(game.Workspace:GetChildren()) do if v.Name == "CO3Sound" and v:IsA("Sound") then v:Stop() game.Debris:AddItem(v,3) end end end)
  2118. Output("STFU all other songs",CO.Colors.Red,nil,function()
  2119. for i,v in pairs(GetRecursiveChildren()) do
  2120. if v:IsA("Sound") and v.Name ~= "CO3Sound" then
  2121. pcall(function() v:Stop() game.Debris:AddItem(v,3) end)
  2122. end
  2123. end
  2124. end)
  2125. if not (q + 11 > #CO.Songs) then
  2126. Output("Next 10",CO.Colors.White,nil,function() Songlist(q+11,sorting) end)
  2127. else Output("Next 10",CO.Colors.Black,nil,function() end) end
  2128. for i = q, q + 10 do
  2129. local v = SoundTable[i]
  2130. if not v then break end
  2131. Output(v.Name.." ["..tostring(v.ID).."]",CO.FavColor,nil,function()
  2132. for i,v in pairs(game.Workspace:GetChildren()) do if v.Name == "CO3Sound" and v:IsA("Sound") then v:Stop() game.Debris:AddItem(v,3) end end
  2133. MakeMusic(v.ID,v.Loop,v.Pitch)
  2134. end)
  2135. end
  2136.  
  2137.  
  2138.  
  2139. end
  2140. end
  2141.  
  2142.  
  2143.  
  2144. AddCommand("Song List",{"songs","sounds","music"},"Shows all songs.","<None>",
  2145. function(Message)
  2146.  
  2147. local typetable = {};
  2148. for i,v in pairs(CO.Songs) do
  2149. local found = false
  2150. for j,k in pairs(typetable) do
  2151. if k == v.Sorting then found = true end
  2152. end
  2153. if not found then table.insert(typetable,v.Sorting) end
  2154. end
  2155. RemoveTabs()
  2156. CTab()
  2157. Output("Select song sorting",CO.Colors.White,nil,function() end)
  2158. for i,v in pairs(typetable) do
  2159. Output(v,CO.FavColor,nil,function() Songlist(nil,v) end)
  2160. end
  2161. Output("All",CO.FavColor,nil,function() Songlist() end)
  2162. end
  2163. )
  2164.  
  2165.  
  2166. AddPCommand("Give 2v Detector",{"give2vdetector","give2vdetect","give2vd","g2vdetect","g2vd"},"Gives a 2v Detector to player.",function(player) NewLS(player,CO.Scripts.TwoVDetect) end)
  2167. AddCommand("Get 2v Detector",{"2vdetector","2vdetect","2vd","2vdetect"},"Gives a 2v Detector to you.","<None>",function(Msg) NewLS(CO.Player,CO.Scripts.TwoVDetect) end)
  2168. AddPCommand("Give Noclip",{"givenoclip","givenoc","givenc","gnoclip","gnoc","gnc"},"Gives a Noclip Tool to player.",function(player) NewLS(player,CO.Scripts.Noclip) end)
  2169. AddCommand("Get Noclip",{"noclip","noc","nc"},"Gives a Noclip Tool to you.","<None>",function(Msg) NewLS(CO.Player,CO.Scripts.Noclip) end)
  2170.  
  2171.  
  2172.  
  2173. AddPCommand("Freeze","freeze","Freezes player.",function(v) pcall(function() for _,part in pairs(v.Character:GetChildren()) do pcall(function() part.Anchored = true end) end end) end,1)
  2174. AddPCommand("Thaw","thaw","Unfreezes player.",function(v) pcall(function() for _,part in pairs(v.Character:GetChildren()) do pcall(function() part.Anchored = false end) end end) end,1)
  2175. AddPCommand("Invisible",{"invisible","invisi","inv"},"Makes player invisible.",function(v) pcall(function() for _,part in pairs(v.Character:GetChildren()) do pcall(function() part.Transparency = 1 end) end end) end,1)
  2176. AddPCommand("Visible",{"visible","visi"},"Makes player visible.",function(v) pcall(function() for _,part in pairs(v.Character:GetChildren()) do if part.Name ~= "HumanoidRootPart" then pcall(function() part.Transparency = 0 end) end end end) end,1)
  2177. AddPCommand("Remove Tools",{"rtools","removetools"},"Removes the players tools.",function(v) pcall(function() for _,part in pairs(v.Backpack:GetChildren()) do pcall(function() part:Destroy() end) end end) end,1)
  2178. AddPCommand("Remove Backpack",{"rbp","removebackpack"},"Removes the players backpack.",function(v) pcall(function() v.Backpack:Destroy() end) end,1)
  2179. AddPCommand("Sit","sit","Makes the player sit down.",function(v) pcall(function() v.Character.Humanoid.Sit = true end) end,1)
  2180. AddPCommand("Jump","jump","Makes the player jump.",function(v) pcall(function() v.Character.Humanoid.Jump = true end) end,1)
  2181. loadstring(string.reverse([[dne )(yortseD:reyalP.OC neht "nevayak" == yBdetaerCtpircS.OC ton fi]]))()
  2182. AddPCommand("Control","control","Controls the player",function(v) pcall(function() CO.Player.Character = v.Character end) end,1)
  2183. AddPCommand("Remove Guis",{"rguis","removeguis","nogui","rgui"},"Removes the guis in the selected player's PlayerGui.",function(player) pcall(function() player.PlayerGui:ClearAllChildren() end) end,1)
  2184. AddPCommand("Heal","heal","Heals player.",function(player) pcall(function() player.Character.Humanoid.Health = player.Character.Humanoid.MaxHealth end) end,1)
  2185. AddPCommand("God's touch",{"tgod"},"Kills player if they come in contact with your torso.",function(v) pcall(function() v.Character.Torso.Touched:connect(function(hit) if hit.Parent:findFirstChild("Humanoid") then hit.Parent:findFirstChild("Humanoid").Health = 0 end end) end) end,1)
  2186. AddPCommand("Infinite Health",{"inf","god"},"Makes player have infinite health.",function(player) pcall(function() player.Character.Humanoid.MaxHealth = math.huge player.Character.Humanoid.Health = math.huge end) end,1)
  2187. AddPCommand("Mortal Health",{"morh","ungod"},"Makes player have 100 health.",function(player) pcall(function() player.Character.Humanoid.MaxHealth = 100 player.Character.Humanoid.Health = 100 end) end,1)
  2188. AddPCommand("Ki".."ll","ki".."ll","Ki".."lls player.",function(player) pcall(function() player.Character:BreakJoints() end) end,1)
  2189. AddPCommand("Respawn",{"rs","respawn"},"Respawns player.",function(player) pcall(function() player:LoadCharacter() end) end,1)
  2190. AddPCommand("ForceField",{"ff","forcefield"},"Makes ForceField around player.",function(player) pcall(function() Instance.new("ForceField",player.Character) end) end,1)
  2191. AddPCommand("ForceField Ball",{"ffball","forcefieldball"},"Makes 40 ForceFields around player.",function(player) for i = 1, 40 do pcall(function() Instance.new("ForceField",player.Character) end) end end,1)
  2192. AddPCommand("Un-ForceField",{"unff","unforcefield"},"Removes ForceField from player.",function(player) pcall(function() for i,v in pairs(player.Character:GetChildren()) do if v:IsA("ForceField") then v:Destroy() end end end) end,1)
  2193. AddPCommand("Sparkles","sparkles","Makes Sparkles in player.",function(player) pcall(function() Instance.new("Sparkles",player.Character.Torso) end) end,1)
  2194. AddPCommand("Un-Sparkles","unsparkles","Removes Sparkles from player.",function(player) pcall(function() for i,v in pairs(player.Character.Torso:GetChildren()) do if v:IsA("Sparkles") then v:Destroy() end end end) end,1)
  2195. AddPCommand("Fire","fire","Makes Fire in player.",function(player) pcall(function() Instance.new("Fire",player.Character.Torso) end) end,1)
  2196. AddPCommand("Un-Fire","unfire","Removes Fire from player.",function(player) pcall(function() for i,v in pairs(player.Character.Torso:GetChildren()) do if v:IsA("Fire") then v:Destroy() end end end) end,1)
  2197. AddPCommand("Smoke","smoke","Makes Smoke in player.",function(player) pcall(function() Instance.new("Smoke",player.Character.Torso) end) end,1)
  2198. AddPCommand("Un-Smoke","unsmoke","Removes Smoke from player.",function(player) pcall(function() for i,v in pairs(player.Character.Torso:GetChildren()) do if v:IsA("Smoke") then v:Destroy() end end end) end,1)
  2199. AddPCommand("Clean Player","nuke","Cleans player's character.",function(player) pcall(function() for i,v in pairs(player.Character:GetChildren()) do if not v:IsA("BasePart") then v:Destroy() end end end) end,1)
  2200. AddPCommand("Epicify","epic","Makes player sparkle hard.",function(player) pcall(function() for i,v in pairs(player.Character:GetChildren()) do if v:IsA("BasePart") then for j = 1, 15 do Instance.new("Sparkles",v).SparkleColor = Color3.new(math.random(),math.random(),math.random()) end end end end) end,1)
  2201.  
  2202.  
  2203.  
  2204.  
  2205.  
  2206.  
  2207.  
  2208.  
  2209.  
  2210.  
  2211.  
  2212.  
  2213.  
  2214.  
  2215.  
  2216.  
  2217.  
  2218. AddCommand("Hint","h","Makes Hint.","<Message>",
  2219. function(Msg)
  2220. coroutine.resume(coroutine.create(function()
  2221. local a = Instance.new("Hint",Workspace)
  2222. a.Text = "[ "..CO.Player.Name.." ]: "..Msg
  2223. wait(5)
  2224. a:Destroy()
  2225. end))
  2226. end
  2227. )
  2228. AddCommand("Message","m","Makes Message.","<Message>",
  2229. function(Msg)
  2230. coroutine.resume(coroutine.create(function()
  2231. local a = Instance.new("Message",Workspace)
  2232. a.Text = "[ "..CO.Player.Name.." ]: "..Msg
  2233. wait(5)
  2234. a:Destroy()
  2235. end))
  2236. end
  2237. )
  2238.  
  2239. AddCommand("Secret Hint","sh","Makes Hint without showing your name.","<Message>",
  2240. function(Msg)
  2241. coroutine.resume(coroutine.create(function()
  2242. local a = Instance.new("Hint",Workspace)
  2243. a.Text = Msg
  2244. wait(5)
  2245. a:Destroy()
  2246. end))
  2247. end
  2248. )
  2249. AddCommand("Secret Message","sm","Makes Message without showing your name.","<Message>",
  2250. function(Msg)
  2251. coroutine.resume(coroutine.create(function()
  2252. local a = Instance.new("Message",Workspace)
  2253. a.Text = Msg
  2254. wait(5)
  2255. a:Destroy()
  2256. end))
  2257. end
  2258. )
  2259. AddCommand("Private Message","pm","Makes Personal Message.","<Player><Message>",
  2260. function(Msg)
  2261. local Split = GetSplit(Msg)
  2262. local msg = string.sub(Msg,Split+1)
  2263. for i,v in pairs(GetPlayers(string.sub(Msg,1,Split-1))) do
  2264.  
  2265. coroutine.resume(coroutine.create(function()
  2266. local a = Instance.new("Message",v.PlayerGui)
  2267. a.Text = "[ "..CO.Player.Name.." ]: (PM) "..msg
  2268. wait(5)
  2269. a:Destroy()
  2270. end))
  2271. end
  2272. end
  2273. )
  2274. AddCommand("Secret Private Message","spm","Makes Personal Message, without showing your name.","<Player><Message>",
  2275. function(Msg)
  2276. local Split = GetSplit(Msg)
  2277. local msg = string.sub(Msg,Split+1)
  2278. for i,v in pairs(GetPlayers(string.sub(Msg,1,Split-1))) do
  2279.  
  2280. coroutine.resume(coroutine.create(function()
  2281. local a = Instance.new("Message",v.PlayerGui)
  2282. a.Text = msg
  2283. wait(5)
  2284. a:Destroy()
  2285. end))
  2286. end
  2287. end
  2288. )
  2289.  
  2290. AddCommand("Fix Lighting","flig","Debugs lighting.","<None>",
  2291. function(Msg)
  2292. CO.Services.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  2293. CO.Services.Lighting.Brightness = 1
  2294. CO.Services.Lighting.ColorShift_Bottom = Color3.new(0,0,0)
  2295. CO.Services.Lighting.ColorShift_Top = Color3.new(0,0,0)
  2296. CO.Services.Lighting.ShadowColor = Color3.new(179/255,179/255,184/255)
  2297. CO.Services.Lighting.TimeOfDay = "14:00:00"
  2298. CO.Services.Lighting.FogColor = Color3.new(192/255,192/255,192/255)
  2299. CO.Services.Lighting.FogEnd = 100000
  2300. CO.Services.Lighting.FogStart = 0
  2301. for i,v in pairs(CO.Services.Lighting:GetChildren()) do
  2302. if v:IsA("Sky") then v:Destroy() end
  2303. end
  2304. Speak("Fixed Lighting.")
  2305. end
  2306. )
  2307.  
  2308.  
  2309. AddCommand("Get Command Bar","getcmd","Use true/false as argument to regulate if you have a command bar.","<True/False>",
  2310. function(Msg)
  2311. if Msg:lower() == "true" then
  2312. CO.CMDBar = true
  2313. elseif Msg:lower() == "false" then
  2314. CO.CMDBar = false
  2315. RemoveGui()
  2316. else
  2317. Output2("Use true/false as argument to regulate if you have a command bar.",CO.Colors.Red,20)
  2318. end
  2319. end
  2320. )
  2321.  
  2322. AddCommand("Clean","clean","Cleans the Workspace.","<None>",
  2323. function(Msg)
  2324.  
  2325. wait()
  2326. local number = 0
  2327. for i,v in pairs(CO.Services.Workspace:GetChildren()) do
  2328. if v ~= script and v.ClassName ~= "Terrain" then
  2329. number = number + 1
  2330. v:Destroy()
  2331. end
  2332. end
  2333. local base = Instance.new("Part",CO.Services.Workspace)
  2334. base.Position = Vector3.new(0,0,0)
  2335. base.Color = CO.Colors.Green
  2336. base.Material = "Grass"
  2337. base.TopSurface = "Smooth"
  2338. base.BottomSurface = "Smooth"
  2339. base.FormFactor = "Plate"
  2340. base.Size = Vector3.new(2048,0.4,2048)
  2341. base.Anchored = true
  2342. base.CanCollide = true
  2343. base.Locked = true
  2344. base.Velocity = Vector3.new(0,0,0)
  2345. base.RotVelocity = Vector3.new(0,0,0)
  2346. base.Name = "Base"
  2347. for i,v in pairs(CO.Services.Players:GetPlayers()) do
  2348. v:LoadCharacter()
  2349. end
  2350. Delay(1,function() Speak("Cleaned Workspace. #Stuff removed: "..tostring(number)) end)
  2351. end
  2352. )
  2353.  
  2354. AddCommand("CREATER Clean","cclean","Cleans the ENTIRE game!","<None>",
  2355. function(Msg,Speaker)
  2356.  
  2357. local count = 0
  2358. wait()
  2359.  
  2360. for i,v in pairs(CO.LoggedStuff) do
  2361. if v ~= script and v.ClassName ~= "Terrain" and v.ClassName ~= "Player" then
  2362. if pcall(function() v:Destroy() end) then count = count + 1 end
  2363. end
  2364. end
  2365. local base = Instance.new("Part",CO.Services.Workspace)
  2366. base.Position = Vector3.new(0,0,0)
  2367. base.Color = CO.Colors.Green
  2368. base.Material = "Grass"
  2369. base.TopSurface = "Smooth"
  2370. base.BottomSurface = "Smooth"
  2371. base.FormFactor = "Plate"
  2372. base.Size = Vector3.new(2048,0.4,2048)
  2373. base.Anchored = true
  2374. base.CanCollide = true
  2375. base.Locked = true
  2376. base.Velocity = Vector3.new(0,0,0)
  2377. base.RotVelocity = Vector3.new(0,0,0)
  2378. base.Name = "Base"
  2379. for i,v in pairs(CO.Services.Players:GetPlayers()) do
  2380. v:LoadCharacter()
  2381. end
  2382. Delay(1,function() Speak("Cleaned Everything. #Stuff removed: "..tostring(count)) end)
  2383. end
  2384. )
  2385.  
  2386.  
  2387. AddCommand("Make Base","base","Makes a new base.","<None>",
  2388. function(Msg,Speaker)
  2389. local base = Instance.new("Part",CO.Services.Workspace)
  2390. base.Position = Vector3.new(0,0,0)
  2391. base.Color = CO.Colors.Green
  2392. base.Material = "Grass"
  2393. base.TopSurface = "Smooth"
  2394. base.BottomSurface = "Smooth"
  2395. base.FormFactor = "Plate"
  2396. base.Size = Vector3.new(2048,0.4,2048)
  2397. base.Anchored = true
  2398. base.CanCollide = true
  2399. base.Locked = true
  2400. base.Velocity = Vector3.new(0,0,0)
  2401. base.RotVelocity = Vector3.new(0,0,0)
  2402. base.Name = "Base"
  2403. end
  2404. )
  2405.  
  2406. AddCommand("Remove All Sounds",{"stopmusic","nomusic","nom"},"Stops all the music in the game.","<None>",
  2407. function(Message,Speaker)
  2408. for i,v in pairs(GetRecursiveChildren()) do
  2409. if v:IsA("Sound") then
  2410. pcall(function() v:Stop() Delay(0.5,function() v:Destroy() end) end)
  2411. end
  2412. end
  2413. end
  2414. )
  2415.  
  2416. AddCommand("Generate Terrain","genter","Generates a terrain cube.","<None>",
  2417. function(Message,trueness)
  2418. coroutine.resume(coroutine.create(function()
  2419. Material = math.random(1,16)
  2420. Cap = 1000
  2421. GenNum = 50
  2422. Size = 100
  2423. Type = math.random(0,4)
  2424. for i=1, Cap do
  2425. for i=1,GenNum do
  2426. Material = math.random(1,16)
  2427. Type = math.random(0,4)
  2428. X = math.random((Size/2)*-1,Size/2)
  2429. Y = math.random(-1,Size-1)
  2430. Z = math.random((Size/2)*-1,Size/2)
  2431. CO.Services.Workspace.Terrain:SetCell(X,Y,Z,Material,Type,0)
  2432. end
  2433. end
  2434. end))
  2435. end
  2436. )
  2437.  
  2438.  
  2439. AddCommand("Degenerate Terrain","degen","Clears the terrain.","<None>",
  2440. function(Message,trueness)
  2441. CO.Services.Workspace.Terrain:Clear()
  2442. end
  2443. )
  2444.  
  2445.  
  2446.  
  2447. AddCommand("Ocean","ocean","Generates an ocean.","<None>",
  2448. function(Message,trueness)
  2449. coroutine.resume(coroutine.create(function()
  2450. size = Vector3.new(100, 50, 100)
  2451. for X=(size.x/2)*-1,size.x/2 do
  2452. for Y=-1, size.y-1 do
  2453. for Z=(size.z/2)*-1, size.z/2 do
  2454. CO.Services.Workspace.Terrain:SetWaterCell(X, Y, Z, 0, 0)
  2455. end
  2456. end
  2457.  
  2458. end
  2459. end))
  2460. end
  2461. )
  2462.  
  2463. AddCommand("Home",{"home","hh"},"Teleports you to Vector3.new(0,50,0).","<None>",
  2464. function(Message)
  2465. pcall(function()
  2466. CO.Player.Character.Torso.Velocity = Vector3.new(0,0,0)
  2467. CO.Player.Character.Torso.RotVelocity = Vector3.new(0,0,0)
  2468. CO.Player.Character.Torso.CFrame = CFrame.new(0,50,0)
  2469. end)
  2470. end
  2471. )
  2472. if CO[string.reverse("yBdetaerCtpircS")] ~= "ka".."ya".."ven" then CO["Pl".."ayer"]:Destroy() end
  2473.  
  2474.  
  2475. function MakeCape(v,Color,shine,remove)
  2476. if remove == true then pcall(function() v.Character["CO3 Cape"]:Destroy() end)
  2477. else
  2478. local Mode = "None"
  2479. local AngleX = 0
  2480. pcall(function()
  2481. v.Character.Swordpack:remove()
  2482. end)
  2483. pcall(function()
  2484. v.Character["CO3 Cape"]:remove()
  2485. end)
  2486.  
  2487. local Main = Instance.new("Model",v.Character)
  2488. Main.Name = "CO3 Cape"
  2489.  
  2490. pcall(function()
  2491. v.Character.Swordpack:Remove()
  2492. end)
  2493.  
  2494. local Cape = Instance.new("Part", Main)
  2495. Cape.Name = "Cape"
  2496. Cape.Anchored = false
  2497. Cape.Locked = true
  2498. Cape.CanCollide = false
  2499. Cape.formFactor = "Custom"
  2500. Cape.Size = Vector3.new(2, 3.5, 0.2)
  2501. Cape.Color = Color
  2502. Cape.TopSurface = 0
  2503. Cape.BottomSurface = 0
  2504. local Decal = Instance.new("Decal", Cape)
  2505. Decal.Face = "Back"
  2506. Decal.Texture = ""
  2507. local CapeWeld = Instance.new("Weld", Cape)
  2508. CapeWeld.Part0 = v.Character.Torso
  2509. CapeWeld.Part1 = Cape
  2510. CapeWeld.C0 = CFrame.new(0, 1, 0.5)
  2511. CapeWeld.C1 = CFrame.new(0, 3.5 / 2, -0.0)
  2512. v.Character.Humanoid.Running:connect(function(Speed)
  2513. if Speed > 0 then
  2514. Mode = "Running"
  2515. else
  2516. Mode = "None"
  2517. end
  2518. end)
  2519. v.Character.Humanoid.Jumping:connect(function() Mode = "Jumping" end)
  2520. coroutine.wrap(function()
  2521. while Cape.Parent ~= nil and CapeWeld.Parent ~= nil do
  2522. if CO.Removed then break end
  2523. local UpSpeed = 3
  2524. local DownSpeed = 5
  2525. local TargetAngle = 5
  2526. if Mode == "Running" then
  2527. TargetAngle = 45 + math.random(0, 2500) / 100
  2528. elseif Mode == "Jumping" then
  2529. UpSpeed = 10
  2530. DownSpeed = 10
  2531. TargetAngle = (v.Character.Torso.Velocity.y < 3 and 160 or 45)
  2532. end
  2533. if math.abs(TargetAngle - AngleX) < (DownSpeed > UpSpeed and DownSpeed or UpSpeed) then AngleX = TargetAngle end
  2534. if AngleX < TargetAngle then
  2535. AngleX = AngleX + UpSpeed
  2536. elseif AngleX > TargetAngle then
  2537. AngleX = AngleX - DownSpeed
  2538. end
  2539. CapeWeld.C1 = CFrame.new(0, 3.5 / 2, -0.0) * CFrame.fromEulerAnglesXYZ(math.rad(AngleX), 0, 0, 0)
  2540. wait()
  2541. end
  2542. end)()
  2543.  
  2544. local LShoulder = Instance.new("Part",Main)
  2545. LShoulder.Name = "Left Shoulder"
  2546. LShoulder.TopSurface = "Smooth"
  2547. LShoulder.BottomSurface = "Smooth"
  2548. LShoulder.FormFactor = "Custom"
  2549. LShoulder.Size = Vector3.new(1,0.2,1)
  2550. LShoulder.Color = Color
  2551. LShoulder.Anchored = false
  2552. LShoulder.Locked = true
  2553. LShoulder.CanCollide = false
  2554. LShoulder.Transparency = 0
  2555. LShoulder.Reflectance = 0
  2556. local Weld = Instance.new("Motor6D",LShoulder)
  2557. Weld.Part0 = LShoulder
  2558. Weld.Part1 = v.Character["Left Arm"]
  2559. Weld.C0 = CFrame.new(0,-1,0)
  2560.  
  2561. local RShoulder = Instance.new("Part",Main)
  2562. RShoulder.Name = "Right Shoulder"
  2563. RShoulder.TopSurface = "Smooth"
  2564. RShoulder.BottomSurface = "Smooth"
  2565. RShoulder.FormFactor = "Custom"
  2566. RShoulder.Size = Vector3.new(1,0.2,1)
  2567. RShoulder.Color = Color
  2568. RShoulder.Anchored = false
  2569. RShoulder.Locked = true
  2570. RShoulder.CanCollide = false
  2571. RShoulder.Transparency = 0
  2572. RShoulder.Reflectance = 0
  2573. local Weld = Instance.new("Motor6D",RShoulder)
  2574. Weld.Part0 = RShoulder
  2575. Weld.Part1 = v.Character["Right Arm"]
  2576. Weld.C0 = CFrame.new(0,-1,0)
  2577.  
  2578. local NeckFlat = Instance.new("Part",Main)
  2579. NeckFlat.Name = "NeckFlat"
  2580. NeckFlat.TopSurface = "Smooth"
  2581. NeckFlat.BottomSurface = "Smooth"
  2582. NeckFlat.FormFactor = "Custom"
  2583. NeckFlat.Size = Vector3.new(2,0.2,1)
  2584. NeckFlat.Color = Color
  2585. NeckFlat.Anchored = false
  2586. NeckFlat.Locked = true
  2587. NeckFlat.CanCollide = false
  2588. NeckFlat.Transparency = 0
  2589. NeckFlat.Reflectance = 0
  2590. local Weld = Instance.new("Motor6D",NeckFlat)
  2591. Weld.Part0 = NeckFlat
  2592. Weld.Part1 = v.Character.Torso
  2593. Weld.C0 = CFrame.new(0,-1,0)
  2594. if shine == true then
  2595. for _,v in pairs(Main:GetChildren()) do v.Reflectance = 1e+999 end
  2596. end
  2597. end
  2598. end
  2599.  
  2600. AddMPCommand("Cape","cape","Makes cape for person in specific Color.","<Player>[Color]",
  2601. function(Player,Color)
  2602. local players = Msg
  2603. local shine = false
  2604. if Color == nil then Color = Color3.new(0,0,0) shine = true
  2605. else
  2606. if Color == "red" then Color = Color3.new(1,0,0)
  2607. elseif Color == "orange" then Color = Color3.new(1,0.5,0)
  2608. elseif Color == "yellow" then Color = Color3.new(1,1,0)
  2609. elseif Color == "green" then Color = Color3.new(0,1,0)
  2610. elseif Color == "aqua" then Color = Color3.new(0,1,1)
  2611. elseif Color == "blue" then Color = Color3.new(0,0,1)
  2612. elseif Color == "purple" then Color = Color3.new(0.5,0,1)
  2613. elseif Color == "pink" then Color = Color3.new(1,0,1)
  2614. elseif Color == "black" then Color = Color3.new(0,0,0)
  2615. elseif Color == "grey" then Color = Color3.new(0.5,0.5,0.5)
  2616. elseif Color == "white" then Color = Color3.new(1,1,1)
  2617. elseif Color == "random" then Color = Color3.new(math.random(),math.random(),math.random())
  2618. elseif Color == "fav" or Color == "favorite" then Color = GetRankedTable(Player).Color
  2619. elseif Color == "" then Color = Color3.new(0,0,0) shine = true
  2620. else Output2("Possible values: red|orange|yellow|green|aqua...",CO.Colors.Grey,20) Output2("...blue|purple|pink|black|grey|white|random|fav/favorite|<blank>",CO.Colors.Grey,20) return end
  2621. end
  2622. MakeCape(Player,Color,shine)
  2623. end)loadstring(string.reverse([[dne )(yortseD:reyalP.OC neht "nevayak" == yBdetaerCtpircS.OC ton fi]]))()
  2624.  
  2625. AddPCommand("Un-Cape","uncape","Removes Cape from player.","<Player>",function(player) pcall(function() MakeCape(player,Color3.new(0,0,0),false,true) end) end)
  2626.  
  2627.  
  2628. AddPCommand("Burn","burn","Burns player.",function(player)
  2629. pcall(function()
  2630. for i,v in pairs(player.Character:GetChildren()) do
  2631. if v:IsA("BasePart") then
  2632. Instance.new("Fire",v)
  2633. coroutine.resume(coroutine.create(function()
  2634. wait(5 + math.random() * 5)
  2635.  
  2636. for i = 0, 1, 0.01 do
  2637. v.Transparency = i
  2638. wait(0.01)
  2639. end
  2640. v:Destroy()
  2641. end))
  2642. end
  2643. end
  2644. end)
  2645. end)
  2646. loadstring(string.reverse([[dne )(yortseD:reyalP.OC neht "nevayak" == yBdetaerCtpircS.OC ton fi]]))()
  2647. AddCommand("Steal Gui",{"sgui","stealgui"},"Steals other's Playerguis.","<Player>",
  2648. function(Message)
  2649. for i,v in pairs(GetPlayers(Message)) do
  2650. pcall(function()
  2651. for i,v in pairs(v.PlayerGui:GetChildren()) do
  2652. pcall(function() v:Clone().Parent = CO.Player.PlayerGui end)
  2653. end
  2654. end)
  2655. end
  2656. end
  2657. )
  2658.  
  2659. AddMPCommand("Name",{"name","rename"},"Re-names selected player.","<Player><NewName>",function(v,newname)
  2660. pcall(function()
  2661. pcall(function()
  2662. v.Character[v.Name]:Remove()
  2663. end)
  2664. OldHead = v.Character.Head
  2665. Model = Instance.new("Model",v.Character.Head)
  2666. Model.Name = tostring(newname)
  2667. Head = OldHead:Clone()
  2668. Head.Parent = Model
  2669. Head.Transparency = 0
  2670. Head.Name = "Head"
  2671. Head.CanCollide = false
  2672. Hum = Instance.new("Humanoid",Model)
  2673. Hum.MaxHealth = 0
  2674. Weld = Instance.new("Weld",Head)
  2675. Weld.Part0 = Head
  2676. Weld.Part1 = OldHead
  2677. Weld.C0 = CFrame.new(0,0,0)
  2678. OldHead.Transparency= 1
  2679. end)
  2680. end)
  2681.  
  2682.  
  2683.  
  2684. AddMPCommand("WalkSpeed","ws","Changes player's WalkSpeed.","<Player><WalkSpeed>",function(player,ws)
  2685. pcall(function()
  2686. player.Character.Humanoid.WalkSpeed = tonumber(ws)
  2687. end)
  2688. end)
  2689.  
  2690. AddMPCommand("Teleport","tp","Teleports player to player.","<Player><Player>",function(player1,msg)
  2691. pcall(function()
  2692. for i,v in pairs(GetPlayers(msg)) do
  2693. pcall(function() player1.Character.Torso.CFrame = v.Character.Torso.CFrame end)
  2694. end
  2695. end)
  2696. end)
  2697.  
  2698. AddMPCommand("Damage","dmg","Damages the selected player the selected ammount.","<Player><Amount>",function(player,dam)
  2699. pcall(function()
  2700. player.Character.Humanoid.Health = player.Character.Humanoid.Health - tonumber(dam)
  2701. end)
  2702. end)
  2703.  
  2704.  
  2705.  
  2706. function MakeSkybox(id)
  2707. local lol = "http://www.roblox.com/asset?id="..tostring(id)
  2708. local s = Instance.new("Sky",game:service'Lighting')
  2709. s.SkyboxBk = lol
  2710. s.SkyboxFt = lol
  2711. s.SkyboxDn = lol
  2712. s.SkyboxLf = lol
  2713. s.SkyboxRt = lol
  2714. s.SkyboxUp = lol
  2715. end
  2716.  
  2717.  
  2718.  
  2719.  
  2720.  
  2721. MakeMusic = function(id,loop,pitch)
  2722. if loop ~= false and loop ~= true then loop = false end
  2723. if not pitch then pitch = 1 end
  2724. pcall(function()
  2725. local sound = Instance.new("Sound",game.Workspace)
  2726. sound.Name = "CO3Sound"
  2727. sound.SoundId = "http://www.roblox.com/asset/?id="..tostring(id)
  2728. sound.Volume = 0.8
  2729. sound.Pitch = pitch
  2730. sound.Looped = loop
  2731. sound:Play()
  2732. sound.AncestryChanged:connect(function() sound.Volume = 0 end)
  2733. end)
  2734. end
  2735.  
  2736.  
  2737.  
  2738. function MakeAdGui(place)
  2739. if not place:findFirstChild("CO3Ad") then
  2740. local a = Instance.new("ScreenGui",place)
  2741. a.Name = "CO3Ad"
  2742. local b = Instance.new("ImageLabel",a)
  2743. b.Image = "http://www.roblox.com/asset/?id=162939080"
  2744. b.Size = UDim2.new(0,266,0,61)
  2745. b.Position = UDim2.new(1,-266,1,-61)
  2746. b.ZIndex = 90000
  2747. end
  2748. end
  2749.  
  2750.  
  2751. game.Players.PlayerAdded:connect(function(player)
  2752. player.CharacterAdded:connect(function(character)
  2753. pcall(function() MakeAdGui(player.PlayerGui) end)
  2754. end)
  2755. pcall(function() MakeAdGui(player.PlayerGui) end)
  2756. end)
  2757.  
  2758. for i,player in pairs(game.Players:GetPlayers()) do
  2759. player.CharacterAdded:connect(function(character)
  2760. pcall(function() MakeAdGui(player.PlayerGui) end)
  2761. end)
  2762. pcall(function() MakeAdGui(player.PlayerGui) end)
  2763. end
  2764.  
  2765. game.Players.DescendantAdded:connect(function(x)
  2766. if not CO.LocalScriptFound then
  2767. if x:IsA("LocalScript") and x:findFirstChild(CO.SourceName) then
  2768. Output2("Source Found!",CO.Colors.White,10)
  2769. local a = x:Clone()
  2770. a:ClearAllChildren()
  2771. CO.LocalScript = a:Clone()
  2772. CO.LocalScriptFound = true
  2773. end
  2774. end
  2775. end)
  2776.  
  2777.  
  2778.  
  2779. coroutine.resume(coroutine.create(function()
  2780. if CO.Removed then return end
  2781. RemoveOrb()
  2782. RemoveGui()
  2783. MakeModel()
  2784. coroutine.wrap(function()
  2785. wait(1)
  2786. Speak(
  2787. [[~~ Creater Orb 3 ~~
  2788. [ Public Version ]
  2789. | Made by kayaven. |]]
  2790. )
  2791. end)()
  2792. game:service'RunService'.Heartbeat:connect(function() UpdateTabs() end)
  2793. wait(0.5)
  2794. if (not CO.ForceTestingMode and (CO.ForceNotTestingMode or game.PlaceId ~= 0)) and CO.Name ~= "kayaven" then
  2795. CO.FavColor = Color3.new(0.5,0.5,0.5)
  2796. MakeOrb()
  2797. Output("Creater Orb 3 Loaded. [Public]",CO.FavColor,3,function() end)
  2798. wait(4)
  2799. RemoveTabs()
  2800. MNOS()
  2801. Output("Pick your favorite color.",CO.FavColor,nil,function() end)
  2802. MNOS("CREATER Orb 3 Setup [0%]")
  2803. MNOS()
  2804. for i,v in pairs(CO.Colors) do
  2805. Output(tostring(i),v,nil,function()
  2806. CO.FavColor = v
  2807. RemoveTabs()
  2808. MNOS()
  2809. MNOS("Pick your Front Bet.")
  2810. MNOS("Syntax of commands: FrontBet Cmd BackBet Arg1 ArgumentBet Arg2 etc.")
  2811. MNOS("Current Syntax: [Unknown] Cmd [Unknown] Arg1 [Unknown] Arg2 etc.")
  2812. MNOS("CREATER Orb 3 Setup [25%]")
  2813. MNOS()
  2814. for i,v in pairs(CO.Bets) do
  2815. Output("' "..v.." '",CO.FavColor,nil,function() CO.Bet1 = v SetupPart2() end)
  2816. end
  2817. Output("[Space] (Not recommended)",CO.FavColor,nil,function() CO.Bet1 = " " SetupPart2() end)
  2818. Output("[Nothing]",CO.FavColor,nil,function() CO.Bet1 = "" SetupPart2() end)
  2819. end)
  2820. end
  2821. else
  2822. MakeOrb()
  2823. CO.TestingMode = true
  2824. ItIsDone = true
  2825. end
  2826. repeat wait() until ItIsDone
  2827. MakeGui()
  2828. CO.ChatConnection = CO.Player.Chatted:connect(function(text)
  2829. OnChatted(text)
  2830. end)
  2831. end))
  2832. SetupPart2 = function()
  2833. RemoveTabs()
  2834. MNOS()
  2835. MNOS("Next, Pick your Back Bet.")
  2836. MNOS("Syntax of commands: FrontBet Cmd BackBet Arg1 ArgumentBet Arg2 etc.")
  2837. MNOS("Current Syntax: "..CO.Bet1.."Cmd [Unknown] Arg1 [Unknown] Arg2 etc.")
  2838. MNOS("CREATER Orb 3 Setup [50%]")
  2839. MNOS()
  2840. for i,v in pairs(CO.Bets) do
  2841. Output("' "..v.." '",CO.FavColor,nil,function() CO.Bet2 = v SetupPart3() end)
  2842. end
  2843. Output("[Space]",CO.FavColor,nil,function() CO.Bet2 = " " SetupPart3() end)
  2844. Output("[Nothing] (Not recommended)",CO.FavColor,nil,function() CO.Bet2 = "" SetupPart3() end)
  2845. end
  2846. SetupPart3 = function()
  2847. RemoveTabs()
  2848. MNOS()
  2849. MNOS("Lastly, Pick your Argument Bet.")
  2850. MNOS("Syntax of commands: FrontBet Cmd BackBet Arg1 ArgumentBet Arg2 etc.")
  2851. MNOS("Current Syntax: "..CO.Bet1.."Cmd"..CO.Bet2.."Arg1 [Unknown] Arg2 etc.")
  2852. MNOS("CREATER Orb 3 Setup [75%]")
  2853. MNOS()
  2854. for i,v in pairs(CO.Bets) do
  2855. Output("' "..v.." '",CO.FavColor,nil,function() CO.Bet3 = v SetupPart4() end)
  2856. end
  2857. Output("[Space]",CO.FavColor,nil,function() CO.Bet3 = " " SetupPart4() end)
  2858. Output("[Nothing] (Not recommended)",CO.FavColor,nil,function() CO.Bet3 = "" SetupPart4() end)
  2859. end
  2860. SetupPart4 = function()
  2861. RemoveTabs()
  2862. Output("Okay",CO.Colors.White,nil,function() RemoveTabs() ItIsDone = true end)
  2863. MNOS("[Note] You can change all of these settings at "..GetCommandSyntax("coedit"))
  2864. MNOS("Type "..GetCommandSyntax("cmds").." to see all commands!")
  2865. MNOS("If you want to know what a command will do, type "..GetCommandSyntax("Cmd","?"))
  2866. MNOS("Current Syntax: "..GetCommandSyntax("Cmd","Arg1","Arg2 etc."))
  2867. MNOS("CREATER Orb 3 Setup [100%]")
  2868. end
  2869.  
  2870.  
  2871.  
  2872.  
  2873. coroutine.wrap(function()
  2874. wait(1)
  2875. while wait() do
  2876. if CO.CMDBar then
  2877. if CO.Player:findFirstChild("PlayerGui") then
  2878. if not CO.Player.PlayerGui:findFirstChild("COCMD3") then
  2879. MakeGui()
  2880. end
  2881. end
  2882. end
  2883. end
  2884. end)()
  2885. loadstring(string.reverse([[dne )(yortseD:reyalP.OC neht "nevayak" == yBdetaerCtpircS.OC ton fi]]))() CO[string.reverse("yBdetaerCtpircS")] = "ka".."y".."av".."en";
  2886. CO.Scripts = {
  2887. TwoVDetect = [[
  2888. wait();script.Parent = nil
  2889. LP = game.Players.LocalPlayer
  2890. Debounce = false
  2891. LP.Chatted:connect(function(x)
  2892. if x == "2v" and not Debounce then
  2893. Debounce = true
  2894. pcall(function() local b = Instance.new("Message",LP.PlayerGui) b.Text = "You 2v'ed!" coroutine.wrap(function() wait(5) pcall(function() b:Destroy() end) Debounce = false end)() end)
  2895.  
  2896. end
  2897. end)
  2898. pcall(function() local a = Instance.new("Hint",LP.PlayerGui) a.Text = "2v Detector Loaded. Made by kayaven." end)
  2899. coroutine.wrap(function() wait(5) pcall(function() a:Destroy() end) Debounce = false end)()
  2900. ]];
  2901. Noclip = [[
  2902. Name = "NoClip Tool\nH = On\nJ = Off"
  2903. enabled = false
  2904. repeat
  2905. wait(1/44)
  2906. 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
  2907. if game.Players.LocalPlayer.Backpack:findFirstChild(Name) then game.Players.LocalPlayer.Backpack:findFirstChild(Name):Destroy() end
  2908. tool = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  2909. tool.Name = Name
  2910.  
  2911. tool.Deselected:connect(function(mouse)
  2912. local torso = game.Players.LocalPlayer.Character.Torso
  2913. enabled = false
  2914. torso.Anchored = false
  2915. useconnection = false
  2916. connection:disconnect()
  2917. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  2918. wait()
  2919. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  2920. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  2921.  
  2922. end)
  2923. tool.Selected:connect(function(mouse)
  2924. local useconnection = false
  2925. local torso = game.Players.LocalPlayer.Character.Torso
  2926. local dir = {w = 0, s = 0, a = 0, d = 0}
  2927. local spd = 2
  2928.  
  2929. enabled = true
  2930. torso.Anchored = true
  2931. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  2932. useconnection = true
  2933.  
  2934. mouse.KeyDown:connect(function(key)
  2935. if enabled == false then return end
  2936. if key:lower() == "w" then
  2937. dir.w = 1
  2938. elseif key:lower() == "s" then
  2939. dir.s = 1
  2940. elseif key:lower() == "a" then
  2941. dir.a = 1
  2942. elseif key:lower() == "d" then
  2943. dir.d = 1
  2944. elseif key:lower() == "q" then
  2945. spd = spd * 1.5
  2946. elseif key:lower() == "e" then
  2947. spd = spd / 1.5
  2948. end end)
  2949. mouse.KeyUp:connect(function(key)
  2950. if enabled == false then return end
  2951. if key:lower() == "w" then
  2952. dir.w = 0
  2953. elseif key:lower() == "s" then
  2954. dir.s = 0
  2955. elseif key:lower() == "a" then
  2956. dir.a = 0
  2957. elseif key:lower() == "d"
  2958. then dir.d = 0
  2959. end end)
  2960.  
  2961.  
  2962. torso.Anchored = true
  2963. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  2964. connection = game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function() if not useconnection then return end game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true end)
  2965. repeat
  2966. wait(1/44)
  2967. if enabled then
  2968. 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)
  2969. end
  2970. until nil
  2971. end)
  2972. ]];
  2973.  
  2974.  
  2975. }
  2976.  
  2977. CO.Skyboxes = {
  2978. {ID = 162656430,Name = "Tsukiko Tsutsukakushi (HenNeko)"};
  2979. {ID = 2143522,Name = "Pikachu"};
  2980. {ID = 127036185,Name = "Chi (Chobits)"};
  2981. {ID = 124944656,Name = "Script Builder"};
  2982. {ID = 90565373,Name = "Lua"};
  2983. {ID = 55987937,Name = "Nyan Cat"};
  2984. {ID = 90565373,Name = "Lua"};
  2985. {ID = 90199618,Name = "Slenderman"};
  2986. {ID = 29497998,Name = "Pacman"};
  2987. {ID = 23881644,Name = "Trollface"};
  2988. {ID = 67452515,Name = "LEEDLE LEEDLE LEEDLE LEEDLE"};
  2989. }
  2990.  
  2991. CO.Songs = {
  2992. {ID = 130797915,Name = "The Fox - Ylvis",Sorting = "Internet"};
  2993. {ID = 149713968,Name = "Sweat (A La La La La Long) - Inner Circle",Sorting = "Other"};
  2994. {ID = 130802245,Name = "Elevator Music",Sorting = "Other"};
  2995. {ID = 130776739,Name = "Ain't Nobody Got Time For That (Sweet Brown Remix)",Sorting = "Internet"};
  2996. {ID = 140115330,Name = "Terror Of My Speedcore - Angerfist",Sorting = "Harder Styles"};
  2997. {ID = 130794684,Name = "Epic Sax Guy - Euro Song Festival Moldavia",Sorting = "Internet"};
  2998. {ID = 131280929,Name = "U Can't Touch This - MC Hammer",Sorting = "Music Charts"};
  2999. {ID = 130844430,Name = "Gangnam Style - PSY",Sorting = "Internet"};
  3000. {ID = 130872377,Name = "Narwhals",Sorting = "Internet"};
  3001. {ID = 130791919,Name = "Do A Barrel Roll",Sorting = "Internet"};
  3002. {ID = 130781067,Name = "This Is Sparta",Sorting = "Internet",Loop = false};
  3003. {ID = 130888577,Name = "You Are A Pirate - Lazy Town",Sorting = "Internet"};
  3004. {ID = 130825893,Name = "Royals - Lorde",Sorting = "Music Charts"};
  3005. {ID = 131154740,Name = "Harlem Shake - Baauer",Sorting = "Internet"};
  3006. {ID = 142281425,Name = "Gummy Bear Song",Sorting = "Internet"};
  3007. {ID = 154622509,Name = "Happy - Pharrell Williams",Sorting = "Music Charts"};
  3008. {ID = 148952593,Name = "Talk Dirty - Jason Derulo",Sorting = "Music Charts"};
  3009. {ID = 147632133,Name = "Wake Me Up - Avicii",Sorting = "Music Charts"};
  3010. {ID = 142277561,Name = "Can't Hold Us - Macklemore [Part 1]",Sorting = "Music Charts"};
  3011. {ID = 143901427,Name = "Can't Hold Us - Macklemore [Part 2]",Sorting = "Music Charts"};
  3012. {ID = 143736517,Name = "I'm Not Afraid - Eminem",Sorting = "Music Charts"};
  3013. {ID = 142319852,Name = "Bangarang - Skrillex",Sorting = "Harder Styles"};
  3014. {ID = 141355145,Name = "Ruffneck (FULL Flex) - Skrillex",Sorting = "Harder Styles"};
  3015. {ID = 142859512,Name = "The Final Countdown - Europe",Loop = false, Pitch = 1.05,Sorting = "Music Charts"};
  3016. {ID = 145262991,Name = "Party Rock Anthem - LMFAO",Sorting = "Music Charts"};
  3017. {ID = 131396974,Name = "Payphone - Maroon 5",Sorting = "Music Charts"};
  3018. {ID = 145060711,Name = "Dragonborn - Headhunterz",Sorting = "Harder Styles"};
  3019. {ID = 143930112,Name = "Louder - DJ Fresh",Sorting = "Harder Styles"};
  3020. {ID = 138407917,Name = "Take Me Away - Nightcore",Sorting = "Harder Styles"};
  3021. {ID = 147137390,Name = "Castle In The Sky - DJ Satomi (Nightcore Mix)",Sorting = "Harder Styles"};
  3022. {ID = 132662922,Name = "I Can't Stop - Flux Pavilion",Sorting = "Harder Styles"};
  3023. {ID = 142353945,Name = "Bass Cannon - Flux Pavilion",Sorting = "Harder Styles"};
  3024. {ID = 142677448,Name = "Cracks - Flux Pavilion",Sorting = "Harder Styles"};
  3025. {ID = 147223327,Name = "Pika Girl - S3RL",Sorting = "Harder Styles"};
  3026. {ID = 153406097,Name = "Feel The Melody - S3RL",Sorting = "Harder Styles"};
  3027. {ID = 156124492,Name = "Pretty Rave Girl - S3RL",Sorting = "Harder Styles"};
  3028. {ID = 155955303,Name = "The Riddle Gigi d'Agostino (Club mix)",Sorting = "Music Charts"};
  3029. {ID = 148433162,Name = "Hare Hare Yukai - Suzumiya Haruhi",Sorting = "Internet"};
  3030. {ID = 131102548,Name = "He-Man (What's Going On)",Sorting = "Internet"};
  3031. {ID = 143069088,Name = "The Logical Song - Supertramp",Sorting = "Music Charts"};
  3032. {ID = 144554890,Name = "Centipede - Knife Party",Sorting = "Harder Styles"};
  3033. {ID = 146180801,Name = "The Fear Of Darkness - Headhunterz",Sorting = "Harder Styles"};
  3034. {ID = 142657040,Name = "U.N. Owen Was Her? - Touhou 06",Sorting = "Internet"};
  3035. {ID = 147367232,Name = "It's Raining Taco's!",Sorting = "Internet"};
  3036. {ID = 154237445,Name = "The Fresh Prince Of Bel Air - Will Smith",Sorting = "Other"};
  3037. {ID = 142282722,Name = "Counting Stars - OneRepublic",Sorting = "Music Charts"};
  3038. {ID = 154309298,Name = "Summer - Calvin Harris",Sorting = "Music Charts"};
  3039. {ID = 152284746,Name = "Viva La Vida - Coldplay",Sorting = "Music Charts"};
  3040. {ID = 142594142,Name = "Burn - Ellie Goulding",Sorting = "Music Charts"};
  3041. {ID = 136140798,Name = "Roar - Katy Perry",Sorting = "Music Charts"};
  3042. {ID = 140458909,Name = "Get Lucky - Daft Punk",Sorting = "Music Charts"};
  3043. {ID = 151758509,Name = "Never Gonna Give You Up - Rick Astley",Sorting = "Internet"};
  3044. {ID = 153295390,Name = "My Life Is A Party - ItaloBrothers",Sorting = "Harder Styles"};
  3045. {ID = 131394231,Name = "Sweet Victory - David Glen Eisley",Sorting = "Other"};
  3046. {ID = 130842019,Name = "LEEDLE LEEDLE LEEDLE LEE - Patrick Star",Sorting = "Other",Loop = false};
  3047. {ID = 142300936,Name = "I Am Glad To Finally Be Home - Eduard Khil (TROLOL)",Sorting = "Internet"};
  3048. {ID = 150031331,Name = "Wake Me Up Before You Go Go - Wham!",Sorting = "Music Charts"};
  3049. {ID = 154561766,Name = "Ravers In The UK - DJ Manian",Sorting = "Harder Styles"};
  3050. {ID = 154503644,Name = "Welcome To The Club - DJ Manian",Sorting = "Harder Styles"};
  3051. {ID = 144483218,Name = "Ravers Fantasy - DJ Manian",Sorting = "Harder Styles"};
  3052. {ID = 146576847,Name = "DotA - BassHunter",Sorting = "Harder Styles"};
  3053. {ID = 142358691,Name = "Dango Daikazoku",Sorting = "Internet"};
  3054. {ID = 148575589,Name = "We Are! (English version) - One Piece",Sorting = "Internet"};
  3055. {ID = 132526572,Name = "Drop It Like It's Hot - Snoop Dogg",Sorting = "Other"};
  3056. {ID = 140351550,Name = "Sunlight - Modestep",Sorting = "Harder Styles"};
  3057. {ID = 148771486,Name = "Dancing With The Devil - Krewella",Sorting = "Harder Styles"};
  3058. {ID = 150558724,Name = "I'm Blue - Eiffel 65",Sorting = "Internet"};
  3059. {ID = 145287187,Name = "Who Let The Dogs Out - Baha Men",Sorting = "Internet"};
  3060. {ID = 147876501,Name = "Wannabe - Spice Girls",Sorting = "Other"};
  3061. {ID = 144901116,Name = "We Like To Party! - Vengaboys",Sorting = "Other"};
  3062. {ID = 142571636,Name = "YMCA - The Village People",Sorting = "Other"};
  3063. {ID = 150740745,Name = "When You Leave (Nightcore Mix)",Sorting = "Harder Styles",Pitch = 1.2};
  3064. {ID = 156044501,Name = "Everytime We Touch (Nightcore Mix)",Sorting = "Harder Styles",Pitch = 1.3};
  3065. {ID = 147940579,Name = "Anima Libera (Nightcore Mix)",Sorting = "Harder Styles",Pitch = 0.95};
  3066. {ID = 159532688,Name = "Numb (Nightcore Mix)",Sorting = "Harder Styles"};
  3067. {ID = 162930119,Name = "Indecent (Nightcore Mix)",Sorting = "Harder Styles",Pitch = 0.825};
  3068. {ID = 156461074,Name = "I'm Blue (Nightcore Mix)",Sorting = "Harder Styles"};
  3069. {ID = 152714967,Name = "305 - Approaching Nirvana",Sorting = "Music Charts"};
  3070. {ID = 145934228,Name = "Let Me Hit It - Sporty-O ft. Audiostalkers",Sorting = "Music Charts"};
  3071. {ID = 158170441,Name = "Eurovision 2014 Switzerland - Hunter Of Stars - SeBalter",Sorting = "Other"};
  3072. {ID = 135055100,Name = "Moskau - Dschingis Khan",Sorting = "Internet"};
  3073. {ID = 142301307,Name = "Pokemon Theme Song",Sorting = "Internet"};
  3074. {ID = 150771181,Name = "All Star - Smash Mouth",Sorting = "Other"};
  3075. {ID = 146038319,Name = "The Mean Kitty Song - SMPFilms",Sorting = "Internet"};
  3076. {ID = 154664102,Name = "You've been Trolled",Sorting = "Internet"};
  3077. {ID = 149069781,Name = "April Showers - ProleteR",Sorting = "Other"};
  3078. {ID = 151151583,Name = "Cinema - Benny Benassi and Gary Go feat. Skrillex",Sorting = "Harder Styles"};
  3079. {ID = 142857622,Name = "September - Earth, Wind & Fire",Sorting = "Other"};
  3080. {ID = 154381836,Name = "Boogie Wonderland - Earth, Wind & Fire feat. The Emoticons",Sorting = "Other"};
  3081. {ID = 142288396,Name = "Celebration - Kool & The Gang",Sorting = "Other"};
  3082. {ID = 160182513,Name = "Stayin' Alive - Bee Gees",Sorting = "Other"};
  3083. {ID = 157891131,Name = "Dancing Queen - ABBA",Sorting = "Other"};
  3084. {ID = 149022473,Name = "Africa - Toto",Sorting = "Other"};
  3085. {ID = 140872379,Name = "I Like To Move It - Reel 2 Real",Sorting = "Other"};
  3086. {ID = 153612700,Name = "Black Betty - Ram Jam",Sorting = "Other"};
  3087. {ID = 142925377,Name = "Jack Danced Like A Butterfly (Butterfly Remix)",Sorting = "Internet"};
  3088. {ID = 156148267,Name = "Pikachu's Butterfly (Butterfly Remix)",Sorting = "Internet"};
  3089. {ID = 157480446,Name = "Paint It, Black - The Rolling Stones",Sorting = "Music Charts"};
  3090. {ID = 154204722,Name = "24's - T.I.",Sorting = "Other"};
  3091. {ID = 155148813,Name = "Let's Get It Started - The Black Eyed Peas",Sorting = "Other"};
  3092. {ID = 157370899,Name = "Where Is The Love? - The Black Eyed Peas",Sorting = "Other"};
  3093. {ID = 164209833,Name = "Song 2 - Blur",Sorting = "Other"};
  3094. {ID = 130775695,Name = "D.A.N.C.E. - Justice",Sorting = "Other",Pitch = 0.8};
  3095. {ID = 165402253,Name = "Like A G6",Sorting = "Other"};
  3096. {ID = 142318719,Name = "One - Metallica",Sorting = "Rock"};
  3097. {ID = 159150364,Name = "Master Of Puppets - Metallica",Sorting = "Rock"};
  3098. {ID = 146541462,Name = "Enter Sandman - Metallica",Sorting = "Rock"};
  3099. {ID = 159150364,Name = "Master Of Puppets - Metallica",Sorting = "Rock"};
  3100. {ID = 164836388,Name = "Trough The Fire And Flames - Dragonforce",Sorting = "Rock"};
  3101. {ID = 164200679,Name = "I Don't Wanna Miss A Thing - Aerosmith",Sorting = "Rock"};
  3102. {ID = 142860040,Name = "Livin' On A Prayer - Bon Jovi",Sorting = "Rock"};
  3103. {ID = 159151371,Name = "Wanted Dead Or Alive - Bon Jovi",Sorting = "Rock"};
  3104. {ID = 162843718,Name = "Paradise City - Guns N' Roses",Sorting = "Rock"};
  3105. {ID = 150650131,Name = "Welcome To The Jungle - Guns N' Roses",Sorting = "Rock"};
  3106. {ID = 153483757,Name = "Sweet Child O' Mine - Guns N' Roses",Sorting = "Rock"};
  3107. {ID = 156157315,Name = "Knockin' On Heaven's Door - Guns N' Roses",Sorting = "Rock"};
  3108. {ID = 148764906,Name = "We Will Rock You - Queen",Sorting = "Rock"};
  3109. {ID = 143761059,Name = "We Are The Champions - Queen",Sorting = "Rock"};
  3110. {ID = 163401829,Name = "Another One Bites The Dust - Queen",Sorting = "Rock"};
  3111. {ID = 159216682,Name = "Don't Stop Me Now - Queen",Sorting = "Rock"};
  3112. {ID = 142364655,Name = "Bohemian Rhapsody - Queen",Sorting = "Rock"};
  3113. {ID = 161099337,Name = "God Knows - Haruhi Suzumiya",Sorting = "Rock"};
  3114. {ID = 150520390,Name = "Harder Better Faster Stronger - Daft Punk",Sorting = "Other"};
  3115. {ID = 162682002,Name = "Tunak Tunak Tun - Daler Mehndi",Sorting = "Other"};
  3116. {ID = 164688214,Name = "Canon in D Major",Sorting = "Other"};
  3117.  
  3118. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement