I have a problem. I want to use instance.new command to copy the part on script Parent position. But when i make the part have other position. (i only give the position Code)The code i use:
l.Position = Vector3.new(script.Parent.Position)
The script.Parent.Position is already a Vector3 so change it to this
l.Position = script.Parent.Position
Hope that helped