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

"Attempt to index upvalue 'LocalPlayerName' (a nil value)" How to fix?

Asked by
2ndwann 131
5 years ago

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?

01function GetPlayerName(player)
02    LocalPlayerName = player
03end
04game.Players.PlayerAdded:Connect(GetPlayerName)
05 
06function MakePlayerFolder()
07    local folder = Instance.new("Folder")
08    folder.Name = LocalPlayerName.Name
09    folder.Parent = game.Workspace.PlayerBuilds
10end
11MakePlayerFolder()

1 answer

Log in to vote
1
Answered by
Elixcore 1337 Moderation Voter
5 years ago
1function MakePlayerFolder(player)
2    local folder = Instance.new("Folder")
3    folder.Name = player.Name
4    folder.Parent = workspace.PlayerBuilds
5end
6-- in the function above we have the 'player' parameter which allows us to get the player's name.
7 
8game.Players.PlayerAdded:Connect(MakePlayerFolder)
9-- we call the function inside of the PlayerAdded event which will automatically send its 'player' argument to the function.
Ad

Answer this question