-- [[ THE ADMIN JUBEN: PLAYER EDITION ]] -- -- Global Release | Build 2026 -- All modules custom-built by Juben local Players = game:GetService("Players") local LPlayer = Players.LocalPlayer -- 1. HIDDEN DATABASE INITIALIZATION -- This loads the massive command list without anyone knowing its origin. _G.IY_NoNotification = true _G.Adonis_Hide = true loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() -- 2. USER NOTIFICATION game:GetService("StarterGui"):SetCore("SendNotification", { Title = "TheADMINJUBEN SCRIPT", Text = "Access Granted. Standard User Mode Active.", Duration = 7, Icon = "rbxassetid://6023426926" }) -- 3. THE PLAYER INTERFACE (Clean & Professional) local function CreatePlayerUI() local ScreenGui = Instance.new("ScreenGui", LPlayer:WaitForChild("PlayerGui")) ScreenGui.Name = "JubenPublicSystem" local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 260, 0, 380) MainFrame.Position = UDim2.new(1, -270, 0.5, -190) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.BorderSizePixel = 2 MainFrame.BorderColor3 = Color3.fromRGB(80, 80, 80) -- Neutral grey for players local Header = Instance.new("TextLabel", MainFrame) Header.Size = UDim2.new(1, 0, 0, 35) Header.Text = "TheADMINJUBEN [v2.0]" Header.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Header.TextColor3 = Color3.fromRGB(255, 255, 255) Header.Font = Enum.Font.SourceSansBold local Content = Instance.new("TextLabel", MainFrame) Content.Size = UDim2.new(1, -15, 1, -50) Content.Position = UDim2.new(0, 10, 0, 45) Content.BackgroundTransparency = 1 Content.TextColor3 = Color3.fromRGB(170, 170, 170) Content.TextSize = 14 Content.TextXAlignment = Enum.TextXAlignment.Left Content.TextYAlignment = Enum.TextYAlignment.Top Content.Font = Enum.Font.Code -- Command display Content.Text = [[ > MODULES ACTIVE: ;fly / ;unfly ;speed [num] ;jump [num] ;infjump (Toggle) ;noclip / ;clip ;re (Respawn) ;bang [target] ;h [message] ;tp [target] ;view [target] > [FULL DATABASE] Type ;cmds for 400+ extra commands. Status: CONNECTED Creator: JUBEN ]] end -- 4. BLOCKING YOUR SECRET COMMANDS -- If they try to guess your commands, it will show a fake error. LPlayer.Chatted:Connect(function(msg) local secretCmds = {";kj", ";purple", ";kill"} for _, s in pairs(secretCmds) do if msg:lower():sub(1, #s) == s then task.wait(0.1) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "PERMISSION ERROR", Text = "Error 403: Command locked to Owner.", Duration = 5 }) end end end) CreatePlayerUI()