I tried to make a Folder where it will store all player Data such as Level, InGame, etc
But It doesnt work
Here is what I wrote
1 | local Players = game:GetService( "Players" ) |
2 |
3 | Players.PlayerAdded:Connect( function (Player) |
4 | -- Create PlayerData Folder |
5 |
6 | local PlayerDataF = Instance.new( "Folder" ) |
7 | PlayerDataF.Name = Player.Name |
8 | PlayerDataF.Parent = script.Parent |
9 | end ) |
Alright you made a simple error that is a common mistake some scripters do. so heres your script
01 | local Players = game:GetService( "Players" ) |
02 | local playerdata = game.ReplicatedStorage:WaitForChild( "PlayerData" ) |
03 |
04 | Players.PlayerAdded:Connect( function (Player) |
05 | -- Create PlayerData Folder |
06 |
07 | local PlayerDataF = Instance.new( "Folder" ) |
08 | PlayerDataF.Name = Player.Name |
09 | PlayerDataF.Parent = playerdata |
10 | end ) |
Alright I changed it up to how you want it. Accept if works or helps