local plrs = game:GetService("Players") local uis = game:GetService("UserInputService") local plr = plrs.LocalPlayer local gui = plr:WaitForChild("PlayerGui") local sg = Instance.new("ScreenGui") sg.Name = "panda_req" sg.ResetOnSpawn = false sg.Parent = gui local f = Instance.new("Frame") f.Size = UDim2.new(0,500,0,420) f.Position = UDim2.new(0.5,-250,0.5,-210) f.BackgroundColor3 = Color3.fromRGB(28,28,28) f.BorderSizePixel = 0 f.Parent = sg Instance.new("UICorner", f).CornerRadius = UDim.new(0,10) local bar = Instance.new("Frame") bar.Size = UDim2.new(1,0,0,38) bar.BackgroundColor3 = Color3.fromRGB(18,18,18) bar.BorderSizePixel = 0 bar.Active = true bar.Parent = f Instance.new("UICorner", bar).CornerRadius = UDim.new(0,10) local t = Instance.new("TextLabel") t.Size = UDim2.new(1,0,1,0) t.BackgroundTransparency = 1 t.Text = "panda fetcher" t.TextColor3 = Color3.fromRGB(255,255,255) t.Font = Enum.Font.GothamBold t.TextSize = 15 t.Parent = bar local drag = false local dstart, spos bar.InputBegan:Connect(function(i) if i.UserInputType == Enum.UserInputType.MouseButton1 then drag = true dstart = i.Position spos = f.Position end end) bar.InputEnded:Connect(function(i) if i.UserInputType == Enum.UserInputType.MouseButton1 then drag = false end end) uis.InputChanged:Connect(function(i) if drag and i.UserInputType == Enum.UserInputType.MouseMovement then local d = i.Position - dstart f.Position = UDim2.new( spos.X.Scale, spos.X.Offset + d.X, spos.Y.Scale, spos.Y.Offset + d.Y ) end end) local box = Instance.new("TextBox") box.Size = UDim2.new(1,-96,0,34) box.Position = UDim2.new(0,8,0,48) box.BackgroundColor3 = Color3.fromRGB(45,45,45) box.TextColor3 = Color3.fromRGB(255,255,255) box.PlaceholderText = "https://vss.pandadevelopment.net/..." box.PlaceholderColor3 = Color3.fromRGB(180,180,180) box.Text = "" box.Font = Enum.Font.Gotham box.TextSize = 12 box.ClearTextOnFocus = false box.TextXAlignment = Enum.TextXAlignment.Left box.Parent = f Instance.new("UICorner", box).CornerRadius = UDim.new(0,6) Instance.new("UIPadding", box).PaddingLeft = UDim.new(0,8) local send = Instance.new("TextButton") send.Size = UDim2.new(0,78,0,34) send.Position = UDim2.new(1,-86,0,48) send.BackgroundColor3 = Color3.fromRGB(0,150,240) send.Text = "send" send.TextColor3 = Color3.fromRGB(255,255,255) send.Font = Enum.Font.GothamBold send.TextSize = 14 send.Parent = f Instance.new("UICorner", send).CornerRadius = UDim.new(0,6) local sc = Instance.new("ScrollingFrame") sc.Size = UDim2.new(1,-20,0,252) sc.Position = UDim2.new(0,10,0,94) sc.BackgroundColor3 = Color3.fromRGB(18,18,18) sc.BorderSizePixel = 0 sc.ScrollBarThickness = 5 sc.AutomaticCanvasSize = Enum.AutomaticSize.Y sc.CanvasSize = UDim2.new(0,0,0,0) sc.Parent = f Instance.new("UICorner", sc).CornerRadius = UDim.new(0,6) local out = Instance.new("TextLabel") out.Size = UDim2.new(1,-12,0,0) out.Position = UDim2.new(0,6,0,6) out.AutomaticSize = Enum.AutomaticSize.Y out.BackgroundTransparency = 1 out.Text = "waiting..." out.TextColor3 = Color3.fromRGB(255,255,255) out.Font = Enum.Font.Code out.TextSize = 12 out.TextWrapped = true out.TextXAlignment = Enum.TextXAlignment.Left out.TextYAlignment = Enum.TextYAlignment.Top out.Parent = sc local copy = Instance.new("TextButton") copy.Size = UDim2.new(0,90,0,28) copy.Position = UDim2.new(0,10,1,-38) copy.BackgroundColor3 = Color3.fromRGB(50,50,50) copy.Text = "copy" copy.TextColor3 = Color3.fromRGB(255,255,255) copy.Font = Enum.Font.GothamBold copy.TextSize = 13 copy.Parent = f Instance.new("UICorner", copy).CornerRadius = UDim.new(0,6) local stat = Instance.new("TextLabel") stat.Size = UDim2.new(1,-120,0,28) stat.Position = UDim2.new(0,110,1,-38) stat.BackgroundTransparency = 1 stat.TextColor3 = Color3.fromRGB(255,255,255) stat.Font = Enum.Font.Gotham stat.TextSize = 12 stat.TextXAlignment = Enum.TextXAlignment.Left stat.Parent = f