Coming now
I was on and I didn't seen the team created,
Did you start the script?
Try this:
addEventHandler("onResourcePreStart",resourceRoot,function()
defaultTeam=createTeam("All",255,255,255)
if defaultTeam then
outputDebugString("Team Created!")
else
outputDebugString("Team was not created.")
end
end)
addEventHandler("onPlayerLogin",root,function()
if(setPlayerTeam(source,defaultTeam))then
outputChatBox("You are now on the Default Team.",source)
else
outputChatBox("Sorry, but you are not set to the default team.",source)
end
end)