h5sJoin Date: 2014-07-03 Post Count: 1504 |
Where do you put the plugin GUI to where a user can interact with it? StarterGui would not let the user interact with the GUI and it would replicate in-game, which we don't want.
Thanks |
|
|
game.CoreGui
#code R+ | local RAP = "438,477"; local robux = "R$20,000" |
|
h5sJoin Date: 2014-07-03 Post Count: 1504 |
That would show in Studio? I thought CoreGUI is a set of gui's that are replicated when a game starts |
|
|
You just said yourself that that was StarterGui. Use CoreGui.
#code R+ | local RAP = "438,477"; local robux = "R$20,000" |
|
h5sJoin Date: 2014-07-03 Post Count: 1504 |
Yeah but I thought CoreGUI was basically a locked version of that, but nevermind, I will see if it works. Thanks! |
|
|
You're welcome.
#code R+ | local RAP = "438,477"; local robux = "R$20,000" |
|
h5sJoin Date: 2014-07-03 Post Count: 1504 |
TextButtons aren't working now (using the default events) under CoreGUI? Is there something you have to do to get around that? |
|
|
TextButtons work fine in CoreGui there is something wrong with your script. |
|
h5sJoin Date: 2014-07-03 Post Count: 1504 |
ExampleButton.MouseButton1Click:connect(function()
print("This does not work.")
end)
Works fine normally under a client |
|
h5sJoin Date: 2014-07-03 Post Count: 1504 |
Everything else in the script works fine, just not the handlers for the buttons |
|
|
Are you putting the script inside the gui?
Scripts don't run in studio, you have to handle the buttons and whatnot in your plugin script. |
|
h5sJoin Date: 2014-07-03 Post Count: 1504 |
Yeah. Took a screengrab about what it looks like:
https://twitter.com/H5SDeveloper/status/695479111700123648
I've tried both localscript and script. |
|
h5sJoin Date: 2014-07-03 Post Count: 1504 |
Oh nevermind I see what you mean now, thanks! |
|