AnonyAnonymous
#141156584Tuesday, July 22, 2014 11:47 AM GMT

The first parameter of the function connected to the event, assuming you added one, would be the player that clicked it.
AnonyAnonymous
#141156692Tuesday, July 22, 2014 11:49 AM GMT

#game.Teams.TeamNameHere would be an example.
AnonyAnonymous
#141156779Tuesday, July 22, 2014 11:52 AM GMT

Made a slight error on the other post, #game.Teams.TeamNameHere:GetChildren() Would retrieve the amount of children within the table.
AnonyAnonymous
#141161646Tuesday, July 22, 2014 1:47 PM GMT

If you're trying to get it from game.Lighting, you need to specify the path otherwise the engine will consider "Lighting" as a undefined variable equal to nil.
AnonyAnonymous
#141161821Tuesday, July 22, 2014 1:50 PM GMT

Explain the hierarchy of the script.
AnonyAnonymous
#141242339Wednesday, July 23, 2014 4:35 AM GMT

It seems to be working correctly after testing it out, is the hierarchical order of the tool correctly setup?.
AnonyAnonymous
#141243624Wednesday, July 23, 2014 4:48 AM GMT

You could use a loop to use something such as, for _,v in pairs(game.Players:GetPlayers()) do v.TeamColor = game.Teams.TeamNameHere.TeamColor end
AnonyAnonymous
#141257596Wednesday, July 23, 2014 7:57 AM GMT

The character model of the Player would go into Workspace, so you would use, Workspace.LordOfWaffle.Head :Remove() is a method, so to use it in this situation you would use, Workspace.LordOfWaffle.Head:Remove()
AnonyAnonymous
#141257748Wednesday, July 23, 2014 8:00 AM GMT

It would only run once unless it the script was modified and it was placed within a loop.
AnonyAnonymous
#141259807Wednesday, July 23, 2014 8:48 AM GMT

Workspace.PartNameGoesHere:Destroy()
AnonyAnonymous
#141260264Wednesday, July 23, 2014 9:01 AM GMT

Transparency is a property, use something such as, game.Workspace.Part.Transparency = 0
AnonyAnonymous
#141260322Wednesday, July 23, 2014 9:03 AM GMT

Absolutely not.
AnonyAnonymous
#141260340Wednesday, July 23, 2014 9:03 AM GMT

Referring to my other post.
AnonyAnonymous
#141262276Wednesday, July 23, 2014 10:10 AM GMT

pPos = Vector3.new(pPos) + Vector3.new(0,1,0)
AnonyAnonymous
#141262520Wednesday, July 23, 2014 10:17 AM GMT

Try using, pPos = pPos + Vector3.new(0,1,0) Inform us of the result.
AnonyAnonymous
#141262696Wednesday, July 23, 2014 10:24 AM GMT

Hmm, try using this, local part = script.Parent pPos = part while wait(.5) do pPos.Position = pPos.Position + Vector3.new(0,1,0) end
AnonyAnonymous
#141264741Wednesday, July 23, 2014 11:27 AM GMT

"game.workspace" would work also.
AnonyAnonymous
#141267161Wednesday, July 23, 2014 12:29 PM GMT

Alive = 0 while true do for i,v in pairs(game.Players:GetChildren()) do if v.TeamColor == game.Teams.Alive.TeamColor then Alive = Alive + i if Alive == 0 then local h = Instance.new("Message") h.Parent = Workspace h.Text = "Everyone died!" wait(10) h:Remove() end end end Try using this.
AnonyAnonymous
#141267325Wednesday, July 23, 2014 12:34 PM GMT

Try using the "Let's Make A Deal" subforum.
AnonyAnonymous
#141268056Wednesday, July 23, 2014 12:51 PM GMT

AnonyAnonymous
#141269530Wednesday, July 23, 2014 1:20 PM GMT

Enough with starting arguments on every thread already.
AnonyAnonymous
#141269869Wednesday, July 23, 2014 1:25 PM GMT

You could try something such as, AudioTab = {SoundOne,SoundTwo} while wait() do if AudioTab[1].IsPlaying == false then AudioTab[2]:Play() end end You'll have to modify this however.
AnonyAnonymous
#141270993Wednesday, July 23, 2014 1:43 PM GMT

math.random() requires parenthesis and parameters, an example would be, math.random(1,10) As for rotation, you would use Vector3. An example would be, game.Workspace.Part.Rotation = Vector3.new(math.random(),math.random(),math.random())
AnonyAnonymous
#141271238Wednesday, July 23, 2014 1:46 PM GMT

Could you show me how you modified the script?.
AnonyAnonymous
#141271387Wednesday, July 23, 2014 1:49 PM GMT

script.Parent.Rotation =Vector3.new(math.random(MinimumNumberHere,MaximumNumberHere),math.random(MinimumNumberHere,MaximumNumberHere),math.random(MinimumNumberHere,MaximumNumberHere))