rojo-rbx / run-in-roblox

Run a place, model, or individual script inside Roblox Studio, integrating with command line tools
MIT License
53 stars 22 forks source link

Get another way to talk the the local server #7

Open jeparlefrancais opened 4 years ago

jeparlefrancais commented 4 years ago

One problem I discovered when we rely on the LogService.MessageOut to send data from Studio to the server is that the string passed to MessageOut is sometimes filtered (for example some urls gets truncated).

One thing we could do is change the main template for something like

return function(sender)
    ...
end

And then, sender could be a function that will json encode the content and send it directly through the server.

OrbitalOwen commented 4 years ago

Although it wasn't a consideration, this may be resolved by my suggestion here: https://github.com/rojo-rbx/run-in-roblox/pull/17