how do i add like a sword to my starter pack to where only certain players can get it
A PlayerAdded and CharacterAdded events are needed to do this. Script
01 | game.Players.PlayerAdded:connect( function (plr) -- playeradded event identifying the player that joined as "plr" |
02 | plr.CharacterAdded:connect( function (char) -- characteradded event, identifying the plr's character that respawned as "char" |
03 | if plr.Name = = "NameHere" then -- Change "NameHere" to the player that has the permission to have the tool. |
04 | local tool = game.ServerStorage.Tool:Clone() -- cloning the tool from serverstorage, change this to your parenting |
05 | local backpack = plr:findFirstChild( "Backpack" ) -- getting the player's backpack |
06 | if backpack then -- checking if the backpack exists to prevent possible errors(not necessary) |
07 | tool.Parent = backpack -- parenting it to their backpack. |
08 | end |
09 | end |
10 | end ) |
11 | end ) |
Full Script:
01 | game.Players.PlayerAdded:connect( function (plr) |
02 | plr.CharacterAdded:connect( function (char) |
03 | if plr.Name = = "NameHere" then |
04 | local tool = game.ServerStorage.Tool:Clone() |
05 | local backpack = plr:findFirstChild( "Backpack" ) |
06 | if backpack then |
07 | tool.Parent = backpack |
08 | end |
09 | end |
10 | end ) |
11 | end ) |
Hope it helped!
01 | game.Players.PlayerAdded:connect( function (plr) -- playeradded event identifying the player that joined as "plr" |
02 | plr.CharacterAdded:connect( function (char) -- characteradded event, identifying the plr's character that respawned as "char" |
03 | if plr.Name = = "ags5321" then -- Change "NameHere" to the player that has the permission to have the tool. |
04 | local tool = game.ServerStorage:Clone( "Card1" ) -- cloning the tool from serverstorage, change this to your parenting |
05 | local backpack = plr:findFirstChild( "Backpack" ) -- getting the player's backpack |
06 | if backpack then -- checking if the backpack exists to prevent possible errors(not necessary) |
07 | tool.Parent = backpack -- parenting it to their backpack. |
08 | end |
09 | end |
10 | end ) |
11 | end ) |
is that it