Placement System Not Placing?
Hello,
I am Currently making a placement system but for some reason, I can't get the position of the mouse over to the server-side using remote events
Client:
01 | local plr = game.Players.LocalPlayer |
02 | local mouse = plr:GetMouse() |
05 | local Trampoline = game.ReplicatedStorage.Placeables.Trampoline.Placing.lvl 1 _Trampo_Placing:Clone() |
06 | local trampo = game.ReplicatedStorage.Placeables.Trampoline.Placing.lvl 1 _Trampo_Placing |
07 | Trampoline.Parent = workspace |
10 | mouse.TargetFilter = Trampoline |
11 | local posX = mouse.Hit.X |
12 | local posY = mouse.Hit.Y |
13 | local posZ = mouse.Hit.Z |
14 | Trampoline:SetPrimaryPartCFrame(CFrame.new(posX, posY + 1 , posZ)) |
17 | mouse.Move:Connect(Move) |
19 | mouse.Button 1 Down:Connect( function () |
20 | local position = mouse.Hit |
21 | game.ReplicatedStorage.Events.Place:FireServer(position) |
Server:
1 | game.ReplicatedStorage.Events.Place.OnServerEvent:Connect( function (position) |
3 | local place = game.ReplicatedStorage.Placeables.Trampoline.lvl 1 _Trampo:Clone() |
4 | place.Parent = workspace |
5 | place:SetPrimaryPartCframe(CFrame.new(position)) |
There Is An Error In The Console Too: "bad argument #1 (Vector3 expected, got Object)"
(The error is from the server-side script.)