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

Placement System Not Placing?

Asked by 4 years ago

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:

01local plr = game.Players.LocalPlayer
02local mouse = plr:GetMouse()
03local placeable = true
04 
05local Trampoline = game.ReplicatedStorage.Placeables.Trampoline.Placing.lvl1_Trampo_Placing:Clone()
06local trampo = game.ReplicatedStorage.Placeables.Trampoline.Placing.lvl1_Trampo_Placing
07Trampoline.Parent = workspace
08 
09local function Move()
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))
15end
View all 22 lines...

Server:

1game.ReplicatedStorage.Events.Place.OnServerEvent:Connect(function(position)
2    print("Placed")
3    local place = game.ReplicatedStorage.Placeables.Trampoline.lvl1_Trampo:Clone()
4    place.Parent = workspace
5    place:SetPrimaryPartCframe(CFrame.new(position))
6end)

There Is An Error In The Console Too: "bad argument #1 (Vector3 expected, got Object)" (The error is from the server-side script.)

2 answers

Log in to vote
0
Answered by 4 years ago
1local position = mouse.Hit.p
Ad
Log in to vote
0
Answered by 4 years ago

Still the same error: bad argument #1 (Vector3 expected, got Object)

Answer this question