Is this possible? What is the visibility from normal scripts on bricks into ServerScriptService?
Use require()
to use a ModuleScript in your Script. If you want to run a function from a module when a brick is touched, you could do something like this:
local myModule = require(game.ServerScriptService.MyModule) script.Parent.Touched:Connect(function() myModule.myFunction() end)