BailTaashev

AdminKa roblox

Aug 23rd, 2021 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 37.48 KB | None | 0 0
  1. --START
  2.  
  3. --BULLET FLING
  4.  
  5. if Executed == true then
  6.     local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  7.     Notification.newNotification("$Admin$", "AllReady Executed", "uwu")
  8. else
  9. getgenv().Executed = true
  10.  
  11.  
  12. --SETTINGS
  13.  
  14. local detectSkid = false --NOT WORK
  15. local checkerAdmins = false --NOT WORK
  16. local prefix = "$" --NOT WORK
  17. local hideNick = false
  18. local timeCrash = .1
  19.  
  20. --
  21.  
  22. --CHECKS
  23. if hideNick == true then
  24.     game.RunService.RenderStepped:connect(function()
  25.         for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  26.             if v:IsA("BillboardGui") then
  27.                 v:Destroy()
  28.             end
  29.         end
  30.     end)
  31. end
  32.  
  33. if checkerAdmins == true then
  34.  
  35. end
  36. --
  37.  
  38. local mt = getrawmetatable(game)
  39. local old = mt.__namecall
  40. local Players = game.Players
  41.  
  42. setreadonly(mt, false)
  43. mt.__namecall = newcclosure(function(self,...) [nonamecall]
  44. local args = {...}
  45. local method = getnamecallmethod()
  46.     if self == Players.LocalPlayer and (method == "kick" or method == "Kick") then
  47.         print("Sikkeee")
  48.         return wait(math.huge)
  49.     end
  50.     return old(self,...)
  51. end)
  52. setreadonly(mt, true)
  53.  
  54. game.StarterGui:SetCore("SendNotification", {
  55.     Title = "$Admin$",
  56.     Text = "Script By 0x8q11#3019\nDocumentation By 0x7w1n36#9392",
  57.     Duration = 10
  58. })
  59.  
  60.  
  61. --START
  62.  
  63. game.Players.PlayerAdded:Connect(function(v)
  64.     if v.Name=="boganan"then
  65.  
  66.         local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  67.         Notification.newNotification("$Admin$", "boganan join on server", "uwu")
  68.  
  69.         for i=1,5 do
  70.        
  71.             local args = {
  72.                 [1] = "УРА СОЗДАТЕЛЬ АДМИН СКРИПТА ЗАШЁЛ НА СЕРВЕР - boganan",
  73.                 [2] = "All"
  74.             }
  75.            
  76.             game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  77.        
  78.         end
  79.     end
  80. end)
  81.  
  82. --FUNCTIONS
  83.  
  84. local getcurrentcamera = function()
  85.     return workspace.CurrentCamera
  86. end
  87.  
  88. local worldtoviewportpoint = function(part)
  89.     local point = getcurrentcamera():WorldToViewportPoint(part.Position)
  90.     return Vector2.new(point.x, point.y)
  91. end
  92.  
  93. local getrespawntime = function()
  94.     return game.Players.RespawnTime
  95. end
  96.  
  97. local getbackpack = function()
  98.    return game.Players.LocalPlayer.Backpack
  99. end
  100.  
  101. local gethumanoid = function()
  102.    return game.Players.LocalPlayer.Character.Humanoid
  103. end
  104.  
  105. local gethumanoidroot = function()
  106.    return game.Players.LocalPlayer.Character.HumanoidRootPart
  107. end
  108.  
  109. local getplayer = function()
  110.     return game.Players.LocalPlayer
  111. end
  112.  
  113. local getcharacter = function()
  114.     return game.Players.LocalPlayer.Character
  115. end
  116.  
  117. local getplayerlist = function()
  118.    return game.Players
  119. end
  120.  
  121. local getcurrentcframe = function()
  122.    return game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  123. end
  124.  
  125. local delete = function()
  126.     local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  127.     Notification.newNotification("$Admin$", "Delete Command", "uwu")
  128. end
  129.  
  130. local notfound = function()
  131.     local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  132.     Notification.newNotification("$Admin$", "Player Not Found", "uwu")
  133. end
  134.  
  135. --CMD FUNCTIONS
  136.  
  137. local ping = function()
  138.     if not syn.request then
  139.         return
  140.     end
  141.     local function notif(title, text, duration)
  142.         game.StarterGui:SetCore("SendNotification", {
  143.             Title = title,
  144.             Text = text,
  145.             Duration = duration
  146.         })
  147.     end
  148.     local data
  149.     local id = game.JobId
  150.     local cursor = ""
  151.     for i = 1, math.huge do
  152.         if cursor ~= "" then
  153.             data = syn.request({Url = "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100&cursor=" .. cursor, Method = "GET"})
  154.         else
  155.             data = syn.request({Url = "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100", Method = "GET"})
  156.         end
  157.         data.Body = game.HttpService:JSONDecode(data.Body)
  158.         local bod = data.Body
  159.         if data.StatusCode ~= 200 then
  160.             break
  161.         end
  162.         if bod["nextPageCursor"] ~= nil then
  163.             cursor = bod["nextPageCursor"]
  164.         else
  165.             cursor = "f"
  166.         end
  167.         for i, v in pairs(bod.data) do
  168.             if v["id"] == id then
  169.                 --[[for i, v in pairs(v) do
  170.                     print(i, v)
  171.                 end]]
  172.                 if v["ping"] == nil then
  173.                     v["ping"] = "no ping??"
  174.                 end
  175.                 --game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("fps: " .. v["fps"] .. " | " .. "ping: " .. v["ping"], "All")
  176.                 notif("ServerStatus", "fps: " .. v["fps"] .. "\n" .. "ping: " .. v["ping"] .. "\n" .. "attempt: " .. i, 5)
  177.                 break
  178.             end
  179.         end
  180.         wait()
  181.     end
  182. end
  183.  
  184. local replacehumanoid = function()
  185.     local hum=getcharacter().Humanoid
  186.     local fakehum=hum:Clone()
  187.     fakehum.Parent = hum.Parent
  188.     fakehum.Name = "1"
  189.     fakehum.Animator:Destroy()
  190.     hum:Destroy()
  191.     fakehum.Name = "Humanoid"
  192. end
  193.  
  194. local www = function()
  195.     local shortName = player
  196.     shortName = string.lower(shortName)
  197.    
  198.     for _,plr in pairs(game.Players:GetChildren()) do
  199.         local fullName = string.lower(plr.Name)
  200.         if shortName == string.sub(fullName,1,string.len(shortName)) then
  201.             return getplayerlist():FindFirstChild(fullName)
  202.         end
  203.     end
  204. end
  205.  
  206. local function shortName(s)
  207.     s = s:lower()
  208.     for _, player in ipairs(game.Players:GetPlayers()) do
  209.         if s == player.Name:lower():sub(1, #s) then
  210.             local name = player.Name
  211.             if name ~= "boganan" then
  212.                 return game:GetService("Players"):FindFirstChild(name)
  213.             else
  214.                 local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  215.                 Notification.newNotification("$Admin$", "you cant touch boganan", "uwu")
  216.             end
  217.         end
  218.     end
  219.     return nil
  220. end
  221.  
  222. --COMMANDS
  223.  
  224. getplayer().Chatted:Connect(function(msg)
  225.    
  226.     if msg:lower():sub(1,15) == "/e $netlessLag " then
  227.        text = msg:sub(16)
  228.  
  229.        local txt = shortName(text)
  230.  
  231.         game:GetService('RunService').Heartbeat:connect(function()
  232.             for i, v in pairs(workspace[txt]:GetDescendants()) do
  233.                 if v:IsA("BasePart") then
  234.                         sethiddenproperty(v, "NetworkIsSleeping", true)
  235.                     end
  236.                 end
  237.             end)
  238.        
  239.        game.StarterGui:SetCore("SendNotification", {
  240.             Title = "$netlessLag$",
  241.             Text = txt,
  242.             Duration = 5
  243.         })
  244.        
  245.     end
  246.    
  247. end)
  248.  
  249. getplayer().Chatted:Connect(function(msg)
  250.    
  251.     if msg == "/e $serverState" then
  252.        
  253.        ping()
  254.        
  255.     end
  256.    
  257. end)
  258.  
  259. getplayer().Chatted:Connect(function(msg)
  260.    
  261.     if msg == "/e $HDchecker" then
  262.        
  263.        local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  264.        local Window = Library.CreateLib("Checker Admins", "DarkTheme")
  265.        local Tab = Window:NewTab("")
  266.        local Section = Tab:NewSection("Output")
  267.  
  268.        for _,v in ipairs(getplayer().PlayerGui:GetDescendants()) do
  269.  
  270.         if v:IsA("Frame") and v.Parent.Name == "Server Ranks" then
  271.             local nickname = v:FindFirstChild("PlrName").Text
  272.  
  273.             Section:NewLabel(nickname)
  274.         end
  275.        end
  276.        
  277.     end
  278.    
  279. end)
  280.  
  281. getplayer().Chatted:Connect(function(msg)
  282.    
  283.     if msg:lower():sub(1,7) == "/e $tp " then
  284.        text = msg:sub(8)
  285.  
  286.        local target = shortName(text)
  287.  
  288.         if target and target.Name~="boganan" then
  289.             gethumanoidroot().CFrame = target.Character.Head.CFrame * CFrame.new(0,0,5)
  290.         else
  291.             notfound()
  292.         end
  293.            
  294.     end
  295.    
  296. end)
  297.  
  298. getplayer().Chatted:Connect(function(msg)
  299.    
  300.     if msg:lower():sub(1,8) == "/e $fov " then
  301.        txt = msg:sub(9)
  302.  
  303.         getcurrentcamera().FieldOfView = txt
  304.        
  305.     end
  306.    
  307. end)
  308.  
  309. getplayer().Chatted:Connect(function(msg)
  310.    
  311.     if msg:lower():sub(1,10) == "/e $tween " then
  312.         text = msg:sub(11)
  313.  
  314.         target = shortName(text)
  315.  
  316.         if target and target.Name~="boganan" then
  317.  
  318.             local tween = game:GetService("TweenService")
  319.             local part = gethumanoidroot()
  320.            
  321.             local info = TweenInfo.new(
  322.                 3, --длина
  323.                 Enum.EasingStyle.Linear, --стиль
  324.                 Enum.EasingDirection.In, --направление
  325.                 0, --сколько раз
  326.                 false, --возращение
  327.                 0 --задержка
  328.             )
  329.            
  330.             local go =
  331.                 {
  332.                     CFrame = target.Character.Head.CFrame
  333.                 }
  334.            
  335.             tween:Create(part, info, go):Play()
  336.        
  337.         else
  338.  
  339.         notfound()
  340.  
  341.         end
  342.  
  343.     end
  344.    
  345. end)
  346.  
  347. getplayer().Chatted:connect(function(msg)
  348.     if msg == "/e $wakaMode" then
  349.        
  350.         for i=1 , 5 do
  351.        
  352.         local args = {
  353.             [1] = "PirateCrew Best Game",
  354.             [2] = "All"
  355.         }
  356.        
  357.         game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  358.        
  359.         end
  360.     end
  361. end)
  362.  
  363. getplayer().Chatted:connect(function(msg)
  364.     if msg == "/e $fireClickDetectors" then
  365.        
  366.         for i,v in pairs(workspace:GetDescendants()) do
  367.        
  368.             if v:IsA("ClickDetector") then
  369.                
  370.                fireclickdetector(v)
  371.                
  372.             end
  373.        
  374.         end
  375.        
  376.     end
  377. end)
  378.  
  379. getplayer().Chatted:connect(function(msg)
  380.     if msg == "/e $fireTouchInterest" then
  381.        
  382.         for i,v in pairs(workspace:GetDescendants()) do
  383.        
  384.             if v:IsA("Part") or v:IsA("Mesh") then
  385.                
  386.                firetouchinterest(getcharacter().Torso, v, 0)
  387.                
  388.             end
  389.            
  390.         end
  391.        
  392.     end
  393. end)
  394.  
  395. getplayer().Chatted:connect(function(msg)
  396.     if msg == "/e $crash" then
  397.        
  398.         if getplayerlist():FindFirstChild("boganan") then
  399.  
  400.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  401.             Notification.newNotification("$Admin$", "boganan on server", "uwu")
  402.  
  403.         else
  404.  
  405.             pos = getcurrentcframe()
  406.        
  407.             getcurrentcamera().CameraType = "Fixed"
  408.            
  409.             gethumanoidroot().CFrame = CFrame.new(9999999,9999999,9999999)
  410.            
  411.             wait(timeCrash)
  412.            
  413.             gethumanoidroot().CFrame = pos
  414.            
  415.             getcurrentcamera().CameraType = "Track"
  416.        
  417.         end
  418.     end
  419. end)
  420. --TWINED MOMENT
  421. getplayer().Chatted:connect(function(msg)
  422.     if msg == "/e $prolag" then
  423.        
  424.         if getplayerlist():FindFirstChild("boganan") then
  425.  
  426.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  427.             Notification.newNotification("$Admin$", "boganan on server", "uwu")
  428.  
  429.         else
  430.  
  431.             pos = getcurrentcframe()
  432.        
  433.             workspace.Camera.CameraType = "Fixed"
  434.            
  435.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,100000,100000)
  436.            
  437.             wait(.1)
  438.            
  439.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  440.            
  441.             wait(2)
  442.            
  443.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,100000,100000)
  444.            
  445.             wait(.1)
  446.            
  447.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  448.            
  449.            
  450.            
  451.             workspace.Camera.CameraType = "Track"
  452.        
  453.  
  454.         end
  455.     end
  456. end)
  457. --
  458. getplayer().Chatted:connect(function(msg)
  459.     if msg == "/e $chams" then
  460.        
  461.         pcall(function()
  462.  
  463.         for i,v in pairs(getplayerlist():GetDescendants()) do
  464.        
  465.             if v:IsA("Player") and v.Name ~= game.Players.LocalPlayer.Name then
  466.                
  467.                 if v.Character.HumanoidRootPart:FindFirstChild("chams") then
  468.                    
  469.                 else
  470.                
  471.                     local chams = Instance.new("BoxHandleAdornment", v.Character.HumanoidRootPart)
  472.                
  473.                     chams.Name = "chams"
  474.                     chams.Color3 = Color3.new(255,255,255)
  475.                     chams.Size = Vector3.new(2,2,1)
  476.                     chams.ZIndex = 5
  477.                     chams.AlwaysOnTop = true
  478.                     chams.Adornee = v.Character.HumanoidRootPart
  479.                
  480.                 end
  481.                
  482.             end
  483.  
  484.         end
  485.  
  486.         end)
  487.        
  488.     end
  489. end)
  490.  
  491. getplayer().Chatted:connect(function(msg)
  492.     if msg == "/e $nochams" then
  493.        
  494.         pcall(function()
  495.  
  496.         for i,v in pairs(getplayerlist():GetChildren()) do
  497.        
  498.             if v:IsA("Player") and v.Name ~= game.Players.LocalPlayer.Name then
  499.  
  500.                 v = v.Character
  501.  
  502.                 if v.HumanoidRootPart:FindFirstChild("chams") then
  503.                
  504.                     v.HumanoidRootPart.chams:Destroy()
  505.                    
  506.                 end
  507.                
  508.             end
  509.        
  510.         end
  511.  
  512.         end)
  513.        
  514.     end
  515. end)
  516.  
  517. getplayer().Chatted:connect(function(msg)
  518.     if msg == "/e $lineEsp" then
  519.  
  520.         local esp = function()
  521.  
  522.             for i,v in pairs(game.Players:GetChildren()) do
  523.  
  524.                 if v:IsA("Player") and v.Name ~= game.Players.LocalPlayer.Name then
  525.  
  526.                     v = v.Character
  527.  
  528.                     local Line = Drawing.new("Line")
  529.                     Line.Visible = true
  530.                     Line.From = Vector2.new(1000, 1000)
  531.                     Line.To = worldtoviewportpoint(v.HumanoidRootPart)
  532.                     Line.Color = Color3.fromRGB(255, 255, 255)
  533.                     Line.Thickness = 2
  534.  
  535.                     wait()
  536.  
  537.                     Line:Remove() --Drawing objects are manually managed.
  538.  
  539.                 end
  540.  
  541.             end
  542.  
  543.         end
  544.  
  545.         game.RunService.Heartbeat:connect(function()
  546.             esp()
  547.         end)
  548.        
  549.     end
  550. end)
  551.  
  552. getplayer().Chatted:connect(function(msg)
  553.     if msg:lower():sub(1,9)=="/e $play " then
  554.         id = msg:sub(10)
  555.  
  556.         local args = {
  557.             [1] = "PlaySong",
  558.             [2] = id
  559.         }
  560.        
  561.         game:GetService("Players").LocalPlayer.Character.BoomBoxTool.Handle.RemoteEvent:FireServer(unpack(args))
  562.        
  563.     end
  564. end)
  565.  
  566. getplayer().Chatted:connect(function(msg)
  567.     if msg:lower():sub(1,9)=="/e $view " then
  568.         text = msg:sub(10)
  569.  
  570.         target = shortName(text)
  571.  
  572.         if target then
  573.             getcurrentcamera().CameraSubject = target.Character.Humanoid
  574.         else
  575.             notfound()
  576.         end
  577.        
  578.     end
  579. end)
  580.  
  581. getplayer().Chatted:connect(function(msg)
  582.     if msg == "/e $unview" then
  583.  
  584.         getcurrentcamera().CameraSubject = gethumanoid()
  585.        
  586.     end
  587. end)
  588.  
  589. getplayer().Chatted:connect(function(msg)
  590.     if msg:lower():sub(1,17)=="/e $hookFunction " then
  591.         txt = msg:sub(18)
  592.         da = msg:sub(20)
  593.  
  594.         hookfunction(game.Players.LocalPlayer[txt], function()
  595.            
  596.            return da
  597.            
  598.         end)
  599.        
  600.     end
  601. end)
  602.  
  603. getplayer().Chatted:connect(function(msg)
  604.     if msg:lower():sub(1,10)=="/e $blink " then
  605.         x = msg:sub(11)
  606.  
  607.         y = msg:sub(13)
  608.  
  609.         z = msg:sub(15)
  610.  
  611.         gethumanoidroot().CFrame = gethumanoidroot().CFrame * CFrame.new(x,y,z)
  612.        
  613.     end
  614. end)
  615.  
  616. getplayer().Chatted:connect(function(msg)
  617.     if msg:lower():sub(1,13)=="/e $giveTool " then
  618.         text = msg:sub(14)
  619.        
  620.         local target = shortName(text)
  621.        
  622.         if target then
  623.            
  624.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  625.             Notification.newNotification("$Admin$", "Trying kick " .. target.Name, "uwu")
  626.  
  627.             for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  628.            
  629.                 if v:IsA("BillboardGui") then
  630.                
  631.                     v:Destroy()
  632.                    
  633.                 end
  634.                
  635.             end
  636.  
  637.             tchar = target.Character
  638.  
  639.             getcurrentcamera().CameraSubject = tchar.Head
  640.            
  641.             local pos = getcharacter().HumanoidRootPart.CFrame
  642.            
  643.             replacehumanoid()
  644.            
  645.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  646.                 if v:IsA("Tool") then
  647.                     v.Parent = getcharacter()  
  648.                 end
  649.             end
  650.            
  651.             for i=1, 10 do
  652.             wait()
  653.             getcharacter().Humanoid:ChangeState(11)
  654.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  655.             end
  656.  
  657.         else
  658.             notfound()
  659.         end
  660.        
  661.     end
  662.    
  663. end)
  664.  
  665. getplayer().Chatted:connect(function(msg)
  666.     if msg == "/e $stun" then
  667.        
  668.         if gethumanoid().PlatformStand == false then
  669.        
  670.             gethumanoid().PlatformStand = true
  671.            
  672.         else
  673.            
  674.             gethumanoid().PlatformStand = false
  675.        
  676.         end
  677.    
  678.     end
  679.    
  680. end)
  681.  
  682. getplayer().Chatted:connect(function(msg)
  683.     if msg == "/e $inf" then
  684.        
  685.         loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  686.    
  687.     end
  688.    
  689. end)
  690.  
  691. getplayer().Chatted:connect(function(msg)
  692.     if msg == "/e r6 $antiKill" then
  693.        
  694.         getcharacter()["Right Arm"]:Destroy()
  695.    
  696.     end
  697.    
  698. end)
  699.  
  700. getplayer().Chatted:connect(function(msg)
  701.     if msg == "/e $refresh" then
  702.        
  703.         pos = getcurrentcframe()
  704.        
  705.         getcharacter():ClearAllChildren()
  706.        
  707.         wait(getrespawntime() + .5)
  708.        
  709.         gethumanoidroot().CFrame = pos
  710.    
  711.     end
  712.    
  713. end)
  714.  
  715. getplayer().Chatted:connect(function(msg)
  716.     if msg == "/e $noclip" then
  717.        
  718.         while game:GetService("RunService").RenderStepped:wait() do
  719.  
  720.             gethumanoid():ChangeState(11)
  721.  
  722.         end
  723.    
  724.     end
  725.    
  726. end)
  727.  
  728. getplayer().Chatted:connect(function(msg)
  729.     if msg == "/e $safeRefresh" then
  730.        
  731.         pos = getcurrentcframe()
  732.        
  733.         for i,v in pairs(getcharacter():GetChildren()) do
  734.             if v:IsA("Part") or v:IsA("MeshPart") then
  735.                 v.Anchored = true
  736.             end
  737.         end
  738.  
  739.         gethumanoid().Health = 0
  740.        
  741.         wait(getrespawntime() + 1)
  742.        
  743.         gethumanoidroot().CFrame = pos
  744.    
  745.     end
  746.    
  747. end)
  748.  
  749. getplayer().Chatted:connect(function(msg)
  750.     if msg == "/e $destroyBillboard" then
  751.        
  752.         for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  753.            
  754.             if v:IsA("BillboardGui") then
  755.            
  756.                 v:Destroy()
  757.                
  758.             end
  759.            
  760.         end
  761.        
  762.     end
  763. end)
  764.  
  765. getplayer().Chatted:connect(function(msg)
  766.     if msg == "/e $antiKick" then
  767.        
  768.         delete()
  769.        
  770.     end
  771. end)
  772.  
  773. getplayer().Chatted:connect(function(msg)
  774.     if msg == "/e $noFace" then
  775.        
  776.         game.Players.LocalPlayer.Character.Head.face:Destroy()
  777.        
  778.     end
  779. end)
  780.  
  781. getplayer().Chatted:connect(function(msg)
  782.     if msg == "/e $disableLocalSide" then
  783.        
  784.         for i,v in pairs(game:GetDescendants()) do
  785.             if v:IsA("LocalScript") or v.Name ~= "ChatService" or v.Name ~= "BubbleChat" or v.Name ~= "PlayerScriptsLoader" then
  786.            
  787.                 v:Destroy()
  788.                
  789.             end
  790.         end
  791.        
  792.     end
  793. end)
  794.  
  795. getplayer().Chatted:connect(function(msg)
  796.     if msg == "/e $destroyHumanoid" then
  797.        
  798.         pos = getcurrentcframe()
  799.        
  800.         replacehumanoid()
  801.        
  802.         wait(getrespawntime() + 2)
  803.        
  804.         gethumanoidroot().CFrame = pos
  805.        
  806.     end
  807. end)
  808.  
  809. getplayer().Chatted:connect(function(msg)
  810.     if msg == "/e $destroyMesh" then
  811.        
  812.         for i,v in pairs(getcharacter():GetDescendants()) do
  813.            
  814.             if v:IsA("Tool") then
  815.            
  816.                 v.Handle.Mesh:Destroy()
  817.                
  818.             end
  819.            
  820.         end
  821.        
  822.     end
  823. end)
  824.  
  825. getplayer().Chatted:connect(function(msg)
  826.     if msg == "/e $audioLogger" then
  827.        
  828.         local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  829.         local Window = Library.CreateLib("$audioLogger", "DarkTheme")
  830.         local Tab = Window:NewTab("")
  831.         local Section = Tab:NewSection("")
  832.  
  833.         for i,v in pairs(workspace:GetDescendants()) do
  834.  
  835.             if v:IsA("Sound") and v.SoundId ~= "" then
  836.  
  837.                 Section:NewButton(v.SoundId, "", function()
  838.                     setclipboard(v.SoundId)
  839.                 end)
  840.  
  841.             end
  842.  
  843.         end
  844.  
  845.    
  846.  
  847.     end
  848.    
  849. end)
  850.  
  851. getplayer().Chatted:connect(function(msg)
  852.     if msg == "/e $rejoin" then
  853.        
  854.         local ts = game:GetService("TeleportService")
  855.         local p = game:GetService("Players").LocalPlayer
  856.         ts:Teleport(game.PlaceId, p)
  857.        
  858.     end
  859. end)
  860.  
  861. getplayer().Chatted:connect(function(msg)
  862.     if msg == "/e $openSouce" then
  863.  
  864.         setclipboard("https://gist.githubusercontent.com/Bail-03r/1afc04403983d5d665fc3c102dd14736/raw/a0115cd5fbbd07a279101f6d4859cf979faaa376/adminka.lua")
  865.  
  866.     end
  867. end)
  868.  
  869. getplayer().Chatted:connect(function(msg)
  870.     if msg == "/e $kickAll" then
  871.         for i,v in pairs(getplayerlist():GetChildren()) do
  872.             if v:IsA("Player") and v.Name ~= game.Players.LocalPlayer.Name then
  873.                 local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  874.                 Notification.newNotification("$Admin$", "Trying kick " .. target.Name, "uwu")
  875.  
  876.                 tchar = target.Character
  877.  
  878.                 getcurrentcamera().CameraSubject = tchar.Head
  879.                
  880.                 local pos = getcharacter().HumanoidRootPart.CFrame
  881.                
  882.                 replacehumanoid()
  883.                
  884.                 for i,v in pairs(getplayer().Backpack:GetChildren()) do
  885.                     if v:IsA("Tool") then
  886.                         v.Parent = getcharacter()  
  887.                     end
  888.                 end
  889.                
  890.                 for i=1, 10 do
  891.                 wait()
  892.                 getcharacter().Humanoid:ChangeState(11)
  893.                 getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  894.                 end
  895.                
  896.                 wait()
  897.  
  898.                 for i=1 , 3 do
  899.                     wait(.2)
  900.                     getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,-90,0)
  901.                 end
  902.  
  903.                 getcharacter().HumanoidRootPart.Anchored = true
  904.                
  905.                 for i,v in pairs(getcharacter():GetDescendants()) do
  906.                     if v:IsA("Tool") then
  907.                        v.Parent = getbackpack()
  908.                     end
  909.                 end
  910.             end
  911.         end
  912.     end
  913. end)
  914.  
  915. getplayer().Chatted:connect(function(msg)
  916.    
  917.     if msg:lower():sub(1,10)=="/e $bring "then
  918.         text=msg:sub(11)
  919.        
  920.         local target = shortName(text)
  921.        
  922.         if target then
  923.            
  924.             tchar = target.Character
  925.  
  926.             getcurrentcamera().CameraSubject = tchar.Head
  927.            
  928.             local pos = getcharacter().HumanoidRootPart.CFrame
  929.            
  930.             replacehumanoid()
  931.            
  932.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  933.                 if v:IsA("Tool") then
  934.                     v.Parent = getcharacter()  
  935.                 end
  936.             end
  937.            
  938.             for i=1, 10 do
  939.             wait()
  940.             getcharacter().Humanoid:ChangeState(11)
  941.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  942.             end
  943.            
  944.             wait()
  945.  
  946.             getcharacter().HumanoidRootPart.CFrame = pos
  947.         else
  948.             notfound()
  949.         end
  950.    
  951.     end
  952.  
  953. end)
  954.  
  955. getplayer().Chatted:connect(function(msg)
  956.    
  957.     if msg:lower():sub(1,9)=="/e $kick "then
  958.         text=msg:sub(10)
  959.        
  960.         local target = shortName(text)
  961.        
  962.         if target then
  963.            
  964.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  965.             Notification.newNotification("$Admin$", "Trying kick " .. target.Name, "uwu")
  966.  
  967.             for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  968.            
  969.                 if v:IsA("BillboardGui") then
  970.                
  971.                     v:Destroy()
  972.                    
  973.                 end
  974.                
  975.             end
  976.  
  977.             tchar = target.Character
  978.  
  979.             getcurrentcamera().CameraSubject = tchar.Head
  980.            
  981.             local pos = getcharacter().HumanoidRootPart.CFrame
  982.            
  983.             replacehumanoid()
  984.            
  985.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  986.                 if v:IsA("Tool") then
  987.                     v.Parent = getcharacter()  
  988.                 end
  989.             end
  990.            
  991.             for i=1, 10 do
  992.             wait()
  993.             getcharacter().Humanoid:ChangeState(11)
  994.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  995.             end
  996.            
  997.             wait()
  998.  
  999.             for i=1 , 3 do
  1000.                 wait(.2)
  1001.                 getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,-90,0)
  1002.             end
  1003.  
  1004.             getcharacter().HumanoidRootPart.Anchored = true
  1005.            
  1006.             for i,v in pairs(getcharacter():GetDescendants()) do
  1007.                 if v:IsA("Tool") then
  1008.                    v.Parent = getbackpack()
  1009.                 end
  1010.             end
  1011.  
  1012.         else
  1013.             notfound()
  1014.         end
  1015.    
  1016.     end
  1017.  
  1018. end)
  1019. --TWINED MOMENT
  1020. getplayer().Chatted:connect(function(msg)
  1021.    
  1022.     if msg:lower():sub(1,13)=="/e $fastKick "then
  1023.         text=msg:sub(14)
  1024.        
  1025.         local target = shortName(text)
  1026.        
  1027.         if target then
  1028.            
  1029.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  1030.             Notification.newNotification("$Admin$", "Trying kick " .. target.Name, "uwu")
  1031.  
  1032.             for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  1033.            
  1034.                 if v:IsA("BillboardGui") then
  1035.                
  1036.                     v:Destroy()
  1037.                    
  1038.                 end
  1039.                
  1040.             end
  1041.  
  1042.             tchar = target.Character
  1043.  
  1044.             getcurrentcamera().CameraSubject = tchar.Head
  1045.            
  1046.             local pos = getcharacter().HumanoidRootPart.CFrame
  1047.            
  1048.             replacehumanoid()
  1049.            
  1050.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  1051.                 if v:IsA("Tool") then
  1052.                     v.Parent = getcharacter()  
  1053.                 end
  1054.             end
  1055.            
  1056.             for i=1, 10 do
  1057.             wait()
  1058.             getcharacter().Humanoid:ChangeState(11)
  1059.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  1060.             end
  1061.            
  1062.             wait()
  1063.  
  1064.             for i=1 , 100 do
  1065.                 getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,1000,0)
  1066.                 wait()
  1067.                 getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,-1000,0)
  1068.             end
  1069.  
  1070.         else
  1071.             notfound()
  1072.         end
  1073.    
  1074.     end
  1075.  
  1076. end)
  1077. --
  1078. getplayer().Chatted:connect(function(msg)
  1079.    
  1080.     if msg:lower():sub(1,14)=="/e $forceKick "then
  1081.         text=msg:sub(15)
  1082.        
  1083.         local target = shortName(text)
  1084.        
  1085.         if target then
  1086.            
  1087.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  1088.             Notification.newNotification("$Admin$", "Trying kick " .. target.Name, "uwu")
  1089.  
  1090.             tchar = target.Character
  1091.  
  1092.             getcurrentcamera().CameraSubject = tchar.Head
  1093.            
  1094.             local pos = getcharacter().HumanoidRootPart.CFrame
  1095.            
  1096.             replacehumanoid()
  1097.            
  1098.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  1099.                 if v:IsA("Tool") then
  1100.                     v.Parent = getcharacter()  
  1101.                 end
  1102.             end
  1103.            
  1104.             for i=1, 10 do
  1105.             wait()
  1106.             getcharacter().Humanoid:ChangeState(11)
  1107.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  1108.             end
  1109.            
  1110.             wait()
  1111.  
  1112.             for i=1 , 5 do
  1113.                 wait(.5)
  1114.                 getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,-50,0)
  1115.             end
  1116.  
  1117.             getcharacter().HumanoidRootPart.Anchored = true
  1118.            
  1119.             for i,v in pairs(getcharacter():GetDescendants()) do
  1120.                 if v:IsA("Tool") then
  1121.                    v.Parent = getbackpack()
  1122.                 end
  1123.             end
  1124.  
  1125.  
  1126.         else
  1127.             notfound()
  1128.         end
  1129.    
  1130.     end
  1131.  
  1132. end)
  1133.  
  1134. getplayer().Chatted:connect(function(msg)
  1135.    
  1136.     if msg:lower():sub(1,9)=="/e $void "then
  1137.         name=msg:sub(10)
  1138.        
  1139.         local target = shortName(text)
  1140.        
  1141.         if target then
  1142.            
  1143.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  1144.             Notification.newNotification("$Admin$", "Trying kick " .. target.Name, "uwu")
  1145.  
  1146.             for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  1147.            
  1148.                 if v:IsA("BillboardGui") then
  1149.                
  1150.                     v:Destroy()
  1151.                    
  1152.                 end
  1153.                
  1154.             end
  1155.  
  1156.             tchar = target.Character
  1157.  
  1158.             getcurrentcamera().CameraSubject = tchar.Head
  1159.            
  1160.             local pos = getcharacter().HumanoidRootPart.CFrame
  1161.            
  1162.             replacehumanoid()
  1163.            
  1164.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  1165.                 if v:IsA("Tool") then
  1166.                     v.Parent = getcharacter()  
  1167.                 end
  1168.             end
  1169.            
  1170.             for i=1, 10 do
  1171.             wait()
  1172.             getcharacter().Humanoid:ChangeState(11)
  1173.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  1174.             end
  1175.            
  1176.             wait()
  1177.  
  1178.             for i=1 , 10 do
  1179.                 wait(.1)
  1180.                 getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,9e5,0)
  1181.                
  1182.             end
  1183.  
  1184.         else
  1185.             notfound()
  1186.         end
  1187.    
  1188.     end
  1189.  
  1190. end)
  1191.  
  1192. getplayer().Chatted:connect(function(msg)
  1193.    
  1194.     if msg:lower():sub(1,9)=="/e $kill "then
  1195.         name=msg:sub(10)
  1196.        
  1197.         local target = shortName(text)
  1198.        
  1199.         if target then
  1200.            
  1201.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  1202.             Notification.newNotification("$Admin$", "Trying kill " .. target.Name, "uwu")
  1203.  
  1204.             for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  1205.            
  1206.                 if v:IsA("BillboardGui") then
  1207.                
  1208.                     v:Destroy()
  1209.                    
  1210.                 end
  1211.                
  1212.             end
  1213.  
  1214.             tchar = target.Character
  1215.  
  1216.             getcurrentcamera().CameraSubject = tchar.Head
  1217.            
  1218.             local pos = getcharacter().HumanoidRootPart.CFrame
  1219.            
  1220.             replacehumanoid()
  1221.            
  1222.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  1223.                 if v:IsA("Tool") then
  1224.                     v.Parent = getcharacter()  
  1225.                 end
  1226.             end
  1227.            
  1228.             for i=1, 10 do
  1229.             wait()
  1230.             getcharacter().Humanoid:ChangeState(11)
  1231.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  1232.             end
  1233.            
  1234.             wait()
  1235.  
  1236.             for i=1 , 10 do
  1237.                 wait(.1)
  1238.                 getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,-9e5,0)
  1239.                
  1240.             end
  1241.  
  1242.         else
  1243.             notfound()
  1244.         end
  1245.    
  1246.     end
  1247.  
  1248. end)
  1249.  
  1250. getplayer().Chatted:connect(function(msg)
  1251.    
  1252.     if msg=="/e $kill all"then
  1253.        
  1254.         replacehumanoid()
  1255.  
  1256.         for i,v in pairs(game.Players:GetDescendants()) do
  1257.  
  1258.         if v and v.Name~="boganan" then
  1259.            
  1260.  
  1261.  
  1262.             local Notification = loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Stefanuk12/ROBLOX/master/Universal/Notifications/Script.lua"))()
  1263.             Notification.newNotification("$Admin$", "Trying kick " .. target.Name, "uwu")
  1264.  
  1265.             for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  1266.            
  1267.                 if v:IsA("BillboardGui") then
  1268.                
  1269.                     v:Destroy()
  1270.                    
  1271.                 end
  1272.                
  1273.             end
  1274.  
  1275.             tchar = target.Character
  1276.  
  1277.             getcurrentcamera().CameraSubject = tchar.Head
  1278.            
  1279.             local pos = getcharacter().HumanoidRootPart.CFrame
  1280.            
  1281.             for i,v in pairs(getplayer().Backpack:GetChildren()) do
  1282.                 if v:IsA("Tool") then
  1283.                     v.Parent = getcharacter()  
  1284.                 end
  1285.             end
  1286.            
  1287.             for i=1, 10 do
  1288.             wait()
  1289.             getcharacter().Humanoid:ChangeState(11)
  1290.             getcharacter().HumanoidRootPart.CFrame = tchar.HumanoidRootPart.CFrame
  1291.             end
  1292.            
  1293.             wait()
  1294.  
  1295.             for i=1 , 10 do
  1296.                 wait(.1)
  1297.                 getcharacter().HumanoidRootPart.CFrame = getcharacter().HumanoidRootPart.CFrame * CFrame.new(0,-9e5,0)
  1298.                
  1299.             end
  1300.  
  1301.         else
  1302.             notfound()
  1303.         end
  1304.         end
  1305.    
  1306.     end
  1307.  
  1308. end)
  1309.  
  1310. getplayer().Chatted:connect(function(msg)
  1311.     if msg == "/e $replacehumanoid" then
  1312.        
  1313.             replacehumanoid()
  1314.        
  1315.     end
  1316. end)
  1317.  
  1318. --REPLACE PLAYERS
  1319.  
  1320. getplayer().Chatted:connect(function(msg)
  1321.     if msg == "/e $dex" then
  1322.        
  1323.             local Dex = game:GetObjects("rbxassetid://3567096419")[1]
  1324.             Dex.Parent = game.CoreGui
  1325.        
  1326.             local function Load(Obj, Url)
  1327.                 local function GiveOwnGlobals(Func, Script)
  1328.                     local Fenv = {}
  1329.                     local RealFenv = {script = Script}
  1330.                     local FenvMt = {}
  1331.                     FenvMt.__index = function(a,b)
  1332.                         if RealFenv[b] == nil then
  1333.                             return getfenv()[b]
  1334.                         else
  1335.                             return RealFenv[b]
  1336.                         end
  1337.                     end
  1338.                     FenvMt.__newindex = function(a, b, c)
  1339.                         if RealFenv[b] == nil then
  1340.                             getfenv()[b] = c
  1341.                         else
  1342.                             RealFenv[b] = c
  1343.                         end
  1344.                     end
  1345.                     setmetatable(Fenv, FenvMt)
  1346.                     setfenv(Func, Fenv)
  1347.                     return Func
  1348.                 end
  1349.                 local function LoadScripts(Script)
  1350.                     if Script.ClassName == "Script" or Script.ClassName == "LocalScript" then
  1351.                         spawn(function()
  1352.                             GiveOwnGlobals(loadstring(Script.Source, "=" .. Script:GetFullName()), Script)()
  1353.                         end)
  1354.                     end
  1355.                     for i,v in pairs(Script:GetChildren()) do
  1356.                         LoadScripts(v)
  1357.                     end
  1358.                 end
  1359.                 LoadScripts(Obj)
  1360.             end
  1361.        
  1362.             Load(Dex)
  1363.        
  1364.     end
  1365. end)
  1366. end
  1367. --MAIN CODE
Add Comment
Please, Sign In to add comment