local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local guiParent = player:WaitForChild("PlayerGui") local gui = Instance.new("ScreenGui") gui.Name = "RemoteToolboxUI" gui.ResetOnSpawn = false gui.Parent = guiParent local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 200, 0, 120) mainFrame.Position = UDim2.new(0.05, 0, 0.3, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = gui Instance.new("UICorner", mainFrame).CornerRadius = UDim.new(0, 12) local closeButton = Instance.new("TextButton") closeButton.Size = UDim2.new(0, 30, 0, 30) closeButton.Position = UDim2.new(1, -35, 0, 5) closeButton.BackgroundColor3 = Color3.fromRGB(180, 30, 30) closeButton.Text = "❌" closeButton.TextColor3 = Color3.new(1, 1, 1) closeButton.Font = Enum.Font.SourceSansBold closeButton.TextSize = 20 closeButton.Parent = mainFrame closeButton.MouseButton1Click:Connect(function() gui:Destroy() end) local label = Instance.new("TextLabel") label.Position = UDim2.new(0, 10, 0, 5) label.Size = UDim2.new(0, 150, 0, 25) label.BackgroundTransparency = 1 label.Text = "x2zu" label.TextColor3 = Color3.fromRGB(255, 255, 255) label.Font = Enum.Font.SourceSansBold label.TextSize = 16 label.TextXAlignment = Enum.TextXAlignment.Left label.Parent = mainFrame local buttonContainer = Instance.new("Frame") buttonContainer.Size = UDim2.new(1, -20, 0, 50) buttonContainer.Position = UDim2.new(0, 10, 0, 45) buttonContainer.BackgroundTransparency = 1 buttonContainer.Parent = mainFrame local listLayout = Instance.new("UIListLayout") listLayout.Padding = UDim.new(0, 10) listLayout.FillDirection = Enum.FillDirection.Vertical listLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center listLayout.SortOrder = Enum.SortOrder.LayoutOrder listLayout.Parent = buttonContainer RunService.RenderStepped:Connect(function() for _, child in ipairs(buttonContainer:GetChildren()) do if child:IsA("TextButton") then local t = tick() * 0.25 child.TextColor3 = Color3.fromHSV((t % 1), 1, 1) end end end) local function generateRandom() local values = { "ExampleText", math.random(1, 9999), player, true, { key = "random" }, Vector3.new(math.random(), math.random(), math.random()), CFrame.new(math.random(), math.random(), math.random()) } return values[math.random(1, #values)] end local function triggerAllRemotes(folder) for _, item in ipairs(folder:GetDescendants()) do if item:IsA("RemoteEvent") then pcall(function() item:FireServer(generateRandom()) end) elseif item:IsA("RemoteFunction") then pcall(function() item:InvokeServer(generateRandom()) end) end end end local actionButton = Instance.new("TextButton") actionButton.Name = "TriggerGamepassRemotes" actionButton.Size = UDim2.new(1, 0, 0, 40) actionButton.BackgroundColor3 = Color3.fromRGB(60, 60, 90) actionButton.Text = "gamepass and more" actionButton.Font = Enum.Font.SourceSansBold actionButton.TextSize = 22 actionButton.BorderSizePixel = 0 Instance.new("UICorner", actionButton).CornerRadius = UDim.new(0, 8) actionButton.Parent = buttonContainer actionButton.MouseButton1Click:Connect(function() pcall(function() triggerAllRemotes(ReplicatedStorage:WaitForChild("Communication"):WaitForChild("Events")) triggerAllRemotes(ReplicatedStorage:WaitForChild("Communication"):WaitForChild("Functions")) triggerAllRemotes(ReplicatedStorage:WaitForChild("conch_networking")) end) end)