-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] --// AYAD ADMIN PANEL + KEY SYSTEM --// Put in StarterPlayer > StarterPlayerScripts local Players = game:GetService("Players") local player = Players.LocalPlayer local KEY = "Ayad" local gui = Instance.new("ScreenGui") gui.Name = "AyadAdminPanel" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") --================================================== -- KEY SCREEN --================================================== local keyFrame = Instance.new("Frame") keyFrame.Size = UDim2.new(0,280,0,190) keyFrame.Position = UDim2.new(.5,-140,.5,-95) keyFrame.BackgroundColor3 = Color3.fromRGB(25,25,30) keyFrame.BorderSizePixel = 0 keyFrame.Parent = gui local keyCorner = Instance.new("UICorner") keyCorner.CornerRadius = UDim.new(0,12) keyCorner.Parent = keyFrame local keyTitle = Instance.new("TextLabel") keyTitle.Size = UDim2.new(1,0,0,45) keyTitle.BackgroundTransparency = 1 keyTitle.Text = "🔐 AYAD KEY SYSTEM" keyTitle.TextColor3 = Color3.new(1,1,1) keyTitle.TextScaled = true keyTitle.Font = Enum.Font.GothamBold keyTitle.Parent = keyFrame local keyBox = Instance.new("TextBox") keyBox.Size = UDim2.new(1,-30,0,42) keyBox.Position = UDim2.new(0,15,0,60) keyBox.PlaceholderText = "Enter key..." keyBox.Text = "" keyBox.TextScaled = true keyBox.BackgroundColor3 = Color3.fromRGB(45,45,55) keyBox.TextColor3 = Color3.new(1,1,1) keyBox.Parent = keyFrame local boxCorner = Instance.new("UICorner") boxCorner.CornerRadius = UDim.new(0,8) boxCorner.Parent = keyBox local check = Instance.new("TextButton") check.Size = UDim2.new(1,-30,0,42) check.Position = UDim2.new(0,15,0,115) check.Text = "UNLOCK" check.TextScaled = true check.Font = Enum.Font.GothamBold check.BackgroundColor3 = Color3.fromRGB(45,45,55) check.TextColor3 = Color3.new(1,1,1) check.Parent = keyFrame local checkCorner = Instance.new("UICorner") checkCorner.CornerRadius = UDim.new(0,8) checkCorner.Parent = check local status = Instance.new("TextLabel") status.Size = UDim2.new(1,0,0,25) status.Position = UDim2.new(0,0,0,160) status.BackgroundTransparency = 1 status.Text = "" status.TextScaled = true status.TextColor3 = Color3.new(1,1,1) status.Parent = keyFrame --================================================== -- ADMIN GUI --================================================== local main = Instance.new("Frame") main.Size = UDim2.new(0,300,0,330) main.Position = UDim2.new(.5,-150,.5,-165) main.BackgroundColor3 = Color3.fromRGB(25,25,30) main.BorderSizePixel = 0 main.Visible = false main.Parent = gui local mainCorner = Instance.new("UICorner") mainCorner.CornerRadius = UDim.new(0,12) mainCorner.Parent = main local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,45) title.BackgroundTransparency = 1 title.Text = "⚡ AYAD ADMIN" title.TextColor3 = Color3.new(1,1,1) title.TextScaled = true title.Font = Enum.Font.GothamBold title.Parent = main local minimize = Instance.new("TextButton") minimize.Size = UDim2.new(0,40,0,35) minimize.Position = UDim2.new(1,-45,0,5) minimize.Text = "-" minimize.TextScaled = true minimize.BackgroundColor3 = Color3.fromRGB(50,50,60) minimize.TextColor3 = Color3.new(1,1,1) minimize.Parent = main local tabs = Instance.new("Frame") tabs.Size = UDim2.new(1,-20,0,40) tabs.Position = UDim2.new(0,10,0,50) tabs.BackgroundTransparency = 1 tabs.Parent = main local function makeTab(text,x) local b = Instance.new("TextButton") b.Size = UDim2.new(0,85,0,35) b.Position = UDim2.new(0,x,0,0) b.Text = text b.TextScaled = true b.Font = Enum.Font.GothamBold b.BackgroundColor3 = Color3.fromRGB(45,45,55) b.TextColor3 = Color3.new(1,1,1) b.Parent = tabs local c = Instance.new("UICorner") c.CornerRadius = UDim.new(0,8) c.Parent = b return b end local playerTab = makeTab("Player",0) local powerTab = makeTab("Power",90) local miscTab = makeTab("Misc",180) local content = Instance.new("Frame") content.Size = UDim2.new(1,-20,1,-105) content.Position = UDim2.new(0,10,0,95) content.BackgroundTransparency = 1 content.Parent = main local function clearContent() for _,v in ipairs(content:GetChildren()) do v:Destroy() end end local function getCharacter() return player.Character or player.CharacterAdded:Wait() end local function getHumanoid() return getCharacter():FindFirstChildOfClass("Humanoid") end local function button(text,y,callback) local b = Instance.new("TextButton") b.Size = UDim2.new(1,0,0,42) b.Position = UDim2.new(0,0,0,y) b.Text = text b.TextScaled = true b.Font = Enum.Font.GothamBold b.BackgroundColor3 = Color3.fromRGB(45,45,55) b.TextColor3 = Color3.new(1,1,1) b.Parent = content local c = Instance.new("UICorner") c.CornerRadius = UDim.new(0,8) c.Parent = b b.MouseButton1Click:Connect(callback) end local function playerPage() clearContent() button("⚡ Speed 100",0,function() local h = getHumanoid() if h then h.WalkSpeed = 100 end end) button("🦘 Jump 100",50,function() local h = getHumanoid() if h then h.UseJumpPower = true h.JumpPower = 100 end end) button("❤️ Heal",100,function() local h = getHumanoid() if h then h.Health = h.MaxHealth end end) button("🔄 Reset Stats",150,function() local h = getHumanoid() if h then h.WalkSpeed = 16 h.JumpPower = 50 end end) end local function powerPage() clearContent() button("💀 GOD MODE",0,function() local h = getHumanoid() if h then h.MaxHealth = 50000000 h.Health = 50000000 end end) button("❤️ 50M HEALTH",50,function() local h = getHumanoid() if h then h.MaxHealth = 50000000 h.Health = 50000000 end end) button("⚡ SUPER SPEED",100,function() local h = getHumanoid() if h then h.WalkSpeed = 250 end end) button("🦘 SUPER JUMP",150,function() local h = getHumanoid() if h then h.UseJumpPower = true h.JumpPower = 250 end end) end local function miscPage() clearContent() button("🌎 Normal Speed",0,function() local h = getHumanoid() if h then h.WalkSpeed = 16 end end) button("🦘 Normal Jump",50,function() local h = getHumanoid() if h then h.JumpPower = 50 end end) button("🔁 Respawn",100,function() local h = getHumanoid() if h then h.Health = 0 end end) button("❌ Close GUI",150,function() main.Visible = false end) end playerTab.MouseButton1Click:Connect(playerPage) powerTab.MouseButton1Click:Connect(powerPage) miscTab.MouseButton1Click:Connect(miscPage) local minimized = false minimize.MouseButton1Click:Connect(function() minimized = not minimized if minimized then main.Size = UDim2.new(0,180,0,50) tabs.Visible = false content.Visible = false minimize.Text = "+" else main.Size = UDim2.new(0,300,0,330) tabs.Visible = true content.Visible = true minimize.Text = "-" end end) --================================================== -- KEY CHECK --================================================== check.MouseButton1Click:Connect(function() if keyBox.Text == KEY then status.Text = "✅ Correct key!" task.wait(.5) keyFrame.Visible = false main.Visible = true playerPage() else status.Text = "❌ Wrong key!" keyBox.Text = "" end end)