Please help. Ive searched everywhere.
People would need context on what you need. But maybe startingscripts
I need team specific starterchacters.
Store some characters somewhere probably in server storage, and then when a players character is added clone one of them, set it as the Player.Character and change their camera subject
I dont understand what you mean. @wait2008
You would need scripting knowledge in order to complete this task. I said a rough rule of thumb to making a starter character for a specific team with code.
What if you put the âstarter charactersâ inside server storage, using a script
Player.CharacterAdded:Connect(function()
wait() --just a precaution
local model = game.ServerStorage:FindFirstChild(Player.Team.TeamColor.Name):Clone()
model.Parent = workspace
Player.Character = model
end)
You didnât search everywhere, because searching âteam startercharacterâ on the DevForum shows that a thread has already been created about this topic. Use the search bar before posting threads.