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:
01 | plr = game.Players.LocalPlayer |
02 | mouse = plr:GetMouse() |
03 | function w(key) |
04 | if key:lower() = = "w" then |
05 | script.Disabled = true |
06 | workspace.Char.Position = workspace.Char - Vector 3. new( 0 , 0 , 1 ) |
07 | script.Disabled = false |
08 | end |
09 | end |
10 | mouse.KeyDown:connect(w) |
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;
1 | local plr = game.Players.LocalPlayer |
2 | local mouse = plr:GetMouse() |
3 |
4 | mouse.KeyDown:connect( function (key) |
5 | if key:lower() = = "w" then |
6 | workspace.Char.Position = workspace.Char.Position - Vector 3. new( 0 , 0 , 1 ) |
7 | end |
8 | end ) |
Also, make sure workspace.Char isn't nil.