Advertisement
RealPieDiePew

Untitled

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