I don't know how to make a team and then when they touched a touch to claim door how to put them in a team.
local part = script.Parent -- variable for part local claimed = false -- sets a boolean to check if the door is claimed or not part.Touched:connect(function(hit) -- when the part is touched, hit is defined as the thing that touched the part if game.Players:FindFirstChild(hit.Parent.Name) and claimed == false then -- checks hit is a player claimed = true -- the door is now claimed local player = game.Players:FindFirstChild(hit.Parent.Name) -- defines the player variable player.Neutral = false -- now the player is in a team player.Team = game.Teams.blue -- change blue to whatever team you want it to be (the team has to be already created) end end)
should work -- tested it
Closed as Too Broad by 2eggnog, Thetacah, PyccknnXakep, and Void_Frost
This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.
Why was this question closed?