Im trying to make a part's position equal to another but im having trouble.
aura = Instance.new("Part", game.Workspace) while true do wait(5) aura:clone() aura.Position = Vector3.new(script.Parent.Position,script.Parent.Position,script.Parent.Position) end
You can just do:
aura.Position = script.Parent.Position
Although, with this comes some collision issues (if I recall correctly), so you can also set the CFrame of the part in the same manner.
aura.CFrame = script.Parent.CFrame