From venuslock, 2 Months ago, written in Plain Text.
Embed
  1. local s = require(game:GetService("Players").LocalPlayer.PlayerScripts.ClientManager.Debounces)
  2.  
  3. while wait(0.2) do
  4.    for i,v in pairs(s) do
  5.        if type(i) == "string" and (i:find("skill") or table.find({"parry","dash"},i)) then
  6.            s[i] = nil
  7.        end
  8.    end
  9. end