Roblox: Avatar Changer Script

-- Add hat if characterAssets["Hat"] then local hat = Instance.new("Accessory") local handle = Instance.new("Part") handle.Name = "Handle" handle.Size = Vector3.new(1,1,1) handle.Transparency = 1 handle.CanCollide = false handle.Parent = hat hat.Handle = handle hat.Name = "Hat" hat.Parent = character hat.AttachmentPoint = character.Head -- Needs actual hat mesh, better to use a preloaded asset -- For simplicity: warp to character's head local attachment = Instance.new("Attachment", character.Head) hat.AttachmentPos = attachment end

Tired of your default avatar? Use this script to instantly change your character's appearance in any supported game. Works with R6 and R15. avatar changer script roblox

print("Avatar changed!") end