Categories > Exploiting > Scripts >
How do i hook a remotefunction [HELP]
Posted
local rf = game:GetService("ReplicatedStorage").RemoteEvent
local ofunc
ofunc = hookfunction(rf.InvokeServer,function (...)
print(...)
return ofunc(...)
end)
This doesn't work
I use krnl
Replied
try this
local rf = game:GetService("ReplicatedStorage").RemoteEvent
local ofunc
ofunc = hookfunction(rf.InvokeServer,function (...)
local args = {...}
print(args)
return ofunc(args)
end)
Cancel
Post
Did I mention I use arch btw?
Replied
maybe try smh like that
local rf = game:GetService("ReplicatedStorage").RemoteFunction
local ofunc
ofunc = hookfunction(rf.InvokeServer, function (...)
print(...)
return ofunc(...)
end)
Cancel
Post
https://cdn.discordapp.com/attachments/968557692639666267/1139574673630318632/lodlk.png
https://cdn.discordapp.com/attachments/921008361342902274/1144217307170742363/Bez_tytuu692.png
Replied
local rf = game:GetService("ReplicatedStorage").RemoteEvent -- This is a RemoteFunction
local ofunc
ofunc = hookfunction(rf.InvokeServer,function (...)
local args = {...}
print(..., args) -- Prints nothing
return ofunc(...)
end)
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post