local screenGui = Instance.new("ScreenGui") screenGui.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 150) frame.Position = UDim2.new(0.05, 0, 0.2, 0) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.Active = true frame.Draggable = true frame.Parent = screenGui local textbox = Instance.new("TextBox") textbox.Size = UDim2.new(1, -20, 0, 40) textbox.Position = UDim2.new(0, 10, 0, 10) textbox.PlaceholderText = "Enter value" textbox.Text = "" textbox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) textbox.TextColor3 = Color3.new(1, 1, 1) textbox.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(1, -20, 0, 40) button.Position = UDim2.new(0, 10, 0, 60) button.Text = "Apply to All Items" button.BackgroundColor3 = Color3.fromRGB(70, 70, 70) button.TextColor3 = Color3.new(1, 1, 1) button.Parent = frame local credit = Instance.new("TextLabel") credit.Size = UDim2.new(1, -20, 0, 20) credit.Position = UDim2.new(0, 10, 0.03, 110) credit.BackgroundTransparency = 1 credit.TextColor3 = Color3.fromRGB(130, 130, 130) credit.Font = Enum.Font.SourceSans credit.TextSize = 12 credit.Text = "credits molester on scriptblox" credit.TextXAlignment = Enum.TextXAlignment.Center credit.Parent = frame local folder = workspace:WaitForChild("toolwaste") local event = game:GetService("ReplicatedStorage").Events.Attribute button.MouseButton1Click:Connect(function() local num = tonumber(textbox.Text) if not num then textbox.Text = "Invalid Number" return end for _, item in ipairs(folder:GetChildren()) do local args = { item, "currentammo", num, "ItemModules" } event:FireServer(unpack(args)) end textbox.Text = "Done!" end)