Skip to content

ClassicSenior/Hooks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Roblox Namecall Hooks

This quick module allows you to stop Remote Events and Remote Functions from firing

Note

These hooks are not ment for server siding! These just stop client sided events from sending to the server!

Loadstring

Place this above all the requests u make to the module (Dont put it in a function either.)

Normal:

local ezhooks = loadstring(game:HttpGet("https://raw.githubusercontent.com/ClassicSenior/Hooks/main/hooks.lua"),true)();

Beta:

local ezhooks = loadstring(game:HttpGet("https://raw.githubusercontent.com/ClassicSenior/Hooks/main/beta.lua"),true)();

Warning

The beta build might be very unstable and not use able!

Using

Normal:

ezhooks:namecallHook("EventName", "FireType")

Toggeling:

ezhooks:toggleHook("EventName", "FireType", Value)

Variables:

EventName: Name of the event you want to control.

FireType: Type of firing in the event: "FireServer" for RemoteEvents and "InvokeServer" for RemoteFunctions.

Value: A boolean value (true or false) to enable or disable the event hook. (U can just use the value ur ui lib uses to toggle)

Note

For RemoteEvents use "FireServer", For RemoteFunctions use "InvokeServer"!

About

Roblox namecall hooking

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages