Like in murder mystery when you spawn in the lobby you spawn as a noob but have all you clothes and hats and packages all gone. How do you destroy body parts?
Have a script that uses the :Destroy()
function on body parts every time a player spawns in via :CharacterAdded()
or :PlayerAdded()
.
try this
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function() wait(2) local bp = plr.Character:GetChildren() for i = 1, #bp do if bp[i]:IsA("Hat") or bp[i]:IsA("Shirt") or bp[i]:IsA("Pants") then bp[i]:remove() end end end) end)