Algarnr

Past

Jun 9th, 2025
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.65 KB | Gaming | 0 0
  1. loadstring([[
  2. local Players = game:GetService("Players")
  3. local RunService = game:GetService("RunService")
  4. local SoundService = game:GetService("SoundService")
  5. local LocalPlayer = Players.LocalPlayer
  6.  
  7. local gui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui"))
  8. gui.Name = "AdminBypassGUI"
  9. gui.ResetOnSpawn = false
  10.  
  11. -- Bypass animation
  12. local function playBypass()
  13.     local frame = Instance.new("Frame", gui)
  14.     frame.Size = UDim2.new(1,0,1,0)
  15.     frame.BackgroundColor3 = Color3.new(0,0,0)
  16.     frame.ZIndex = 10
  17.  
  18.     local label = Instance.new("TextLabel", frame)
  19.     label.Size = UDim2.new(0.5,0,0.1,0)
  20.     label.Position = UDim2.new(0.25,0,0.4,0)
  21.     label.BackgroundTransparency = 1
  22.     label.TextColor3 = Color3.new(1,1,1)
  23.     label.Font = Enum.Font.GothamBold
  24.     label.TextScaled = true
  25.     label.Text = "Bypassing Gamepass... (0%)"
  26.  
  27.     local barBG = Instance.new("Frame", frame)
  28.     barBG.Size = UDim2.new(0.5,0,0.04,0)
  29.     barBG.Position = UDim2.new(0.25,0,0.5,0)
  30.     barBG.BackgroundColor3 = Color3.fromRGB(60,60,60)
  31.  
  32.     local bar = Instance.new("Frame", barBG)
  33.     bar.Size = UDim2.new(0,0,1,0)
  34.     bar.BackgroundColor3 = Color3.fromRGB(0,170,255)
  35.  
  36.     for i = 1, 100 do
  37.         label.Text = "Bypassing Gamepass... ("..i.."%)"
  38.         bar.Size = UDim2.new(i/100,0,1,0)
  39.         wait(0.02)
  40.     end
  41.  
  42.     wait(0.3)
  43.     frame:Destroy()
  44. end
  45.  
  46. -- Sounds
  47. local clickSound = Instance.new("Sound", SoundService)
  48. clickSound.SoundId = "rbxassetid://12222216"
  49. local doneSound = Instance.new("Sound", SoundService)
  50. doneSound.SoundId = "rbxassetid://12223045"
  51.  
  52. -- GUI
  53. local Main = Instance.new("Frame", gui)
  54. Main.Size = UDim2.new(0,380,0,260)
  55. Main.Position = UDim2.new(0.3,0,0.3,0)
  56. Main.BackgroundColor3 = Color3.fromRGB(30,30,30)
  57. Main.BorderSizePixel = 4
  58. Main.Active = true
  59. Main.Draggable = true
  60. Main.Name = "Main"
  61.  
  62. local Title = Instance.new("TextLabel", Main)
  63. Title.Size = UDim2.new(1,0,0,40)
  64. Title.BackgroundTransparency = 1
  65. Title.Text = "FREE ALL ADMIN"
  66. Title.Font = Enum.Font.GothamBold
  67. Title.TextColor3 = Color3.new(1,1,1)
  68. Title.TextScaled = true
  69.  
  70. local CmdBox = Instance.new("TextBox", Main)
  71. CmdBox.Size = UDim2.new(0.9,0,0,30)
  72. CmdBox.Position = UDim2.new(0.05,0,0.2,0)
  73. CmdBox.PlaceholderText = "Enter command (e.g. kick)"
  74. CmdBox.BackgroundColor3 = Color3.fromRGB(40,40,40)
  75. CmdBox.TextColor3 = Color3.new(1,1,1)
  76. CmdBox.Font = Enum.Font.SourceSans
  77. CmdBox.TextScaled = true
  78.  
  79. -- Dropdown button
  80. local Drop = Instance.new("TextButton", Main)
  81. Drop.Size = UDim2.new(0.9,0,0,30)
  82. Drop.Position = UDim2.new(0.05,0,0.35,0)
  83. Drop.BackgroundColor3 = Color3.fromRGB(50,50,50)
  84. Drop.TextColor3 = Color3.new(1,1,1)
  85. Drop.Font = Enum.Font.Gotham
  86. Drop.TextScaled = true
  87. Drop.Text = "Select Player"
  88.  
  89. -- Scrollable dropdown list
  90. local DropFrame = Instance.new("Frame", Drop)
  91. DropFrame.Size = UDim2.new(1,0,0,0)
  92. DropFrame.Position = UDim2.new(0,0,1,0)
  93. DropFrame.BackgroundColor3 = Color3.fromRGB(35,35,35)
  94. DropFrame.ClipsDescendants = true
  95. DropFrame.Visible = false
  96.  
  97. local Scroll = Instance.new("ScrollingFrame", DropFrame)
  98. Scroll.Size = UDim2.new(1,0,1,0)
  99. Scroll.CanvasSize = UDim2.new(0,0,0,0)
  100. Scroll.ScrollBarThickness = 4
  101. Scroll.BackgroundTransparency = 1
  102. Scroll.BorderSizePixel = 0
  103.  
  104. local UIList = Instance.new("UIListLayout", Scroll)
  105. UIList.SortOrder = Enum.SortOrder.LayoutOrder
  106.  
  107. local function refreshPlayers()
  108.     for _,child in pairs(Scroll:GetChildren()) do
  109.         if not child:IsA("UIListLayout") then
  110.             child:Destroy()
  111.         end
  112.     end
  113.  
  114.     local function addButton(name)
  115.         local btn = Instance.new("TextButton", Scroll)
  116.         btn.Size = UDim2.new(1,0,0,25)
  117.         btn.BackgroundColor3 = Color3.fromRGB(60,60,60)
  118.         btn.Font = Enum.Font.Gotham
  119.         btn.TextColor3 = Color3.new(1,1,1)
  120.         btn.TextScaled = true
  121.         btn.Text = name
  122.         btn.MouseButton1Click:Connect(function()
  123.             Drop.Text = name
  124.             DropFrame.Visible = false
  125.             DropFrame.Size = UDim2.new(1,0,0,0)
  126.             clickSound:Play()
  127.         end)
  128.     end
  129.  
  130.     addButton("all")
  131.     for _,p in ipairs(Players:GetPlayers()) do
  132.         if p ~= LocalPlayer then
  133.             addButton(p.Name)
  134.         end
  135.     end
  136.  
  137.     wait()
  138.     Scroll.CanvasSize = UDim2.new(0,0,0, UIList.AbsoluteContentSize.Y)
  139. end
  140.  
  141. Drop.MouseButton1Click:Connect(function()
  142.     if DropFrame.Visible then
  143.         DropFrame.Visible = false
  144.         DropFrame.Size = UDim2.new(1,0,0,0)
  145.     else
  146.         refreshPlayers()
  147.         DropFrame.Visible = true
  148.         DropFrame.Size = UDim2.new(1,0,0,120)
  149.     end
  150.     clickSound:Play()
  151. end)
  152.  
  153. -- Run button
  154. local RunBtn = Instance.new("TextButton", Main)
  155. RunBtn.Size = UDim2.new(0.9,0,0,30)
  156. RunBtn.Position = UDim2.new(0.05,0,0.65,0)
  157. RunBtn.Font = Enum.Font.GothamBold
  158. RunBtn.BackgroundColor3 = Color3.fromRGB(60,60,60)
  159. RunBtn.TextColor3 = Color3.new(1,1,1)
  160. RunBtn.TextScaled = true
  161. RunBtn.Text = "Run"
  162.  
  163. RunBtn.MouseButton1Click:Connect(function()
  164.     clickSound:Play()
  165.     local cmd = CmdBox.Text
  166.     local tgt = Drop.Text
  167.     if cmd ~= "" and tgt ~= "" then
  168.         if tgt:lower() == "all" then
  169.             for _,p in ipairs(Players:GetPlayers()) do
  170.                 if p ~= LocalPlayer then
  171.                     Players:Chat(":"..cmd.." "..p.Name)
  172.                     wait(0.2)
  173.                 end
  174.             end
  175.         else
  176.             Players:Chat(":"..cmd.." "..tgt)
  177.         end
  178.     end
  179. end)
  180.  
  181. -- Rainbow border
  182. coroutine.wrap(function()
  183.     local hue = 0
  184.     while true do
  185.         hue = (hue + 0.01) % 1
  186.         Main.BorderColor3 = Color3.fromHSV(hue,1,1)
  187.         RunService.RenderStepped:Wait()
  188.     end
  189. end)()
  190.  
  191. playBypass()
  192. doneSound:Play()
  193. ]])()
Advertisement
Add Comment
Please, Sign In to add comment