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

How do I get the player that fires an event?

Asked by 5 years ago

I am working on a script where a button will fire an event and a script in serverscriptservice will run a function. I need the script to clone a tool in the player that fired the events backpack.

6
It's automatically the first parameter Vulkarin 581 — 5y
0
LMFAO ^ greatneil80 2647 — 5y

1 answer

Log in to vote
2
Answered by 5 years ago

Super easy, when connecting a function to that remote event, it's the first parameter (actually gave me quite a bit of trouble when I first started using them. You can access it like this:

RemoteEvent.OnServerEvent:Connect(function(player) end) Now of course you don't put any parentheses if your function is instantiated before connecting, so put that parameter in the function that is used.

0
You helped me so much thank you ReallyUnikatni 68 — 5y
Ad

Answer this question