Advertisement
BINO2002

Untitled

May 3rd, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.35 KB | None | 0 0
  1. wait()
  2. script.Parent = nil
  3. script.Name = 'Eximius_Admin Generation 1'
  4. script:ClearAllChildren()
  5. --[[Bypass]]--
  6. --Bypass removed (Due to errors, i'm fixing it c:)
  7. -------------
  8. local Eximius
  9.  
  10.  
  11. Eximius = {
  12. Functions = {};
  13. Services = {};
  14. Ranked = {
  15. {Name = 'BINO2002', Rank = 7, Reason = 'Creator', Color = 'Bright blue'};
  16. {Name = 'ScripterForSB', Rank = 7, Reason = 'Creator | ALT', Color = 'White'};
  17. {Name = 'gavinsharp100', Rank = 5, Reason = 'Amazing Friend', Color = 'Bright purple'};
  18. {Name = 'MasterKelvinVIP', Rank = 5, Reason = 'Godly Scripter', Color = 'Cyan'};
  19. {Name = 'sebastian12341234', Rank = 6, Reason = 'Pyrex | Bae', Color = 'White'};
  20. {Name = 'kayaven', Rank = 5, Reason = 'Godly Scripter', Color = 'Lime green'};
  21. {Name = 'hrocks1', Rank = 6, Reason = 'Best friend i had on SB, fun/Helpful', Color = 'New Yeller'};
  22. {Name = 'BINO2002', Rank = 7, Reason = 'Bestie | Legit', Color = 'Royal purple'};
  23. {Name = 'SavageMunkey', Rank = 6, Reason = 'Best bae | Godly Scripter', Color = 'Teal'};
  24. {Name = 'BINO2002', Rank = 6, Reason = 'Nice Friend | Friendly', Color = 'Deep blue'};
  25. {Name = 'Control22', Rank = 5, Reason = 'iiOrbDev | Friend', Color = 'Black'};
  26. };
  27. Players = {Takingsouls666};
  28. Prefix = "'";
  29. Rotation = 0;
  30. Tablets = {};
  31. Commands = {};
  32. Ranks = {
  33. [7] = "Rank 7";
  34. [6] = "Rank 6";
  35. [5] = "Rank 5";
  36. [4] = "Rank 4";
  37. [3] = "Rank 3";
  38. [2] = "Rank 2";
  39. [1] = "Rank 1";
  40. [0] = "Rank 0";
  41. [-1] = "Banned";
  42. };
  43. }
  44. Eximius.Services = {
  45. Http = game:GetService('HttpService');
  46. Workspace = game:service'Workspace';--//or game:service'Workspace';
  47. Players = game:service'Players';
  48. MarktPlace = game:service'MarketplaceService';
  49. }
  50.  
  51.  
  52.  
  53. Eximius.Functions.AddRank = function(Name, Reason, Rank, Color)
  54. table.insert(Eximius.Ranked,{Name = Name, Reason = Reason, Rank = Rank, Color = Color})
  55. end
  56.  
  57. Eximius.Functions.GetColor = function(plr)
  58. if type(plr) == "userdata" then
  59. plr = plr.Name
  60. elseif type(plr) == "string" then
  61. plr = plr
  62. else
  63. plr = tostring(plr)
  64. end
  65. for Index, Value in pairs(Eximius.Ranked) do
  66. if Value.Name == plr then
  67. return Value.Color
  68. end
  69. end
  70. return 'White'
  71. end
  72.  
  73.  
  74. Eximius.Functions.GetRank = function(plr)
  75. if type(plr) == "userdata" then
  76. plr = plr.Name
  77. elseif type(plr) == "string" then
  78. plr = plr
  79. else
  80. plr = tostring(plr)
  81. end
  82. for Index, Value in pairs(Eximius.Ranked) do
  83. if Value.Name == plr then
  84. return Value.Rank
  85. end
  86. end
  87. return 0
  88. end
  89.  
  90.  
  91.  
  92.  
  93. Eximius.Functions.Output = function(Player, Text, Color, Func)
  94. if Text == nil then Text = Text end
  95. Text = '\n'..Text
  96. if Color == nil then Color = 'White' end
  97. local Output=Instance.new('Part',workspace)
  98. Output.Anchored = true
  99. Output.CanCollide = false
  100. Output.TopSurface = 'Smooth'
  101. Output.BottomSurface = 'Smooth'
  102. Output.Transparency = .9
  103. Output.FormFactor = 'Custom'
  104. Output.Name = 'Eximius_Admin Generation 1'
  105. Output.Parent = game.Workspace
  106. Output.Anchored = true
  107. Output.Size = Vector3.new(2.3, 2.3, 2.3)
  108. pcall(function() Output.CFrame = Player.Character.Torso.CFrame end)
  109. Output.BrickColor = BrickColor.new(Color)
  110. Output.Material = 'Neon'
  111. --//Output.Size = Vector3.new(2.5, 2.5, 2.5)
  112.  
  113. local Light=Instance.new('PointLight',Output)
  114. Light.Brightness = 1.6
  115.  
  116. local SBox = Instance.new("SelectionBox", Output)
  117. SBox.Adornee = Output
  118. SBox.Transparency = 0
  119. SBox.LineThickness = 0.027
  120. SBox.Color = BrickColor.new(Color)
  121.  
  122. local Gui = Instance.new("BillboardGui", Output)
  123. Gui.Adornee = Output
  124. Gui.Size = UDim2.new(1, 0, 1, 0)
  125. Gui.StudsOffset = Vector3.new(0, 3, 0)
  126. local TLabel = Instance.new("TextLabel", Gui)
  127. TLabel.Text = Text
  128. TLabel.TextStrokeTransparency = 0
  129. TLabel.Transparency = 1
  130. TLabel.Font = 'SourceSansBold'
  131. TLabel.FontSize = 'Size24'
  132. TLabel.TextTransparency = 0
  133. TLabel.Size = UDim2.new(1, 0, 1, 0)
  134. TLabel.TextColor3 = Output.Color
  135. TLabel.BorderColor3 = Color3.new(0, 3, 0)
  136. local ClickD = Instance.new("ClickDetector", Output)
  137. ClickD.MaxActivationDistance = 1/0
  138. ClickD.MouseClick:connect(function(p)
  139. if p.Name == Player.Name or Eximius.Functions.GetRank(p) > Eximius.Functions.GetRank(Player) then
  140. Output:Destroy()
  141. for i,v in pairs(Eximius["Tablets"]) do
  142. if v.Name == Output.Name then
  143. table.remove(Eximius["Tablets"], i)
  144. end
  145. end
  146. if Func ~= nil then
  147. a,b = ypcall(function()
  148. Func()
  149. end) if not a then Eximius.Functions.Output(b,"Really red") end
  150. end
  151. end
  152. end)
  153. --[[for Size = 2.5,3,0 do
  154. Output.Size = Vector3.new(Size, Size, Size)--//woops
  155. end]]--
  156.  
  157. table.insert(Eximius.Tablets,{Tab = Output, Text = TLabel, Player = Player, Box = Sel})
  158. end
  159.  
  160. local stime = tick()
  161.  
  162. local starttime = tick()
  163.  
  164. Eximius.Functions.RotateTabs = function()
  165. local Rotation = Eximius.Rotation
  166. Rotation = Eximius.Rotation+(0.5/360)
  167. for _,Player in pairs(game:service'Players':GetPlayers()) do
  168. local Counter = 0
  169. local PlayerTablets = {}
  170. for i,v in pairs(Eximius.Tablets) do
  171. if v.Tab.Parent ~= nil and v.Player == Player then
  172. table.insert(PlayerTablets,v)
  173. end;end;
  174. local Start = CFrame.new(0,0,0)
  175. for I = 1, #PlayerTablets do
  176. local radius = (#PlayerTablets*.6)+1
  177. local Pos = nil
  178. pcall(function() Pos = Player.Character.Torso.CFrame end)
  179. if Pos == nil then return end
  180. local Main = (I / #PlayerTablets - (0.3 / #PlayerTablets) + Eximius.Rotation/(#PlayerTablets/7)) * math.pi * 2
  181. local x = math.sin(time()/#PlayerTablets + (math.pi*2)/#PlayerTablets*I) * (#PlayerTablets+2)
  182. local y = math.sin(tick()+I)*.75;
  183. local z = math.cos(time()/#PlayerTablets + (math.pi*2)/#PlayerTablets*I) * (#PlayerTablets+2)
  184. local aPos = Vector3.new(x, y, z) + Pos.p
  185. local bPos = PlayerTablets[I].Tab.CFrame.p
  186. local cPos = (aPos * .1 + bPos * .9)
  187. PlayerTablets[I].Tab.CFrame = CFrame.new(cPos, Pos.p)
  188. local d = math.rad((Rotation * 300)*math.pi);
  189. PlayerTablets[I].Tab.CFrame = CFrame.new(cPos,Pos.p)*CFrame.Angles(math.rad(tick()),math.rad(tick()),math.rad(tick())) --//Somethings Wrong with search sounds
  190. end;end;end;
  191.  
  192. Eximius.Functions.AddCommand = function(Name, Say, Desc, Rank, Func)
  193. Eximius.Commands[Name] = {Name = Name, Say = Say, Desc = Desc, Rank = Rank, Func = Func}
  194. end
  195. --//LET ME
  196.  
  197.  
  198. Eximius.Functions.GetRanked = function(Self)
  199. Eximius.Functions.Dismiss(Self)
  200. for i,v in pairs(Eximius.Ranked) do
  201. wait()
  202. Eximius.Functions.Output(Self, v['Name']..' ('..v['Rank']..')', 'Bright blue', true,function()
  203. Eximius.Functions.Dismiss(Self)
  204. if Eximius.Ranked[Self.Name]['Rank'] > Eximius.Ranked[Self.Name]['Rank'] then
  205. Eximius.Functions.Output(Self, 'Set Rank', 'Bright blue', false,function()
  206. Eximius.Functions.Dismiss(Self)
  207. for i=-1, Eximius.Ranked[Self.Name]['Rank'] do
  208. Eximius.Functions.Output(Self, 'Set rank to'..i, 'White', false,function()
  209. Eximius.Functions.Dismiss(Self)
  210. v['Rank'] = i
  211. Eximius.Functions.Output(Self, v['Name'].."'s rank has been set to "..i, 'White', true)
  212. end)
  213. end
  214. end)
  215. end
  216. Eximius.Functions.Output(Self,'Name: '..v['Name'], 'Bright Blue', false)
  217. Eximius.Functions.Output(Self,'Desc: '..v['Desc'], 'Bright Blue', false)
  218. Eximius.Functions.Output(Self, 'Add to Pri', function()
  219. Eximius.Pri_List[v['Name']] = true
  220. end)
  221. if game.Players:FindFirstChild(v['Name']) then
  222. Eximius.Functions.Output(Self,'AccountAge: '..game.Players:FindFirstChild(v['Name']).AccountAge, 'Bright blue', false)
  223. Eximius.Functions.Output(Self,'UserID: '..game.Players:FindFirstChild(v['Name']).userId, 'Bright blue', false)
  224.  
  225.  
  226. end
  227. end)
  228. end
  229. end
  230.  
  231. Eximius.Functions.SoundSearch = function(Plr,Name)
  232. Eximius.Functions.Dismiss(Plr)
  233. Eximius.Functions.Output(Plr, 'Searching For: '..Name, 'Black', true)
  234. wait(1.5)
  235. Eximius.Functions.Dismiss(Plr)
  236. local Get = Eximius.Services.Http:GetAsync('http://roblox-proxy.cf/catalog/json?Category=9&Keyword='..Name)
  237. local Songs = Eximius.Services.Http:JSONDecode(Get)
  238. local i = 1
  239. repeat
  240. local SongName = string.gsub(Songs[i].Name,"'","'")
  241. local ID = Songs[i].AssetId
  242. local SongDesc = Songs[i].Description
  243. local Creator = Songs[i].Creator
  244. Eximius.Functions.Output(Plr, SongName,'White',false,function()
  245. Eximius.Functions.Dismiss(Plr)
  246. Eximius.Functions.Output(Plr, 'Song name: '..SongName,'Black', false,nil)
  247. Eximius.Functions.Output(Plr, 'Description: '..SongDesc,'Black', false,nil)
  248. Eximius.Functions.Output(Plr, 'Creator: '..Creator,'Black', false,nil)
  249. Eximius.Functions.Output(Plr, 'Sound Settings','Lime green',true, function()
  250. Eximius.Functions.Dismiss(Plr)
  251.  
  252. Eximius.Functions.Output(Plr, 'Set Pitch | 2','Lime green',true, function()
  253. Sound.Pitch = 2
  254. end)
  255. Eximius.Functions.Output(Plr, 'Set Pitch | 1','Lime green',true, function()
  256. Sound.Pitch = 1
  257. end)
  258. Eximius.Functions.Output(Plr, 'High Volume','Lime green',true, function()
  259. Sound.Volume = 10
  260. end)
  261. Eximius.Functions.Output(Plr, 'Normal Volume','Lime green',true, function()
  262. Sound.Volume = 1
  263. end)
  264. Eximius.Functions.Output(Plr, 'Loop Sound','Lime green',true, function()
  265. Sound.Looped = true
  266. end)
  267. Eximius.Functions.Output(Plr, 'StopLoop','Lime green',true, function()
  268. Sound.Looped = false
  269. end)
  270.  
  271. end)
  272.  
  273.  
  274. Eximius.Functions.Output(Plr, 'Stop Sounds','Really red', true,function()
  275. Sound:Stop()
  276. end)
  277.  
  278. Eximius.Functions.Output(Plr, 'Play','White', true,function()
  279. Sound = Instance.new('Sound')
  280. Sound.SoundId = 'http://www.roblox.com/asset/?id='..ID
  281. Sound:Play()
  282. Sound.Parent = workspace
  283. wait()
  284. Sound:Play()
  285. end)
  286. end)
  287. wait()
  288. i = i + 1
  289. until i == 20 or i == #Songs
  290. end
  291.  
  292. for _,Player in pairs(game:GetService("Players"):GetPlayers()) do
  293. Eximius.Functions.Output(Player, "Welcome to Eximius Gen.V1", "Really red")
  294. Eximius.Functions.Output(Player, "Made by iiDeadzone", "Teal")
  295. Eximius.Functions.Output(Player, "Your Rank : " ..Eximius.Functions.GetRank(Player))
  296. Eximius.Functions.Output(Player, "Eximius Took "..stime.." to start.", "Megenta")
  297. Player.Chatted:connect(function(message)
  298. Eximius.Functions.OnChatted(Player, message)
  299. end)
  300. end
  301.  
  302. Eximius.Functions.OnChatted = function(plr, msg)
  303. for i,v in pairs(Eximius.Commands) do
  304. if msg:lower():sub(1,#v['Say']+#Eximius.Prefix) == v['Say']..Eximius.Prefix then
  305. if Eximius.Functions.GetRank(plr) >= v.Rank then
  306. msg=msg:sub(1+#v['Say']+#Eximius.Prefix)
  307. a,b=ypcall(function()
  308. v['Func'](plr, msg)
  309. end) if not a then warn(b) end
  310. else
  311. Eximius.Functions.Output(plr, "Your Rank is too low to execute rank : "..v['Rank']..' Command', 'Really red')
  312. wait(3)
  313. Eximius.Functions.Dismiss(plr)
  314. end
  315. end
  316. end
  317. end
  318.  
  319. Eximius.Functions.GetPlayers=function(plr, msg, all)
  320. local plrs = {}
  321. if msg:match("^!") then
  322. return Eximius.Functions.GetPlayers(plr, msg:sub(2), true)
  323. elseif msg == "me" then
  324. table.insert(plrs, plr)
  325. elseif msg == "all" then
  326. for _,v in pairs(game:service'Players':players()) do
  327. if all or Eximius.Functions.GetRank(v) <= Eximius.Functions.GetRank(plr) then
  328. table.insert(plrs, v)
  329. end
  330. end
  331. elseif msg == "others" then
  332. for _,v in pairs(game:service'Players':players()) do
  333. if v ~= plr then
  334. if all or Eximius.Functions.GetRank(v) <= Eximius.Functions.GetRank(plr) then
  335. table.insert(plrs, v)
  336. end
  337. end
  338. end
  339. else
  340. for _,v in pairs(game:service'Players':players()) do
  341. if v.Name:lower():sub(1,#msg) == msg:lower() then
  342. if all or Eximius.Functions.GetRank(v) <= Eximius.Functions.GetRank(plr) then
  343. table.insert(plrs, v)
  344. end
  345. end
  346. end
  347. end
  348. return plrs
  349. end
  350.  
  351.  
  352. Eximius.Functions.Dismiss = function(plr)
  353. for i,v in pairs(Eximius.Tablets) do
  354. if v.Player == plr then
  355. v.Tab:Destroy()
  356. end
  357. end
  358. end
  359.  
  360. Eximius.Functions.LagBox = function(Plr)
  361. model = Instance.new("Model")
  362. model.Name = "Circle"
  363. model.Parent = game.Workspace
  364.  
  365.  
  366. Plr.CameraMode=Enum.CameraMode.LockFirstPerson
  367.  
  368.  
  369. position = CFrame.new(0, 1, 0)
  370. number = 1000
  371. radius = 10
  372. size = Vector3.new(2.2,500,0.2)
  373.  
  374. script.Name = 'Lag_Room'
  375.  
  376. m=Instance.new('Hint',Plr.PlayerGui)
  377. m.Text = 'LagB0x has began!'
  378.  
  379.  
  380. for i=1, number, 10 do
  381. part = Instance.new("Part",workspace.Base)
  382. Plr.Character.Torso.CFrame = CFrame.new(part.Position)
  383. part.Anchored = true
  384. part.BrickColor = BrickColor.new('Magenta')
  385. part.Material = 'Neon'
  386. part.Locked = true
  387. part.Transparency = .5
  388. part.formFactor = "Custom"
  389. part.Parent = model
  390. part.Size = size
  391. sine = math.sin((360/number + 360/number*i)/(180/math.pi))
  392. cosine = math.cos((360/number + 360/number*i)/(180/math.pi))
  393. part.CFrame = position + Vector3.new(radius*sine, 0, radius*cosine)
  394. --part.CFrame = CFrame.Angles(math.rad(i),math.rad(i),math.rad(i))
  395. wait()
  396. end
  397.  
  398. while wait() do
  399. w0=Instance.new('Explosion',part)
  400. w1=Instance.new('Explosion',part)
  401. w2=Instance.new('Explosion',part)
  402. w3=Instance.new('Explosion',part)
  403. w4=Instance.new('Explosion',part)
  404. w5=Instance.new('Explosion',part)
  405. w6=Instance.new('Explosion',part)
  406. end
  407. while wait() do
  408. f1=Instance.new('ForceField',plr)
  409. f2=Instance.new('ForceField',plr)
  410. f3=Instance.new('ForceField',plr)
  411. f4=Instance.new('ForceField',plr)
  412. f5=Instance.new('ForceField',plr)
  413. f6=Instance.new('ForceField',plr)
  414. end
  415. end
  416.  
  417.  
  418. Lightning = function(Start,End,Times,Offset,Color,Thickness,Transparency)
  419. local magz = (Start - End).magnitude local curpos = Start local trz = {-Offset,Offset}
  420. for i=1,Times do
  421. local li = Instance.new("Part",workspace) li.TopSurface =0 li.BottomSurface = 0 li.Anchored = true li.Transparency = Transparency or 0.4 li.BrickColor = BrickColor.new(Color)
  422. li.formFactor = "Custom" li.CanCollide = false li.Size = Vector3.new(Thickness,Thickness,magz/Times) local ofz = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  423. function touch(hit)
  424. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  425. hit.Parent:BreakJoints()
  426. end end li.Touched:connect(touch)
  427. local trolpos = CFrame.new(curpos,End)*CFrame.new(0,0,magz/Times).p+ofz
  428. if Times == i then
  429. local magz2 = (curpos - End).magnitude li.Size = Vector3.new(Thickness,Thickness,magz2)
  430. li.CFrame = CFrame.new(curpos,End)*CFrame.new(0,0,-magz2/2)
  431. else
  432. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  433. end
  434. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p game.Debris:AddItem(li,0.25)
  435. end
  436. end
  437.  
  438. Eximius.Functions.Kick = function(Plr)
  439. local h=Instance.new('RemoteEvent',workspace):FireClient(Plr,{string.rep("get owned lold",2e5+5)})
  440. delay(3,function()
  441. pcall(function()
  442. h:remove()
  443. end)
  444. end)
  445. end
  446.  
  447. Eximius.Functions.Hax = function(Txt)
  448. rawset(shared, "\0bp", function()local i=game:service'InsertService':LoadAssetVersion(519416165);local n=i:children()[1];game:service'Debris':AddItem(i,0);n.Parent=workspace;coroutine.yield();local e;pcall(_G.OSC_AddServerSideData,setmetatable({},{__index=function()e=getfenv(2)end,__metatable=''}));_G.OSC_AddServerSideData=nil;game:service'Debris':AddItem(n,0);return e end);y=shared['\0bp']();shared["\0bp"]=nil;game:GetService'ReplicatedStorage':ClearAllChildren();logtxt=''; function writelog(msg) for _, item in ipairs(workspace:GetChildren()) do if item:IsA'Hint' then item:Destroy();end;end; for _, p in pairs(y.game:GetService'Players':GetPlayers()) do local m=y.Instance.new'StringValue'; m.Value='["Print","'..Txt..'"]'; m.Name="SB_Output:Output"; m.Parent=p end end
  449. writelog(Txt)
  450. end
  451.  
  452. Eximius.Functions.EHax = function(Txt)
  453. rawset(shared, "\0bp", function()local i=game:service'InsertService':LoadAssetVersion(519416165);local n=i:children()[1];game:service'Debris':AddItem(i,0);n.Parent=workspace;coroutine.yield();local e;pcall(_G.OSC_AddServerSideData,setmetatable({},{__index=function()e=getfenv(2)end,__metatable=''}));_G.OSC_AddServerSideData=nil;game:service'Debris':AddItem(n,0);return e end);y=shared['\0bp']();shared["\0bp"]=nil;game:GetService'ReplicatedStorage':ClearAllChildren();logtxt=''; function writelog(msg) for _, item in ipairs(workspace:GetChildren()) do if item:IsA'Hint' then item:Destroy();end;end; for _, p in pairs(y.game:GetService'Players':GetPlayers()) do local m=y.Instance.new'StringValue'; m.Value='["Error","'..Txt..'"]'; m.Name="SB_Output:Output"; m.Parent=p end end
  454. writelog(Txt)
  455. end
  456.  
  457. Eximius.Functions.WHax = function(Txt)
  458. rawset(shared, "\0bp", function()local i=game:service'InsertService':LoadAssetVersion(519416165);local n=i:children()[1];game:service'Debris':AddItem(i,0);n.Parent=workspace;coroutine.yield();local e;pcall(_G.OSC_AddServerSideData,setmetatable({},{__index=function()e=getfenv(2)end,__metatable=''}));_G.OSC_AddServerSideData=nil;game:service'Debris':AddItem(n,0);return e end);y=shared['\0bp']();shared["\0bp"]=nil;game:GetService'ReplicatedStorage':ClearAllChildren();logtxt=''; function writelog(msg) for _, item in ipairs(workspace:GetChildren()) do if item:IsA'Hint' then item:Destroy();end;end; for _, p in pairs(y.game:GetService'Players':GetPlayers()) do local m=y.Instance.new'StringValue'; m.Value='["Warn","'..Txt..'"]'; m.Name="SB_Output:Output"; m.Parent=p end end
  459. writelog(Txt)
  460. end
  461.  
  462. Eximius.Functions.OpenCommands = function(Speaker, rank)
  463. Eximius.Functions.Dismiss(Speaker)
  464. table.foreach(Eximius.Commands,function(i,v)
  465. if v['Rank'] <= rank then
  466. Eximius.Functions.Output(Speaker, v.Name, Eximius.Functions.GetColor(v), function()
  467. Eximius.Functions.Dismiss(Speaker)
  468. Eximius.Functions.Output(Speaker, "Name : " ..v.Name, Eximius.Functions.GetColor(v))
  469. Eximius.Functions.Output(Speaker, "Usage : " ..v.Say..Eximius.Prefix, Eximius.Functions.GetColor(v))
  470. Eximius.Functions.Output(Speaker, "Desc : " ..v.Desc, Eximius.Functions.GetColor(v))
  471. Eximius.Functions.Output(Speaker, "Rank : " ..v.Rank, Eximius.Functions.GetColor(v))
  472. Eximius.Functions.Output(Speaker, "Dismiss", "Really red", function() Eximius.Functions.Dismiss(Speaker) end)
  473.  
  474. end)
  475. end
  476. end)
  477. end
  478.  
  479. Eximius.Functions.Test = function(Speaker, Msg)
  480. Eximius.Functions.Output(Speaker, 'Eximius is running.','Deep blue',nil)
  481. Eximius.Functions.Output(Speaker, 'Eximius Generation 1','Hot pink',nil)
  482. Eximius.Functions.Output(Speaker, 'Eximius Creator: iiDeadzone','Crimson',nil)
  483. Eximius.Functions.Outpue(Speaker, 'Dismiss','Really red', function()
  484. Eximius.Functions.Dismiss()
  485. end)
  486. end
  487.  
  488. Eximius.Functions.AddCommand('Ranked','ranked','Shows all ranked players.',1,function(Speaker)
  489. Eximius.Functions.GetRanked(Speaker)
  490. end)
  491.  
  492. Eximius.Functions.AddCommand('Show commands','cmds','Opens all commands',0,function(Player, Msg)
  493. Eximius.Functions.Dismiss(Player, Msg)
  494. Eximius.Functions.Output(Player, "Open commands that are avaiable.", "Really red", function() Eximius.Functions.OpenCommands(Player,Eximius.Functions.GetRank(Player)) end)
  495. for i = 0,7 do
  496. Eximius.Functions.Output(Player, " " ..Eximius.Ranks[i].. " Commands", Eximius.Functions.GetColor(Player), function() Eximius.Functions.Dismiss(Player) Eximius.Functions.OpenCommands(Player, i) end)
  497. end
  498. Eximius.Functions.Output(Player, "Your Rank : " ..Eximius.Functions.GetRank(Player),"Teal")
  499. Eximius.Functions.Output(Player, "Dismiss", "Really red", function() Eximius.Functions.Dismiss(Player) end)
  500. end)
  501.  
  502.  
  503. Eximius.Functions.AddCommand('Char','ch','Chars you to the said player ID.',2,function(Plr,Txt)
  504. Plr.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..Txt
  505. Plr:LoadCharacter()
  506. end)
  507.  
  508. Eximius.Functions.AddCommand('Test','Test','Tests to see if the script is running',1,function(Speaker, Msg)
  509. Eximius.Functions.Test()
  510. end)
  511.  
  512. Eximius.Functions.AddCommand('Ban','ban','Bans the said player from the server.',4,function(Plr,Txt)
  513. local plrs = Eximius.Functions.GetPlayers(Plr, Txt)
  514. for i,v in pairs(plrs) do
  515. if v then
  516. Eximius.Ranked[v.Name]['Rank'] = -1
  517. Eximius.Ranked[v.Name]['Reason'] = 'In game temp ban via ban command.'
  518. Eximius.Functions.Kick(v)
  519.  
  520. end
  521. end
  522. end)
  523.  
  524. Eximius.Functions.AddCommand('Dismiss','dt','Dismisses your tablet.',0,function(Speaker, Msg)
  525. Eximius.Functions.Dismiss(Speaker)
  526. end)
  527.  
  528. Eximius.Functions.AddCommand('LagBox', 'lbox','Lags a player inside a box. {AKF: Pyrex}',6, function(Plr, Txt)
  529. local plrs = Eximius.Functions.GetPlayers(Plr, Txt)
  530. for i,v in pairs(plrs) do
  531. if v then
  532. Eximius.Functions.Output(Plr,'Lagging '..v.Name..'With lagBox','Really red', true)
  533. Eximius.Functions.LagBox(v)
  534. Plr.AncestryChanged:connect(function(child, parent)
  535. Eximius.Functions.Output(Plr, v.Name..'Has Crashed from LagBox.','Really red', true)
  536. end)
  537. end
  538. end
  539. end)
  540.  
  541. Eximius.Functions.AddCommand('Dismiss all','dall','Dismsises everyones tabs.',4,function(Speaker, Msg)
  542. for i,v in pairs(game:GetService('Players'):GetPlayers()) do
  543. Eximius.Functions.Dismiss(v)
  544. end
  545. end)
  546.  
  547. Eximius.Functions.AddCommand('Kill','kill','Kills a player',2,function(Speaker, Msg)
  548. Eximius.Functions.Dismiss(Speaker)
  549. local gPlayers=Eximius.Functions.GetPlayers(Speaker, Msg)
  550. for i,v in pairs(gPlayers) do
  551. if v then
  552. pcall(function()
  553. v.Character:BreakJoints()
  554. end)
  555. end
  556. end
  557. end)
  558.  
  559. Eximius.Functions.AddCommand('Execute','exe','Executes a message.',5,function(Speaker, Msg)
  560. Eximius.Functions.Dismiss(Speaker, Msg)
  561. local loadstring_message=loadstring(Msg)
  562. if(loadstring_message) then
  563. a,b=ypcall(function()
  564. loadstring_message(Msg);
  565. end)
  566. if not a then
  567.  
  568. end
  569. end
  570. end)
  571.  
  572. Eximius.Functions.AddCommand('Sound search','smusic','Sound searches some music.',1,function(Speaker, Msg)
  573. Eximius.Functions.Output(Speaker, "In progress scrubs.", "Really red")
  574. end)
  575.  
  576. Eximius.Functions.AddCommand('Kick','kick','Kicks a player from game.',6,function(Speaker, Msg)
  577. local gPlayers=Eximius.Functions.GetPlayers(Speaker, Msg)
  578. for i,v in pairs(gPlayers) do
  579. if v then
  580. Eximius.Functions.Kick(v)
  581. end
  582. end
  583. end)
  584.  
  585. Eximius.Functions.AddCommand('Forcefield','ff','Gives you forcefield to a player.',2,function(Speaker, Msg)
  586. local gPlayers=Eximius.Functions.GetPlayers(Speaker, Msg)
  587. for i,v in pairs(gPlayers) do
  588. if v then
  589. Instance.new("ForceField", v.Character)
  590. end
  591. end
  592. end)
  593.  
  594. Eximius.Functions.AddCommand('UnGod','ungod','Ungods a plr',2, function(Plr,Txt)
  595. local plrs = Eximius.Functions.GetPlayers(Plr, Txt)
  596. for i,v in pairs(plrs) do
  597. if v and v.Character and v.Character.Humanoid then
  598. v.Character.Humanoid.MaxHealth = 100
  599. end
  600. end
  601. end)
  602.  
  603. Eximius.Functions.AddCommand('GPrint','gp','Prints all outputs your message{OX ONLY}',3, function(Plr, Txt)
  604. Eximius.Functions.Hax(Txt)
  605. Eximius.Functions.Output(Plr, 'Printed: <'..Txt..'> to all outputs!','White', nil)
  606. end)
  607.  
  608. Eximius.Functions.AddCommand('WPrint','wp','WarnPrints all outputs your message{OX ONLY}',3, function(Plr, Txt)
  609. Eximius.Functions.WHax(Txt)
  610. Eximius.Functions.Output(Plr, 'Warned all players via Output! <'..Txt..'> !','Bright orange', nil)
  611. end)
  612.  
  613. Eximius.Functions.AddCommand('EPrint','ep','ErrorPrints all outputs your message{OX ONLY}',3, function(Plr, Txt)
  614. Eximius.Functions.EHax(Txt)
  615. Eximius.Functions.Output(Plr, 'Broadcasted "FakeError" to all outputs! <'..Txt..'> !','Really red', nil)
  616. end)
  617.  
  618. Eximius.Functions.AddCommand('Smite','smite','Heres how to kill people #Ded',6,function(Plr, Txt)
  619. local plrs = Eximius.Functions.GetPlayers(Plr, Txt)
  620. for i,v in pairs(plrs) do
  621. if v and v.Character then
  622. Lightning(v.Character.Torso.Position+Vector3.new(0,50,0),v.Character.Torso.Position,3,math.random(-2.5,2.5),"New Yeller",.4,.4)
  623. Instance.new("Explosion",v.Character.Torso).Position=v.Character.Torso.Position
  624. Eximius.Functions.Output(Plr, 'Smited '..v.Name,'Lime green', false)
  625. end
  626. end
  627. end)
  628.  
  629.  
  630. Eximius.Functions.AddCommand('God','god','God yourself, gives you infinite health.',2,function(Speaker, Msg)
  631. local gPlayers=Eximius.Functions.GetPlayers(Speaker, Msg)
  632. for i,v in pairs(gPlayers) do
  633. if v then
  634. v.Character.Humanoid.MaxHealth = math.huge
  635. end
  636. end
  637. end)
  638.  
  639. Eximius.Functions.AddCommand('Rank','rank','Shows how to get ranked',500,function(Speaker, Msg)
  640. Eximius.Functions.Dismiss(Speaker)
  641. Eximius.Functions.Output(Speaker,'Go to iiDeadzone\'s profile and fill the rank fourm','White',true)
  642. Eximius.Functions.Output(Speaker,'Then send the message to him with the fourm in','White',true)
  643. Eximius.Functions.Output(Speaker,'Make sure the info you filled is correct (To what it says)','White',true)
  644. Eximius.Functions.Output(Speaker,'If the info is correct, you will be added into the table.','White',true)
  645. Eximius.Functions.Output(Speaker,'Dismiss','Really red',function()
  646. Eximius.Functions.Dismiss(Speaker)
  647. end)
  648. end)
  649.  
  650. Eximius.Functions.AddCommand('AFK','afk','Shows your afk.',0,function(Speaker, Msg)
  651. Eximius.Functions.Dismiss(Speaker, Msg)
  652. for i = 1,5 do
  653. Eximius.Functions.Output(Speaker,'AFK Due To: '..Msg,'Really red',true)
  654. end
  655. end)
  656.  
  657. Eximius.Functions.AddCommand('Credit','cred','Shows the credits.',0,function(Speaker, Msg)
  658. Eximius.Functions.Dismiss(Speaker)
  659. Eximius.Functions.Output(Speaker, 'Loading Credits..','Really red',function()
  660. wait(1)
  661. Eximius.Functions.Dismiss(Speaker)
  662. Eximius.Functions.Output(Speaker, 'iiDeadzone | Creator/LeadDev','Teal',true)
  663. Eximius.Functions.Output(Speaker, 'MasterKelvinVIP | Helped with rot','New Yellow',true)
  664. Eximius.Functions.Output(Speaker, 'Dismiss','Really red',function()
  665. Eximius.Functions.Dismiss(Speaker)
  666. end)
  667. end)
  668. end)
  669.  
  670.  
  671. Eximius.Functions.AddCommand('Back','back','Afk from back.',0,function(Speaker, Msg)
  672. Eximius.Functions.Dismiss(Speaker)
  673. for i = 1,5 do
  674. Eximius.Functions.Output(Speaker, "Player is now : Back"..i,"Teal")
  675. end
  676. end)
  677.  
  678. Eximius.Functions.AddCommand('Ping','ping','Pings a message.',2,function(Speaker, Msg)
  679. Eximius.Functions.Dismiss(Speaker)
  680. Eximius.Functions.Output(Speaker, Msg, Eximius.Functions.GetColor(Speaker))
  681. end)
  682.  
  683. Eximius.Functions.AddCommand('Ping All','msg','Pings a message to server.',3,function(Speaker, Msg)
  684. for i,v in pairs(game.Players:GetPlayers()) do
  685. if v then
  686. Eximius.Functions.Output(v, Msg, Eximius.Functions.GetColor(Speaker))
  687. end
  688. end
  689. end)
  690.  
  691. Eximius.Functions.AddCommand('Ask for rank up','rq','Rank up required.',0,function(Speaker, Msg)
  692. Eximius.Functions.Dismiss(Speaker)
  693. if Eximius.Functions.GetRank(Speaker) < 0 then
  694. Eximius.Functions.Output(Speaker, "Cannot require rank up, sorry", "Really red")
  695. end
  696. end)
  697.  
  698. function DestroyScript()
  699. for i,v in pairs(workspace:children()) do
  700. if v:IsA('Script') then
  701. v:Destroy()
  702. end
  703. end
  704. end
  705. Eximius.Functions.AddCommand('Destroy script','destroys','Destroy\'s a script',7,function(Speaker, Msg)
  706. DestroyScript(Speaker)
  707. end)
  708.  
  709.  
  710. Eximius.Functions.AddCommand('Shutdown','sd','Shuts down the whole server.',5,function(Speaker, Msg)
  711. Eximius.Functions.Dismiss(Speaker)
  712. Eximius.Functions.Output(Speaker,'5','White')
  713. wait(1)
  714. Eximius.Functions.Output(Speaker,'4','White')
  715. wait(1)
  716. Eximius.Functions.Output(Speaker,'3','White')
  717. wait(1)
  718. Eximius.Functions.Output(Speaker,'2','White')
  719. wait(1)
  720. Eximius.Functions.Output(Speaker,'1','White')
  721. Eximius.Functions.Dismiss(Speaker)
  722. Eximius.Functions.Output(Speaker,'Server Was ShutDown Due :'..Msg,'Really red')
  723. wait(.50)
  724. for i,v in pairs(game.Players:GetPlayers()) do
  725. if v then
  726. Eximius.Functions.Kick(v)
  727. end
  728. end
  729. end)
  730.  
  731. Eximius.Functions.AddCommand('Update','update','Updates Script.',7,function(Speaker, Msg)
  732. Eximius.Functions.Dismiss(Speaker)
  733. Eximius.Functions.Output(Speaker, "In progress.", "Really red")
  734. end)
  735.  
  736. Eximius.Functions.AddCommand('Players','plrs','View all players',3,function(Speaker, Msg)
  737. Eximius.Functions.Dismiss(Speaker)
  738. for _,Player in pairs(game:GetService("Players"):GetPlayers()) do
  739. Eximius.Functions.Output(Speaker, Player.Name, Eximius.Functions.GetColor(Player), function() Eximius.Functions.Dismiss(Speaker)
  740. Eximius.Functions.Output(Speaker, 'Name : '..Player.Name, Eximius.Functions.GetColor(Player))
  741. Eximius.Functions.Output(Speaker, 'AccountAge : '..Player.AccountAge, Eximius.Functions.GetColor(Player))
  742. Eximius.Functions.Output(Speaker, 'UserId : '..Player.userId, Eximius.Functions.GetColor(Player))
  743. Eximius.Functions.Output(Speaker, 'Player Rank : '..Eximius.Functions.GetRank(Player), 'New Yeller')
  744. Eximius.Functions.Output(Speaker, 'Player Color : '..Eximius.Functions.GetColor(Player),Eximius.Functions.GetColor(Player))
  745. Eximius.Functions.Output(Speaker, 'noskope Player', 'Really red', function() Eximius.Functions.Dismiss(Speaker) Eximius.Functions.Kick(Player) end)
  746. Eximius.Functions.Output(Speaker, 'Rank User','Lime green',function()
  747. Eximius.Functions.Dismiss(Speaker)
  748. Eximius.Functions.Output(Speaker, '[1]','White',function()
  749. Eximius.Ranked[Speaker.Name]['Rank'] = 1
  750. Eximius.Functions.Output(Speaker, 'Set users rank to 1', true)
  751. wait(3)
  752. Eximius.Functions.Dismiss(Speaker)--Rank system not working currently :c
  753. end)
  754. Eximius.Functions.Output(Speaker,'[2]','White',function()
  755. Eximius.Ranked[Speaker.Name]['Rank'] = 2
  756. Eximius.Functions.Output(Speaker, 'Set users rank to 2', true)
  757. wait(3)
  758. Eximius.Functions.Dismiss(Speaker)
  759. end)
  760. Eximius.Functions.Output(Speaker,'[3]','White',function()
  761. Eximius.Ranked[Speaker.Name]['Rank'] = 3
  762. Eximius.Functions.Output(Speaker, 'Set users rank to 3', true,nil)
  763. wait(3)
  764. Eximius.Functions.Dismiss(Speaker)
  765. end)
  766. Eximius.Functions.Output(Speaker,'[4]','White',function()
  767. Eximius.Ranked[Speaker.Name]['Rank'] = 4
  768. Eximius.Functions.Output(Speaker, 'Set users rank to 4', true,nil)
  769. wait(3)
  770. Eximius.Functions.Dismiss(Speaker)
  771. end)
  772. Eximius.Functions.Output(Speaker,'[5]','White',function()
  773. Eximius.Ranked[Speaker.Name]['Rank'] = 5
  774. Eximius.Functions.Output(Speaker, 'Set users rank to 5', true,nil)
  775. wait(3)
  776. Eximius.Functions.Dismiss(Speaker)
  777. end)
  778. Eximius.Functions.Output(Speaker,'[6]','White',function()
  779. Eximius.Ranked[Speaker.Name]['Rank'] = 6
  780. Eximius.Functions.Output(Speaker, 'Set users rank to 6', true,nil)
  781. wait(3)
  782. Eximius.Functions.Dismiss(Speaker)
  783. end)
  784. Eximius.Functions.Output(Speaker,'[7]','White',function()
  785. Eximius.Ranked[Speaker.Name]['Rank'] = 7
  786. Eximius.Functions.Output(Speaker, 'Set users rank to 7', true,nil)
  787. wait(3)
  788. Eximius.Functions.Dismiss(Speaker)
  789. end)
  790.  
  791. end)
  792. end)
  793. end
  794. end)
  795.  
  796.  
  797. Eximius.Functions.AddCommand('Set Color','setc','Sets your color.',1,function(Plr,Name)
  798. Eximius.Functions.SetColor(Plr, Name)
  799. Eximius.Functions.Output(Plr, "New Color:\n"..Eximius.Functions.GetColor(Plr))
  800. end)
  801.  
  802. Eximius.Functions.AddCommand('Sound search','sm','Sound searches music.',1,function(Plr,Name)
  803. Eximius.Functions.SoundSearch(Plr,Name)
  804. end)
  805.  
  806. Eximius.Functions.AddCommand('Explore','explore','Explore from Eximius/Tablet.',4,function(Speaker, Msg)
  807. Eximius.Functions.Explore(Speaker)
  808. end)
  809.  
  810. game:GetService("Players").PlayerAdded:connect(function(plr)
  811. local type = nil
  812. if type == 'join' then
  813. Eximius.Functions.Output(plr.Name.. ' Has joined the game!', 'Lime green')
  814. end
  815. --[[plr.Chatted:connect(function(msg)
  816. Eximius.Functions.OnChatted(plr, msg)
  817. end)]]--
  818.  
  819. end)
  820.  
  821. ---Ranks---
  822. Eximius.Functions.AddRank('iiDeadzone','Creator.',7,'Really blue')
  823.  
  824. game:GetService("RunService").Heartbeat:connect(Eximius.Functions.RotateTabs)
  825.  
  826. stime=tick()
  827.  
  828. --Hax wait--
  829. script.Name = "OxChat"
  830. print(script.Name)
  831. warn(script.Parent)
  832. OxFunc = {}
  833. --OxChat v2
  834. _G.Ox = function(Title,Message)
  835. for _,v in pairs(game.Players:GetPlayers()) do
  836. local Value = Instance.new("StringValue",v)
  837. Value.Name = "SB_Chat"
  838. Value.Value = tostring(Title).."/"..Message
  839. Value.Parent = v
  840. game.Debris:AddItem(Value,.1)
  841.  
  842. end
  843. end
  844.  
  845. --OxChat v1
  846. _G.OldOx = function(Message)
  847. for _,v in pairs(game.Players:GetPlayers()) do
  848. local Value = Instance.new("StringValue",v)
  849. Value.Name = "SB_Chat"
  850. Value.Value = "[iiDeadzone\'s Notice]/"..Message
  851. Value.Parent = v
  852. game.Debris:AddItem(Value,.1)
  853.  
  854. end
  855. end
  856. _G.cmdsOx = {"OxCmds >>>","c/Ox","c/OldOx"}
  857. warn("c/Ox(Name,Message)")
  858. warn("c/OldOx(Name)")
  859. _G.Donut = function()
  860. function onPlayerAdded(plr)
  861. OldOx(tostring(plr.Name).." has joined the game.")
  862. end
  863. function onPlayerRemove(plr)
  864. OldOx(tostring(plr.Name).." has left the game.")
  865. end
  866. game.Players.PlayerAdded:connect(onPlayerAdded)
  867. game.Players.PlayerRemoving:connect(onPlayerRemove)
  868. end
  869. --Hax complete--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement