of     1   

MettaurSp
#121520020Sunday, December 29, 2013 6:38 AM GMT

Making an admin script right now and one of the commands creates a GUI requiring a scroll bar. Only problem is that server scripts are horrible when it comes to that as they don't respond as quickly as LocalScripts. Now I have to make some ugly bit of code that taps into the LocalScript used for a local script command when it is available. Anyone have any solutions to get around this with a Script?
Charl3s7
#121520434Sunday, December 29, 2013 6:44 AM GMT

Almost anything you do with your UI should be done in localscripts.
MettaurSp
#121520756Sunday, December 29, 2013 6:49 AM GMT

I see why, but it would just be more convenient if there was an effective solution to keep the code in the main script so I don't have to clone a whole new script and change the Value of a StringValue to perform what I want it to do. That would mess up the command if the LocalScript isn't present, and it is an essential command to the script.
lateregistration
#121520853Sunday, December 29, 2013 6:51 AM GMT

Just put a localscript into the scrollbar that controls it :P unless its a surfacegui? im not sure what to do then.
MettaurSp
#121521247Sunday, December 29, 2013 6:57 AM GMT

Welp, got the script to add a separate LocalScript to the player's PlayerGui and noticed that a whole lot of issues I have been having with it were cause of the behavior of a server sided script using client related properties. Would have been useful to be able to do it from the main script, but this works too. Thread issue closed.
ArbiterOfDeath
#121521631Sunday, December 29, 2013 7:05 AM GMT

You can you the RbxGui library. Here is a link to it's wiki page: http://wiki.roblox.com/index.php/Rbxgui
Cutiegirl572
#121522202Sunday, December 29, 2013 7:14 AM GMT

@arb, Your help was about as useless as ROBLOX's support team.
lateregistration
#121523376Sunday, December 29, 2013 7:34 AM GMT

@cutie what is your point
Crakkitty
#121523435Sunday, December 29, 2013 7:35 AM GMT

@Cutie, It actually isn't useless, as it's a redirection to something that directly relates to the question OP has.
Oysi
#121525439Sunday, December 29, 2013 8:14 AM GMT

What? Use localscript for all ui interactions, and then send request to server.
Sharksie
#121544015Sunday, December 29, 2013 4:07 PM GMT

"clone a whole new script and change the Value of a StringValue to perform what I want it to do." StringValues are three exploitable. Memory editing those is a walk in the park. You /need/ to use Bindables for server/client communication.
AndroidKitKat
#121544152Sunday, December 29, 2013 4:09 PM GMT

Or how about buttons = server-sided, scroll = local?
200AB
#121544814Sunday, December 29, 2013 4:19 PM GMT

@Arb Ew, no. RBXGUI is the worst thing ever.
Cutiegirl572
#121552794Sunday, December 29, 2013 6:08 PM GMT

@Crak, Someone like 200AB would clearly know about the RBXGUI, and using it would not fix his issue. Why would you tell him something that he clearly knows about and evidently does not want to use? What kind of help is that?
MettaurSp
#121553295Sunday, December 29, 2013 6:13 PM GMT

Custom made scroll bars > Roblox's. Using theirs would be sort of like using a free model, you need to use it very carefully or it would look frankensteined together.

    of     1