Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

Commit 01ebb6d

Browse files
authored
Update admin.lua
1 parent 1316dcf commit 01ebb6d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

admin.lua

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,24 @@ end,
155155
end
156156
end
157157
end,
158+
getremoteevents = function(...)
159+
for i, v in pairs(game:GetDescendants()) do
160+
if string.match(v.ClassName, "RemoteEvent") then
161+
rconsoleprint("\nRemoteEvent found!  \nLocation: " .. v:GetFullName() .. "  \nMethod  FireServer\n")
162+
else
163+
164+
end
165+
end
166+
end,
167+
getremotefunctions = function(...)
168+
for i, v in pairs(game:GetDescendants()) do
169+
if string.match(v.ClassName, "RemoteFunction") then
170+
rconsoleprint("\nRemoteFunction found! \nLocation: " .. v:GetFullName() .. "  \nMethod | InvokeServer\n")
171+
else
158172

173+
end
174+
end
175+
end,
159176
shadows = function(...)
160177
Lighting.GlobalShadows = true
161178
end,

0 commit comments

Comments
 (0)