the title says it all and it happens every time, online and offline and I’ve confirmed this with multiple sources
repo
local Players = game.Players
local HumanoidDescription = Instance.new("HumanoidDescription")
HumanoidDescription.Parent = script
Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
local Humanoid = Character:WaitForChild("Humanoid")
Humanoid:ApplyDescription(HumanoidDescription)
end)
end)