Advertisement
SmokeDelsin

dgrf

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