AutoAssignable (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
No edit summary
>JulienDethurens
No edit summary
 
(7 intermediate revisions by 3 users not shown)
Line 3: Line 3:
<onlyinclude>{{Property
<onlyinclude>{{Property
|name = AutoAssignable
|name = AutoAssignable
|property = [[Bool]] Determines whether or not a player can automatically be assigned to that team.
|type = bool
|description = When true, Roblox will automatically add players to teams to try to even the teams out.
|description = When {{true}}, Roblox will automatically add players to teams to try to even the teams out.
|object = Team
|object = Team
}}</onlyinclude>
}}</onlyinclude>
Line 11: Line 11:


[[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