So I am making a shop script and I ran into a problem when a player joins for the first time and has nothing in Backpack this script should run and adds started tools into their backpack. Instead, the script does not run.
Script:
01 | game.Players.PlayerAdded:Connect( function (player) |
02 | if #(player:FindFirstChild( "Backpack" ):GetChildren()) = = 0 or nil then |
03 | local x = game.ServerStorage.Loadout.Primary:Clone() |
04 | x.Parent = player:FindFirstChild( "Backpack" ) |
05 | x.Name = "Primary" |
06 | local y = game.ServerStorage.Loadout.Secondary [ "GLOCK 17" ] :Clone() |
07 | y.Parent = player:FindFirstChild( "Backpack" ) |
08 | y.Name = "Secondary" |
09 | end |
10 | end ) |
This should work
01 | game.Players.PlayerAdded:Connect( function (player) |
02 | player.CharacterAdded:Connect( function () |
03 | if #(player:FindFirstChild( "Backpack" ):GetChildren()) = = 0 or nil then |
04 | local x = game.ServerStorage.Loadout.Primary:Clone() |
05 | x.Parent = player:FindFirstChild( "Backpack" ) |
06 | x.Name = "Primary" |
07 | local y = game.ServerStorage.Loadout.Secondary [ "GLOCK 17" ] :Clone() |
08 | y.Parent = player:FindFirstChild( "Backpack" ) |
09 | y.Name = "Secondary" |
10 | end |
11 | end |
12 | end ) |