Help With Error Fixing

Hello!

I’ve visited here alot at this point. So I need help with a specific part of a script.

Code:

Tags.StudsOffset = 0, 3, 0

Error:

13:44:34.392  ServerScriptService.Tag:6: invalid argument #3 (Vector3 expected, got number)  -  Server - Tag:6

I need help fixing it as I don’t now how. Thanks!

Tags.StudsOffset = Vector3.new(0, 3, 0)

It says it right there, try using Vector3.new(x,y,z) instead.

you are giving a number you need to give a vector3

Vector3.new(0,3,0)

The arguments are expecting a Vector3 value, but it instead got a “singular” number

Just change it to

Tags.StudsOffset = Vector3.new(0, 3, 0)

Thanks. I wasn’t familiar with Vector3.