Can someone help?

There’s been an error within my script, it’s saying that I don’t have a folder in players, neither do I know where to put the folder, so it’s within players, not playerscripts just the localplayer

image

1 Like

To find something in your game, look at the top of explorer and that is your Filter, basically a search bar.

1 Like

I know that, but how do you put a folder inside all players, for an example;
image

1 Like

Okay, I get what you mean.

  1. Make a script (not local) in serverscriptservice

  2. Inside the script write:


game.Players.PlayerAdded:Connect(function(plr)
script.FOLDER:Clone().Parent = plr
end)

Put the folder under the script and change the FOLDER to the folders name.

2 Likes

Can you send your code so we can understand better?

2 Likes
game.Players.PlayerAdded:Connect(function(plr)

local folder = Instance.new("folder")
folder.Name = "Folder"
folder.Parent = plr

end)

And put this code into normal script and put the script into ServerScriptService.

1 Like