So I’m making a game and im adding teams now and i added a print statement to see if it was working or not and its not? and not sure what the issue could be?
I’ve Recorded a video below to help you fix this for me and the code is below the video
The code used
local Teams = game:GetService("Teams")
game.Players.PlayerAdded:Connect(function(p)
p.CharacterAdded:Connect(function()
if p.Team == Teams.Seeker then
print("Check1")
end
end)
end)
I check both of the fourms and they still dont help me with anything i’ve tried everything and i dont seem to find a solution
local Players = game:GetService("Players")
local Teams = game:GetService("Teams")
game.Players.PlayerAdded:Connect(function(plr)
if plr.Team == Teams["Seeker"] then
print("Check 1")
end
end)