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

[Easy?] Not a valid member of players.. token script

Asked by 5 years ago
Edited 5 years ago

Invalid member of players.... the code is below, its a token and once you step on it it's supposed to open a local GUI for you and then destroy the token but it's not working. (The destroy alone IS working but with the GUI it's not)

01local Players = game:GetService('Players')
02local Parent = script.Parent
03---------------------------------------------------------
04script.Parent.Touched:connect(function(Hit)
05local Player = Players:GetPlayerFromCharacter(Hit.Parent)
06  if Player then  
07  game.Players.Player.Name:FindFirstChild('PlayerGui').Token.Item_Recieved.Visible = false  
08  script.Parent:Destroy()
09end
10    end)

Note: This is NOT a local script, and the game is R6

1 answer

Log in to vote
1
Answered by 5 years ago

You have multiple issues here. One is that you can't go into the PlayerGui with a server script. Everything within the PlayerGui is client sided, so it's not possible to access it through the server without using RemoteFunctions or RemoteEvents. If you're trying to close a GUI for the player when a token is touched, I would make a RemoteFunction in Replicated Storage, and then make a local script within the StarterGui. In that local script include this code

--Local

01local Player = game.Players.LocalPlayer
02 
03local CloseRemote = game.ReplicatedStorage.Close
04 
05CloseRemote.OnClientInvoke = function(plr)
06    if plr == Player.Name then
07        local ScreenGui = script.Parent
08        --Find the gui you need from there
09    end
10end

The server script inside of the token will need to be like this

--Server

1script.Parent.Touched:Connect(function(touched)
2    local PlayerFound = game.Players:GetPlayerFromCharacter(touched.Parent)
3    if PlayerFound then
4        game.ReplicatedStorage.Close:InvokeClient(PlayerFound.Name)
5    end
6end)

Your second issue is that you can't assign a variable a value and then use it to get something further in the workspace. In your case, you assigned the Player variable a value of the player found in game.Players. If you tried to do game.Players.Player, the value would equal to nothing. In the workspace, you have to use :FindFirstChild to get things you need

Hope this helped.

0
Well explained, upvoted. User#31525 30 — 5y
0
@rhettsmith6537 , thanks for the advice, it has a error in output saying " Unable to cast value to Object" when i touch the token, pretty sure i set everything up correctly. killerbrasko2002 33 — 5y
0
@rhettsmith6537 it also says the error is on the server sided touch script at line 4 killerbrasko2002 33 — 5y
Ad

Answer this question