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
01 | local Player = game.Players.LocalPlayer |
03 | local CloseRemote = game.ReplicatedStorage.Close |
05 | CloseRemote.OnClientInvoke = function (plr) |
06 | if plr = = Player.Name then |
07 | local ScreenGui = script.Parent |
The server script inside of the token will need to be like this
--Server
1 | script.Parent.Touched:Connect( function (touched) |
2 | local PlayerFound = game.Players:GetPlayerFromCharacter(touched.Parent) |
4 | game.ReplicatedStorage.Close:InvokeClient(PlayerFound.Name) |
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.