|
|
How did you structure them?. |
|
|
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. |
|
|
|
What kind of Object is "val"?. |
|
|
Yes, assuming you used something such as,
game.Workspace["Class-C Destroyer"].Name = name[1]
|
|
|
Could you show us more of the script?. |
|
|
Which "name" are you trying to give the object?. |
|
|
Alright then,
game.Workspace["Class-C Destroyer"].Name = name[2] |
|
|
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... |
|
|
RandomNumber = math.random(1,10) --RandomNumber variable refers to the randomized number chosen.
print(RandonNumber) --Prints the "RandomNumber" chosen. |
|
|
Absolutely depending on how you implement it. |
|
|
|
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
|
|
|
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. |
|
|
game.Playes.PlayerAdded;connect(function(Player)
if Player.Name == "NameHere" then
Player:Kick()
end
end) |
|
|
You could use something such as,
if v.TeamColor == game.Teams.Team.TeamColor then
--More Code Here
end |
|
|
Loop through the players,
for _,v in pairs(game.Players:GetChildren()) do
v.Character["LimbNameHere"].BrickColor = BrickColor.new("Pastel brown")
end |
|
|
Try using his script inside of a while true do loop. |
|
|
Actually, any output errors?. |
|
|
Try adding "Debounce = false" before the last end instead of under it. |
|
|
Map = MapPathHere
GUI.Text = "Loading..Map.Name" |
|
|
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. |
|
|
Could you post more of the script?. |
|
|
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. |
|