If I have a module like so
local RunService = game:GetService('RunService')
if RunService:IsServer() then
-- Do server stuff
end
if RunService:IsClient() then
-- Do client stuff
end
Could an exploiter take the stuff inside the server function and then run it from their client?