CatBypasser
  • Cat Bypasser
  • Getting Started
    • Quickstart
  • Basics
    • Bypassing
Powered by GitBook
On this page
  • Writing a script
  • Bypassing
  1. Basics

Bypassing

PreviousQuickstart

Last updated 10 days ago

CatBypasser has a powerful bypassing method that allows you to seamlessly bypass, and enhance your script.

Writing a script

CatBypasser offers quick functions which will help you with your script.

Bypassing

1

Bypass Function

local Bypassed_Phrase = CatBypasser:Bypass("Fuck you") 
print(Bypassed_Phrase)
2

Filter Function

CatBypasser has it's own filter function, because Roblox deprecated it's own filter check function.

local filtered, status = pcall(function()
return CatBypasser:FilterCheck(Bypassed_Phrase)
end)

if filtered then 
   print("Message filtered.") 
 else
   -- Anything here... 
end
3

Check Status Function

If CatBypasser's API is down it will return true.

if CatBypasser:Status() == "Down" then print("API is down") end