Only for a specific user

is there something like
this is for only someone to activate the command!

if (onlyfor.user.id === “user id goes here”) return;

Please Help me! Thanks!

Hey @TH3_UNKNOWN,

Is if this for a discord bot?
If so then use this:

if (!message.author.id === “user id goes here”) return;

or alternatively this:

if (message.author.id === “user id goes here”) {

}

Thank You so much!!!