Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

What does this error mean?

Asked by 10 years ago

So this script is supposed to move a part forward but an error message pops up that says this: bad argument #1 to '?' (Vector3 expected, got userdata) and I don't know what that means, here is the localscript:

01plr = game.Players.LocalPlayer
02mouse = plr:GetMouse()
03function w(key)
04    if key:lower() == "w" then
05        script.Disabled = true
06        workspace.Char.Position = workspace.Char - Vector3.new(0,0,1)
07        script.Disabled = false
08    end
09end
10mouse.KeyDown:connect(w)

1 answer

Log in to vote
1
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
10 years ago

You tried to set workspace.Char's Position to a UserData.. an instance. Position only takes the Vector3 Scale as an argument, or anything that returns a Vector3.

Also I don't have any idea why you're disabling the script. By disabling the script you're discontinuing any code after the disabling action.

Try dis;

1local plr = game.Players.LocalPlayer
2local mouse = plr:GetMouse()
3 
4mouse.KeyDown:connect(function(key)
5    if key:lower() == "w" then
6        workspace.Char.Position = workspace.Char.Position - Vector3.new(0,0,1)
7    end
8end)

Also, make sure workspace.Char isn't nil.

0
Still says the same thing :/ Senor_Chung 210 — 10y
0
I fixed it never mind. On line six i put 'workspace.Char.Position = workspace.Char.Position - Vector3.new(0,0,1)' and that seemed to fix it. Senor_Chung 210 — 10y
Ad

Answer this question