local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "AdminPanelGui" screenGui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Parent = screenGui frame.Size = UDim2.new(0, 300, 0, 260) frame.Position = UDim2.new(0.5, -150, 0.5, -130) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true local corner = Instance.new("UICorner") corner.Parent = frame local title = Instance.new("TextLabel") title.Parent = frame title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Text = "Blade Ball Admin Panel" title.TextColor3 = Color3.new(1,1,1) title.TextScaled = true title.Font = Enum.Font.SourceSansBold local speedLabel = Instance.new("TextLabel") speedLabel.Parent = frame speedLabel.Position = UDim2.new(0, 10, 0, 50) speedLabel.Size = UDim2.new(1, -20, 0, 25) speedLabel.BackgroundTransparency = 1 speedLabel.Text = "Set Speed" speedLabel.TextColor3 = Color3.new(1,1,1) speedLabel.TextScaled = true local speedBox = Instance.new("TextBox") speedBox.Parent = frame speedBox.Position = UDim2.new(0, 10, 0, 80) speedBox.Size = UDim2.new(1, -20, 0, 30) speedBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) speedBox.TextColor3 = Color3.new(1,1,1) speedBox.PlaceholderText = "Enter Speed..." speedBox.Text = "" speedBox.TextScaled = true local speedButton = Instance.new("TextButton") speedButton.Parent = frame speedButton.Position = UDim2.new(0, 10, 0, 115) speedButton.Size = UDim2.new(1, -20, 0, 30) speedButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) speedButton.Text = "Apply Speed" speedButton.TextColor3 = Color3.new(1,1,1) speedButton.TextScaled = true local winsLabel = Instance.new("TextLabel") winsLabel.Parent = frame winsLabel.Position = UDim2.new(0, 10, 0, 150) winsLabel.Size = UDim2.new(1, -20, 0, 25) winsLabel.BackgroundTransparency = 1 winsLabel.Text = "Set Wins" winsLabel.TextColor3 = Color3.new(1,1,1) winsLabel.TextScaled = true local winsBox = Instance.new("TextBox") winsBox.Parent = frame winsBox.Position = UDim2.new(0, 10, 0, 180) winsBox.Size = UDim2.new(1, -20, 0, 30) winsBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) winsBox.TextColor3 = Color3.new(1,1,1) winsBox.PlaceholderText = "Enter Wins..." winsBox.Text = "" winsBox.TextScaled = true local winsButton = Instance.new("TextButton") winsButton.Parent = frame winsButton.Position = UDim2.new(0, 10, 0, 215) winsButton.Size = UDim2.new(1, -20, 0, 30) winsButton.BackgroundColor3 = Color3.fromRGB(0, 255, 127) winsButton.Text = "Apply Wins" winsButton.TextColor3 = Color3.new(1,1,1) winsButton.TextScaled = true speedButton.MouseButton1Click:Connect(function() local speedValue = tonumber(speedBox.Text) if speedValue and player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.WalkSpeed = speedValue end end) winsButton.MouseButton1Click:Connect(function() local winsValue = tonumber(winsBox.Text) if winsValue then local leaderstats = player:FindFirstChild("leaderstats") if leaderstats and leaderstats:FindFirstChild("Wins") then leaderstats.Wins.Value = winsValue end end end)