AnonyAnonymous
#140402780Tuesday, July 15, 2014 11:41 AM GMT

Did you add the end's?.
AnonyAnonymous
#140402903Tuesday, July 15, 2014 11:45 AM GMT

How did you structure them?.
AnonyAnonymous
#140403005Tuesday, July 15, 2014 11:48 AM GMT

game.StarterGui.ScreenGui.TextButton.MouseButton1Click:connect(function() if game.StarterGui.ScreenGui.Frame2.Visible then game.StarterGui.ScreenGui.Frame2.Visible = false game.StarterGui.ScreenGui.Frame.Visible = true end end) When you're using events in that particular way, you need to add an end) to close the remaining open brackets.
AnonyAnonymous
#140403030Tuesday, July 15, 2014 11:48 AM GMT

*Parenthesis rather.
AnonyAnonymous
#140474861Wednesday, July 16, 2014 2:09 AM GMT

What kind of Object is "val"?.
AnonyAnonymous
#140475551Wednesday, July 16, 2014 2:16 AM GMT

Yes, assuming you used something such as, game.Workspace["Class-C Destroyer"].Name = name[1]
AnonyAnonymous
#140475772Wednesday, July 16, 2014 2:19 AM GMT

Could you show us more of the script?.
AnonyAnonymous
#140476051Wednesday, July 16, 2014 2:23 AM GMT

Which "name" are you trying to give the object?.
AnonyAnonymous
#140476453Wednesday, July 16, 2014 2:27 AM GMT

Alright then, game.Workspace["Class-C Destroyer"].Name = name[2]
AnonyAnonymous
#140487984Wednesday, July 16, 2014 4:19 AM GMT

As an example, if I used something such as, for Num = 5,100,5 do print(Num) end "Num" would be the current number the loop has reached as a result, if it was at the beginning, "Num" would be equal to 5 because the loop's starting point is 5 and the point it's trying to reach is 100. In the example, "5,100,5", the last "5" would just add five continuously until it reached 100. To help you understand this better, "5,100" would just add 1 to the 5 until it reached 100. "print(Num)" would just pri...
AnonyAnonymous
#140494997Wednesday, July 16, 2014 6:23 AM GMT

RandomNumber = math.random(1,10) --RandomNumber variable refers to the randomized number chosen. print(RandonNumber) --Prints the "RandomNumber" chosen.
AnonyAnonymous
#140495216Wednesday, July 16, 2014 6:27 AM GMT

Absolutely depending on how you implement it.
AnonyAnonymous
#140495462Wednesday, July 16, 2014 6:30 AM GMT

Yes, that would work.
AnonyAnonymous
#140498866Wednesday, July 16, 2014 7:25 AM GMT

local i = Instance.new("Hint",workspace) repeat numPlayers = game.Players.NumPlayers if numPlayers < 2 then i.Text = "Can't begin until 2 people are in the server." elseif numPlayers >= 2 then i.Text = "We can begin.." until numPlayers >= 2
AnonyAnonymous
#140499222Wednesday, July 16, 2014 7:31 AM GMT

My apologies, local i = Instance.new("Hint",workspace) repeat numPlayers = game.Players.NumPlayers if numPlayers < 2 then i.Text = "Can't begin until 2 people are in the server." elseif numPlayers >= 2 then i.Text = "We can begin.." until numPlayers >= 2 end An end was necessary to close the if statement.
AnonyAnonymous
#140500952Wednesday, July 16, 2014 8:04 AM GMT

game.Playes.PlayerAdded;connect(function(Player) if Player.Name == "NameHere" then Player:Kick() end end)
AnonyAnonymous
#140508509Wednesday, July 16, 2014 11:43 AM GMT

You could use something such as, if v.TeamColor == game.Teams.Team.TeamColor then --More Code Here end
AnonyAnonymous
#140508620Wednesday, July 16, 2014 11:47 AM GMT

Loop through the players, for _,v in pairs(game.Players:GetChildren()) do v.Character["LimbNameHere"].BrickColor = BrickColor.new("Pastel brown") end
AnonyAnonymous
#140509322Wednesday, July 16, 2014 12:04 PM GMT

Try using his script inside of a while true do loop.
AnonyAnonymous
#140509377Wednesday, July 16, 2014 12:06 PM GMT

Actually, any output errors?.
AnonyAnonymous
#140509436Wednesday, July 16, 2014 12:07 PM GMT

Try adding "Debounce = false" before the last end instead of under it.
AnonyAnonymous
#140510805Wednesday, July 16, 2014 12:44 PM GMT

Map = MapPathHere GUI.Text = "Loading..Map.Name"
AnonyAnonymous
#140511322Wednesday, July 16, 2014 12:57 PM GMT

Slight error with my original post, Map = MapPathHere GUI.Text = "Loading"..Map.Name As for your other questions, I personally don't use GUI's very much however I could recommend experimenting or waiting for someone else to give you an answer.
AnonyAnonymous
#140512097Wednesday, July 16, 2014 1:13 PM GMT

Could you post more of the script?.
AnonyAnonymous
#140526735Wednesday, July 16, 2014 4:41 PM GMT

Please explain what "Direction" is. The problem in this case is that you're not connecting an actual event to the function in this case to be executed.