Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.22 KB

README.md

File metadata and controls

39 lines (31 loc) · 1.22 KB

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"!