Where is the StarterGear?

It’s just disappeared and my game needs it

2 Likes

Are you thinking of StarterPack? StarterGear is a container inserted into a Player when they join the game. Like StarterPack, the children are cloned and parented to the Player’s Backpack when they spawn. Unlike StarterPack, the descendants are player-specific.

Keep in mind that StarterGears exist only on the server and may require you to Instance:WaitForChild them, due to them being parented during run-time. They have not been removed.

Please format your thread correctly next time you post in accordance with the guidelines for this category.


In order to access StarterGear, as said above by @Dandystan you’ll need to use WaitForChild as it is inserted when the player joins the game and isn’t always there instantly.

Here’s how you can access it: (Server-side)

local Players = game:GetService("Players")
local ServerStorage = game:GetService("ServerStorage")
local ToolToGivePlayer = ServerStorage:WaitForChild("ToolName"):Clone()
 
Players.PlayerAdded:connect(function(Player)
    local StarterGear = Player:WaitForChild("StarterGear")
    ToolToGivePlayer.Parent = StarterGear
end)
2 Likes

Please use the search bar before asking a question that has already been asked before.

3 Likes

Wouldn’t this just parent a single tool (the cloned instance) to different players repeatedly, as opposing to cloning it for each player?

The children of StarterGear are cloned every time they are parented to the Player’s Backpack.

1 Like