Hello !, I have a problem in a script, what I want is that when the player joins the Team a weapon appears automatically, but I get an error saying the following: 'Backpack is not a valid member of Player'.
This is the 'Script':
print("hola") local Teams = game:GetService("Teams") local team = Instance.new("Team", Teams) team.AutoAssignable = true print(team.Parent, team.TeamColor) local tool = game.ReplicatedStorage.Pistola tool:Clone().Parent = team local function armas(plr) for i,v in pairs(team:GetChildren())do print(v) local Tools = v:Clone() Tools.Parent = plr.Backpack print(plr) end end local function onPlayerJoinedTeam(player) print(player.Name, "joined the team") armas(game.Players.LocalPlayer) end team.PlayerAdded:Connect(onPlayerJoinedTeam)
By the way I'm using a normal Script located in 'Workspace'.
I hope you help me ... Thank you!.