So i made this script that gives you a 3D shirt but for some reason the character spawns on the ground Meaning that its stuck inside the baseplate I Dont wanna make the spawn higher doe
EDIT: THE SHIRT IS A MESH NOT AN ACTUAL 2D SHIRT
Here is the script:
--Locals local Char = script.Parent local Torso = script.Parent.Torso local mesh = Instance.new("SpecialMesh") local weld = Instance.new("Weld") local shirt = script.Shirt --Head Char.Head.Reflectance = 0.15 --Shirt shirt.CanCollide = false shirt.Position = Vector3.new(script.Parent.Torso) weld.Parent = Char.Torso weld.Part0 = shirt weld.Part1 = Char.Torso
Btw the shirt is a mesh I Dont want anybody to get confused
Try changing line 13 to
shirt.Position = script.Parent.Torso.Position
and add a wait() after line 13