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

My PlayerData Folder Creating Script not working?

Asked by 4 years ago

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

1local Players = game:GetService("Players")
2 
3Players.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
9end)

1 answer

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

Alright you made a simple error that is a common mistake some scripters do. so heres your script

01local Players = game:GetService("Players")
02local playerdata = game.ReplicatedStorage:WaitForChild("PlayerData")
03 
04Players.PlayerAdded:Connect(function(Player)
05    -- Create PlayerData Folder
06 
07    local PlayerDataF = Instance.new("Folder")
08    PlayerDataF.Name = Player.Name
09    PlayerDataF.Parent = playerdata
10end)

Alright I changed it up to how you want it. Accept if works or helps

0
Make sure to do capital P on Player cause thats how you stated it on the function DuckyRobIox 280 — 4y
Ad

Answer this question