pcall(function() while task.wait() do pcall(function() for _, v in ipairs(game.Players:GetPlayers()) do if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then local args = { [1] = "slash", [2] = v.Character, [3] = v.Character.HumanoidRootPart.Position } local tool = game.Players.LocalPlayer.Character:FindFirstChild("Dual Slap") if tool and tool:FindFirstChild("Event") then tool.Event:FireServer(unpack(args)) end end end end) end end)