AnonyAnonymous
#140034518Friday, July 11, 2014 11:27 PM GMT

An example would be, Player.PlayerGui.InfoGuiverGUI
AnonyAnonymous
#140037058Friday, July 11, 2014 11:54 PM GMT

Delete the script.
AnonyAnonymous
#140039200Saturday, July 12, 2014 12:19 AM GMT

Where is it located?.
AnonyAnonymous
#140039832Saturday, July 12, 2014 12:26 AM GMT

its still not working here is the whole thing... Spot1= Vector3.new(10,10,10) Spot2= Vector3.new(30,30,30) Spot3= Vector3.new(20,20,20) --[[game.Players.PlayerAdded:connect(function() local num = game.Players:GetPlayers() -- num is an array if num[1] == nil then -- If there is no more than 1 Player in the array script.Parent.Sound:Play() wait(20) script.Parent.Sound:Stop() end end)--]] for i,v in pairs(game.Players:GetPlayers()) do if v.TeamColor == BrickColor.new("White") then v.Character:...
AnonyAnonymous
#140040158Saturday, July 12, 2014 12:30 AM GMT

WelcomeMessageParent = Instance.new("ScreenGui") WelcomeMessage = Instance.new("TextLabel",WelcomeMessageParent) game.Players.PlayerAdded:connect(function(Player) WelcomeMessageParent.Parent = game.StarterGui WelcomeMessage.Text = Player.Name.." ".."Has joined the game!" wait(5) -- Increase this to the time you want before it disappears. WelcomeMessageParent.Parent = nil end)
AnonyAnonymous
#140040582Saturday, July 12, 2014 12:34 AM GMT

Actually, to help you understand, I created a variable named "WelcomeMessageParent" and a second variable which was the actual "TextLabel" called "WelcomeMessage", I then used the PlayerAdded event which activates everytime a new "Player" is added into the table "Players", here's an example, game.Players.PlayerAdded:connect(function(Player) print("A new "Player" has joined the game"!.) end)
AnonyAnonymous
#140040914Saturday, July 12, 2014 12:37 AM GMT

TeamOne = game.Teams.TeamNameHere for _,v in pairs(game.Players:GetPlayers()) do if v.TeamColor == TeamOne.TeamColor then v.Name.Character:MoveTo(Spot1) end end
AnonyAnonymous
#140041119Saturday, July 12, 2014 12:39 AM GMT

No thank you, this is voluntary.
AnonyAnonymous
#140041937Saturday, July 12, 2014 12:48 AM GMT

No, using something like, if v.TeamColor == game.Teams.TeamNameHere.Teamcolor then end will already retrieve and match the TeamColors.
AnonyAnonymous
#140042018Saturday, July 12, 2014 12:48 AM GMT

*TeamColor
AnonyAnonymous
#140042208Saturday, July 12, 2014 12:50 AM GMT

There's multiple ways to do this actually, an example would be, ModelTable = game.Workspace.ModelTable:GetChildren() print(ModelTable[math.random(1,#ModelTable).Name])
AnonyAnonymous
#140043526Saturday, July 12, 2014 1:03 AM GMT

Did you get the textureid via properties in Roblox Studio?.
AnonyAnonymous
#140044321Saturday, July 12, 2014 1:11 AM GMT

In a LocalScript you could use something such as, wait(3) LocalCharacter = game.Players.LocalPlayer.Character LocalPlayer = game.Players.LocalPlayer LocalPlayer.PlayerGui.GUINameHere.MouseButton1Click:connect(function() LocalCharacter.Torso.BrickColor = BrickColor.Random() end) --In the above example, the variable "LocalPlayer" refers to the player the LocalScript is retrieving via game.Players.LocalPlayer --BrickColor.Random() simply sets the Player's "Torso" to a random BrickColor --PlayerGui...
AnonyAnonymous
#140046058Saturday, July 12, 2014 1:29 AM GMT

Set the MaxActivationDistance to 0.
AnonyAnonymous
#140046715Saturday, July 12, 2014 1:36 AM GMT

That would work also, good suggestion.
AnonyAnonymous
#140049165Saturday, July 12, 2014 2:04 AM GMT

Change Fire to "Fire".
AnonyAnonymous
#140049614Saturday, July 12, 2014 2:09 AM GMT

p.Character.Humanoid.Died:connect(function() end)
AnonyAnonymous
#140050430Saturday, July 12, 2014 2:17 AM GMT

p.PlayerRemoving:connect(function() end) Try that.
AnonyAnonymous
#140051083Saturday, July 12, 2014 2:24 AM GMT

Well, let's pretend that you were telling someone Hello, well, in this case, I want output to print or tell me Hello, If I typed out print(Hello), output would think that I'm referring to something, such as a variable with a stored value, however, for example, if I typed out something like print("Hello") that would tell the engine that I only want it to read what's inside the double quotation marks without executing any other kind of special commands other then just "printing" out Hello, there's...
AnonyAnonymous
#140051169Saturday, July 12, 2014 2:25 AM GMT

Additionally, Hello can be used as a variable to refer to a string.
AnonyAnonymous
#140054951Saturday, July 12, 2014 3:07 AM GMT

Efficiency is really a matter of personal opinion on this subject, some think that less work and quicker accuracy are "efficient", others believe that more work and more "effective" methods are "efficient", it all depends on what you're trying to create, how you're trying to create it and the result you want to achieve.
AnonyAnonymous
#140059809Saturday, July 12, 2014 4:04 AM GMT

There's a free online explanation guide on the official lua.org website, it offers plenty of information for "regular" Lua.
AnonyAnonymous
#140060232Saturday, July 12, 2014 4:09 AM GMT

There wasn't anything wrong with using the term regular, I was simply using the quotation marks because the person's definition of "regular" could vary.
AnonyAnonymous
#140060739Saturday, July 12, 2014 4:16 AM GMT

Inside the script, you misspelled "Humanoid" as "Humaniod".
AnonyAnonymous
#140064571Saturday, July 12, 2014 5:01 AM GMT

To explain my previous suggestion more clearly, an example would be, game.Workspace.Part.ClickDetector.MouseClick:connect(function() game.Workspace.Part.ClickDetector.MaxActivationDistance = 0 wait(SecondsHere) game.Workspace.Part.ClickDetector.MaxActivationDistance = 32 end)