Advertisement
Stefanuk12

ROBLOX Script Builder Scripts (Eximus Admin G1)

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