So, if my local player changes team, will I see the output message?
server script:
local function checkPlayerTeam(player)
if player.Team == "New Team" then
--code here
print("You are in new team")
else
--code here
print("you are not in new team")
end
end
game.Players.PlayerAdded:Wait(checkPlayerTeam)
or does i need a localscript and do this function and be called in the server?
Also, to check the team you don’t just put the name in, you need to define it in the game: game:GetService("Teams")["New Team"] instead of just "New Team"
local teams = game:GetService("Teams")
local function checkPlayerTeam(player)
if player.Team == teams["New Team"] then
print("You are in new team")
else
print("you are not in new team")
end
end
game.Players.PlayerAdded:Connect(checkPlayerTeam)
local function GetPlayerTeam(player: Player) : Team -- function to get the specified player's team
return player.Team -- returns the player's team
end
if GetPlayerTeam(player).Name == "Team Name" then -- check the team's name
-- also, replace the "player" as I just put that as a placeholder for the example
-- do stuff
else
-- do stuff
end
Thank you very much, this worked! I just adjusted the code a bit to my needs and you have really helped me, thank you!
local teams = game:GetService("Teams")
local function checkPlayerTeam(player)
local b = false
while b == false do
b = true
if player.Team == teams["nvm"] then
print("You are in new team")
else
print("you are not in new team")
end
b = false
wait(3)
end
end
game.Players.PlayerAdded:Connect(checkPlayerTeam)