AutoAssignable (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>LPGhatguy
No edit summary
>JulienDethurens
No edit summary
 
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{CatUp|Properties}}
{{CatUp|Properties}}


{|
<onlyinclude>{{Property
|<onlyinclude>{{Property|
|name = AutoAssignable
name                 = AutoAssignable
|type = bool
|property            = [[Bool]] Determines whether or not the team can be automatically joined.
|description = When {{true}}, Roblox will automatically add players to teams to try to even the teams out.
|description         = When true, players that join have a chance of being on that team. This all depends on how many players are in the other teams, however. The ROBLOX team system balances teams with players that join the game. If false, ROBLOX will not automatically assign players to the team. However, scripts can still cause players to join that team.
|object = Team
|object               = [[RBX.lua.Team (Object)|Team]]
}}</onlyinclude>
|}}</onlyinclude>
 
|}
{{clear floats}}


[[Category:Properties]]
[[Category:Properties]]
{{Example|<pre>
local team = Instance.new( "Team", game:GetService( "Teams" ) )
team.Name = "Blue Falcons"
team.AutoAssignable = true</pre>}}

Latest revision as of 02:34, 17 February 2012

AutoAssignable
Type bool
Description When true, Roblox will automatically add players to teams to try to even the teams out.
Member of Team
Example
local team = Instance.new( "Team", game:GetService( "Teams" ) )
team.Name = "Blue Falcons"
team.AutoAssignable = true