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:
01 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
02 | local 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. |
03 | local Mouse = Player:GetMouse() |
04 | local MouseCFrame = Mouse.Hit |
05 | local MousePosition = MouseCFrame.p |
06 |
07 | local event = replicatedstorage:WaitForChild( "TestEvent" ) |
08 |
09 | function printpos() |
10 | MouseCFrame = Mouse.Hit |
11 | MousePosition = MouseCFrame.p |
12 | event:FireServer(MousePosition) |
13 | print (MousePosition) |
14 | end |
15 |
16 | Mouse.Button 1 Down:Connect(printpos) |
Here is the Script for the server:
01 | local replicatedstorage = game.ReplicatedStorage |
02 | local event = Instance.new( "RemoteEvent" ) |
03 | event.Name = "TestEvent" |
04 | event.Parent = replicatedstorage |
05 |
06 | local part = game.Workspace.test |
07 |
08 | function movePart(coords) |
09 | part.Position = coords |
10 | print (coords) |
11 | end |
12 |
13 | event.OnServerEvent:Connect(movePart) |
First of all this
1 | function printpos() |
2 | MouseCFrame = Mouse.Hit |
3 | MousePosition = MouseCFrame.p |
4 | event:FireServer(MousePosition) |
5 | print (MousePosition) |
6 | end |
was unnecessary all you needed to do was this
1 | function printpos() |
2 | event:FireServer(Mouse.Hit.p) |
3 | print (Mouse.Hit.p) |
4 | end |
Try that other than that i dont know why its tripping
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
01 | local replicatedstorage = game.ReplicatedStorage |
02 | local event = Instance.new( "RemoteEvent" ) |
03 | event.Name = "TestEvent" |
04 | event.Parent = replicatedstorage |
05 |
06 | local part = game.Workspace.test |
07 |
08 | function movePart(plr,coords) |
09 | print (coords) |
10 | part.Position = coords |
11 |
12 | end |
13 |
14 | event.OnServerEvent:Connect(movePart) |