Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I make a script to copy the player's inventory and put it in the starter pack?

Asked by 10 years ago

I need someone to help me here so I can copy the Build Mode's tools into the starter pack. Any ideas?

2 answers

Log in to vote
0
Answered by 10 years ago

I believe there is a personal StarterGear for each player. Check the contents of the player under the Players menu, and tell me what you find.

Ad
Log in to vote
0
Answered by 10 years ago

Sounds kind of like Person299's startertools/plr command, I think heres what you do;

--Sorry if this wasn't what you are talking about
c=game:service("Players"):FindFirstChild("PLAYER")
if c~=nil then
for i=1,#c do
if c[i].Name=="Backpack"then
ci=c[i]:Clone()
ci.Parent=game:service("StarterPack")
end end end

Answer this question