So, I have a game in which I want all players to spawn without their hats, but with the Classic ROBLOX Pumpkin Head. How would you do this?
If you know the ID of a hat, you can insert it with InsertService. Then, whenever a player spawns, you should clone the hat and parent it into the character of the player.
local hatId = 38438432 local hat = game:GetService("InsertService"):LoadAsset(hatId):GetChildren()[1] --in CharacterAdded function hat:Clone().Parent = character