How would you hide back accessories?

Is it possible to hide back accessories in studio? Most of them block the view in my game, which makes it unplayable for others. Help would be appreciated!

Detect if the acessory has the “Back” attachment when the Character gets added.

1 Like

I made this script for my sport games that removes every back accessory. Put it in StarterCharacterScripts:

wait(1)
for i, item in ipairs(script.Parent:GetChildren()) do
	if item:IsA("Accessory") then
		if item.Handle:FindFirstChild("BodyBackAttachment") then
			item:Destroy()
		end
	end
end
script:Destroy()

3 Likes

Thank you very much, I appreciate it!