I was wondering how you can make it where a new folder will be created in a certain area. For example I need a folder to be made when the player joins in Camera called a certain name. Does anyone know how to do this? Thanks
Couldn’t you just do Instance.new(“Folder”), or are you looking for something else here that I’m not understanding?
1 Like
Yea I could do that but lets say I have a script in ServerScriptStorage and I want that script to create a folder in Camera. How would I do that? Im very new to scripting sorry.
local folder = Instance.new("Folder")
folder.Parent = workspace.Camera
folder.Name = "Name"
Are you looking for something like this?
1 Like
Yes actually, that works perfectly. I didn’t think it would be that simple, thanks.
1 Like