Advertisement
Muxess

Untitled

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