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:
1 | l.Position = Vector 3. new(script.Parent.Position) |
The script.Parent.Position is already a Vector3 so change it to this
1 | l.Position = script.Parent.Position |
Hope that helped