I’m trying to clone a custom accessory and add it to the player’s Character, but for some reason it wouldn’t work. Note: There is nothing wrong with the accessory placements btw.
Script in ServerScriptService:
local LevelHammers = game.ReplicatedStorage.LevelHammers
local Starter = LevelHammers.Starter
local Experienced = LevelHammers.Experienced
local Advanced = LevelHammers.Advanced
game.Players.PlayerAdded:Connect(function(plr)
local StarterClone = Starter:Clone()
StarterClone.Parent = plr.Character
end)