Hello!
How can I remove my accesories when i load into the game permanently ? So I would remain empty; just with my body parts.
Thanks in advance.
Please upvote and mark this as the answer. Put the code into a Script in ServerScriptService.
game.Players.PlayerAdded:Connect(function(player) player.CharacterAppearanceLoaded:Wait() for i, v in pairs(player.Character:GetChildren()) do if v:IsA("Accessory") then v:Destroy() end end end)