If I understood correctly, instead of proxy it is required to insert the root script of the collection, in this case it is main, inside of which there is a go with the name main. Can you please explain what I am doing wrong? Believing the guide and example from britzl (publicexamples/examples/pause_game/pause_game/pause.gui_script at master · britzl/publicexamples · GitHub) I have to stop the game, but nothing happens.
But how do you send it? I am a relative newbie to programming I have a slight misunderstanding of proxy and how it works. Can you tell me where to send this message or how to find the sending address ?
You should see the url of the collection proxy in the editor.
A common way to debug the url of a game object, is to add a script to it, and in that script, in the init() function, add a debug print:
function init(self):
print("URL", msg.url()) -- the url to this script
end
Knowing that url, you can figure out how to construct your other url.