Please use a code block next time.
Regular Scripts cannot access the PlayerGui.
To achieve what you are aiming for, you can use RemoteEvents.
First, lets set everything up.
Place a local script inside of the intro frame
Regular Script
01 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
02 | local event = replicatedstorage:FindFirstChild( "ServerGuiAccess" ) |
03 | local plrservice = game:GetService( "Players" ) |
06 | event = Instance.new( "RemoteEvent" ) |
07 | event.Name = "ServerGuiAccess" |
08 | event.Parent = replicatedstorage |
13 | script.Parent.Touched:Connect( function (hit) |
15 | if debounce = = true then return end |
17 | local plr = plrservice:GetPlayerFromCharacter(hit.Parent) |
18 | if not plr then return end |
20 | local humanoid = plr.Character:FindFirstChildOfClass( "Humanoid" ) |
21 | if not humanoid then return end |
25 | local tele = game.Workspace:FindFirstChild( "Teleporter1part2" ) |
26 | plr.Character:MoveTo(tele.Position) |
Local Script
1 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
2 | local event = replicatedstorage:WaitForChild( "ServerGuiAccess" ) |
4 | event.OnClientEvent:Connect( function () |
5 | script.Parent.Visible = true |
I have just written this outside of studio, so there may be errors.