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

Im getting (The function InvokeClient is not a member of "Player") in output?

Asked by 6 years ago
Edited by TheeDeathCaster 6 years ago

I tried having the client side reading a server side number value in the player but dosnt read the value right:

Client-Side:

01local Values = game.ReplicatedStorage:WaitForChild("RemoteFunction")
02 
03script.Parent.ClickDetector.MouseClick:Connect(function(player)
04    if script.Parent.Parent.Player.Value == "" then
05        script.Parent.Parent.Player.Value = player.Name
06    end
07    if player.Name == script.Parent.Parent.Player.Value then
08        print("jwilenqgnblqnbw")
09        local equiped = Values.InvokeClient(player)
10        print(equiped) --Prints the value (Supposed to be 1 but prints 0)
11        player.Character.Humanoid:EquipTool(player.Backpack:FindFirstChild(equiped))
12        wait(0.150)
13        if equiped == "lvl1" then
14            script.Parent.Parent.Hits.BillboardGui.Damage.Text = script.Parent.Parent.Hits.BillboardGui.Damage.Text - 5
15        end
View all 34 lines...

Server-Side localscript in playerstarterscriptps:

1local function invoke()
2    return script.Parent.Parent.AxeLvl.Value
3end
4 
5game.ReplicatedStorage.RemoteFunction.OnClientInvoke = invoke
0
I'm a bit confused here, you are saying that the top script is the client side, yet you use FireAllClients on it, which is a function exclusive to the server theking48989987 2147 — 6y
0
So is that because you confused the terms "Client" and "Server"? theking48989987 2147 — 6y
0
yes im confused dizzyjamison08 30 — 6y
0
I fixed some indentation. TheeDeathCaster 2368 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

You should use : instead of . here:

1local equiped = Values:InvokeClient(player) -- change . to :
210      print(equiped)
Ad

Answer this question