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

How to get player mouse position without localscript?

Asked by 5 years ago

I'm trying to get the user to place parts where ever the mouse is positioned. I'm using remote functions. I have a localscript in the tool the user uses. Then a script in serverscriptservice. Script in SSS

1function placebrick()
2    local part Instance.new("Part", game.Workspace)
3end
4 
5game.ReplicatedStorage.Events.RemoteFunction.OnServerInvoke = placebrick

Localscript in tool

1script.Parent.Activated:Connect(function() 
2    game.ReplicatedStorage.Events.RemoteFunction:InvokeServer()
3end)

Help please?

2 answers

Log in to vote
1
Answered by 5 years ago

You cannot access the mouse directly from the server. Instead, you need to send it the data from the client across your RemoteFunction:

1local mouse = game.Players.LocalPlayer:GetMouse()
2script.Parent.Activated:Connect(function() 
3    game.ReplicatedStorage.Events.RemoteFunction:InvokeServer(mouse.Hit.p) -- mouse position
4end)

In the server:

1function placebrick(player, mousePosition)
2    local part = Instance.new("Part", game.Workspace)
3    part.Position = mousePosition
4end
5 
6game.ReplicatedStorage.Events.RemoteFunction.OnServerInvoke = placebrick
0
... what you do is invoke from the server to the client, not the other way around. Elixcore 1337 — 5y
Ad
Log in to vote
1
Answered by 5 years ago

You have to get the mouse position in the LocalScript and send it as a parameter of the RemoteFunction, then get it on the server and set the part position to it.

0
Yes It worked thanks. User#29320 0 — 5y

Answer this question