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

Bad argument #3 to 'Position' (expected Vector3, got object) how do I fix it?

Asked by
2ndwann 131
5 years ago
Edited 5 years ago

I want to change the position of the part based on the CFrame of the mouse, but I get this error: Bad argument #3 to 'Position' (expected Vector3, got object) I am using a RemoteEvent to transfer the CFrame value from the client to the server.

Here is the LocalScript:

01local replicatedstorage = game:GetService("ReplicatedStorage")
02local Player = game.Players.LocalPlayer -- Also, I noticed you weren't using 'local' to define your variables. Use that, as it sets the variable apart from a global variable.
03local Mouse = Player:GetMouse()
04local MouseCFrame = Mouse.Hit
05local MousePosition = MouseCFrame.p
06 
07local event = replicatedstorage:WaitForChild("TestEvent")
08 
09function printpos()
10    MouseCFrame = Mouse.Hit
11    MousePosition = MouseCFrame.p
12    event:FireServer(MousePosition)
13    print (MousePosition)
14end
15 
16Mouse.Button1Down:Connect(printpos)

Here is the Script for the server:

01local replicatedstorage = game.ReplicatedStorage
02local event = Instance.new("RemoteEvent")
03event.Name = "TestEvent"
04event.Parent = replicatedstorage
05 
06local part = game.Workspace.test
07 
08function movePart(coords)
09    part.Position = coords
10    print(coords)
11end
12 
13event.OnServerEvent:Connect(movePart)

2 answers

Log in to vote
1
Answered by 5 years ago

First of all this

1function printpos()
2    MouseCFrame = Mouse.Hit
3    MousePosition = MouseCFrame.p
4    event:FireServer(MousePosition)
5    print (MousePosition)
6end

was unnecessary all you needed to do was this

1function printpos()
2    event:FireServer(Mouse.Hit.p)
3    print(Mouse.Hit.p)
4end

Try that other than that i dont know why its tripping

Ad
Log in to vote
1
Answered by 5 years ago

it doesn't work because in the script (not the localscript) the coords variable is actually the player who fired the remote event so do this

01local replicatedstorage = game.ReplicatedStorage
02local event = Instance.new("RemoteEvent")
03event.Name = "TestEvent"
04event.Parent = replicatedstorage
05 
06local part = game.Workspace.test
07 
08function movePart(plr,coords)
09    print(coords)
10    part.Position = coords
11 
12end
13 
14event.OnServerEvent:Connect(movePart)
0
so now the coords variable is actually the coordinates Questofmagicfarts 55 — 5y
0
so now the coords variable is actually the coordinates Questofmagicfarts 55 — 5y
0
Thank you very much, im going to try it! 2ndwann 131 — 5y

Answer this question