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

Why doesn't this make my TextLabel visible?

Asked by 5 years ago
Edited 5 years ago
01script.Parent.Touched:Connect(function(h)
02    local hum = h.Parent:FindFirstChild("Humanoid")
03    if hum ~= nil then
04        h.Parent.HumanoidRootPart.CFrame = CFrame.new(workspace["Teleporter1part2"].Position)
05    local Intro = game.StarterGui.Message.Introduction
06       Intro.Visible = true
07 
08 
09    end
10end)

I wanted to make the brick teleport you and then make the text label so you can see it but is not working pls help. Also, this is a regular script, not a local script

2 answers

Log in to vote
0
Answered by 5 years ago

The StarterGui is not what the player sees. It is simply how the server knows what to put in each player's PlayerGui.

You're gonna have to do this:

1local player = game:GetService("Players"):GetPlayerFromCharacter(h.Parent)
2player.PlayerGui.Message.Introduction.Intro.Visible = true
0
This didint work for me BlueFlash2020 5 — 5y
0
Then you did it wrong. hitonmymetatables 50 — 5y
0
Hit me up on discord for help mumble#0040 hitonmymetatables 50 — 5y
Ad
Log in to vote
0
Answered by
Despayr 505 Moderation Voter
5 years ago

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

01local replicatedstorage = game:GetService("ReplicatedStorage")
02local event = replicatedstorage:FindFirstChild("ServerGuiAccess")
03local plrservice =  game:GetService("Players")
04 
05if not event then
06    event = Instance.new("RemoteEvent")
07    event.Name = "ServerGuiAccess"
08    event.Parent = replicatedstorage
09end
10 
11local debounce = false
12 
13script.Parent.Touched:Connect(function(hit)
14 
15    if debounce == true then return end
View all 34 lines...

Local Script

1local replicatedstorage = game:GetService("ReplicatedStorage")
2local event = replicatedstorage:WaitForChild("ServerGuiAccess")
3 
4event.OnClientEvent:Connect(function()
5    script.Parent.Visible = true
6end)

I have just written this outside of studio, so there may be errors.

0
This is actually false the server can access the PlayerGui, just not PlayerScripts as that is completely local. hitonmymetatables 50 — 5y
0
Idk what a code block is xD BlueFlash2020 5 — 5y
0
Don't take his advice, the server and regular scripts can access the PlayerGui just fine. hitonmymetatables 50 — 5y
0
If the server could not access it, then StarterGui would break. hitonmymetatables 50 — 5y

Answer this question