Tool does not get cloned to players backpack and outputs error?
Hi I have a script that basically just clones a tool and puts it in the players backpack. But I keep getting the error:
"Backpack is not a valid member of player"
I am almost certain I am referencing the right thing and this is very very confusing cause I have done very similar stuff before and it has worked.
Here is my code.
SERVER SCRIPT
1 | game:GetService( "Players" ).PlayerAdded:connect( function (player) |
2 | if player.Name = = "iladoga" or player.Name = = "FrostyMan88" then |
3 | local cloene = game:GetService( "ServerStorage" ) [ "Founders Machete" ] :Clone() |
4 | cloene.Parent = player.Backpack |
Again it just outputs that error.
Thank you for taking your time looking at this.