Whenever I set the character of the player to a new model, the folders in PlayerGui get deleted.
Here’s the only code I have.
game:GetService("Players").PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function()
task.wait(7)
player.Character=workspace.Rig
end)
end)
Here’s a video of what happens.
https://gyazo.com/46286138d762b63fbd05a22e9655b9a1
As a side note, when the folder exists in StarterGui when the game starts, it still gets destroyed, but it is replaced by the version in StarterGui right after. I’m not sure if this behavior is intended or not.