That worked fine when the hard drive was NTFS but after converting it to BTRFS the error log says
"Unrecognized mount option "uid=1000"
the same with gid, dmask, fmask and auto. After removing these it mounts normaly, but as root. I want it to mount it with user read/write permissions
ntfs/exfat/fat32 partitions don't support POSIX permissions so you use the mount options to "hardcode" the permissions.
btrfs does support POSIX permissions so you don't need to pass it an explicit UID/GID. You can set the permissions on the files/directories themselves.
Replace username with your actual username and /path/to/directory with wherever the drive is mounted. That will change ownership of everything on that drive to your user. You should only have to do that once as any new files you create will be owned by your user normally.
Also, make sure you only do that to a directory containing your user data and not some other part of the filesystem. If you run that command on the whole filesystem it will break your system.