GetCurrentUser

Get the current Insource user using the store.

InvokeServer ('GetCurrentUser')

Get the current user's identity data. Returns a User object.

Example Script

local RS = game.ReplicatedStorage:WaitForChild('InStore');
local RF = RS.Function; --> The InStore RemoteFunction

local User = RF:InvokeServer('GetCurrentUser'); --> User object

Last updated