Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Humanoid:RemoveAccessories is not working?

Asked by 5 years ago

I'm probably missing something very simple here but this function is not working when I test the game.

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function(char)

        local Humanoid = char:WaitForChild("Humanoid")
        Humanoid.DisplayDistanceType = ("None")

        Humanoid:RemoveAccessories()
    end)
end)
0
Would make sure to wait for the character appearance to load https://developer.roblox.com/en-us/api-reference/function/Humanoid/RemoveAccessories ForeverBrown 356 — 5y
0
Thanks FallenZalio 99 — 5y

Answer this question