"Attempt to index upvalue 'LocalPlayerName' (a nil value)" How to fix?
I am trying to make a script that creates a folder who's name is the player's name.
But it keeps giving me this error: "Attempt to index upvalue 'LocalPlayerName' (a nil value)"
Is there a solution for it?
01 | function GetPlayerName(player) |
02 | LocalPlayerName = player |
04 | game.Players.PlayerAdded:Connect(GetPlayerName) |
06 | function MakePlayerFolder() |
07 | local folder = Instance.new( "Folder" ) |
08 | folder.Name = LocalPlayerName.Name |
09 | folder.Parent = game.Workspace.PlayerBuilds |