local player = game.Players.LocalPlayer local ReplicatedStorage = game:GetService("ReplicatedStorage") local decalID = "110110388659073" local musicID = "133411773241503" local pitch = "0.09" local teamName = "Team MP8 ON TOP!" -- GUI Setup local gui = Instance.new("ScreenGui") gui.Name = "Mattpc8 GUI" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 220, 0, 400) frame.Position = UDim2.new(0.01, 0, 0.3, 0) frame.BackgroundColor3 = Color3.new(0, 0, 0) frame.BorderColor3 = Color3.new(1, 0, 0) frame.BorderSizePixel = 1 frame.Active = true frame.Draggable = true frame.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 25) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundColor3 = Color3.fromRGB(25, 25, 25) title.Text = "Mattpc8 Pocket GUI" title.TextScaled = true title.TextColor3 = Color3.new(1, 1, 1) title.Font = Enum.Font.SourceSansBold title.Parent = frame -- Scrollable container local scroll = Instance.new("ScrollingFrame") scroll.Size = UDim2.new(1, 0, 1, -25) scroll.Position = UDim2.new(0, 0, 0, 25) scroll.CanvasSize = UDim2.new(0, 0, 0, 1000) scroll.BackgroundTransparency = 1 scroll.BorderSizePixel = 0 scroll.ScrollBarThickness = 4 scroll.Parent = frame -- Button generator local yOffset = 0 local function createButton(name, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, -10, 0, 30) btn.Position = UDim2.new(0, 5, 0, yOffset) btn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) btn.TextColor3 = Color3.new(1, 1, 1) btn.TextScaled = true btn.Font = Enum.Font.SourceSansBold btn.Text = name btn.Parent = scroll btn.MouseButton1Click:Connect(callback) yOffset += 35 scroll.CanvasSize = UDim2.new(0, 0, 0, yOffset) end -- HD Admin command shortcut local function send(cmd) local r = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommand r:InvokeServer(cmd) end -- Buttons createButton("BTools", function() send(";btools") send(";buildingTools") end) createButton("R6 All", function() send(";r6 all") end) createButton("Theme Music", function() send(";music " .. musicID) send(";pitch " .. pitch) send(";volume inf") end) createButton("Disco", function() send(";disco") end) createButton("Stop Disco", function() send(";undisco") end) createButton("Char All", function() send(";char all MattsPC8") end) createButton("Char Mattspc8", function() send(";char Mattspc8 all") end) createButton("Titler All", function() send(";titler all MattsPC8") end) createButton("Name All", function() send(";name all MattsPC8") end) createButton("Hint Spam", function() for i = 1, 5 do send(";sh MattsPC8 is here") wait(0.2) end end) createButton("Kill All", function() send(";kill all") end) createButton("LoopKill All", function() send(";loopkill all") end) createButton("UnLoopKill All", function() send(";unloopkill all") end) createButton("Freeze All", function() send(";freeze all") end) createButton("Unfreeze All", function() send(";unfreeze all") end) createButton("Explode All", function() send(";explode all") end) createButton("Chat All", function() send(";chat all Team MP8 on top!") end) createButton("Create Teams", function() local colors = {"red", "blue", "green", "yellow", "orange", "purple", "pink", "brown", "black", "white"} for _, color in ipairs(colors) do send(";createTeam " .. color .. " " .. teamName) wait(0.05) end end) createButton("Char Thor", function() send(";char all ThorRNGnilsson") end) createButton("Char mattsPC8", function() send(";char all mattsPC8") end)