AnonyAnonymous
#140158844Sunday, July 13, 2014 2:52 AM GMT

Did you select that specific team?.
AnonyAnonymous
#140170480Sunday, July 13, 2014 5:06 AM GMT

AnonyAnonymous
#140172808Sunday, July 13, 2014 5:36 AM GMT

ToolsToBeRemoved = {1,2,3,4,5} for _,v in pairs(game.Players:GetChildren()) do for _,i in pairs(ToolsToBeRemoved) do if v.Backpack:FindFirstChild(i.Name) then v.Backpack:FindFirstChild(i.Name):Remove() end end end
AnonyAnonymous
#140173090Sunday, July 13, 2014 5:39 AM GMT

Do you want something such as a example template?.
AnonyAnonymous
#140178637Sunday, July 13, 2014 7:10 AM GMT

There's multiple methods of doing this, you could create a preset list of "lines" and use variables that increase each time a player chats until the variable reaches a certain limit and from there you could just have the text be replaced with that player's current chat message.
AnonyAnonymous
#140180450Sunday, July 13, 2014 7:52 AM GMT

An example would be something like, game.Workspace.Part.Touched:connect(function(Toucher) if Toucher.Parent:FindFirstChild("Humanoid") then Player = game.Players:GetPlayerFromCharacter(Toucher.Parent.Name) print(Player.Name) end end) --The .Name may not be necessary in the parameters in :GetPlayerFromCharacter().
AnonyAnonymous
#140185655Sunday, July 13, 2014 10:20 AM GMT

AnonyAnonymous
#140186158Sunday, July 13, 2014 10:39 AM GMT

Try using, newCharacter.Humanoid.Died:connect(died)
AnonyAnonymous
#140186784Sunday, July 13, 2014 11:01 AM GMT

TeamOne = game.Teams.TeamOne TeamTwo = game.Teams.TeamTwo if #TeamOne > #TeamTwo then print("TeamOne has won!") end
AnonyAnonymous
#140189048Sunday, July 13, 2014 12:09 PM GMT

local mouse = Game.Players.LocalPlayer:GetMouse() local function onKeyDown( key ) if key:byte() == 48 then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20 end end mouse.KeyDown:connect(onKeyDown)
AnonyAnonymous
#140192955Sunday, July 13, 2014 1:48 PM GMT

As an example, assuming you already have the system for values set up, ValueNameHere = ValuePathHere Player.PlayerGui.ScreenGui.LeaderBoardPathHere.Text = Value.Value
AnonyAnonymous
#140193554Sunday, July 13, 2014 2:00 PM GMT

game.Players:GetPlayerFromCharacter(PlayerVariableHere).Character Please give us a more detailed explanation of what you're trying to do with the script.
AnonyAnonymous
#140193877Sunday, July 13, 2014 2:07 PM GMT

I'm not necessarily sure whether this is going to benefit you or not however, LevelText = GUIPathHere SavedLevel = Instance.new("StringValue") SaveddLevel.Value = LevelText DefinedPlayer.Humanoid.Died:connect(function() LevelText = SavedLevel.Value end)
AnonyAnonymous
#140195427Sunday, July 13, 2014 2:34 PM GMT

Use "Transparency" instead of "transparency".
AnonyAnonymous
#140195620Sunday, July 13, 2014 2:37 PM GMT

We'll be able to give you more accurate help once you show us the script.
AnonyAnonymous
#140203693Sunday, July 13, 2014 4:38 PM GMT

Try using this, script.Parent.BackgroundColor3 = BrickColor.Random().Color
AnonyAnonymous
#140255813Monday, July 14, 2014 1:57 AM GMT

Try changing it through that Player's PlayerGui.
AnonyAnonymous
#140256206Monday, July 14, 2014 2:01 AM GMT

What exactly are you trying to use the mainframe for?.
AnonyAnonymous
#140258540Monday, July 14, 2014 2:26 AM GMT

Then do you want it to check to see if a Player with that Name is in existence?.
AnonyAnonymous
#140268217Monday, July 14, 2014 4:05 AM GMT

Do you mean such as using the "Run Script" button under "Test"?.
AnonyAnonymous
#140270117Monday, July 14, 2014 4:28 AM GMT

AnonyAnonymous
#140284768Monday, July 14, 2014 8:04 AM GMT

Mouse.Hit.p for Vector3.
AnonyAnonymous
#140286139Monday, July 14, 2014 8:35 AM GMT

Are you using this in "Roblox Studio"?.
AnonyAnonymous
#140286470Monday, July 14, 2014 8:43 AM GMT

Is it inside of a LocalScript?. Also, where is the script located?.
AnonyAnonymous
#140344088Monday, July 14, 2014 10:20 PM GMT

function onClick (Button) Part321.Transparency = 0 wait(2) Part321.Transparency = 1 wait(2) Part321.Transparency = 0 end game.Workspace.Button.ClickDetector.Clicked:connect(onClick) Could you inform us of what "Part321" is?.