of     1   

DracoTheSecond
#140016112Friday, July 11, 2014 8:19 PM GMT

Hey guys, So I have a game which features some GUI buttons. The script's inside them work fine on "Play Solo" in Studio, but there is no output on the actual game. I don't think this is up to scripting but how could I check?
Edd_E
#140016250Friday, July 11, 2014 8:20 PM GMT

Change scripts inside the gui into local scripts, otherwise they will not work online.
DracoTheSecond
#140016478Friday, July 11, 2014 8:23 PM GMT

All of them are Local already
AnonyAnonymous
#140016572Friday, July 11, 2014 8:24 PM GMT

Please show us one of the scripts.
DracoTheSecond
#140016734Friday, July 11, 2014 8:26 PM GMT

function onClick() if script.Parent.Parent.Parent.Parent.SoldierShop.ShopPage1.Visible == false and script.Parent.Parent.Parent.Parent.CityUpgrade.Base.Visible == false and script.Parent.Parent.Parent.Parent.PlayerInfo.Frame.Visible== false then script.Parent.Parent.Parent.Parent.SoldierCustomization.Base.Visible = true script.Parent.Parent.Parent.Parent.SoldierCustomization.Base:TweenPosition(UDim2.new(.25, 0, .25, 0), "In", "Quad", 3) end end script.Parent.MouseButton1Click:connect(onClick) All of the necissary values for the script to proceed are false, as they should be.
DracoTheSecond
#140077565Saturday, July 12, 2014 8:55 AM GMT

Anyone?
UncleTaz
#140079049Saturday, July 12, 2014 9:28 AM GMT

Whats does output say?
DracoTheSecond
#140092234Saturday, July 12, 2014 2:54 PM GMT

The output when it runs in Studio is that the tab that should move and become visible, does exactly that. The output in a normal server, is nothing.
DracoTheSecond
#140092646Saturday, July 12, 2014 3:00 PM GMT

Okay after a little exploring, my ROBLOX player does not show the new textures either. With that little discovery, can someone please go to the game and see if each of the menu's on the left hand side open? http://www.roblox.com/Operation-Lockdown-place?id=149071715 If it's working fine in Studio (which suports textures), I think it could be my Player.
UncleTaz
#140110395Saturday, July 12, 2014 6:40 PM GMT

To answer your question no. And also, what? lol. When you go in online mode. Press Alt+F9. It developer output status. See what it says there. Most of the time scripts should be put into local scripts dealing with GUIs

    of     1