I want to put all players/characters that spawned to be put into a folder inside workspace.
I did all like putting the character’s parent to said folder, but i think when I look at it from the explorer, the player’s model isnt moved? is it like a visual bug or something?
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local Folder = workspace.MyHappyFolder -- Change it to your actual folder path
local function characterAdded(Character)
RunService.Stepped:Wait()
Character.Parent = Folder
end
Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(characterAdded)
end)
-- put this in startercharacterscripts as a serverscript
local Character = script.Parent
game:GetService("RunService").Stepped:Wait()
Character.Parent = workspace.Live -- here is the folder name